diff --git a/.editorconfig b/.editorconfig index d3a8b5b6..f363cc55 100644 --- a/.editorconfig +++ b/.editorconfig @@ -2,9 +2,6 @@ root = true [*] charset = utf-8 -end_of_line = lf -insert_final_newline = true -trim_trailing_whitespace = true [*.{json,toml,yml,gyp}] indent_style = space @@ -14,11 +11,11 @@ indent_size = 2 indent_style = space indent_size = 2 -[*.rs] +[*.{c,cc,h}] indent_style = space indent_size = 4 -[*.{c,cc,h}] +[*.rs] indent_style = space indent_size = 4 @@ -37,3 +34,6 @@ indent_size = 8 [Makefile] indent_style = tab indent_size = 8 + +[parser.c] +indent_size = 2 diff --git a/.gitattributes b/.gitattributes index 6d39a762..4cb10583 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,10 +1,4 @@ -* text eol=lf - -test/corpus/crlf.txt eol=crlf - -script/known-failures.txt -diff - -examples/* linguist-vendored +* text=auto eol=lf src/*.json linguist-generated src/parser.c linguist-generated diff --git a/.gitignore b/.gitignore index f5526ed1..2fd9daca 100644 --- a/.gitignore +++ b/.gitignore @@ -1,16 +1,21 @@ # Rust artifacts -Cargo.lock target/ # Node artifacts build/ prebuilds/ node_modules/ +*.tgz # Swift artifacts .build/ +Package.resolved + +# Go artifacts +_obj/ # Python artifacts +.venv/ dist/ *.egg-info *.whl @@ -23,9 +28,8 @@ dist/ *.dll *.pc -# Examples +# Example dirs /examples/*/ -script/example-files.txt # Grammar volatiles *.wasm diff --git a/.npmignore b/.npmignore deleted file mode 100644 index 0f438b55..00000000 --- a/.npmignore +++ /dev/null @@ -1,6 +0,0 @@ -/test -/examples -/build -/script -/target -bindings/rust diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 00000000..68baee79 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,89 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "aho-corasick" +version = "1.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" +dependencies = [ + "memchr", +] + +[[package]] +name = "cc" +version = "1.1.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57b6a275aa2903740dc87da01c62040406b8812552e97129a63ea8850a17c6e6" +dependencies = [ + "shlex", +] + +[[package]] +name = "memchr" +version = "2.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" + +[[package]] +name = "regex" +version = "1.10.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", +] + +[[package]] +name = "regex-automata" +version = "0.4.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", +] + +[[package]] +name = "regex-syntax" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b" + +[[package]] +name = "shlex" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" + +[[package]] +name = "tree-sitter" +version = "0.23.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "20f4cd3642c47a85052a887d86704f4eac272969f61b686bdd3f772122aabaff" +dependencies = [ + "cc", + "regex", + "regex-syntax", + "tree-sitter-language", +] + +[[package]] +name = "tree-sitter-bash" +version = "0.21.0" +dependencies = [ + "cc", + "tree-sitter", + "tree-sitter-language", +] + +[[package]] +name = "tree-sitter-language" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2545046bd1473dac6c626659cc2567c6c0ff302fc8b84a56c4243378276f7f57" diff --git a/Cargo.toml b/Cargo.toml index 7b652bf1..6dc1a6c9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,10 @@ include = ["bindings/rust/*", "grammar.js", "queries/*", "src/*"] path = "bindings/rust/lib.rs" [dependencies] -tree-sitter = ">=0.21.0" +tree-sitter-language = "0.1.0" [build-dependencies] -cc = "^1.0.89" +cc = "^1.1.15" + +[dev-dependencies] +tree-sitter = "0.23" diff --git a/Makefile b/Makefile index 05ee2b57..f7463dec 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,7 @@ +ifeq ($(OS),Windows_NT) +$(error Windows is not supported) +endif + VERSION := 0.0.1 LANGUAGE_NAME := tree-sitter-bash @@ -17,44 +21,44 @@ endif TS ?= tree-sitter -# ABI versioning -SONAME_MAJOR := $(word 1,$(subst ., ,$(VERSION))) -SONAME_MINOR := $(word 2,$(subst ., ,$(VERSION))) - # install directory layout PREFIX ?= /usr/local INCLUDEDIR ?= $(PREFIX)/include LIBDIR ?= $(PREFIX)/lib PCLIBDIR ?= $(LIBDIR)/pkgconfig -# object files -OBJS := $(patsubst %.c,%.o,$(wildcard $(SRC_DIR)/*.c)) +# source/object files +PARSER := $(SRC_DIR)/parser.c +EXTRAS := $(filter-out $(PARSER),$(wildcard $(SRC_DIR)/*.c)) +OBJS := $(patsubst %.c,%.o,$(PARSER) $(EXTRAS)) # flags -ARFLAGS := rcs +ARFLAGS ?= rcs override CFLAGS += -I$(SRC_DIR) -std=c11 -fPIC +# ABI versioning +SONAME_MAJOR := $(word 1,$(subst ., ,$(VERSION))) +SONAME_MINOR := $(shell sed -n 's/#define LANGUAGE_VERSION //p' $(PARSER)) + # OS-specific bits -ifeq ($(OS),Windows_NT) - $(error "Windows is not supported") -else ifeq ($(shell uname),Darwin) +ifeq ($(shell uname),Darwin) SOEXT = dylib - SOEXTVER_MAJOR = $(SONAME_MAJOR).dylib - SOEXTVER = $(SONAME_MAJOR).$(SONAME_MINOR).dylib + SOEXTVER_MAJOR = $(SONAME_MAJOR).$(SOEXT) + SOEXTVER = $(SONAME_MAJOR).$(SONAME_MINOR).$(SOEXT) LINKSHARED := $(LINKSHARED)-dynamiclib -Wl, ifneq ($(ADDITIONAL_LIBS),) LINKSHARED := $(LINKSHARED)$(ADDITIONAL_LIBS), endif - LINKSHARED := $(LINKSHARED)-install_name,$(LIBDIR)/lib$(LANGUAGE_NAME).$(SONAME_MAJOR).dylib,-rpath,@executable_path/../Frameworks + LINKSHARED := $(LINKSHARED)-install_name,$(LIBDIR)/lib$(LANGUAGE_NAME).$(SOEXTVER),-rpath,@executable_path/../Frameworks else SOEXT = so - SOEXTVER_MAJOR = so.$(SONAME_MAJOR) - SOEXTVER = so.$(SONAME_MAJOR).$(SONAME_MINOR) + SOEXTVER_MAJOR = $(SOEXT).$(SONAME_MAJOR) + SOEXTVER = $(SOEXT).$(SONAME_MAJOR).$(SONAME_MINOR) LINKSHARED := $(LINKSHARED)-shared -Wl, ifneq ($(ADDITIONAL_LIBS),) LINKSHARED := $(LINKSHARED)$(ADDITIONAL_LIBS) endif - LINKSHARED := $(LINKSHARED)-soname,lib$(LANGUAGE_NAME).so.$(SONAME_MAJOR) + LINKSHARED := $(LINKSHARED)-soname,lib$(LANGUAGE_NAME).$(SOEXTVER) endif ifneq ($(filter $(shell uname),FreeBSD NetBSD DragonFly),) PCLIBDIR := $(PREFIX)/libdata/pkgconfig @@ -81,8 +85,8 @@ $(LANGUAGE_NAME).pc: bindings/c/$(LANGUAGE_NAME).pc.in -e 's|=$(PREFIX)|=$${prefix}|' \ -e 's|@PREFIX@|$(PREFIX)|' $< > $@ -$(SRC_DIR)/parser.c: grammar.js - $(TS) generate --no-bindings +$(PARSER): $(SRC_DIR)/grammar.json + $(TS) generate --no-bindings $^ install: all install -d '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter '$(DESTDIR)$(PCLIBDIR)' '$(DESTDIR)$(LIBDIR)' diff --git a/Package.swift b/Package.swift index ff378069..5495bb29 100644 --- a/Package.swift +++ b/Package.swift @@ -6,42 +6,55 @@ let package = Package( products: [ .library(name: "TreeSitterBash", targets: ["TreeSitterBash"]), ], - dependencies: [], + dependencies: [ + .package(url: "https://github.com/ChimeHQ/SwiftTreeSitter", from: "0.8.0"), + ], targets: [ - .target(name: "TreeSitterBash", - path: ".", - exclude: [ - "Cargo.toml", - "Makefile", - "binding.gyp", - "bindings/c", - "bindings/go", - "bindings/node", - "bindings/python", - "bindings/rust", - "prebuilds", - "grammar.js", - "package.json", - "package-lock.json", - "pyproject.toml", - "setup.py", - "test", - "types", - "examples", - ".editorconfig", - ".github", - ".gitignore", - ".gitattributes", - ], - sources: [ - "src/parser.c", - "src/scanner.c", - ], - resources: [ - .copy("queries") - ], - publicHeadersPath: "bindings/swift", - cSettings: [.headerSearchPath("src")]) + .target( + name: "TreeSitterBash", + dependencies: [], + path: ".", + exclude: [ + "Cargo.toml", + "Makefile", + "binding.gyp", + "bindings/c", + "bindings/go", + "bindings/node", + "bindings/python", + "bindings/rust", + "prebuilds", + "grammar.js", + "package.json", + "package-lock.json", + "pyproject.toml", + "setup.py", + "test", + "examples", + ".editorconfig", + ".github", + ".gitignore", + ".gitattributes", + ".gitmodules", + ], + sources: [ + "src/parser.c", + // NOTE: if your language has an external scanner, add it here. + ], + resources: [ + .copy("queries") + ], + publicHeadersPath: "bindings/swift", + cSettings: [.headerSearchPath("src")] + ), + .testTarget( + name: "TreeSitterBashTests", + dependencies: [ + "SwiftTreeSitter", + "TreeSitterBash", + ], + path: "bindings/swift/TreeSitterBashTests" + ) ], cLanguageStandard: .c11 ) diff --git a/bindings/go/binding_test.go b/bindings/go/binding_test.go index 2bf4dbed..b61bc3d1 100644 --- a/bindings/go/binding_test.go +++ b/bindings/go/binding_test.go @@ -3,8 +3,8 @@ package tree_sitter_bash_test import ( "testing" - tree_sitter "github.com/smacker/go-tree-sitter" - "github.com/tree-sitter/tree-sitter-bash" + tree_sitter "github.com/tree-sitter/go-tree-sitter" + tree_sitter_bash "github.com/tree-sitter/tree-sitter-bash/bindings/go" ) func TestCanLoadGrammar(t *testing.T) { diff --git a/bindings/go/go.mod b/bindings/go/go.mod deleted file mode 100644 index 889063a5..00000000 --- a/bindings/go/go.mod +++ /dev/null @@ -1,5 +0,0 @@ -module github.com/tree-sitter/tree-sitter-bash - -go 1.22 - -require github.com/smacker/go-tree-sitter v0.0.0-20230720070738-0d0a9f78d8f8 diff --git a/bindings/node/binding.cc b/bindings/node/binding.cc index 11b252d9..59f2b676 100644 --- a/bindings/node/binding.cc +++ b/bindings/node/binding.cc @@ -6,7 +6,7 @@ extern "C" TSLanguage *tree_sitter_bash(); // "tree-sitter", "language" hashed with BLAKE2 const napi_type_tag LANGUAGE_TYPE_TAG = { - 0x8AF2E5212AD58ABF, 0xD5006CAD83ABBA16 + 0x8AF2E5212AD58ABF, 0xD5006CAD83ABBA16 }; Napi::Object Init(Napi::Env env, Napi::Object exports) { diff --git a/bindings/node/binding_test.js b/bindings/node/binding_test.js new file mode 100644 index 00000000..afede30a --- /dev/null +++ b/bindings/node/binding_test.js @@ -0,0 +1,9 @@ +/// + +const assert = require("node:assert"); +const { test } = require("node:test"); + +test("can load grammar", () => { + const parser = new (require("tree-sitter"))(); + assert.doesNotThrow(() => parser.setLanguage(require("."))); +}); diff --git a/bindings/python/tests/test_binding.py b/bindings/python/tests/test_binding.py new file mode 100644 index 00000000..287af27d --- /dev/null +++ b/bindings/python/tests/test_binding.py @@ -0,0 +1,11 @@ +from unittest import TestCase + +import tree_sitter, tree_sitter_bash + + +class TestLanguage(TestCase): + def test_can_load_grammar(self): + try: + tree_sitter.Language(tree_sitter_bash.language()) + except Exception: + self.fail("Error loading Bash grammar") diff --git a/bindings/python/tree_sitter_bash/__init__.py b/bindings/python/tree_sitter_bash/__init__.py index 332dfe75..1db7a103 100644 --- a/bindings/python/tree_sitter_bash/__init__.py +++ b/bindings/python/tree_sitter_bash/__init__.py @@ -1,3 +1,42 @@ -"Bash grammar for tree-sitter" +"""Bash grammar for tree-sitter""" + +from importlib.resources import files as _files from ._binding import language + + +def _get_query(name, file): + query = _files(f"{__package__}.queries") / file + globals()[name] = query.read_text() + return globals()[name] + + +def __getattr__(name): + # NOTE: uncomment these to include any queries that this grammar contains: + + # if name == "HIGHLIGHTS_QUERY": + # return _get_query("HIGHLIGHTS_QUERY", "highlights.scm") + # if name == "INJECTIONS_QUERY": + # return _get_query("INJECTIONS_QUERY", "injections.scm") + # if name == "LOCALS_QUERY": + # return _get_query("LOCALS_QUERY", "locals.scm") + # if name == "TAGS_QUERY": + # return _get_query("TAGS_QUERY", "tags.scm") + + raise AttributeError(f"module {__name__!r} has no attribute {name!r}") + + +__all__ = [ + "language", + # "HIGHLIGHTS_QUERY", + # "INJECTIONS_QUERY", + # "LOCALS_QUERY", + # "TAGS_QUERY", +] + + +def __dir__(): + return sorted(__all__ + [ + "__all__", "__builtins__", "__cached__", "__doc__", "__file__", + "__loader__", "__name__", "__package__", "__path__", "__spec__", + ]) diff --git a/bindings/python/tree_sitter_bash/__init__.pyi b/bindings/python/tree_sitter_bash/__init__.pyi index 5416666f..abf6633f 100644 --- a/bindings/python/tree_sitter_bash/__init__.pyi +++ b/bindings/python/tree_sitter_bash/__init__.pyi @@ -1 +1,10 @@ -def language() -> int: ... +from typing import Final + +# NOTE: uncomment these to include any queries that this grammar contains: + +# HIGHLIGHTS_QUERY: Final[str] +# INJECTIONS_QUERY: Final[str] +# LOCALS_QUERY: Final[str] +# TAGS_QUERY: Final[str] + +def language() -> object: ... diff --git a/bindings/python/tree_sitter_bash/binding.c b/bindings/python/tree_sitter_bash/binding.c index 04abe5a9..0c5fd902 100644 --- a/bindings/python/tree_sitter_bash/binding.c +++ b/bindings/python/tree_sitter_bash/binding.c @@ -4,8 +4,8 @@ typedef struct TSLanguage TSLanguage; TSLanguage *tree_sitter_bash(void); -static PyObject* _binding_language(PyObject *self, PyObject *args) { - return PyLong_FromVoidPtr(tree_sitter_bash()); +static PyObject* _binding_language(PyObject *Py_UNUSED(self), PyObject *Py_UNUSED(args)) { + return PyCapsule_New(tree_sitter_bash(), "tree_sitter.Language", NULL); } static PyMethodDef methods[] = { diff --git a/bindings/rust/build.rs b/bindings/rust/build.rs index f88b9e19..a6b536c5 100644 --- a/bindings/rust/build.rs +++ b/bindings/rust/build.rs @@ -4,6 +4,9 @@ fn main() { let mut c_config = cc::Build::new(); c_config.include(src_dir); + #[cfg(target_env = "msvc")] + c_config.flag("-utf-8"); + let parser_path = src_dir.join("parser.c"); c_config.file(&parser_path); println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); diff --git a/bindings/rust/lib.rs b/bindings/rust/lib.rs index 27993745..43e1004c 100644 --- a/bindings/rust/lib.rs +++ b/bindings/rust/lib.rs @@ -4,11 +4,16 @@ //! tree-sitter [Parser][], and then use the parser to parse some code: //! //! ``` +//! use tree_sitter::Parser; +//! //! let code = r#" //! echo "hello world!" //! "#; -//! let mut parser = tree_sitter::Parser::new(); -//! parser.set_language(&tree_sitter_bash::language()).expect("Error loading Bash grammar"); +//! let mut parser = Parser::new(); +//! let language = tree_sitter_bash::LANGUAGE; +//! parser +//! .set_language(&language.into()) +//! .expect("Error loading Bash parser"); //! let tree = parser.parse(code, None).unwrap(); //! assert!(!tree.root_node().has_error()); //! ``` @@ -18,24 +23,21 @@ //! [Parser]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Parser.html //! [tree-sitter]: https://tree-sitter.github.io/ -use tree_sitter::Language; +use tree_sitter_language::LanguageFn; extern "C" { - fn tree_sitter_bash() -> Language; + fn tree_sitter_bash() -> *const (); } -/// Get the tree-sitter [Language][] for this grammar. -/// -/// [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html -pub fn language() -> Language { - unsafe { tree_sitter_bash() } -} +/// The tree-sitter [`LanguageFn`] for this grammar. +pub const LANGUAGE: LanguageFn = unsafe { LanguageFn::from_raw(tree_sitter_bash) }; /// The content of the [`node-types.json`][] file for this grammar. /// /// [`node-types.json`]: https://tree-sitter.github.io/tree-sitter/using-parsers#static-node-types pub const NODE_TYPES: &str = include_str!("../../src/node-types.json"); +/// The syntax highlighting query for this grammar. pub const HIGHLIGHT_QUERY: &str = include_str!("../../queries/highlights.scm"); #[cfg(test)] @@ -44,7 +46,7 @@ mod tests { fn test_can_load_grammar() { let mut parser = tree_sitter::Parser::new(); parser - .set_language(&super::language()) - .expect("Error loading Bash grammar"); + .set_language(&super::LANGUAGE.into()) + .expect("Error loading Bash parser"); } } diff --git a/bindings/swift/TreeSitterBashTests/TreeSitterBashTests.swift b/bindings/swift/TreeSitterBashTests/TreeSitterBashTests.swift new file mode 100644 index 00000000..f1549d6c --- /dev/null +++ b/bindings/swift/TreeSitterBashTests/TreeSitterBashTests.swift @@ -0,0 +1,12 @@ +import XCTest +import SwiftTreeSitter +import TreeSitterBash + +final class TreeSitterBashTests: XCTestCase { + func testCanLoadGrammar() throws { + let parser = Parser() + let language = Language(language: tree_sitter_bash()) + XCTAssertNoThrow(try parser.setLanguage(language), + "Error loading Bash grammar") + } +} diff --git a/go.mod b/go.mod new file mode 100644 index 00000000..ff0922fa --- /dev/null +++ b/go.mod @@ -0,0 +1,7 @@ +module github.com/tree-sitter/tree-sitter-bash + +go 1.23 + +require github.com/tree-sitter/go-tree-sitter v0.23.1 + +require github.com/mattn/go-pointer v0.0.1 // indirect diff --git a/go.sum b/go.sum new file mode 100644 index 00000000..d7753615 --- /dev/null +++ b/go.sum @@ -0,0 +1,36 @@ +github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/mattn/go-pointer v0.0.1 h1:n+XhsuGeVO6MEAp7xyEukFINEa+Quek5psIR/ylA6o0= +github.com/mattn/go-pointer v0.0.1/go.mod h1:2zXcozF6qYGgmsG+SeTZz3oAbFLdD3OWqnUbNvJZAlc= +github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg= +github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= +github.com/tree-sitter/go-tree-sitter v0.23.1 h1:HCfaE19sKfG7q190xfM1loUZf6wEHa4TDqDEW46s9Lg= +github.com/tree-sitter/go-tree-sitter v0.23.1/go.mod h1:EvIVhMvvPNvhu9x+ddSPxSnUEU5AnsSwi1LMqXIVE3A= +github.com/tree-sitter/tree-sitter-c v0.21.5-0.20240818205408-927da1f210eb h1:A8425heRM8mylnv4H58FPUiH+aYivyitre0PzxrfmWs= +github.com/tree-sitter/tree-sitter-c v0.21.5-0.20240818205408-927da1f210eb/go.mod h1:dOF6gtQiF9UwNh995T5OphYmtIypkjsp3ap7r9AN/iA= +github.com/tree-sitter/tree-sitter-cpp v0.22.4-0.20240818224355-b1a4e2b25148 h1:AfFPZwtwGN01BW1jDdqBVqscTwetvMpydqYZz57RSlc= +github.com/tree-sitter/tree-sitter-cpp v0.22.4-0.20240818224355-b1a4e2b25148/go.mod h1:Bh6U3viD57rFXRYIQ+kmiYtr+1Bx0AceypDLJJSyi9s= +github.com/tree-sitter/tree-sitter-embedded-template v0.21.1-0.20240819044651-ffbf64942c33 h1:TwqSV3qLp3tKSqirGLRHnjFk9Tc2oy57LIl+FQ4GjI4= +github.com/tree-sitter/tree-sitter-embedded-template v0.21.1-0.20240819044651-ffbf64942c33/go.mod h1:CvCKCt3v04Ufos1zZnNCelBDeCGRpPucaN8QczoUsN4= +github.com/tree-sitter/tree-sitter-go v0.21.3-0.20240818010209-8c0f0e7a6012 h1:Xvxck3tE5FW7F7bTS97iNM2ADMyCMJztVqn5HYKdJGo= +github.com/tree-sitter/tree-sitter-go v0.21.3-0.20240818010209-8c0f0e7a6012/go.mod h1:T40D0O1cPvUU/+AmiXVXy1cncYQT6wem4Z0g4SfAYvY= +github.com/tree-sitter/tree-sitter-html v0.20.5-0.20240818004741-d11201a263d0 h1:c46K6uh5Dz00zJeU9BfjXdb8I+E4RkUdfnWJpQADXFo= +github.com/tree-sitter/tree-sitter-html v0.20.5-0.20240818004741-d11201a263d0/go.mod h1:hcNt/kOJHcIcuMvouE7LJcYdeFUFbVpBJ6d4wmOA+tU= +github.com/tree-sitter/tree-sitter-java v0.21.1-0.20240824015150-576d8097e495 h1:jrt4qbJVEFs4H93/ITxygHc6u0TGqAkkate7TQ4wFSA= +github.com/tree-sitter/tree-sitter-java v0.21.1-0.20240824015150-576d8097e495/go.mod h1:oyaR7fLnRV0hT9z6qwE9GkaeTom/hTDwK3H2idcOJFc= +github.com/tree-sitter/tree-sitter-javascript v0.21.5-0.20240818005344-15887341e5b5 h1:om4X9AVg3asL8gxNJDcz4e/Wp+VpQj1PY3uJXKr6EOg= +github.com/tree-sitter/tree-sitter-javascript v0.21.5-0.20240818005344-15887341e5b5/go.mod h1:nNqgPoV/h9uYWk6kYEFdEAhNVOacpfpRW5SFmdaP4tU= +github.com/tree-sitter/tree-sitter-json v0.21.1-0.20240818005659-bdd69eb8c8a5 h1:pfV3G3k7NCKqKk8THBmyuh2zA33lgYHS3GVrzRR8ry4= +github.com/tree-sitter/tree-sitter-json v0.21.1-0.20240818005659-bdd69eb8c8a5/go.mod h1:GbMKRjLfk0H+PI7nLi1Sx5lHf5wCpLz9al8tQYSxpEk= +github.com/tree-sitter/tree-sitter-php v0.22.9-0.20240819002312-a552625b56c1 h1:ZXZMDwE+IhUtGug4Brv6NjJWUU3rfkZBKpemf6RY8/g= +github.com/tree-sitter/tree-sitter-php v0.22.9-0.20240819002312-a552625b56c1/go.mod h1:UKCLuYnJ312Mei+3cyTmGOHzn0YAnaPRECgJmHtzrqs= +github.com/tree-sitter/tree-sitter-python v0.21.1-0.20240818005537-55a9b8a4fbfb h1:EXEM82lFM7JjJb6qiKZXkpIDaCcbV2obNn82ghwj9lw= +github.com/tree-sitter/tree-sitter-python v0.21.1-0.20240818005537-55a9b8a4fbfb/go.mod h1:lXCF1nGG5Dr4J3BTS0ObN4xJCCICiSu/b+Xe/VqMV7g= +github.com/tree-sitter/tree-sitter-ruby v0.21.1-0.20240818211811-7dbc1e2d0e2d h1:fcYCvoXdcP1uRQYXqJHRy6Hec+uKScQdKVtMwK9JeCI= +github.com/tree-sitter/tree-sitter-ruby v0.21.1-0.20240818211811-7dbc1e2d0e2d/go.mod h1:T1nShQ4v5AJtozZ8YyAS4uzUtDAJj/iv4YfwXSbUHzg= +github.com/tree-sitter/tree-sitter-rust v0.21.3-0.20240818005432-2b43eafe6447 h1:o9alBu1J/WjrcTKEthYtXmdkDc5OVXD+PqlvnEZ0Lzc= +github.com/tree-sitter/tree-sitter-rust v0.21.3-0.20240818005432-2b43eafe6447/go.mod h1:1Oh95COkkTn6Ezp0vcMbvfhRP5gLeqqljR0BYnBzWvc= +gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= +gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= diff --git a/package-lock.json b/package-lock.json index bf354f63..69b2f124 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,14 +10,14 @@ "hasInstallScript": true, "license": "MIT", "dependencies": { - "node-addon-api": "^8.0.0", - "node-gyp-build": "^4.8.0" + "node-addon-api": "^8.1.0", + "node-gyp-build": "^4.8.2" }, "devDependencies": { "eslint": "^8.57.0", "eslint-config-google": "^0.14.0", - "prebuildify": "^6.0.0", - "tree-sitter-cli": "^0.22.2" + "prebuildify": "^6.0.1", + "tree-sitter-cli": "^0.23.0" }, "peerDependencies": { "tree-sitter": "^0.21.1" @@ -28,15 +28,6 @@ } } }, - "node_modules/@aashutoshrathi/word-wrap": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", - "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/@eslint-community/eslint-utils": { "version": "4.4.0", "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", @@ -53,9 +44,9 @@ } }, "node_modules/@eslint-community/regexpp": { - "version": "4.10.0", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", - "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.11.0.tgz", + "integrity": "sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==", "dev": true, "engines": { "node": "^12.0.0 || ^14.0.0 || >=16.0.0" @@ -97,6 +88,7 @@ "version": "0.11.14", "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", + "deprecated": "Use @eslint/config-array instead", "dev": true, "dependencies": { "@humanwhocodes/object-schema": "^2.0.2", @@ -121,9 +113,10 @@ } }, "node_modules/@humanwhocodes/object-schema": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz", - "integrity": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", + "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", + "deprecated": "Use @eslint/object-schema instead", "dev": true }, "node_modules/@nodelib/fs.scandir": { @@ -168,9 +161,9 @@ "dev": true }, "node_modules/acorn": { - "version": "8.11.3", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", - "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "version": "8.12.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", + "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", "dev": true, "bin": { "acorn": "bin/acorn" @@ -260,6 +253,17 @@ } ] }, + "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", @@ -319,6 +323,12 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, + "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/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", @@ -358,9 +368,9 @@ } }, "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.6.tgz", + "integrity": "sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==", "dev": true, "dependencies": { "ms": "2.1.2" @@ -526,9 +536,9 @@ } }, "node_modules/esquery": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", - "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", "dev": true, "dependencies": { "estraverse": "^5.1.0" @@ -567,15 +577,6 @@ "node": ">=0.10.0" } }, - "node_modules/execspawn": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/execspawn/-/execspawn-1.0.1.tgz", - "integrity": "sha512-s2k06Jy9i8CUkYe0+DxRlvtkZoOkwwfhB+Xxo5HGUtrISVW2m98jO2tr67DGRFxZwkjQqloA3v/tNtjhBRBieg==", - "dev": true, - "dependencies": { - "util-extend": "^1.0.1" - } - }, "node_modules/fast-deep-equal": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", @@ -663,6 +664,27 @@ "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", "dev": true }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/glob-parent": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", @@ -726,9 +748,9 @@ ] }, "node_modules/ignore": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", - "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", "dev": true, "engines": { "node": ">= 4" @@ -763,6 +785,7 @@ "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", "dev": true, "dependencies": { "once": "^1.3.0", @@ -924,9 +947,9 @@ "dev": true }, "node_modules/node-abi": { - "version": "3.56.0", - "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.56.0.tgz", - "integrity": "sha512-fZjdhDOeRcaS+rcpve7XuwHBmktS1nS1gzgghwKUQQ8nTy2FdSDr6ZT8k6YhvlJeHmmQMYiT/IH9hfco5zeW2Q==", + "version": "3.67.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.67.0.tgz", + "integrity": "sha512-bLn/fU/ALVBE9wj+p4Y21ZJWYFjUXLXPi/IewyLZkx3ApxKDNBWCKdReeKOtD8dWpOdDCeMyLh6ZewzcLsG2Nw==", "dev": true, "dependencies": { "semver": "^7.3.5" @@ -936,17 +959,17 @@ } }, "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==", + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-8.1.0.tgz", + "integrity": "sha512-yBY+qqWSv3dWKGODD6OGE6GnTX7Q2r+4+DfpqxHSHh8x0B4EKP9+wVGLS6U/AM1vxSNNmUEuIV5EGhYwPpfOwQ==", "engines": { "node": "^18 || ^20 || >= 21" } }, "node_modules/node-gyp-build": { - "version": "4.8.0", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.0.tgz", - "integrity": "sha512-u6fs2AEUljNho3EYTJNBfImO5QTo/J/1Etd+NVdCj7qWKUSN/bSLkZwhDv7I+w/MSC6qJ4cknepkAYykDdK8og==", + "version": "4.8.2", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.2.tgz", + "integrity": "sha512-IRUxE4BVsHWXkV/SFOut4qTlagw2aM8T5/vnTsmrHJvVoKueJHRc/JaFND7QDDc61kLYUJ6qlZM3sqTSyx2dTw==", "bin": { "node-gyp-build": "bin.js", "node-gyp-build-optional": "optional.js", @@ -975,17 +998,17 @@ } }, "node_modules/optionator": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", - "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", "dev": true, "dependencies": { - "@aashutoshrathi/word-wrap": "^1.2.3", "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", "levn": "^0.4.1", "prelude-ls": "^1.2.1", - "type-check": "^0.4.0" + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" }, "engines": { "node": ">= 0.8.0" @@ -1061,12 +1084,11 @@ } }, "node_modules/prebuildify": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/prebuildify/-/prebuildify-6.0.0.tgz", - "integrity": "sha512-DEvK4C3tcimIp7Pzqbs036n9i6CTKGp1XVEpMnr4wV3enKU5sBogPP+lP3KZw7993i42bXnsd5eIxAXQ566Cqw==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/prebuildify/-/prebuildify-6.0.1.tgz", + "integrity": "sha512-8Y2oOOateom/s8dNBsGIcnm6AxPmLH4/nanQzL5lQMU+sC0CMhzARZHizwr36pUPLdvBnOkCNQzxg4djuFSgIw==", "dev": true, "dependencies": { - "execspawn": "^1.0.1", "minimist": "^1.2.5", "mkdirp-classic": "^0.5.3", "node-abi": "^3.3.0", @@ -1163,6 +1185,7 @@ "version": "3.0.2", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", "dev": true, "dependencies": { "glob": "^7.1.3" @@ -1174,26 +1197,6 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/rimraf/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/run-parallel": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", @@ -1238,13 +1241,10 @@ ] }, "node_modules/semver": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", - "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, "bin": { "semver": "bin/semver.js" }, @@ -1252,18 +1252,6 @@ "node": ">=10" } }, - "node_modules/semver/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/shebang-command": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", @@ -1342,24 +1330,7 @@ "tar-stream": "^2.1.4" } }, - "node_modules/tar-fs/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/tar-fs/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/tar-fs/node_modules/tar-stream": { + "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==", @@ -1393,13 +1364,16 @@ } }, "node_modules/tree-sitter-cli": { - "version": "0.22.2", - "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.22.2.tgz", - "integrity": "sha512-ecqccEp27XMFXgjLMEEU71vK9JCWAC7fqSTTxcs5P1tnEnaaf4GkHz/wfo4lJ9l3rfxcTDPxN84tHAoitIQqdA==", + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.23.0.tgz", + "integrity": "sha512-/DdQaPCCOrOYGp9FxGdhFUnHIrjhfbYatQXgNIcmaAOpPunpnDj2vsO/H+svsfQLaFsQ1C+BjgPhpbV28zka1w==", "dev": true, "hasInstallScript": true, "bin": { "tree-sitter": "cli.js" + }, + "engines": { + "node": ">=12.0.0" } }, "node_modules/type-check": { @@ -1441,12 +1415,6 @@ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", "dev": true }, - "node_modules/util-extend": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/util-extend/-/util-extend-1.0.3.tgz", - "integrity": "sha512-mLs5zAK+ctllYBj+iAQvlDCwoxU/WDOUaJkcFudeiAX6OajC6BKXJUa9a+tbtkC11dz2Ufb7h0lyvIOVn4LADA==", - "dev": true - }, "node_modules/which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", @@ -1462,18 +1430,21 @@ "node": ">= 8" } }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", "dev": true }, - "node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, "node_modules/yocto-queue": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", diff --git a/package.json b/package.json index 465666cf..5ea35f92 100644 --- a/package.json +++ b/package.json @@ -25,8 +25,8 @@ "bash" ], "dependencies": { - "node-addon-api": "^8.0.0", - "node-gyp-build": "^4.8.0" + "node-addon-api": "^8.1.0", + "node-gyp-build": "^4.8.2" }, "peerDependencies": { "tree-sitter": "^0.21.1" @@ -39,17 +39,14 @@ "devDependencies": { "eslint": "^8.57.0", "eslint-config-google": "^0.14.0", - "tree-sitter-cli": "^0.22.2", - "prebuildify": "^6.0.0" + "tree-sitter-cli": "^0.23.0", + "prebuildify": "^6.0.1" }, "scripts": { - "build": "tree-sitter generate --no-bindings", - "build-wasm": "tree-sitter build --wasm -o tree-sitter-bash.wasm", "install": "node-gyp-build", - "lint": "eslint grammar.js", - "parse": "tree-sitter parse", - "prebuildify": "prebuildify --napi --strip", - "test": "tree-sitter test" + "prestart": "tree-sitter build --wasm", + "start": "tree-sitter playground", + "test": "node --test bindings/node/*_test.js" }, "tree-sitter": [ { diff --git a/pyproject.toml b/pyproject.toml index 69175d2f..93f874b9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,13 +12,13 @@ classifiers = [ "License :: OSI Approved :: MIT License", "Topic :: Software Development :: Compilers", "Topic :: Text Processing :: Linguistic", - "Typing :: Typed" + "Typing :: Typed", ] authors = [ - {name = "Max Brunsfeld", email = "maxbrunsfeld@gmail.com"}, - {name = "Amaan Qureshi", email = "amaanq12@gmail.com"} + { name = "Max Brunsfeld", email = "maxbrunsfeld@gmail.com" }, + { name = "Amaan Qureshi", email = "amaanq12@gmail.com" }, ] -requires-python = ">=3.8" +requires-python = ">=3.9" license.text = "MIT" readme = "README.md" @@ -29,5 +29,5 @@ Homepage = "https://github.com/tree-sitter/tree-sitter-bash" core = ["tree-sitter~=0.21"] [tool.cibuildwheel] -build = "cp38-*" +build = "cp39-*" build-frontend = "build" diff --git a/script/known-failures.txt b/script/known-failures.txt deleted file mode 100644 index d3ff6e11..00000000 --- a/script/known-failures.txt +++ /dev/null @@ -1,346 +0,0 @@ -examples/bash-it/completion/available/aliases.completion.bash -examples/bash-it/completion/available/bundler.completion.bash -examples/bash-it/completion/available/sqlmap.completion.bash -examples/bash-it/plugins/available/aws.plugin.bash -examples/bash-it/plugins/available/colors.plugin.bash -examples/bash-it/themes/hawaii50/hawaii50.theme.bash -examples/bash/examples/functions/notify.bash -examples/bash/examples/shellmath/shellmath.sh -examples/bash/tests/arith.tests -examples/bash/tests/array.tests -examples/bash/tests/assoc.tests -examples/bash/tests/case.tests -examples/bash/tests/comsub-posix.tests -examples/bash/tests/cond.tests -examples/bash/tests/errors.tests -examples/bash/tests/extglob.tests -examples/bash/tests/glob.tests -examples/bash/tests/heredoc.tests -examples/bash/tests/histexp.tests -examples/bash/tests/misc/dev-tcp.tests -examples/bash/tests/more-exp.tests -examples/bash/tests/new-exp.tests -examples/bash/tests/posixexp.tests -examples/bash/tests/posixexp2.tests -examples/bash/tests/printf.tests -examples/bash/tests/quote.tests -examples/bash/tests/quotearray.tests -examples/bash/tests/redir.tests -examples/bash/tests/test.tests -examples/gentoo/app-misc/editor-wrapper/files/editor-wrapper-4.sh -examples/gentoo/eclass/tests/toolchain-funcs.sh -examples/gentoo/eclass/texlive-common.eclass -examples/gentoo/mail-client/thunderbird-bin/files/thunderbird-bin-r1.sh -examples/gentoo/mail-client/thunderbird/files/thunderbird-r1.sh -examples/gentoo/sys-apps/less/files/lesspipe-r1.sh -examples/gentoo/sys-apps/less/files/lesspipe-r3.sh -examples/gentoo/www-client/firefox-bin/files/firefox-bin-r1.sh -examples/gentoo/www-client/firefox/files/firefox-r1.sh -examples/wild-corpus/cloud/chef-bcpc/legacy_scripts/make_databag.sh -examples/wild-corpus/cloud/docker/hack/make.sh -examples/wild-corpus/cloud/kubernetes/build/common.sh -examples/wild-corpus/cloud/kubernetes/cluster/gce/config-default.sh -examples/wild-corpus/cloud/kubernetes/cluster/gce/config-test.sh -examples/wild-corpus/cloud/kubernetes/hack/benchmark-go.sh -examples/wild-corpus/cloud/kubernetes/hack/generate-bindata.sh -examples/wild-corpus/cloud/kubernetes/hack/lib/golang.sh -examples/wild-corpus/cloud/kubernetes/hack/lib/test.sh -examples/wild-corpus/cloud/kubernetes/hack/make-rules/test-integration.sh -examples/wild-corpus/cloud/kubernetes/hack/make-rules/test.sh -examples/wild-corpus/cloud/kubernetes/hack/make-rules/verify.sh -examples/wild-corpus/cloud/kubernetes/hack/update-api-reference-docs.sh -examples/wild-corpus/cloud/kubernetes/hack/update-codegen.sh -examples/wild-corpus/cloud/kubernetes/hack/update-federation-api-reference-docs.sh -examples/wild-corpus/cloud/kubernetes/hack/update-federation-swagger-spec.sh -examples/wild-corpus/cloud/kubernetes/hack/update-swagger-spec.sh -examples/wild-corpus/cloud/kubernetes/test/e2e_node/gubernator.sh -examples/wild-corpus/cloud/kubernetes/vendor/github.com/ugorji/go/codec/prebuild.sh -examples/wild-corpus/cloud/sandstorm/install.sh -examples/wild-corpus/cloud/sandstorm/make-bundle.sh -examples/wild-corpus/cloud/sandstorm/shell/run-dev.sh -examples/wild-corpus/distro/DietPi/PREP_SYSTEM_FOR_DIETPI.sh -examples/wild-corpus/distro/portage/bin/misc-functions.sh -examples/wild-corpus/distro/portage/bin/phase-helpers.sh -examples/wild-corpus/distro/woof-CE/initrd-progs/build.sh -examples/wild-corpus/distro/woof-CE/woof-code/rootfs-packages/network_wizard/usr/sbin/wag-profiles.sh -examples/wild-corpus/distro/woof-CE/woof-code/rootfs-skeleton/usr/local/petget/configure.sh -examples/wild-corpus/distro/woof-CE/woof-code/rootfs-skeleton/usr/local/petget/installpkg.sh -examples/wild-corpus/distro/woof-CE/woof-code/rootfs-skeleton/usr/local/petget/pkg_chooser.sh -examples/wild-corpus/esoteric/CmdlineGL/share/examples/FlightSim.sh -examples/wild-corpus/esoteric/CmdlineGL/share/examples/Robot.sh -examples/wild-corpus/esoteric/lishp/callable.lambda.sh -examples/wild-corpus/esoteric/lishp/parser.sh -examples/wild-corpus/esoteric/make-a-lisp-bash/core.sh -examples/wild-corpus/esoteric/shasm/shasm.sh -examples/wild-corpus/exp/shootout/timing.sh -examples/wild-corpus/freebsd-11.1/contrib/binutils/ld/emulparams/elf64bmip.sh -examples/wild-corpus/freebsd-11.1/contrib/binutils/ld/genscripts.sh -examples/wild-corpus/freebsd-11.1/contrib/gcc/scan-types.sh -examples/wild-corpus/freebsd-11.1/contrib/groff/src/preproc/eqn/neqn.sh -examples/wild-corpus/freebsd-11.1/contrib/groff/src/roff/nroff/nroff.sh -examples/wild-corpus/freebsd-11.1/contrib/netbsd-tests/bin/sh/t_arith.sh -examples/wild-corpus/freebsd-11.1/contrib/netbsd-tests/bin/sh/t_here.sh -examples/wild-corpus/freebsd-11.1/contrib/ntp/scripts/stats/summary.sh -examples/wild-corpus/freebsd-11.1/contrib/ntp/scripts/update-leap/update-leap.sh -examples/wild-corpus/freebsd-11.1/crypto/openssl/util/bat.sh -examples/wild-corpus/freebsd-11.1/gnu/usr.bin/binutils/ld/genscripts.sh -examples/wild-corpus/freebsd-11.1/share/examples/drivers/make_device_driver.sh -examples/wild-corpus/freebsd-11.1/share/examples/drivers/make_pseudo_driver.sh -examples/wild-corpus/freebsd-11.1/sys/dev/bhnd/tools/bus_macro.sh -examples/wild-corpus/freebsd-11.1/sys/tools/bus_macro.sh -examples/wild-corpus/freebsd-11.1/tools/tools/mctest/mctest_run.sh -examples/wild-corpus/freebsd-11.1/tools/tools/nanobsd/fill_pkg.sh -examples/wild-corpus/freebsd-11.1/tools/tools/shlib-compat/test/regress.sh -examples/wild-corpus/freebsd-11.1/tools/tools/sysbuild/sysbuild.sh -examples/wild-corpus/freebsd-11.1/tools/tools/sysdoc/sysdoc.sh -examples/wild-corpus/freebsd-11.1/usr.bin/apply/tests/regress.sh -examples/wild-corpus/freebsd-11.1/usr.bin/calendar/tests/regress.sh -examples/wild-corpus/freebsd-11.1/usr.bin/comm/tests/regress.sh -examples/wild-corpus/freebsd-11.1/usr.bin/file2c/tests/regress.sh -examples/wild-corpus/freebsd-11.1/usr.bin/join/tests/regress.sh -examples/wild-corpus/freebsd-11.1/usr.bin/jot/tests/regress.sh -examples/wild-corpus/freebsd-11.1/usr.bin/m4/tests/regress.sh -examples/wild-corpus/freebsd-11.1/usr.bin/man/man.sh -examples/wild-corpus/freebsd-11.1/usr.bin/ncal/tests/regress.sh -examples/wild-corpus/freebsd-11.1/usr.bin/printf/tests/regress.sh -examples/wild-corpus/freebsd-11.1/usr.bin/sed/tests/regress.sh -examples/wild-corpus/freebsd-11.1/usr.bin/shar/shar.sh -examples/wild-corpus/freebsd-11.1/usr.bin/tr/tests/regress.sh -examples/wild-corpus/freebsd-11.1/usr.bin/uudecode/tests/regress.sh -examples/wild-corpus/freebsd-11.1/usr.bin/uuencode/tests/regress.sh -examples/wild-corpus/freebsd-11.1/usr.bin/xargs/tests/regress.sh -examples/wild-corpus/freebsd-11.1/usr.sbin/adduser/adduser.sh -examples/wild-corpus/freebsd-11.1/usr.sbin/freebsd-update/freebsd-update.sh -examples/wild-corpus/freebsd-11.1/usr.sbin/manctl/manctl.sh -examples/wild-corpus/freebsd-11.1/usr.sbin/portsnap/portsnap/portsnap.sh -examples/wild-corpus/git/contrib/examples/git-ls-remote.sh -examples/wild-corpus/git/contrib/examples/git-merge.sh -examples/wild-corpus/git/contrib/examples/git-pull.sh -examples/wild-corpus/git/git-filter-branch.sh -examples/wild-corpus/git/git-merge-octopus.sh -examples/wild-corpus/git/git-merge-resolve.sh -examples/wild-corpus/git/git-rebase--interactive.sh -examples/wild-corpus/git/git-submodule.sh -examples/wild-corpus/git/t/lib-pack.sh -examples/wild-corpus/git/t/t9500-gitweb-standalone-no-errors.sh -examples/wild-corpus/gnu/binutils-2.26/ld/emulparams/elf64bmip.sh -examples/wild-corpus/gnu/binutils-2.26/ld/genscripts.sh -examples/wild-corpus/gnu/coreutils-8.22/gnulib-tests/init.sh -examples/wild-corpus/gnu/coreutils-8.22/tests/init.sh -examples/wild-corpus/gnu/coreutils-8.22/tests/ln/hard-to-sym.sh -examples/wild-corpus/gnu/glibc-2.23/posix/globtest.sh -examples/wild-corpus/gnu/glibc-2.23/posix/tst-getconf.sh -examples/wild-corpus/gnu/glibc-2.23/sysdeps/unix/make-syscalls.sh -examples/wild-corpus/gnu/grep-2.24/gnulib-tests/init.sh -examples/wild-corpus/gnu/grep-2.24/tests/init.sh -examples/wild-corpus/google/bazel/src/test/shell/bazel/remote_helpers.sh -examples/wild-corpus/google/kythe/.jenkins/nightly-release.sh -examples/wild-corpus/google/kythe/kythe/extractors/openjdk/extract.sh -examples/wild-corpus/hg-other/eigen/bench/perf_monitoring/gemm/run.sh -examples/wild-corpus/hg-other/pygments-main/tests/examplefiles/example.sh -examples/wild-corpus/hg-other/pygments-main/tests/examplefiles/ltmain.sh -examples/wild-corpus/illumos-gate/usr/src/cmd/acct/prctmp.sh -examples/wild-corpus/illumos-gate/usr/src/cmd/acct/prtacct.sh -examples/wild-corpus/illumos-gate/usr/src/cmd/allocate/disk_clean.sh -examples/wild-corpus/illumos-gate/usr/src/cmd/ast/msgcc/msgcc.sh -examples/wild-corpus/illumos-gate/usr/src/cmd/avs/dscfg/dscfgadm.sh -examples/wild-corpus/illumos-gate/usr/src/cmd/diff3/diff3.sh -examples/wild-corpus/illumos-gate/usr/src/cmd/initpkg/umountall.sh -examples/wild-corpus/illumos-gate/usr/src/cmd/ipf/examples/mkfilters.sh -examples/wild-corpus/illumos-gate/usr/src/cmd/krb5/kadmin/kclient/kclient.sh -examples/wild-corpus/illumos-gate/usr/src/cmd/ldap/ns_ldap/idsconfig.sh -examples/wild-corpus/illumos-gate/usr/src/cmd/svc/configd/restore_repository.sh -examples/wild-corpus/illumos-gate/usr/src/cmd/svc/shell/ipf_include.sh -examples/wild-corpus/illumos-gate/usr/src/cmd/tail/tests/sun_solaris_tail.sh -examples/wild-corpus/illumos-gate/usr/src/cmd/tsol/misc/txzonemgr.sh -examples/wild-corpus/illumos-gate/usr/src/cmd/ypcmd/multi.awk.sh -examples/wild-corpus/illumos-gate/usr/src/cmd/ypcmd/ypinit.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libast/common/comp/conf.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/data/bash_pre_rc.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/scripts/cpvprint.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/scripts/crawlsrccomments.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/scripts/filemutexdemo1.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/scripts/filetree1.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/scripts/gnaw.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/scripts/mandelbrotset1.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/scripts/multifollow.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/scripts/numtree1.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/scripts/primenumbers1.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/scripts/rssread.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/scripts/shcalc.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/scripts/shircbot.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/scripts/shlint.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/scripts/shman.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/scripts/shnote.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/scripts/shpiano.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/scripts/shtinyurl.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/scripts/shtwitter.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/scripts/simplefileattributetree1.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/scripts/simplefiletree1.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/scripts/svcproptree1.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/scripts/termclock.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/scripts/test_net_sctp.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/scripts/xmldocumenttree1.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/append.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/arith.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/arrays.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/arrays2.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/attributes.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/basic.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/bracket.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/builtins.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/comvar.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/coprocess.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/cubetype.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/enum.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/expand.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/functions.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/io.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/nameref.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/options.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/path.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/pointtype.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/quoting.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/quoting2.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/recttype.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/sigchld.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/signal.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/statics.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/subshell.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/substring.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/sun_solaris_array_default_datatype.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/sun_solaris_builtin_poll.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/sun_solaris_builtin_tail.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/sun_solaris_command_substitution.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/sun_solaris_compound_misc.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/sun_solaris_compound_nameref.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/sun_solaris_compoundvario.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/sun_solaris_cr_6722134_background_CHLD_trap.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/sun_solaris_cr_6763594_command_failure_execs_twice.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/sun_solaris_cr_6789247_printf_hexfloat_rounding.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/sun_solaris_cr_6800929_large_command_substitution_hang.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/sun_solaris_cr_6805792_varmovetest1.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/sun_solaris_cr_6805795_negative_zero.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/sun_solaris_cr_6835835_builtin_cat_n_broken.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/sun_solaris_cr_6855875_typeset_hexfloat_has_too_few_digits.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/sun_solaris_cr_6881017_background_process_in_subshell_hangs_caller.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/sun_solaris_cr_6904557_wc_no_longer_counts_number_of_bytes_correctly.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/sun_solaris_cr_6904575_cut_-d_with_multibyte_character_no_longer_works.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/sun_solaris_cr_6904878_join_-t_no_longer_works_with_multibyte_char_separator.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/sun_solaris_cr_6907460_EXIT_trap_handlers_are_sometimes_executed_twice.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/sun_solaris_locale_misc.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/sun_solaris_staticvariables.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/sun_solaris_vartree001.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/sun_solaris_vartree002.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/sun_solaris_vartree003.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/tilde.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/timetype.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/treemove.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/types.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/variables.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/vartree1.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/common/tests/vartree2.sh -examples/wild-corpus/illumos-gate/usr/src/lib/libshell/misc/buildksh93.sh -examples/wild-corpus/illumos-gate/usr/src/test/os-tests/tests/pf_key/acquire-spray.sh -examples/wild-corpus/illumos-gate/usr/src/tools/env/illumos.sh -examples/wild-corpus/illumos-gate/usr/src/tools/gk/cshrc.sh -examples/wild-corpus/illumos-gate/usr/src/tools/gk/gen_make.machines.sh -examples/wild-corpus/illumos-gate/usr/src/tools/gk/login.sh -examples/wild-corpus/illumos-gate/usr/src/tools/scripts/bldenv.sh -examples/wild-corpus/illumos-gate/usr/src/tools/scripts/nightly.sh -examples/wild-corpus/illumos-gate/usr/src/tools/scripts/webrev.sh -examples/wild-corpus/liballocs/tools/debug-funcs.sh -examples/wild-corpus/linux-4.8.7/scripts/decode_stacktrace.sh -examples/wild-corpus/linux-4.8.7/scripts/tags.sh -examples/wild-corpus/linux-4.8.7/tools/perf/perf-completion.sh -examples/wild-corpus/linux-4.8.7/tools/perf/perf-with-kcore.sh -examples/wild-corpus/linux-4.8.7/tools/vm/slabinfo-gnuplot.sh -examples/wild-corpus/minix/commands/scripts/DESCRIBE.sh -examples/wild-corpus/minix/commands/scripts/mkdist.sh -examples/wild-corpus/minix/lib/generate.sh -examples/wild-corpus/oil/test/gold.sh -examples/wild-corpus/oil/test/osh2oil.sh -examples/wild-corpus/oil/test/oshc-deps.sh -examples/wild-corpus/oil/test/smoke.sh -examples/wild-corpus/sdk/tools/clang/scripts/update.sh -examples/wild-corpus/shell/ast/src/cmd/3d/3d.sh -examples/wild-corpus/shell/ast/src/cmd/3d/features/syscall.sh -examples/wild-corpus/shell/ast/src/cmd/INIT/ditto.sh -examples/wild-corpus/shell/ast/src/cmd/INIT/hurl.sh -examples/wild-corpus/shell/ast/src/cmd/INIT/iffe.sh -examples/wild-corpus/shell/ast/src/cmd/INIT/mktest.sh -examples/wild-corpus/shell/ast/src/cmd/INIT/package.sh -examples/wild-corpus/shell/ast/src/cmd/INIT/regress.sh -examples/wild-corpus/shell/ast/src/cmd/INIT/rt.sh -examples/wild-corpus/shell/ast/src/cmd/html/mm2bb.sh -examples/wild-corpus/shell/ast/src/cmd/html/mm2html.sh -examples/wild-corpus/shell/ast/src/cmd/html/mm2twiki.sh -examples/wild-corpus/shell/ast/src/cmd/ie/ie.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/data/bash_pre_rc.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/append.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/arith.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/arrays.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/arrays2.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/attributes.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/basic.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/bracket.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/builtins.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/comvar.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/comvario.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/coprocess.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/cubetype.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/enum.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/expand.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/functions.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/heredoc.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/io.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/leaks.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/locale.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/math.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/nameref.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/namespace.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/options.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/path.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/pointtype.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/quoting.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/quoting2.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/recttype.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/sigchld.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/signal.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/statics.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/subshell.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/substring.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/tilde.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/timetype.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/treemove.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/types.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/variables.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/vartree1.sh -examples/wild-corpus/shell/ast/src/cmd/ksh93/tests/vartree2.sh -examples/wild-corpus/shell/ast/src/cmd/mam/mamold.sh -examples/wild-corpus/shell/ast/src/cmd/msgcc/msgadmin.sh -examples/wild-corpus/shell/ast/src/cmd/msgcc/msgcc.sh -examples/wild-corpus/shell/ast/src/cmd/pax/tar.sh -examples/wild-corpus/shell/ast/src/cmd/proto/changes.sh -examples/wild-corpus/shell/ast/src/cmd/std/seq.sh -examples/wild-corpus/shell/ast/src/cmd/warp/warp.sh -examples/wild-corpus/shell/ast/src/lib/libast/comp/conf.sh -examples/wild-corpus/shell/bashdb/command/backtrace.sh -examples/wild-corpus/shell/bashdb/command/set_sub/autoeval.sh -examples/wild-corpus/shell/bashdb/command/set_sub/autolist.sh -examples/wild-corpus/shell/bashdb/command/set_sub/basename.sh -examples/wild-corpus/shell/bashdb/command/set_sub/debug.sh -examples/wild-corpus/shell/bashdb/command/set_sub/debugging.sh -examples/wild-corpus/shell/bashdb/command/set_sub/editing.sh -examples/wild-corpus/shell/bashdb/command/set_sub/highlight.sh -examples/wild-corpus/shell/bashdb/command/set_sub/history.sh -examples/wild-corpus/shell/bashdb/command/set_sub/showcommand.sh -examples/wild-corpus/shell/bashdb/getopts_long.sh -examples/wild-corpus/shell/bashdb/lib/processor.sh -examples/wild-corpus/shell/bashdb/test/unit/test-file.sh -examples/wild-corpus/shell/mksh/Build.sh -examples/wild-corpus/shell/mksh/test.sh -examples/wild-corpus/shell/modernish/install.sh -examples/wild-corpus/shell/mwc-sh/shql.sh -examples/wild-corpus/shell/posixcube/posixcube.sh -examples/wild-corpus/shell/posixcube/test.sh diff --git a/script/parse-examples b/script/parse-examples deleted file mode 100755 index ff606e6b..00000000 --- a/script/parse-examples +++ /dev/null @@ -1,36 +0,0 @@ -#!/usr/bin/env bash - -set -euo pipefail - -files=( - examples/*.sh - examples/bash-it/**/*.sh - examples/bash-it/**/*.bash - examples/bash/**/*.sh - examples/bash/**/*.tests - examples/gentoo/**/*.sh - examples/gentoo/**/*.eclass - examples/gentoo/**/*.ebuild - examples/wild-corpus/**/*.sh -) - -clone() { - if [[ -d examples/$1 ]]; then - git -C "examples/$1" fetch origin "$3:$3" -f -u --depth=1 - else - git clone "$2" "examples/$1" -b "$3" --single-branch --depth=1 - fi -} - -cd "${0%/script/parse-examples}" - -clone bash-it https://github.com/Bash-it/bash-it master -clone bash https://git.savannah.gnu.org/git/bash.git master -clone gentoo https://anongit.gentoo.org/git/repo/gentoo.git master -clone wild-corpus https://github.com/oilshell/wild-corpus main - -find examples \( -name '*.sh' -or -name '*.bash' -or -name '*.tests' -or \ - -name '*.eclass' -or -name '*.ebuild' \) -and -type f -print > script/example-files.txt - -tree-sitter parse --scope source.bash -q -s --paths script/example-files.txt |& \ - tee >(awk '/ERROR|MISSING/{print $1}' | sort > script/known-failures.txt) diff --git a/setup.py b/setup.py index 3ad9e1aa..66667466 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ class BdistWheel(bdist_wheel): def get_tag(self): python, abi, platform = super().get_tag() if python.startswith("cp"): - python, abi = "cp38", "abi3" + python, abi = "cp39", "abi3" return python, abi, platform @@ -36,14 +36,19 @@ def get_tag(self): sources=[ "bindings/python/tree_sitter_bash/binding.c", "src/parser.c", - "src/scanner.c", + # NOTE: if your language uses an external scanner, add it here. + ], + extra_compile_args=[ + "-std=c11", + "-fvisibility=hidden", + ] if system() != "Windows" else [ + "/std:c11", + "/utf-8", ], - extra_compile_args=( - ["-std=c11"] if system() != 'Windows' else [] - ), define_macros=[ - ("Py_LIMITED_API", "0x03080000"), - ("PY_SSIZE_T_CLEAN", None) + ("Py_LIMITED_API", "0x03090000"), + ("PY_SSIZE_T_CLEAN", None), + ("TREE_SITTER_HIDE_SYMBOLS", None), ], include_dirs=["src"], py_limited_api=True, diff --git a/src/parser.c b/src/parser.c index b6e4abea..2038bed8 100644 --- a/src/parser.c +++ b/src/parser.c @@ -2763,15 +2763,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [10] = 4, [11] = 4, [12] = 12, - [13] = 13, - [14] = 13, - [15] = 13, - [16] = 12, - [17] = 17, - [18] = 17, - [19] = 17, - [20] = 13, - [21] = 17, + [13] = 12, + [14] = 14, + [15] = 15, + [16] = 14, + [17] = 15, + [18] = 15, + [19] = 14, + [20] = 14, + [21] = 15, [22] = 22, [23] = 23, [24] = 24, @@ -2800,420 +2800,420 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [47] = 47, [48] = 48, [49] = 49, - [50] = 50, - [51] = 50, - [52] = 49, + [50] = 49, + [51] = 49, + [52] = 52, [53] = 49, - [54] = 50, - [55] = 49, - [56] = 49, - [57] = 49, - [58] = 49, - [59] = 50, - [60] = 49, + [54] = 52, + [55] = 52, + [56] = 52, + [57] = 52, + [58] = 52, + [59] = 52, + [60] = 52, [61] = 61, - [62] = 34, + [62] = 62, [63] = 63, - [64] = 64, - [65] = 61, + [64] = 61, + [65] = 65, [66] = 66, [67] = 67, [68] = 68, - [69] = 64, + [69] = 69, [70] = 70, - [71] = 71, - [72] = 63, - [73] = 61, - [74] = 68, - [75] = 66, - [76] = 70, - [77] = 67, - [78] = 71, - [79] = 64, - [80] = 61, - [81] = 63, - [82] = 68, - [83] = 66, - [84] = 70, - [85] = 71, - [86] = 63, - [87] = 68, - [88] = 67, - [89] = 64, - [90] = 70, - [91] = 71, - [92] = 63, - [93] = 68, - [94] = 70, - [95] = 71, - [96] = 63, - [97] = 61, - [98] = 66, - [99] = 68, - [100] = 67, - [101] = 64, - [102] = 102, - [103] = 70, - [104] = 71, - [105] = 34, - [106] = 61, - [107] = 61, - [108] = 66, - [109] = 67, - [110] = 64, - [111] = 61, - [112] = 112, - [113] = 66, - [114] = 64, - [115] = 67, - [116] = 64, - [117] = 61, + [71] = 34, + [72] = 34, + [73] = 70, + [74] = 69, + [75] = 75, + [76] = 76, + [77] = 70, + [78] = 75, + [79] = 69, + [80] = 75, + [81] = 76, + [82] = 70, + [83] = 69, + [84] = 84, + [85] = 75, + [86] = 76, + [87] = 70, + [88] = 69, + [89] = 75, + [90] = 76, + [91] = 70, + [92] = 69, + [93] = 75, + [94] = 76, + [95] = 70, + [96] = 69, + [97] = 75, + [98] = 76, + [99] = 70, + [100] = 69, + [101] = 75, + [102] = 76, + [103] = 84, + [104] = 65, + [105] = 66, + [106] = 67, + [107] = 68, + [108] = 76, + [109] = 84, + [110] = 61, + [111] = 65, + [112] = 66, + [113] = 67, + [114] = 68, + [115] = 84, + [116] = 61, + [117] = 65, [118] = 66, - [119] = 61, - [120] = 67, - [121] = 66, - [122] = 102, - [123] = 67, - [124] = 64, - [125] = 112, - [126] = 61, - [127] = 66, - [128] = 64, - [129] = 61, + [119] = 67, + [120] = 68, + [121] = 121, + [122] = 84, + [123] = 61, + [124] = 65, + [125] = 66, + [126] = 67, + [127] = 84, + [128] = 61, + [129] = 65, [130] = 66, [131] = 67, - [132] = 67, - [133] = 102, - [134] = 64, - [135] = 61, - [136] = 61, - [137] = 71, - [138] = 66, - [139] = 67, - [140] = 64, - [141] = 61, - [142] = 66, - [143] = 70, - [144] = 67, - [145] = 112, - [146] = 66, - [147] = 64, - [148] = 64, - [149] = 61, + [132] = 84, + [133] = 61, + [134] = 65, + [135] = 66, + [136] = 67, + [137] = 84, + [138] = 61, + [139] = 65, + [140] = 66, + [141] = 67, + [142] = 61, + [143] = 65, + [144] = 66, + [145] = 67, + [146] = 61, + [147] = 65, + [148] = 66, + [149] = 67, [150] = 61, - [151] = 66, - [152] = 67, - [153] = 102, - [154] = 63, - [155] = 112, - [156] = 61, - [157] = 66, - [158] = 64, - [159] = 61, + [151] = 65, + [152] = 66, + [153] = 67, + [154] = 61, + [155] = 65, + [156] = 66, + [157] = 67, + [158] = 61, + [159] = 65, [160] = 66, [161] = 67, - [162] = 67, - [163] = 112, - [164] = 64, - [165] = 64, - [166] = 64, - [167] = 61, - [168] = 61, - [169] = 66, - [170] = 66, - [171] = 67, - [172] = 67, - [173] = 112, - [174] = 64, - [175] = 61, + [162] = 61, + [163] = 65, + [164] = 66, + [165] = 67, + [166] = 61, + [167] = 65, + [168] = 66, + [169] = 67, + [170] = 61, + [171] = 65, + [172] = 66, + [173] = 67, + [174] = 61, + [175] = 65, [176] = 66, [177] = 67, - [178] = 64, - [179] = 112, - [180] = 64, - [181] = 61, - [182] = 67, - [183] = 61, + [178] = 61, + [179] = 65, + [180] = 66, + [181] = 67, + [182] = 61, + [183] = 65, [184] = 66, [185] = 67, - [186] = 64, - [187] = 61, + [186] = 61, + [187] = 65, [188] = 66, [189] = 67, - [190] = 64, - [191] = 66, - [192] = 61, - [193] = 66, - [194] = 67, - [195] = 67, - [196] = 64, - [197] = 61, - [198] = 66, - [199] = 64, - [200] = 67, - [201] = 64, + [190] = 61, + [191] = 65, + [192] = 66, + [193] = 67, + [194] = 61, + [195] = 65, + [196] = 66, + [197] = 67, + [198] = 61, + [199] = 65, + [200] = 66, + [201] = 67, [202] = 61, - [203] = 66, - [204] = 67, - [205] = 64, + [203] = 65, + [204] = 66, + [205] = 67, [206] = 61, - [207] = 66, - [208] = 61, - [209] = 66, - [210] = 67, - [211] = 64, - [212] = 61, - [213] = 66, - [214] = 67, - [215] = 64, - [216] = 61, + [207] = 65, + [208] = 66, + [209] = 67, + [210] = 61, + [211] = 65, + [212] = 66, + [213] = 67, + [214] = 61, + [215] = 65, + [216] = 66, [217] = 67, - [218] = 66, - [219] = 67, - [220] = 64, - [221] = 61, - [222] = 66, - [223] = 67, - [224] = 64, - [225] = 61, - [226] = 226, - [227] = 66, - [228] = 67, - [229] = 64, + [218] = 61, + [219] = 65, + [220] = 66, + [221] = 67, + [222] = 61, + [223] = 65, + [224] = 66, + [225] = 67, + [226] = 61, + [227] = 65, + [228] = 66, + [229] = 67, [230] = 61, - [231] = 66, - [232] = 232, - [233] = 64, - [234] = 234, - [235] = 67, - [236] = 64, - [237] = 71, + [231] = 65, + [232] = 66, + [233] = 67, + [234] = 61, + [235] = 65, + [236] = 66, + [237] = 67, [238] = 61, - [239] = 61, - [240] = 112, - [241] = 66, - [242] = 67, - [243] = 64, - [244] = 61, - [245] = 66, - [246] = 66, - [247] = 66, - [248] = 67, - [249] = 64, - [250] = 67, - [251] = 61, - [252] = 64, - [253] = 66, - [254] = 67, - [255] = 64, - [256] = 61, - [257] = 66, - [258] = 67, - [259] = 61, - [260] = 66, - [261] = 64, - [262] = 61, + [239] = 65, + [240] = 66, + [241] = 67, + [242] = 61, + [243] = 65, + [244] = 66, + [245] = 67, + [246] = 61, + [247] = 65, + [248] = 66, + [249] = 67, + [250] = 61, + [251] = 65, + [252] = 66, + [253] = 61, + [254] = 65, + [255] = 66, + [256] = 67, + [257] = 61, + [258] = 65, + [259] = 66, + [260] = 67, + [261] = 61, + [262] = 65, [263] = 66, [264] = 67, - [265] = 67, - [266] = 64, - [267] = 61, - [268] = 64, + [265] = 61, + [266] = 65, + [267] = 66, + [268] = 67, [269] = 61, - [270] = 66, + [270] = 65, [271] = 66, [272] = 67, - [273] = 67, - [274] = 64, + [273] = 61, + [274] = 65, [275] = 66, - [276] = 61, - [277] = 64, - [278] = 64, + [276] = 67, + [277] = 61, + [278] = 65, [279] = 66, - [280] = 70, + [280] = 67, [281] = 61, - [282] = 68, + [282] = 65, [283] = 66, - [284] = 63, - [285] = 67, - [286] = 64, - [287] = 64, - [288] = 66, - [289] = 66, - [290] = 68, - [291] = 61, - [292] = 64, - [293] = 66, - [294] = 67, - [295] = 61, - [296] = 64, + [284] = 67, + [285] = 61, + [286] = 65, + [287] = 66, + [288] = 67, + [289] = 61, + [290] = 65, + [291] = 66, + [292] = 67, + [293] = 61, + [294] = 65, + [295] = 66, + [296] = 67, [297] = 61, - [298] = 61, - [299] = 64, - [300] = 66, + [298] = 65, + [299] = 66, + [300] = 67, [301] = 61, - [302] = 64, + [302] = 65, [303] = 66, - [304] = 61, - [305] = 64, - [306] = 66, - [307] = 61, - [308] = 64, - [309] = 66, - [310] = 61, - [311] = 64, - [312] = 66, + [304] = 67, + [305] = 61, + [306] = 65, + [307] = 66, + [308] = 67, + [309] = 61, + [310] = 65, + [311] = 66, + [312] = 67, [313] = 61, - [314] = 64, + [314] = 65, [315] = 66, - [316] = 61, - [317] = 64, - [318] = 66, - [319] = 61, - [320] = 64, - [321] = 66, - [322] = 61, - [323] = 64, - [324] = 66, + [316] = 67, + [317] = 61, + [318] = 65, + [319] = 66, + [320] = 67, + [321] = 61, + [322] = 65, + [323] = 66, + [324] = 67, [325] = 61, - [326] = 64, + [326] = 65, [327] = 66, - [328] = 61, - [329] = 64, - [330] = 66, - [331] = 61, - [332] = 64, - [333] = 66, - [334] = 61, - [335] = 64, - [336] = 66, - [337] = 67, - [338] = 66, - [339] = 67, - [340] = 64, + [328] = 67, + [329] = 61, + [330] = 65, + [331] = 66, + [332] = 67, + [333] = 61, + [334] = 65, + [335] = 66, + [336] = 67, + [337] = 61, + [338] = 65, + [339] = 66, + [340] = 67, [341] = 61, - [342] = 66, - [343] = 61, - [344] = 64, - [345] = 67, - [346] = 66, - [347] = 61, - [348] = 64, - [349] = 67, - [350] = 67, - [351] = 64, - [352] = 66, + [342] = 65, + [343] = 66, + [344] = 67, + [345] = 61, + [346] = 65, + [347] = 66, + [348] = 67, + [349] = 61, + [350] = 65, + [351] = 66, + [352] = 67, [353] = 61, - [354] = 66, - [355] = 67, - [356] = 66, - [357] = 67, - [358] = 61, - [359] = 64, - [360] = 64, - [361] = 67, - [362] = 66, - [363] = 61, - [364] = 61, - [365] = 66, - [366] = 67, - [367] = 64, + [354] = 65, + [355] = 66, + [356] = 67, + [357] = 61, + [358] = 65, + [359] = 66, + [360] = 67, + [361] = 61, + [362] = 65, + [363] = 66, + [364] = 67, + [365] = 61, + [366] = 65, + [367] = 66, [368] = 67, - [369] = 66, - [370] = 61, - [371] = 64, - [372] = 67, - [373] = 66, - [374] = 64, - [375] = 67, - [376] = 64, - [377] = 67, - [378] = 66, - [379] = 61, - [380] = 64, - [381] = 67, - [382] = 66, - [383] = 61, - [384] = 64, - [385] = 67, + [369] = 61, + [370] = 65, + [371] = 66, + [372] = 61, + [373] = 65, + [374] = 66, + [375] = 61, + [376] = 65, + [377] = 66, + [378] = 61, + [379] = 65, + [380] = 66, + [381] = 61, + [382] = 65, + [383] = 66, + [384] = 61, + [385] = 65, [386] = 66, [387] = 61, - [388] = 64, - [389] = 67, - [390] = 66, - [391] = 61, - [392] = 64, - [393] = 67, - [394] = 66, - [395] = 61, - [396] = 64, - [397] = 67, + [388] = 65, + [389] = 66, + [390] = 61, + [391] = 65, + [392] = 66, + [393] = 61, + [394] = 65, + [395] = 66, + [396] = 61, + [397] = 65, [398] = 66, [399] = 61, - [400] = 64, - [401] = 67, - [402] = 66, - [403] = 61, - [404] = 64, - [405] = 67, - [406] = 66, - [407] = 61, - [408] = 64, - [409] = 67, - [410] = 61, - [411] = 66, - [412] = 61, - [413] = 64, - [414] = 67, - [415] = 66, - [416] = 61, - [417] = 64, + [400] = 65, + [401] = 66, + [402] = 61, + [403] = 65, + [404] = 66, + [405] = 61, + [406] = 65, + [407] = 66, + [408] = 61, + [409] = 65, + [410] = 66, + [411] = 61, + [412] = 65, + [413] = 66, + [414] = 61, + [415] = 65, + [416] = 66, + [417] = 67, [418] = 418, [419] = 419, - [420] = 420, + [420] = 418, [421] = 421, - [422] = 421, + [422] = 419, [423] = 423, - [424] = 420, - [425] = 421, - [426] = 423, - [427] = 423, - [428] = 421, - [429] = 423, - [430] = 420, - [431] = 423, - [432] = 420, + [424] = 418, + [425] = 425, + [426] = 419, + [427] = 418, + [428] = 419, + [429] = 419, + [430] = 425, + [431] = 425, + [432] = 425, [433] = 433, [434] = 434, - [435] = 435, + [435] = 433, [436] = 433, - [437] = 435, - [438] = 435, - [439] = 435, - [440] = 440, - [441] = 433, - [442] = 435, - [443] = 435, - [444] = 433, + [437] = 433, + [438] = 438, + [439] = 434, + [440] = 433, + [441] = 434, + [442] = 434, + [443] = 433, + [444] = 434, [445] = 433, - [446] = 435, - [447] = 433, - [448] = 435, - [449] = 433, - [450] = 433, + [446] = 434, + [447] = 434, + [448] = 433, + [449] = 434, + [450] = 450, [451] = 451, [452] = 452, - [453] = 452, + [453] = 451, [454] = 451, [455] = 452, [456] = 451, [457] = 452, - [458] = 451, - [459] = 451, - [460] = 451, - [461] = 452, - [462] = 452, - [463] = 451, + [458] = 452, + [459] = 452, + [460] = 452, + [461] = 451, + [462] = 451, + [463] = 452, [464] = 464, [465] = 465, [466] = 464, @@ -3246,17603 +3246,17904 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [493] = 493, [494] = 494, [495] = 495, - [496] = 472, - [497] = 471, - [498] = 473, - [499] = 470, - [500] = 469, + [496] = 470, + [497] = 473, + [498] = 498, + [499] = 471, + [500] = 472, [501] = 468, - [502] = 502, - [503] = 489, - [504] = 490, + [502] = 469, + [503] = 490, + [504] = 482, [505] = 484, - [506] = 488, - [507] = 492, + [506] = 487, + [507] = 474, [508] = 476, - [509] = 481, - [510] = 480, - [511] = 486, - [512] = 483, - [513] = 482, + [509] = 483, + [510] = 475, + [511] = 489, + [512] = 478, + [513] = 481, [514] = 485, - [515] = 474, - [516] = 475, - [517] = 491, - [518] = 477, - [519] = 478, - [520] = 479, - [521] = 487, + [515] = 491, + [516] = 488, + [517] = 492, + [518] = 479, + [519] = 477, + [520] = 486, + [521] = 480, [522] = 493, [523] = 494, - [524] = 502, + [524] = 498, [525] = 495, [526] = 526, [527] = 526, [528] = 528, [529] = 529, - [530] = 528, - [531] = 529, + [530] = 529, + [531] = 528, [532] = 532, - [533] = 528, + [533] = 529, [534] = 528, [535] = 535, - [536] = 529, - [537] = 529, + [536] = 536, + [537] = 464, [538] = 465, - [539] = 464, - [540] = 540, - [541] = 532, - [542] = 540, - [543] = 529, - [544] = 528, + [539] = 528, + [540] = 529, + [541] = 541, + [542] = 542, + [543] = 532, + [544] = 544, [545] = 529, - [546] = 546, - [547] = 535, - [548] = 548, - [549] = 465, + [546] = 528, + [547] = 536, + [548] = 465, + [549] = 464, [550] = 464, - [551] = 551, - [552] = 465, - [553] = 464, - [554] = 528, - [555] = 464, - [556] = 465, - [557] = 540, + [551] = 465, + [552] = 528, + [553] = 529, + [554] = 535, + [555] = 465, + [556] = 535, + [557] = 542, [558] = 464, - [559] = 551, - [560] = 535, - [561] = 535, - [562] = 532, - [563] = 548, - [564] = 465, - [565] = 546, - [566] = 540, - [567] = 464, + [559] = 464, + [560] = 465, + [561] = 532, + [562] = 544, + [563] = 532, + [564] = 536, + [565] = 464, + [566] = 541, + [567] = 535, [568] = 465, - [569] = 532, - [570] = 551, - [571] = 535, - [572] = 464, - [573] = 573, - [574] = 532, - [575] = 575, - [576] = 548, - [577] = 546, - [578] = 465, + [569] = 536, + [570] = 542, + [571] = 532, + [572] = 536, + [573] = 541, + [574] = 544, + [575] = 542, + [576] = 465, + [577] = 544, + [578] = 464, [579] = 465, [580] = 464, - [581] = 546, - [582] = 540, + [581] = 464, + [582] = 465, [583] = 583, - [584] = 540, - [585] = 551, - [586] = 548, - [587] = 535, - [588] = 464, - [589] = 465, - [590] = 590, - [591] = 575, - [592] = 548, - [593] = 583, - [594] = 551, - [595] = 573, - [596] = 528, - [597] = 464, - [598] = 598, - [599] = 599, - [600] = 529, - [601] = 575, - [602] = 548, - [603] = 465, + [584] = 584, + [585] = 585, + [586] = 541, + [587] = 536, + [588] = 535, + [589] = 532, + [590] = 464, + [591] = 464, + [592] = 592, + [593] = 593, + [594] = 464, + [595] = 465, + [596] = 583, + [597] = 584, + [598] = 583, + [599] = 465, + [600] = 600, + [601] = 542, + [602] = 585, + [603] = 544, [604] = 604, - [605] = 464, - [606] = 464, + [605] = 605, + [606] = 541, [607] = 607, - [608] = 465, - [609] = 583, - [610] = 551, - [611] = 465, - [612] = 546, - [613] = 613, - [614] = 573, - [615] = 573, - [616] = 573, + [608] = 544, + [609] = 465, + [610] = 584, + [611] = 528, + [612] = 542, + [613] = 529, + [614] = 585, + [615] = 585, + [616] = 604, [617] = 529, [618] = 618, - [619] = 618, - [620] = 528, - [621] = 583, - [622] = 622, - [623] = 618, - [624] = 622, - [625] = 625, - [626] = 618, - [627] = 583, - [628] = 465, - [629] = 613, - [630] = 583, - [631] = 604, - [632] = 590, - [633] = 598, - [634] = 464, - [635] = 607, - [636] = 618, - [637] = 464, - [638] = 465, - [639] = 464, - [640] = 465, + [619] = 583, + [620] = 584, + [621] = 618, + [622] = 592, + [623] = 593, + [624] = 624, + [625] = 585, + [626] = 592, + [627] = 593, + [628] = 618, + [629] = 583, + [630] = 630, + [631] = 624, + [632] = 584, + [633] = 585, + [634] = 528, + [635] = 584, + [636] = 464, + [637] = 465, + [638] = 464, + [639] = 465, + [640] = 584, [641] = 464, - [642] = 575, - [643] = 465, - [644] = 618, - [645] = 607, - [646] = 575, - [647] = 465, - [648] = 604, - [649] = 573, + [642] = 465, + [643] = 585, + [644] = 583, + [645] = 464, + [646] = 465, + [647] = 464, + [648] = 465, + [649] = 618, [650] = 618, [651] = 583, - [652] = 464, - [653] = 575, - [654] = 573, - [655] = 625, - [656] = 618, - [657] = 575, - [658] = 604, - [659] = 659, - [660] = 583, - [661] = 659, + [652] = 600, + [653] = 630, + [654] = 618, + [655] = 618, + [656] = 607, + [657] = 618, + [658] = 464, + [659] = 583, + [660] = 584, + [661] = 585, [662] = 464, - [663] = 464, - [664] = 598, - [665] = 607, - [666] = 465, - [667] = 613, - [668] = 465, - [669] = 465, - [670] = 465, - [671] = 659, + [663] = 465, + [664] = 664, + [665] = 592, + [666] = 593, + [667] = 583, + [668] = 600, + [669] = 592, + [670] = 593, + [671] = 604, [672] = 583, - [673] = 573, - [674] = 464, - [675] = 535, - [676] = 465, - [677] = 464, - [678] = 583, - [679] = 464, - [680] = 573, - [681] = 604, - [682] = 604, + [673] = 584, + [674] = 585, + [675] = 592, + [676] = 593, + [677] = 664, + [678] = 604, + [679] = 664, + [680] = 465, + [681] = 464, + [682] = 464, [683] = 464, - [684] = 573, - [685] = 659, - [686] = 575, - [687] = 464, - [688] = 540, - [689] = 607, - [690] = 590, - [691] = 575, + [684] = 465, + [685] = 465, + [686] = 584, + [687] = 593, + [688] = 585, + [689] = 464, + [690] = 465, + [691] = 464, [692] = 465, - [693] = 590, - [694] = 604, - [695] = 613, - [696] = 465, - [697] = 659, - [698] = 659, - [699] = 464, - [700] = 465, - [701] = 659, - [702] = 573, - [703] = 532, - [704] = 583, - [705] = 575, - [706] = 607, - [707] = 575, - [708] = 607, - [709] = 598, - [710] = 464, + [693] = 664, + [694] = 464, + [695] = 465, + [696] = 592, + [697] = 600, + [698] = 583, + [699] = 664, + [700] = 584, + [701] = 585, + [702] = 664, + [703] = 607, + [704] = 664, + [705] = 607, + [706] = 536, + [707] = 535, + [708] = 532, + [709] = 465, + [710] = 465, [711] = 711, - [712] = 712, - [713] = 711, - [714] = 573, - [715] = 583, - [716] = 464, + [712] = 711, + [713] = 465, + [714] = 464, + [715] = 465, + [716] = 716, [717] = 464, - [718] = 590, - [719] = 573, - [720] = 575, - [721] = 465, - [722] = 607, - [723] = 464, - [724] = 604, - [725] = 465, - [726] = 613, - [727] = 540, - [728] = 728, - [729] = 729, + [718] = 592, + [719] = 719, + [720] = 583, + [721] = 464, + [722] = 465, + [723] = 723, + [724] = 584, + [725] = 719, + [726] = 464, + [727] = 465, + [728] = 464, + [729] = 464, [730] = 730, - [731] = 598, + [731] = 536, [732] = 464, - [733] = 604, - [734] = 734, - [735] = 465, - [736] = 728, - [737] = 465, - [738] = 607, - [739] = 604, - [740] = 464, - [741] = 583, - [742] = 575, - [743] = 613, - [744] = 729, - [745] = 728, - [746] = 546, - [747] = 583, - [748] = 548, - [749] = 464, - [750] = 465, - [751] = 532, - [752] = 535, - [753] = 728, - [754] = 573, - [755] = 575, + [733] = 465, + [734] = 593, + [735] = 583, + [736] = 719, + [737] = 723, + [738] = 723, + [739] = 719, + [740] = 604, + [741] = 465, + [742] = 465, + [743] = 583, + [744] = 584, + [745] = 730, + [746] = 593, + [747] = 535, + [748] = 592, + [749] = 607, + [750] = 584, + [751] = 464, + [752] = 585, + [753] = 604, + [754] = 593, + [755] = 532, [756] = 465, - [757] = 573, - [758] = 729, - [759] = 604, - [760] = 734, - [761] = 590, - [762] = 712, - [763] = 730, - [764] = 607, - [765] = 465, - [766] = 464, - [767] = 464, - [768] = 465, - [769] = 729, - [770] = 728, - [771] = 729, - [772] = 607, - [773] = 575, - [774] = 465, - [775] = 465, - [776] = 464, - [777] = 551, - [778] = 607, - [779] = 604, - [780] = 599, - [781] = 583, - [782] = 464, - [783] = 604, - [784] = 464, - [785] = 604, - [786] = 573, - [787] = 465, - [788] = 573, - [789] = 575, - [790] = 604, - [791] = 575, - [792] = 607, + [757] = 719, + [758] = 600, + [759] = 723, + [760] = 760, + [761] = 585, + [762] = 583, + [763] = 542, + [764] = 716, + [765] = 544, + [766] = 584, + [767] = 607, + [768] = 585, + [769] = 592, + [770] = 541, + [771] = 464, + [772] = 465, + [773] = 464, + [774] = 723, + [775] = 592, + [776] = 593, + [777] = 760, + [778] = 592, + [779] = 584, + [780] = 465, + [781] = 464, + [782] = 465, + [783] = 541, + [784] = 585, + [785] = 464, + [786] = 465, + [787] = 592, + [788] = 583, + [789] = 593, + [790] = 592, + [791] = 593, + [792] = 464, [793] = 465, - [794] = 625, - [795] = 464, - [796] = 464, - [797] = 551, - [798] = 607, - [799] = 548, - [800] = 622, - [801] = 465, - [802] = 599, - [803] = 546, - [804] = 607, - [805] = 465, - [806] = 573, - [807] = 807, - [808] = 470, + [794] = 584, + [795] = 624, + [796] = 592, + [797] = 593, + [798] = 593, + [799] = 630, + [800] = 583, + [801] = 605, + [802] = 464, + [803] = 544, + [804] = 542, + [805] = 605, + [806] = 585, + [807] = 585, + [808] = 808, [809] = 809, - [810] = 625, - [811] = 583, - [812] = 622, + [810] = 810, + [811] = 592, + [812] = 583, [813] = 813, - [814] = 473, + [814] = 583, [815] = 815, - [816] = 575, - [817] = 583, - [818] = 818, + [816] = 816, + [817] = 630, + [818] = 470, [819] = 819, - [820] = 468, - [821] = 575, - [822] = 822, - [823] = 573, - [824] = 469, - [825] = 604, - [826] = 607, - [827] = 827, - [828] = 607, - [829] = 604, - [830] = 604, - [831] = 476, + [820] = 584, + [821] = 624, + [822] = 473, + [823] = 472, + [824] = 471, + [825] = 593, + [826] = 584, + [827] = 592, + [828] = 828, + [829] = 593, + [830] = 607, + [831] = 585, [832] = 832, - [833] = 607, - [834] = 469, - [835] = 818, - [836] = 604, - [837] = 470, - [838] = 473, - [839] = 809, - [840] = 464, - [841] = 468, - [842] = 465, - [843] = 481, - [844] = 486, - [845] = 487, - [846] = 479, - [847] = 822, - [848] = 490, - [849] = 807, - [850] = 469, - [851] = 583, - [852] = 815, - [853] = 819, - [854] = 854, - [855] = 478, - [856] = 477, - [857] = 491, - [858] = 573, - [859] = 859, - [860] = 583, - [861] = 861, - [862] = 573, - [863] = 575, - [864] = 483, - [865] = 613, - [866] = 482, - [867] = 573, - [868] = 489, - [869] = 475, - [870] = 575, - [871] = 485, - [872] = 474, - [873] = 464, - [874] = 874, - [875] = 598, - [876] = 876, - [877] = 465, - [878] = 590, - [879] = 575, - [880] = 880, - [881] = 465, - [882] = 607, - [883] = 464, - [884] = 480, - [885] = 885, - [886] = 813, - [887] = 484, - [888] = 488, - [889] = 492, + [833] = 478, + [834] = 583, + [835] = 584, + [836] = 475, + [837] = 464, + [838] = 476, + [839] = 479, + [840] = 480, + [841] = 465, + [842] = 481, + [843] = 477, + [844] = 585, + [845] = 464, + [846] = 819, + [847] = 465, + [848] = 482, + [849] = 484, + [850] = 470, + [851] = 473, + [852] = 472, + [853] = 487, + [854] = 474, + [855] = 471, + [856] = 470, + [857] = 473, + [858] = 472, + [859] = 813, + [860] = 483, + [861] = 810, + [862] = 489, + [863] = 485, + [864] = 490, + [865] = 486, + [866] = 815, + [867] = 867, + [868] = 868, + [869] = 491, + [870] = 488, + [871] = 492, + [872] = 816, + [873] = 873, + [874] = 809, + [875] = 464, + [876] = 465, + [877] = 604, + [878] = 878, + [879] = 879, + [880] = 808, + [881] = 583, + [882] = 584, + [883] = 585, + [884] = 884, + [885] = 600, + [886] = 886, + [887] = 584, + [888] = 583, + [889] = 464, [890] = 465, - [891] = 470, - [892] = 464, - [893] = 473, - [894] = 468, - [895] = 583, - [896] = 464, - [897] = 573, - [898] = 478, - [899] = 465, + [891] = 593, + [892] = 592, + [893] = 592, + [894] = 593, + [895] = 471, + [896] = 815, + [897] = 480, + [898] = 867, + [899] = 481, [900] = 477, - [901] = 491, - [902] = 465, - [903] = 575, - [904] = 464, - [905] = 604, - [906] = 465, - [907] = 813, - [908] = 604, - [909] = 607, - [910] = 482, - [911] = 464, - [912] = 483, - [913] = 807, - [914] = 481, - [915] = 486, - [916] = 487, - [917] = 490, - [918] = 479, - [919] = 487, - [920] = 469, - [921] = 479, - [922] = 489, - [923] = 490, - [924] = 486, - [925] = 925, - [926] = 926, - [927] = 478, - [928] = 477, - [929] = 491, - [930] = 481, - [931] = 488, - [932] = 819, - [933] = 925, - [934] = 492, - [935] = 470, - [936] = 583, - [937] = 925, - [938] = 815, - [939] = 607, - [940] = 813, - [941] = 465, - [942] = 464, - [943] = 464, - [944] = 604, - [945] = 807, - [946] = 465, - [947] = 473, - [948] = 809, + [901] = 878, + [902] = 478, + [903] = 475, + [904] = 476, + [905] = 479, + [906] = 480, + [907] = 482, + [908] = 484, + [909] = 481, + [910] = 471, + [911] = 477, + [912] = 470, + [913] = 810, + [914] = 470, + [915] = 487, + [916] = 474, + [917] = 473, + [918] = 472, + [919] = 471, + [920] = 482, + [921] = 484, + [922] = 464, + [923] = 465, + [924] = 487, + [925] = 474, + [926] = 483, + [927] = 489, + [928] = 485, + [929] = 490, + [930] = 486, + [931] = 464, + [932] = 465, + [933] = 491, + [934] = 488, + [935] = 492, + [936] = 464, + [937] = 465, + [938] = 483, + [939] = 489, + [940] = 485, + [941] = 490, + [942] = 486, + [943] = 491, + [944] = 488, + [945] = 492, + [946] = 464, + [947] = 465, + [948] = 816, [949] = 607, - [950] = 590, - [951] = 925, - [952] = 494, - [953] = 464, - [954] = 465, - [955] = 925, - [956] = 464, - [957] = 815, - [958] = 925, - [959] = 470, - [960] = 465, - [961] = 822, - [962] = 613, - [963] = 475, - [964] = 484, - [965] = 468, - [966] = 469, - [967] = 583, - [968] = 480, - [969] = 469, - [970] = 468, - [971] = 573, - [972] = 575, - [973] = 573, - [974] = 473, - [975] = 488, - [976] = 583, - [977] = 492, - [978] = 470, - [979] = 598, - [980] = 474, - [981] = 575, - [982] = 485, - [983] = 473, - [984] = 484, - [985] = 874, - [986] = 822, - [987] = 480, - [988] = 476, - [989] = 925, - [990] = 475, - [991] = 818, - [992] = 859, - [993] = 832, - [994] = 885, - [995] = 880, - [996] = 468, - [997] = 925, - [998] = 489, - [999] = 482, - [1000] = 854, - [1001] = 861, - [1002] = 818, - [1003] = 876, - [1004] = 483, - [1005] = 474, - [1006] = 809, - [1007] = 819, - [1008] = 485, - [1009] = 476, - [1010] = 465, - [1011] = 1011, - [1012] = 813, - [1013] = 476, - [1014] = 1014, - [1015] = 474, - [1016] = 475, - [1017] = 491, - [1018] = 477, - [1019] = 478, - [1020] = 479, - [1021] = 876, - [1022] = 487, - [1023] = 874, - [1024] = 464, - [1025] = 465, - [1026] = 926, - [1027] = 485, - [1028] = 822, - [1029] = 476, - [1030] = 1030, - [1031] = 490, - [1032] = 470, - [1033] = 474, - [1034] = 475, - [1035] = 575, - [1036] = 1036, - [1037] = 482, - [1038] = 483, - [1039] = 854, - [1040] = 473, + [950] = 950, + [951] = 809, + [952] = 819, + [953] = 604, + [954] = 813, + [955] = 808, + [956] = 479, + [957] = 600, + [958] = 583, + [959] = 584, + [960] = 592, + [961] = 593, + [962] = 583, + [963] = 584, + [964] = 585, + [965] = 585, + [966] = 472, + [967] = 471, + [968] = 464, + [969] = 465, + [970] = 592, + [971] = 593, + [972] = 950, + [973] = 815, + [974] = 583, + [975] = 584, + [976] = 585, + [977] = 950, + [978] = 978, + [979] = 470, + [980] = 813, + [981] = 473, + [982] = 816, + [983] = 808, + [984] = 950, + [985] = 472, + [986] = 810, + [987] = 832, + [988] = 873, + [989] = 809, + [990] = 884, + [991] = 886, + [992] = 950, + [993] = 868, + [994] = 879, + [995] = 464, + [996] = 465, + [997] = 493, + [998] = 464, + [999] = 465, + [1000] = 476, + [1001] = 950, + [1002] = 473, + [1003] = 819, + [1004] = 950, + [1005] = 478, + [1006] = 475, + [1007] = 592, + [1008] = 593, + [1009] = 950, + [1010] = 813, + [1011] = 873, + [1012] = 478, + [1013] = 475, + [1014] = 483, + [1015] = 489, + [1016] = 485, + [1017] = 490, + [1018] = 486, + [1019] = 464, + [1020] = 465, + [1021] = 491, + [1022] = 488, + [1023] = 492, + [1024] = 867, + [1025] = 808, + [1026] = 476, + [1027] = 479, + [1028] = 884, + [1029] = 886, + [1030] = 464, + [1031] = 465, + [1032] = 1032, + [1033] = 480, + [1034] = 1032, + [1035] = 819, + [1036] = 1032, + [1037] = 832, + [1038] = 873, + [1039] = 884, + [1040] = 886, [1041] = 464, - [1042] = 861, - [1043] = 491, - [1044] = 477, - [1045] = 1045, - [1046] = 478, - [1047] = 479, - [1048] = 464, - [1049] = 487, - [1050] = 465, - [1051] = 464, - [1052] = 495, - [1053] = 465, - [1054] = 473, - [1055] = 470, - [1056] = 573, - [1057] = 486, - [1058] = 484, - [1059] = 809, - [1060] = 481, - [1061] = 489, - [1062] = 488, - [1063] = 492, - [1064] = 485, - [1065] = 468, - [1066] = 859, - [1067] = 1067, - [1068] = 1068, - [1069] = 832, - [1070] = 464, - [1071] = 465, - [1072] = 885, - [1073] = 470, - [1074] = 473, - [1075] = 583, - [1076] = 880, - [1077] = 819, - [1078] = 815, - [1079] = 468, - [1080] = 813, + [1042] = 465, + [1043] = 592, + [1044] = 593, + [1045] = 470, + [1046] = 473, + [1047] = 810, + [1048] = 470, + [1049] = 473, + [1050] = 472, + [1051] = 481, + [1052] = 471, + [1053] = 1053, + [1054] = 1054, + [1055] = 477, + [1056] = 482, + [1057] = 478, + [1058] = 475, + [1059] = 1053, + [1060] = 1054, + [1061] = 481, + [1062] = 1062, + [1063] = 482, + [1064] = 1064, + [1065] = 464, + [1066] = 465, + [1067] = 470, + [1068] = 583, + [1069] = 473, + [1070] = 584, + [1071] = 472, + [1072] = 585, + [1073] = 1073, + [1074] = 592, + [1075] = 471, + [1076] = 593, + [1077] = 832, + [1078] = 873, + [1079] = 884, + [1080] = 886, [1081] = 1081, [1082] = 1082, - [1083] = 482, - [1084] = 483, - [1085] = 480, - [1086] = 470, - [1087] = 473, - [1088] = 468, - [1089] = 469, - [1090] = 604, - [1091] = 469, - [1092] = 469, - [1093] = 874, - [1094] = 876, - [1095] = 494, - [1096] = 809, - [1097] = 494, - [1098] = 822, - [1099] = 491, - [1100] = 1100, - [1101] = 477, - [1102] = 607, - [1103] = 478, - [1104] = 480, - [1105] = 469, - [1106] = 859, - [1107] = 832, - [1108] = 885, - [1109] = 880, - [1110] = 607, - [1111] = 604, - [1112] = 486, - [1113] = 484, - [1114] = 465, - [1115] = 464, - [1116] = 481, - [1117] = 604, - [1118] = 607, - [1119] = 483, - [1120] = 482, - [1121] = 859, - [1122] = 861, - [1123] = 470, - [1124] = 854, - [1125] = 489, - [1126] = 488, - [1127] = 832, - [1128] = 492, - [1129] = 490, - [1130] = 489, - [1131] = 473, - [1132] = 818, - [1133] = 475, - [1134] = 465, - [1135] = 465, - [1136] = 479, - [1137] = 487, - [1138] = 486, - [1139] = 481, - [1140] = 468, - [1141] = 464, - [1142] = 476, - [1143] = 485, - [1144] = 469, - [1145] = 474, - [1146] = 1146, - [1147] = 1011, - [1148] = 1148, - [1149] = 1149, - [1150] = 807, - [1151] = 1030, - [1152] = 490, - [1153] = 1030, - [1154] = 464, - [1155] = 480, - [1156] = 1148, - [1157] = 484, - [1158] = 1158, - [1159] = 488, - [1160] = 885, - [1161] = 492, - [1162] = 880, - [1163] = 1163, - [1164] = 465, - [1165] = 487, - [1166] = 1148, - [1167] = 1011, - [1168] = 1168, - [1169] = 1082, - [1170] = 1068, - [1171] = 1067, - [1172] = 607, - [1173] = 1173, - [1174] = 469, - [1175] = 1045, - [1176] = 489, - [1177] = 470, - [1178] = 604, - [1179] = 494, - [1180] = 1014, - [1181] = 1181, - [1182] = 1182, - [1183] = 491, - [1184] = 1081, - [1185] = 477, - [1186] = 486, - [1187] = 478, - [1188] = 483, - [1189] = 482, - [1190] = 1190, - [1191] = 1191, - [1192] = 1148, - [1193] = 1011, - [1194] = 488, - [1195] = 492, - [1196] = 475, - [1197] = 464, - [1198] = 483, - [1199] = 482, - [1200] = 485, - [1201] = 1146, - [1202] = 1149, - [1203] = 876, - [1204] = 489, - [1205] = 476, - [1206] = 483, - [1207] = 482, - [1208] = 475, - [1209] = 494, - [1210] = 476, + [1083] = 485, + [1084] = 1084, + [1085] = 1085, + [1086] = 490, + [1087] = 487, + [1088] = 1088, + [1089] = 474, + [1090] = 476, + [1091] = 483, + [1092] = 484, + [1093] = 1093, + [1094] = 832, + [1095] = 491, + [1096] = 488, + [1097] = 1097, + [1098] = 492, + [1099] = 479, + [1100] = 478, + [1101] = 475, + [1102] = 481, + [1103] = 878, + [1104] = 867, + [1105] = 485, + [1106] = 490, + [1107] = 491, + [1108] = 488, + [1109] = 492, + [1110] = 479, + [1111] = 1111, + [1112] = 878, + [1113] = 477, + [1114] = 486, + [1115] = 482, + [1116] = 484, + [1117] = 480, + [1118] = 1118, + [1119] = 464, + [1120] = 465, + [1121] = 487, + [1122] = 474, + [1123] = 464, + [1124] = 465, + [1125] = 464, + [1126] = 465, + [1127] = 978, + [1128] = 477, + [1129] = 476, + [1130] = 464, + [1131] = 465, + [1132] = 809, + [1133] = 483, + [1134] = 868, + [1135] = 879, + [1136] = 493, + [1137] = 498, + [1138] = 815, + [1139] = 487, + [1140] = 474, + [1141] = 868, + [1142] = 816, + [1143] = 470, + [1144] = 473, + [1145] = 472, + [1146] = 470, + [1147] = 473, + [1148] = 810, + [1149] = 472, + [1150] = 809, + [1151] = 471, + [1152] = 471, + [1153] = 489, + [1154] = 471, + [1155] = 484, + [1156] = 480, + [1157] = 879, + [1158] = 486, + [1159] = 592, + [1160] = 593, + [1161] = 493, + [1162] = 816, + [1163] = 489, + [1164] = 473, + [1165] = 485, + [1166] = 490, + [1167] = 491, + [1168] = 487, + [1169] = 488, + [1170] = 485, + [1171] = 1171, + [1172] = 486, + [1173] = 486, + [1174] = 1174, + [1175] = 492, + [1176] = 470, + [1177] = 1081, + [1178] = 1082, + [1179] = 978, + [1180] = 487, + [1181] = 474, + [1182] = 489, + [1183] = 473, + [1184] = 493, + [1185] = 490, + [1186] = 471, + [1187] = 1053, + [1188] = 1054, + [1189] = 473, + [1190] = 1081, + [1191] = 1082, + [1192] = 832, + [1193] = 873, + [1194] = 491, + [1195] = 488, + [1196] = 884, + [1197] = 886, + [1198] = 492, + [1199] = 491, + [1200] = 488, + [1201] = 492, + [1202] = 476, + [1203] = 484, + [1204] = 1053, + [1205] = 1054, + [1206] = 474, + [1207] = 592, + [1208] = 1208, + [1209] = 593, + [1210] = 485, [1211] = 470, - [1212] = 926, - [1213] = 489, - [1214] = 473, - [1215] = 473, - [1216] = 474, - [1217] = 468, - [1218] = 485, - [1219] = 874, - [1220] = 475, - [1221] = 474, - [1222] = 476, - [1223] = 490, - [1224] = 485, - [1225] = 474, - [1226] = 469, - [1227] = 470, - [1228] = 473, - [1229] = 495, - [1230] = 468, - [1231] = 487, - [1232] = 480, - [1233] = 484, - [1234] = 469, - [1235] = 480, - [1236] = 484, - [1237] = 491, - [1238] = 477, - [1239] = 478, - [1240] = 491, - [1241] = 477, - [1242] = 478, - [1243] = 861, - [1244] = 854, - [1245] = 470, - [1246] = 492, - [1247] = 488, - [1248] = 484, - [1249] = 473, - [1250] = 468, - [1251] = 470, - [1252] = 492, - [1253] = 488, - [1254] = 491, - [1255] = 477, - [1256] = 478, - [1257] = 473, - [1258] = 880, - [1259] = 481, - [1260] = 495, - [1261] = 885, - [1262] = 468, - [1263] = 832, - [1264] = 469, - [1265] = 859, - [1266] = 469, - [1267] = 926, - [1268] = 480, - [1269] = 1158, - [1270] = 1163, - [1271] = 859, - [1272] = 480, - [1273] = 832, - [1274] = 885, - [1275] = 1100, - [1276] = 880, - [1277] = 479, - [1278] = 490, - [1279] = 474, - [1280] = 479, - [1281] = 1281, - [1282] = 489, - [1283] = 485, - [1284] = 481, - [1285] = 486, - [1286] = 479, - [1287] = 488, - [1288] = 487, - [1289] = 492, - [1290] = 1158, - [1291] = 1163, - [1292] = 483, - [1293] = 482, - [1294] = 490, - [1295] = 494, - [1296] = 475, - [1297] = 486, - [1298] = 490, - [1299] = 481, + [1212] = 487, + [1213] = 1088, + [1214] = 489, + [1215] = 476, + [1216] = 478, + [1217] = 490, + [1218] = 474, + [1219] = 1093, + [1220] = 478, + [1221] = 475, + [1222] = 475, + [1223] = 481, + [1224] = 479, + [1225] = 486, + [1226] = 1226, + [1227] = 491, + [1228] = 480, + [1229] = 493, + [1230] = 477, + [1231] = 1073, + [1232] = 473, + [1233] = 483, + [1234] = 488, + [1235] = 1062, + [1236] = 482, + [1237] = 483, + [1238] = 492, + [1239] = 1084, + [1240] = 1240, + [1241] = 1064, + [1242] = 484, + [1243] = 482, + [1244] = 498, + [1245] = 481, + [1246] = 472, + [1247] = 464, + [1248] = 473, + [1249] = 471, + [1250] = 465, + [1251] = 477, + [1252] = 472, + [1253] = 482, + [1254] = 470, + [1255] = 479, + [1256] = 498, + [1257] = 978, + [1258] = 478, + [1259] = 475, + [1260] = 483, + [1261] = 1097, + [1262] = 868, + [1263] = 879, + [1264] = 471, + [1265] = 485, + [1266] = 476, + [1267] = 486, + [1268] = 478, + [1269] = 475, + [1270] = 489, + [1271] = 867, + [1272] = 878, + [1273] = 482, + [1274] = 479, + [1275] = 1275, + [1276] = 1276, + [1277] = 480, + [1278] = 470, + [1279] = 470, + [1280] = 832, + [1281] = 873, + [1282] = 884, + [1283] = 886, + [1284] = 476, + [1285] = 480, + [1286] = 471, + [1287] = 472, + [1288] = 1111, + [1289] = 481, + [1290] = 479, + [1291] = 477, + [1292] = 480, + [1293] = 1293, + [1294] = 487, + [1295] = 474, + [1296] = 483, + [1297] = 489, + [1298] = 484, + [1299] = 493, [1300] = 484, - [1301] = 1301, - [1302] = 486, - [1303] = 476, - [1304] = 487, - [1305] = 481, - [1306] = 479, - [1307] = 1163, - [1308] = 469, - [1309] = 488, - [1310] = 492, - [1311] = 470, - [1312] = 1173, - [1313] = 494, - [1314] = 583, - [1315] = 487, - [1316] = 486, - [1317] = 573, - [1318] = 1068, - [1319] = 481, - [1320] = 1100, - [1321] = 1045, - [1322] = 1067, - [1323] = 478, - [1324] = 477, - [1325] = 1191, - [1326] = 1190, - [1327] = 490, - [1328] = 1182, - [1329] = 1181, - [1330] = 832, - [1331] = 859, - [1332] = 575, - [1333] = 473, - [1334] = 479, - [1335] = 1014, - [1336] = 1081, - [1337] = 1148, - [1338] = 495, - [1339] = 859, - [1340] = 491, - [1341] = 1011, - [1342] = 832, - [1343] = 885, - [1344] = 880, - [1345] = 487, - [1346] = 1168, - [1347] = 468, - [1348] = 486, - [1349] = 1149, - [1350] = 478, - [1351] = 495, - [1352] = 481, - [1353] = 477, - [1354] = 1011, - [1355] = 1148, - [1356] = 469, - [1357] = 470, - [1358] = 494, - [1359] = 491, - [1360] = 1067, - [1361] = 1361, - [1362] = 1068, - [1363] = 468, - [1364] = 491, - [1365] = 477, - [1366] = 478, - [1367] = 473, - [1368] = 1368, - [1369] = 469, - [1370] = 1158, - [1371] = 468, - [1372] = 1163, - [1373] = 468, - [1374] = 1149, - [1375] = 474, - [1376] = 1082, - [1377] = 1146, - [1378] = 485, - [1379] = 1014, - [1380] = 1146, - [1381] = 1158, - [1382] = 1382, - [1383] = 473, - [1384] = 484, - [1385] = 490, - [1386] = 1082, - [1387] = 1301, - [1388] = 1163, - [1389] = 479, - [1390] = 1281, - [1391] = 1148, - [1392] = 1011, - [1393] = 480, - [1394] = 1158, - [1395] = 880, - [1396] = 885, - [1397] = 1081, - [1398] = 470, - [1399] = 1158, - [1400] = 479, - [1401] = 1146, - [1402] = 487, - [1403] = 486, - [1404] = 495, - [1405] = 469, - [1406] = 480, - [1407] = 1163, - [1408] = 476, - [1409] = 474, - [1410] = 475, - [1411] = 485, - [1412] = 468, - [1413] = 481, - [1414] = 488, - [1415] = 473, - [1416] = 489, - [1417] = 488, - [1418] = 492, - [1419] = 492, - [1420] = 470, - [1421] = 470, - [1422] = 483, - [1423] = 482, - [1424] = 476, - [1425] = 464, - [1426] = 465, - [1427] = 488, - [1428] = 492, - [1429] = 1429, - [1430] = 475, - [1431] = 1045, - [1432] = 489, - [1433] = 494, - [1434] = 475, - [1435] = 491, - [1436] = 1149, - [1437] = 476, - [1438] = 477, - [1439] = 481, - [1440] = 482, - [1441] = 470, - [1442] = 483, - [1443] = 473, - [1444] = 473, - [1445] = 469, - [1446] = 1100, - [1447] = 470, - [1448] = 494, - [1449] = 484, - [1450] = 486, - [1451] = 468, - [1452] = 485, - [1453] = 487, - [1454] = 489, - [1455] = 474, - [1456] = 479, - [1457] = 473, - [1458] = 490, - [1459] = 478, - [1460] = 469, - [1461] = 483, - [1462] = 482, - [1463] = 489, - [1464] = 490, - [1465] = 482, + [1301] = 472, + [1302] = 481, + [1303] = 477, + [1304] = 471, + [1305] = 490, + [1306] = 1085, + [1307] = 493, + [1308] = 884, + [1309] = 1053, + [1310] = 471, + [1311] = 482, + [1312] = 477, + [1313] = 482, + [1314] = 1314, + [1315] = 484, + [1316] = 1054, + [1317] = 479, + [1318] = 464, + [1319] = 465, + [1320] = 480, + [1321] = 481, + [1322] = 470, + [1323] = 1314, + [1324] = 487, + [1325] = 474, + [1326] = 470, + [1327] = 1081, + [1328] = 473, + [1329] = 1082, + [1330] = 472, + [1331] = 491, + [1332] = 488, + [1333] = 492, + [1334] = 476, + [1335] = 471, + [1336] = 473, + [1337] = 470, + [1338] = 1084, + [1339] = 1339, + [1340] = 473, + [1341] = 487, + [1342] = 474, + [1343] = 1343, + [1344] = 472, + [1345] = 472, + [1346] = 1085, + [1347] = 481, + [1348] = 479, + [1349] = 477, + [1350] = 480, + [1351] = 487, + [1352] = 471, + [1353] = 583, + [1354] = 584, + [1355] = 474, + [1356] = 483, + [1357] = 585, + [1358] = 489, + [1359] = 485, + [1360] = 490, + [1361] = 486, + [1362] = 1053, + [1363] = 482, + [1364] = 484, + [1365] = 1054, + [1366] = 484, + [1367] = 491, + [1368] = 488, + [1369] = 1088, + [1370] = 493, + [1371] = 492, + [1372] = 1111, + [1373] = 1093, + [1374] = 473, + [1375] = 483, + [1376] = 489, + [1377] = 485, + [1378] = 490, + [1379] = 477, + [1380] = 481, + [1381] = 1381, + [1382] = 486, + [1383] = 477, + [1384] = 1384, + [1385] = 483, + [1386] = 489, + [1387] = 1081, + [1388] = 1082, + [1389] = 485, + [1390] = 490, + [1391] = 486, + [1392] = 1088, + [1393] = 491, + [1394] = 488, + [1395] = 492, + [1396] = 478, + [1397] = 471, + [1398] = 1073, + [1399] = 1064, + [1400] = 488, + [1401] = 492, + [1402] = 475, + [1403] = 498, + [1404] = 1053, + [1405] = 1054, + [1406] = 471, + [1407] = 1062, + [1408] = 493, + [1409] = 470, + [1410] = 1097, + [1411] = 476, + [1412] = 478, + [1413] = 1093, + [1414] = 1081, + [1415] = 1082, + [1416] = 475, + [1417] = 479, + [1418] = 1111, + [1419] = 832, + [1420] = 1081, + [1421] = 1082, + [1422] = 873, + [1423] = 1293, + [1424] = 1226, + [1425] = 480, + [1426] = 473, + [1427] = 1240, + [1428] = 498, + [1429] = 1208, + [1430] = 1084, + [1431] = 1085, + [1432] = 1073, + [1433] = 470, + [1434] = 472, + [1435] = 1062, + [1436] = 832, + [1437] = 470, + [1438] = 873, + [1439] = 473, + [1440] = 1053, + [1441] = 1275, + [1442] = 1276, + [1443] = 1054, + [1444] = 1171, + [1445] = 472, + [1446] = 1174, + [1447] = 1064, + [1448] = 884, + [1449] = 886, + [1450] = 471, + [1451] = 487, + [1452] = 474, + [1453] = 1088, + [1454] = 473, + [1455] = 1093, + [1456] = 498, + [1457] = 1097, + [1458] = 472, + [1459] = 476, + [1460] = 471, + [1461] = 472, + [1462] = 481, + [1463] = 482, + [1464] = 478, + [1465] = 475, [1466] = 483, - [1467] = 1011, - [1468] = 469, - [1469] = 480, - [1470] = 1148, - [1471] = 475, - [1472] = 484, - [1473] = 476, - [1474] = 1474, - [1475] = 468, - [1476] = 485, - [1477] = 474, - [1478] = 480, - [1479] = 484, - [1480] = 1361, - [1481] = 1068, - [1482] = 488, + [1467] = 484, + [1468] = 489, + [1469] = 485, + [1470] = 476, + [1471] = 490, + [1472] = 493, + [1473] = 478, + [1474] = 475, + [1475] = 479, + [1476] = 886, + [1477] = 480, + [1478] = 486, + [1479] = 470, + [1480] = 491, + [1481] = 1240, + [1482] = 478, [1483] = 487, - [1484] = 488, + [1484] = 475, [1485] = 474, - [1486] = 479, - [1487] = 478, - [1488] = 477, - [1489] = 490, - [1490] = 485, - [1491] = 491, - [1492] = 492, - [1493] = 482, - [1494] = 483, - [1495] = 475, - [1496] = 480, - [1497] = 485, - [1498] = 1498, - [1499] = 486, - [1500] = 474, - [1501] = 481, - [1502] = 490, - [1503] = 484, - [1504] = 474, - [1505] = 474, - [1506] = 485, - [1507] = 486, - [1508] = 476, - [1509] = 1146, - [1510] = 486, - [1511] = 490, - [1512] = 1148, - [1513] = 487, - [1514] = 479, - [1515] = 480, - [1516] = 475, - [1517] = 476, - [1518] = 487, - [1519] = 476, - [1520] = 475, - [1521] = 1182, - [1522] = 494, - [1523] = 1011, - [1524] = 1163, - [1525] = 489, - [1526] = 1158, - [1527] = 479, - [1528] = 470, - [1529] = 880, - [1530] = 484, - [1531] = 479, - [1532] = 482, - [1533] = 483, - [1534] = 1534, - [1535] = 495, - [1536] = 1011, - [1537] = 486, - [1538] = 484, - [1539] = 1149, - [1540] = 481, - [1541] = 476, - [1542] = 1542, - [1543] = 1281, - [1544] = 475, - [1545] = 491, - [1546] = 490, - [1547] = 489, - [1548] = 488, - [1549] = 492, - [1550] = 477, - [1551] = 495, - [1552] = 1181, - [1553] = 478, - [1554] = 479, - [1555] = 487, + [1486] = 1486, + [1487] = 481, + [1488] = 484, + [1489] = 479, + [1490] = 1226, + [1491] = 1491, + [1492] = 489, + [1493] = 1293, + [1494] = 479, + [1495] = 485, + [1496] = 483, + [1497] = 489, + [1498] = 485, + [1499] = 490, + [1500] = 477, + [1501] = 476, + [1502] = 480, + [1503] = 592, + [1504] = 486, + [1505] = 480, + [1506] = 1506, + [1507] = 470, + [1508] = 487, + [1509] = 491, + [1510] = 488, + [1511] = 492, + [1512] = 593, + [1513] = 474, + [1514] = 470, + [1515] = 490, + [1516] = 473, + [1517] = 477, + [1518] = 491, + [1519] = 488, + [1520] = 492, + [1521] = 473, + [1522] = 1381, + [1523] = 493, + [1524] = 472, + [1525] = 481, + [1526] = 498, + [1527] = 478, + [1528] = 483, + [1529] = 489, + [1530] = 485, + [1531] = 475, + [1532] = 1314, + [1533] = 490, + [1534] = 1174, + [1535] = 486, + [1536] = 481, + [1537] = 491, + [1538] = 1486, + [1539] = 1381, + [1540] = 488, + [1541] = 492, + [1542] = 1088, + [1543] = 477, + [1544] = 472, + [1545] = 481, + [1546] = 482, + [1547] = 1547, + [1548] = 1093, + [1549] = 477, + [1550] = 1550, + [1551] = 486, + [1552] = 498, + [1553] = 477, + [1554] = 1275, + [1555] = 476, [1556] = 1556, - [1557] = 473, - [1558] = 1148, - [1559] = 885, - [1560] = 1081, - [1561] = 1542, - [1562] = 809, - [1563] = 490, - [1564] = 478, - [1565] = 477, - [1566] = 491, - [1567] = 1474, + [1557] = 480, + [1558] = 1081, + [1559] = 1082, + [1560] = 471, + [1561] = 482, + [1562] = 479, + [1563] = 491, + [1564] = 1208, + [1565] = 488, + [1566] = 487, + [1567] = 492, [1568] = 483, - [1569] = 482, - [1570] = 485, - [1571] = 480, - [1572] = 469, - [1573] = 1301, - [1574] = 1556, - [1575] = 1163, - [1576] = 1576, - [1577] = 490, - [1578] = 478, - [1579] = 477, - [1580] = 480, - [1581] = 491, - [1582] = 468, - [1583] = 479, - [1584] = 478, - [1585] = 489, - [1586] = 492, - [1587] = 475, - [1588] = 491, - [1589] = 487, - [1590] = 482, - [1591] = 477, - [1592] = 477, - [1593] = 478, - [1594] = 491, - [1595] = 489, - [1596] = 832, - [1597] = 469, - [1598] = 474, - [1599] = 859, - [1600] = 489, - [1601] = 1100, - [1602] = 1067, - [1603] = 1173, - [1604] = 494, - [1605] = 480, - [1606] = 1429, - [1607] = 1607, - [1608] = 494, - [1609] = 492, - [1610] = 488, - [1611] = 1168, - [1612] = 475, - [1613] = 1301, - [1614] = 487, - [1615] = 1576, - [1616] = 480, - [1617] = 484, - [1618] = 1361, - [1619] = 483, - [1620] = 1576, - [1621] = 483, - [1622] = 1281, - [1623] = 482, - [1624] = 476, - [1625] = 482, - [1626] = 483, - [1627] = 822, - [1628] = 489, - [1629] = 1301, - [1630] = 1158, - [1631] = 1631, - [1632] = 1163, - [1633] = 485, - [1634] = 1634, - [1635] = 1635, - [1636] = 1576, - [1637] = 470, - [1638] = 473, - [1639] = 1281, - [1640] = 470, - [1641] = 492, - [1642] = 488, - [1643] = 1382, - [1644] = 475, - [1645] = 473, - [1646] = 494, - [1647] = 1191, - [1648] = 1173, - [1649] = 468, - [1650] = 1190, - [1651] = 474, - [1652] = 476, - [1653] = 819, - [1654] = 604, - [1655] = 481, - [1656] = 495, - [1657] = 486, - [1658] = 1474, - [1659] = 468, - [1660] = 470, - [1661] = 473, - [1662] = 469, - [1663] = 470, - [1664] = 473, - [1665] = 469, - [1666] = 485, - [1667] = 1498, - [1668] = 484, - [1669] = 482, - [1670] = 607, - [1671] = 474, - [1672] = 470, - [1673] = 1168, - [1674] = 476, - [1675] = 469, - [1676] = 481, - [1677] = 490, - [1678] = 483, - [1679] = 1576, - [1680] = 481, - [1681] = 1190, - [1682] = 486, - [1683] = 484, - [1684] = 481, - [1685] = 1576, - [1686] = 489, - [1687] = 486, - [1688] = 1158, - [1689] = 484, - [1690] = 492, - [1691] = 481, - [1692] = 491, - [1693] = 477, - [1694] = 470, - [1695] = 473, - [1696] = 1191, - [1697] = 478, - [1698] = 1576, - [1699] = 1368, + [1569] = 1081, + [1570] = 484, + [1571] = 1571, + [1572] = 474, + [1573] = 476, + [1574] = 1082, + [1575] = 483, + [1576] = 487, + [1577] = 474, + [1578] = 1082, + [1579] = 484, + [1580] = 489, + [1581] = 493, + [1582] = 485, + [1583] = 478, + [1584] = 1506, + [1585] = 482, + [1586] = 482, + [1587] = 471, + [1588] = 1486, + [1589] = 486, + [1590] = 1590, + [1591] = 480, + [1592] = 1275, + [1593] = 1276, + [1594] = 478, + [1595] = 470, + [1596] = 473, + [1597] = 472, + [1598] = 482, + [1599] = 475, + [1600] = 493, + [1601] = 484, + [1602] = 471, + [1603] = 482, + [1604] = 1486, + [1605] = 476, + [1606] = 487, + [1607] = 1226, + [1608] = 486, + [1609] = 474, + [1610] = 470, + [1611] = 473, + [1612] = 472, + [1613] = 1081, + [1614] = 1614, + [1615] = 471, + [1616] = 483, + [1617] = 1339, + [1618] = 484, + [1619] = 489, + [1620] = 481, + [1621] = 1208, + [1622] = 1384, + [1623] = 477, + [1624] = 1293, + [1625] = 470, + [1626] = 1171, + [1627] = 478, + [1628] = 475, + [1629] = 487, + [1630] = 474, + [1631] = 483, + [1632] = 481, + [1633] = 1174, + [1634] = 485, + [1635] = 1486, + [1636] = 490, + [1637] = 491, + [1638] = 488, + [1639] = 492, + [1640] = 479, + [1641] = 484, + [1642] = 477, + [1643] = 486, + [1644] = 489, + [1645] = 1081, + [1646] = 1082, + [1647] = 480, + [1648] = 1084, + [1649] = 1085, + [1650] = 498, + [1651] = 473, + [1652] = 1062, + [1653] = 832, + [1654] = 873, + [1655] = 478, + [1656] = 470, + [1657] = 485, + [1658] = 1658, + [1659] = 479, + [1660] = 1293, + [1661] = 1343, + [1662] = 1064, + [1663] = 884, + [1664] = 886, + [1665] = 1053, + [1666] = 1054, + [1667] = 473, + [1668] = 490, + [1669] = 493, + [1670] = 475, + [1671] = 1240, + [1672] = 1486, + [1673] = 472, + [1674] = 1240, + [1675] = 480, + [1676] = 478, + [1677] = 471, + [1678] = 475, + [1679] = 1053, + [1680] = 1054, + [1681] = 481, + [1682] = 1171, + [1683] = 476, + [1684] = 485, + [1685] = 484, + [1686] = 490, + [1687] = 1571, + [1688] = 480, + [1689] = 815, + [1690] = 476, + [1691] = 486, + [1692] = 482, + [1693] = 813, + [1694] = 816, + [1695] = 1276, + [1696] = 1696, + [1697] = 483, + [1698] = 491, + [1699] = 475, [1700] = 488, [1701] = 492, - [1702] = 480, - [1703] = 1703, - [1704] = 468, - [1705] = 469, - [1706] = 1706, - [1707] = 1707, - [1708] = 1163, - [1709] = 488, - [1710] = 469, - [1711] = 1158, - [1712] = 1181, - [1713] = 479, + [1702] = 1486, + [1703] = 479, + [1704] = 1590, + [1705] = 498, + [1706] = 487, + [1707] = 470, + [1708] = 810, + [1709] = 473, + [1710] = 471, + [1711] = 809, + [1712] = 471, + [1713] = 470, [1714] = 473, - [1715] = 470, - [1716] = 1182, - [1717] = 815, - [1718] = 487, - [1719] = 813, - [1720] = 1361, - [1721] = 473, - [1722] = 468, - [1723] = 485, - [1724] = 495, - [1725] = 469, - [1726] = 480, + [1715] = 471, + [1716] = 474, + [1717] = 489, + [1718] = 1718, + [1719] = 1314, + [1720] = 490, + [1721] = 479, + [1722] = 491, + [1723] = 488, + [1724] = 492, + [1725] = 476, + [1726] = 485, [1727] = 473, - [1728] = 476, - [1729] = 1542, - [1730] = 1730, - [1731] = 1556, - [1732] = 475, - [1733] = 482, - [1734] = 483, - [1735] = 1498, - [1736] = 494, - [1737] = 489, - [1738] = 1149, - [1739] = 1429, - [1740] = 1382, - [1741] = 1146, - [1742] = 1361, - [1743] = 1368, - [1744] = 1474, - [1745] = 880, - [1746] = 485, - [1747] = 1498, - [1748] = 1556, - [1749] = 1749, - [1750] = 885, - [1751] = 494, - [1752] = 832, - [1753] = 474, - [1754] = 491, - [1755] = 477, - [1756] = 478, - [1757] = 1757, - [1758] = 859, - [1759] = 1542, - [1760] = 491, - [1761] = 477, - [1762] = 478, - [1763] = 490, - [1764] = 479, - [1765] = 487, - [1766] = 479, - [1767] = 1534, - [1768] = 486, - [1769] = 488, - [1770] = 486, - [1771] = 492, - [1772] = 481, - [1773] = 488, - [1774] = 490, - [1775] = 492, - [1776] = 1607, - [1777] = 487, - [1778] = 1749, - [1779] = 470, - [1780] = 473, - [1781] = 484, - [1782] = 480, - [1783] = 484, - [1784] = 854, - [1785] = 481, - [1786] = 469, - [1787] = 861, - [1788] = 480, - [1789] = 494, - [1790] = 480, - [1791] = 1757, - [1792] = 481, - [1793] = 484, - [1794] = 874, - [1795] = 876, - [1796] = 487, - [1797] = 819, - [1798] = 490, - [1799] = 815, - [1800] = 813, - [1801] = 1474, - [1802] = 474, - [1803] = 1474, - [1804] = 492, - [1805] = 488, - [1806] = 1757, - [1807] = 485, - [1808] = 575, - [1809] = 476, - [1810] = 486, - [1811] = 822, - [1812] = 475, - [1813] = 479, - [1814] = 494, + [1728] = 472, + [1729] = 471, + [1730] = 471, + [1731] = 476, + [1732] = 478, + [1733] = 475, + [1734] = 479, + [1735] = 480, + [1736] = 481, + [1737] = 477, + [1738] = 482, + [1739] = 470, + [1740] = 483, + [1741] = 473, + [1742] = 484, + [1743] = 472, + [1744] = 486, + [1745] = 487, + [1746] = 474, + [1747] = 476, + [1748] = 1314, + [1749] = 489, + [1750] = 478, + [1751] = 475, + [1752] = 490, + [1753] = 479, + [1754] = 480, + [1755] = 471, + [1756] = 481, + [1757] = 491, + [1758] = 488, + [1759] = 492, + [1760] = 477, + [1761] = 482, + [1762] = 483, + [1763] = 484, + [1764] = 485, + [1765] = 486, + [1766] = 487, + [1767] = 474, + [1768] = 489, + [1769] = 490, + [1770] = 491, + [1771] = 488, + [1772] = 492, + [1773] = 1773, + [1774] = 1773, + [1775] = 1381, + [1776] = 1088, + [1777] = 1381, + [1778] = 498, + [1779] = 1081, + [1780] = 1082, + [1781] = 1781, + [1782] = 1782, + [1783] = 1783, + [1784] = 1491, + [1785] = 493, + [1786] = 1384, + [1787] = 1339, + [1788] = 498, + [1789] = 1773, + [1790] = 1088, + [1791] = 809, + [1792] = 1343, + [1793] = 498, + [1794] = 1614, + [1795] = 1093, + [1796] = 1314, + [1797] = 498, + [1798] = 478, + [1799] = 475, + [1800] = 476, + [1801] = 493, + [1802] = 479, + [1803] = 480, + [1804] = 481, + [1805] = 477, + [1806] = 1773, + [1807] = 1556, + [1808] = 1718, + [1809] = 1314, + [1810] = 493, + [1811] = 482, + [1812] = 482, + [1813] = 484, + [1814] = 487, [1815] = 474, - [1816] = 1368, - [1817] = 491, - [1818] = 477, - [1819] = 478, - [1820] = 485, - [1821] = 470, - [1822] = 473, - [1823] = 469, - [1824] = 1730, - [1825] = 489, - [1826] = 1429, - [1827] = 482, - [1828] = 1149, - [1829] = 494, - [1830] = 1730, - [1831] = 573, - [1832] = 469, - [1833] = 476, - [1834] = 483, - [1835] = 495, - [1836] = 478, - [1837] = 477, - [1838] = 491, - [1839] = 1158, - [1840] = 475, - [1841] = 479, - [1842] = 1730, - [1843] = 1163, - [1844] = 495, - [1845] = 1163, - [1846] = 1158, - [1847] = 476, - [1848] = 490, - [1849] = 474, - [1850] = 1749, - [1851] = 482, - [1852] = 475, - [1853] = 491, - [1854] = 477, - [1855] = 478, - [1856] = 479, - [1857] = 487, - [1858] = 485, - [1859] = 482, - [1860] = 1631, - [1861] = 483, - [1862] = 486, - [1863] = 483, - [1864] = 489, - [1865] = 488, - [1866] = 492, - [1867] = 1749, - [1868] = 583, - [1869] = 1730, - [1870] = 490, - [1871] = 1730, - [1872] = 1281, - [1873] = 494, - [1874] = 486, - [1875] = 484, - [1876] = 481, - [1877] = 487, - [1878] = 489, - [1879] = 468, - [1880] = 488, - [1881] = 492, - [1882] = 809, - [1883] = 1301, - [1884] = 1730, - [1885] = 495, - [1886] = 494, - [1887] = 1361, - [1888] = 484, - [1889] = 473, - [1890] = 495, - [1891] = 481, - [1892] = 1634, - [1893] = 1635, - [1894] = 470, - [1895] = 1382, - [1896] = 480, - [1897] = 470, - [1898] = 1146, - [1899] = 1474, - [1900] = 1361, - [1901] = 473, - [1902] = 1190, - [1903] = 1191, - [1904] = 468, - [1905] = 1730, - [1906] = 1749, - [1907] = 822, - [1908] = 470, - [1909] = 1703, - [1910] = 473, - [1911] = 468, - [1912] = 469, - [1913] = 1757, - [1914] = 470, - [1915] = 469, - [1916] = 469, - [1917] = 474, - [1918] = 1158, - [1919] = 489, - [1920] = 476, - [1921] = 482, - [1922] = 1163, - [1923] = 485, - [1924] = 483, - [1925] = 1749, - [1926] = 1926, - [1927] = 1749, - [1928] = 475, - [1929] = 1361, + [1816] = 476, + [1817] = 483, + [1818] = 484, + [1819] = 489, + [1820] = 493, + [1821] = 478, + [1822] = 475, + [1823] = 487, + [1824] = 474, + [1825] = 481, + [1826] = 485, + [1827] = 490, + [1828] = 491, + [1829] = 488, + [1830] = 492, + [1831] = 479, + [1832] = 477, + [1833] = 486, + [1834] = 480, + [1835] = 1081, + [1836] = 1082, + [1837] = 483, + [1838] = 886, + [1839] = 485, + [1840] = 490, + [1841] = 486, + [1842] = 491, + [1843] = 488, + [1844] = 492, + [1845] = 1781, + [1846] = 1773, + [1847] = 470, + [1848] = 473, + [1849] = 471, + [1850] = 1781, + [1851] = 815, + [1852] = 1781, + [1853] = 813, + [1854] = 816, + [1855] = 470, + [1856] = 1783, + [1857] = 1081, + [1858] = 1082, + [1859] = 470, + [1860] = 473, + [1861] = 471, + [1862] = 583, + [1863] = 1783, + [1864] = 470, + [1865] = 473, + [1866] = 471, + [1867] = 1783, + [1868] = 1783, + [1869] = 493, + [1870] = 1783, + [1871] = 1506, + [1872] = 1783, + [1873] = 1783, + [1874] = 493, + [1875] = 584, + [1876] = 476, + [1877] = 493, + [1878] = 1506, + [1879] = 478, + [1880] = 475, + [1881] = 479, + [1882] = 1571, + [1883] = 1590, + [1884] = 480, + [1885] = 481, + [1886] = 1571, + [1887] = 477, + [1888] = 1590, + [1889] = 1658, + [1890] = 1773, + [1891] = 585, + [1892] = 1343, + [1893] = 1384, + [1894] = 1696, + [1895] = 1093, + [1896] = 810, + [1897] = 482, + [1898] = 483, + [1899] = 484, + [1900] = 485, + [1901] = 486, + [1902] = 1381, + [1903] = 487, + [1904] = 474, + [1905] = 489, + [1906] = 490, + [1907] = 491, + [1908] = 488, + [1909] = 492, + [1910] = 1293, + [1911] = 1314, + [1912] = 1240, + [1913] = 1773, + [1914] = 1275, + [1915] = 1276, + [1916] = 809, + [1917] = 470, + [1918] = 1381, + [1919] = 473, + [1920] = 868, + [1921] = 879, + [1922] = 867, + [1923] = 878, + [1924] = 472, + [1925] = 1339, + [1926] = 832, + [1927] = 873, + [1928] = 884, + [1929] = 489, [1930] = 1930, - [1931] = 1930, - [1932] = 1932, + [1931] = 1931, + [1932] = 1930, [1933] = 1933, [1934] = 1934, [1935] = 1935, [1936] = 1936, [1937] = 1937, - [1938] = 1938, - [1939] = 1930, + [1938] = 1293, + [1939] = 1939, [1940] = 1940, [1941] = 1941, - [1942] = 1942, - [1943] = 1943, - [1944] = 1944, - [1945] = 481, - [1946] = 480, - [1947] = 1498, - [1948] = 1948, - [1949] = 1949, + [1942] = 476, + [1943] = 1571, + [1944] = 1696, + [1945] = 1381, + [1946] = 481, + [1947] = 1240, + [1948] = 478, + [1949] = 1506, [1950] = 1950, - [1951] = 495, - [1952] = 1281, - [1953] = 1534, - [1954] = 479, - [1955] = 486, - [1956] = 488, - [1957] = 1607, - [1958] = 1301, - [1959] = 1498, - [1960] = 492, - [1961] = 1556, - [1962] = 490, - [1963] = 1942, - [1964] = 494, - [1965] = 487, - [1966] = 1631, - [1967] = 1948, - [1968] = 1158, - [1969] = 1949, - [1970] = 1950, - [1971] = 484, - [1972] = 1163, - [1973] = 481, - [1974] = 1703, - [1975] = 1975, - [1976] = 1932, - [1977] = 480, - [1978] = 1933, - [1979] = 474, - [1980] = 1934, - [1981] = 1935, - [1982] = 1982, - [1983] = 1936, - [1984] = 1937, - [1985] = 1938, - [1986] = 485, - [1987] = 1940, - [1988] = 1941, - [1989] = 1942, - [1990] = 1943, - [1991] = 1944, - [1992] = 491, - [1993] = 476, - [1994] = 495, - [1995] = 474, - [1996] = 491, - [1997] = 475, - [1998] = 1975, - [1999] = 1932, - [2000] = 1934, - [2001] = 1948, - [2002] = 485, - [2003] = 1975, - [2004] = 482, - [2005] = 483, - [2006] = 477, - [2007] = 1975, - [2008] = 1935, - [2009] = 1936, - [2010] = 1937, - [2011] = 1938, - [2012] = 478, - [2013] = 1940, - [2014] = 1932, - [2015] = 1542, - [2016] = 1941, - [2017] = 1634, - [2018] = 1942, - [2019] = 1635, - [2020] = 1556, - [2021] = 1934, - [2022] = 1935, - [2023] = 2023, - [2024] = 1474, - [2025] = 489, - [2026] = 494, - [2027] = 1936, - [2028] = 1944, - [2029] = 1943, - [2030] = 1937, - [2031] = 1938, - [2032] = 487, - [2033] = 469, - [2034] = 1940, - [2035] = 2023, - [2036] = 1948, - [2037] = 478, - [2038] = 1942, - [2039] = 1941, - [2040] = 1940, - [2041] = 2041, - [2042] = 1938, - [2043] = 1937, - [2044] = 1936, - [2045] = 1935, - [2046] = 476, - [2047] = 1934, - [2048] = 1933, - [2049] = 1949, - [2050] = 1943, - [2051] = 1932, - [2052] = 1944, - [2053] = 1975, - [2054] = 1941, - [2055] = 1635, - [2056] = 1950, - [2057] = 475, - [2058] = 479, - [2059] = 2023, + [1951] = 475, + [1952] = 476, + [1953] = 488, + [1954] = 1954, + [1955] = 1955, + [1956] = 492, + [1957] = 498, + [1958] = 479, + [1959] = 1959, + [1960] = 1506, + [1961] = 1961, + [1962] = 1962, + [1963] = 477, + [1964] = 1964, + [1965] = 1965, + [1966] = 1966, + [1967] = 1933, + [1968] = 1934, + [1969] = 1935, + [1970] = 1936, + [1971] = 1937, + [1972] = 480, + [1973] = 493, + [1974] = 475, + [1975] = 482, + [1976] = 1506, + [1977] = 498, + [1978] = 1978, + [1979] = 1571, + [1980] = 483, + [1981] = 481, + [1982] = 484, + [1983] = 477, + [1984] = 498, + [1985] = 481, + [1986] = 479, + [1987] = 485, + [1988] = 1954, + [1989] = 477, + [1990] = 1955, + [1991] = 493, + [1992] = 1571, + [1993] = 482, + [1994] = 1590, + [1995] = 483, + [1996] = 484, + [1997] = 485, + [1998] = 493, + [1999] = 486, + [2000] = 486, + [2001] = 487, + [2002] = 474, + [2003] = 1590, + [2004] = 480, + [2005] = 487, + [2006] = 1381, + [2007] = 832, + [2008] = 873, + [2009] = 1939, + [2010] = 1940, + [2011] = 1978, + [2012] = 1930, + [2013] = 884, + [2014] = 886, + [2015] = 489, + [2016] = 1978, + [2017] = 1954, + [2018] = 1955, + [2019] = 1959, + [2020] = 1961, + [2021] = 1962, + [2022] = 1964, + [2023] = 1965, + [2024] = 1966, + [2025] = 1933, + [2026] = 1934, + [2027] = 1935, + [2028] = 1936, + [2029] = 1937, + [2030] = 1941, + [2031] = 1941, + [2032] = 470, + [2033] = 473, + [2034] = 474, + [2035] = 490, + [2036] = 471, + [2037] = 489, + [2038] = 1939, + [2039] = 1940, + [2040] = 1930, + [2041] = 478, + [2042] = 490, + [2043] = 1930, + [2044] = 592, + [2045] = 1930, + [2046] = 491, + [2047] = 1930, + [2048] = 1930, + [2049] = 1930, + [2050] = 1930, + [2051] = 1930, + [2052] = 1930, + [2053] = 1930, + [2054] = 1930, + [2055] = 1930, + [2056] = 1930, + [2057] = 1930, + [2058] = 488, + [2059] = 1930, [2060] = 1930, - [2061] = 2061, - [2062] = 1943, - [2063] = 1944, - [2064] = 1933, - [2065] = 477, - [2066] = 1982, - [2067] = 470, - [2068] = 473, - [2069] = 1948, + [2061] = 1930, + [2062] = 1930, + [2063] = 1930, + [2064] = 1930, + [2065] = 1930, + [2066] = 1930, + [2067] = 1930, + [2068] = 1930, + [2069] = 1930, [2070] = 1930, - [2071] = 1542, - [2072] = 1933, - [2073] = 486, - [2074] = 469, - [2075] = 482, + [2071] = 1930, + [2072] = 1930, + [2073] = 1930, + [2074] = 1930, + [2075] = 1930, [2076] = 1930, - [2077] = 483, + [2077] = 1930, [2078] = 1930, [2079] = 1930, - [2080] = 490, - [2081] = 488, + [2080] = 1930, + [2081] = 1930, [2082] = 1930, [2083] = 1930, [2084] = 1930, [2085] = 1930, - [2086] = 492, - [2087] = 1950, + [2086] = 1930, + [2087] = 1930, [2088] = 1930, - [2089] = 1949, - [2090] = 2061, - [2091] = 492, - [2092] = 1982, - [2093] = 489, - [2094] = 495, - [2095] = 488, + [2089] = 1930, + [2090] = 1930, + [2091] = 1930, + [2092] = 1930, + [2093] = 1930, + [2094] = 1930, + [2095] = 1930, [2096] = 1930, [2097] = 1930, [2098] = 1930, [2099] = 1930, - [2100] = 486, + [2100] = 1930, [2101] = 1930, [2102] = 1930, - [2103] = 1498, + [2103] = 1930, [2104] = 1930, - [2105] = 479, - [2106] = 1556, - [2107] = 1301, - [2108] = 490, - [2109] = 487, + [2105] = 1930, + [2106] = 1930, + [2107] = 1930, + [2108] = 1930, + [2109] = 1930, [2110] = 1930, - [2111] = 484, + [2111] = 1930, [2112] = 1930, - [2113] = 464, - [2114] = 481, - [2115] = 465, - [2116] = 480, - [2117] = 1607, - [2118] = 494, - [2119] = 1982, + [2113] = 1930, + [2114] = 1930, + [2115] = 1930, + [2116] = 1930, + [2117] = 1930, + [2118] = 1930, + [2119] = 1930, [2120] = 1930, - [2121] = 489, - [2122] = 1703, - [2123] = 607, - [2124] = 494, - [2125] = 880, - [2126] = 885, - [2127] = 468, - [2128] = 1930, - [2129] = 1950, - [2130] = 1949, - [2131] = 1950, - [2132] = 1949, - [2133] = 1930, - [2134] = 1982, - [2135] = 473, - [2136] = 1930, - [2137] = 1948, - [2138] = 604, - [2139] = 2041, - [2140] = 1930, - [2141] = 1930, - [2142] = 1930, - [2143] = 1930, - [2144] = 1930, - [2145] = 1982, - [2146] = 1930, - [2147] = 1474, - [2148] = 1930, - [2149] = 1930, - [2150] = 1930, - [2151] = 1930, - [2152] = 470, - [2153] = 1930, - [2154] = 832, - [2155] = 859, - [2156] = 1634, - [2157] = 1930, - [2158] = 1498, - [2159] = 1930, - [2160] = 495, - [2161] = 1474, - [2162] = 483, - [2163] = 1930, - [2164] = 1930, - [2165] = 1930, - [2166] = 2061, - [2167] = 1930, - [2168] = 1930, - [2169] = 1930, - [2170] = 1930, - [2171] = 1930, - [2172] = 1930, - [2173] = 1542, - [2174] = 1975, - [2175] = 1930, - [2176] = 1930, - [2177] = 1930, - [2178] = 1930, - [2179] = 1930, - [2180] = 1930, - [2181] = 1930, - [2182] = 495, - [2183] = 1930, - [2184] = 1950, - [2185] = 1930, - [2186] = 1930, - [2187] = 1930, - [2188] = 1949, - [2189] = 1930, - [2190] = 1631, - [2191] = 1930, - [2192] = 1932, - [2193] = 1930, - [2194] = 1930, - [2195] = 1930, - [2196] = 1930, - [2197] = 1938, - [2198] = 1948, - [2199] = 854, - [2200] = 1930, - [2201] = 1534, - [2202] = 2041, - [2203] = 876, - [2204] = 861, - [2205] = 1941, - [2206] = 1930, - [2207] = 1930, - [2208] = 1934, - [2209] = 1935, - [2210] = 482, - [2211] = 874, - [2212] = 1930, - [2213] = 1982, - [2214] = 478, - [2215] = 495, - [2216] = 477, - [2217] = 1930, - [2218] = 491, - [2219] = 1930, - [2220] = 1930, - [2221] = 1930, - [2222] = 475, - [2223] = 1930, - [2224] = 476, - [2225] = 1944, - [2226] = 1943, - [2227] = 1281, - [2228] = 1930, - [2229] = 1942, - [2230] = 1936, - [2231] = 1937, - [2232] = 1941, - [2233] = 1940, - [2234] = 2023, - [2235] = 2023, - [2236] = 1930, - [2237] = 495, - [2238] = 1937, - [2239] = 1936, - [2240] = 1938, - [2241] = 2061, - [2242] = 1940, - [2243] = 2041, - [2244] = 2061, - [2245] = 1942, - [2246] = 1943, - [2247] = 1556, - [2248] = 1935, - [2249] = 1944, - [2250] = 1934, - [2251] = 2061, - [2252] = 1933, - [2253] = 1542, - [2254] = 494, - [2255] = 1930, - [2256] = 1932, - [2257] = 484, - [2258] = 1975, - [2259] = 1930, - [2260] = 474, - [2261] = 2041, - [2262] = 1930, - [2263] = 485, - [2264] = 1930, - [2265] = 1930, - [2266] = 2023, - [2267] = 2023, - [2268] = 480, - [2269] = 485, - [2270] = 1474, - [2271] = 1158, - [2272] = 1634, - [2273] = 1635, - [2274] = 481, - [2275] = 490, - [2276] = 484, - [2277] = 486, - [2278] = 880, - [2279] = 1148, - [2280] = 495, - [2281] = 1474, - [2282] = 1011, - [2283] = 880, - [2284] = 885, - [2285] = 470, - [2286] = 1703, - [2287] = 491, - [2288] = 885, - [2289] = 474, - [2290] = 470, - [2291] = 1081, - [2292] = 480, - [2293] = 473, - [2294] = 476, - [2295] = 477, - [2296] = 468, - [2297] = 473, - [2298] = 469, - [2299] = 478, - [2300] = 1081, - [2301] = 475, - [2302] = 469, - [2303] = 1100, - [2304] = 488, - [2305] = 495, - [2306] = 495, - [2307] = 492, - [2308] = 859, - [2309] = 1163, - [2310] = 495, - [2311] = 494, - [2312] = 468, + [2121] = 1930, + [2122] = 1930, + [2123] = 593, + [2124] = 492, + [2125] = 2125, + [2126] = 1950, + [2127] = 1931, + [2128] = 1081, + [2129] = 1082, + [2130] = 1954, + [2131] = 1955, + [2132] = 1959, + [2133] = 1939, + [2134] = 1940, + [2135] = 2125, + [2136] = 1950, + [2137] = 1931, + [2138] = 1978, + [2139] = 1961, + [2140] = 1962, + [2141] = 1964, + [2142] = 1965, + [2143] = 2125, + [2144] = 1950, + [2145] = 1931, + [2146] = 1966, + [2147] = 498, + [2148] = 1933, + [2149] = 2125, + [2150] = 1950, + [2151] = 1931, + [2152] = 1934, + [2153] = 1935, + [2154] = 2125, + [2155] = 1931, + [2156] = 1936, + [2157] = 1937, + [2158] = 868, + [2159] = 879, + [2160] = 498, + [2161] = 482, + [2162] = 1959, + [2163] = 1961, + [2164] = 498, + [2165] = 1962, + [2166] = 1964, + [2167] = 1965, + [2168] = 1966, + [2169] = 1933, + [2170] = 1934, + [2171] = 493, + [2172] = 1556, + [2173] = 1954, + [2174] = 1955, + [2175] = 1718, + [2176] = 1935, + [2177] = 1959, + [2178] = 1961, + [2179] = 1936, + [2180] = 1962, + [2181] = 1964, + [2182] = 1965, + [2183] = 1966, + [2184] = 1933, + [2185] = 1934, + [2186] = 1937, + [2187] = 1935, + [2188] = 1936, + [2189] = 1937, + [2190] = 483, + [2191] = 1931, + [2192] = 1696, + [2193] = 1571, + [2194] = 484, + [2195] = 1240, + [2196] = 1293, + [2197] = 1590, + [2198] = 1590, + [2199] = 867, + [2200] = 878, + [2201] = 1506, + [2202] = 1941, + [2203] = 1556, + [2204] = 1718, + [2205] = 493, + [2206] = 485, + [2207] = 1614, + [2208] = 491, + [2209] = 488, + [2210] = 1941, + [2211] = 1939, + [2212] = 1940, + [2213] = 1941, + [2214] = 492, + [2215] = 2125, + [2216] = 486, + [2217] = 1954, + [2218] = 1955, + [2219] = 1961, + [2220] = 1962, + [2221] = 1964, + [2222] = 1965, + [2223] = 1966, + [2224] = 1933, + [2225] = 1934, + [2226] = 1935, + [2227] = 1936, + [2228] = 1937, + [2229] = 1614, + [2230] = 1941, + [2231] = 470, + [2232] = 1978, + [2233] = 487, + [2234] = 1381, + [2235] = 1939, + [2236] = 473, + [2237] = 1940, + [2238] = 498, + [2239] = 472, + [2240] = 1978, + [2241] = 1491, + [2242] = 1939, + [2243] = 1940, + [2244] = 1978, + [2245] = 464, + [2246] = 465, + [2247] = 474, + [2248] = 489, + [2249] = 476, + [2250] = 1491, + [2251] = 1658, + [2252] = 490, + [2253] = 1658, + [2254] = 478, + [2255] = 1954, + [2256] = 1955, + [2257] = 475, + [2258] = 1959, + [2259] = 1961, + [2260] = 1962, + [2261] = 1964, + [2262] = 1965, + [2263] = 1966, + [2264] = 479, + [2265] = 480, + [2266] = 471, + [2267] = 491, + [2268] = 476, + [2269] = 482, + [2270] = 498, + [2271] = 488, + [2272] = 491, + [2273] = 492, + [2274] = 488, + [2275] = 486, + [2276] = 474, + [2277] = 978, + [2278] = 498, + [2279] = 472, + [2280] = 485, + [2281] = 470, + [2282] = 473, + [2283] = 472, + [2284] = 483, + [2285] = 492, + [2286] = 471, + [2287] = 1381, + [2288] = 482, + [2289] = 1064, + [2290] = 493, + [2291] = 489, + [2292] = 1556, + [2293] = 1718, + [2294] = 484, + [2295] = 884, + [2296] = 493, + [2297] = 886, + [2298] = 470, + [2299] = 473, + [2300] = 471, + [2301] = 1081, + [2302] = 1082, + [2303] = 470, + [2304] = 473, + [2305] = 471, + [2306] = 1614, + [2307] = 1381, + [2308] = 498, + [2309] = 478, + [2310] = 475, + [2311] = 489, + [2312] = 483, [2313] = 479, - [2314] = 832, - [2315] = 491, - [2316] = 494, - [2317] = 477, - [2318] = 486, - [2319] = 478, - [2320] = 488, - [2321] = 479, + [2314] = 484, + [2315] = 486, + [2316] = 480, + [2317] = 490, + [2318] = 498, + [2319] = 1062, + [2320] = 832, + [2321] = 873, [2322] = 487, - [2323] = 1011, - [2324] = 1148, - [2325] = 832, - [2326] = 492, - [2327] = 859, - [2328] = 1100, - [2329] = 470, - [2330] = 1067, - [2331] = 1068, - [2332] = 926, - [2333] = 484, - [2334] = 489, - [2335] = 490, - [2336] = 473, - [2337] = 1158, - [2338] = 495, - [2339] = 487, - [2340] = 1163, - [2341] = 483, - [2342] = 469, - [2343] = 481, - [2344] = 482, - [2345] = 494, - [2346] = 479, - [2347] = 469, - [2348] = 486, - [2349] = 2349, - [2350] = 473, - [2351] = 495, - [2352] = 1146, - [2353] = 2353, - [2354] = 476, - [2355] = 485, - [2356] = 469, - [2357] = 1100, - [2358] = 2358, - [2359] = 468, - [2360] = 2349, - [2361] = 2353, - [2362] = 488, - [2363] = 492, - [2364] = 2364, - [2365] = 1191, - [2366] = 494, - [2367] = 1190, - [2368] = 1082, - [2369] = 1158, - [2370] = 1149, - [2371] = 1163, - [2372] = 2358, - [2373] = 469, - [2374] = 469, - [2375] = 485, - [2376] = 2349, - [2377] = 2364, - [2378] = 2364, - [2379] = 2353, - [2380] = 490, - [2381] = 495, - [2382] = 469, - [2383] = 475, - [2384] = 476, - [2385] = 470, - [2386] = 469, - [2387] = 2387, - [2388] = 475, - [2389] = 469, - [2390] = 487, - [2391] = 473, - [2392] = 482, - [2393] = 483, - [2394] = 1014, - [2395] = 1068, - [2396] = 469, - [2397] = 2397, - [2398] = 474, - [2399] = 484, - [2400] = 481, - [2401] = 482, - [2402] = 483, - [2403] = 473, - [2404] = 470, - [2405] = 1011, - [2406] = 1148, - [2407] = 470, - [2408] = 469, - [2409] = 469, - [2410] = 2364, - [2411] = 2358, - [2412] = 489, - [2413] = 880, - [2414] = 2349, - [2415] = 885, - [2416] = 2353, - [2417] = 1045, - [2418] = 495, - [2419] = 1067, - [2420] = 480, - [2421] = 491, - [2422] = 1158, - [2423] = 477, - [2424] = 470, - [2425] = 468, - [2426] = 473, - [2427] = 1081, - [2428] = 2358, - [2429] = 470, - [2430] = 478, - [2431] = 1163, - [2432] = 859, - [2433] = 469, - [2434] = 1011, - [2435] = 468, - [2436] = 832, - [2437] = 1163, - [2438] = 1158, - [2439] = 474, - [2440] = 1148, - [2441] = 473, - [2442] = 489, + [2323] = 1081, + [2324] = 1082, + [2325] = 1084, + [2326] = 1085, + [2327] = 474, + [2328] = 1062, + [2329] = 832, + [2330] = 873, + [2331] = 1064, + [2332] = 884, + [2333] = 886, + [2334] = 1053, + [2335] = 1054, + [2336] = 498, + [2337] = 481, + [2338] = 1053, + [2339] = 1054, + [2340] = 487, + [2341] = 485, + [2342] = 490, + [2343] = 477, + [2344] = 491, + [2345] = 493, + [2346] = 1081, + [2347] = 2347, + [2348] = 470, + [2349] = 478, + [2350] = 1053, + [2351] = 498, + [2352] = 1073, + [2353] = 498, + [2354] = 2354, + [2355] = 2355, + [2356] = 1084, + [2357] = 1085, + [2358] = 485, + [2359] = 2359, + [2360] = 1081, + [2361] = 1082, + [2362] = 1082, + [2363] = 1054, + [2364] = 2347, + [2365] = 475, + [2366] = 471, + [2367] = 486, + [2368] = 471, + [2369] = 2369, + [2370] = 493, + [2371] = 471, + [2372] = 473, + [2373] = 1081, + [2374] = 2359, + [2375] = 470, + [2376] = 487, + [2377] = 474, + [2378] = 470, + [2379] = 473, + [2380] = 471, + [2381] = 1082, + [2382] = 489, + [2383] = 1093, + [2384] = 1111, + [2385] = 480, + [2386] = 2347, + [2387] = 2359, + [2388] = 473, + [2389] = 490, + [2390] = 471, + [2391] = 1053, + [2392] = 476, + [2393] = 1054, + [2394] = 832, + [2395] = 471, + [2396] = 873, + [2397] = 478, + [2398] = 471, + [2399] = 477, + [2400] = 1064, + [2401] = 479, + [2402] = 498, + [2403] = 480, + [2404] = 471, + [2405] = 471, + [2406] = 2354, + [2407] = 2354, + [2408] = 1275, + [2409] = 1276, + [2410] = 884, + [2411] = 481, + [2412] = 2355, + [2413] = 470, + [2414] = 473, + [2415] = 477, + [2416] = 2355, + [2417] = 470, + [2418] = 473, + [2419] = 886, + [2420] = 472, + [2421] = 481, + [2422] = 472, + [2423] = 472, + [2424] = 471, + [2425] = 1097, + [2426] = 2354, + [2427] = 2427, + [2428] = 2347, + [2429] = 2359, + [2430] = 491, + [2431] = 488, + [2432] = 471, + [2433] = 476, + [2434] = 482, + [2435] = 1088, + [2436] = 492, + [2437] = 2355, + [2438] = 483, + [2439] = 484, + [2440] = 479, + [2441] = 1062, + [2442] = 475, [2443] = 479, - [2444] = 484, - [2445] = 2445, - [2446] = 478, + [2444] = 486, + [2445] = 487, + [2446] = 474, [2447] = 489, - [2448] = 477, - [2449] = 483, - [2450] = 482, - [2451] = 2451, - [2452] = 487, - [2453] = 469, - [2454] = 481, - [2455] = 2455, - [2456] = 2451, - [2457] = 1474, - [2458] = 469, - [2459] = 470, - [2460] = 469, - [2461] = 2455, - [2462] = 475, - [2463] = 2445, - [2464] = 468, - [2465] = 490, - [2466] = 470, - [2467] = 492, - [2468] = 488, - [2469] = 480, - [2470] = 470, - [2471] = 473, - [2472] = 2472, - [2473] = 473, - [2474] = 494, - [2475] = 473, - [2476] = 1429, - [2477] = 486, - [2478] = 476, - [2479] = 474, - [2480] = 469, - [2481] = 485, - [2482] = 485, - [2483] = 468, - [2484] = 2472, - [2485] = 481, - [2486] = 468, - [2487] = 1158, - [2488] = 473, - [2489] = 1158, - [2490] = 1163, - [2491] = 470, - [2492] = 495, - [2493] = 1163, - [2494] = 470, - [2495] = 470, + [2448] = 474, + [2449] = 490, + [2450] = 491, + [2451] = 488, + [2452] = 492, + [2453] = 489, + [2454] = 470, + [2455] = 473, + [2456] = 470, + [2457] = 1293, + [2458] = 472, + [2459] = 473, + [2460] = 1343, + [2461] = 490, + [2462] = 2462, + [2463] = 2463, + [2464] = 1240, + [2465] = 471, + [2466] = 476, + [2467] = 472, + [2468] = 483, + [2469] = 489, + [2470] = 2462, + [2471] = 2463, + [2472] = 478, + [2473] = 475, + [2474] = 485, + [2475] = 490, + [2476] = 470, + [2477] = 473, + [2478] = 471, + [2479] = 486, + [2480] = 470, + [2481] = 1081, + [2482] = 1082, + [2483] = 2462, + [2484] = 2463, + [2485] = 470, + [2486] = 473, + [2487] = 493, + [2488] = 2462, + [2489] = 2463, + [2490] = 2462, + [2491] = 2463, + [2492] = 472, + [2493] = 491, + [2494] = 488, + [2495] = 492, [2496] = 479, - [2497] = 2455, - [2498] = 476, - [2499] = 479, - [2500] = 2451, - [2501] = 2445, - [2502] = 475, - [2503] = 2451, - [2504] = 474, - [2505] = 486, - [2506] = 2397, - [2507] = 480, - [2508] = 481, - [2509] = 2387, - [2510] = 484, - [2511] = 468, - [2512] = 487, - [2513] = 490, - [2514] = 482, - [2515] = 492, - [2516] = 488, - [2517] = 486, - [2518] = 483, - [2519] = 487, - [2520] = 479, - [2521] = 2451, - [2522] = 1301, - [2523] = 486, - [2524] = 490, - [2525] = 489, + [2497] = 480, + [2498] = 2498, + [2499] = 2427, + [2500] = 2369, + [2501] = 470, + [2502] = 473, + [2503] = 2503, + [2504] = 472, + [2505] = 481, + [2506] = 477, + [2507] = 470, + [2508] = 473, + [2509] = 2498, + [2510] = 470, + [2511] = 473, + [2512] = 470, + [2513] = 473, + [2514] = 1275, + [2515] = 1081, + [2516] = 1082, + [2517] = 1276, + [2518] = 471, + [2519] = 486, + [2520] = 476, + [2521] = 488, + [2522] = 492, + [2523] = 1171, + [2524] = 1093, + [2525] = 1174, [2526] = 478, - [2527] = 477, - [2528] = 491, - [2529] = 478, - [2530] = 477, - [2531] = 491, - [2532] = 1149, - [2533] = 473, - [2534] = 1281, - [2535] = 478, - [2536] = 492, - [2537] = 469, - [2538] = 1191, - [2539] = 1190, - [2540] = 470, - [2541] = 1382, - [2542] = 477, - [2543] = 473, - [2544] = 474, - [2545] = 485, - [2546] = 2455, - [2547] = 2445, - [2548] = 468, - [2549] = 2455, - [2550] = 470, - [2551] = 473, - [2552] = 2445, - [2553] = 473, - [2554] = 491, - [2555] = 470, - [2556] = 1168, - [2557] = 494, - [2558] = 1182, - [2559] = 2559, - [2560] = 480, - [2561] = 2445, - [2562] = 1181, - [2563] = 2455, - [2564] = 470, - [2565] = 476, - [2566] = 489, - [2567] = 488, - [2568] = 494, - [2569] = 1146, - [2570] = 491, - [2571] = 481, - [2572] = 1158, - [2573] = 2451, - [2574] = 475, - [2575] = 473, - [2576] = 484, - [2577] = 487, - [2578] = 1163, + [2527] = 475, + [2528] = 473, + [2529] = 498, + [2530] = 2498, + [2531] = 1081, + [2532] = 1082, + [2533] = 1208, + [2534] = 493, + [2535] = 480, + [2536] = 481, + [2537] = 487, + [2538] = 476, + [2539] = 477, + [2540] = 493, + [2541] = 478, + [2542] = 475, + [2543] = 482, + [2544] = 479, + [2545] = 480, + [2546] = 470, + [2547] = 2547, + [2548] = 2503, + [2549] = 483, + [2550] = 473, + [2551] = 484, + [2552] = 472, + [2553] = 481, + [2554] = 2498, + [2555] = 485, + [2556] = 2498, + [2557] = 477, + [2558] = 486, + [2559] = 487, + [2560] = 1381, + [2561] = 474, + [2562] = 489, + [2563] = 490, + [2564] = 2462, + [2565] = 471, + [2566] = 482, + [2567] = 2498, + [2568] = 471, + [2569] = 1339, + [2570] = 483, + [2571] = 484, + [2572] = 1088, + [2573] = 491, + [2574] = 488, + [2575] = 492, + [2576] = 2463, + [2577] = 482, + [2578] = 485, [2579] = 483, - [2580] = 482, - [2581] = 490, - [2582] = 473, - [2583] = 484, - [2584] = 495, - [2585] = 489, - [2586] = 484, - [2587] = 483, - [2588] = 2451, - [2589] = 2589, - [2590] = 482, - [2591] = 475, - [2592] = 476, - [2593] = 487, - [2594] = 2594, - [2595] = 494, - [2596] = 478, - [2597] = 477, - [2598] = 491, - [2599] = 485, - [2600] = 474, - [2601] = 2559, - [2602] = 494, - [2603] = 490, - [2604] = 480, - [2605] = 481, - [2606] = 484, - [2607] = 487, - [2608] = 490, - [2609] = 492, - [2610] = 488, - [2611] = 486, - [2612] = 1163, - [2613] = 1158, - [2614] = 479, - [2615] = 478, - [2616] = 477, - [2617] = 491, - [2618] = 470, - [2619] = 473, - [2620] = 468, - [2621] = 2621, - [2622] = 1607, - [2623] = 1301, - [2624] = 492, - [2625] = 488, - [2626] = 491, - [2627] = 2627, - [2628] = 477, - [2629] = 478, - [2630] = 486, - [2631] = 480, - [2632] = 469, - [2633] = 483, - [2634] = 482, - [2635] = 1281, - [2636] = 2636, - [2637] = 1534, - [2638] = 489, - [2639] = 475, - [2640] = 476, - [2641] = 2472, - [2642] = 479, - [2643] = 485, - [2644] = 474, - [2645] = 486, - [2646] = 488, + [2580] = 484, + [2581] = 485, + [2582] = 491, + [2583] = 493, + [2584] = 481, + [2585] = 1556, + [2586] = 479, + [2587] = 1718, + [2588] = 477, + [2589] = 2547, + [2590] = 485, + [2591] = 464, + [2592] = 465, + [2593] = 2503, + [2594] = 482, + [2595] = 484, + [2596] = 476, + [2597] = 470, + [2598] = 478, + [2599] = 475, + [2600] = 489, + [2601] = 478, + [2602] = 479, + [2603] = 480, + [2604] = 475, + [2605] = 482, + [2606] = 480, + [2607] = 1381, + [2608] = 487, + [2609] = 474, + [2610] = 473, + [2611] = 1088, + [2612] = 476, + [2613] = 483, + [2614] = 483, + [2615] = 484, + [2616] = 489, + [2617] = 2617, + [2618] = 492, + [2619] = 1240, + [2620] = 485, + [2621] = 490, + [2622] = 1093, + [2623] = 2503, + [2624] = 481, + [2625] = 485, + [2626] = 486, + [2627] = 477, + [2628] = 486, + [2629] = 1384, + [2630] = 472, + [2631] = 493, + [2632] = 481, + [2633] = 1381, + [2634] = 477, + [2635] = 487, + [2636] = 474, + [2637] = 470, + [2638] = 473, + [2639] = 490, + [2640] = 489, + [2641] = 491, + [2642] = 488, + [2643] = 492, + [2644] = 1314, + [2645] = 476, + [2646] = 490, [2647] = 479, - [2648] = 2648, - [2649] = 492, - [2650] = 490, - [2651] = 480, - [2652] = 487, - [2653] = 492, - [2654] = 479, - [2655] = 488, - [2656] = 481, - [2657] = 486, - [2658] = 487, - [2659] = 2659, - [2660] = 479, + [2648] = 480, + [2649] = 2649, + [2650] = 482, + [2651] = 2651, + [2652] = 481, + [2653] = 483, + [2654] = 484, + [2655] = 477, + [2656] = 478, + [2657] = 485, + [2658] = 491, + [2659] = 488, + [2660] = 492, [2661] = 486, - [2662] = 490, - [2663] = 484, - [2664] = 488, - [2665] = 492, - [2666] = 481, - [2667] = 480, - [2668] = 478, - [2669] = 477, - [2670] = 491, - [2671] = 1474, - [2672] = 481, - [2673] = 490, - [2674] = 486, - [2675] = 474, - [2676] = 487, - [2677] = 479, - [2678] = 1361, - [2679] = 480, - [2680] = 487, - [2681] = 485, - [2682] = 490, - [2683] = 474, - [2684] = 478, - [2685] = 485, - [2686] = 477, - [2687] = 491, - [2688] = 1368, - [2689] = 1146, - [2690] = 2472, - [2691] = 1634, - [2692] = 494, - [2693] = 1635, - [2694] = 2694, - [2695] = 494, - [2696] = 2696, - [2697] = 484, - [2698] = 481, - [2699] = 494, - [2700] = 476, - [2701] = 475, - [2702] = 2702, - [2703] = 1149, - [2704] = 2704, - [2705] = 465, - [2706] = 464, - [2707] = 482, - [2708] = 478, - [2709] = 477, - [2710] = 491, - [2711] = 483, - [2712] = 489, - [2713] = 495, - [2714] = 1361, - [2715] = 1474, - [2716] = 489, - [2717] = 2472, - [2718] = 1429, - [2719] = 476, - [2720] = 473, - [2721] = 474, - [2722] = 475, - [2723] = 470, - [2724] = 2724, - [2725] = 495, - [2726] = 1382, - [2727] = 494, - [2728] = 481, - [2729] = 483, - [2730] = 482, - [2731] = 475, - [2732] = 482, - [2733] = 483, - [2734] = 489, - [2735] = 476, - [2736] = 485, - [2737] = 486, + [2662] = 1314, + [2663] = 1081, + [2664] = 1082, + [2665] = 487, + [2666] = 474, + [2667] = 2667, + [2668] = 490, + [2669] = 482, + [2670] = 475, + [2671] = 1339, + [2672] = 483, + [2673] = 489, + [2674] = 2674, + [2675] = 485, + [2676] = 490, + [2677] = 491, + [2678] = 488, + [2679] = 492, + [2680] = 486, + [2681] = 498, + [2682] = 491, + [2683] = 493, + [2684] = 486, + [2685] = 2685, + [2686] = 488, + [2687] = 498, + [2688] = 479, + [2689] = 487, + [2690] = 480, + [2691] = 476, + [2692] = 474, + [2693] = 491, + [2694] = 488, + [2695] = 478, + [2696] = 475, + [2697] = 1343, + [2698] = 492, + [2699] = 493, + [2700] = 1696, + [2701] = 479, + [2702] = 471, + [2703] = 2703, + [2704] = 480, + [2705] = 2503, + [2706] = 482, + [2707] = 483, + [2708] = 484, + [2709] = 485, + [2710] = 476, + [2711] = 486, + [2712] = 493, + [2713] = 483, + [2714] = 481, + [2715] = 477, + [2716] = 2716, + [2717] = 498, + [2718] = 487, + [2719] = 474, + [2720] = 1658, + [2721] = 489, + [2722] = 2722, + [2723] = 1293, + [2724] = 484, + [2725] = 490, + [2726] = 2726, + [2727] = 488, + [2728] = 493, + [2729] = 478, + [2730] = 492, + [2731] = 491, + [2732] = 2498, + [2733] = 2733, + [2734] = 2734, + [2735] = 475, + [2736] = 489, + [2737] = 2737, [2738] = 2738, - [2739] = 2739, - [2740] = 2739, - [2741] = 2739, - [2742] = 2739, - [2743] = 2739, - [2744] = 2739, - [2745] = 2739, - [2746] = 2739, - [2747] = 2739, - [2748] = 2739, - [2749] = 2739, - [2750] = 2739, - [2751] = 2739, - [2752] = 2739, - [2753] = 2739, - [2754] = 2739, - [2755] = 2739, - [2756] = 2739, - [2757] = 2739, - [2758] = 2739, - [2759] = 2739, - [2760] = 2739, - [2761] = 2739, - [2762] = 2739, - [2763] = 2739, - [2764] = 2739, - [2765] = 2739, - [2766] = 2739, - [2767] = 2739, - [2768] = 2739, - [2769] = 2739, - [2770] = 2739, - [2771] = 2739, - [2772] = 2739, - [2773] = 2739, - [2774] = 2739, - [2775] = 2739, - [2776] = 1474, - [2777] = 2739, - [2778] = 2739, - [2779] = 2739, - [2780] = 1635, - [2781] = 2739, - [2782] = 2739, - [2783] = 2739, - [2784] = 2739, - [2785] = 2739, - [2786] = 2739, - [2787] = 2739, - [2788] = 2739, - [2789] = 2739, - [2790] = 2739, - [2791] = 2739, - [2792] = 2739, - [2793] = 2739, - [2794] = 2739, - [2795] = 2739, - [2796] = 495, - [2797] = 2739, - [2798] = 495, - [2799] = 2739, - [2800] = 2739, - [2801] = 2801, - [2802] = 2802, - [2803] = 2803, - [2804] = 2739, - [2805] = 2724, - [2806] = 494, - [2807] = 1556, + [2739] = 481, + [2740] = 2738, + [2741] = 477, + [2742] = 483, + [2743] = 2743, + [2744] = 489, + [2745] = 2738, + [2746] = 485, + [2747] = 490, + [2748] = 486, + [2749] = 482, + [2750] = 2738, + [2751] = 1590, + [2752] = 2752, + [2753] = 1491, + [2754] = 2738, + [2755] = 2716, + [2756] = 1506, + [2757] = 2738, + [2758] = 2738, + [2759] = 2759, + [2760] = 2738, + [2761] = 2761, + [2762] = 2762, + [2763] = 2738, + [2764] = 2738, + [2765] = 483, + [2766] = 2649, + [2767] = 2767, + [2768] = 2768, + [2769] = 2769, + [2770] = 2738, + [2771] = 2771, + [2772] = 2772, + [2773] = 2773, + [2774] = 2738, + [2775] = 489, + [2776] = 2776, + [2777] = 2738, + [2778] = 2738, + [2779] = 2738, + [2780] = 2780, + [2781] = 493, + [2782] = 2738, + [2783] = 2738, + [2784] = 483, + [2785] = 2738, + [2786] = 2738, + [2787] = 2787, + [2788] = 489, + [2789] = 1658, + [2790] = 2738, + [2791] = 1556, + [2792] = 1506, + [2793] = 2738, + [2794] = 485, + [2795] = 2738, + [2796] = 490, + [2797] = 485, + [2798] = 490, + [2799] = 491, + [2800] = 488, + [2801] = 2738, + [2802] = 1718, + [2803] = 492, + [2804] = 2738, + [2805] = 2738, + [2806] = 2738, + [2807] = 486, [2808] = 2808, [2809] = 2809, - [2810] = 2810, - [2811] = 2739, - [2812] = 2812, + [2810] = 2738, + [2811] = 486, + [2812] = 2685, [2813] = 2813, - [2814] = 2814, - [2815] = 2808, - [2816] = 2816, - [2817] = 1542, - [2818] = 490, - [2819] = 495, - [2820] = 2739, - [2821] = 491, - [2822] = 477, - [2823] = 478, - [2824] = 479, - [2825] = 2825, - [2826] = 487, - [2827] = 2827, - [2828] = 2828, - [2829] = 2829, - [2830] = 2830, - [2831] = 2831, - [2832] = 2832, - [2833] = 2808, - [2834] = 2808, - [2835] = 2835, - [2836] = 2739, + [2814] = 2738, + [2815] = 464, + [2816] = 2738, + [2817] = 2738, + [2818] = 1381, + [2819] = 2547, + [2820] = 2820, + [2821] = 2738, + [2822] = 2822, + [2823] = 487, + [2824] = 2738, + [2825] = 487, + [2826] = 2738, + [2827] = 474, + [2828] = 491, + [2829] = 2738, + [2830] = 2738, + [2831] = 2738, + [2832] = 1571, + [2833] = 488, + [2834] = 492, + [2835] = 2722, + [2836] = 2836, [2837] = 2837, [2838] = 2838, - [2839] = 2627, - [2840] = 2840, - [2841] = 483, - [2842] = 482, - [2843] = 2843, - [2844] = 2739, + [2839] = 2738, + [2840] = 2738, + [2841] = 474, + [2842] = 2617, + [2843] = 2726, + [2844] = 2844, [2845] = 2845, - [2846] = 1607, - [2847] = 486, - [2848] = 2848, + [2846] = 2738, + [2847] = 498, + [2848] = 486, [2849] = 2849, - [2850] = 489, - [2851] = 2808, - [2852] = 484, - [2853] = 481, - [2854] = 475, - [2855] = 488, - [2856] = 492, - [2857] = 476, - [2858] = 2739, - [2859] = 485, + [2850] = 2738, + [2851] = 465, + [2852] = 493, + [2853] = 2738, + [2854] = 2547, + [2855] = 2738, + [2856] = 491, + [2857] = 483, + [2858] = 2762, + [2859] = 484, [2860] = 2860, - [2861] = 474, - [2862] = 2559, - [2863] = 2594, - [2864] = 1534, - [2865] = 2559, - [2866] = 480, - [2867] = 494, + [2861] = 489, + [2862] = 476, + [2863] = 488, + [2864] = 479, + [2865] = 492, + [2866] = 2738, + [2867] = 464, [2868] = 2868, - [2869] = 480, - [2870] = 484, - [2871] = 481, - [2872] = 486, - [2873] = 487, - [2874] = 2808, - [2875] = 479, - [2876] = 490, - [2877] = 492, - [2878] = 1498, - [2879] = 488, - [2880] = 2739, - [2881] = 478, - [2882] = 477, - [2883] = 491, - [2884] = 1542, - [2885] = 481, - [2886] = 1634, - [2887] = 464, - [2888] = 465, - [2889] = 2659, - [2890] = 2890, - [2891] = 487, - [2892] = 479, - [2893] = 490, - [2894] = 2894, - [2895] = 464, - [2896] = 465, - [2897] = 2648, - [2898] = 2898, + [2869] = 498, + [2870] = 2738, + [2871] = 465, + [2872] = 2738, + [2873] = 2738, + [2874] = 1696, + [2875] = 2738, + [2876] = 2738, + [2877] = 2877, + [2878] = 2738, + [2879] = 480, + [2880] = 2880, + [2881] = 2738, + [2882] = 2882, + [2883] = 2738, + [2884] = 2674, + [2885] = 2885, + [2886] = 2738, + [2887] = 485, + [2888] = 482, + [2889] = 2762, + [2890] = 490, + [2891] = 1381, + [2892] = 478, + [2893] = 1293, + [2894] = 491, + [2895] = 2738, + [2896] = 2896, + [2897] = 2738, + [2898] = 498, [2899] = 2899, - [2900] = 2636, - [2901] = 481, - [2902] = 464, - [2903] = 465, - [2904] = 486, - [2905] = 1281, - [2906] = 487, - [2907] = 479, - [2908] = 478, - [2909] = 477, - [2910] = 491, - [2911] = 490, - [2912] = 494, - [2913] = 1556, - [2914] = 1474, + [2900] = 2738, + [2901] = 464, + [2902] = 2902, + [2903] = 2903, + [2904] = 488, + [2905] = 2738, + [2906] = 465, + [2907] = 498, + [2908] = 2908, + [2909] = 2738, + [2910] = 484, + [2911] = 2738, + [2912] = 2912, + [2913] = 492, + [2914] = 1240, [2915] = 2915, [2916] = 2916, - [2917] = 2917, - [2918] = 478, - [2919] = 477, - [2920] = 491, - [2921] = 2921, - [2922] = 2922, + [2917] = 2762, + [2918] = 2918, + [2919] = 2738, + [2920] = 493, + [2921] = 2738, + [2922] = 2762, [2923] = 2923, [2924] = 2924, - [2925] = 2621, + [2925] = 2738, [2926] = 2926, - [2927] = 495, - [2928] = 495, - [2929] = 2929, + [2927] = 2738, + [2928] = 498, + [2929] = 1614, [2930] = 2930, - [2931] = 2931, - [2932] = 2739, - [2933] = 2933, - [2934] = 1498, - [2935] = 495, - [2936] = 2936, + [2931] = 2738, + [2932] = 2738, + [2933] = 2762, + [2934] = 1571, + [2935] = 498, + [2936] = 2738, [2937] = 2937, [2938] = 2938, - [2939] = 1631, - [2940] = 1301, - [2941] = 1703, - [2942] = 2942, - [2943] = 2828, + [2939] = 475, + [2940] = 2738, + [2941] = 1590, + [2942] = 2759, + [2943] = 464, [2944] = 2944, - [2945] = 2589, + [2945] = 465, [2946] = 2946, - [2947] = 2947, - [2948] = 2948, - [2949] = 2838, - [2950] = 2648, - [2951] = 2868, - [2952] = 2952, - [2953] = 2659, - [2954] = 2627, - [2955] = 2868, - [2956] = 2956, - [2957] = 2810, - [2958] = 2812, - [2959] = 2813, - [2960] = 2814, - [2961] = 2816, - [2962] = 2837, - [2963] = 2827, - [2964] = 2828, - [2965] = 2965, - [2966] = 2829, - [2967] = 2810, - [2968] = 2812, - [2969] = 2813, - [2970] = 2814, - [2971] = 2816, - [2972] = 2827, - [2973] = 2828, - [2974] = 2829, - [2975] = 2830, - [2976] = 2802, - [2977] = 2831, - [2978] = 2832, - [2979] = 2835, - [2980] = 495, - [2981] = 2830, - [2982] = 2944, - [2983] = 2704, - [2984] = 2702, - [2985] = 2802, - [2986] = 2831, - [2987] = 2813, - [2988] = 2832, - [2989] = 2835, - [2990] = 2636, - [2991] = 2991, - [2992] = 2992, - [2993] = 2993, - [2994] = 2837, - [2995] = 2835, - [2996] = 2832, - [2997] = 480, - [2998] = 2627, - [2999] = 2999, - [3000] = 2802, - [3001] = 2830, - [3002] = 2829, - [3003] = 2828, - [3004] = 2827, + [2947] = 464, + [2948] = 2930, + [2949] = 465, + [2950] = 2808, + [2951] = 2822, + [2952] = 2674, + [2953] = 2743, + [2954] = 2903, + [2955] = 2885, + [2956] = 2759, + [2957] = 2820, + [2958] = 2958, + [2959] = 498, + [2960] = 2960, + [2961] = 2961, + [2962] = 2877, + [2963] = 2808, + [2964] = 2964, + [2965] = 2809, + [2966] = 2813, + [2967] = 2617, + [2968] = 2968, + [2969] = 2822, + [2970] = 2970, + [2971] = 2651, + [2972] = 2972, + [2973] = 2944, + [2974] = 2946, + [2975] = 2885, + [2976] = 2674, + [2977] = 2896, + [2978] = 2899, + [2979] = 2896, + [2980] = 2958, + [2981] = 2960, + [2982] = 2961, + [2983] = 2964, + [2984] = 2899, + [2985] = 482, + [2986] = 2912, + [2987] = 2722, + [2988] = 2968, + [2989] = 2902, + [2990] = 2990, + [2991] = 2970, + [2992] = 2972, + [2993] = 2944, + [2994] = 2946, + [2995] = 2809, + [2996] = 483, + [2997] = 2958, + [2998] = 484, + [2999] = 2960, + [3000] = 2961, + [3001] = 2924, + [3002] = 2902, + [3003] = 2964, + [3004] = 2916, [3005] = 3005, - [3006] = 2924, - [3007] = 2816, - [3008] = 2814, - [3009] = 2621, - [3010] = 2813, - [3011] = 2738, - [3012] = 2933, - [3013] = 2812, - [3014] = 2810, - [3015] = 465, - [3016] = 464, - [3017] = 3017, - [3018] = 465, - [3019] = 3019, - [3020] = 481, - [3021] = 484, - [3022] = 2942, - [3023] = 2810, - [3024] = 491, - [3025] = 477, - [3026] = 478, - [3027] = 464, - [3028] = 2696, - [3029] = 2694, - [3030] = 2812, - [3031] = 2838, - [3032] = 3032, - [3033] = 3033, - [3034] = 2831, - [3035] = 2589, - [3036] = 3036, - [3037] = 2942, - [3038] = 3038, - [3039] = 2814, - [3040] = 3040, - [3041] = 2933, - [3042] = 3042, - [3043] = 2738, - [3044] = 464, - [3045] = 487, - [3046] = 2816, - [3047] = 465, - [3048] = 2924, - [3049] = 2724, - [3050] = 2868, - [3051] = 2827, - [3052] = 3052, - [3053] = 2594, - [3054] = 2837, - [3055] = 495, - [3056] = 3056, - [3057] = 3038, - [3058] = 2724, - [3059] = 2829, - [3060] = 2868, - [3061] = 2830, - [3062] = 2802, - [3063] = 2831, - [3064] = 2832, - [3065] = 494, - [3066] = 3066, - [3067] = 2835, - [3068] = 2837, - [3069] = 2694, - [3070] = 3032, - [3071] = 2594, - [3072] = 2696, - [3073] = 3033, - [3074] = 3074, - [3075] = 3075, - [3076] = 490, - [3077] = 2810, - [3078] = 2812, - [3079] = 2813, - [3080] = 2814, - [3081] = 2816, - [3082] = 2827, - [3083] = 2828, - [3084] = 2829, - [3085] = 3052, - [3086] = 2830, - [3087] = 3040, - [3088] = 2802, - [3089] = 2933, - [3090] = 2831, - [3091] = 3042, - [3092] = 1163, - [3093] = 1158, - [3094] = 2832, - [3095] = 2835, - [3096] = 2738, - [3097] = 2837, - [3098] = 2933, - [3099] = 2702, - [3100] = 2738, - [3101] = 2924, - [3102] = 2924, - [3103] = 2704, - [3104] = 2942, - [3105] = 2944, - [3106] = 3038, - [3107] = 2924, - [3108] = 2738, - [3109] = 3066, - [3110] = 469, - [3111] = 3042, - [3112] = 2933, - [3113] = 3113, - [3114] = 1474, - [3115] = 468, - [3116] = 3116, - [3117] = 473, + [3006] = 485, + [3007] = 2968, + [3008] = 2961, + [3009] = 464, + [3010] = 465, + [3011] = 486, + [3012] = 498, + [3013] = 2970, + [3014] = 2958, + [3015] = 2968, + [3016] = 1081, + [3017] = 1082, + [3018] = 2960, + [3019] = 487, + [3020] = 474, + [3021] = 2961, + [3022] = 489, + [3023] = 471, + [3024] = 3024, + [3025] = 2737, + [3026] = 464, + [3027] = 465, + [3028] = 490, + [3029] = 2968, + [3030] = 3030, + [3031] = 2733, + [3032] = 2734, + [3033] = 2938, + [3034] = 2958, + [3035] = 1381, + [3036] = 2960, + [3037] = 2961, + [3038] = 2958, + [3039] = 2958, + [3040] = 2903, + [3041] = 2912, + [3042] = 491, + [3043] = 488, + [3044] = 492, + [3045] = 2924, + [3046] = 2737, + [3047] = 2649, + [3048] = 2930, + [3049] = 2743, + [3050] = 2759, + [3051] = 2820, + [3052] = 2877, + [3053] = 2885, + [3054] = 2896, + [3055] = 2972, + [3056] = 2899, + [3057] = 2902, + [3058] = 2916, + [3059] = 2809, + [3060] = 2703, + [3061] = 2667, + [3062] = 2972, + [3063] = 2958, + [3064] = 2960, + [3065] = 2961, + [3066] = 2916, + [3067] = 2960, + [3068] = 3068, + [3069] = 3069, + [3070] = 2733, + [3071] = 2734, + [3072] = 3072, + [3073] = 2726, + [3074] = 2903, + [3075] = 2912, + [3076] = 2685, + [3077] = 2960, + [3078] = 2961, + [3079] = 2924, + [3080] = 2737, + [3081] = 2930, + [3082] = 2743, + [3083] = 2759, + [3084] = 2820, + [3085] = 3085, + [3086] = 2877, + [3087] = 3087, + [3088] = 2885, + [3089] = 2896, + [3090] = 2899, + [3091] = 2902, + [3092] = 2916, + [3093] = 3093, + [3094] = 3094, + [3095] = 3095, + [3096] = 2813, + [3097] = 2703, + [3098] = 2667, + [3099] = 3099, + [3100] = 3100, + [3101] = 2651, + [3102] = 2808, + [3103] = 2938, + [3104] = 2716, + [3105] = 2822, + [3106] = 3106, + [3107] = 3107, + [3108] = 3108, + [3109] = 3109, + [3110] = 3110, + [3111] = 2808, + [3112] = 2809, + [3113] = 2964, + [3114] = 2944, + [3115] = 2685, + [3116] = 2813, + [3117] = 2649, [3118] = 3118, - [3119] = 3119, - [3120] = 470, - [3121] = 2636, - [3122] = 3032, - [3123] = 3033, - [3124] = 3052, - [3125] = 3040, - [3126] = 3042, - [3127] = 3127, - [3128] = 3040, - [3129] = 2942, - [3130] = 2621, - [3131] = 3052, - [3132] = 464, - [3133] = 2944, - [3134] = 465, - [3135] = 3038, - [3136] = 3066, - [3137] = 3032, - [3138] = 2648, - [3139] = 3033, - [3140] = 3052, - [3141] = 3040, - [3142] = 3042, - [3143] = 2942, - [3144] = 3033, - [3145] = 3052, - [3146] = 2659, - [3147] = 3040, - [3148] = 2942, - [3149] = 495, - [3150] = 3033, - [3151] = 2868, - [3152] = 3052, - [3153] = 3040, - [3154] = 3033, - [3155] = 3052, - [3156] = 3040, - [3157] = 479, - [3158] = 3033, - [3159] = 488, - [3160] = 492, - [3161] = 486, - [3162] = 464, - [3163] = 465, - [3164] = 3066, - [3165] = 3165, - [3166] = 3165, - [3167] = 487, - [3168] = 2931, - [3169] = 2930, - [3170] = 479, - [3171] = 478, - [3172] = 477, - [3173] = 491, - [3174] = 486, - [3175] = 484, - [3176] = 481, - [3177] = 492, - [3178] = 478, - [3179] = 477, - [3180] = 491, - [3181] = 488, - [3182] = 3165, - [3183] = 2924, - [3184] = 480, - [3185] = 3165, - [3186] = 465, - [3187] = 464, - [3188] = 2845, - [3189] = 3056, - [3190] = 2931, - [3191] = 477, - [3192] = 3165, - [3193] = 2738, - [3194] = 2930, - [3195] = 3195, - [3196] = 3005, - [3197] = 2933, - [3198] = 2999, - [3199] = 2993, - [3200] = 2992, - [3201] = 2991, - [3202] = 3019, - [3203] = 487, - [3204] = 3165, - [3205] = 2965, - [3206] = 495, - [3207] = 2956, - [3208] = 2929, - [3209] = 3165, - [3210] = 488, - [3211] = 486, - [3212] = 3165, - [3213] = 492, - [3214] = 2952, - [3215] = 484, - [3216] = 2948, - [3217] = 3036, - [3218] = 2947, - [3219] = 2926, - [3220] = 481, - [3221] = 486, - [3222] = 479, - [3223] = 488, - [3224] = 3165, - [3225] = 487, - [3226] = 479, - [3227] = 465, - [3228] = 2946, - [3229] = 490, - [3230] = 464, - [3231] = 2929, - [3232] = 2926, - [3233] = 3233, - [3234] = 478, - [3235] = 3165, - [3236] = 3236, - [3237] = 465, - [3238] = 464, - [3239] = 3165, - [3240] = 465, - [3241] = 492, - [3242] = 2938, - [3243] = 464, - [3244] = 3165, + [3119] = 2946, + [3120] = 464, + [3121] = 2617, + [3122] = 465, + [3123] = 2808, + [3124] = 2964, + [3125] = 3125, + [3126] = 2813, + [3127] = 2809, + [3128] = 2903, + [3129] = 2912, + [3130] = 2924, + [3131] = 2737, + [3132] = 2930, + [3133] = 2743, + [3134] = 470, + [3135] = 2722, + [3136] = 2820, + [3137] = 2877, + [3138] = 2885, + [3139] = 2813, + [3140] = 2896, + [3141] = 2899, + [3142] = 3142, + [3143] = 2902, + [3144] = 2822, + [3145] = 2916, + [3146] = 473, + [3147] = 493, + [3148] = 2822, + [3149] = 472, + [3150] = 498, + [3151] = 2903, + [3152] = 2912, + [3153] = 2968, + [3154] = 2924, + [3155] = 2737, + [3156] = 2726, + [3157] = 2930, + [3158] = 2743, + [3159] = 2759, + [3160] = 2820, + [3161] = 2877, + [3162] = 2970, + [3163] = 2968, + [3164] = 2716, + [3165] = 2918, + [3166] = 485, + [3167] = 485, + [3168] = 3168, + [3169] = 490, + [3170] = 3108, + [3171] = 3168, + [3172] = 2768, + [3173] = 2776, + [3174] = 479, + [3175] = 491, + [3176] = 3168, + [3177] = 488, + [3178] = 2769, + [3179] = 492, + [3180] = 2780, + [3181] = 487, + [3182] = 464, + [3183] = 3168, + [3184] = 3085, + [3185] = 474, + [3186] = 3168, + [3187] = 3109, + [3188] = 3188, + [3189] = 3189, + [3190] = 3190, + [3191] = 3191, + [3192] = 3192, + [3193] = 3193, + [3194] = 3168, + [3195] = 3093, + [3196] = 486, + [3197] = 3094, + [3198] = 483, + [3199] = 3168, + [3200] = 3168, + [3201] = 482, + [3202] = 2771, + [3203] = 480, + [3204] = 484, + [3205] = 464, + [3206] = 3168, + [3207] = 482, + [3208] = 465, + [3209] = 3209, + [3210] = 481, + [3211] = 3168, + [3212] = 2882, + [3213] = 3168, + [3214] = 487, + [3215] = 483, + [3216] = 3168, + [3217] = 485, + [3218] = 3168, + [3219] = 490, + [3220] = 474, + [3221] = 3168, + [3222] = 3168, + [3223] = 3168, + [3224] = 3168, + [3225] = 484, + [3226] = 3168, + [3227] = 3168, + [3228] = 491, + [3229] = 3168, + [3230] = 487, + [3231] = 488, + [3232] = 3168, + [3233] = 492, + [3234] = 483, + [3235] = 3168, + [3236] = 2918, + [3237] = 3168, + [3238] = 487, + [3239] = 3188, + [3240] = 3168, + [3241] = 2990, + [3242] = 474, + [3243] = 3087, + [3244] = 3168, [3245] = 484, - [3246] = 2937, - [3247] = 2936, - [3248] = 2923, - [3249] = 2922, - [3250] = 478, - [3251] = 491, - [3252] = 3165, - [3253] = 477, - [3254] = 480, - [3255] = 479, - [3256] = 491, - [3257] = 3165, - [3258] = 2921, - [3259] = 2917, - [3260] = 3165, - [3261] = 2916, - [3262] = 2915, - [3263] = 2899, - [3264] = 2898, - [3265] = 2894, - [3266] = 2890, - [3267] = 480, - [3268] = 3165, - [3269] = 465, - [3270] = 464, - [3271] = 2860, - [3272] = 3074, - [3273] = 3165, - [3274] = 3165, - [3275] = 480, - [3276] = 3075, - [3277] = 2849, - [3278] = 2848, - [3279] = 481, - [3280] = 481, - [3281] = 2843, - [3282] = 484, - [3283] = 2840, - [3284] = 3165, - [3285] = 3113, - [3286] = 3116, - [3287] = 480, - [3288] = 490, - [3289] = 3165, - [3290] = 3118, - [3291] = 487, - [3292] = 3119, - [3293] = 3165, - [3294] = 481, - [3295] = 484, - [3296] = 3165, - [3297] = 490, - [3298] = 464, - [3299] = 3165, - [3300] = 490, - [3301] = 3165, - [3302] = 3165, - [3303] = 3165, - [3304] = 3165, - [3305] = 2837, - [3306] = 492, - [3307] = 488, - [3308] = 3165, - [3309] = 3165, - [3310] = 3310, - [3311] = 474, - [3312] = 486, + [3246] = 3118, + [3247] = 3024, + [3248] = 3168, + [3249] = 3168, + [3250] = 3168, + [3251] = 2761, + [3252] = 2844, + [3253] = 3168, + [3254] = 2868, + [3255] = 3168, + [3256] = 474, + [3257] = 464, + [3258] = 3168, + [3259] = 483, + [3260] = 477, + [3261] = 3168, + [3262] = 465, + [3263] = 482, + [3264] = 3168, + [3265] = 2772, + [3266] = 489, + [3267] = 3267, + [3268] = 3168, + [3269] = 3168, + [3270] = 489, + [3271] = 3267, + [3272] = 3095, + [3273] = 3168, + [3274] = 483, + [3275] = 3168, + [3276] = 2915, + [3277] = 489, + [3278] = 3189, + [3279] = 2926, + [3280] = 2923, + [3281] = 485, + [3282] = 2845, + [3283] = 2860, + [3284] = 465, + [3285] = 3168, + [3286] = 3099, + [3287] = 3106, + [3288] = 485, + [3289] = 490, + [3290] = 3168, + [3291] = 3142, + [3292] = 2773, + [3293] = 484, + [3294] = 3168, + [3295] = 464, + [3296] = 486, + [3297] = 3100, + [3298] = 3125, + [3299] = 465, + [3300] = 3168, + [3301] = 490, + [3302] = 3168, + [3303] = 3209, + [3304] = 486, + [3305] = 484, + [3306] = 3168, + [3307] = 2937, + [3308] = 489, + [3309] = 482, + [3310] = 464, + [3311] = 488, + [3312] = 491, [3313] = 465, - [3314] = 2835, - [3315] = 3165, - [3316] = 3165, - [3317] = 3165, - [3318] = 2832, - [3319] = 2831, - [3320] = 3165, - [3321] = 3165, - [3322] = 479, - [3323] = 2802, - [3324] = 3165, - [3325] = 3165, - [3326] = 3165, - [3327] = 2830, - [3328] = 3165, - [3329] = 3165, - [3330] = 2829, - [3331] = 485, - [3332] = 2828, - [3333] = 2827, - [3334] = 3165, - [3335] = 2816, - [3336] = 3165, - [3337] = 3165, - [3338] = 3165, - [3339] = 3165, - [3340] = 3165, - [3341] = 3165, - [3342] = 3165, - [3343] = 3165, - [3344] = 3165, - [3345] = 2814, - [3346] = 3165, - [3347] = 2813, - [3348] = 3165, - [3349] = 3165, - [3350] = 3195, - [3351] = 2812, - [3352] = 478, - [3353] = 477, - [3354] = 491, - [3355] = 3165, - [3356] = 2810, - [3357] = 3165, - [3358] = 2868, - [3359] = 2825, - [3360] = 476, - [3361] = 2809, - [3362] = 3165, - [3363] = 3165, - [3364] = 3165, - [3365] = 3365, - [3366] = 3165, - [3367] = 2803, - [3368] = 3365, - [3369] = 3165, - [3370] = 3165, - [3371] = 3165, - [3372] = 3165, - [3373] = 3165, - [3374] = 3165, - [3375] = 2801, - [3376] = 475, - [3377] = 3310, - [3378] = 3378, - [3379] = 2845, - [3380] = 3056, - [3381] = 3005, - [3382] = 3233, - [3383] = 3236, - [3384] = 2999, - [3385] = 3310, - [3386] = 3378, - [3387] = 2993, - [3388] = 3388, - [3389] = 3389, - [3390] = 2992, - [3391] = 2801, - [3392] = 2991, - [3393] = 489, - [3394] = 3019, - [3395] = 2965, - [3396] = 2803, - [3397] = 3397, - [3398] = 2809, - [3399] = 2956, - [3400] = 2825, - [3401] = 3195, - [3402] = 2952, - [3403] = 2948, - [3404] = 3036, - [3405] = 2947, - [3406] = 2946, - [3407] = 3389, - [3408] = 3365, - [3409] = 2938, - [3410] = 2937, - [3411] = 3233, - [3412] = 2936, - [3413] = 2923, - [3414] = 465, - [3415] = 482, - [3416] = 3236, - [3417] = 464, - [3418] = 483, - [3419] = 3310, - [3420] = 3378, - [3421] = 2922, - [3422] = 3388, - [3423] = 3389, - [3424] = 3388, - [3425] = 2921, - [3426] = 3165, - [3427] = 487, - [3428] = 2917, - [3429] = 2916, - [3430] = 2915, - [3431] = 2899, - [3432] = 2898, - [3433] = 2894, - [3434] = 2890, - [3435] = 3165, - [3436] = 2860, - [3437] = 3389, - [3438] = 3388, - [3439] = 486, - [3440] = 3378, - [3441] = 3119, - [3442] = 3118, - [3443] = 3116, - [3444] = 3113, - [3445] = 488, - [3446] = 2840, - [3447] = 2843, - [3448] = 492, - [3449] = 2848, - [3450] = 2849, - [3451] = 3233, - [3452] = 3236, - [3453] = 490, - [3454] = 3075, - [3455] = 3074, - [3456] = 832, - [3457] = 465, - [3458] = 3458, + [3314] = 3168, + [3315] = 2787, + [3316] = 3168, + [3317] = 2836, + [3318] = 2880, + [3319] = 2882, + [3320] = 2937, + [3321] = 2787, + [3322] = 2849, + [3323] = 2752, + [3324] = 2767, + [3325] = 2768, + [3326] = 2769, + [3327] = 2771, + [3328] = 2772, + [3329] = 2773, + [3330] = 3168, + [3331] = 3168, + [3332] = 3188, + [3333] = 3189, + [3334] = 2915, + [3335] = 2923, + [3336] = 3068, + [3337] = 3069, + [3338] = 3072, + [3339] = 3085, + [3340] = 3093, + [3341] = 3094, + [3342] = 464, + [3343] = 3095, + [3344] = 3190, + [3345] = 3099, + [3346] = 3106, + [3347] = 3107, + [3348] = 3108, + [3349] = 3109, + [3350] = 3110, + [3351] = 3168, + [3352] = 3191, + [3353] = 465, + [3354] = 2845, + [3355] = 2860, + [3356] = 3142, + [3357] = 3192, + [3358] = 2990, + [3359] = 3168, + [3360] = 3193, + [3361] = 2908, + [3362] = 2908, + [3363] = 464, + [3364] = 3110, + [3365] = 2849, + [3366] = 3087, + [3367] = 488, + [3368] = 492, + [3369] = 3168, + [3370] = 3118, + [3371] = 3024, + [3372] = 487, + [3373] = 3168, + [3374] = 489, + [3375] = 2837, + [3376] = 2837, + [3377] = 3190, + [3378] = 2838, + [3379] = 492, + [3380] = 3168, + [3381] = 465, + [3382] = 2761, + [3383] = 491, + [3384] = 2844, + [3385] = 2868, + [3386] = 486, + [3387] = 2903, + [3388] = 2912, + [3389] = 2924, + [3390] = 2737, + [3391] = 2930, + [3392] = 2743, + [3393] = 2759, + [3394] = 2820, + [3395] = 2877, + [3396] = 2885, + [3397] = 2896, + [3398] = 2899, + [3399] = 2902, + [3400] = 2916, + [3401] = 2822, + [3402] = 3191, + [3403] = 3193, + [3404] = 2836, + [3405] = 3168, + [3406] = 3168, + [3407] = 2776, + [3408] = 3168, + [3409] = 2780, + [3410] = 490, + [3411] = 3068, + [3412] = 3267, + [3413] = 3168, + [3414] = 3069, + [3415] = 2752, + [3416] = 486, + [3417] = 491, + [3418] = 3168, + [3419] = 3168, + [3420] = 3168, + [3421] = 474, + [3422] = 488, + [3423] = 492, + [3424] = 3168, + [3425] = 2880, + [3426] = 3426, + [3427] = 498, + [3428] = 3168, + [3429] = 2926, + [3430] = 478, + [3431] = 475, + [3432] = 2767, + [3433] = 3168, + [3434] = 482, + [3435] = 3072, + [3436] = 3168, + [3437] = 3209, + [3438] = 2838, + [3439] = 3168, + [3440] = 3188, + [3441] = 3189, + [3442] = 476, + [3443] = 3190, + [3444] = 3168, + [3445] = 3107, + [3446] = 3191, + [3447] = 3168, + [3448] = 2808, + [3449] = 2809, + [3450] = 2813, + [3451] = 3192, + [3452] = 3192, + [3453] = 3100, + [3454] = 3125, + [3455] = 3193, + [3456] = 3456, + [3457] = 493, + [3458] = 464, [3459] = 470, - [3460] = 3458, - [3461] = 473, - [3462] = 3462, - [3463] = 465, - [3464] = 464, - [3465] = 1011, - [3466] = 1148, - [3467] = 880, - [3468] = 468, - [3469] = 1474, - [3470] = 3470, - [3471] = 1100, - [3472] = 885, - [3473] = 494, - [3474] = 464, - [3475] = 3458, - [3476] = 469, - [3477] = 3477, - [3478] = 583, - [3479] = 1163, - [3480] = 1158, - [3481] = 1081, - [3482] = 465, - [3483] = 859, - [3484] = 3458, - [3485] = 464, - [3486] = 3486, - [3487] = 3487, - [3488] = 481, - [3489] = 3487, - [3490] = 479, - [3491] = 3491, - [3492] = 486, - [3493] = 3487, - [3494] = 488, - [3495] = 3487, - [3496] = 3487, - [3497] = 3487, - [3498] = 492, - [3499] = 3487, - [3500] = 3487, - [3501] = 476, - [3502] = 3487, - [3503] = 3487, - [3504] = 491, - [3505] = 477, - [3506] = 478, - [3507] = 3487, - [3508] = 483, - [3509] = 3487, - [3510] = 482, - [3511] = 495, - [3512] = 475, - [3513] = 474, - [3514] = 3487, - [3515] = 485, - [3516] = 480, - [3517] = 3487, - [3518] = 3487, - [3519] = 3487, - [3520] = 3487, - [3521] = 3487, - [3522] = 490, - [3523] = 3487, - [3524] = 3487, - [3525] = 489, - [3526] = 3487, - [3527] = 3487, - [3528] = 487, - [3529] = 484, - [3530] = 3487, - [3531] = 3531, - [3532] = 3532, - [3533] = 3533, - [3534] = 3534, - [3535] = 464, - [3536] = 1361, + [3460] = 1381, + [3461] = 1064, + [3462] = 473, + [3463] = 3463, + [3464] = 832, + [3465] = 884, + [3466] = 886, + [3467] = 472, + [3468] = 3468, + [3469] = 3469, + [3470] = 873, + [3471] = 1053, + [3472] = 471, + [3473] = 1054, + [3474] = 3474, + [3475] = 1081, + [3476] = 1082, + [3477] = 1062, + [3478] = 464, + [3479] = 3456, + [3480] = 465, + [3481] = 465, + [3482] = 464, + [3483] = 465, + [3484] = 3456, + [3485] = 585, + [3486] = 3456, + [3487] = 490, + [3488] = 478, + [3489] = 475, + [3490] = 3490, + [3491] = 484, + [3492] = 3490, + [3493] = 3490, + [3494] = 3490, + [3495] = 479, + [3496] = 485, + [3497] = 498, + [3498] = 480, + [3499] = 3490, + [3500] = 3490, + [3501] = 3490, + [3502] = 3490, + [3503] = 3490, + [3504] = 481, + [3505] = 476, + [3506] = 3490, + [3507] = 488, + [3508] = 492, + [3509] = 486, + [3510] = 3490, + [3511] = 3490, + [3512] = 3490, + [3513] = 477, + [3514] = 3490, + [3515] = 3490, + [3516] = 3490, + [3517] = 3490, + [3518] = 482, + [3519] = 3490, + [3520] = 3490, + [3521] = 3490, + [3522] = 3490, + [3523] = 487, + [3524] = 474, + [3525] = 3490, + [3526] = 3490, + [3527] = 3527, + [3528] = 483, + [3529] = 489, + [3530] = 491, + [3531] = 1339, + [3532] = 1093, + [3533] = 493, + [3534] = 1088, + [3535] = 1343, + [3536] = 3536, [3537] = 465, - [3538] = 464, - [3539] = 1146, - [3540] = 465, - [3541] = 1382, - [3542] = 1149, - [3543] = 1474, - [3544] = 494, - [3545] = 1429, - [3546] = 3546, - [3547] = 1301, + [3538] = 465, + [3539] = 464, + [3540] = 1314, + [3541] = 464, + [3542] = 1381, + [3543] = 3543, + [3544] = 3544, + [3545] = 3545, + [3546] = 1658, + [3547] = 1506, [3548] = 3548, - [3549] = 3546, - [3550] = 3546, - [3551] = 3548, - [3552] = 495, + [3549] = 3549, + [3550] = 3549, + [3551] = 3551, + [3552] = 1696, [3553] = 3548, - [3554] = 3546, + [3554] = 1571, [3555] = 3555, - [3556] = 1534, - [3557] = 3548, - [3558] = 3548, - [3559] = 464, - [3560] = 465, - [3561] = 3546, - [3562] = 465, - [3563] = 3548, - [3564] = 3546, - [3565] = 3565, - [3566] = 3548, - [3567] = 3567, - [3568] = 3546, - [3569] = 1281, - [3570] = 3565, - [3571] = 3571, - [3572] = 464, - [3573] = 1607, - [3574] = 3574, - [3575] = 3548, - [3576] = 3546, - [3577] = 3546, - [3578] = 1542, - [3579] = 464, + [3556] = 3555, + [3557] = 3551, + [3558] = 464, + [3559] = 498, + [3560] = 3551, + [3561] = 3549, + [3562] = 3555, + [3563] = 3549, + [3564] = 3548, + [3565] = 3551, + [3566] = 3551, + [3567] = 3549, + [3568] = 3549, + [3569] = 3569, + [3570] = 465, + [3571] = 3551, + [3572] = 3551, + [3573] = 3573, + [3574] = 3551, + [3575] = 3549, + [3576] = 465, + [3577] = 3549, + [3578] = 3578, + [3579] = 1590, [3580] = 465, - [3581] = 3581, - [3582] = 464, - [3583] = 3567, - [3584] = 464, - [3585] = 3565, - [3586] = 3548, - [3587] = 3546, - [3588] = 3546, - [3589] = 3548, - [3590] = 3546, - [3591] = 3567, - [3592] = 3548, + [3581] = 464, + [3582] = 3549, + [3583] = 1293, + [3584] = 3551, + [3585] = 3551, + [3586] = 3549, + [3587] = 3549, + [3588] = 464, + [3589] = 465, + [3590] = 3549, + [3591] = 3591, + [3592] = 1240, [3593] = 3548, - [3594] = 3548, - [3595] = 3546, - [3596] = 3567, - [3597] = 1556, - [3598] = 465, - [3599] = 3548, - [3600] = 465, - [3601] = 1498, + [3594] = 3551, + [3595] = 3549, + [3596] = 464, + [3597] = 3551, + [3598] = 3549, + [3599] = 3551, + [3600] = 464, + [3601] = 3601, [3602] = 3548, - [3603] = 3565, - [3604] = 583, - [3605] = 3567, - [3606] = 3546, - [3607] = 465, - [3608] = 3565, - [3609] = 3609, - [3610] = 3546, - [3611] = 3548, - [3612] = 464, - [3613] = 3546, + [3603] = 3551, + [3604] = 465, + [3605] = 3549, + [3606] = 585, + [3607] = 3555, + [3608] = 3551, + [3609] = 3551, + [3610] = 464, + [3611] = 3549, + [3612] = 465, + [3613] = 3555, [3614] = 3614, [3615] = 3615, [3616] = 3616, - [3617] = 3614, - [3618] = 3618, - [3619] = 465, + [3617] = 3617, + [3618] = 3614, + [3619] = 3615, [3620] = 3620, - [3621] = 3621, - [3622] = 3618, - [3623] = 3621, - [3624] = 3618, - [3625] = 3618, - [3626] = 3621, - [3627] = 3621, - [3628] = 3628, - [3629] = 3618, - [3630] = 3621, - [3631] = 3621, - [3632] = 3621, - [3633] = 3618, - [3634] = 3618, - [3635] = 3618, - [3636] = 464, - [3637] = 3618, - [3638] = 3621, - [3639] = 3621, - [3640] = 3618, - [3641] = 3621, - [3642] = 3618, - [3643] = 3615, + [3621] = 3615, + [3622] = 464, + [3623] = 3617, + [3624] = 3614, + [3625] = 3620, + [3626] = 3614, + [3627] = 3627, + [3628] = 3614, + [3629] = 3627, + [3630] = 3615, + [3631] = 3615, + [3632] = 465, + [3633] = 3616, + [3634] = 465, + [3635] = 3614, + [3636] = 3615, + [3637] = 3615, + [3638] = 3615, + [3639] = 3615, + [3640] = 3615, + [3641] = 3614, + [3642] = 3642, + [3643] = 3614, [3644] = 3616, - [3645] = 3618, - [3646] = 3621, - [3647] = 3618, - [3648] = 3621, - [3649] = 3618, - [3650] = 3621, - [3651] = 3618, - [3652] = 3621, - [3653] = 3618, - [3654] = 3618, - [3655] = 3621, - [3656] = 3616, + [3645] = 3614, + [3646] = 3617, + [3647] = 3620, + [3648] = 3614, + [3649] = 3614, + [3650] = 3616, + [3651] = 3615, + [3652] = 3614, + [3653] = 3615, + [3654] = 3615, + [3655] = 3614, + [3656] = 3620, [3657] = 3615, [3658] = 3615, - [3659] = 3621, - [3660] = 3620, - [3661] = 3618, - [3662] = 3621, - [3663] = 3616, - [3664] = 465, - [3665] = 3618, - [3666] = 464, - [3667] = 3621, - [3668] = 3616, - [3669] = 3618, - [3670] = 3618, + [3659] = 3615, + [3660] = 3614, + [3661] = 3627, + [3662] = 3616, + [3663] = 3615, + [3664] = 3614, + [3665] = 3614, + [3666] = 3617, + [3667] = 3614, + [3668] = 3617, + [3669] = 3614, + [3670] = 3615, [3671] = 3615, - [3672] = 3620, - [3673] = 3621, - [3674] = 3621, - [3675] = 3621, + [3672] = 3614, + [3673] = 3615, + [3674] = 3614, + [3675] = 464, [3676] = 3614, - [3677] = 3618, - [3678] = 3618, - [3679] = 3621, - [3680] = 3621, - [3681] = 3621, - [3682] = 3620, - [3683] = 3616, - [3684] = 3618, + [3677] = 3615, + [3678] = 3616, + [3679] = 3620, + [3680] = 3614, + [3681] = 3615, + [3682] = 3614, + [3683] = 3614, + [3684] = 3627, [3685] = 3615, - [3686] = 3620, - [3687] = 3621, - [3688] = 3618, - [3689] = 3618, - [3690] = 3618, - [3691] = 3621, - [3692] = 3614, - [3693] = 3621, - [3694] = 3621, - [3695] = 3620, - [3696] = 3618, - [3697] = 3620, + [3686] = 3615, + [3687] = 3620, + [3688] = 3617, + [3689] = 3614, + [3690] = 3615, + [3691] = 3615, + [3692] = 3615, + [3693] = 3614, + [3694] = 3614, + [3695] = 3614, + [3696] = 3617, + [3697] = 3615, [3698] = 3698, - [3699] = 3699, + [3699] = 3698, [3700] = 3700, - [3701] = 3700, - [3702] = 3702, + [3701] = 3698, + [3702] = 3700, [3703] = 3703, - [3704] = 3702, + [3704] = 3698, [3705] = 3705, - [3706] = 3706, - [3707] = 3702, - [3708] = 3699, - [3709] = 3705, - [3710] = 3699, - [3711] = 3698, - [3712] = 3700, - [3713] = 3705, - [3714] = 3699, - [3715] = 3703, - [3716] = 3703, - [3717] = 3702, - [3718] = 3706, + [3706] = 3700, + [3707] = 3698, + [3708] = 3708, + [3709] = 3709, + [3710] = 3710, + [3711] = 3711, + [3712] = 3712, + [3713] = 3713, + [3714] = 3714, + [3715] = 3700, + [3716] = 3716, + [3717] = 3717, + [3718] = 3718, [3719] = 3698, - [3720] = 3706, - [3721] = 3706, - [3722] = 3705, - [3723] = 3698, - [3724] = 3699, - [3725] = 3703, - [3726] = 3705, - [3727] = 3700, - [3728] = 3699, - [3729] = 3699, - [3730] = 3705, - [3731] = 3731, - [3732] = 3702, - [3733] = 3702, - [3734] = 3703, - [3735] = 3698, - [3736] = 3706, - [3737] = 3700, - [3738] = 3702, - [3739] = 3703, - [3740] = 3706, - [3741] = 3699, - [3742] = 3705, - [3743] = 3705, - [3744] = 3699, + [3720] = 3700, + [3721] = 3721, + [3722] = 3722, + [3723] = 3723, + [3724] = 3698, + [3725] = 3700, + [3726] = 3726, + [3727] = 3698, + [3728] = 3708, + [3729] = 3698, + [3730] = 3703, + [3731] = 3700, + [3732] = 3698, + [3733] = 3700, + [3734] = 3698, + [3735] = 3700, + [3736] = 3700, + [3737] = 3698, + [3738] = 3700, + [3739] = 3698, + [3740] = 3703, + [3741] = 3700, + [3742] = 3698, + [3743] = 3709, + [3744] = 3700, [3745] = 3698, - [3746] = 3700, - [3747] = 3698, - [3748] = 3705, - [3749] = 3699, + [3746] = 3710, + [3747] = 3700, + [3748] = 3711, + [3749] = 3698, [3750] = 3700, - [3751] = 3705, + [3751] = 3712, [3752] = 3698, - [3753] = 3699, - [3754] = 3705, - [3755] = 3699, - [3756] = 3700, + [3753] = 3713, + [3754] = 3714, + [3755] = 3716, + [3756] = 3717, [3757] = 3700, - [3758] = 3702, - [3759] = 3705, - [3760] = 3698, - [3761] = 3706, - [3762] = 3703, - [3763] = 3703, - [3764] = 3699, - [3765] = 3706, - [3766] = 3702, - [3767] = 3698, - [3768] = 3702, - [3769] = 3703, + [3758] = 3698, + [3759] = 3759, + [3760] = 3700, + [3761] = 3698, + [3762] = 3700, + [3763] = 3698, + [3764] = 3718, + [3765] = 3700, + [3766] = 3698, + [3767] = 3700, + [3768] = 3698, + [3769] = 3700, [3770] = 3698, - [3771] = 3698, - [3772] = 3706, - [3773] = 3700, - [3774] = 3702, - [3775] = 3703, - [3776] = 3702, - [3777] = 3706, - [3778] = 3702, - [3779] = 3706, - [3780] = 3703, - [3781] = 3698, - [3782] = 3706, - [3783] = 3705, - [3784] = 3699, + [3771] = 3721, + [3772] = 3722, + [3773] = 3723, + [3774] = 3700, + [3775] = 3775, + [3776] = 3698, + [3777] = 3700, + [3778] = 3698, + [3779] = 3700, + [3780] = 3698, + [3781] = 3759, + [3782] = 3703, + [3783] = 3700, + [3784] = 3698, [3785] = 3700, - [3786] = 3699, - [3787] = 3703, - [3788] = 3702, - [3789] = 3705, + [3786] = 3698, + [3787] = 3787, + [3788] = 3788, + [3789] = 3789, [3790] = 3700, [3791] = 3698, [3792] = 3700, - [3793] = 3705, - [3794] = 3698, - [3795] = 3700, + [3793] = 3700, + [3794] = 3705, + [3795] = 3795, [3796] = 3698, - [3797] = 3699, - [3798] = 3702, - [3799] = 3703, - [3800] = 3800, - [3801] = 3706, - [3802] = 3702, - [3803] = 3698, - [3804] = 3705, - [3805] = 3703, - [3806] = 3700, - [3807] = 3706, - [3808] = 3703, - [3809] = 3699, - [3810] = 3698, - [3811] = 3698, - [3812] = 3705, - [3813] = 3700, - [3814] = 3700, - [3815] = 3702, - [3816] = 3699, - [3817] = 3699, - [3818] = 3705, - [3819] = 3700, - [3820] = 3705, - [3821] = 3703, - [3822] = 3706, - [3823] = 3702, - [3824] = 3699, - [3825] = 3705, + [3797] = 3698, + [3798] = 3708, + [3799] = 3709, + [3800] = 3710, + [3801] = 3711, + [3802] = 3712, + [3803] = 3713, + [3804] = 3714, + [3805] = 3716, + [3806] = 3717, + [3807] = 3718, + [3808] = 3721, + [3809] = 3722, + [3810] = 3723, + [3811] = 3700, + [3812] = 3700, + [3813] = 3698, + [3814] = 3698, + [3815] = 3700, + [3816] = 3698, + [3817] = 3703, + [3818] = 3700, + [3819] = 3698, + [3820] = 3700, + [3821] = 3698, + [3822] = 3700, + [3823] = 3698, + [3824] = 3700, + [3825] = 3698, [3826] = 3698, - [3827] = 3827, - [3828] = 3706, - [3829] = 3702, - [3830] = 3699, - [3831] = 3705, - [3832] = 3703, - [3833] = 3706, - [3834] = 3700, - [3835] = 3699, - [3836] = 3706, - [3837] = 3702, - [3838] = 3703, - [3839] = 3698, - [3840] = 3703, - [3841] = 3698, - [3842] = 3842, + [3827] = 3700, + [3828] = 3698, + [3829] = 3700, + [3830] = 3698, + [3831] = 3700, + [3832] = 3698, + [3833] = 3700, + [3834] = 3698, + [3835] = 3700, + [3836] = 3698, + [3837] = 3700, + [3838] = 3698, + [3839] = 3700, + [3840] = 3698, + [3841] = 3705, + [3842] = 3795, [3843] = 3700, - [3844] = 3700, - [3845] = 3698, - [3846] = 3700, - [3847] = 3698, - [3848] = 3700, - [3849] = 3699, - [3850] = 3705, + [3844] = 3698, + [3845] = 3700, + [3846] = 3698, + [3847] = 3700, + [3848] = 3698, + [3849] = 3703, + [3850] = 3700, [3851] = 3698, [3852] = 3700, - [3853] = 3702, + [3853] = 3698, [3854] = 3700, - [3855] = 3705, + [3855] = 3698, [3856] = 3700, - [3857] = 3699, - [3858] = 3698, - [3859] = 3706, - [3860] = 3702, - [3861] = 3700, - [3862] = 3705, - [3863] = 3699, - [3864] = 3702, - [3865] = 3702, - [3866] = 3702, + [3857] = 3698, + [3858] = 3700, + [3859] = 3698, + [3860] = 3700, + [3861] = 3698, + [3862] = 3700, + [3863] = 3698, + [3864] = 3705, + [3865] = 3795, + [3866] = 3700, [3867] = 3698, - [3868] = 3698, - [3869] = 3702, - [3870] = 3702, - [3871] = 3698, - [3872] = 3700, - [3873] = 3702, - [3874] = 3705, - [3875] = 3699, + [3868] = 3703, + [3869] = 3700, + [3870] = 3698, + [3871] = 3700, + [3872] = 3698, + [3873] = 3700, + [3874] = 3698, + [3875] = 3700, [3876] = 3705, - [3877] = 3702, - [3878] = 3702, - [3879] = 3699, - [3880] = 3702, - [3881] = 3702, - [3882] = 3702, + [3877] = 3795, + [3878] = 3698, + [3879] = 3703, + [3880] = 3700, + [3881] = 3698, + [3882] = 3700, [3883] = 3698, - [3884] = 3702, - [3885] = 3702, - [3886] = 3698, - [3887] = 3700, - [3888] = 3699, - [3889] = 3700, - [3890] = 3702, - [3891] = 3702, - [3892] = 3705, - [3893] = 3705, - [3894] = 3702, - [3895] = 3702, - [3896] = 3702, - [3897] = 3698, - [3898] = 3706, - [3899] = 3702, - [3900] = 3702, - [3901] = 3700, - [3902] = 3703, - [3903] = 3700, - [3904] = 3698, - [3905] = 3702, - [3906] = 3698, + [3884] = 3700, + [3885] = 3698, + [3886] = 3705, + [3887] = 3795, + [3888] = 3759, + [3889] = 3703, + [3890] = 3705, + [3891] = 3795, + [3892] = 3700, + [3893] = 3698, + [3894] = 3703, + [3895] = 3705, + [3896] = 3795, + [3897] = 3703, + [3898] = 3705, + [3899] = 3795, + [3900] = 3703, + [3901] = 3705, + [3902] = 3795, + [3903] = 3703, + [3904] = 3705, + [3905] = 3795, + [3906] = 3700, [3907] = 3703, - [3908] = 3700, - [3909] = 3698, - [3910] = 3700, - [3911] = 3698, - [3912] = 3702, - [3913] = 3700, - [3914] = 3700, - [3915] = 3699, + [3908] = 3698, + [3909] = 3705, + [3910] = 3795, + [3911] = 3703, + [3912] = 3705, + [3913] = 3703, + [3914] = 3795, + [3915] = 3703, [3916] = 3705, - [3917] = 3698, - [3918] = 3700, - [3919] = 3699, - [3920] = 3705, - [3921] = 3702, - [3922] = 3698, - [3923] = 3700, - [3924] = 3700, - [3925] = 3698, - [3926] = 3698, - [3927] = 3700, - [3928] = 3698, - [3929] = 3702, - [3930] = 3700, - [3931] = 3700, - [3932] = 3699, + [3917] = 3795, + [3918] = 3703, + [3919] = 3705, + [3920] = 3795, + [3921] = 3703, + [3922] = 3705, + [3923] = 3795, + [3924] = 3703, + [3925] = 3705, + [3926] = 3700, + [3927] = 3795, + [3928] = 3703, + [3929] = 3705, + [3930] = 3698, + [3931] = 3795, + [3932] = 3703, [3933] = 3705, - [3934] = 3699, - [3935] = 3698, - [3936] = 3700, - [3937] = 3700, - [3938] = 3698, - [3939] = 3698, - [3940] = 3702, - [3941] = 3702, - [3942] = 3702, - [3943] = 3702, + [3934] = 3795, + [3935] = 3703, + [3936] = 3705, + [3937] = 3795, + [3938] = 3703, + [3939] = 3795, + [3940] = 3703, + [3941] = 3705, + [3942] = 3795, + [3943] = 3703, [3944] = 3705, - [3945] = 3699, - [3946] = 3702, - [3947] = 3702, - [3948] = 3702, - [3949] = 3698, - [3950] = 3702, - [3951] = 3702, - [3952] = 3702, - [3953] = 3702, - [3954] = 3698, - [3955] = 3698, - [3956] = 3698, - [3957] = 3700, - [3958] = 3698, - [3959] = 3700, - [3960] = 3960, - [3961] = 3700, - [3962] = 3700, - [3963] = 3706, - [3964] = 3698, + [3945] = 3795, + [3946] = 3703, + [3947] = 3703, + [3948] = 3703, + [3949] = 3700, + [3950] = 3703, + [3951] = 3698, + [3952] = 3703, + [3953] = 3703, + [3954] = 3703, + [3955] = 3700, + [3956] = 3703, + [3957] = 3703, + [3958] = 3703, + [3959] = 3703, + [3960] = 3703, + [3961] = 3703, + [3962] = 3703, + [3963] = 3703, + [3964] = 3703, [3965] = 3703, - [3966] = 3699, - [3967] = 3705, - [3968] = 3700, - [3969] = 3698, - [3970] = 3970, - [3971] = 3700, - [3972] = 3698, - [3973] = 3705, - [3974] = 3699, - [3975] = 3700, - [3976] = 3698, - [3977] = 3705, - [3978] = 3699, - [3979] = 3700, - [3980] = 3698, - [3981] = 3981, - [3982] = 3705, - [3983] = 3699, + [3966] = 3700, + [3967] = 3703, + [3968] = 3698, + [3969] = 3703, + [3970] = 3698, + [3971] = 3703, + [3972] = 3703, + [3973] = 3703, + [3974] = 3703, + [3975] = 3703, + [3976] = 3703, + [3977] = 3703, + [3978] = 3703, + [3979] = 3703, + [3980] = 3703, + [3981] = 3703, + [3982] = 3700, + [3983] = 3703, [3984] = 3698, - [3985] = 3705, - [3986] = 3699, - [3987] = 3842, + [3985] = 3703, + [3986] = 3703, + [3987] = 3703, [3988] = 3700, - [3989] = 3700, - [3990] = 3698, - [3991] = 3700, - [3992] = 3698, - [3993] = 3700, - [3994] = 3705, - [3995] = 3699, - [3996] = 3698, - [3997] = 3705, - [3998] = 3700, - [3999] = 3698, - [4000] = 3699, - [4001] = 4001, - [4002] = 3700, - [4003] = 3700, - [4004] = 3698, + [3989] = 3698, + [3990] = 3700, + [3991] = 3991, + [3992] = 3992, + [3993] = 3698, + [3994] = 3994, + [3995] = 3775, + [3996] = 3700, + [3997] = 3698, + [3998] = 3705, + [3999] = 3795, + [4000] = 3705, + [4001] = 3795, + [4002] = 3705, + [4003] = 3795, + [4004] = 3700, [4005] = 3705, - [4006] = 3699, - [4007] = 3700, - [4008] = 3705, - [4009] = 3698, - [4010] = 3700, - [4011] = 3698, - [4012] = 3699, + [4006] = 3795, + [4007] = 3698, + [4008] = 3991, + [4009] = 3992, + [4010] = 3994, + [4011] = 3775, + [4012] = 3700, [4013] = 3698, - [4014] = 3700, - [4015] = 3698, - [4016] = 3702, - [4017] = 3700, - [4018] = 3827, - [4019] = 3700, - [4020] = 3698, + [4014] = 3703, + [4015] = 3705, + [4016] = 3795, + [4017] = 3705, + [4018] = 3795, + [4019] = 3705, + [4020] = 3795, [4021] = 3705, - [4022] = 3700, + [4022] = 3795, [4023] = 3700, - [4024] = 3706, - [4025] = 3699, - [4026] = 3700, - [4027] = 3702, - [4028] = 3702, - [4029] = 3698, - [4030] = 3703, - [4031] = 3706, - [4032] = 4001, - [4033] = 4033, - [4034] = 3702, - [4035] = 4035, - [4036] = 3703, + [4024] = 3991, + [4025] = 3992, + [4026] = 3698, + [4027] = 3705, + [4028] = 3795, + [4029] = 3705, + [4030] = 3795, + [4031] = 3991, + [4032] = 3992, + [4033] = 3700, + [4034] = 3698, + [4035] = 3705, + [4036] = 3795, [4037] = 3705, - [4038] = 3700, - [4039] = 3706, - [4040] = 4040, - [4041] = 4041, - [4042] = 3698, - [4043] = 4043, - [4044] = 4044, - [4045] = 3703, - [4046] = 3700, - [4047] = 3699, - [4048] = 3705, - [4049] = 3699, - [4050] = 3706, - [4051] = 4051, - [4052] = 3703, - [4053] = 3706, - [4054] = 3705, - [4055] = 3698, - [4056] = 4056, - [4057] = 3970, - [4058] = 4058, - [4059] = 3698, - [4060] = 3731, - [4061] = 3699, - [4062] = 3699, - [4063] = 3705, - [4064] = 4033, - [4065] = 3702, - [4066] = 3981, - [4067] = 3842, - [4068] = 4035, - [4069] = 4069, - [4070] = 4040, - [4071] = 3698, - [4072] = 4041, - [4073] = 4043, - [4074] = 3705, - [4075] = 3700, - [4076] = 3699, - [4077] = 3700, - [4078] = 3827, - [4079] = 3705, - [4080] = 3698, + [4038] = 3795, + [4039] = 3991, + [4040] = 3992, + [4041] = 3991, + [4042] = 3992, + [4043] = 3991, + [4044] = 3992, + [4045] = 3700, + [4046] = 3991, + [4047] = 3992, + [4048] = 3698, + [4049] = 3991, + [4050] = 3992, + [4051] = 3991, + [4052] = 3992, + [4053] = 3991, + [4054] = 3992, + [4055] = 3991, + [4056] = 3992, + [4057] = 3991, + [4058] = 3992, + [4059] = 3991, + [4060] = 3992, + [4061] = 3991, + [4062] = 3991, + [4063] = 3992, + [4064] = 3700, + [4065] = 3992, + [4066] = 3991, + [4067] = 3992, + [4068] = 3698, + [4069] = 3991, + [4070] = 3992, + [4071] = 3991, + [4072] = 3992, + [4073] = 3991, + [4074] = 3992, + [4075] = 3991, + [4076] = 3992, + [4077] = 3991, + [4078] = 3992, + [4079] = 3991, + [4080] = 3992, [4081] = 3700, - [4082] = 3699, - [4083] = 4083, - [4084] = 4044, - [4085] = 4085, - [4086] = 3698, - [4087] = 3698, - [4088] = 3700, - [4089] = 3700, - [4090] = 4051, - [4091] = 3960, - [4092] = 3698, - [4093] = 4056, - [4094] = 3698, - [4095] = 3698, - [4096] = 4069, - [4097] = 3700, - [4098] = 4058, - [4099] = 3698, - [4100] = 3698, - [4101] = 3705, - [4102] = 4085, - [4103] = 3699, - [4104] = 3700, - [4105] = 3700, - [4106] = 3698, - [4107] = 3703, - [4108] = 4108, - [4109] = 3706, - [4110] = 4083, - [4111] = 3706, - [4112] = 3705, - [4113] = 3698, - [4114] = 3699, - [4115] = 3703, - [4116] = 3698, - [4117] = 3700, - [4118] = 3703, - [4119] = 3706, - [4120] = 4085, - [4121] = 4083, - [4122] = 3827, - [4123] = 4069, - [4124] = 3981, - [4125] = 3703, - [4126] = 3706, - [4127] = 3702, - [4128] = 3698, - [4129] = 3698, - [4130] = 3731, - [4131] = 4058, - [4132] = 3970, - [4133] = 3700, - [4134] = 4056, - [4135] = 3705, - [4136] = 3699, - [4137] = 3800, - [4138] = 3703, - [4139] = 3698, - [4140] = 3698, - [4141] = 3700, - [4142] = 3960, - [4143] = 4051, - [4144] = 3705, - [4145] = 4044, - [4146] = 4043, - [4147] = 4041, - [4148] = 4040, - [4149] = 4035, - [4150] = 4033, - [4151] = 4001, - [4152] = 3706, - [4153] = 3700, - [4154] = 3699, - [4155] = 3705, - [4156] = 3700, - [4157] = 3698, - [4158] = 3698, - [4159] = 3700, - [4160] = 3700, - [4161] = 3700, - [4162] = 3700, - [4163] = 3698, - [4164] = 3699, - [4165] = 3703, - [4166] = 3705, - [4167] = 3706, - [4168] = 3702, - [4169] = 3699, - [4170] = 3703, - [4171] = 3700, - [4172] = 3698, - [4173] = 3700, - [4174] = 3706, - [4175] = 3699, - [4176] = 3705, - [4177] = 3700, - [4178] = 3700, - [4179] = 3698, - [4180] = 3700, - [4181] = 3698, - [4182] = 3703, - [4183] = 3705, - [4184] = 3699, - [4185] = 3800, - [4186] = 3706, + [4082] = 3700, + [4083] = 3991, + [4084] = 3992, + [4085] = 3698, + [4086] = 3991, + [4087] = 3992, + [4088] = 3991, + [4089] = 3992, + [4090] = 3991, + [4091] = 3992, + [4092] = 3991, + [4093] = 3992, + [4094] = 3991, + [4095] = 3992, + [4096] = 3991, + [4097] = 3992, + [4098] = 3700, + [4099] = 3991, + [4100] = 3992, + [4101] = 3698, + [4102] = 3991, + [4103] = 3992, + [4104] = 3703, + [4105] = 3991, + [4106] = 3992, + [4107] = 3991, + [4108] = 3992, + [4109] = 3991, + [4110] = 3992, + [4111] = 3698, + [4112] = 3991, + [4113] = 3992, + [4114] = 3991, + [4115] = 3992, + [4116] = 3700, + [4117] = 3991, + [4118] = 3992, + [4119] = 3698, + [4120] = 3991, + [4121] = 3992, + [4122] = 3991, + [4123] = 3992, + [4124] = 3991, + [4125] = 3992, + [4126] = 3991, + [4127] = 3992, + [4128] = 3991, + [4129] = 3992, + [4130] = 3991, + [4131] = 3992, + [4132] = 3991, + [4133] = 3992, + [4134] = 3700, + [4135] = 3795, + [4136] = 3991, + [4137] = 3992, + [4138] = 3698, + [4139] = 3991, + [4140] = 3992, + [4141] = 3991, + [4142] = 3992, + [4143] = 4143, + [4144] = 3991, + [4145] = 3992, + [4146] = 3991, + [4147] = 3992, + [4148] = 3991, + [4149] = 3992, + [4150] = 3991, + [4151] = 3992, + [4152] = 3700, + [4153] = 3991, + [4154] = 3992, + [4155] = 3698, + [4156] = 3991, + [4157] = 3992, + [4158] = 3991, + [4159] = 3992, + [4160] = 3991, + [4161] = 3992, + [4162] = 3991, + [4163] = 3992, + [4164] = 3991, + [4165] = 3992, + [4166] = 3991, + [4167] = 3992, + [4168] = 3700, + [4169] = 3991, + [4170] = 3992, + [4171] = 3698, + [4172] = 3991, + [4173] = 3992, + [4174] = 3991, + [4175] = 3992, + [4176] = 3991, + [4177] = 3992, + [4178] = 3991, + [4179] = 3992, + [4180] = 3991, + [4181] = 3992, + [4182] = 3991, + [4183] = 3992, + [4184] = 3700, + [4185] = 3698, + [4186] = 3700, [4187] = 3698, [4188] = 3703, - [4189] = 3706, - [4190] = 3699, - [4191] = 3700, - [4192] = 3705, - [4193] = 3699, - [4194] = 3705, - [4195] = 3705, - [4196] = 3699, - [4197] = 3700, - [4198] = 3698, - [4199] = 3698, - [4200] = 3699, - [4201] = 3705, - [4202] = 3699, + [4189] = 4143, + [4190] = 3787, + [4191] = 3788, + [4192] = 3789, + [4193] = 3700, + [4194] = 3703, + [4195] = 3698, + [4196] = 3994, + [4197] = 3787, + [4198] = 3700, + [4199] = 3788, + [4200] = 3700, + [4201] = 3698, + [4202] = 3789, [4203] = 3700, - [4204] = 3705, - [4205] = 3699, - [4206] = 3705, - [4207] = 3699, - [4208] = 3705, - [4209] = 3705, - [4210] = 3699, - [4211] = 3699, - [4212] = 3705, + [4204] = 3698, + [4205] = 4143, + [4206] = 3700, + [4207] = 3698, + [4208] = 3700, + [4209] = 3700, + [4210] = 3698, + [4211] = 3698, + [4212] = 4143, [4213] = 3700, - [4214] = 3698, + [4214] = 3700, [4215] = 3705, - [4216] = 464, + [4216] = 465, [4217] = 4217, - [4218] = 469, - [4219] = 4217, - [4220] = 4217, + [4218] = 4218, + [4219] = 4219, + [4220] = 471, [4221] = 4221, - [4222] = 469, - [4223] = 4223, + [4222] = 471, + [4223] = 4218, [4224] = 4224, - [4225] = 4225, - [4226] = 4217, - [4227] = 4227, - [4228] = 465, - [4229] = 1011, + [4225] = 464, + [4226] = 4218, + [4227] = 4218, + [4228] = 4228, + [4229] = 471, [4230] = 4230, - [4231] = 4231, - [4232] = 468, - [4233] = 469, - [4234] = 4227, - [4235] = 4235, + [4231] = 4217, + [4232] = 4232, + [4233] = 472, + [4234] = 470, + [4235] = 4224, [4236] = 4236, - [4237] = 4237, - [4238] = 1148, - [4239] = 4225, - [4240] = 1100, + [4237] = 473, + [4238] = 4238, + [4239] = 1062, + [4240] = 472, [4241] = 4241, - [4242] = 832, - [4243] = 4243, - [4244] = 468, - [4245] = 473, - [4246] = 859, - [4247] = 1081, - [4248] = 470, - [4249] = 4223, + [4242] = 1064, + [4243] = 832, + [4244] = 873, + [4245] = 472, + [4246] = 884, + [4247] = 886, + [4248] = 472, + [4249] = 4249, [4250] = 4250, - [4251] = 470, - [4252] = 4252, - [4253] = 468, - [4254] = 4224, - [4255] = 469, - [4256] = 468, - [4257] = 885, - [4258] = 473, - [4259] = 469, - [4260] = 880, - [4261] = 494, - [4262] = 1429, - [4263] = 489, - [4264] = 491, - [4265] = 475, - [4266] = 468, - [4267] = 476, - [4268] = 468, - [4269] = 4227, - [4270] = 880, - [4271] = 1100, - [4272] = 885, - [4273] = 4273, - [4274] = 832, - [4275] = 478, - [4276] = 859, - [4277] = 1429, - [4278] = 4278, - [4279] = 4235, - [4280] = 474, - [4281] = 4224, - [4282] = 4230, - [4283] = 4283, - [4284] = 473, - [4285] = 482, - [4286] = 468, - [4287] = 1361, - [4288] = 474, - [4289] = 4224, - [4290] = 1146, - [4291] = 2704, - [4292] = 832, - [4293] = 2702, - [4294] = 1149, - [4295] = 485, - [4296] = 859, - [4297] = 473, - [4298] = 481, - [4299] = 4252, - [4300] = 486, + [4251] = 4221, + [4252] = 4219, + [4253] = 471, + [4254] = 4254, + [4255] = 471, + [4256] = 470, + [4257] = 473, + [4258] = 1053, + [4259] = 1054, + [4260] = 4260, + [4261] = 493, + [4262] = 475, + [4263] = 4224, + [4264] = 488, + [4265] = 4265, + [4266] = 4266, + [4267] = 832, + [4268] = 873, + [4269] = 491, + [4270] = 476, + [4271] = 4230, + [4272] = 493, + [4273] = 478, + [4274] = 2733, + [4275] = 884, + [4276] = 886, + [4277] = 475, + [4278] = 2734, + [4279] = 482, + [4280] = 484, + [4281] = 479, + [4282] = 480, + [4283] = 471, + [4284] = 470, + [4285] = 4238, + [4286] = 1062, + [4287] = 472, + [4288] = 491, + [4289] = 2703, + [4290] = 2667, + [4291] = 488, + [4292] = 1339, + [4293] = 4293, + [4294] = 4241, + [4295] = 1064, + [4296] = 4224, + [4297] = 476, + [4298] = 488, + [4299] = 478, + [4300] = 475, [4301] = 487, - [4302] = 479, - [4303] = 483, - [4304] = 470, - [4305] = 1382, - [4306] = 490, - [4307] = 488, - [4308] = 492, - [4309] = 470, - [4310] = 1100, - [4311] = 479, - [4312] = 4223, - [4313] = 485, - [4314] = 4225, - [4315] = 469, - [4316] = 481, - [4317] = 474, - [4318] = 486, - [4319] = 4231, - [4320] = 484, - [4321] = 4225, - [4322] = 489, - [4323] = 481, - [4324] = 494, - [4325] = 486, - [4326] = 487, - [4327] = 479, - [4328] = 478, - [4329] = 477, - [4330] = 491, - [4331] = 1081, - [4332] = 490, - [4333] = 487, - [4334] = 479, - [4335] = 475, - [4336] = 476, - [4337] = 482, - [4338] = 483, - [4339] = 4339, - [4340] = 485, - [4341] = 4341, - [4342] = 4342, - [4343] = 474, - [4344] = 2694, - [4345] = 469, - [4346] = 4346, - [4347] = 1146, - [4348] = 486, - [4349] = 4349, - [4350] = 469, - [4351] = 1382, - [4352] = 885, - [4353] = 4227, - [4354] = 478, - [4355] = 477, - [4356] = 491, - [4357] = 482, - [4358] = 4237, - [4359] = 469, - [4360] = 492, - [4361] = 469, - [4362] = 469, - [4363] = 2696, - [4364] = 4231, - [4365] = 478, - [4366] = 488, - [4367] = 492, - [4368] = 494, - [4369] = 475, - [4370] = 1081, - [4371] = 4250, - [4372] = 490, - [4373] = 488, - [4374] = 491, - [4375] = 880, - [4376] = 4224, - [4377] = 480, - [4378] = 490, - [4379] = 487, - [4380] = 470, - [4381] = 4227, - [4382] = 1149, - [4383] = 1361, - [4384] = 488, - [4385] = 492, + [4302] = 492, + [4303] = 474, + [4304] = 479, + [4305] = 480, + [4306] = 471, + [4307] = 471, + [4308] = 473, + [4309] = 4309, + [4310] = 486, + [4311] = 4217, + [4312] = 4221, + [4313] = 1314, + [4314] = 489, + [4315] = 478, + [4316] = 476, + [4317] = 1343, + [4318] = 481, + [4319] = 478, + [4320] = 1053, + [4321] = 1088, + [4322] = 475, + [4323] = 1054, + [4324] = 481, + [4325] = 477, + [4326] = 472, + [4327] = 473, + [4328] = 471, + [4329] = 492, + [4330] = 479, + [4331] = 4221, + [4332] = 482, + [4333] = 832, + [4334] = 480, + [4335] = 4250, + [4336] = 873, + [4337] = 1093, + [4338] = 481, + [4339] = 884, + [4340] = 1093, + [4341] = 476, + [4342] = 470, + [4343] = 472, + [4344] = 473, + [4345] = 491, + [4346] = 886, + [4347] = 477, + [4348] = 472, + [4349] = 479, + [4350] = 4350, + [4351] = 482, + [4352] = 483, + [4353] = 484, + [4354] = 471, + [4355] = 471, + [4356] = 471, + [4357] = 4238, + [4358] = 1062, + [4359] = 487, + [4360] = 474, + [4361] = 493, + [4362] = 493, + [4363] = 481, + [4364] = 1088, + [4365] = 477, + [4366] = 480, + [4367] = 485, + [4368] = 483, + [4369] = 4232, + [4370] = 485, + [4371] = 4241, + [4372] = 1064, + [4373] = 4373, + [4374] = 4374, + [4375] = 4217, + [4376] = 486, + [4377] = 487, + [4378] = 1339, + [4379] = 474, + [4380] = 4219, + [4381] = 4381, + [4382] = 489, + [4383] = 484, + [4384] = 483, + [4385] = 482, [4386] = 484, - [4387] = 4387, - [4388] = 484, - [4389] = 489, - [4390] = 1011, - [4391] = 481, - [4392] = 485, - [4393] = 489, - [4394] = 494, - [4395] = 480, - [4396] = 4223, - [4397] = 4223, - [4398] = 483, - [4399] = 480, - [4400] = 4225, - [4401] = 469, - [4402] = 477, - [4403] = 476, - [4404] = 482, - [4405] = 484, - [4406] = 4252, - [4407] = 475, - [4408] = 476, - [4409] = 483, - [4410] = 1148, - [4411] = 477, - [4412] = 480, - [4413] = 468, - [4414] = 473, - [4415] = 4415, - [4416] = 4349, - [4417] = 476, - [4418] = 859, - [4419] = 483, - [4420] = 4387, - [4421] = 1146, - [4422] = 470, - [4423] = 495, - [4424] = 481, - [4425] = 486, - [4426] = 487, - [4427] = 479, - [4428] = 4339, - [4429] = 483, - [4430] = 880, - [4431] = 1361, - [4432] = 490, - [4433] = 4341, - [4434] = 481, - [4435] = 486, - [4436] = 487, - [4437] = 479, - [4438] = 475, - [4439] = 4230, - [4440] = 832, - [4441] = 490, - [4442] = 475, - [4443] = 478, - [4444] = 477, - [4445] = 491, - [4446] = 489, - [4447] = 478, - [4448] = 477, - [4449] = 491, - [4450] = 885, - [4451] = 480, - [4452] = 880, - [4453] = 468, - [4454] = 476, - [4455] = 4283, - [4456] = 479, - [4457] = 489, - [4458] = 1163, - [4459] = 885, - [4460] = 1158, - [4461] = 485, - [4462] = 1146, - [4463] = 832, - [4464] = 485, - [4465] = 4278, - [4466] = 859, - [4467] = 859, - [4468] = 473, - [4469] = 488, - [4470] = 492, - [4471] = 470, - [4472] = 1081, - [4473] = 485, - [4474] = 474, - [4475] = 481, - [4476] = 4231, - [4477] = 832, + [4387] = 489, + [4388] = 485, + [4389] = 4254, + [4390] = 4217, + [4391] = 487, + [4392] = 474, + [4393] = 490, + [4394] = 490, + [4395] = 1343, + [4396] = 4219, + [4397] = 492, + [4398] = 4219, + [4399] = 477, + [4400] = 483, + [4401] = 489, + [4402] = 490, + [4403] = 485, + [4404] = 4224, + [4405] = 490, + [4406] = 486, + [4407] = 4407, + [4408] = 486, + [4409] = 491, + [4410] = 488, + [4411] = 492, + [4412] = 1314, + [4413] = 4221, + [4414] = 470, + [4415] = 493, + [4416] = 486, + [4417] = 832, + [4418] = 873, + [4419] = 491, + [4420] = 488, + [4421] = 492, + [4422] = 1339, + [4423] = 491, + [4424] = 488, + [4425] = 492, + [4426] = 884, + [4427] = 886, + [4428] = 477, + [4429] = 1343, + [4430] = 4250, + [4431] = 4309, + [4432] = 4432, + [4433] = 4373, + [4434] = 4254, + [4435] = 493, + [4436] = 4381, + [4437] = 470, + [4438] = 487, + [4439] = 474, + [4440] = 1088, + [4441] = 473, + [4442] = 472, + [4443] = 1093, + [4444] = 476, + [4445] = 478, + [4446] = 475, + [4447] = 4266, + [4448] = 479, + [4449] = 2915, + [4450] = 480, + [4451] = 2923, + [4452] = 4293, + [4453] = 2845, + [4454] = 2860, + [4455] = 481, + [4456] = 477, + [4457] = 471, + [4458] = 470, + [4459] = 473, + [4460] = 1314, + [4461] = 471, + [4462] = 470, + [4463] = 473, + [4464] = 478, + [4465] = 470, + [4466] = 473, + [4467] = 475, + [4468] = 4224, + [4469] = 4221, + [4470] = 478, + [4471] = 476, + [4472] = 482, + [4473] = 470, + [4474] = 483, + [4475] = 473, + [4476] = 484, + [4477] = 498, [4478] = 475, - [4479] = 1100, - [4480] = 4250, - [4481] = 4231, - [4482] = 474, - [4483] = 494, - [4484] = 4252, - [4485] = 494, - [4486] = 1100, - [4487] = 469, - [4488] = 4252, - [4489] = 4489, - [4490] = 476, - [4491] = 469, - [4492] = 1149, - [4493] = 482, - [4494] = 483, - [4495] = 469, - [4496] = 481, - [4497] = 486, - [4498] = 494, - [4499] = 485, - [4500] = 1149, - [4501] = 487, - [4502] = 479, - [4503] = 495, - [4504] = 1081, - [4505] = 473, - [4506] = 4231, - [4507] = 1429, - [4508] = 474, - [4509] = 2926, - [4510] = 473, - [4511] = 470, - [4512] = 489, - [4513] = 880, - [4514] = 1011, - [4515] = 486, - [4516] = 490, - [4517] = 4235, - [4518] = 1081, - [4519] = 4230, - [4520] = 468, - [4521] = 1429, - [4522] = 1100, - [4523] = 470, - [4524] = 469, - [4525] = 1148, - [4526] = 482, - [4527] = 1146, - [4528] = 4342, - [4529] = 4252, - [4530] = 4235, - [4531] = 1148, - [4532] = 482, - [4533] = 494, - [4534] = 4237, - [4535] = 1011, - [4536] = 487, - [4537] = 488, - [4538] = 1149, - [4539] = 483, - [4540] = 492, - [4541] = 2931, - [4542] = 2930, - [4543] = 478, - [4544] = 477, - [4545] = 491, - [4546] = 1382, - [4547] = 4235, - [4548] = 476, - [4549] = 4346, - [4550] = 1148, - [4551] = 4489, - [4552] = 478, - [4553] = 477, - [4554] = 1382, - [4555] = 1100, - [4556] = 488, - [4557] = 492, - [4558] = 473, - [4559] = 1011, - [4560] = 491, + [4479] = 472, + [4480] = 485, + [4481] = 486, + [4482] = 487, + [4483] = 474, + [4484] = 471, + [4485] = 471, + [4486] = 478, + [4487] = 475, + [4488] = 489, + [4489] = 884, + [4490] = 886, + [4491] = 479, + [4492] = 4350, + [4493] = 490, + [4494] = 471, + [4495] = 4250, + [4496] = 480, + [4497] = 471, + [4498] = 470, + [4499] = 473, + [4500] = 470, + [4501] = 473, + [4502] = 4432, + [4503] = 1339, + [4504] = 4254, + [4505] = 1088, + [4506] = 491, + [4507] = 488, + [4508] = 492, + [4509] = 4407, + [4510] = 476, + [4511] = 481, + [4512] = 4374, + [4513] = 498, + [4514] = 4254, + [4515] = 490, + [4516] = 477, + [4517] = 480, + [4518] = 483, + [4519] = 489, + [4520] = 493, + [4521] = 481, + [4522] = 485, + [4523] = 476, + [4524] = 4238, + [4525] = 1343, + [4526] = 1062, + [4527] = 1093, + [4528] = 490, + [4529] = 1053, + [4530] = 1054, + [4531] = 1088, + [4532] = 4241, + [4533] = 1064, + [4534] = 477, + [4535] = 486, + [4536] = 1093, + [4537] = 1081, + [4538] = 493, + [4539] = 1082, + [4540] = 4265, + [4541] = 4250, + [4542] = 491, + [4543] = 4230, + [4544] = 488, + [4545] = 492, + [4546] = 4546, + [4547] = 1339, + [4548] = 482, + [4549] = 1343, + [4550] = 470, + [4551] = 479, + [4552] = 473, + [4553] = 484, + [4554] = 480, + [4555] = 482, + [4556] = 832, + [4557] = 4432, + [4558] = 484, + [4559] = 498, + [4560] = 482, [4561] = 484, - [4562] = 4252, - [4563] = 495, - [4564] = 490, - [4565] = 4227, - [4566] = 482, - [4567] = 4489, - [4568] = 4237, - [4569] = 475, - [4570] = 4224, - [4571] = 4250, - [4572] = 484, - [4573] = 4250, - [4574] = 4237, - [4575] = 480, - [4576] = 484, - [4577] = 495, - [4578] = 469, - [4579] = 832, - [4580] = 4273, - [4581] = 4230, - [4582] = 1081, - [4583] = 470, - [4584] = 473, - [4585] = 473, - [4586] = 470, - [4587] = 480, - [4588] = 488, - [4589] = 859, - [4590] = 492, - [4591] = 473, - [4592] = 470, - [4593] = 469, - [4594] = 470, - [4595] = 484, - [4596] = 1382, - [4597] = 1429, - [4598] = 474, - [4599] = 4231, - [4600] = 480, - [4601] = 885, - [4602] = 885, - [4603] = 473, - [4604] = 880, - [4605] = 2929, - [4606] = 489, - [4607] = 4607, - [4608] = 4339, + [4562] = 873, + [4563] = 487, + [4564] = 474, + [4565] = 487, + [4566] = 474, + [4567] = 498, + [4568] = 481, + [4569] = 4232, + [4570] = 4232, + [4571] = 4230, + [4572] = 4238, + [4573] = 1062, + [4574] = 1053, + [4575] = 1054, + [4576] = 4238, + [4577] = 1062, + [4578] = 4241, + [4579] = 1064, + [4580] = 832, + [4581] = 873, + [4582] = 884, + [4583] = 886, + [4584] = 4241, + [4585] = 483, + [4586] = 1064, + [4587] = 489, + [4588] = 485, + [4589] = 490, + [4590] = 486, + [4591] = 483, + [4592] = 489, + [4593] = 4232, + [4594] = 485, + [4595] = 4230, + [4596] = 1053, + [4597] = 1054, + [4598] = 4238, + [4599] = 1062, + [4600] = 4241, + [4601] = 1064, + [4602] = 832, + [4603] = 873, + [4604] = 884, + [4605] = 886, + [4606] = 479, + [4607] = 886, + [4608] = 4608, [4609] = 4609, - [4610] = 4610, - [4611] = 473, - [4612] = 4607, - [4613] = 4610, - [4614] = 1081, - [4615] = 4615, - [4616] = 4616, - [4617] = 1301, - [4618] = 475, - [4619] = 859, - [4620] = 4620, - [4621] = 4252, - [4622] = 832, + [4610] = 4293, + [4611] = 4608, + [4612] = 479, + [4613] = 1696, + [4614] = 480, + [4615] = 4608, + [4616] = 498, + [4617] = 4617, + [4618] = 4618, + [4619] = 470, + [4620] = 473, + [4621] = 4608, + [4622] = 4622, [4623] = 4623, - [4624] = 4624, - [4625] = 4273, - [4626] = 4231, - [4627] = 1100, - [4628] = 491, - [4629] = 4624, - [4630] = 470, - [4631] = 477, - [4632] = 4632, - [4633] = 4252, - [4634] = 470, - [4635] = 473, - [4636] = 1556, - [4637] = 488, - [4638] = 492, - [4639] = 1498, - [4640] = 1081, - [4641] = 4624, + [4624] = 4608, + [4625] = 4625, + [4626] = 4250, + [4627] = 4254, + [4628] = 4608, + [4629] = 481, + [4630] = 477, + [4631] = 4631, + [4632] = 4608, + [4633] = 4608, + [4634] = 4407, + [4635] = 4350, + [4636] = 476, + [4637] = 4608, + [4638] = 4608, + [4639] = 478, + [4640] = 475, + [4641] = 4608, [4642] = 4642, - [4643] = 4609, - [4644] = 4250, - [4645] = 1146, - [4646] = 4646, - [4647] = 4642, - [4648] = 4648, - [4649] = 4624, - [4650] = 4283, - [4651] = 4651, - [4652] = 4624, - [4653] = 478, - [4654] = 4624, - [4655] = 4655, - [4656] = 476, - [4657] = 4624, - [4658] = 4624, - [4659] = 4346, - [4660] = 4624, - [4661] = 4624, - [4662] = 4349, - [4663] = 4341, - [4664] = 4664, - [4665] = 4235, - [4666] = 4632, - [4667] = 4387, - [4668] = 4624, - [4669] = 473, - [4670] = 476, - [4671] = 4624, - [4672] = 4624, - [4673] = 880, - [4674] = 470, - [4675] = 4624, - [4676] = 4624, - [4677] = 4624, - [4678] = 4624, - [4679] = 4624, - [4680] = 4624, - [4681] = 4624, - [4682] = 4624, - [4683] = 859, - [4684] = 880, - [4685] = 4273, - [4686] = 4624, - [4687] = 832, - [4688] = 1542, - [4689] = 4231, - [4690] = 4624, - [4691] = 4624, - [4692] = 1081, - [4693] = 4624, - [4694] = 4624, - [4695] = 1429, - [4696] = 4624, - [4697] = 4283, - [4698] = 885, - [4699] = 880, - [4700] = 4700, - [4701] = 484, - [4702] = 4648, - [4703] = 4624, - [4704] = 1149, - [4705] = 1100, - [4706] = 480, - [4707] = 4624, - [4708] = 475, - [4709] = 1301, - [4710] = 4278, - [4711] = 885, - [4712] = 4712, - [4713] = 4624, - [4714] = 4624, - [4715] = 4624, - [4716] = 4339, - [4717] = 4342, - [4718] = 4624, - [4719] = 4387, - [4720] = 4624, - [4721] = 4721, - [4722] = 4342, - [4723] = 4387, - [4724] = 4339, - [4725] = 4278, - [4726] = 495, - [4727] = 4727, - [4728] = 4624, - [4729] = 4624, - [4730] = 4624, - [4731] = 4624, - [4732] = 4624, - [4733] = 4252, - [4734] = 4278, - [4735] = 479, - [4736] = 1607, - [4737] = 4624, - [4738] = 4624, - [4739] = 490, - [4740] = 4624, - [4741] = 4741, - [4742] = 4742, - [4743] = 4743, - [4744] = 4624, - [4745] = 4342, - [4746] = 4283, - [4747] = 4273, - [4748] = 859, - [4749] = 4624, - [4750] = 880, - [4751] = 4624, - [4752] = 4624, - [4753] = 481, - [4754] = 885, - [4755] = 4755, - [4756] = 4624, - [4757] = 4757, - [4758] = 4346, - [4759] = 1498, - [4760] = 832, - [4761] = 4624, - [4762] = 486, - [4763] = 4624, - [4764] = 4624, - [4765] = 4624, - [4766] = 486, - [4767] = 1382, - [4768] = 4624, - [4769] = 4755, - [4770] = 487, - [4771] = 885, - [4772] = 495, - [4773] = 4624, - [4774] = 469, - [4775] = 1011, - [4776] = 470, + [4643] = 479, + [4644] = 480, + [4645] = 493, + [4646] = 4608, + [4647] = 471, + [4648] = 470, + [4649] = 473, + [4650] = 470, + [4651] = 473, + [4652] = 4608, + [4653] = 4608, + [4654] = 4608, + [4655] = 4608, + [4656] = 4350, + [4657] = 481, + [4658] = 4658, + [4659] = 477, + [4660] = 4608, + [4661] = 4238, + [4662] = 4662, + [4663] = 1062, + [4664] = 1088, + [4665] = 470, + [4666] = 473, + [4667] = 4608, + [4668] = 4668, + [4669] = 4407, + [4670] = 4407, + [4671] = 4608, + [4672] = 832, + [4673] = 498, + [4674] = 873, + [4675] = 4608, + [4676] = 4676, + [4677] = 4309, + [4678] = 4373, + [4679] = 1240, + [4680] = 4381, + [4681] = 4681, + [4682] = 4265, + [4683] = 4266, + [4684] = 4608, + [4685] = 4293, + [4686] = 4608, + [4687] = 4687, + [4688] = 4608, + [4689] = 4689, + [4690] = 4608, + [4691] = 4608, + [4692] = 4350, + [4693] = 4693, + [4694] = 4241, + [4695] = 498, + [4696] = 4608, + [4697] = 4608, + [4698] = 1064, + [4699] = 4608, + [4700] = 4608, + [4701] = 884, + [4702] = 478, + [4703] = 482, + [4704] = 475, + [4705] = 1506, + [4706] = 1339, + [4707] = 4608, + [4708] = 483, + [4709] = 484, + [4710] = 4710, + [4711] = 4625, + [4712] = 4608, + [4713] = 485, + [4714] = 1343, + [4715] = 1658, + [4716] = 4309, + [4717] = 4717, + [4718] = 486, + [4719] = 4608, + [4720] = 4642, + [4721] = 487, + [4722] = 498, + [4723] = 474, + [4724] = 4724, + [4725] = 4373, + [4726] = 489, + [4727] = 482, + [4728] = 1506, + [4729] = 4381, + [4730] = 4608, + [4731] = 490, + [4732] = 484, + [4733] = 4266, + [4734] = 4265, + [4735] = 4735, + [4736] = 4736, + [4737] = 4737, + [4738] = 4373, + [4739] = 4608, + [4740] = 4381, + [4741] = 4265, + [4742] = 491, + [4743] = 488, + [4744] = 492, + [4745] = 4608, + [4746] = 4608, + [4747] = 4608, + [4748] = 4309, + [4749] = 4710, + [4750] = 4750, + [4751] = 1571, + [4752] = 4608, + [4753] = 4608, + [4754] = 4608, + [4755] = 4668, + [4756] = 4756, + [4757] = 4608, + [4758] = 4631, + [4759] = 4750, + [4760] = 4608, + [4761] = 4608, + [4762] = 4608, + [4763] = 487, + [4764] = 4608, + [4765] = 1293, + [4766] = 474, + [4767] = 4293, + [4768] = 470, + [4769] = 4689, + [4770] = 4608, + [4771] = 1293, + [4772] = 1240, + [4773] = 1590, + [4774] = 4608, + [4775] = 4608, + [4776] = 1093, [4777] = 473, - [4778] = 4341, - [4779] = 4624, - [4780] = 479, - [4781] = 470, - [4782] = 1534, - [4783] = 473, - [4784] = 4230, + [4778] = 4608, + [4779] = 4608, + [4780] = 4608, + [4781] = 4374, + [4782] = 4608, + [4783] = 4693, + [4784] = 4608, [4785] = 4785, - [4786] = 4727, - [4787] = 4237, - [4788] = 495, - [4789] = 1607, - [4790] = 485, - [4791] = 4624, - [4792] = 4792, - [4793] = 4341, - [4794] = 4616, - [4795] = 4231, - [4796] = 474, - [4797] = 4349, - [4798] = 4624, - [4799] = 4624, - [4800] = 4624, - [4801] = 474, - [4802] = 1148, - [4803] = 4803, - [4804] = 1542, - [4805] = 483, - [4806] = 832, - [4807] = 488, - [4808] = 489, - [4809] = 4624, - [4810] = 482, - [4811] = 483, - [4812] = 492, - [4813] = 4624, - [4814] = 4624, - [4815] = 4624, - [4816] = 4252, - [4817] = 4624, - [4818] = 4623, - [4819] = 4624, - [4820] = 1534, - [4821] = 4655, - [4822] = 859, - [4823] = 4624, - [4824] = 4824, - [4825] = 490, - [4826] = 4624, - [4827] = 1281, - [4828] = 1100, - [4829] = 4346, - [4830] = 4624, - [4831] = 482, - [4832] = 4624, - [4833] = 485, - [4834] = 1100, - [4835] = 4231, - [4836] = 4624, - [4837] = 480, - [4838] = 1081, - [4839] = 4624, - [4840] = 1556, - [4841] = 4624, - [4842] = 487, - [4843] = 4624, - [4844] = 4615, - [4845] = 4624, - [4846] = 495, - [4847] = 481, - [4848] = 4624, - [4849] = 491, - [4850] = 4624, - [4851] = 4624, - [4852] = 477, - [4853] = 478, - [4854] = 4624, - [4855] = 494, - [4856] = 4712, - [4857] = 4624, - [4858] = 4785, - [4859] = 489, - [4860] = 4349, - [4861] = 1281, - [4862] = 484, - [4863] = 4624, - [4864] = 4712, - [4865] = 4648, + [4786] = 4724, + [4787] = 4608, + [4788] = 1658, + [4789] = 4374, + [4790] = 483, + [4791] = 4608, + [4792] = 489, + [4793] = 485, + [4794] = 490, + [4795] = 4608, + [4796] = 1571, + [4797] = 4238, + [4798] = 1062, + [4799] = 832, + [4800] = 873, + [4801] = 4241, + [4802] = 1064, + [4803] = 884, + [4804] = 886, + [4805] = 4662, + [4806] = 4608, + [4807] = 4266, + [4808] = 486, + [4809] = 4608, + [4810] = 4608, + [4811] = 4608, + [4812] = 4374, + [4813] = 4813, + [4814] = 4608, + [4815] = 1590, + [4816] = 4232, + [4817] = 4608, + [4818] = 1696, + [4819] = 4230, + [4820] = 4608, + [4821] = 4608, + [4822] = 4822, + [4823] = 491, + [4824] = 488, + [4825] = 4608, + [4826] = 4622, + [4827] = 492, + [4828] = 4608, + [4829] = 1053, + [4830] = 1054, + [4831] = 4238, + [4832] = 1062, + [4833] = 4241, + [4834] = 1064, + [4835] = 832, + [4836] = 873, + [4837] = 884, + [4838] = 886, + [4839] = 4608, + [4840] = 4756, + [4841] = 4822, + [4842] = 4618, + [4843] = 4608, + [4844] = 4608, + [4845] = 4608, + [4846] = 4608, + [4847] = 4238, + [4848] = 1062, + [4849] = 832, + [4850] = 873, + [4851] = 4241, + [4852] = 1064, + [4853] = 884, + [4854] = 886, + [4855] = 4608, + [4856] = 4608, + [4857] = 4608, + [4858] = 4608, + [4859] = 4608, + [4860] = 4608, + [4861] = 4608, + [4862] = 4608, + [4863] = 476, + [4864] = 4864, + [4865] = 4865, [4866] = 4866, - [4867] = 4867, - [4868] = 4868, - [4869] = 1301, - [4870] = 1542, - [4871] = 4871, - [4872] = 4872, + [4867] = 1293, + [4868] = 1571, + [4869] = 4693, + [4870] = 4870, + [4871] = 1590, + [4872] = 1696, [4873] = 4873, - [4874] = 4874, - [4875] = 4712, - [4876] = 4876, - [4877] = 4877, + [4874] = 1658, + [4875] = 4875, + [4876] = 1240, + [4877] = 4756, [4878] = 4878, - [4879] = 1534, - [4880] = 4880, + [4879] = 1293, + [4880] = 4866, [4881] = 4881, [4882] = 4882, [4883] = 4883, [4884] = 4884, - [4885] = 1301, + [4885] = 4885, [4886] = 4886, - [4887] = 4887, - [4888] = 1301, - [4889] = 4877, + [4887] = 4622, + [4888] = 1240, + [4889] = 4889, [4890] = 4890, [4891] = 4891, [4892] = 4892, - [4893] = 1281, - [4894] = 4873, + [4893] = 4893, + [4894] = 4756, [4895] = 4895, - [4896] = 880, - [4897] = 885, + [4896] = 1240, + [4897] = 4897, [4898] = 4898, - [4899] = 4871, - [4900] = 4900, - [4901] = 1081, - [4902] = 4655, - [4903] = 4884, - [4904] = 4824, - [4905] = 4615, - [4906] = 4231, - [4907] = 1607, - [4908] = 4908, - [4909] = 4883, - [4910] = 4620, - [4911] = 4911, - [4912] = 4866, - [4913] = 495, - [4914] = 1607, + [4899] = 1506, + [4900] = 498, + [4901] = 4822, + [4902] = 4618, + [4903] = 4875, + [4904] = 4904, + [4905] = 4878, + [4906] = 4885, + [4907] = 4756, + [4908] = 4822, + [4909] = 4618, + [4910] = 4889, + [4911] = 4904, + [4912] = 4912, + [4913] = 4892, + [4914] = 4895, [4915] = 4915, [4916] = 4916, - [4917] = 4755, - [4918] = 4918, - [4919] = 859, - [4920] = 4920, - [4921] = 1100, - [4922] = 4922, - [4923] = 4900, - [4924] = 4924, - [4925] = 1498, - [4926] = 4920, + [4917] = 4917, + [4918] = 4915, + [4919] = 4622, + [4920] = 1381, + [4921] = 4724, + [4922] = 4693, + [4923] = 470, + [4924] = 473, + [4925] = 4916, + [4926] = 4750, [4927] = 4927, [4928] = 4928, - [4929] = 4929, - [4930] = 1281, + [4929] = 1658, + [4930] = 4930, [4931] = 4931, - [4932] = 4915, - [4933] = 4892, - [4934] = 4924, - [4935] = 4929, + [4932] = 4932, + [4933] = 4890, + [4934] = 4864, + [4935] = 4822, [4936] = 4936, - [4937] = 4937, + [4937] = 4618, [4938] = 4938, - [4939] = 4792, + [4939] = 1696, [4940] = 4940, - [4941] = 4252, - [4942] = 4616, + [4941] = 4931, + [4942] = 4870, [4943] = 4943, - [4944] = 4944, + [4944] = 4928, [4945] = 4945, - [4946] = 4632, + [4946] = 4946, [4947] = 4947, - [4948] = 4936, + [4948] = 4948, [4949] = 4949, - [4950] = 4610, + [4950] = 4631, [4951] = 4951, - [4952] = 4952, - [4953] = 4615, - [4954] = 4607, - [4955] = 4607, - [4956] = 4886, - [4957] = 4887, - [4958] = 4609, - [4959] = 4609, - [4960] = 4960, - [4961] = 4922, - [4962] = 4727, - [4963] = 4895, - [4964] = 1534, - [4965] = 4642, - [4966] = 4898, - [4967] = 4891, - [4968] = 4890, - [4969] = 4960, - [4970] = 4881, - [4971] = 4664, - [4972] = 4918, - [4973] = 4872, - [4974] = 4924, - [4975] = 1474, - [4976] = 4615, - [4977] = 4952, - [4978] = 4642, - [4979] = 4908, - [4980] = 4876, - [4981] = 4874, - [4982] = 4785, - [4983] = 4867, - [4984] = 4648, - [4985] = 4868, - [4986] = 4283, - [4987] = 4878, - [4988] = 4880, - [4989] = 4882, - [4990] = 1556, - [4991] = 4911, - [4992] = 832, - [4993] = 4951, - [4994] = 4727, - [4995] = 4387, - [4996] = 4342, - [4997] = 4339, - [4998] = 4278, - [4999] = 4918, - [5000] = 4273, - [5001] = 4346, - [5002] = 4944, - [5003] = 4931, - [5004] = 1607, - [5005] = 4916, - [5006] = 4938, - [5007] = 4951, - [5008] = 4712, - [5009] = 4927, - [5010] = 4785, - [5011] = 4947, - [5012] = 4727, - [5013] = 4940, - [5014] = 4943, - [5015] = 4891, - [5016] = 4785, - [5017] = 4949, - [5018] = 4607, - [5019] = 4609, - [5020] = 4642, - [5021] = 494, - [5022] = 4937, - [5023] = 1534, - [5024] = 4623, - [5025] = 4648, - [5026] = 4945, - [5027] = 5027, - [5028] = 5028, - [5029] = 1281, - [5030] = 5028, - [5031] = 470, - [5032] = 5027, - [5033] = 473, - [5034] = 469, - [5035] = 4882, - [5036] = 4824, - [5037] = 4884, - [5038] = 468, - [5039] = 4883, - [5040] = 4792, - [5041] = 1163, - [5042] = 4615, - [5043] = 4877, - [5044] = 495, - [5045] = 1158, - [5046] = 4945, - [5047] = 4880, - [5048] = 5048, - [5049] = 4712, - [5050] = 4727, - [5051] = 4792, - [5052] = 4947, - [5053] = 4642, - [5054] = 4620, - [5055] = 473, - [5056] = 4224, - [5057] = 470, - [5058] = 4227, - [5059] = 473, - [5060] = 4878, - [5061] = 4916, - [5062] = 5062, - [5063] = 4927, - [5064] = 469, - [5065] = 470, - [5066] = 4915, - [5067] = 4867, - [5068] = 4908, - [5069] = 4866, - [5070] = 4620, - [5071] = 4943, - [5072] = 4872, - [5073] = 4873, - [5074] = 4785, - [5075] = 4871, - [5076] = 4876, - [5077] = 4881, - [5078] = 4874, - [5079] = 4620, - [5080] = 4890, - [5081] = 4664, - [5082] = 4664, - [5083] = 4922, - [5084] = 4868, - [5085] = 4931, - [5086] = 1301, - [5087] = 4900, - [5088] = 4938, - [5089] = 4940, - [5090] = 4895, - [5091] = 4607, - [5092] = 4609, - [5093] = 4960, - [5094] = 4648, - [5095] = 4824, - [5096] = 1534, - [5097] = 469, - [5098] = 4920, - [5099] = 4929, - [5100] = 4936, - [5101] = 4892, - [5102] = 4824, - [5103] = 4937, - [5104] = 4898, - [5105] = 4944, - [5106] = 1281, - [5107] = 5027, - [5108] = 4792, - [5109] = 469, - [5110] = 469, - [5111] = 4952, - [5112] = 4887, - [5113] = 4949, - [5114] = 1607, - [5115] = 4664, - [5116] = 4911, - [5117] = 5117, - [5118] = 5118, - [5119] = 5028, - [5120] = 4886, - [5121] = 5121, + [4952] = 4631, + [4953] = 4662, + [4954] = 4954, + [4955] = 4955, + [4956] = 4293, + [4957] = 4886, + [4958] = 4631, + [4959] = 4891, + [4960] = 4873, + [4961] = 4961, + [4962] = 4962, + [4963] = 4724, + [4964] = 4717, + [4965] = 4940, + [4966] = 4932, + [4967] = 4938, + [4968] = 4884, + [4969] = 4865, + [4970] = 4955, + [4971] = 4945, + [4972] = 4972, + [4973] = 4973, + [4974] = 4883, + [4975] = 4893, + [4976] = 4936, + [4977] = 4689, + [4978] = 4945, + [4979] = 4625, + [4980] = 4668, + [4981] = 4943, + [4982] = 4982, + [4983] = 4972, + [4984] = 4882, + [4985] = 4930, + [4986] = 4947, + [4987] = 1658, + [4988] = 4948, + [4989] = 4891, + [4990] = 493, + [4991] = 1696, + [4992] = 4881, + [4993] = 4940, + [4994] = 4881, + [4995] = 4681, + [4996] = 4996, + [4997] = 1293, + [4998] = 4949, + [4999] = 4642, + [5000] = 4689, + [5001] = 4917, + [5002] = 4973, + [5003] = 4982, + [5004] = 4238, + [5005] = 1062, + [5006] = 832, + [5007] = 873, + [5008] = 4241, + [5009] = 1064, + [5010] = 884, + [5011] = 886, + [5012] = 4693, + [5013] = 4946, + [5014] = 4951, + [5015] = 4724, + [5016] = 4407, + [5017] = 4912, + [5018] = 4954, + [5019] = 4309, + [5020] = 4961, + [5021] = 4373, + [5022] = 4689, + [5023] = 4676, + [5024] = 4381, + [5025] = 4962, + [5026] = 4710, + [5027] = 4265, + [5028] = 4897, + [5029] = 4898, + [5030] = 4622, + [5031] = 4735, + [5032] = 4266, + [5033] = 4996, + [5034] = 4864, + [5035] = 4982, + [5036] = 4724, + [5037] = 4717, + [5038] = 4917, + [5039] = 5039, + [5040] = 4866, + [5041] = 470, + [5042] = 4936, + [5043] = 4875, + [5044] = 4932, + [5045] = 4878, + [5046] = 4885, + [5047] = 4889, + [5048] = 4892, + [5049] = 4938, + [5050] = 473, + [5051] = 4895, + [5052] = 4915, + [5053] = 4916, + [5054] = 4931, + [5055] = 4886, + [5056] = 4873, + [5057] = 4961, + [5058] = 4962, + [5059] = 4865, + [5060] = 4972, + [5061] = 4973, + [5062] = 4946, + [5063] = 4951, + [5064] = 4943, + [5065] = 4928, + [5066] = 4622, + [5067] = 4955, + [5068] = 4676, + [5069] = 4676, + [5070] = 4996, + [5071] = 4717, + [5072] = 4897, + [5073] = 4898, + [5074] = 4822, + [5075] = 4681, + [5076] = 498, + [5077] = 4681, + [5078] = 4735, + [5079] = 4735, + [5080] = 5080, + [5081] = 4893, + [5082] = 470, + [5083] = 473, + [5084] = 1658, + [5085] = 471, + [5086] = 4735, + [5087] = 472, + [5088] = 4882, + [5089] = 4883, + [5090] = 4884, + [5091] = 471, + [5092] = 471, + [5093] = 5093, + [5094] = 4676, + [5095] = 1696, + [5096] = 4681, + [5097] = 4870, + [5098] = 4224, + [5099] = 4947, + [5100] = 4221, + [5101] = 4631, + [5102] = 4689, + [5103] = 4954, + [5104] = 4948, + [5105] = 4693, + [5106] = 4717, + [5107] = 1293, + [5108] = 1081, + [5109] = 5109, + [5110] = 4618, + [5111] = 4949, + [5112] = 4904, + [5113] = 4912, + [5114] = 4756, + [5115] = 471, + [5116] = 4890, + [5117] = 471, + [5118] = 4930, + [5119] = 1082, + [5120] = 1240, + [5121] = 4238, [5122] = 5122, - [5123] = 474, - [5124] = 859, + [5123] = 481, + [5124] = 1062, [5125] = 5125, - [5126] = 5126, - [5127] = 885, - [5128] = 880, - [5129] = 885, - [5130] = 832, - [5131] = 859, - [5132] = 5132, - [5133] = 1081, - [5134] = 4231, - [5135] = 1100, - [5136] = 4252, - [5137] = 1148, - [5138] = 1011, - [5139] = 5139, - [5140] = 880, + [5126] = 475, + [5127] = 5127, + [5128] = 5128, + [5129] = 5129, + [5130] = 472, + [5131] = 5131, + [5132] = 4681, + [5133] = 4221, + [5134] = 4250, + [5135] = 4735, + [5136] = 5136, + [5137] = 5137, + [5138] = 5138, + [5139] = 4221, + [5140] = 5140, [5141] = 5141, - [5142] = 5142, + [5142] = 471, [5143] = 5143, [5144] = 5144, - [5145] = 5145, - [5146] = 5146, - [5147] = 4230, - [5148] = 4237, - [5149] = 480, - [5150] = 481, - [5151] = 484, - [5152] = 487, - [5153] = 490, - [5154] = 492, - [5155] = 485, - [5156] = 486, - [5157] = 479, - [5158] = 488, - [5159] = 478, - [5160] = 477, - [5161] = 491, - [5162] = 5162, - [5163] = 5122, - [5164] = 5164, - [5165] = 476, - [5166] = 5166, - [5167] = 4250, - [5168] = 5142, + [5145] = 477, + [5146] = 886, + [5147] = 4224, + [5148] = 5148, + [5149] = 471, + [5150] = 5150, + [5151] = 470, + [5152] = 5152, + [5153] = 473, + [5154] = 5154, + [5155] = 5155, + [5156] = 470, + [5157] = 473, + [5158] = 476, + [5159] = 5159, + [5160] = 5160, + [5161] = 5125, + [5162] = 5154, + [5163] = 5159, + [5164] = 480, + [5165] = 873, + [5166] = 5129, + [5167] = 5160, + [5168] = 5140, [5169] = 5169, - [5170] = 4252, - [5171] = 475, - [5172] = 5172, - [5173] = 832, - [5174] = 469, - [5175] = 470, - [5176] = 4250, - [5177] = 5177, - [5178] = 1081, - [5179] = 4231, - [5180] = 473, - [5181] = 4235, - [5182] = 1100, - [5183] = 5183, - [5184] = 4224, - [5185] = 5185, + [5170] = 884, + [5171] = 4254, + [5172] = 482, + [5173] = 5141, + [5174] = 5174, + [5175] = 5175, + [5176] = 5176, + [5177] = 483, + [5178] = 484, + [5179] = 5179, + [5180] = 5140, + [5181] = 5169, + [5182] = 4241, + [5183] = 5159, + [5184] = 5184, + [5185] = 4254, [5186] = 5186, - [5187] = 5187, - [5188] = 468, - [5189] = 5122, - [5190] = 5190, - [5191] = 5191, - [5192] = 5192, - [5193] = 5193, + [5187] = 832, + [5188] = 5141, + [5189] = 5174, + [5190] = 491, + [5191] = 5175, + [5192] = 5176, + [5193] = 479, [5194] = 5194, - [5195] = 4227, - [5196] = 5196, - [5197] = 5197, + [5195] = 5160, + [5196] = 485, + [5197] = 488, [5198] = 5198, - [5199] = 482, - [5200] = 483, - [5201] = 5201, - [5202] = 5202, + [5199] = 5199, + [5200] = 5200, + [5201] = 471, + [5202] = 492, [5203] = 5203, - [5204] = 489, - [5205] = 4235, - [5206] = 469, - [5207] = 470, - [5208] = 473, - [5209] = 470, - [5210] = 473, - [5211] = 5211, + [5204] = 478, + [5205] = 5179, + [5206] = 5174, + [5207] = 486, + [5208] = 5154, + [5209] = 490, + [5210] = 5210, + [5211] = 471, [5212] = 5212, - [5213] = 4227, - [5214] = 5186, - [5215] = 5215, - [5216] = 4664, - [5217] = 5185, - [5218] = 5187, - [5219] = 5190, - [5220] = 5191, - [5221] = 469, - [5222] = 5192, - [5223] = 5194, - [5224] = 4824, - [5225] = 5196, - [5226] = 5142, + [5213] = 4238, + [5214] = 487, + [5215] = 474, + [5216] = 5216, + [5217] = 5210, + [5218] = 5125, + [5219] = 5219, + [5220] = 5210, + [5221] = 5175, + [5222] = 5222, + [5223] = 5143, + [5224] = 489, + [5225] = 5225, + [5226] = 470, [5227] = 5227, - [5228] = 5197, - [5229] = 5198, - [5230] = 5202, - [5231] = 5203, - [5232] = 5232, - [5233] = 5187, - [5234] = 5203, - [5235] = 5202, - [5236] = 5198, - [5237] = 5197, - [5238] = 5196, - [5239] = 5194, - [5240] = 469, - [5241] = 5192, - [5242] = 5191, - [5243] = 5190, - [5244] = 5186, - [5245] = 5245, - [5246] = 5185, + [5228] = 5228, + [5229] = 4250, + [5230] = 4232, + [5231] = 5231, + [5232] = 4230, + [5233] = 1053, + [5234] = 1054, + [5235] = 5143, + [5236] = 1062, + [5237] = 4241, + [5238] = 1064, + [5239] = 832, + [5240] = 873, + [5241] = 884, + [5242] = 886, + [5243] = 5243, + [5244] = 5176, + [5245] = 5169, + [5246] = 473, [5247] = 5247, - [5248] = 5248, - [5249] = 5249, - [5250] = 5250, + [5248] = 5129, + [5249] = 1064, + [5250] = 5179, [5251] = 5251, [5252] = 5252, - [5253] = 1148, + [5253] = 5253, [5254] = 5254, - [5255] = 486, - [5256] = 1011, - [5257] = 5257, - [5258] = 1149, - [5259] = 5259, + [5255] = 4250, + [5256] = 4241, + [5257] = 884, + [5258] = 886, + [5259] = 4238, [5260] = 5260, - [5261] = 5261, - [5262] = 478, - [5263] = 491, - [5264] = 5264, + [5261] = 1062, + [5262] = 1053, + [5263] = 1064, + [5264] = 1054, [5265] = 5265, [5266] = 5266, - [5267] = 469, - [5268] = 5268, - [5269] = 488, - [5270] = 470, - [5271] = 473, + [5267] = 5267, + [5268] = 1339, + [5269] = 4241, + [5270] = 1064, + [5271] = 5271, [5272] = 5272, [5273] = 5273, - [5274] = 494, + [5274] = 5274, [5275] = 5275, - [5276] = 468, + [5276] = 5276, [5277] = 5277, - [5278] = 880, - [5279] = 492, + [5278] = 5278, + [5279] = 4265, [5280] = 5280, [5281] = 5281, [5282] = 5282, [5283] = 5283, - [5284] = 477, - [5285] = 5285, - [5286] = 880, - [5287] = 885, - [5288] = 490, - [5289] = 5266, - [5290] = 885, + [5284] = 5265, + [5285] = 5265, + [5286] = 4230, + [5287] = 5287, + [5288] = 5265, + [5289] = 5289, + [5290] = 5290, [5291] = 5291, - [5292] = 1146, - [5293] = 1081, - [5294] = 487, - [5295] = 5295, + [5292] = 5292, + [5293] = 5293, + [5294] = 5294, + [5295] = 4254, [5296] = 5296, - [5297] = 470, - [5298] = 481, - [5299] = 5299, - [5300] = 832, - [5301] = 885, - [5302] = 5302, - [5303] = 880, + [5297] = 4407, + [5298] = 4309, + [5299] = 4373, + [5300] = 4381, + [5301] = 4265, + [5302] = 4266, + [5303] = 4293, [5304] = 5304, - [5305] = 4231, - [5306] = 832, + [5305] = 5265, + [5306] = 493, [5307] = 5307, [5308] = 5308, - [5309] = 5309, + [5309] = 1343, [5310] = 5310, [5311] = 5311, - [5312] = 859, + [5312] = 5312, [5313] = 5313, [5314] = 5314, - [5315] = 5266, + [5315] = 5315, [5316] = 5316, - [5317] = 5266, - [5318] = 4252, + [5317] = 5317, + [5318] = 5318, [5319] = 5319, [5320] = 5320, - [5321] = 5321, + [5321] = 5265, [5322] = 470, - [5323] = 859, - [5324] = 5324, - [5325] = 5325, + [5323] = 473, + [5324] = 1381, + [5325] = 5265, [5326] = 5326, - [5327] = 480, - [5328] = 473, - [5329] = 5329, + [5327] = 5327, + [5328] = 4238, + [5329] = 1062, [5330] = 5330, - [5331] = 1081, + [5331] = 5331, [5332] = 5332, [5333] = 5333, [5334] = 5334, - [5335] = 5335, + [5335] = 873, [5336] = 5336, - [5337] = 479, + [5337] = 473, [5338] = 5338, - [5339] = 5339, - [5340] = 5340, + [5339] = 472, + [5340] = 1088, [5341] = 5341, [5342] = 5342, - [5343] = 5343, - [5344] = 5344, + [5343] = 5265, + [5344] = 476, [5345] = 5345, - [5346] = 5346, - [5347] = 832, - [5348] = 859, - [5349] = 468, - [5350] = 4283, - [5351] = 5351, - [5352] = 1081, - [5353] = 5353, - [5354] = 5354, - [5355] = 5355, - [5356] = 5266, - [5357] = 1382, - [5358] = 5266, - [5359] = 4231, - [5360] = 4237, - [5361] = 5266, - [5362] = 4250, - [5363] = 4235, - [5364] = 489, - [5365] = 1474, - [5366] = 4283, - [5367] = 4387, - [5368] = 4342, - [5369] = 4339, - [5370] = 4278, - [5371] = 4252, - [5372] = 4273, - [5373] = 4252, - [5374] = 468, - [5375] = 4346, - [5376] = 1429, - [5377] = 4231, - [5378] = 1100, - [5379] = 1100, - [5380] = 483, - [5381] = 5381, - [5382] = 4278, + [5346] = 478, + [5347] = 475, + [5348] = 479, + [5349] = 480, + [5350] = 5350, + [5351] = 481, + [5352] = 477, + [5353] = 470, + [5354] = 473, + [5355] = 493, + [5356] = 472, + [5357] = 832, + [5358] = 873, + [5359] = 1093, + [5360] = 482, + [5361] = 483, + [5362] = 484, + [5363] = 485, + [5364] = 486, + [5365] = 487, + [5366] = 474, + [5367] = 489, + [5368] = 490, + [5369] = 4407, + [5370] = 491, + [5371] = 488, + [5372] = 492, + [5373] = 5373, + [5374] = 5374, + [5375] = 884, + [5376] = 886, + [5377] = 4232, + [5378] = 5378, + [5379] = 5379, + [5380] = 471, + [5381] = 470, + [5382] = 473, [5383] = 5383, - [5384] = 5384, - [5385] = 4230, + [5384] = 472, + [5385] = 5385, [5386] = 5386, - [5387] = 482, - [5388] = 494, - [5389] = 475, - [5390] = 473, - [5391] = 5391, - [5392] = 473, - [5393] = 470, - [5394] = 5266, - [5395] = 5395, - [5396] = 5396, - [5397] = 5397, - [5398] = 1100, - [5399] = 484, - [5400] = 474, - [5401] = 5401, - [5402] = 485, - [5403] = 476, - [5404] = 485, - [5405] = 4346, - [5406] = 5406, - [5407] = 473, - [5408] = 1361, - [5409] = 489, - [5410] = 495, - [5411] = 468, - [5412] = 832, - [5413] = 483, - [5414] = 474, - [5415] = 880, - [5416] = 495, - [5417] = 4231, - [5418] = 1081, - [5419] = 4339, - [5420] = 859, - [5421] = 4342, - [5422] = 480, - [5423] = 4387, - [5424] = 1429, - [5425] = 5425, - [5426] = 494, - [5427] = 1100, - [5428] = 482, + [5387] = 5387, + [5388] = 5388, + [5389] = 5389, + [5390] = 5390, + [5391] = 4238, + [5392] = 1062, + [5393] = 832, + [5394] = 873, + [5395] = 4241, + [5396] = 1064, + [5397] = 884, + [5398] = 886, + [5399] = 5399, + [5400] = 5400, + [5401] = 832, + [5402] = 5402, + [5403] = 470, + [5404] = 488, + [5405] = 491, + [5406] = 4373, + [5407] = 1093, + [5408] = 1339, + [5409] = 4266, + [5410] = 4381, + [5411] = 5411, + [5412] = 487, + [5413] = 474, + [5414] = 488, + [5415] = 492, + [5416] = 481, + [5417] = 493, + [5418] = 480, + [5419] = 5419, + [5420] = 491, + [5421] = 832, + [5422] = 492, + [5423] = 873, + [5424] = 884, + [5425] = 886, + [5426] = 486, + [5427] = 483, + [5428] = 4238, [5429] = 5429, - [5430] = 487, - [5431] = 475, - [5432] = 491, - [5433] = 477, - [5434] = 478, - [5435] = 484, - [5436] = 4283, - [5437] = 1429, - [5438] = 483, - [5439] = 490, - [5440] = 482, - [5441] = 474, - [5442] = 492, - [5443] = 488, - [5444] = 489, - [5445] = 479, - [5446] = 476, - [5447] = 1146, - [5448] = 485, - [5449] = 486, - [5450] = 476, - [5451] = 475, - [5452] = 481, - [5453] = 475, - [5454] = 491, - [5455] = 477, - [5456] = 5456, - [5457] = 476, - [5458] = 5458, - [5459] = 478, - [5460] = 5460, - [5461] = 482, - [5462] = 1149, - [5463] = 480, - [5464] = 490, - [5465] = 4278, - [5466] = 1146, - [5467] = 474, - [5468] = 481, - [5469] = 494, - [5470] = 484, - [5471] = 470, - [5472] = 481, - [5473] = 479, - [5474] = 885, - [5475] = 4273, - [5476] = 4252, - [5477] = 488, - [5478] = 486, - [5479] = 494, - [5480] = 483, - [5481] = 485, - [5482] = 487, - [5483] = 492, - [5484] = 478, - [5485] = 488, - [5486] = 492, - [5487] = 489, - [5488] = 486, - [5489] = 484, - [5490] = 487, - [5491] = 479, - [5492] = 480, - [5493] = 491, - [5494] = 1382, - [5495] = 477, - [5496] = 1382, - [5497] = 490, - [5498] = 1149, - [5499] = 4824, - [5500] = 1146, - [5501] = 492, - [5502] = 488, - [5503] = 465, - [5504] = 5504, - [5505] = 5505, - [5506] = 495, - [5507] = 481, - [5508] = 474, - [5509] = 480, - [5510] = 487, - [5511] = 479, - [5512] = 495, - [5513] = 490, - [5514] = 464, - [5515] = 5504, - [5516] = 5505, - [5517] = 5504, - [5518] = 469, - [5519] = 1429, - [5520] = 494, - [5521] = 484, - [5522] = 478, - [5523] = 486, - [5524] = 477, - [5525] = 485, - [5526] = 1301, - [5527] = 491, - [5528] = 4664, - [5529] = 495, - [5530] = 1534, - [5531] = 5505, - [5532] = 1382, - [5533] = 5533, - [5534] = 476, - [5535] = 5535, - [5536] = 475, - [5537] = 489, - [5538] = 5504, - [5539] = 1607, - [5540] = 5505, - [5541] = 482, - [5542] = 483, - [5543] = 1281, - [5544] = 1149, - [5545] = 5505, - [5546] = 5504, - [5547] = 4615, - [5548] = 859, - [5549] = 1301, - [5550] = 5550, - [5551] = 5550, - [5552] = 1542, - [5553] = 1081, - [5554] = 5550, - [5555] = 1281, + [5430] = 476, + [5431] = 1062, + [5432] = 478, + [5433] = 475, + [5434] = 489, + [5435] = 1339, + [5436] = 479, + [5437] = 480, + [5438] = 481, + [5439] = 5439, + [5440] = 477, + [5441] = 485, + [5442] = 490, + [5443] = 493, + [5444] = 486, + [5445] = 483, + [5446] = 4309, + [5447] = 476, + [5448] = 498, + [5449] = 478, + [5450] = 475, + [5451] = 479, + [5452] = 484, + [5453] = 1064, + [5454] = 480, + [5455] = 482, + [5456] = 483, + [5457] = 489, + [5458] = 484, + [5459] = 1088, + [5460] = 485, + [5461] = 486, + [5462] = 487, + [5463] = 474, + [5464] = 489, + [5465] = 493, + [5466] = 481, + [5467] = 490, + [5468] = 477, + [5469] = 5469, + [5470] = 491, + [5471] = 488, + [5472] = 492, + [5473] = 4407, + [5474] = 1314, + [5475] = 470, + [5476] = 473, + [5477] = 472, + [5478] = 5478, + [5479] = 477, + [5480] = 485, + [5481] = 1093, + [5482] = 1343, + [5483] = 482, + [5484] = 484, + [5485] = 490, + [5486] = 478, + [5487] = 475, + [5488] = 4293, + [5489] = 482, + [5490] = 479, + [5491] = 487, + [5492] = 474, + [5493] = 476, + [5494] = 4265, + [5495] = 498, + [5496] = 1088, + [5497] = 1343, + [5498] = 4241, + [5499] = 484, + [5500] = 5500, + [5501] = 483, + [5502] = 5502, + [5503] = 5502, + [5504] = 482, + [5505] = 1339, + [5506] = 1293, + [5507] = 5502, + [5508] = 5508, + [5509] = 5508, + [5510] = 498, + [5511] = 491, + [5512] = 488, + [5513] = 492, + [5514] = 485, + [5515] = 498, + [5516] = 464, + [5517] = 465, + [5518] = 1343, + [5519] = 493, + [5520] = 1240, + [5521] = 498, + [5522] = 490, + [5523] = 471, + [5524] = 5508, + [5525] = 478, + [5526] = 475, + [5527] = 5502, + [5528] = 5508, + [5529] = 476, + [5530] = 486, + [5531] = 479, + [5532] = 480, + [5533] = 1088, + [5534] = 4681, + [5535] = 4735, + [5536] = 481, + [5537] = 1658, + [5538] = 487, + [5539] = 474, + [5540] = 477, + [5541] = 1696, + [5542] = 1093, + [5543] = 489, + [5544] = 5508, + [5545] = 5545, + [5546] = 5502, + [5547] = 4917, + [5548] = 4961, + [5549] = 4962, + [5550] = 4865, + [5551] = 832, + [5552] = 873, + [5553] = 4972, + [5554] = 1571, + [5555] = 4973, [5556] = 4866, - [5557] = 5550, - [5558] = 5550, - [5559] = 5550, - [5560] = 4632, - [5561] = 4616, - [5562] = 4252, - [5563] = 1607, - [5564] = 4623, - [5565] = 4900, - [5566] = 1498, - [5567] = 4610, - [5568] = 4892, - [5569] = 5550, - [5570] = 4755, - [5571] = 4882, - [5572] = 4880, - [5573] = 4878, - [5574] = 4915, - [5575] = 1534, - [5576] = 4908, - [5577] = 470, - [5578] = 4872, - [5579] = 4881, - [5580] = 473, - [5581] = 4890, - [5582] = 4655, - [5583] = 468, - [5584] = 4231, - [5585] = 4922, - [5586] = 4936, - [5587] = 1281, - [5588] = 4607, - [5589] = 4920, - [5590] = 4929, - [5591] = 4609, - [5592] = 4642, - [5593] = 5550, - [5594] = 4648, - [5595] = 4937, - [5596] = 4944, - [5597] = 4947, - [5598] = 4886, - [5599] = 4887, - [5600] = 4867, - [5601] = 1607, - [5602] = 4824, - [5603] = 4727, - [5604] = 1534, - [5605] = 880, - [5606] = 885, - [5607] = 495, - [5608] = 1100, - [5609] = 4235, - [5610] = 1556, - [5611] = 4664, - [5612] = 1301, - [5613] = 4785, - [5614] = 5550, - [5615] = 4712, - [5616] = 832, - [5617] = 4920, - [5618] = 481, - [5619] = 1534, - [5620] = 4727, - [5621] = 4785, - [5622] = 475, - [5623] = 4943, - [5624] = 4945, - [5625] = 480, - [5626] = 4887, - [5627] = 4886, - [5628] = 484, - [5629] = 1281, - [5630] = 4947, - [5631] = 4944, - [5632] = 1382, - [5633] = 4937, - [5634] = 4911, - [5635] = 4936, - [5636] = 4929, - [5637] = 4648, - [5638] = 4900, - [5639] = 4922, - [5640] = 4890, - [5641] = 4881, - [5642] = 4872, - [5643] = 1146, - [5644] = 4642, - [5645] = 4908, - [5646] = 4867, - [5647] = 4609, - [5648] = 4607, - [5649] = 4915, - [5650] = 4878, - [5651] = 1149, - [5652] = 4712, - [5653] = 4882, - [5654] = 492, - [5655] = 488, - [5656] = 4952, - [5657] = 494, - [5658] = 4892, - [5659] = 4880, - [5660] = 483, - [5661] = 4898, - [5662] = 486, - [5663] = 487, - [5664] = 479, - [5665] = 4884, - [5666] = 490, - [5667] = 4883, - [5668] = 478, - [5669] = 477, - [5670] = 491, - [5671] = 1301, - [5672] = 4877, + [5557] = 5557, + [5558] = 5557, + [5559] = 1293, + [5560] = 4822, + [5561] = 4668, + [5562] = 470, + [5563] = 473, + [5564] = 4254, + [5565] = 4724, + [5566] = 472, + [5567] = 5557, + [5568] = 4875, + [5569] = 4241, + [5570] = 1064, + [5571] = 4946, + [5572] = 4878, + [5573] = 4681, + [5574] = 1696, + [5575] = 4885, + [5576] = 1506, + [5577] = 4662, + [5578] = 5557, + [5579] = 4756, + [5580] = 4954, + [5581] = 4931, + [5582] = 1658, + [5583] = 4735, + [5584] = 1590, + [5585] = 4710, + [5586] = 5557, + [5587] = 4889, + [5588] = 4618, + [5589] = 884, + [5590] = 1240, + [5591] = 886, + [5592] = 4886, + [5593] = 5557, + [5594] = 5557, + [5595] = 4631, + [5596] = 4238, + [5597] = 4892, + [5598] = 4642, + [5599] = 4895, + [5600] = 4915, + [5601] = 4916, + [5602] = 4693, + [5603] = 4622, + [5604] = 4750, + [5605] = 1658, + [5606] = 5557, + [5607] = 1240, + [5608] = 4625, + [5609] = 1062, + [5610] = 1293, + [5611] = 4689, + [5612] = 1696, + [5613] = 5557, + [5614] = 498, + [5615] = 4873, + [5616] = 4951, + [5617] = 1339, + [5618] = 480, + [5619] = 474, + [5620] = 4689, + [5621] = 4973, + [5622] = 4954, + [5623] = 481, + [5624] = 4931, + [5625] = 490, + [5626] = 4904, + [5627] = 477, + [5628] = 4893, + [5629] = 487, + [5630] = 4946, + [5631] = 493, + [5632] = 4693, + [5633] = 4822, + [5634] = 4951, + [5635] = 4886, + [5636] = 491, + [5637] = 4870, + [5638] = 1343, + [5639] = 4895, + [5640] = 4873, + [5641] = 4961, + [5642] = 4982, + [5643] = 482, + [5644] = 4885, + [5645] = 4962, + [5646] = 4865, + [5647] = 4943, + [5648] = 4949, + [5649] = 1293, + [5650] = 4947, + [5651] = 485, + [5652] = 4866, + [5653] = 1093, + [5654] = 4948, + [5655] = 4972, + [5656] = 4890, + [5657] = 478, + [5658] = 475, + [5659] = 4930, + [5660] = 492, + [5661] = 4631, + [5662] = 4618, + [5663] = 4936, + [5664] = 4875, + [5665] = 4932, + [5666] = 4915, + [5667] = 4889, + [5668] = 4938, + [5669] = 4878, + [5670] = 1088, + [5671] = 476, + [5672] = 4724, [5673] = 4916, - [5674] = 1429, - [5675] = 4927, - [5676] = 4615, - [5677] = 4876, - [5678] = 4874, - [5679] = 4866, - [5680] = 482, - [5681] = 4868, - [5682] = 4960, - [5683] = 474, - [5684] = 4895, - [5685] = 4873, - [5686] = 4871, - [5687] = 4931, - [5688] = 485, - [5689] = 4938, - [5690] = 4940, - [5691] = 5028, - [5692] = 1607, - [5693] = 476, - [5694] = 5027, - [5695] = 4949, - [5696] = 489, + [5674] = 4955, + [5675] = 4884, + [5676] = 4892, + [5677] = 4756, + [5678] = 483, + [5679] = 4928, + [5680] = 1240, + [5681] = 4917, + [5682] = 4897, + [5683] = 4912, + [5684] = 4996, + [5685] = 4898, + [5686] = 489, + [5687] = 486, + [5688] = 484, + [5689] = 1696, + [5690] = 4882, + [5691] = 488, + [5692] = 1658, + [5693] = 479, + [5694] = 4883, + [5695] = 4622, + [5696] = 4864, [5697] = 5697, - [5698] = 465, - [5699] = 464, - [5700] = 5700, - [5701] = 495, + [5698] = 464, + [5699] = 498, + [5700] = 465, + [5701] = 5701, [5702] = 5702, - [5703] = 5702, - [5704] = 5702, - [5705] = 5705, - [5706] = 5705, - [5707] = 5702, - [5708] = 5705, - [5709] = 5702, - [5710] = 5702, + [5703] = 5703, + [5704] = 1293, + [5705] = 5702, + [5706] = 5703, + [5707] = 5703, + [5708] = 5702, + [5709] = 1696, + [5710] = 5703, [5711] = 5702, - [5712] = 5702, - [5713] = 5702, + [5712] = 5703, + [5713] = 1240, [5714] = 5702, [5715] = 5702, - [5716] = 5705, - [5717] = 5702, - [5718] = 5705, + [5716] = 5703, + [5717] = 5703, + [5718] = 5703, [5719] = 5702, - [5720] = 5705, - [5721] = 5705, - [5722] = 5705, - [5723] = 5705, - [5724] = 5705, - [5725] = 5705, - [5726] = 5702, - [5727] = 5705, + [5720] = 5702, + [5721] = 5703, + [5722] = 5702, + [5723] = 5702, + [5724] = 5703, + [5725] = 5702, + [5726] = 5703, + [5727] = 5703, [5728] = 5702, - [5729] = 5705, - [5730] = 5705, + [5729] = 5703, + [5730] = 5703, [5731] = 5702, [5732] = 5702, - [5733] = 5705, - [5734] = 5705, - [5735] = 5705, - [5736] = 5705, - [5737] = 5702, - [5738] = 1534, - [5739] = 5702, - [5740] = 5702, - [5741] = 5705, + [5733] = 5702, + [5734] = 5703, + [5735] = 5702, + [5736] = 5703, + [5737] = 5703, + [5738] = 5702, + [5739] = 5703, + [5740] = 5703, + [5741] = 5703, [5742] = 5702, - [5743] = 5705, - [5744] = 1281, - [5745] = 5702, - [5746] = 5705, - [5747] = 1301, + [5743] = 5702, + [5744] = 5703, + [5745] = 5703, + [5746] = 5702, + [5747] = 5702, [5748] = 5702, - [5749] = 5702, - [5750] = 5705, + [5749] = 5703, + [5750] = 5703, [5751] = 5702, [5752] = 5702, - [5753] = 5705, - [5754] = 5705, - [5755] = 5705, - [5756] = 5702, - [5757] = 5705, - [5758] = 5705, - [5759] = 5702, - [5760] = 5702, - [5761] = 5705, - [5762] = 5705, - [5763] = 5702, - [5764] = 5705, - [5765] = 5702, + [5753] = 5702, + [5754] = 5754, + [5755] = 5703, + [5756] = 5703, + [5757] = 5702, + [5758] = 5702, + [5759] = 5703, + [5760] = 5703, + [5761] = 5702, + [5762] = 5702, + [5763] = 5703, + [5764] = 5703, + [5765] = 5703, [5766] = 5702, [5767] = 5702, - [5768] = 5768, - [5769] = 5705, + [5768] = 5703, + [5769] = 5703, [5770] = 5702, [5771] = 5702, - [5772] = 5705, - [5773] = 5705, - [5774] = 5702, - [5775] = 5705, - [5776] = 5702, - [5777] = 5705, + [5772] = 5703, + [5773] = 5703, + [5774] = 5703, + [5775] = 5702, + [5776] = 5703, + [5777] = 5702, [5778] = 5702, - [5779] = 5705, - [5780] = 5705, + [5779] = 5703, + [5780] = 5703, [5781] = 5702, - [5782] = 5705, - [5783] = 5705, - [5784] = 5705, - [5785] = 5702, + [5782] = 5702, + [5783] = 5702, + [5784] = 5703, + [5785] = 5703, [5786] = 5702, - [5787] = 5705, - [5788] = 5705, - [5789] = 1607, + [5787] = 5702, + [5788] = 5703, + [5789] = 5703, [5790] = 5702, - [5791] = 5705, - [5792] = 5702, - [5793] = 5705, + [5791] = 5703, + [5792] = 5703, + [5793] = 5702, [5794] = 5702, - [5795] = 5702, - [5796] = 5705, - [5797] = 5705, - [5798] = 5702, - [5799] = 5705, - [5800] = 5705, - [5801] = 5702, + [5795] = 5703, + [5796] = 5702, + [5797] = 5703, + [5798] = 5703, + [5799] = 5702, + [5800] = 5702, + [5801] = 5703, [5802] = 5702, - [5803] = 5702, - [5804] = 5705, + [5803] = 5703, + [5804] = 5703, [5805] = 5702, - [5806] = 5705, - [5807] = 5705, - [5808] = 5702, - [5809] = 5705, + [5806] = 5702, + [5807] = 5702, + [5808] = 5703, + [5809] = 5703, [5810] = 5702, - [5811] = 5705, + [5811] = 5703, [5812] = 5702, - [5813] = 5702, - [5814] = 5705, - [5815] = 5705, - [5816] = 5702, - [5817] = 5705, + [5813] = 5703, + [5814] = 5702, + [5815] = 5703, + [5816] = 5703, + [5817] = 5703, [5818] = 5702, - [5819] = 5705, + [5819] = 5703, [5820] = 5702, [5821] = 5702, - [5822] = 5705, - [5823] = 5705, + [5822] = 5703, + [5823] = 5703, [5824] = 5702, - [5825] = 5705, - [5826] = 5702, - [5827] = 5705, + [5825] = 5702, + [5826] = 5703, + [5827] = 5703, [5828] = 5702, [5829] = 5702, - [5830] = 5705, - [5831] = 5702, - [5832] = 5705, - [5833] = 5705, - [5834] = 5702, - [5835] = 5705, - [5836] = 5702, - [5837] = 5705, - [5838] = 5702, - [5839] = 5702, - [5840] = 5705, - [5841] = 5702, - [5842] = 5705, - [5843] = 5702, - [5844] = 5705, + [5830] = 5702, + [5831] = 5703, + [5832] = 5702, + [5833] = 5703, + [5834] = 5703, + [5835] = 5702, + [5836] = 1658, + [5837] = 5703, + [5838] = 5703, + [5839] = 5703, + [5840] = 5702, + [5841] = 5703, + [5842] = 5702, + [5843] = 5703, + [5844] = 5702, [5845] = 5702, - [5846] = 5705, - [5847] = 5702, + [5846] = 5702, + [5847] = 5703, [5848] = 5702, - [5849] = 5705, - [5850] = 5705, - [5851] = 5705, - [5852] = 5705, - [5853] = 5702, - [5854] = 5705, - [5855] = 5702, - [5856] = 5705, + [5849] = 5703, + [5850] = 5702, + [5851] = 5703, + [5852] = 5702, + [5853] = 5703, + [5854] = 5702, + [5855] = 5703, + [5856] = 5702, [5857] = 5702, - [5858] = 5705, + [5858] = 5703, [5859] = 5702, - [5860] = 5702, - [5861] = 5705, + [5860] = 5703, + [5861] = 5702, [5862] = 5702, - [5863] = 5705, + [5863] = 5703, [5864] = 5702, [5865] = 5865, - [5866] = 5866, - [5867] = 5866, - [5868] = 5866, - [5869] = 5866, + [5866] = 5865, + [5867] = 5865, + [5868] = 5865, + [5869] = 5869, [5870] = 5865, - [5871] = 5871, - [5872] = 5871, - [5873] = 5871, - [5874] = 5871, - [5875] = 5865, - [5876] = 5865, - [5877] = 5871, - [5878] = 5866, + [5871] = 5869, + [5872] = 5865, + [5873] = 5869, + [5874] = 5869, + [5875] = 5875, + [5876] = 5875, + [5877] = 5869, + [5878] = 5865, [5879] = 5865, - [5880] = 5866, - [5881] = 5866, - [5882] = 5866, + [5880] = 5869, + [5881] = 5869, + [5882] = 5875, [5883] = 5865, - [5884] = 5865, - [5885] = 5871, - [5886] = 5866, - [5887] = 5871, - [5888] = 5871, - [5889] = 5871, - [5890] = 5866, - [5891] = 5866, - [5892] = 5865, - [5893] = 5871, + [5884] = 5875, + [5885] = 5869, + [5886] = 5865, + [5887] = 5865, + [5888] = 5869, + [5889] = 5869, + [5890] = 5875, + [5891] = 5875, + [5892] = 5875, + [5893] = 5865, [5894] = 5865, - [5895] = 5865, - [5896] = 5871, - [5897] = 5866, - [5898] = 5866, - [5899] = 5866, - [5900] = 5865, - [5901] = 5871, - [5902] = 5866, + [5895] = 5869, + [5896] = 5869, + [5897] = 5875, + [5898] = 5869, + [5899] = 5875, + [5900] = 5869, + [5901] = 5869, + [5902] = 5865, [5903] = 5865, - [5904] = 5871, - [5905] = 5871, - [5906] = 5866, - [5907] = 5865, - [5908] = 5865, - [5909] = 5871, - [5910] = 5871, - [5911] = 5871, - [5912] = 5866, - [5913] = 5866, - [5914] = 5866, - [5915] = 5865, - [5916] = 5871, - [5917] = 5866, - [5918] = 5871, - [5919] = 5865, - [5920] = 5865, - [5921] = 5871, - [5922] = 5871, - [5923] = 5865, - [5924] = 5865, + [5904] = 5875, + [5905] = 5875, + [5906] = 5869, + [5907] = 5869, + [5908] = 5875, + [5909] = 5875, + [5910] = 5865, + [5911] = 5865, + [5912] = 5869, + [5913] = 5875, + [5914] = 5875, + [5915] = 5869, + [5916] = 5865, + [5917] = 5875, + [5918] = 5865, + [5919] = 5869, + [5920] = 5875, + [5921] = 5869, + [5922] = 5875, + [5923] = 5875, + [5924] = 5869, [5925] = 5865, - [5926] = 5865, - [5927] = 5866, - [5928] = 5871, - [5929] = 5866, + [5926] = 5875, + [5927] = 5875, + [5928] = 5869, + [5929] = 5865, [5930] = 5865, - [5931] = 5871, - [5932] = 5866, - [5933] = 5871, - [5934] = 5866, - [5935] = 5865, - [5936] = 5865, - [5937] = 5871, - [5938] = 5866, - [5939] = 5866, - [5940] = 5865, - [5941] = 5871, - [5942] = 5871, - [5943] = 5866, - [5944] = 5866, - [5945] = 5871, - [5946] = 5866, - [5947] = 5866, - [5948] = 5871, - [5949] = 5865, - [5950] = 5865, - [5951] = 5866, - [5952] = 5865, - [5953] = 5871, - [5954] = 5871, - [5955] = 5871, + [5931] = 5875, + [5932] = 5875, + [5933] = 5869, + [5934] = 5869, + [5935] = 5869, + [5936] = 5875, + [5937] = 5875, + [5938] = 5869, + [5939] = 5875, + [5940] = 5869, + [5941] = 5869, + [5942] = 5865, + [5943] = 5869, + [5944] = 5865, + [5945] = 5875, + [5946] = 5875, + [5947] = 5869, + [5948] = 5869, + [5949] = 5869, + [5950] = 5869, + [5951] = 5869, + [5952] = 5875, + [5953] = 5875, + [5954] = 5875, + [5955] = 5875, [5956] = 5865, - [5957] = 5866, - [5958] = 5865, - [5959] = 5866, - [5960] = 5871, - [5961] = 5866, - [5962] = 5866, - [5963] = 5866, - [5964] = 5866, - [5965] = 5866, - [5966] = 5866, - [5967] = 5871, + [5957] = 5875, + [5958] = 5869, + [5959] = 5865, + [5960] = 5865, + [5961] = 5865, + [5962] = 5875, + [5963] = 5875, + [5964] = 5869, + [5965] = 5865, + [5966] = 5875, + [5967] = 5869, [5968] = 5865, - [5969] = 5865, - [5970] = 5871, + [5969] = 5869, + [5970] = 5869, [5971] = 5865, - [5972] = 5866, - [5973] = 5871, + [5972] = 5875, + [5973] = 5875, [5974] = 5865, - [5975] = 5871, - [5976] = 5865, - [5977] = 5871, - [5978] = 5871, - [5979] = 5865, - [5980] = 5866, - [5981] = 5865, - [5982] = 5866, - [5983] = 5871, - [5984] = 5866, - [5985] = 5871, - [5986] = 5866, - [5987] = 5866, - [5988] = 5871, - [5989] = 5871, - [5990] = 5866, - [5991] = 5871, - [5992] = 5865, - [5993] = 5866, - [5994] = 5865, - [5995] = 5871, - [5996] = 5871, - [5997] = 5865, - [5998] = 5866, - [5999] = 5866, - [6000] = 5866, - [6001] = 5871, - [6002] = 5871, - [6003] = 5871, - [6004] = 5871, + [5975] = 5869, + [5976] = 5869, + [5977] = 5875, + [5978] = 5875, + [5979] = 5869, + [5980] = 5869, + [5981] = 5869, + [5982] = 5875, + [5983] = 5875, + [5984] = 5869, + [5985] = 5865, + [5986] = 5865, + [5987] = 5865, + [5988] = 5869, + [5989] = 5869, + [5990] = 5869, + [5991] = 5869, + [5992] = 5875, + [5993] = 5875, + [5994] = 5875, + [5995] = 5865, + [5996] = 5869, + [5997] = 5875, + [5998] = 5869, + [5999] = 5869, + [6000] = 5875, + [6001] = 5869, + [6002] = 5875, + [6003] = 5865, + [6004] = 5875, [6005] = 5865, - [6006] = 5866, - [6007] = 5865, - [6008] = 5871, - [6009] = 5871, - [6010] = 5866, - [6011] = 5871, + [6006] = 5865, + [6007] = 5869, + [6008] = 5875, + [6009] = 5865, + [6010] = 5875, + [6011] = 5875, [6012] = 5865, - [6013] = 5871, - [6014] = 5865, - [6015] = 5866, - [6016] = 5871, - [6017] = 5871, - [6018] = 5866, - [6019] = 5866, - [6020] = 5866, - [6021] = 5871, - [6022] = 5871, - [6023] = 5866, - [6024] = 5865, - [6025] = 5866, - [6026] = 5866, - [6027] = 5871, - [6028] = 5865, - [6029] = 5871, + [6013] = 5865, + [6014] = 5869, + [6015] = 5865, + [6016] = 5869, + [6017] = 5865, + [6018] = 5865, + [6019] = 5875, + [6020] = 5865, + [6021] = 5869, + [6022] = 5865, + [6023] = 5869, + [6024] = 5869, + [6025] = 5875, + [6026] = 5875, + [6027] = 5865, + [6028] = 5875, + [6029] = 5869, [6030] = 5865, - [6031] = 5871, - [6032] = 5866, - [6033] = 5871, - [6034] = 5865, - [6035] = 5865, - [6036] = 5866, - [6037] = 5871, - [6038] = 5865, + [6031] = 5875, + [6032] = 5865, + [6033] = 5865, + [6034] = 5875, + [6035] = 5869, + [6036] = 5869, + [6037] = 5865, + [6038] = 5875, [6039] = 5865, - [6040] = 5871, - [6041] = 5866, - [6042] = 5871, - [6043] = 5866, - [6044] = 5865, - [6045] = 5871, - [6046] = 5871, - [6047] = 5865, - [6048] = 5865, - [6049] = 5871, - [6050] = 5866, + [6040] = 5875, + [6041] = 5869, + [6042] = 5875, + [6043] = 5869, + [6044] = 5869, + [6045] = 5865, + [6046] = 5875, + [6047] = 5869, + [6048] = 5869, + [6049] = 5875, + [6050] = 5875, [6051] = 5865, - [6052] = 5871, + [6052] = 5869, [6053] = 5865, - [6054] = 5866, - [6055] = 5871, - [6056] = 5866, - [6057] = 5866, - [6058] = 5866, - [6059] = 5866, - [6060] = 5865, + [6054] = 5869, + [6055] = 5875, + [6056] = 5865, + [6057] = 5875, + [6058] = 5875, + [6059] = 5865, + [6060] = 5875, [6061] = 5865, - [6062] = 5871, - [6063] = 5871, - [6064] = 5866, - [6065] = 5871, + [6062] = 5869, + [6063] = 5875, + [6064] = 5875, + [6065] = 5865, [6066] = 5865, - [6067] = 5866, - [6068] = 5866, - [6069] = 5866, - [6070] = 5865, + [6067] = 5865, + [6068] = 5869, + [6069] = 5875, + [6070] = 5875, [6071] = 5865, - [6072] = 5866, - [6073] = 5871, - [6074] = 5871, - [6075] = 5866, - [6076] = 5866, - [6077] = 5871, - [6078] = 5865, - [6079] = 5866, - [6080] = 5871, - [6081] = 5871, - [6082] = 5865, - [6083] = 5866, - [6084] = 5865, - [6085] = 5865, - [6086] = 5871, - [6087] = 5866, + [6072] = 5869, + [6073] = 5869, + [6074] = 5869, + [6075] = 5875, + [6076] = 5865, + [6077] = 5875, + [6078] = 5869, + [6079] = 5869, + [6080] = 5869, + [6081] = 5875, + [6082] = 5875, + [6083] = 5865, + [6084] = 5875, + [6085] = 5869, + [6086] = 5875, + [6087] = 5875, [6088] = 6088, - [6089] = 6088, + [6089] = 487, [6090] = 6088, [6091] = 6088, [6092] = 6088, [6093] = 6088, [6094] = 6088, - [6095] = 488, - [6096] = 492, + [6095] = 6088, + [6096] = 474, [6097] = 6088, [6098] = 6098, [6099] = 6099, [6100] = 6100, [6101] = 6099, - [6102] = 6099, - [6103] = 6099, - [6104] = 6100, - [6105] = 6100, - [6106] = 6100, + [6102] = 6100, + [6103] = 6100, + [6104] = 6099, + [6105] = 6099, + [6106] = 6099, [6107] = 6100, - [6108] = 6099, + [6108] = 6100, [6109] = 6100, [6110] = 6099, - [6111] = 6099, + [6111] = 6100, [6112] = 6099, - [6113] = 6100, + [6113] = 6099, [6114] = 6099, [6115] = 6100, [6116] = 6100, [6117] = 6117, - [6118] = 6117, - [6119] = 6117, - [6120] = 6117, - [6121] = 6121, - [6122] = 479, - [6123] = 478, - [6124] = 486, - [6125] = 6125, - [6126] = 6117, - [6127] = 6127, - [6128] = 6128, - [6129] = 6117, - [6130] = 6117, - [6131] = 6131, - [6132] = 6117, - [6133] = 6117, - [6134] = 6117, - [6135] = 6117, - [6136] = 6117, - [6137] = 6137, - [6138] = 474, - [6139] = 6117, - [6140] = 492, - [6141] = 485, - [6142] = 6117, - [6143] = 488, - [6144] = 6117, - [6145] = 6117, - [6146] = 6117, - [6147] = 477, - [6148] = 6117, - [6149] = 6117, - [6150] = 6117, - [6151] = 6117, - [6152] = 6117, - [6153] = 6117, - [6154] = 491, - [6155] = 6117, - [6156] = 6117, - [6157] = 6117, - [6158] = 6117, + [6118] = 6118, + [6119] = 6118, + [6120] = 6118, + [6121] = 6118, + [6122] = 6122, + [6123] = 489, + [6124] = 6118, + [6125] = 6118, + [6126] = 477, + [6127] = 6118, + [6128] = 6118, + [6129] = 6118, + [6130] = 6118, + [6131] = 6118, + [6132] = 6118, + [6133] = 6118, + [6134] = 6118, + [6135] = 6118, + [6136] = 6118, + [6137] = 6118, + [6138] = 6118, + [6139] = 481, + [6140] = 6118, + [6141] = 6118, + [6142] = 6118, + [6143] = 6118, + [6144] = 6118, + [6145] = 6118, + [6146] = 6146, + [6147] = 6147, + [6148] = 6118, + [6149] = 6149, + [6150] = 6118, + [6151] = 6118, + [6152] = 490, + [6153] = 491, + [6154] = 488, + [6155] = 492, + [6156] = 487, + [6157] = 474, + [6158] = 6158, [6159] = 6159, - [6160] = 6160, - [6161] = 6161, - [6162] = 6161, - [6163] = 6161, - [6164] = 1173, - [6165] = 6161, - [6166] = 6161, - [6167] = 6160, + [6160] = 6159, + [6161] = 6159, + [6162] = 6162, + [6163] = 6163, + [6164] = 6163, + [6165] = 6165, + [6166] = 6159, + [6167] = 6163, [6168] = 6159, - [6169] = 6159, - [6170] = 6161, - [6171] = 6160, - [6172] = 6160, - [6173] = 6159, - [6174] = 6160, - [6175] = 6160, + [6169] = 6163, + [6170] = 6163, + [6171] = 6165, + [6172] = 6165, + [6173] = 6165, + [6174] = 6163, + [6175] = 6159, [6176] = 6176, - [6177] = 6159, - [6178] = 6161, - [6179] = 6179, - [6180] = 6159, - [6181] = 6159, - [6182] = 6161, - [6183] = 6183, + [6177] = 6165, + [6178] = 6163, + [6179] = 6165, + [6180] = 6180, + [6181] = 6165, + [6182] = 1226, + [6183] = 6163, [6184] = 6159, - [6185] = 6160, - [6186] = 6160, - [6187] = 6187, - [6188] = 469, + [6185] = 6159, + [6186] = 6165, + [6187] = 471, + [6188] = 6188, [6189] = 6189, [6190] = 6190, - [6191] = 6189, + [6191] = 472, [6192] = 6192, - [6193] = 473, + [6193] = 6192, [6194] = 6194, - [6195] = 6195, + [6195] = 473, [6196] = 6196, [6197] = 6197, - [6198] = 6192, + [6198] = 6190, [6199] = 6192, - [6200] = 6189, + [6200] = 6192, [6201] = 470, - [6202] = 6192, - [6203] = 6189, - [6204] = 468, - [6205] = 483, - [6206] = 489, - [6207] = 474, + [6202] = 6190, + [6203] = 6203, + [6204] = 6190, + [6205] = 489, + [6206] = 6206, + [6207] = 482, [6208] = 6208, - [6209] = 481, - [6210] = 476, + [6209] = 491, + [6210] = 488, [6211] = 492, - [6212] = 6212, - [6213] = 6213, - [6214] = 488, - [6215] = 6215, - [6216] = 486, + [6212] = 474, + [6213] = 6208, + [6214] = 6214, + [6215] = 489, + [6216] = 492, [6217] = 486, [6218] = 6218, - [6219] = 6213, - [6220] = 6213, - [6221] = 479, - [6222] = 492, - [6223] = 6213, - [6224] = 478, - [6225] = 482, - [6226] = 477, - [6227] = 6227, - [6228] = 484, - [6229] = 480, - [6230] = 475, - [6231] = 485, - [6232] = 478, - [6233] = 491, - [6234] = 479, - [6235] = 488, - [6236] = 484, - [6237] = 479, - [6238] = 480, - [6239] = 486, - [6240] = 494, - [6241] = 491, - [6242] = 477, - [6243] = 487, - [6244] = 490, - [6245] = 478, + [6219] = 481, + [6220] = 6208, + [6221] = 478, + [6222] = 490, + [6223] = 484, + [6224] = 485, + [6225] = 490, + [6226] = 6208, + [6227] = 483, + [6228] = 490, + [6229] = 491, + [6230] = 489, + [6231] = 488, + [6232] = 475, + [6233] = 476, + [6234] = 484, + [6235] = 492, + [6236] = 479, + [6237] = 487, + [6238] = 488, + [6239] = 6239, + [6240] = 487, + [6241] = 493, + [6242] = 491, + [6243] = 474, + [6244] = 480, + [6245] = 6245, [6246] = 477, - [6247] = 491, + [6247] = 482, [6248] = 6248, - [6249] = 6248, - [6250] = 6248, - [6251] = 6248, - [6252] = 6248, - [6253] = 6248, - [6254] = 6248, - [6255] = 6248, - [6256] = 6256, - [6257] = 6248, - [6258] = 6258, - [6259] = 6259, - [6260] = 6260, + [6249] = 6249, + [6250] = 6249, + [6251] = 485, + [6252] = 6249, + [6253] = 6249, + [6254] = 6249, + [6255] = 6255, + [6256] = 6249, + [6257] = 6249, + [6258] = 486, + [6259] = 6249, + [6260] = 6249, [6261] = 6261, - [6262] = 6262, - [6263] = 6248, + [6262] = 6249, + [6263] = 6249, [6264] = 6264, - [6265] = 6265, + [6265] = 6249, [6266] = 6266, - [6267] = 6267, - [6268] = 6268, - [6269] = 6248, - [6270] = 6270, - [6271] = 6248, - [6272] = 6248, - [6273] = 6248, - [6274] = 6248, - [6275] = 6275, - [6276] = 6248, - [6277] = 6248, - [6278] = 6248, - [6279] = 6279, + [6267] = 6249, + [6268] = 6249, + [6269] = 6249, + [6270] = 6249, + [6271] = 6249, + [6272] = 6272, + [6273] = 6273, + [6274] = 6249, + [6275] = 6249, + [6276] = 6276, + [6277] = 6249, + [6278] = 6278, + [6279] = 6249, [6280] = 6280, - [6281] = 6248, - [6282] = 6248, - [6283] = 6248, - [6284] = 6248, - [6285] = 6248, - [6286] = 6286, + [6281] = 6281, + [6282] = 6249, + [6283] = 6249, + [6284] = 498, + [6285] = 6249, + [6286] = 6249, [6287] = 6287, - [6288] = 6248, - [6289] = 6265, - [6290] = 6248, - [6291] = 6248, - [6292] = 6248, - [6293] = 490, - [6294] = 6248, - [6295] = 6248, - [6296] = 6248, - [6297] = 6248, - [6298] = 6248, - [6299] = 6299, + [6288] = 6288, + [6289] = 6249, + [6290] = 6290, + [6291] = 6291, + [6292] = 6249, + [6293] = 6249, + [6294] = 6294, + [6295] = 6295, + [6296] = 6249, + [6297] = 6249, + [6298] = 6266, + [6299] = 6249, [6300] = 6300, - [6301] = 6301, - [6302] = 6302, + [6301] = 6249, + [6302] = 6249, [6303] = 6303, - [6304] = 495, - [6305] = 6248, - [6306] = 487, - [6307] = 6248, - [6308] = 6248, - [6309] = 6248, - [6310] = 6310, - [6311] = 6248, + [6304] = 6249, + [6305] = 6249, + [6306] = 6249, + [6307] = 6249, + [6308] = 6249, + [6309] = 6309, + [6310] = 6249, + [6311] = 6249, [6312] = 6312, - [6313] = 6248, - [6314] = 6314, - [6315] = 6248, - [6316] = 6248, - [6317] = 481, + [6313] = 6249, + [6314] = 6249, + [6315] = 6249, + [6316] = 6249, + [6317] = 6249, [6318] = 6318, [6319] = 6319, - [6320] = 6248, - [6321] = 6248, - [6322] = 6248, - [6323] = 6248, - [6324] = 6248, - [6325] = 6248, - [6326] = 469, - [6327] = 6265, - [6328] = 6328, - [6329] = 6248, - [6330] = 6330, - [6331] = 6265, - [6332] = 6248, - [6333] = 6248, + [6320] = 6249, + [6321] = 6249, + [6322] = 6322, + [6323] = 6249, + [6324] = 6324, + [6325] = 6249, + [6326] = 6326, + [6327] = 6266, + [6328] = 6249, + [6329] = 6249, + [6330] = 6249, + [6331] = 6249, + [6332] = 6332, + [6333] = 6249, [6334] = 6334, - [6335] = 6248, - [6336] = 6248, - [6337] = 6337, + [6335] = 6249, + [6336] = 6249, + [6337] = 471, [6338] = 6338, - [6339] = 6337, - [6340] = 6337, - [6341] = 6248, - [6342] = 6248, - [6343] = 6248, - [6344] = 6344, - [6345] = 6248, - [6346] = 6346, - [6347] = 6248, - [6348] = 6248, - [6349] = 6248, - [6350] = 6248, - [6351] = 6248, - [6352] = 6248, - [6353] = 6353, - [6354] = 6248, - [6355] = 6248, - [6356] = 6248, - [6357] = 6248, - [6358] = 6248, - [6359] = 6248, - [6360] = 6248, - [6361] = 6361, - [6362] = 6248, - [6363] = 6337, - [6364] = 6364, + [6339] = 6249, + [6340] = 6249, + [6341] = 6249, + [6342] = 6249, + [6343] = 6249, + [6344] = 6249, + [6345] = 6291, + [6346] = 6291, + [6347] = 6347, + [6348] = 6348, + [6349] = 6349, + [6350] = 6249, + [6351] = 6249, + [6352] = 6352, + [6353] = 6249, + [6354] = 6354, + [6355] = 6249, + [6356] = 6249, + [6357] = 6266, + [6358] = 6291, + [6359] = 6359, + [6360] = 6360, + [6361] = 483, + [6362] = 6249, + [6363] = 6249, + [6364] = 6249, [6365] = 6365, - [6366] = 6248, - [6367] = 6248, + [6366] = 6366, + [6367] = 6249, [6368] = 6368, [6369] = 6369, - [6370] = 2702, - [6371] = 6371, + [6370] = 6370, + [6371] = 2703, [6372] = 6372, - [6373] = 470, + [6373] = 472, [6374] = 6374, [6375] = 6375, - [6376] = 6374, + [6376] = 6368, [6377] = 6377, - [6378] = 6371, - [6379] = 6379, + [6378] = 6378, + [6379] = 6378, [6380] = 6380, - [6381] = 6381, + [6381] = 2734, [6382] = 6382, [6383] = 6383, - [6384] = 6380, - [6385] = 6377, + [6384] = 6372, + [6385] = 6375, [6386] = 6386, - [6387] = 6369, - [6388] = 2704, - [6389] = 6389, - [6390] = 6390, + [6387] = 6375, + [6388] = 473, + [6389] = 6378, + [6390] = 6369, [6391] = 6391, - [6392] = 6371, + [6392] = 6392, [6393] = 6393, - [6394] = 6394, - [6395] = 6375, - [6396] = 6386, - [6397] = 6397, - [6398] = 6369, - [6399] = 6382, + [6394] = 6377, + [6395] = 6372, + [6396] = 6396, + [6397] = 6369, + [6398] = 6398, + [6399] = 492, [6400] = 6400, - [6401] = 6368, + [6401] = 6401, [6402] = 6402, - [6403] = 2696, - [6404] = 6382, + [6403] = 6375, + [6404] = 6402, [6405] = 6405, - [6406] = 6375, - [6407] = 2694, - [6408] = 6381, - [6409] = 6409, - [6410] = 6410, - [6411] = 6397, - [6412] = 6377, - [6413] = 6374, + [6406] = 6377, + [6407] = 6377, + [6408] = 6408, + [6409] = 6402, + [6410] = 6378, + [6411] = 6411, + [6412] = 6412, + [6413] = 6408, [6414] = 6414, - [6415] = 6415, - [6416] = 6397, - [6417] = 6386, - [6418] = 6391, - [6419] = 468, + [6415] = 6392, + [6416] = 6408, + [6417] = 6417, + [6418] = 6417, + [6419] = 6368, [6420] = 6420, - [6421] = 6368, - [6422] = 6369, - [6423] = 6391, - [6424] = 6424, + [6421] = 6421, + [6422] = 6422, + [6423] = 6402, + [6424] = 2667, [6425] = 6425, - [6426] = 6426, - [6427] = 6427, + [6426] = 491, + [6427] = 6408, [6428] = 6428, - [6429] = 6391, - [6430] = 6430, - [6431] = 6430, - [6432] = 6377, - [6433] = 6371, - [6434] = 6414, - [6435] = 478, - [6436] = 477, - [6437] = 6371, - [6438] = 491, - [6439] = 473, - [6440] = 6377, - [6441] = 6386, - [6442] = 6397, - [6443] = 6381, - [6444] = 6383, - [6445] = 6380, - [6446] = 6383, - [6447] = 6375, - [6448] = 6448, - [6449] = 6449, - [6450] = 6414, - [6451] = 6380, - [6452] = 6397, - [6453] = 6380, - [6454] = 6414, - [6455] = 6382, + [6429] = 6412, + [6430] = 6392, + [6431] = 6431, + [6432] = 6432, + [6433] = 6417, + [6434] = 6434, + [6435] = 6412, + [6436] = 488, + [6437] = 6382, + [6438] = 6382, + [6439] = 6439, + [6440] = 6382, + [6441] = 6441, + [6442] = 6442, + [6443] = 6412, + [6444] = 6444, + [6445] = 6372, + [6446] = 6446, + [6447] = 6441, + [6448] = 6441, + [6449] = 6439, + [6450] = 6450, + [6451] = 6439, + [6452] = 6452, + [6453] = 6369, + [6454] = 6372, + [6455] = 6439, [6456] = 6368, - [6457] = 6430, - [6458] = 6414, - [6459] = 6430, + [6457] = 6457, + [6458] = 6458, + [6459] = 6459, [6460] = 6460, - [6461] = 6368, - [6462] = 6430, - [6463] = 6463, - [6464] = 6383, - [6465] = 6465, - [6466] = 6375, - [6467] = 6382, - [6468] = 6369, - [6469] = 6374, - [6470] = 6470, - [6471] = 6381, - [6472] = 6472, - [6473] = 6391, - [6474] = 6474, - [6475] = 6475, - [6476] = 6476, - [6477] = 6477, - [6478] = 6478, - [6479] = 6383, - [6480] = 486, + [6461] = 6378, + [6462] = 6375, + [6463] = 470, + [6464] = 6441, + [6465] = 6383, + [6466] = 6392, + [6467] = 6377, + [6468] = 6383, + [6469] = 6368, + [6470] = 6402, + [6471] = 6408, + [6472] = 6412, + [6473] = 6392, + [6474] = 6417, + [6475] = 6383, + [6476] = 6417, + [6477] = 6382, + [6478] = 2733, + [6479] = 6441, + [6480] = 489, [6481] = 6481, - [6482] = 6482, - [6483] = 478, - [6484] = 477, - [6485] = 491, - [6486] = 483, - [6487] = 6487, + [6482] = 476, + [6483] = 486, + [6484] = 492, + [6485] = 6485, + [6486] = 493, + [6487] = 490, [6488] = 6488, - [6489] = 6489, - [6490] = 475, - [6491] = 6491, - [6492] = 6492, - [6493] = 6493, - [6494] = 482, + [6489] = 480, + [6490] = 491, + [6491] = 488, + [6492] = 2845, + [6493] = 1590, + [6494] = 6494, [6495] = 6495, [6496] = 6496, - [6497] = 479, - [6498] = 6498, - [6499] = 478, - [6500] = 494, - [6501] = 6501, - [6502] = 486, - [6503] = 488, - [6504] = 492, - [6505] = 1556, - [6506] = 492, - [6507] = 488, - [6508] = 6495, - [6509] = 490, - [6510] = 487, + [6497] = 6497, + [6498] = 486, + [6499] = 6499, + [6500] = 492, + [6501] = 487, + [6502] = 6502, + [6503] = 6503, + [6504] = 474, + [6505] = 478, + [6506] = 475, + [6507] = 483, + [6508] = 6508, + [6509] = 2915, + [6510] = 6510, [6511] = 6511, - [6512] = 6495, - [6513] = 489, - [6514] = 481, - [6515] = 487, - [6516] = 479, - [6517] = 1542, - [6518] = 490, - [6519] = 484, - [6520] = 481, + [6512] = 479, + [6513] = 2860, + [6514] = 6514, + [6515] = 6515, + [6516] = 2923, + [6517] = 485, + [6518] = 491, + [6519] = 488, + [6520] = 492, [6521] = 6521, - [6522] = 475, - [6523] = 480, + [6522] = 6522, + [6523] = 6508, [6524] = 6524, - [6525] = 491, - [6526] = 485, - [6527] = 2930, - [6528] = 2929, - [6529] = 2931, - [6530] = 6530, - [6531] = 6531, - [6532] = 477, - [6533] = 6533, - [6534] = 476, - [6535] = 474, - [6536] = 6536, - [6537] = 478, - [6538] = 477, - [6539] = 6539, - [6540] = 491, + [6525] = 481, + [6526] = 6526, + [6527] = 6527, + [6528] = 493, + [6529] = 1571, + [6530] = 6508, + [6531] = 487, + [6532] = 474, + [6533] = 485, + [6534] = 6534, + [6535] = 479, + [6536] = 477, + [6537] = 6537, + [6538] = 490, + [6539] = 491, + [6540] = 484, [6541] = 6541, - [6542] = 6542, - [6543] = 6543, - [6544] = 6495, - [6545] = 494, - [6546] = 2926, + [6542] = 483, + [6543] = 488, + [6544] = 6508, + [6545] = 489, + [6546] = 482, [6547] = 6547, - [6548] = 6548, - [6549] = 6547, - [6550] = 6463, - [6551] = 6551, - [6552] = 6548, - [6553] = 6553, - [6554] = 491, - [6555] = 477, - [6556] = 478, - [6557] = 490, - [6558] = 6558, - [6559] = 6548, + [6548] = 6547, + [6549] = 6549, + [6550] = 6550, + [6551] = 6393, + [6552] = 6552, + [6553] = 6547, + [6554] = 6554, + [6555] = 6555, + [6556] = 6556, + [6557] = 6547, + [6558] = 6547, + [6559] = 6559, [6560] = 6547, - [6561] = 485, - [6562] = 6548, - [6563] = 479, - [6564] = 487, - [6565] = 6548, - [6566] = 6558, + [6561] = 6561, + [6562] = 6562, + [6563] = 6563, + [6564] = 6564, + [6565] = 6565, + [6566] = 6547, [6567] = 6567, - [6568] = 6558, + [6568] = 6547, [6569] = 6569, [6570] = 6570, - [6571] = 486, - [6572] = 6558, - [6573] = 481, - [6574] = 6548, - [6575] = 6547, - [6576] = 6548, - [6577] = 6548, + [6571] = 6547, + [6572] = 6572, + [6573] = 6573, + [6574] = 6574, + [6575] = 6575, + [6576] = 6576, + [6577] = 6547, [6578] = 6547, - [6579] = 6548, - [6580] = 6548, - [6581] = 495, + [6579] = 6547, + [6580] = 6570, + [6581] = 6581, [6582] = 6582, - [6583] = 2696, - [6584] = 6558, - [6585] = 2694, - [6586] = 6548, - [6587] = 6587, - [6588] = 6548, - [6589] = 6589, - [6590] = 6590, - [6591] = 6591, - [6592] = 6548, - [6593] = 6548, - [6594] = 6548, - [6595] = 6595, + [6583] = 6547, + [6584] = 6584, + [6585] = 6585, + [6586] = 491, + [6587] = 6547, + [6588] = 6588, + [6589] = 6570, + [6590] = 6547, + [6591] = 6570, + [6592] = 6547, + [6593] = 6593, + [6594] = 6594, + [6595] = 6570, [6596] = 6596, - [6597] = 6597, - [6598] = 6598, + [6597] = 6570, + [6598] = 6547, [6599] = 6599, - [6600] = 6548, - [6601] = 6548, - [6602] = 6548, + [6600] = 6570, + [6601] = 6570, + [6602] = 6570, [6603] = 6547, - [6604] = 6547, - [6605] = 6551, - [6606] = 6548, - [6607] = 6548, - [6608] = 6548, - [6609] = 2702, - [6610] = 2704, - [6611] = 6611, - [6612] = 6548, - [6613] = 6548, - [6614] = 6558, - [6615] = 474, - [6616] = 6547, - [6617] = 6548, - [6618] = 6618, - [6619] = 6547, - [6620] = 6620, - [6621] = 6548, - [6622] = 6548, - [6623] = 6548, - [6624] = 6548, - [6625] = 6548, + [6604] = 6570, + [6605] = 6547, + [6606] = 6570, + [6607] = 6570, + [6608] = 6570, + [6609] = 6547, + [6610] = 6570, + [6611] = 6570, + [6612] = 6570, + [6613] = 6547, + [6614] = 6547, + [6615] = 6547, + [6616] = 6570, + [6617] = 6393, + [6618] = 6570, + [6619] = 6570, + [6620] = 6547, + [6621] = 498, + [6622] = 6622, + [6623] = 6570, + [6624] = 6624, + [6625] = 2703, [6626] = 6626, - [6627] = 6627, + [6627] = 6547, [6628] = 6547, - [6629] = 6548, - [6630] = 6548, + [6629] = 488, + [6630] = 492, [6631] = 6631, - [6632] = 6632, - [6633] = 6548, - [6634] = 6547, - [6635] = 490, + [6632] = 6588, + [6633] = 6547, + [6634] = 2667, + [6635] = 6635, [6636] = 6547, - [6637] = 6637, - [6638] = 6547, - [6639] = 6548, - [6640] = 6589, + [6637] = 6547, + [6638] = 6638, + [6639] = 6570, + [6640] = 6547, [6641] = 6547, - [6642] = 6548, - [6643] = 6548, - [6644] = 6548, - [6645] = 487, - [6646] = 6646, - [6647] = 6548, + [6642] = 485, + [6643] = 6643, + [6644] = 6644, + [6645] = 6645, + [6646] = 6547, + [6647] = 6581, [6648] = 6648, - [6649] = 6649, - [6650] = 6548, - [6651] = 495, + [6649] = 6547, + [6650] = 6547, + [6651] = 6547, [6652] = 6652, - [6653] = 6548, - [6654] = 6654, - [6655] = 6548, - [6656] = 6548, - [6657] = 6548, - [6658] = 6658, - [6659] = 6589, - [6660] = 6548, - [6661] = 6548, - [6662] = 6547, - [6663] = 481, + [6653] = 490, + [6654] = 6588, + [6655] = 6547, + [6656] = 6656, + [6657] = 483, + [6658] = 2733, + [6659] = 6547, + [6660] = 6547, + [6661] = 2734, + [6662] = 6662, + [6663] = 2547, [6664] = 6547, - [6665] = 6665, - [6666] = 6666, - [6667] = 6667, - [6668] = 6547, - [6669] = 6548, - [6670] = 6670, - [6671] = 6551, - [6672] = 6672, - [6673] = 6547, - [6674] = 6558, - [6675] = 6675, - [6676] = 6676, - [6677] = 2559, + [6665] = 6547, + [6666] = 6567, + [6667] = 6547, + [6668] = 6668, + [6669] = 6547, + [6670] = 6547, + [6671] = 6547, + [6672] = 481, + [6673] = 477, + [6674] = 6547, + [6675] = 489, + [6676] = 6547, + [6677] = 6677, [6678] = 6678, - [6679] = 6463, - [6680] = 6548, - [6681] = 6681, - [6682] = 6548, - [6683] = 6548, - [6684] = 6548, - [6685] = 6548, + [6679] = 6547, + [6680] = 498, + [6681] = 6547, + [6682] = 6682, + [6683] = 6683, + [6684] = 6588, + [6685] = 6685, [6686] = 6547, - [6687] = 6548, - [6688] = 6548, + [6687] = 6547, + [6688] = 6688, [6689] = 6689, - [6690] = 6690, - [6691] = 6548, - [6692] = 6548, - [6693] = 6548, - [6694] = 6694, - [6695] = 6695, + [6690] = 6547, + [6691] = 6691, + [6692] = 486, + [6693] = 6693, + [6694] = 6547, + [6695] = 6547, [6696] = 6547, - [6697] = 6548, - [6698] = 6548, - [6699] = 6548, + [6697] = 483, + [6698] = 6547, + [6699] = 485, [6700] = 6700, - [6701] = 6548, - [6702] = 6702, - [6703] = 6703, - [6704] = 6547, - [6705] = 6547, - [6706] = 6706, - [6707] = 6707, - [6708] = 6548, - [6709] = 6709, - [6710] = 6710, - [6711] = 6711, - [6712] = 6548, - [6713] = 6713, - [6714] = 6714, - [6715] = 6548, - [6716] = 6716, - [6717] = 6547, - [6718] = 6558, + [6701] = 6570, + [6702] = 486, + [6703] = 6547, + [6704] = 6704, + [6705] = 6588, + [6706] = 6547, + [6707] = 6547, + [6708] = 6547, + [6709] = 6588, + [6710] = 6547, + [6711] = 6547, + [6712] = 6547, + [6713] = 6588, + [6714] = 6567, + [6715] = 6715, + [6716] = 6588, + [6717] = 6717, + [6718] = 6547, [6719] = 6719, - [6720] = 6548, - [6721] = 6548, + [6720] = 6547, + [6721] = 6570, [6722] = 6722, - [6723] = 6548, - [6724] = 6548, - [6725] = 6725, + [6723] = 6547, + [6724] = 6547, + [6725] = 6581, [6726] = 6726, - [6727] = 6726, - [6728] = 6531, - [6729] = 6729, + [6727] = 6727, + [6728] = 2923, + [6729] = 6521, [6730] = 6730, - [6731] = 6726, - [6732] = 6730, - [6733] = 2930, - [6734] = 2931, - [6735] = 2636, - [6736] = 6726, - [6737] = 6726, - [6738] = 6531, + [6731] = 6730, + [6732] = 6732, + [6733] = 6730, + [6734] = 480, + [6735] = 6735, + [6736] = 6730, + [6737] = 6730, + [6738] = 6738, [6739] = 6726, - [6740] = 476, - [6741] = 6481, - [6742] = 6481, - [6743] = 6743, - [6744] = 6743, - [6745] = 6730, - [6746] = 6726, - [6747] = 6747, - [6748] = 6748, + [6740] = 6534, + [6741] = 6741, + [6742] = 6742, + [6743] = 483, + [6744] = 6730, + [6745] = 6534, + [6746] = 6730, + [6747] = 6742, + [6748] = 6730, [6749] = 6749, - [6750] = 6726, + [6750] = 2722, [6751] = 6726, - [6752] = 6729, - [6753] = 490, - [6754] = 6726, + [6752] = 6730, + [6753] = 6753, + [6754] = 6742, [6755] = 6755, - [6756] = 6726, - [6757] = 6726, - [6758] = 6726, - [6759] = 6726, - [6760] = 6726, - [6761] = 489, - [6762] = 6493, - [6763] = 6743, - [6764] = 6764, - [6765] = 481, - [6766] = 2724, - [6767] = 487, - [6768] = 6493, - [6769] = 6726, - [6770] = 6743, - [6771] = 6726, + [6756] = 6730, + [6757] = 6730, + [6758] = 6730, + [6759] = 2845, + [6760] = 2860, + [6761] = 476, + [6762] = 2716, + [6763] = 6763, + [6764] = 6741, + [6765] = 6730, + [6766] = 6730, + [6767] = 485, + [6768] = 6742, + [6769] = 6730, + [6770] = 6730, + [6771] = 6730, [6772] = 6726, - [6773] = 6726, - [6774] = 6726, + [6773] = 6503, + [6774] = 6730, [6775] = 6775, - [6776] = 2929, - [6777] = 6729, - [6778] = 2926, - [6779] = 6779, - [6780] = 6780, - [6781] = 6726, + [6776] = 6741, + [6777] = 6777, + [6778] = 2915, + [6779] = 6730, + [6780] = 6741, + [6781] = 486, [6782] = 6782, - [6783] = 6730, - [6784] = 6784, - [6785] = 6729, - [6786] = 6726, - [6787] = 6787, + [6783] = 6521, + [6784] = 6730, + [6785] = 6730, + [6786] = 6786, + [6787] = 6730, [6788] = 6788, - [6789] = 6789, - [6790] = 6726, - [6791] = 6791, + [6789] = 6503, + [6790] = 6790, + [6791] = 6730, [6792] = 6792, [6793] = 6793, [6794] = 6794, [6795] = 6795, [6796] = 6796, - [6797] = 6793, + [6797] = 6792, [6798] = 6798, [6799] = 6799, [6800] = 6800, [6801] = 6801, - [6802] = 6793, - [6803] = 6793, - [6804] = 6801, + [6802] = 6794, + [6803] = 6803, + [6804] = 6804, [6805] = 6805, [6806] = 6806, - [6807] = 6800, - [6808] = 6795, - [6809] = 6799, - [6810] = 6800, - [6811] = 6793, - [6812] = 6793, - [6813] = 6805, - [6814] = 6814, - [6815] = 6799, - [6816] = 6794, - [6817] = 6814, - [6818] = 6801, - [6819] = 6795, - [6820] = 6793, - [6821] = 6801, - [6822] = 6795, + [6807] = 6807, + [6808] = 6793, + [6809] = 6794, + [6810] = 6801, + [6811] = 6804, + [6812] = 6792, + [6813] = 6798, + [6814] = 6792, + [6815] = 6804, + [6816] = 6805, + [6817] = 6793, + [6818] = 6798, + [6819] = 6801, + [6820] = 6820, + [6821] = 6804, + [6822] = 6822, [6823] = 6794, - [6824] = 6824, - [6825] = 6825, - [6826] = 6826, - [6827] = 6794, - [6828] = 6814, + [6824] = 6794, + [6825] = 6792, + [6826] = 6798, + [6827] = 6805, + [6828] = 6801, [6829] = 6793, - [6830] = 6814, - [6831] = 6799, - [6832] = 6800, - [6833] = 6833, + [6830] = 6830, + [6831] = 6804, + [6832] = 6805, + [6833] = 6793, [6834] = 6834, [6835] = 6835, - [6836] = 6836, - [6837] = 6792, - [6838] = 6793, - [6839] = 6806, - [6840] = 6795, - [6841] = 6800, - [6842] = 6800, - [6843] = 6843, - [6844] = 6844, - [6845] = 6796, - [6846] = 6793, - [6847] = 6793, - [6848] = 6805, - [6849] = 6799, - [6850] = 6795, + [6836] = 6792, + [6837] = 6801, + [6838] = 6798, + [6839] = 6792, + [6840] = 6798, + [6841] = 6841, + [6842] = 6804, + [6843] = 6805, + [6844] = 6793, + [6845] = 6792, + [6846] = 6801, + [6847] = 6798, + [6848] = 6792, + [6849] = 6849, + [6850] = 6794, [6851] = 6851, - [6852] = 6814, - [6853] = 6836, - [6854] = 6794, - [6855] = 6795, - [6856] = 6793, - [6857] = 6801, - [6858] = 6814, - [6859] = 6801, - [6860] = 6800, - [6861] = 6799, - [6862] = 6862, - [6863] = 6794, - [6864] = 6795, - [6865] = 6793, - [6866] = 6835, - [6867] = 6801, - [6868] = 6836, - [6869] = 6814, - [6870] = 6792, - [6871] = 6806, - [6872] = 6801, - [6873] = 6843, - [6874] = 6793, - [6875] = 6844, - [6876] = 6876, - [6877] = 6795, + [6852] = 6841, + [6853] = 6849, + [6854] = 6798, + [6855] = 6801, + [6856] = 6804, + [6857] = 6857, + [6858] = 6792, + [6859] = 6798, + [6860] = 6860, + [6861] = 6804, + [6862] = 6805, + [6863] = 6863, + [6864] = 6801, + [6865] = 6805, + [6866] = 6792, + [6867] = 6798, + [6868] = 6793, + [6869] = 6804, + [6870] = 6805, + [6871] = 6793, + [6872] = 6793, + [6873] = 6801, + [6874] = 6805, + [6875] = 6875, + [6876] = 6794, + [6877] = 6794, [6878] = 6794, - [6879] = 6799, - [6880] = 6795, - [6881] = 6794, - [6882] = 6882, - [6883] = 6793, + [6879] = 6794, + [6880] = 6880, + [6881] = 6881, + [6882] = 6801, + [6883] = 6804, [6884] = 6884, - [6885] = 6814, + [6885] = 6805, [6886] = 6886, - [6887] = 6793, - [6888] = 6799, - [6889] = 6805, + [6887] = 6887, + [6888] = 6888, + [6889] = 6889, [6890] = 6890, - [6891] = 6800, - [6892] = 6793, - [6893] = 6801, - [6894] = 6894, - [6895] = 6800, - [6896] = 6801, - [6897] = 6794, - [6898] = 6898, - [6899] = 6795, - [6900] = 6800, + [6891] = 6801, + [6892] = 6892, + [6893] = 6792, + [6894] = 6798, + [6895] = 6794, + [6896] = 6804, + [6897] = 6805, + [6898] = 6793, + [6899] = 6793, + [6900] = 6801, [6901] = 6793, - [6902] = 6799, - [6903] = 6794, - [6904] = 6800, - [6905] = 6794, - [6906] = 6799, - [6907] = 6795, - [6908] = 6800, + [6902] = 6902, + [6903] = 6903, + [6904] = 6794, + [6905] = 6905, + [6906] = 6906, + [6907] = 6792, + [6908] = 6908, [6909] = 6801, - [6910] = 6793, - [6911] = 6795, - [6912] = 6814, + [6910] = 6910, + [6911] = 6911, + [6912] = 6801, [6913] = 6913, - [6914] = 6914, - [6915] = 6801, - [6916] = 6814, - [6917] = 6914, - [6918] = 6799, - [6919] = 6793, - [6920] = 6913, - [6921] = 6921, - [6922] = 6800, - [6923] = 6923, - [6924] = 6799, - [6925] = 6800, + [6914] = 6792, + [6915] = 6798, + [6916] = 6916, + [6917] = 6916, + [6918] = 6801, + [6919] = 6804, + [6920] = 6792, + [6921] = 6798, + [6922] = 6805, + [6923] = 6804, + [6924] = 6805, + [6925] = 6801, [6926] = 6793, - [6927] = 6799, - [6928] = 6835, + [6927] = 6906, + [6928] = 6793, [6929] = 6794, - [6930] = 6794, - [6931] = 6836, - [6932] = 6795, - [6933] = 6793, - [6934] = 6795, - [6935] = 6792, - [6936] = 6806, - [6937] = 6801, - [6938] = 6801, - [6939] = 6843, - [6940] = 6793, - [6941] = 6844, - [6942] = 6942, - [6943] = 6794, - [6944] = 6843, - [6945] = 6844, - [6946] = 6946, - [6947] = 6793, - [6948] = 6882, - [6949] = 6814, - [6950] = 6884, - [6951] = 6799, - [6952] = 6886, - [6953] = 6793, - [6954] = 6793, - [6955] = 6805, - [6956] = 6890, + [6930] = 6798, + [6931] = 6875, + [6932] = 6801, + [6933] = 6794, + [6934] = 6804, + [6935] = 6935, + [6936] = 6804, + [6937] = 6805, + [6938] = 6938, + [6939] = 6801, + [6940] = 6940, + [6941] = 6805, + [6942] = 6792, + [6943] = 6798, + [6944] = 6793, + [6945] = 6804, + [6946] = 6801, + [6947] = 6805, + [6948] = 6793, + [6949] = 6794, + [6950] = 6950, + [6951] = 6951, + [6952] = 6794, + [6953] = 6801, + [6954] = 6954, + [6955] = 6955, + [6956] = 6956, [6957] = 6957, [6958] = 6958, [6959] = 6959, - [6960] = 6960, - [6961] = 6793, - [6962] = 6834, - [6963] = 6801, - [6964] = 6964, - [6965] = 6965, + [6960] = 6801, + [6961] = 6961, + [6962] = 6794, + [6963] = 6792, + [6964] = 6792, + [6965] = 6798, [6966] = 6966, - [6967] = 6967, - [6968] = 6793, - [6969] = 6833, - [6970] = 6894, - [6971] = 6814, - [6972] = 6972, - [6973] = 6973, - [6974] = 6974, - [6975] = 6793, - [6976] = 6794, - [6977] = 6977, + [6967] = 6801, + [6968] = 6804, + [6969] = 6805, + [6970] = 6793, + [6971] = 6841, + [6972] = 6798, + [6973] = 6794, + [6974] = 6801, + [6975] = 6975, + [6976] = 6804, + [6977] = 6805, [6978] = 6978, - [6979] = 6979, + [6979] = 6793, [6980] = 6980, - [6981] = 6981, - [6982] = 6793, - [6983] = 6799, - [6984] = 6800, + [6981] = 6801, + [6982] = 6982, + [6983] = 6849, + [6984] = 6794, [6985] = 6985, - [6986] = 6986, - [6987] = 6987, - [6988] = 6988, - [6989] = 6793, - [6990] = 6834, - [6991] = 6991, - [6992] = 6992, - [6993] = 6993, - [6994] = 6994, - [6995] = 6995, + [6986] = 6792, + [6987] = 6798, + [6988] = 6801, + [6989] = 6805, + [6990] = 6804, + [6991] = 6805, + [6992] = 6985, + [6993] = 6793, + [6994] = 6881, + [6995] = 6801, [6996] = 6793, - [6997] = 6997, - [6998] = 6836, - [6999] = 6999, - [7000] = 7000, - [7001] = 7001, - [7002] = 7002, - [7003] = 6793, - [7004] = 6862, - [7005] = 6851, + [6997] = 6794, + [6998] = 6980, + [6999] = 6792, + [7000] = 6957, + [7001] = 6792, + [7002] = 6801, + [7003] = 6798, + [7004] = 6800, + [7005] = 6798, [7006] = 7006, - [7007] = 6824, - [7008] = 7008, - [7009] = 6826, - [7010] = 6793, - [7011] = 6796, - [7012] = 6921, - [7013] = 6923, - [7014] = 7014, - [7015] = 6814, - [7016] = 6942, - [7017] = 6793, - [7018] = 6833, - [7019] = 6814, - [7020] = 7020, - [7021] = 6898, - [7022] = 7022, - [7023] = 7023, - [7024] = 6793, - [7025] = 7025, - [7026] = 7026, - [7027] = 7027, - [7028] = 6835, - [7029] = 7029, - [7030] = 6835, - [7031] = 6793, - [7032] = 6801, - [7033] = 6795, - [7034] = 6795, - [7035] = 6898, - [7036] = 6792, - [7037] = 7037, - [7038] = 6793, - [7039] = 6806, - [7040] = 6794, - [7041] = 6843, - [7042] = 6844, - [7043] = 6794, - [7044] = 6997, - [7045] = 6793, - [7046] = 6800, - [7047] = 6799, - [7048] = 6799, - [7049] = 7020, - [7050] = 6794, - [7051] = 6800, - [7052] = 6793, - [7053] = 6914, - [7054] = 6814, - [7055] = 6882, - [7056] = 6991, - [7057] = 6884, - [7058] = 6795, - [7059] = 6793, - [7060] = 6801, - [7061] = 6886, - [7062] = 6793, - [7063] = 6805, - [7064] = 6890, - [7065] = 7065, - [7066] = 6793, - [7067] = 6801, - [7068] = 6894, - [7069] = 6981, - [7070] = 6795, - [7071] = 6814, - [7072] = 6795, - [7073] = 6793, - [7074] = 6814, - [7075] = 6794, - [7076] = 6814, - [7077] = 6794, - [7078] = 6799, - [7079] = 6795, - [7080] = 6793, - [7081] = 6799, - [7082] = 6800, - [7083] = 6794, - [7084] = 6799, - [7085] = 6795, - [7086] = 6794, + [7007] = 6804, + [7008] = 6792, + [7009] = 6801, + [7010] = 6798, + [7011] = 7011, + [7012] = 6804, + [7013] = 6805, + [7014] = 6793, + [7015] = 6792, + [7016] = 6801, + [7017] = 6805, + [7018] = 6794, + [7019] = 7019, + [7020] = 6793, + [7021] = 6798, + [7022] = 6892, + [7023] = 6801, + [7024] = 6792, + [7025] = 6798, + [7026] = 6804, + [7027] = 6804, + [7028] = 6805, + [7029] = 6792, + [7030] = 6801, + [7031] = 6798, + [7032] = 6793, + [7033] = 6804, + [7034] = 6805, + [7035] = 6793, + [7036] = 6804, + [7037] = 6801, + [7038] = 6805, + [7039] = 6794, + [7040] = 6793, + [7041] = 6794, + [7042] = 7042, + [7043] = 6955, + [7044] = 6801, + [7045] = 6805, + [7046] = 6794, + [7047] = 6794, + [7048] = 6793, + [7049] = 7049, + [7050] = 6792, + [7051] = 6801, + [7052] = 6798, + [7053] = 6982, + [7054] = 6804, + [7055] = 6805, + [7056] = 6793, + [7057] = 7057, + [7058] = 6801, + [7059] = 6958, + [7060] = 7060, + [7061] = 6794, + [7062] = 6820, + [7063] = 6906, + [7064] = 6957, + [7065] = 6801, + [7066] = 6795, + [7067] = 6793, + [7068] = 7068, + [7069] = 6792, + [7070] = 6798, + [7071] = 6792, + [7072] = 6801, + [7073] = 6798, + [7074] = 7074, + [7075] = 6804, + [7076] = 7076, + [7077] = 6957, + [7078] = 6794, + [7079] = 6801, + [7080] = 6805, + [7081] = 6793, + [7082] = 6830, + [7083] = 6804, + [7084] = 6794, + [7085] = 6805, + [7086] = 6801, [7087] = 6793, - [7088] = 6799, - [7089] = 6800, - [7090] = 6814, - [7091] = 6795, - [7092] = 6801, - [7093] = 6795, - [7094] = 6793, - [7095] = 6795, - [7096] = 6794, - [7097] = 6799, - [7098] = 6801, - [7099] = 6795, - [7100] = 6794, - [7101] = 6793, - [7102] = 7102, - [7103] = 6799, - [7104] = 6800, - [7105] = 6800, - [7106] = 6814, - [7107] = 6795, - [7108] = 6793, - [7109] = 6794, + [7088] = 6794, + [7089] = 6908, + [7090] = 6794, + [7091] = 7091, + [7092] = 7092, + [7093] = 6801, + [7094] = 6985, + [7095] = 6792, + [7096] = 6888, + [7097] = 6792, + [7098] = 6798, + [7099] = 6798, + [7100] = 6801, + [7101] = 6804, + [7102] = 6805, + [7103] = 6793, + [7104] = 6889, + [7105] = 6957, + [7106] = 6985, + [7107] = 6801, + [7108] = 6794, + [7109] = 7109, [7110] = 6794, - [7111] = 6799, - [7112] = 6800, - [7113] = 6800, - [7114] = 6981, - [7115] = 6793, - [7116] = 6814, - [7117] = 6914, - [7118] = 6795, - [7119] = 6794, - [7120] = 6801, - [7121] = 6913, - [7122] = 6793, - [7123] = 6795, - [7124] = 6794, - [7125] = 6799, - [7126] = 6800, - [7127] = 6799, - [7128] = 6800, - [7129] = 6793, - [7130] = 6795, - [7131] = 6800, - [7132] = 6794, - [7133] = 6799, - [7134] = 6991, - [7135] = 6800, - [7136] = 6793, - [7137] = 6800, - [7138] = 6795, - [7139] = 6794, - [7140] = 6799, - [7141] = 6800, - [7142] = 6826, - [7143] = 6793, - [7144] = 6799, - [7145] = 6814, - [7146] = 6800, - [7147] = 6799, - [7148] = 6799, - [7149] = 6814, - [7150] = 6793, - [7151] = 6795, - [7152] = 6794, - [7153] = 6794, - [7154] = 6801, - [7155] = 6795, - [7156] = 6794, - [7157] = 6793, - [7158] = 6795, - [7159] = 6913, - [7160] = 6799, - [7161] = 6799, - [7162] = 6800, - [7163] = 6800, - [7164] = 6793, - [7165] = 6801, - [7166] = 6795, + [7111] = 6794, + [7112] = 6985, + [7113] = 6792, + [7114] = 6801, + [7115] = 6798, + [7116] = 6792, + [7117] = 6798, + [7118] = 7118, + [7119] = 6792, + [7120] = 6798, + [7121] = 6801, + [7122] = 6804, + [7123] = 6804, + [7124] = 6805, + [7125] = 6793, + [7126] = 6804, + [7127] = 6805, + [7128] = 6801, + [7129] = 6794, + [7130] = 6793, + [7131] = 6793, + [7132] = 6804, + [7133] = 6794, + [7134] = 6805, + [7135] = 6801, + [7136] = 6792, + [7137] = 6798, + [7138] = 6793, + [7139] = 6805, + [7140] = 6792, + [7141] = 6798, + [7142] = 6801, + [7143] = 6804, + [7144] = 6804, + [7145] = 6805, + [7146] = 6793, + [7147] = 6793, + [7148] = 6805, + [7149] = 6801, + [7150] = 6794, + [7151] = 6793, + [7152] = 6880, + [7153] = 6910, + [7154] = 7154, + [7155] = 6792, + [7156] = 6801, + [7157] = 6792, + [7158] = 6798, + [7159] = 6798, + [7160] = 6792, + [7161] = 6798, + [7162] = 6804, + [7163] = 6801, + [7164] = 6804, + [7165] = 6805, + [7166] = 6793, [7167] = 6801, - [7168] = 6794, - [7169] = 6799, - [7170] = 6800, + [7168] = 6805, + [7169] = 6794, + [7170] = 6801, [7171] = 6793, - [7172] = 6814, - [7173] = 6795, + [7172] = 6805, + [7173] = 6794, [7174] = 6794, - [7175] = 6799, - [7176] = 6814, - [7177] = 6833, - [7178] = 6793, - [7179] = 6800, - [7180] = 6795, - [7181] = 6834, - [7182] = 6794, - [7183] = 6801, - [7184] = 6800, - [7185] = 6793, - [7186] = 6799, - [7187] = 6800, - [7188] = 6913, - [7189] = 6795, - [7190] = 6794, - [7191] = 6814, - [7192] = 6793, - [7193] = 6834, - [7194] = 6799, - [7195] = 6799, - [7196] = 6800, - [7197] = 6800, - [7198] = 6833, - [7199] = 6793, - [7200] = 6799, - [7201] = 6795, - [7202] = 6794, - [7203] = 6794, - [7204] = 6799, - [7205] = 7205, - [7206] = 6793, - [7207] = 6800, - [7208] = 6794, - [7209] = 6794, - [7210] = 6801, - [7211] = 6795, - [7212] = 6795, + [7175] = 6794, + [7176] = 7176, + [7177] = 6801, + [7178] = 6804, + [7179] = 6805, + [7180] = 6793, + [7181] = 6792, + [7182] = 6798, + [7183] = 6792, + [7184] = 6801, + [7185] = 6804, + [7186] = 6805, + [7187] = 6793, + [7188] = 6798, + [7189] = 6880, + [7190] = 6955, + [7191] = 6801, + [7192] = 6794, + [7193] = 6958, + [7194] = 6792, + [7195] = 7195, + [7196] = 7196, + [7197] = 7197, + [7198] = 6801, + [7199] = 6792, + [7200] = 6798, + [7201] = 6792, + [7202] = 6798, + [7203] = 6875, + [7204] = 6980, + [7205] = 6801, + [7206] = 6804, + [7207] = 6805, + [7208] = 6982, + [7209] = 6804, + [7210] = 6805, + [7211] = 7211, + [7212] = 6801, [7213] = 6793, - [7214] = 6794, - [7215] = 6795, - [7216] = 6795, - [7217] = 6799, - [7218] = 7218, + [7214] = 6796, + [7215] = 6881, + [7216] = 6794, + [7217] = 6792, + [7218] = 6798, [7219] = 6800, - [7220] = 7220, - [7221] = 7221, + [7220] = 6804, + [7221] = 6805, [7222] = 7222, [7223] = 7223, - [7224] = 6801, - [7225] = 7225, - [7226] = 6814, - [7227] = 6794, - [7228] = 6795, - [7229] = 6794, - [7230] = 6801, - [7231] = 6799, - [7232] = 7232, - [7233] = 7233, - [7234] = 7234, - [7235] = 7235, - [7236] = 7236, - [7237] = 7237, - [7238] = 7238, - [7239] = 7239, + [7224] = 7224, + [7225] = 6804, + [7226] = 6887, + [7227] = 6820, + [7228] = 6792, + [7229] = 6798, + [7230] = 6792, + [7231] = 6804, + [7232] = 6792, + [7233] = 6805, + [7234] = 6798, + [7235] = 6792, + [7236] = 6798, + [7237] = 6888, + [7238] = 6804, + [7239] = 6805, [7240] = 7240, - [7241] = 7241, - [7242] = 7242, - [7243] = 7243, - [7244] = 6814, - [7245] = 6800, - [7246] = 6799, - [7247] = 6814, - [7248] = 6814, - [7249] = 6801, - [7250] = 6794, - [7251] = 7251, - [7252] = 6795, - [7253] = 6794, - [7254] = 6799, - [7255] = 6800, - [7256] = 6799, - [7257] = 6800, - [7258] = 6882, - [7259] = 6884, - [7260] = 6800, - [7261] = 6800, - [7262] = 6799, - [7263] = 6814, - [7264] = 6801, - [7265] = 7265, - [7266] = 6795, - [7267] = 6794, - [7268] = 6894, - [7269] = 7269, - [7270] = 6799, - [7271] = 6800, - [7272] = 7272, - [7273] = 6890, - [7274] = 7274, - [7275] = 6997, - [7276] = 6814, - [7277] = 6794, - [7278] = 6814, - [7279] = 6801, - [7280] = 6795, - [7281] = 6814, - [7282] = 6794, - [7283] = 6799, - [7284] = 6800, - [7285] = 7285, - [7286] = 6801, - [7287] = 6814, - [7288] = 6801, - [7289] = 6795, - [7290] = 6794, - [7291] = 6923, - [7292] = 7205, - [7293] = 6914, - [7294] = 6801, - [7295] = 6799, - [7296] = 6800, - [7297] = 6814, - [7298] = 6800, - [7299] = 6799, - [7300] = 6795, - [7301] = 6794, - [7302] = 7302, - [7303] = 7303, - [7304] = 6801, - [7305] = 6795, - [7306] = 6799, - [7307] = 6794, - [7308] = 6800, - [7309] = 6814, - [7310] = 6801, - [7311] = 6795, - [7312] = 6799, - [7313] = 6800, - [7314] = 6794, - [7315] = 6942, - [7316] = 6799, - [7317] = 6800, - [7318] = 6913, - [7319] = 6794, - [7320] = 6921, - [7321] = 6795, - [7322] = 6814, - [7323] = 6795, - [7324] = 6814, - [7325] = 6801, - [7326] = 6886, - [7327] = 6795, - [7328] = 6794, - [7329] = 6799, - [7330] = 6793, - [7331] = 6800, - [7332] = 6800, - [7333] = 6801, - [7334] = 6801, - [7335] = 6795, - [7336] = 6799, - [7337] = 6814, - [7338] = 6801, - [7339] = 6795, - [7340] = 6794, - [7341] = 6799, - [7342] = 6794, - [7343] = 6814, - [7344] = 6805, - [7345] = 6800, - [7346] = 6814, - [7347] = 6795, - [7348] = 6800, - [7349] = 7274, - [7350] = 6914, - [7351] = 6814, - [7352] = 6890, - [7353] = 6801, - [7354] = 6795, - [7355] = 6794, - [7356] = 6799, - [7357] = 6801, - [7358] = 6795, - [7359] = 6794, - [7360] = 6799, - [7361] = 6800, - [7362] = 6834, - [7363] = 6833, - [7364] = 6801, - [7365] = 6814, - [7366] = 6801, - [7367] = 6795, - [7368] = 6794, - [7369] = 6801, - [7370] = 6795, - [7371] = 6794, - [7372] = 6799, - [7373] = 6800, - [7374] = 6800, - [7375] = 6799, - [7376] = 6814, - [7377] = 6800, - [7378] = 6799, - [7379] = 6799, - [7380] = 6800, - [7381] = 6814, - [7382] = 6801, + [7241] = 6798, + [7242] = 6793, + [7243] = 6804, + [7244] = 6805, + [7245] = 6798, + [7246] = 6804, + [7247] = 6794, + [7248] = 6805, + [7249] = 6793, + [7250] = 6889, + [7251] = 6792, + [7252] = 6798, + [7253] = 6805, + [7254] = 6804, + [7255] = 6805, + [7256] = 6794, + [7257] = 6804, + [7258] = 6805, + [7259] = 6910, + [7260] = 6794, + [7261] = 6792, + [7262] = 6792, + [7263] = 6793, + [7264] = 7076, + [7265] = 6798, + [7266] = 6798, + [7267] = 6863, + [7268] = 7268, + [7269] = 6804, + [7270] = 6805, + [7271] = 7271, + [7272] = 6908, + [7273] = 7068, + [7274] = 6804, + [7275] = 6805, + [7276] = 6793, + [7277] = 6793, + [7278] = 6792, + [7279] = 6798, + [7280] = 6830, + [7281] = 6804, + [7282] = 6805, + [7283] = 6794, + [7284] = 6978, + [7285] = 6892, + [7286] = 6794, + [7287] = 7287, + [7288] = 6792, + [7289] = 6798, + [7290] = 6905, + [7291] = 6951, + [7292] = 6804, + [7293] = 6805, + [7294] = 6792, + [7295] = 6798, + [7296] = 6978, + [7297] = 6863, + [7298] = 6957, + [7299] = 6792, + [7300] = 6792, + [7301] = 6798, + [7302] = 6798, + [7303] = 6804, + [7304] = 6805, + [7305] = 7305, + [7306] = 6804, + [7307] = 6805, + [7308] = 6793, + [7309] = 6982, + [7310] = 6792, + [7311] = 6798, + [7312] = 7312, + [7313] = 6804, + [7314] = 6805, + [7315] = 6794, + [7316] = 6887, + [7317] = 6801, + [7318] = 6804, + [7319] = 6792, + [7320] = 6798, + [7321] = 6792, + [7322] = 6798, + [7323] = 6880, + [7324] = 6804, + [7325] = 6805, + [7326] = 6804, + [7327] = 6805, + [7328] = 6793, + [7329] = 6805, + [7330] = 6792, + [7331] = 6792, + [7332] = 6798, + [7333] = 6798, + [7334] = 6804, + [7335] = 6805, + [7336] = 6793, + [7337] = 6913, + [7338] = 6794, + [7339] = 6804, + [7340] = 6805, + [7341] = 6793, + [7342] = 6795, + [7343] = 6792, + [7344] = 6798, + [7345] = 6875, + [7346] = 6804, + [7347] = 6805, + [7348] = 6794, + [7349] = 6804, + [7350] = 6794, + [7351] = 6794, + [7352] = 6887, + [7353] = 6792, + [7354] = 6792, + [7355] = 6798, + [7356] = 6798, + [7357] = 6804, + [7358] = 6805, + [7359] = 6820, + [7360] = 6798, + [7361] = 6830, + [7362] = 6804, + [7363] = 6805, + [7364] = 6798, + [7365] = 7365, + [7366] = 6804, + [7367] = 6805, + [7368] = 6958, + [7369] = 7369, + [7370] = 6792, + [7371] = 6798, + [7372] = 6863, + [7373] = 6978, + [7374] = 6804, + [7375] = 6805, + [7376] = 6793, + [7377] = 6820, + [7378] = 6910, + [7379] = 7379, + [7380] = 6794, + [7381] = 6801, + [7382] = 7382, [7383] = 6795, - [7384] = 6794, - [7385] = 6799, - [7386] = 6800, - [7387] = 6814, - [7388] = 6801, - [7389] = 7265, - [7390] = 6795, - [7391] = 6794, - [7392] = 6894, - [7393] = 7269, - [7394] = 6799, - [7395] = 6800, - [7396] = 6890, - [7397] = 7274, - [7398] = 6800, - [7399] = 6794, - [7400] = 6795, - [7401] = 7205, - [7402] = 6991, - [7403] = 6799, - [7404] = 6814, - [7405] = 6801, - [7406] = 6814, - [7407] = 6801, - [7408] = 6913, - [7409] = 6795, - [7410] = 6794, - [7411] = 6799, - [7412] = 6800, - [7413] = 6997, + [7384] = 6804, + [7385] = 6796, + [7386] = 6888, + [7387] = 6805, + [7388] = 7076, + [7389] = 6822, + [7390] = 7390, + [7391] = 6863, + [7392] = 7268, + [7393] = 6985, + [7394] = 6792, + [7395] = 6908, + [7396] = 7068, + [7397] = 6798, + [7398] = 6822, + [7399] = 6792, + [7400] = 6951, + [7401] = 6908, + [7402] = 6910, + [7403] = 6801, + [7404] = 6798, + [7405] = 6913, + [7406] = 6804, + [7407] = 6804, + [7408] = 6916, + [7409] = 6906, + [7410] = 6805, + [7411] = 6793, + [7412] = 6793, + [7413] = 6805, [7414] = 6794, - [7415] = 6814, - [7416] = 6862, - [7417] = 6862, - [7418] = 6801, - [7419] = 6795, + [7415] = 6793, + [7416] = 7416, + [7417] = 6889, + [7418] = 6955, + [7419] = 6958, [7420] = 6794, - [7421] = 6799, - [7422] = 6800, - [7423] = 6795, - [7424] = 6801, - [7425] = 6814, - [7426] = 6801, - [7427] = 6914, - [7428] = 6801, - [7429] = 6795, - [7430] = 6794, - [7431] = 6795, - [7432] = 6799, - [7433] = 6800, - [7434] = 6794, - [7435] = 6814, - [7436] = 6799, - [7437] = 6800, - [7438] = 6801, - [7439] = 7269, - [7440] = 6851, - [7441] = 6914, - [7442] = 6814, - [7443] = 6814, - [7444] = 6913, - [7445] = 6801, - [7446] = 6795, - [7447] = 6794, - [7448] = 6799, - [7449] = 6800, - [7450] = 6814, - [7451] = 6824, - [7452] = 6814, - [7453] = 6814, - [7454] = 6801, - [7455] = 6795, - [7456] = 6801, - [7457] = 6795, - [7458] = 6794, - [7459] = 6794, - [7460] = 6799, - [7461] = 6800, - [7462] = 6801, - [7463] = 6799, - [7464] = 6800, - [7465] = 6826, - [7466] = 6796, - [7467] = 6795, - [7468] = 6814, - [7469] = 7469, - [7470] = 7470, - [7471] = 6801, - [7472] = 6795, - [7473] = 6794, - [7474] = 6794, - [7475] = 6799, - [7476] = 6800, - [7477] = 7477, - [7478] = 6981, - [7479] = 7265, - [7480] = 6921, - [7481] = 6814, - [7482] = 6894, - [7483] = 7269, - [7484] = 6801, - [7485] = 6795, - [7486] = 6890, - [7487] = 7274, - [7488] = 6794, - [7489] = 7020, - [7490] = 6814, - [7491] = 7205, - [7492] = 6799, - [7493] = 6800, - [7494] = 6923, - [7495] = 6942, - [7496] = 6814, - [7497] = 6801, - [7498] = 6795, - [7499] = 6794, - [7500] = 6799, - [7501] = 6800, - [7502] = 6801, - [7503] = 7020, - [7504] = 6898, - [7505] = 6814, - [7506] = 6801, - [7507] = 6795, - [7508] = 6794, - [7509] = 6799, - [7510] = 6800, - [7511] = 6894, - [7512] = 7269, - [7513] = 6890, - [7514] = 7274, - [7515] = 6795, - [7516] = 6894, - [7517] = 7205, - [7518] = 6794, - [7519] = 6796, - [7520] = 6799, - [7521] = 6800, - [7522] = 6799, - [7523] = 6826, - [7524] = 6800, - [7525] = 6814, - [7526] = 6801, - [7527] = 6795, - [7528] = 6851, - [7529] = 6794, - [7530] = 7530, - [7531] = 6799, - [7532] = 6814, - [7533] = 6800, - [7534] = 6814, - [7535] = 6801, - [7536] = 6795, - [7537] = 7269, - [7538] = 7269, - [7539] = 7269, - [7540] = 7269, - [7541] = 7269, - [7542] = 7269, - [7543] = 7269, - [7544] = 7269, - [7545] = 7269, - [7546] = 7269, - [7547] = 7269, - [7548] = 7269, - [7549] = 7269, - [7550] = 7269, - [7551] = 7269, - [7552] = 7269, - [7553] = 7269, - [7554] = 7269, - [7555] = 7269, - [7556] = 7269, - [7557] = 7269, - [7558] = 7269, - [7559] = 7269, - [7560] = 7269, - [7561] = 7269, - [7562] = 7269, - [7563] = 7269, - [7564] = 7269, - [7565] = 7269, - [7566] = 7269, - [7567] = 7269, - [7568] = 7269, - [7569] = 7269, - [7570] = 7269, - [7571] = 7269, - [7572] = 7269, - [7573] = 7269, - [7574] = 7269, - [7575] = 7269, - [7576] = 7269, - [7577] = 7269, - [7578] = 7269, - [7579] = 7269, - [7580] = 7269, - [7581] = 7269, - [7582] = 7269, - [7583] = 7269, - [7584] = 7269, - [7585] = 7269, - [7586] = 7269, - [7587] = 7269, - [7588] = 7269, - [7589] = 7269, - [7590] = 7269, - [7591] = 7269, - [7592] = 7269, - [7593] = 7269, - [7594] = 7269, - [7595] = 7269, - [7596] = 7269, - [7597] = 7597, - [7598] = 6794, - [7599] = 6799, - [7600] = 6799, - [7601] = 6800, - [7602] = 6795, - [7603] = 6824, - [7604] = 7265, - [7605] = 7597, - [7606] = 6794, - [7607] = 7597, - [7608] = 7597, - [7609] = 7597, - [7610] = 7597, - [7611] = 7597, - [7612] = 7597, - [7613] = 7597, - [7614] = 7597, - [7615] = 7597, - [7616] = 7597, - [7617] = 7597, - [7618] = 7597, - [7619] = 7597, - [7620] = 7597, - [7621] = 7597, - [7622] = 7597, - [7623] = 7597, - [7624] = 7597, - [7625] = 7597, - [7626] = 7597, - [7627] = 7597, - [7628] = 7597, - [7629] = 7597, - [7630] = 7597, - [7631] = 7597, - [7632] = 7597, - [7633] = 7597, - [7634] = 7597, - [7635] = 7597, - [7636] = 7597, - [7637] = 7597, - [7638] = 7597, - [7639] = 7597, - [7640] = 7597, - [7641] = 7597, - [7642] = 7597, - [7643] = 7597, - [7644] = 7597, - [7645] = 7597, - [7646] = 7597, - [7647] = 7597, - [7648] = 7597, - [7649] = 7597, - [7650] = 7597, - [7651] = 7597, - [7652] = 7597, - [7653] = 7597, - [7654] = 7597, - [7655] = 7597, - [7656] = 7597, - [7657] = 7597, - [7658] = 7597, - [7659] = 7597, - [7660] = 7597, - [7661] = 7597, - [7662] = 7597, - [7663] = 7597, - [7664] = 7597, - [7665] = 7597, - [7666] = 7597, - [7667] = 7597, - [7668] = 7597, - [7669] = 7597, - [7670] = 7670, + [7421] = 7421, + [7422] = 7422, + [7423] = 6794, + [7424] = 7424, + [7425] = 6980, + [7426] = 6982, + [7427] = 6841, + [7428] = 6849, + [7429] = 6881, + [7430] = 6792, + [7431] = 6798, + [7432] = 6800, + [7433] = 7433, + [7434] = 6804, + [7435] = 6805, + [7436] = 6793, + [7437] = 6794, + [7438] = 6792, + [7439] = 6794, + [7440] = 6792, + [7441] = 6798, + [7442] = 7442, + [7443] = 7443, + [7444] = 6804, + [7445] = 6805, + [7446] = 6793, + [7447] = 7447, + [7448] = 6798, + [7449] = 6792, + [7450] = 6798, + [7451] = 6888, + [7452] = 6804, + [7453] = 6805, + [7454] = 6793, + [7455] = 6957, + [7456] = 6792, + [7457] = 6794, + [7458] = 6798, + [7459] = 6905, + [7460] = 6804, + [7461] = 6805, + [7462] = 6793, + [7463] = 7463, + [7464] = 6881, + [7465] = 6888, + [7466] = 6889, + [7467] = 6792, + [7468] = 6798, + [7469] = 6794, + [7470] = 6804, + [7471] = 6805, + [7472] = 7268, + [7473] = 6793, + [7474] = 6910, + [7475] = 6794, + [7476] = 6801, + [7477] = 6889, + [7478] = 7076, + [7479] = 6794, + [7480] = 7480, + [7481] = 6863, + [7482] = 7268, + [7483] = 7483, + [7484] = 6830, + [7485] = 6908, + [7486] = 7068, + [7487] = 7487, + [7488] = 7488, + [7489] = 6796, + [7490] = 6951, + [7491] = 6800, + [7492] = 6798, + [7493] = 6955, + [7494] = 6822, + [7495] = 6985, + [7496] = 6792, + [7497] = 6798, + [7498] = 6957, + [7499] = 6804, + [7500] = 6805, + [7501] = 6793, + [7502] = 6792, + [7503] = 6892, + [7504] = 6794, + [7505] = 6798, + [7506] = 6792, + [7507] = 6801, + [7508] = 6792, + [7509] = 6798, + [7510] = 6863, + [7511] = 7268, + [7512] = 6908, + [7513] = 7068, + [7514] = 6985, + [7515] = 6804, + [7516] = 6951, + [7517] = 6805, + [7518] = 6798, + [7519] = 6793, + [7520] = 6792, + [7521] = 6798, + [7522] = 6863, + [7523] = 6905, + [7524] = 6804, + [7525] = 6805, + [7526] = 7526, + [7527] = 7527, + [7528] = 6793, + [7529] = 7529, + [7530] = 6804, + [7531] = 6805, + [7532] = 6793, + [7533] = 6794, + [7534] = 6804, + [7535] = 6804, + [7536] = 7268, + [7537] = 7268, + [7538] = 7268, + [7539] = 7268, + [7540] = 7268, + [7541] = 7268, + [7542] = 7268, + [7543] = 7268, + [7544] = 7268, + [7545] = 7268, + [7546] = 7268, + [7547] = 7268, + [7548] = 7268, + [7549] = 7268, + [7550] = 7268, + [7551] = 7268, + [7552] = 7268, + [7553] = 7268, + [7554] = 7268, + [7555] = 7268, + [7556] = 7268, + [7557] = 7268, + [7558] = 7268, + [7559] = 7268, + [7560] = 7268, + [7561] = 7268, + [7562] = 7268, + [7563] = 7268, + [7564] = 7268, + [7565] = 7268, + [7566] = 7268, + [7567] = 7268, + [7568] = 7268, + [7569] = 7268, + [7570] = 7268, + [7571] = 7268, + [7572] = 7268, + [7573] = 7268, + [7574] = 7268, + [7575] = 7268, + [7576] = 7268, + [7577] = 7268, + [7578] = 7268, + [7579] = 7268, + [7580] = 7268, + [7581] = 7268, + [7582] = 7268, + [7583] = 7268, + [7584] = 7268, + [7585] = 7268, + [7586] = 7268, + [7587] = 7268, + [7588] = 7268, + [7589] = 7268, + [7590] = 7268, + [7591] = 7268, + [7592] = 7268, + [7593] = 7268, + [7594] = 7268, + [7595] = 7268, + [7596] = 7019, + [7597] = 6794, + [7598] = 6916, + [7599] = 6805, + [7600] = 6801, + [7601] = 6792, + [7602] = 6908, + [7603] = 6910, + [7604] = 7019, + [7605] = 6801, + [7606] = 6798, + [7607] = 7019, + [7608] = 7019, + [7609] = 7019, + [7610] = 7019, + [7611] = 7019, + [7612] = 7019, + [7613] = 7019, + [7614] = 7019, + [7615] = 7019, + [7616] = 7019, + [7617] = 7019, + [7618] = 7019, + [7619] = 7019, + [7620] = 7019, + [7621] = 7019, + [7622] = 7019, + [7623] = 7019, + [7624] = 7019, + [7625] = 7019, + [7626] = 7019, + [7627] = 7019, + [7628] = 7019, + [7629] = 7019, + [7630] = 7019, + [7631] = 7019, + [7632] = 7019, + [7633] = 7019, + [7634] = 7019, + [7635] = 7019, + [7636] = 7019, + [7637] = 7019, + [7638] = 7019, + [7639] = 7019, + [7640] = 7019, + [7641] = 7019, + [7642] = 7019, + [7643] = 7019, + [7644] = 7019, + [7645] = 7019, + [7646] = 7019, + [7647] = 7019, + [7648] = 7019, + [7649] = 7019, + [7650] = 7019, + [7651] = 7019, + [7652] = 7019, + [7653] = 7019, + [7654] = 7019, + [7655] = 7019, + [7656] = 7019, + [7657] = 7019, + [7658] = 7019, + [7659] = 7019, + [7660] = 7019, + [7661] = 7019, + [7662] = 7019, + [7663] = 7019, + [7664] = 7019, + [7665] = 7019, + [7666] = 7019, + [7667] = 7019, + [7668] = 7019, + [7669] = 6913, + [7670] = 6980, }; -static inline bool sym_word_character_set_1(int32_t c) { - return (c < '&' - ? (c < ' ' - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || (c < '$' - ? c == '"' - : c <= '$'))) - : (c <= ')' || (c < '[' - ? (c < '>' - ? (c >= ';' && c <= '<') - : c <= '>') - : (c <= ']' || (c < '{' - ? c == '`' - : c <= '}'))))); -} - -static inline bool sym_word_character_set_2(int32_t c) { - return (c < '&' - ? (c < ' ' - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || (c < '$' - ? c == '"' - : c <= '$'))) - : (c <= ')' || (c < '`' - ? (c < '[' - ? (c >= ';' && c <= '>') - : c <= ']') - : (c <= '`' || (c >= '{' && c <= '}'))))); -} - -static inline bool sym_word_character_set_3(int32_t c) { - return (c < '$' - ? (c < ' ' - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || c == '"')) - : (c <= ')' || (c < '`' - ? (c < '[' - ? (c >= ';' && c <= '>') - : c <= ']') - : (c <= '`' || (c >= '{' && c <= '}'))))); -} - -static inline bool sym_word_character_set_4(int32_t c) { - return (c < '&' - ? (c < ' ' - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || (c < '$' - ? c == '"' - : c <= '$'))) - : (c <= ')' || (c < '[' - ? (c < '>' - ? (c >= ';' && c <= '<') - : c <= '>') - : (c <= ']' || (c >= '`' && c <= '}'))))); -} - -static inline bool sym_word_character_set_5(int32_t c) { - return (c < ';' - ? (c < ' ' - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || (c < '&' - ? (c >= '"' && c <= '$') - : c <= ')'))) - : (c <= '<' || (c < '`' - ? (c < '[' - ? c == '>' - : c <= ']') - : (c <= '`' || (c >= '{' && c <= '}'))))); -} +static TSCharacterRange sym__comment_word_character_set_1[] = { + {0, 0x08}, {0x0e, 0x1f}, {'!', '!'}, {'#', '#'}, {'%', '%'}, {'*', ':'}, {'=', '='}, {'?', 'Z'}, + {'\\', '\\'}, {'^', '_'}, {'a', 'z'}, {'~', 0x10ffff}, +}; -static inline bool sym_word_character_set_6(int32_t c) { - return (c < '&' - ? (c < ' ' - ? (c < '\t' - ? c == 0 - : c <= '\r') - : (c <= ' ' || (c >= '"' && c <= '$'))) - : (c <= ')' || (c < '[' - ? (c < '>' - ? (c >= ';' && c <= '<') - : c <= '>') - : (c <= ']' || (c >= '`' && c <= '}'))))); -} +static TSCharacterRange sym_word_character_set_1[] = { + {0, 0x08}, {0x0e, 0x1f}, {'!', '!'}, {'%', '%'}, {'*', ':'}, {'=', '='}, {'?', 'Z'}, {'\\', '\\'}, + {'^', '_'}, {'a', 'z'}, {'~', 0x10ffff}, +}; static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(547); - if (lookahead == '!') ADVANCE(820); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(825); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '%') ADVANCE(647); - if (lookahead == '&') ADVANCE(601); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '*') ADVANCE(824); - if (lookahead == '+') ADVANCE(770); - if (lookahead == ',') ADVANCE(557); - if (lookahead == '-') ADVANCE(768); - if (lookahead == '.') ADVANCE(949); - if (lookahead == '/') ADVANCE(642); - if (lookahead == '0') ADVANCE(944); - if (lookahead == ':') ADVANCE(763); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(607); - if (lookahead == '=') ADVANCE(827); - if (lookahead == '>') ADVANCE(616); - if (lookahead == '?') ADVANCE(837); - if (lookahead == '@') ADVANCE(822); - if (lookahead == '[') ADVANCE(674); - if (lookahead == '\\') ADVANCE(417); - if (lookahead == ']') ADVANCE(675); - if (lookahead == '^') ADVANCE(595); - if (lookahead == '_') ADVANCE(946); - if (lookahead == '`') ADVANCE(856); - if (lookahead == 'e') ADVANCE(956); - if (lookahead == 'i') ADVANCE(955); - if (lookahead == '{') ADVANCE(666); - if (lookahead == '|') ADVANCE(592); - if (lookahead == '}') ADVANCE(778); - if (lookahead == '~') ADVANCE(772); + if (eof) ADVANCE(550); + ADVANCE_MAP( + '!', 823, + '"', 791, + '#', 828, + '$', 784, + '%', 650, + '&', 604, + '\'', 494, + '(', 657, + ')', 658, + '*', 827, + '+', 773, + ',', 560, + '-', 771, + '.', 952, + '/', 645, + '0', 947, + ':', 766, + ';', 557, + '<', 610, + '=', 830, + '>', 619, + '?', 840, + '@', 825, + '[', 677, + '\\', 302, + ']', 678, + '^', 598, + '_', 949, + '`', 859, + 'e', 959, + 'i', 958, + '{', 669, + '|', 595, + '}', 781, + '~', 775, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(541) - if (lookahead != 0) ADVANCE(958); + lookahead == ' ') SKIP(548); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 1: - if (lookahead == '\n') SKIP(239) + if (lookahead == '\n') SKIP(403); END_STATE(); case 2: - if (lookahead == '\n') SKIP(255) + if (lookahead == '\n') SKIP(419); END_STATE(); case 3: - if (lookahead == '\n') SKIP(256) + if (lookahead == '\n') SKIP(420); END_STATE(); case 4: - if (lookahead == '\n') SKIP(257) + if (lookahead == '\n') SKIP(421); END_STATE(); case 5: - if (lookahead == '\n') SKIP(6) + if (lookahead == '\n') SKIP(6); END_STATE(); case 6: - if (lookahead == '\n') ADVANCE(688); - if (lookahead == '!') ADVANCE(670); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '%') ADVANCE(649); - if (lookahead == '&') ADVANCE(601); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '*') ADVANCE(638); - if (lookahead == '+') ADVANCE(771); - if (lookahead == '-') ADVANCE(769); - if (lookahead == '/') ADVANCE(644); - if (lookahead == '0') ADVANCE(803); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(607); - if (lookahead == '=') ADVANCE(560); - if (lookahead == '>') ADVANCE(616); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(421); - if (lookahead == '^') ADVANCE(596); - if (lookahead == '`') ADVANCE(856); - if (lookahead == '|') ADVANCE(592); - if (lookahead == '~') ADVANCE(772); + ADVANCE_MAP( + '\n', 691, + '!', 673, + '"', 791, + '#', 865, + '$', 784, + '%', 652, + '&', 604, + '\'', 494, + '(', 657, + ')', 658, + '*', 641, + '+', 774, + '-', 772, + '/', 647, + '0', 806, + ';', 558, + '<', 610, + '=', 563, + '>', 619, + '?', 764, + '\\', 308, + '^', 599, + '`', 859, + '|', 595, + '~', 775, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(6) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0) ADVANCE(958); + lookahead == ' ') SKIP(6); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 7: - if (lookahead == '\n') SKIP(241) + if (lookahead == '\n') SKIP(405); END_STATE(); case 8: - if (lookahead == '\n') SKIP(259) + if (lookahead == '\n') SKIP(423); END_STATE(); case 9: - if (lookahead == '\n') SKIP(260) + if (lookahead == '\n') SKIP(424); END_STATE(); case 10: - if (lookahead == '\n') SKIP(242) + if (lookahead == '\n') SKIP(406); END_STATE(); case 11: - if (lookahead == '\n') SKIP(244) + if (lookahead == '\n') SKIP(408); END_STATE(); case 12: - if (lookahead == '\n') ADVANCE(689); - if (lookahead == '!') ADVANCE(670); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '%') ADVANCE(649); - if (lookahead == '&') ADVANCE(601); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '*') ADVANCE(638); - if (lookahead == '+') ADVANCE(630); - if (lookahead == '-') ADVANCE(633); - if (lookahead == '/') ADVANCE(644); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(607); - if (lookahead == '=') ADVANCE(560); - if (lookahead == '>') ADVANCE(616); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(355); - if (lookahead == '^') ADVANCE(596); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(592); + ADVANCE_MAP( + '\n', 692, + '!', 673, + '"', 791, + '#', 819, + '$', 784, + '%', 652, + '&', 604, + '\'', 494, + '(', 657, + ')', 658, + '*', 641, + '+', 633, + '-', 636, + '/', 647, + '0', 946, + ';', 558, + '<', 610, + '=', 563, + '>', 619, + '?', 764, + '@', 945, + '\\', 14, + '^', 599, + '_', 950, + '`', 858, + '|', 595, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(12) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (lookahead != 0) ADVANCE(958); + lookahead == ' ') SKIP(12); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 13: - if (lookahead == '\n') ADVANCE(880); + if (lookahead == '\n') ADVANCE(883); END_STATE(); case 14: - if (lookahead == '\n') ADVANCE(940); + if (lookahead == '\n') ADVANCE(883); + if (lookahead == '\r') ADVANCE(13); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(12); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 15: - if (lookahead == '\n') ADVANCE(940); - if (lookahead == '\r') ADVANCE(14); + if (lookahead == '\n') ADVANCE(943); END_STATE(); case 16: - if (lookahead == '\n') ADVANCE(940); - if (lookahead == '\r') ADVANCE(14); - if (lookahead != 0 && - (lookahead < '\t' || '\f' < lookahead)) ADVANCE(958); + if (lookahead == '\n') ADVANCE(943); + if (lookahead == '\r') ADVANCE(15); END_STATE(); case 17: - if (lookahead == '\n') ADVANCE(918); + if (lookahead == '\n') ADVANCE(943); + if (lookahead == '\r') ADVANCE(15); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(961); END_STATE(); case 18: - if (lookahead == '\n') SKIP(112) + if (lookahead == '\n') ADVANCE(921); END_STATE(); case 19: - if (lookahead == '\n') SKIP(263) + if (lookahead == '\n') ADVANCE(921); + if (lookahead == '\r') ADVANCE(18); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(404); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 20: - if (lookahead == '\n') SKIP(258) + if (lookahead == '\n') SKIP(146); END_STATE(); case 21: - if (lookahead == '\n') SKIP(177) + if (lookahead == '\n') SKIP(427); END_STATE(); case 22: - if (lookahead == '\n') SKIP(180) + if (lookahead == '\n') SKIP(422); END_STATE(); case 23: - if (lookahead == '\n') SKIP(183) + if (lookahead == '\n') SKIP(240); END_STATE(); case 24: - if (lookahead == '\n') ADVANCE(882); + if (lookahead == '\n') SKIP(243); END_STATE(); case 25: - if (lookahead == '\n') SKIP(186) + if (lookahead == '\n') SKIP(246); END_STATE(); case 26: - if (lookahead == '\n') ADVANCE(884); + if (lookahead == '\n') ADVANCE(885); END_STATE(); case 27: - if (lookahead == '\n') ADVANCE(888); + if (lookahead == '\n') ADVANCE(885); + if (lookahead == '\r') ADVANCE(26); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(220); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 28: - if (lookahead == '\n') SKIP(189) + if (lookahead == '\n') SKIP(249); END_STATE(); case 29: - if (lookahead == '\n') SKIP(192) + if (lookahead == '\n') ADVANCE(889); END_STATE(); case 30: - if (lookahead == '\n') SKIP(195) + if (lookahead == '\n') ADVANCE(889); + if (lookahead == '\r') ADVANCE(29); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(242); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 31: - if (lookahead == '\n') ADVANCE(898); + if (lookahead == '\n') SKIP(252); END_STATE(); case 32: - if (lookahead == '\n') SKIP(198) + if (lookahead == '\n') ADVANCE(895); END_STATE(); case 33: - if (lookahead == '\n') SKIP(299) + if (lookahead == '\n') ADVANCE(895); + if (lookahead == '\r') ADVANCE(32); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(251); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 34: - if (lookahead == '\n') SKIP(295) + if (lookahead == '\n') SKIP(255); END_STATE(); case 35: - if (lookahead == '\n') SKIP(204) + if (lookahead == '\n') SKIP(258); END_STATE(); case 36: - if (lookahead == '\n') ADVANCE(902); + if (lookahead == '\n') ADVANCE(901); END_STATE(); case 37: - if (lookahead == '\n') SKIP(262) + if (lookahead == '\n') ADVANCE(901); + if (lookahead == '\r') ADVANCE(36); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(260); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 38: - if (lookahead == '\n') ADVANCE(904); + if (lookahead == '\n') SKIP(261); END_STATE(); case 39: - if (lookahead == '\n') ADVANCE(909); + if (lookahead == '\n') SKIP(464); END_STATE(); case 40: - if (lookahead == '\n') SKIP(213) + if (lookahead == '\n') SKIP(460); END_STATE(); case 41: - if (lookahead == '\n') ADVANCE(920); + if (lookahead == '\n') SKIP(267); END_STATE(); case 42: - if (lookahead == '\n') SKIP(308) + if (lookahead == '\n') ADVANCE(905); END_STATE(); case 43: - if (lookahead == '\n') SKIP(302) + if (lookahead == '\n') ADVANCE(905); + if (lookahead == '\r') ADVANCE(42); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(266); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 44: - if (lookahead == '\n') ADVANCE(922); + if (lookahead == '\n') ADVANCE(907); END_STATE(); case 45: - if (lookahead == '\n') SKIP(298) + if (lookahead == '\n') ADVANCE(907); + if (lookahead == '\r') ADVANCE(44); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(269); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 46: - if (lookahead == '\n') ADVANCE(913); + if (lookahead == '\n') SKIP(426); END_STATE(); case 47: - if (lookahead == '\n') ADVANCE(930); + if (lookahead == '\n') ADVANCE(911); END_STATE(); case 48: - if (lookahead == '\n') ADVANCE(923); + if (lookahead == '\n') ADVANCE(911); + if (lookahead == '\r') ADVANCE(47); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(275); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 49: - if (lookahead == '\n') ADVANCE(929); + if (lookahead == '\n') ADVANCE(923); END_STATE(); case 50: - if (lookahead == '\n') SKIP(306) + if (lookahead == '\n') ADVANCE(923); + if (lookahead == '\r') ADVANCE(49); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(412); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 51: - if (lookahead == '\n') ADVANCE(927); + if (lookahead == '\n') SKIP(273); END_STATE(); case 52: - if (lookahead == '\n') ADVANCE(932); + if (lookahead == '\n') SKIP(473); END_STATE(); case 53: - if (lookahead == '\n') SKIP(272) + if (lookahead == '\n') SKIP(467); END_STATE(); case 54: - if (lookahead == '\n') SKIP(273) + if (lookahead == '\n') ADVANCE(925); END_STATE(); case 55: - if (lookahead == '\n') SKIP(261) + if (lookahead == '\n') ADVANCE(925); + if (lookahead == '\r') ADVANCE(54); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(414); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 56: - if (lookahead == '\n') ADVANCE(919); + if (lookahead == '\n') ADVANCE(916); END_STATE(); case 57: - if (lookahead == '\n') SKIP(278) + if (lookahead == '\n') ADVANCE(916); + if (lookahead == '\r') ADVANCE(56); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(285); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 58: - if (lookahead == '\n') SKIP(235) + if (lookahead == '\n') SKIP(463); END_STATE(); case 59: - if (lookahead == '\n') SKIP(276) + if (lookahead == '\n') ADVANCE(926); END_STATE(); case 60: - if (lookahead == '\n') SKIP(281) + if (lookahead == '\n') ADVANCE(926); + if (lookahead == '\r') ADVANCE(59); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(415); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 61: - if (lookahead == '\n') SKIP(277) + if (lookahead == '\n') ADVANCE(933); END_STATE(); case 62: - if (lookahead == '\n') ADVANCE(881); + if (lookahead == '\n') ADVANCE(933); + if (lookahead == '\r') ADVANCE(61); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(432); END_STATE(); case 63: - if (lookahead == '\n') SKIP(64) + if (lookahead == '\n') ADVANCE(931); END_STATE(); case 64: - if (lookahead == '\n') ADVANCE(690); - if (lookahead == '!') ADVANCE(344); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '%') ADVANCE(650); - if (lookahead == '&') ADVANCE(600); - if (lookahead == '*') ADVANCE(639); - if (lookahead == '+') ADVANCE(631); - if (lookahead == ',') ADVANCE(556); - if (lookahead == '-') ADVANCE(635); - if (lookahead == '/') ADVANCE(645); - if (lookahead == ';') ADVANCE(553); - if (lookahead == '<') ADVANCE(615); - if (lookahead == '=') ADVANCE(561); - if (lookahead == '>') ADVANCE(620); - if (lookahead == '\\') SKIP(455) - if (lookahead == '^') ADVANCE(597); - if (lookahead == '|') ADVANCE(594); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(64) + if (lookahead == '\n') ADVANCE(931); + if (lookahead == '\r') ADVANCE(63); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(430); END_STATE(); case 65: - if (lookahead == '\n') ADVANCE(690); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(785); - if (lookahead == '&') ADVANCE(599); - if (lookahead == '(') ADVANCE(653); - if (lookahead == '+') ADVANCE(338); - if (lookahead == ',') ADVANCE(556); - if (lookahead == '-') ADVANCE(340); - if (lookahead == '0') ADVANCE(809); - if (lookahead == ';') ADVANCE(553); - if (lookahead == '\\') SKIP(465) - if (lookahead == '`') ADVANCE(855); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(65) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(811); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(656); + if (lookahead == '\n') SKIP(469); END_STATE(); case 66: - if (lookahead == '\n') ADVANCE(690); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(783); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '(') ADVANCE(654); - if (lookahead == '-') ADVANCE(342); - if (lookahead == '0') ADVANCE(808); - if (lookahead == ':') ADVANCE(762); - if (lookahead == '<') ADVANCE(611); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '\\') SKIP(471) - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(354); - if (lookahead == '}') ADVANCE(818); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(66) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(879); + if (lookahead == '\n') ADVANCE(932); END_STATE(); case 67: - if (lookahead == '\n') ADVANCE(690); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '&') ADVANCE(602); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(612); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') SKIP(466) - if (lookahead == '`') ADVANCE(348); - if (lookahead == 'e') ADVANCE(352); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(67) + if (lookahead == '\n') ADVANCE(932); + if (lookahead == '\r') ADVANCE(66); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(431); END_STATE(); case 68: - if (lookahead == '\n') ADVANCE(690); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '&') ADVANCE(602); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(613); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') SKIP(504) - if (lookahead == '`') ADVANCE(348); - if (lookahead == 'e') ADVANCE(352); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(68) + if (lookahead == '\n') SKIP(436); END_STATE(); case 69: - if (lookahead == '\n') ADVANCE(690); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '<') ADVANCE(611); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') SKIP(475) - if (lookahead == '`') ADVANCE(348); - if (lookahead == '|') ADVANCE(354); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(69) + if (lookahead == '\n') ADVANCE(935); END_STATE(); case 70: - if (lookahead == '\n') ADVANCE(690); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '&') ADVANCE(599); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') SKIP(480) - if (lookahead == '`') ADVANCE(348); - if (lookahead == 'i') ADVANCE(351); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(70) + if (lookahead == '\n') ADVANCE(935); + if (lookahead == '\r') ADVANCE(69); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(434); END_STATE(); case 71: - if (lookahead == '\n') ADVANCE(883); + if (lookahead == '\n') SKIP(437); END_STATE(); case 72: - if (lookahead == '\n') SKIP(311) + if (lookahead == '\n') SKIP(425); END_STATE(); case 73: - if (lookahead == '\n') SKIP(275) + if (lookahead == '\n') ADVANCE(922); END_STATE(); case 74: - if (lookahead == '\n') SKIP(280) + if (lookahead == '\n') ADVANCE(922); + if (lookahead == '\r') ADVANCE(73); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(411); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 75: - if (lookahead == '\n') ADVANCE(889); + if (lookahead == '\n') SKIP(443); END_STATE(); case 76: - if (lookahead == '\n') ADVANCE(891); + if (lookahead == '\n') SKIP(298); END_STATE(); case 77: - if (lookahead == '\n') ADVANCE(916); + if (lookahead == '\n') SKIP(439); END_STATE(); case 78: - if (lookahead == '\n') SKIP(237) + if (lookahead == '\n') SKIP(446); END_STATE(); case 79: - if (lookahead == '\n') SKIP(310) + if (lookahead == '\n') ADVANCE(884); END_STATE(); case 80: - if (lookahead == '\n') SKIP(316) + if (lookahead == '\n') ADVANCE(884); + if (lookahead == '\r') ADVANCE(79); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(201); END_STATE(); case 81: - if (lookahead == '\n') SKIP(320) + if (lookahead == '\n') SKIP(442); END_STATE(); case 82: - if (lookahead == '\n') ADVANCE(901); + if (lookahead == '\n') ADVANCE(888); END_STATE(); case 83: - if (lookahead == '\n') ADVANCE(933); + if (lookahead == '\n') ADVANCE(888); + if (lookahead == '\r') ADVANCE(82); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(241); END_STATE(); case 84: - if (lookahead == '\n') ADVANCE(926); + if (lookahead == '\n') SKIP(85); END_STATE(); case 85: - if (lookahead == '\n') ADVANCE(917); + ADVANCE_MAP( + '\n', 693, + '!', 509, + '#', 865, + '%', 653, + '&', 603, + '*', 642, + '+', 634, + ',', 559, + '-', 638, + '/', 648, + ';', 556, + '<', 618, + '=', 564, + '>', 623, + ); + if (lookahead == '\\') SKIP(367); + if (lookahead == '^') ADVANCE(600); + if (lookahead == '|') ADVANCE(597); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(85); END_STATE(); case 86: - if (lookahead == '\n') ADVANCE(934); + ADVANCE_MAP( + '\n', 693, + '"', 791, + '#', 865, + '$', 788, + '&', 602, + '(', 656, + '+', 503, + ',', 559, + '-', 505, + '0', 812, + ';', 556, + ); + if (lookahead == '\\') SKIP(381); + if (lookahead == '`') ADVANCE(858); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(86); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(659); END_STATE(); case 87: - if (lookahead == '\n') SKIP(317) + ADVANCE_MAP( + '\n', 693, + '#', 865, + '$', 786, + '&', 492, + '(', 657, + '-', 507, + '0', 811, + ':', 765, + '<', 614, + '>', 621, + ); + if (lookahead == '\\') SKIP(389); + if (lookahead == '`') ADVANCE(858); + if (lookahead == '|') ADVANCE(519); + if (lookahead == '}') ADVANCE(821); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(87); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(813); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 88: - if (lookahead == '\n') SKIP(289) + if (lookahead == '\n') ADVANCE(693); + if (lookahead == '#') ADVANCE(865); + if (lookahead == '&') ADVANCE(605); + if (lookahead == ';') ADVANCE(557); + if (lookahead == '<') ADVANCE(615); + if (lookahead == '>') ADVANCE(621); + if (lookahead == '\\') SKIP(380); + if (lookahead == '`') ADVANCE(513); + if (lookahead == 'e') ADVANCE(517); + if (lookahead == '|') ADVANCE(596); + if (('[' <= lookahead && lookahead <= ']') || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(789); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(88); END_STATE(); case 89: - if (lookahead == '\n') SKIP(65) + if (lookahead == '\n') ADVANCE(693); + if (lookahead == '#') ADVANCE(865); + if (lookahead == '&') ADVANCE(605); + if (lookahead == ';') ADVANCE(557); + if (lookahead == '<') ADVANCE(616); + if (lookahead == '>') ADVANCE(621); + if (lookahead == '\\') SKIP(382); + if (lookahead == '`') ADVANCE(513); + if (lookahead == 'e') ADVANCE(517); + if (lookahead == '|') ADVANCE(596); + if (('[' <= lookahead && lookahead <= ']') || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(789); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(89); END_STATE(); case 90: - if (lookahead == '\n') SKIP(67) + if (lookahead == '\n') ADVANCE(693); + if (lookahead == '#') ADVANCE(865); + if (lookahead == '&') ADVANCE(492); + if (lookahead == '<') ADVANCE(614); + if (lookahead == '>') ADVANCE(621); + if (lookahead == '\\') SKIP(392); + if (lookahead == '`') ADVANCE(513); + if (lookahead == '|') ADVANCE(519); + if (('[' <= lookahead && lookahead <= ']') || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(789); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(90); END_STATE(); case 91: - if (lookahead == '\n') SKIP(292) + if (lookahead == '\n') ADVANCE(693); + if (lookahead == '#') ADVANCE(865); + if (lookahead == '&') ADVANCE(602); + if (lookahead == ';') ADVANCE(558); + if (lookahead == '\\') SKIP(395); + if (lookahead == '`') ADVANCE(513); + if (lookahead == 'i') ADVANCE(516); + if (('[' <= lookahead && lookahead <= ']') || + lookahead == '{' || + lookahead == '}') ADVANCE(789); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(91); END_STATE(); case 92: - if (lookahead == '\n') SKIP(312) + if (lookahead == '\n') SKIP(475); END_STATE(); case 93: - if (lookahead == '\n') SKIP(324) + if (lookahead == '\n') ADVANCE(892); END_STATE(); case 94: - if (lookahead == '\n') SKIP(321) + if (lookahead == '\n') ADVANCE(892); + if (lookahead == '\r') ADVANCE(93); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(247); END_STATE(); case 95: - if (lookahead == '\n') SKIP(66) + if (lookahead == '\n') SKIP(441); END_STATE(); case 96: - if (lookahead == '\n') SKIP(322) + if (lookahead == '\n') SKIP(444); END_STATE(); case 97: - if (lookahead == '\n') SKIP(325) + if (lookahead == '\n') ADVANCE(896); END_STATE(); case 98: - if (lookahead == '\n') SKIP(313) + if (lookahead == '\n') ADVANCE(896); + if (lookahead == '\r') ADVANCE(97); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(253); END_STATE(); case 99: - if (lookahead == '\n') ADVANCE(907); + if (lookahead == '\n') SKIP(300); END_STATE(); case 100: - if (lookahead == '\n') SKIP(69) + if (lookahead == '\n') ADVANCE(919); END_STATE(); case 101: - if (lookahead == '\n') SKIP(293) + if (lookahead == '\n') ADVANCE(919); + if (lookahead == '\r') ADVANCE(100); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(291); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 102: - if (lookahead == '\n') ADVANCE(937); + if (lookahead == '\n') SKIP(476); END_STATE(); case 103: - if (lookahead == '\n') ADVANCE(938); + if (lookahead == '\n') SKIP(481); END_STATE(); case 104: - if (lookahead == '\n') ADVANCE(939); + if (lookahead == '\n') SKIP(485); END_STATE(); case 105: - if (lookahead == '\n') SKIP(323) + if (lookahead == '\n') ADVANCE(936); END_STATE(); case 106: - if (lookahead == '\n') SKIP(314) + if (lookahead == '\n') ADVANCE(936); + if (lookahead == '\r') ADVANCE(105); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(447); END_STATE(); case 107: - if (lookahead == '\n') SKIP(70) + if (lookahead == '\n') ADVANCE(904); END_STATE(); case 108: - if (lookahead == '\n') SKIP(315) + if (lookahead == '\n') ADVANCE(904); + if (lookahead == '\r') ADVANCE(107); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(265); END_STATE(); case 109: - if (lookahead == '\n') SKIP(326) + if (lookahead == '\n') ADVANCE(929); END_STATE(); case 110: - if (lookahead == '\n') SKIP(245) + if (lookahead == '\n') ADVANCE(929); + if (lookahead == '\r') ADVANCE(109); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(418); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 111: - if (lookahead == '\n') SKIP(243) + if (lookahead == '\n') ADVANCE(920); END_STATE(); case 112: - if (lookahead == '\n') ADVANCE(691); - if (lookahead == '!') ADVANCE(951); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '%') ADVANCE(649); - if (lookahead == '&') ADVANCE(601); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '*') ADVANCE(638); - if (lookahead == '+') ADVANCE(630); - if (lookahead == '-') ADVANCE(633); - if (lookahead == '/') ADVANCE(644); - if (lookahead == '0') ADVANCE(803); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(607); - if (lookahead == '=') ADVANCE(560); - if (lookahead == '>') ADVANCE(616); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(427); - if (lookahead == '^') ADVANCE(596); - if (lookahead == '`') ADVANCE(856); - if (lookahead == '|') ADVANCE(592); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(112) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\n') ADVANCE(920); + if (lookahead == '\r') ADVANCE(111); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(293); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 113: - if (lookahead == '\n') SKIP(174) + if (lookahead == '\n') ADVANCE(937); END_STATE(); case 114: - if (lookahead == '\n') SKIP(264) + if (lookahead == '\n') ADVANCE(937); + if (lookahead == '\r') ADVANCE(113); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(448); END_STATE(); case 115: - if (lookahead == '\n') SKIP(215) + if (lookahead == '\n') SKIP(482); END_STATE(); case 116: - if (lookahead == '\n') SKIP(217) + if (lookahead == '\n') SKIP(454); END_STATE(); case 117: - if (lookahead == '\n') SKIP(219) + if (lookahead == '\n') SKIP(88); END_STATE(); case 118: - if (lookahead == '\n') ADVANCE(886); + if (lookahead == '\n') SKIP(86); END_STATE(); case 119: - if (lookahead == '\n') SKIP(221) + if (lookahead == '\n') SKIP(457); END_STATE(); case 120: - if (lookahead == '\n') ADVANCE(890); + if (lookahead == '\n') SKIP(477); END_STATE(); case 121: - if (lookahead == '\n') ADVANCE(894); + if (lookahead == '\n') SKIP(489); END_STATE(); case 122: - if (lookahead == '\n') SKIP(225) + if (lookahead == '\n') SKIP(486); END_STATE(); case 123: - if (lookahead == '\n') SKIP(231) + if (lookahead == '\n') SKIP(478); END_STATE(); case 124: - if (lookahead == '\n') SKIP(223) + if (lookahead == '\n') SKIP(87); END_STATE(); case 125: - if (lookahead == '\n') SKIP(227) + if (lookahead == '\n') SKIP(487); END_STATE(); case 126: - if (lookahead == '\n') SKIP(300) + if (lookahead == '\n') SKIP(490); END_STATE(); case 127: - if (lookahead == '\n') SKIP(232) + if (lookahead == '\n') ADVANCE(910); END_STATE(); case 128: - if (lookahead == '\n') ADVANCE(908); + if (lookahead == '\n') ADVANCE(910); + if (lookahead == '\r') ADVANCE(127); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(274); END_STATE(); case 129: - if (lookahead == '\n') ADVANCE(912); + if (lookahead == '\n') SKIP(90); END_STATE(); case 130: - if (lookahead == '\n') SKIP(236) + if (lookahead == '\n') SKIP(458); END_STATE(); case 131: - if (lookahead == '\n') ADVANCE(921); + if (lookahead == '\n') ADVANCE(940); END_STATE(); case 132: - if (lookahead == '\n') SKIP(309) + if (lookahead == '\n') ADVANCE(940); + if (lookahead == '\r') ADVANCE(131); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(451); END_STATE(); case 133: - if (lookahead == '\n') SKIP(303) + if (lookahead == '\n') ADVANCE(941); END_STATE(); case 134: - if (lookahead == '\n') SKIP(296) + if (lookahead == '\n') ADVANCE(941); + if (lookahead == '\r') ADVANCE(133); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(453); END_STATE(); case 135: - if (lookahead == '\n') ADVANCE(915); + if (lookahead == '\n') ADVANCE(796); + if (lookahead == '\r') ADVANCE(793); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(796); + if (lookahead != 0) ADVANCE(801); END_STATE(); case 136: - if (lookahead == '\n') ADVANCE(931); + if (lookahead == '\n') ADVANCE(797); + if (lookahead == '\r') ADVANCE(794); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(797); + if (lookahead != 0) ADVANCE(801); END_STATE(); case 137: - if (lookahead == '\n') SKIP(307) + if (lookahead == '\n') ADVANCE(942); END_STATE(); case 138: - if (lookahead == '\n') ADVANCE(928); + if (lookahead == '\n') ADVANCE(942); + if (lookahead == '\r') ADVANCE(137); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(456); END_STATE(); case 139: - if (lookahead == '\n') ADVANCE(885); + if (lookahead == '\n') SKIP(488); END_STATE(); case 140: - if (lookahead == '\n') ADVANCE(887); + if (lookahead == '\n') SKIP(91); END_STATE(); case 141: - if (lookahead == '\n') SKIP(274) + if (lookahead == '\n') SKIP(479); END_STATE(); case 142: - if (lookahead == '\n') ADVANCE(895); + if (lookahead == '\n') SKIP(480); END_STATE(); case 143: - if (lookahead == '\n') ADVANCE(899); + if (lookahead == '\n') SKIP(491); END_STATE(); case 144: - if (lookahead == '\n') SKIP(238) + if (lookahead == '\n') SKIP(409); END_STATE(); case 145: - if (lookahead == '\n') ADVANCE(903); + if (lookahead == '\n') SKIP(407); END_STATE(); case 146: - if (lookahead == '\n') ADVANCE(935); + ADVANCE_MAP( + '\n', 694, + '!', 954, + '"', 791, + '#', 865, + '$', 784, + '%', 652, + '&', 604, + '\'', 494, + '(', 657, + ')', 658, + '*', 641, + '+', 633, + '-', 636, + '/', 647, + '0', 806, + ';', 558, + '<', 610, + '=', 563, + '>', 619, + '?', 764, + '\\', 317, + '^', 599, + '`', 859, + '|', 595, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(146); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 147: - if (lookahead == '\n') ADVANCE(936); + if (lookahead == '\n') SKIP(237); END_STATE(); case 148: - if (lookahead == '\n') SKIP(68) + if (lookahead == '\n') SKIP(428); END_STATE(); case 149: - if (lookahead == '\n') SKIP(246) + if (lookahead == '\n') SKIP(278); END_STATE(); case 150: - if (lookahead == '\n') ADVANCE(692); - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(612); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(373); - if (lookahead == '_') ADVANCE(948); - if (lookahead == 'e') ADVANCE(877); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(150) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + if (lookahead == '\n') SKIP(280); END_STATE(); case 151: - if (lookahead == '\n') ADVANCE(892); + if (lookahead == '\n') SKIP(282); END_STATE(); case 152: - if (lookahead == '\n') SKIP(229) + if (lookahead == '\n') ADVANCE(887); END_STATE(); case 153: - if (lookahead == '\n') SKIP(233) + if (lookahead == '\n') ADVANCE(887); + if (lookahead == '\r') ADVANCE(152); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(239); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 154: - if (lookahead == '\n') SKIP(234) + if (lookahead == '\n') SKIP(286); END_STATE(); case 155: - if (lookahead == '\n') ADVANCE(911); + if (lookahead == '\n') ADVANCE(891); END_STATE(); case 156: - if (lookahead == '\n') SKIP(304) + if (lookahead == '\n') ADVANCE(891); + if (lookahead == '\r') ADVANCE(155); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(245); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 157: - if (lookahead == '\n') SKIP(301) + if (lookahead == '\n') SKIP(290); END_STATE(); case 158: - if (lookahead == '\n') ADVANCE(893); + if (lookahead == '\n') ADVANCE(899); END_STATE(); case 159: - if (lookahead == '\n') ADVANCE(905); + if (lookahead == '\n') ADVANCE(899); + if (lookahead == '\r') ADVANCE(158); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(257); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 160: - if (lookahead == '\n') ADVANCE(896); + if (lookahead == '\n') SKIP(294); END_STATE(); case 161: - if (lookahead == '\n') SKIP(297) + if (lookahead == '\n') SKIP(284); END_STATE(); case 162: - if (lookahead == '\n') ADVANCE(897); + if (lookahead == '\n') SKIP(288); END_STATE(); case 163: - if (lookahead == '\n') ADVANCE(693); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '=') ADVANCE(952); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(357); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == 'e') ADVANCE(871); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(163) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (lookahead != 0 && - lookahead != ')') ADVANCE(958); + if (lookahead == '\n') SKIP(465); END_STATE(); case 164: - if (lookahead == '\n') SKIP(201) + if (lookahead == '\n') SKIP(292); END_STATE(); case 165: - if (lookahead == '\n') ADVANCE(900); + if (lookahead == '\n') ADVANCE(909); END_STATE(); case 166: - if (lookahead == '\n') SKIP(207) + if (lookahead == '\n') ADVANCE(909); + if (lookahead == '\r') ADVANCE(165); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(272); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 167: - if (lookahead == '\n') SKIP(210) + if (lookahead == '\n') ADVANCE(914); END_STATE(); case 168: - if (lookahead == '\n') ADVANCE(906); + if (lookahead == '\n') ADVANCE(914); + if (lookahead == '\r') ADVANCE(167); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(281); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 169: - if (lookahead == '\n') ADVANCE(910); + if (lookahead == '\n') ADVANCE(924); END_STATE(); case 170: - if (lookahead == '\n') SKIP(305) + if (lookahead == '\n') ADVANCE(924); + if (lookahead == '\r') ADVANCE(169); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(413); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 171: - if (lookahead == '\n') ADVANCE(924); + if (lookahead == '\n') SKIP(299); END_STATE(); case 172: - if (lookahead == '\n') ADVANCE(914); + if (lookahead == '\n') SKIP(474); END_STATE(); case 173: - if (lookahead == '\n') ADVANCE(925); + if (lookahead == '\n') SKIP(468); END_STATE(); case 174: - if (lookahead == '\n') ADVANCE(694); - if (lookahead == '!') ADVANCE(951); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '%') ADVANCE(649); - if (lookahead == '&') ADVANCE(601); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '*') ADVANCE(638); - if (lookahead == '+') ADVANCE(630); - if (lookahead == '-') ADVANCE(633); - if (lookahead == '/') ADVANCE(644); - if (lookahead == '0') ADVANCE(803); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(607); - if (lookahead == '=') ADVANCE(560); - if (lookahead == '>') ADVANCE(616); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(485); - if (lookahead == '^') ADVANCE(596); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(592); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(174) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\n') ADVANCE(918); END_STATE(); case 175: - if (lookahead == '\n') ADVANCE(695); - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(612); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(374); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(175) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + if (lookahead == '\n') ADVANCE(918); + if (lookahead == '\r') ADVANCE(174); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(289); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 176: - if (lookahead == '\n') ADVANCE(696); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '=') ADVANCE(952); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(358); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(176) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (lookahead != 0 && - lookahead != ')') ADVANCE(958); + if (lookahead == '\n') SKIP(461); END_STATE(); case 177: - if (lookahead == '\n') ADVANCE(697); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '=') ADVANCE(952); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(430); - if (lookahead == '`') ADVANCE(855); - if (lookahead == 'e') ADVANCE(956); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(177) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0 && - lookahead != ')') ADVANCE(958); + if (lookahead == '\n') ADVANCE(934); END_STATE(); case 178: - if (lookahead == '\n') ADVANCE(698); - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(613); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(416); - if (lookahead == '_') ADVANCE(948); - if (lookahead == 'e') ADVANCE(877); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(178) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + if (lookahead == '\n') ADVANCE(934); + if (lookahead == '\r') ADVANCE(177); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(433); END_STATE(); case 179: - if (lookahead == '\n') ADVANCE(699); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '=') ADVANCE(952); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(389); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == 'e') ADVANCE(871); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(179) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (lookahead != 0 && - lookahead != ')') ADVANCE(958); + if (lookahead == '\n') ADVANCE(930); END_STATE(); case 180: - if (lookahead == '\n') ADVANCE(700); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '=') ADVANCE(952); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(431); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(180) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0 && - lookahead != ')') ADVANCE(958); + if (lookahead == '\n') ADVANCE(930); + if (lookahead == '\r') ADVANCE(179); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(429); END_STATE(); case 181: - if (lookahead == '\n') ADVANCE(701); - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(613); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(398); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(181) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + if (lookahead == '\n') SKIP(471); END_STATE(); case 182: - if (lookahead == '\n') ADVANCE(702); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '=') ADVANCE(952); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(359); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(182) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\n') SKIP(445); END_STATE(); case 183: - if (lookahead == '\n') ADVANCE(703); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '=') ADVANCE(952); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(432); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(183) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\n') ADVANCE(886); END_STATE(); case 184: - if (lookahead == '\n') ADVANCE(704); - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(612); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(375); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(184) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + if (lookahead == '\n') ADVANCE(886); + if (lookahead == '\r') ADVANCE(183); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(238); END_STATE(); case 185: - if (lookahead == '\n') ADVANCE(705); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '=') ADVANCE(952); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(390); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(185) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (lookahead != 0 && - lookahead != ')') ADVANCE(958); + if (lookahead == '\n') ADVANCE(890); END_STATE(); case 186: - if (lookahead == '\n') ADVANCE(706); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(804); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(610); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(433); - if (lookahead == '`') ADVANCE(855); - if (lookahead == 'e') ADVANCE(866); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(186) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(806); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(868); - if (lookahead != 0 && - lookahead != ')') ADVANCE(958); + if (lookahead == '\n') ADVANCE(890); + if (lookahead == '\r') ADVANCE(185); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(244); END_STATE(); case 187: - if (lookahead == '\n') ADVANCE(707); - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '&') ADVANCE(602); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(612); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(376); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(187) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + if (lookahead == '\n') ADVANCE(900); END_STATE(); case 188: - if (lookahead == '\n') ADVANCE(708); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '=') ADVANCE(952); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(404); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(188) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (lookahead != 0 && - lookahead != ')') ADVANCE(958); + if (lookahead == '\n') ADVANCE(900); + if (lookahead == '\r') ADVANCE(187); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(259); END_STATE(); case 189: - if (lookahead == '\n') ADVANCE(709); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(804); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(610); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(434); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(189) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(806); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(868); - if (lookahead != 0 && - lookahead != ')') ADVANCE(958); + if (lookahead == '\n') SKIP(438); END_STATE(); case 190: - if (lookahead == '\n') ADVANCE(710); - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(612); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(406); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(190) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + if (lookahead == '\n') ADVANCE(902); END_STATE(); case 191: - if (lookahead == '\n') ADVANCE(711); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '=') ADVANCE(952); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(391); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(191) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\n') ADVANCE(902); + if (lookahead == '\r') ADVANCE(190); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(262); END_STATE(); case 192: - if (lookahead == '\n') ADVANCE(712); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(804); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(610); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(435); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(192) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(806); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(868); - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\n') SKIP(301); END_STATE(); case 193: - if (lookahead == '\n') ADVANCE(713); - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(613); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(399); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(193) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + if (lookahead == '\n') ADVANCE(938); END_STATE(); case 194: - if (lookahead == '\n') ADVANCE(714); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '=') ADVANCE(952); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(408); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(194) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (lookahead != 0 && - lookahead != ')') ADVANCE(958); + if (lookahead == '\n') ADVANCE(938); + if (lookahead == '\r') ADVANCE(193); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(449); END_STATE(); case 195: - if (lookahead == '\n') ADVANCE(715); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(436); - if (lookahead == '`') ADVANCE(855); - if (lookahead == 'e') ADVANCE(956); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(195) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0 && - lookahead != ')') ADVANCE(958); + if (lookahead == '\n') ADVANCE(906); END_STATE(); case 196: - if (lookahead == '\n') ADVANCE(716); - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(613); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(409); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(196) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + if (lookahead == '\n') ADVANCE(906); + if (lookahead == '\r') ADVANCE(195); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(268); END_STATE(); case 197: - if (lookahead == '\n') ADVANCE(717); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(360); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == 'e') ADVANCE(871); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(197) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (lookahead != 0 && - lookahead != ')') ADVANCE(958); + if (lookahead == '\n') ADVANCE(939); END_STATE(); case 198: - if (lookahead == '\n') ADVANCE(718); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(437); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(198) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0 && - lookahead != ')') ADVANCE(958); + if (lookahead == '\n') ADVANCE(939); + if (lookahead == '\r') ADVANCE(197); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(450); END_STATE(); case 199: - if (lookahead == '\n') ADVANCE(719); - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '&') ADVANCE(602); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(613); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(400); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(199) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + if (lookahead == '\n') SKIP(89); END_STATE(); case 200: - if (lookahead == '\n') ADVANCE(720); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(610); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(410); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == 'e') ADVANCE(871); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(200) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (lookahead != 0 && - lookahead != ')') ADVANCE(958); + if (lookahead == '\n') SKIP(410); END_STATE(); case 201: - if (lookahead == '\n') ADVANCE(721); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(610); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(512); - if (lookahead == '`') ADVANCE(855); - if (lookahead == 'e') ADVANCE(956); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(201) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0 && - lookahead != ')') ADVANCE(958); - END_STATE(); - case 202: - if (lookahead == '\n') ADVANCE(722); - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == '<') ADVANCE(612); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(378); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 695, + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '&', 605, + '*', 640, + '-', 635, + '0', 948, + ';', 557, + '<', 615, + '>', 621, + '?', 763, + '@', 944, + '\\', 80, + '_', 951, + 'e', 880, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(202) + lookahead == ' ') SKIP(201); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + END_STATE(); + case 202: + if (lookahead == '\n') ADVANCE(893); END_STATE(); case 203: - if (lookahead == '\n') ADVANCE(723); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(361); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(203) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (lookahead != 0 && - lookahead != ')') ADVANCE(958); + if (lookahead == '\n') ADVANCE(893); + if (lookahead == '\r') ADVANCE(202); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(248); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 204: - if (lookahead == '\n') ADVANCE(724); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(440); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(204) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\n') SKIP(295); END_STATE(); case 205: - if (lookahead == '\n') ADVANCE(725); - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == '<') ADVANCE(613); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(401); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(205) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + if (lookahead == '\n') SKIP(296); END_STATE(); case 206: - if (lookahead == '\n') ADVANCE(726); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(362); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(206) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\n') SKIP(297); END_STATE(); case 207: - if (lookahead == '\n') ADVANCE(727); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(610); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(513); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(207) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0 && - lookahead != ')') ADVANCE(958); + if (lookahead == '\n') ADVANCE(913); END_STATE(); case 208: - if (lookahead == '\n') ADVANCE(728); - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == '<') ADVANCE(611); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(354); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(208) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + if (lookahead == '\n') ADVANCE(913); + if (lookahead == '\r') ADVANCE(207); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(279); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 209: - if (lookahead == '\n') ADVANCE(729); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(610); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(411); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(209) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (lookahead != 0 && - lookahead != ')') ADVANCE(958); + if (lookahead == '\n') SKIP(470); END_STATE(); case 210: - if (lookahead == '\n') ADVANCE(730); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(610); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(514); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(210) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\n') SKIP(466); END_STATE(); case 211: - if (lookahead == '\n') ADVANCE(731); - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '&') ADVANCE(599); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(383); - if (lookahead == '_') ADVANCE(948); - if (lookahead == 'i') ADVANCE(876); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(211) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + if (lookahead == '\n') ADVANCE(894); END_STATE(); case 212: - if (lookahead == '\n') ADVANCE(732); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(392); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(212) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (lookahead != 0 && - lookahead != ')') ADVANCE(958); + if (lookahead == '\n') ADVANCE(894); + if (lookahead == '\r') ADVANCE(211); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(250); END_STATE(); case 213: - if (lookahead == '\n') ADVANCE(733); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == '<') ADVANCE(608); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(442); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(213) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(958); + if (lookahead == '\n') ADVANCE(908); END_STATE(); case 214: - if (lookahead == '\n') ADVANCE(734); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '=') ADVANCE(952); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(363); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(214) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(958); + if (lookahead == '\n') ADVANCE(908); + if (lookahead == '\r') ADVANCE(213); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(271); END_STATE(); case 215: - if (lookahead == '\n') ADVANCE(735); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '=') ADVANCE(952); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(487); - if (lookahead == '`') ADVANCE(856); - if (lookahead == 'e') ADVANCE(956); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(215) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0 && - lookahead != ')') ADVANCE(958); + if (lookahead == '\n') ADVANCE(897); END_STATE(); case 216: - if (lookahead == '\n') ADVANCE(736); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(610); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(412); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(216) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\n') ADVANCE(897); + if (lookahead == '\r') ADVANCE(215); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(254); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 217: - if (lookahead == '\n') ADVANCE(737); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '=') ADVANCE(952); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(488); - if (lookahead == '`') ADVANCE(856); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(217) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0 && - lookahead != ')') ADVANCE(958); + if (lookahead == '\n') SKIP(462); END_STATE(); case 218: - if (lookahead == '\n') ADVANCE(738); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(610); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(405); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(218) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (lookahead != 0 && - lookahead != ')') ADVANCE(958); + if (lookahead == '\n') ADVANCE(898); END_STATE(); case 219: - if (lookahead == '\n') ADVANCE(739); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '=') ADVANCE(952); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(489); - if (lookahead == '`') ADVANCE(856); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(219) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\n') ADVANCE(898); + if (lookahead == '\r') ADVANCE(218); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(256); END_STATE(); case 220: - if (lookahead == '\n') ADVANCE(740); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '=') ADVANCE(952); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(393); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 696, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 605, + '\'', 494, + '(', 657, + '*', 643, + '-', 639, + '0', 946, + ';', 557, + '<', 612, + '=', 955, + '>', 620, + '?', 764, + '@', 945, + '\\', 27, + '_', 950, + '`', 858, + 'e', 874, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(220) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + lookahead == ' ') SKIP(220); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(958); + (lookahead < '&' || '*' < lookahead)) ADVANCE(961); END_STATE(); case 221: - if (lookahead == '\n') ADVANCE(741); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(804); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(610); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(490); - if (lookahead == '`') ADVANCE(856); - if (lookahead == 'e') ADVANCE(866); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(221) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(806); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(868); - if (lookahead != 0 && - lookahead != ')') ADVANCE(958); + if (lookahead == '\n') SKIP(264); END_STATE(); case 222: - if (lookahead == '\n') ADVANCE(742); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(366); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(222) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(958); + if (lookahead == '\n') ADVANCE(903); END_STATE(); case 223: - if (lookahead == '\n') ADVANCE(743); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(493); - if (lookahead == '`') ADVANCE(856); - if (lookahead == 'e') ADVANCE(956); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(223) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0 && - lookahead != ')') ADVANCE(958); + if (lookahead == '\n') ADVANCE(903); + if (lookahead == '\r') ADVANCE(222); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(263); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 224: - if (lookahead == '\n') ADVANCE(744); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == '<') ADVANCE(610); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(414); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(224) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(958); + if (lookahead == '\n') SKIP(270); END_STATE(); case 225: - if (lookahead == '\n') ADVANCE(745); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(804); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(610); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(491); - if (lookahead == '`') ADVANCE(856); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(225) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(806); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(868); - if (lookahead != 0 && - lookahead != ')') ADVANCE(958); + if (lookahead == '\n') SKIP(276); END_STATE(); case 226: - if (lookahead == '\n') ADVANCE(746); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == '<') ADVANCE(608); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(395); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(354); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(226) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(958); + if (lookahead == '\n') ADVANCE(912); END_STATE(); case 227: - if (lookahead == '\n') ADVANCE(747); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(494); - if (lookahead == '`') ADVANCE(856); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(227) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0 && - lookahead != ')') ADVANCE(958); + if (lookahead == '\n') ADVANCE(912); + if (lookahead == '\r') ADVANCE(226); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(277); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 228: - if (lookahead == '\n') ADVANCE(748); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(599); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(333); - if (lookahead == '>') ADVANCE(334); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(377); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(228) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (lookahead != 0 && - lookahead != ')' && - lookahead != '|') ADVANCE(958); + if (lookahead == '\n') ADVANCE(915); END_STATE(); case 229: - if (lookahead == '\n') ADVANCE(749); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(610); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(506); - if (lookahead == '`') ADVANCE(856); - if (lookahead == 'e') ADVANCE(956); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(229) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0 && - lookahead != ')') ADVANCE(958); + if (lookahead == '\n') ADVANCE(915); + if (lookahead == '\r') ADVANCE(228); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(283); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 230: - if (lookahead == '\n') ADVANCE(750); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == '<') ADVANCE(333); - if (lookahead == '>') ADVANCE(334); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(381); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(230) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '|') ADVANCE(958); + if (lookahead == '\n') SKIP(472); END_STATE(); case 231: - if (lookahead == '\n') ADVANCE(751); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(804); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(610); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(492); - if (lookahead == '`') ADVANCE(856); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(231) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(806); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(868); - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\n') ADVANCE(927); END_STATE(); case 232: - if (lookahead == '\n') ADVANCE(752); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(496); - if (lookahead == '`') ADVANCE(856); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(232) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\n') ADVANCE(927); + if (lookahead == '\r') ADVANCE(231); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(416); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 233: - if (lookahead == '\n') ADVANCE(753); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(610); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(507); - if (lookahead == '`') ADVANCE(856); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(233) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0 && - lookahead != ')') ADVANCE(958); + if (lookahead == '\n') ADVANCE(917); END_STATE(); case 234: - if (lookahead == '\n') ADVANCE(754); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(610); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(508); - if (lookahead == '`') ADVANCE(856); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(234) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\n') ADVANCE(917); + if (lookahead == '\r') ADVANCE(233); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(287); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 235: - if (lookahead == '\n') ADVANCE(755); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(599); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(333); - if (lookahead == '>') ADVANCE(334); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(451); - if (lookahead == '`') ADVANCE(855); - if (lookahead == 'e') ADVANCE(956); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(235) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0 && - lookahead != ')' && - lookahead != '|') ADVANCE(958); + if (lookahead == '\n') ADVANCE(928); END_STATE(); case 236: - if (lookahead == '\n') ADVANCE(756); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == '<') ADVANCE(608); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(497); - if (lookahead == '`') ADVANCE(856); - if (lookahead == '|') ADVANCE(354); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(236) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(958); + if (lookahead == '\n') ADVANCE(928); + if (lookahead == '\r') ADVANCE(235); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(417); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 237: - if (lookahead == '\n') ADVANCE(757); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(599); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(333); - if (lookahead == '>') ADVANCE(334); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(459); - if (lookahead == '`') ADVANCE(855); + ADVANCE_MAP( + '\n', 697, + '!', 954, + '"', 791, + '#', 865, + '$', 784, + '%', 652, + '&', 604, + '\'', 494, + '(', 657, + ')', 658, + '*', 641, + '+', 633, + '-', 636, + '/', 647, + '0', 806, + ';', 558, + '<', 610, + '=', 563, + '>', 619, + '?', 764, + '\\', 318, + '^', 599, + '`', 858, + '|', 595, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(237) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0 && - lookahead != ')' && - lookahead != '|') ADVANCE(958); + lookahead == ' ') SKIP(237); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 238: - if (lookahead == '\n') ADVANCE(758); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(599); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(333); - if (lookahead == '>') ADVANCE(334); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(503); - if (lookahead == '`') ADVANCE(856); + ADVANCE_MAP( + '\n', 698, + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '&', 605, + '*', 640, + '-', 635, + '0', 948, + ';', 557, + '<', 616, + '>', 621, + '?', 763, + '@', 944, + '\\', 184, + '_', 951, + 'e', 880, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(238) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0 && - lookahead != ')' && - lookahead != '|') ADVANCE(958); + lookahead == ' ') SKIP(238); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 239: - if (lookahead == '!') ADVANCE(670); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '%') ADVANCE(647); - if (lookahead == '&') ADVANCE(601); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '*') ADVANCE(638); - if (lookahead == '+') ADVANCE(770); - if (lookahead == ',') ADVANCE(557); - if (lookahead == '-') ADVANCE(768); - if (lookahead == '/') ADVANCE(642); - if (lookahead == '0') ADVANCE(944); - if (lookahead == ':') ADVANCE(765); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(607); - if (lookahead == '=') ADVANCE(563); - if (lookahead == '>') ADVANCE(616); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '[') ADVANCE(674); - if (lookahead == '\\') ADVANCE(417); - if (lookahead == ']') ADVANCE(675); - if (lookahead == '^') ADVANCE(595); - if (lookahead == '_') ADVANCE(946); - if (lookahead == '`') ADVANCE(856); - if (lookahead == 'e') ADVANCE(956); - if (lookahead == 'i') ADVANCE(955); - if (lookahead == '{') ADVANCE(666); - if (lookahead == '|') ADVANCE(592); - if (lookahead == '}') ADVANCE(818); - if (lookahead == '~') ADVANCE(772); + ADVANCE_MAP( + '\n', 699, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + ';', 557, + '<', 612, + '=', 955, + '>', 620, + '?', 764, + '@', 945, + '\\', 153, + '_', 950, + '`', 858, + 'e', 874, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(239) - if (lookahead != 0) ADVANCE(958); + lookahead == ' ') SKIP(239); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(961); END_STATE(); case 240: - if (lookahead == '!') ADVANCE(670); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '%') ADVANCE(649); - if (lookahead == '&') ADVANCE(601); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == '*') ADVANCE(638); - if (lookahead == '+') ADVANCE(630); - if (lookahead == '-') ADVANCE(633); - if (lookahead == '/') ADVANCE(644); - if (lookahead == '0') ADVANCE(943); - if (lookahead == '<') ADVANCE(607); - if (lookahead == '=') ADVANCE(560); - if (lookahead == '>') ADVANCE(616); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(356); - if (lookahead == ']') ADVANCE(675); - if (lookahead == '^') ADVANCE(596); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(592); + ADVANCE_MAP( + '\n', 700, + '"', 791, + '#', 865, + '$', 784, + '&', 605, + '\'', 494, + '(', 657, + '-', 953, + '0', 806, + ';', 557, + '<', 612, + '=', 955, + '>', 620, + '\\', 322, + '`', 858, + 'e', 959, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(240) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(873); + lookahead == ' ') SKIP(240); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(958); + (lookahead < '&' || ')' < lookahead)) ADVANCE(961); END_STATE(); case 241: - if (lookahead == '!') ADVANCE(670); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '%') ADVANCE(649); - if (lookahead == '&') ADVANCE(601); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == '*') ADVANCE(638); - if (lookahead == '+') ADVANCE(771); - if (lookahead == '-') ADVANCE(769); - if (lookahead == '/') ADVANCE(644); - if (lookahead == '0') ADVANCE(803); - if (lookahead == '<') ADVANCE(607); - if (lookahead == '=') ADVANCE(560); - if (lookahead == '>') ADVANCE(616); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(422); - if (lookahead == ']') ADVANCE(675); - if (lookahead == '^') ADVANCE(596); - if (lookahead == '`') ADVANCE(856); - if (lookahead == '|') ADVANCE(592); - if (lookahead == '~') ADVANCE(772); + ADVANCE_MAP( + '\n', 701, + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '&', 605, + '*', 640, + '-', 635, + '0', 948, + ';', 557, + '<', 615, + '>', 621, + '?', 763, + '@', 944, + '\\', 83, + '_', 951, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(241) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(958); + lookahead == ' ') SKIP(241); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 242: - if (lookahead == '!') ADVANCE(670); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '%') ADVANCE(649); - if (lookahead == '&') ADVANCE(600); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '*') ADVANCE(638); - if (lookahead == '+') ADVANCE(771); - if (lookahead == '-') ADVANCE(769); - if (lookahead == '/') ADVANCE(644); - if (lookahead == '0') ADVANCE(803); - if (lookahead == '<') ADVANCE(614); - if (lookahead == '=') ADVANCE(560); - if (lookahead == '>') ADVANCE(619); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(425); - if (lookahead == '^') ADVANCE(596); - if (lookahead == '`') ADVANCE(856); - if (lookahead == '|') ADVANCE(594); - if (lookahead == '~') ADVANCE(772); + ADVANCE_MAP( + '\n', 702, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 605, + '\'', 494, + '(', 657, + '*', 643, + '-', 639, + '0', 946, + ';', 557, + '<', 612, + '=', 955, + '>', 620, + '?', 764, + '@', 945, + '\\', 30, + '_', 950, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(242) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + lookahead == ' ') SKIP(242); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); if (lookahead != 0 && - lookahead != ';') ADVANCE(958); + (lookahead < '&' || '*' < lookahead)) ADVANCE(961); END_STATE(); case 243: - if (lookahead == '!') ADVANCE(670); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '%') ADVANCE(649); - if (lookahead == '&') ADVANCE(600); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == ')') ADVANCE(337); - if (lookahead == '*') ADVANCE(638); - if (lookahead == '+') ADVANCE(771); - if (lookahead == '-') ADVANCE(769); - if (lookahead == '/') ADVANCE(644); - if (lookahead == '0') ADVANCE(803); - if (lookahead == '<') ADVANCE(614); - if (lookahead == '=') ADVANCE(560); - if (lookahead == '>') ADVANCE(619); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(484); - if (lookahead == '^') ADVANCE(596); - if (lookahead == '`') ADVANCE(856); - if (lookahead == '|') ADVANCE(594); - if (lookahead == '~') ADVANCE(772); + ADVANCE_MAP( + '\n', 703, + '"', 791, + '#', 865, + '$', 784, + '&', 605, + '\'', 494, + '(', 657, + '-', 953, + '0', 806, + ';', 557, + '<', 612, + '=', 955, + '>', 620, + '\\', 323, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(243) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + lookahead == ' ') SKIP(243); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); if (lookahead != 0 && - lookahead != ';') ADVANCE(958); + (lookahead < '&' || ')' < lookahead)) ADVANCE(961); END_STATE(); case 244: - if (lookahead == '!') ADVANCE(670); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '%') ADVANCE(649); - if (lookahead == '&') ADVANCE(600); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == '*') ADVANCE(638); - if (lookahead == '+') ADVANCE(771); - if (lookahead == '-') ADVANCE(769); - if (lookahead == '/') ADVANCE(644); - if (lookahead == '0') ADVANCE(803); - if (lookahead == ':') ADVANCE(765); - if (lookahead == '<') ADVANCE(614); - if (lookahead == '=') ADVANCE(560); - if (lookahead == '>') ADVANCE(619); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(426); - if (lookahead == '^') ADVANCE(596); - if (lookahead == '`') ADVANCE(856); - if (lookahead == '|') ADVANCE(594); - if (lookahead == '~') ADVANCE(772); + ADVANCE_MAP( + '\n', 704, + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '&', 605, + '*', 640, + '-', 635, + '0', 948, + ';', 558, + '<', 615, + '>', 621, + '?', 763, + '@', 944, + '\\', 186, + '_', 951, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(244) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(958); + lookahead == ' ') SKIP(244); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 245: - if (lookahead == '!') ADVANCE(670); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '%') ADVANCE(649); - if (lookahead == '&') ADVANCE(600); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == '*') ADVANCE(638); - if (lookahead == '+') ADVANCE(771); - if (lookahead == '-') ADVANCE(769); - if (lookahead == '/') ADVANCE(644); - if (lookahead == '0') ADVANCE(803); - if (lookahead == '<') ADVANCE(614); - if (lookahead == '=') ADVANCE(560); - if (lookahead == '>') ADVANCE(619); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(483); - if (lookahead == ']') ADVANCE(675); - if (lookahead == '^') ADVANCE(596); - if (lookahead == '`') ADVANCE(856); - if (lookahead == '|') ADVANCE(594); - if (lookahead == '~') ADVANCE(772); + ADVANCE_MAP( + '\n', 705, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + ';', 557, + '<', 612, + '=', 955, + '>', 620, + '?', 764, + '@', 945, + '\\', 156, + '_', 950, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(245) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + lookahead == ' ') SKIP(245); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(958); + (lookahead < '&' || '*' < lookahead)) ADVANCE(961); END_STATE(); case 246: - if (lookahead == '!') ADVANCE(670); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '%') ADVANCE(649); - if (lookahead == '&') ADVANCE(600); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == '*') ADVANCE(638); - if (lookahead == '+') ADVANCE(771); - if (lookahead == '-') ADVANCE(769); - if (lookahead == '/') ADVANCE(644); - if (lookahead == '0') ADVANCE(803); - if (lookahead == '<') ADVANCE(614); - if (lookahead == '=') ADVANCE(560); - if (lookahead == '>') ADVANCE(619); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(505); - if (lookahead == ']') ADVANCE(787); - if (lookahead == '^') ADVANCE(596); - if (lookahead == '`') ADVANCE(856); - if (lookahead == '|') ADVANCE(594); - if (lookahead == '~') ADVANCE(772); + ADVANCE_MAP( + '\n', 706, + '"', 791, + '#', 865, + '$', 784, + '&', 605, + '\'', 494, + '(', 657, + ')', 658, + '-', 953, + '0', 806, + ';', 558, + '<', 612, + '=', 955, + '>', 620, + '\\', 324, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(246) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(958); + lookahead == ' ') SKIP(246); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 247: - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(346); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == '<') ADVANCE(608); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(372); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); + ADVANCE_MAP( + '\n', 707, + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '&', 605, + '*', 640, + '-', 635, + '0', 948, + ';', 558, + '<', 615, + '>', 621, + '?', 763, + '@', 944, + '\\', 94, + '_', 951, + '`', 858, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(247) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';' && - lookahead != '|') ADVANCE(958); + lookahead == ' ') SKIP(247); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 248: - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '=') ADVANCE(952); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(364); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 708, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 605, + '\'', 494, + '(', 657, + '*', 643, + '-', 639, + '0', 946, + ';', 558, + '<', 612, + '=', 955, + '>', 620, + '?', 764, + '@', 945, + '\\', 203, + '_', 950, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(248) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + lookahead == ' ') SKIP(248); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(958); + (lookahead < '&' || '*' < lookahead)) ADVANCE(961); END_STATE(); case 249: - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '=') ADVANCE(952); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(394); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 709, + '"', 791, + '#', 865, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + '-', 953, + '0', 807, + ';', 557, + '<', 613, + '>', 620, + '\\', 325, + '`', 858, + 'e', 869, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(249) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + lookahead == ' ') SKIP(249); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(809); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(871); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(958); + (lookahead < '&' || ')' < lookahead)) ADVANCE(961); END_STATE(); case 250: - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(365); - if (lookahead == ']') ADVANCE(675); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 710, + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '&', 605, + '*', 640, + '-', 635, + '0', 948, + ';', 557, + '<', 616, + '>', 621, + '?', 763, + '@', 944, + '\\', 212, + '_', 951, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(250) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(958); + lookahead == ' ') SKIP(250); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 251: - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(368); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 711, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 605, + '\'', 494, + '(', 657, + ')', 658, + '*', 643, + '-', 639, + '0', 946, + ';', 558, + '<', 612, + '=', 955, + '>', 620, + '?', 764, + '@', 945, + '\\', 33, + '_', 950, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(251) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + lookahead == ' ') SKIP(251); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(958); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 252: - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == '<') ADVANCE(610); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(413); - if (lookahead == ']') ADVANCE(675); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 712, + '"', 791, + '#', 865, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + '-', 953, + '0', 807, + ';', 557, + '<', 613, + '>', 620, + '\\', 326, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(252) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + lookahead == ' ') SKIP(252); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(809); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(871); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(958); + (lookahead < '&' || ')' < lookahead)) ADVANCE(961); END_STATE(); case 253: - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == '<') ADVANCE(610); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(415); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 713, + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '&', 605, + ')', 658, + '*', 640, + '-', 635, + '0', 948, + ';', 558, + '<', 615, + '>', 621, + '?', 763, + '@', 944, + '\\', 98, + '_', 951, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(253) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(958); + lookahead == ' ') SKIP(253); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 254: - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == '<') ADVANCE(333); - if (lookahead == '>') ADVANCE(334); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(380); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); + ADVANCE_MAP( + '\n', 714, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + ';', 558, + '<', 612, + '=', 955, + '>', 620, + '?', 764, + '@', 945, + '\\', 216, + '_', 950, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(254) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + lookahead == ' ') SKIP(254); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); if (lookahead != 0 && - lookahead != '&' && - lookahead != ';' && - lookahead != '|') ADVANCE(958); + (lookahead < '&' || '*' < lookahead)) ADVANCE(961); END_STATE(); case 255: - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(346); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == ';') ADVANCE(328); - if (lookahead == '<') ADVANCE(608); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[') ADVANCE(674); - if (lookahead == '\\') ADVANCE(418); - if (lookahead == ']' || - lookahead == '}') ADVANCE(786); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '{') ADVANCE(666); - if (lookahead == '|') ADVANCE(590); + ADVANCE_MAP( + '\n', 715, + '"', 791, + '#', 865, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + ')', 658, + '-', 953, + '0', 807, + ';', 558, + '<', 613, + '>', 620, + '\\', 327, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(255) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0) ADVANCE(958); + lookahead == ' ') SKIP(255); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(809); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(871); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 256: - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(346); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == ')') ADVANCE(337); - if (lookahead == '+') ADVANCE(771); - if (lookahead == '-') ADVANCE(769); - if (lookahead == '0') ADVANCE(803); - if (lookahead == '<') ADVANCE(608); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[') ADVANCE(674); - if (lookahead == '\\') ADVANCE(419); - if (lookahead == ']' || - lookahead == '}') ADVANCE(786); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '{') ADVANCE(666); - if (lookahead == '|') ADVANCE(591); - if (lookahead == '~') ADVANCE(772); + ADVANCE_MAP( + '\n', 716, + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '&', 605, + '*', 640, + '-', 635, + '0', 948, + ';', 558, + '<', 616, + '>', 621, + '?', 763, + '@', 944, + '\\', 219, + '_', 951, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(256) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0 && - lookahead != ';') ADVANCE(958); + lookahead == ' ') SKIP(256); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 257: - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(346); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == '+') ADVANCE(771); - if (lookahead == '-') ADVANCE(769); - if (lookahead == '0') ADVANCE(803); - if (lookahead == '<') ADVANCE(608); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[') ADVANCE(674); - if (lookahead == '\\') ADVANCE(420); - if (lookahead == ']') ADVANCE(675); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '{') ADVANCE(666); - if (lookahead == '}') ADVANCE(786); - if (lookahead == '~') ADVANCE(772); + ADVANCE_MAP( + '\n', 717, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + ')', 658, + '*', 643, + '-', 639, + '0', 946, + ';', 558, + '<', 612, + '=', 955, + '>', 620, + '?', 764, + '@', 945, + '\\', 159, + '_', 950, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(257) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';' && - lookahead != '|') ADVANCE(958); + lookahead == ' ') SKIP(257); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 258: - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(346); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == '+') ADVANCE(771); - if (lookahead == '-') ADVANCE(769); - if (lookahead == '0') ADVANCE(803); - if (lookahead == '<') ADVANCE(608); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[') ADVANCE(674); - if (lookahead == '\\') ADVANCE(429); - if (lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '~') ADVANCE(772); + ADVANCE_MAP( + '\n', 718, + '"', 791, + '#', 865, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + '-', 953, + '0', 806, + ';', 557, + '<', 612, + '>', 620, + '\\', 328, + '`', 858, + 'e', 959, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(258) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + lookahead == ' ') SKIP(258); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';' && - lookahead != '|') ADVANCE(958); + (lookahead < '&' || ')' < lookahead)) ADVANCE(961); END_STATE(); case 259: - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(346); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == ';') ADVANCE(328); - if (lookahead == '<') ADVANCE(608); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[') ADVANCE(674); - if (lookahead == '\\') ADVANCE(423); - if (lookahead == ']' || - lookahead == '}') ADVANCE(786); - if (lookahead == '`') ADVANCE(855); - if (lookahead == 'e') ADVANCE(956); - if (lookahead == '{') ADVANCE(666); + ADVANCE_MAP( + '\n', 719, + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '&', 605, + '*', 640, + '-', 635, + '0', 948, + ';', 558, + '<', 616, + '>', 621, + '?', 763, + '@', 944, + '\\', 188, + '_', 951, + '`', 858, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(259) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0 && - lookahead != ')' && - lookahead != '|') ADVANCE(958); + lookahead == ' ') SKIP(259); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 260: - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(346); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == '<') ADVANCE(608); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[') ADVANCE(674); - if (lookahead == '\\') ADVANCE(424); - if (lookahead == ']') ADVANCE(786); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '{') ADVANCE(666); - if (lookahead == '}') ADVANCE(667); + ADVANCE_MAP( + '\n', 720, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + ';', 557, + '<', 612, + '>', 620, + '?', 764, + '@', 945, + '\\', 37, + '_', 950, + '`', 858, + 'e', 874, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(260) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + lookahead == ' ') SKIP(260); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';' && - lookahead != '|') ADVANCE(958); + (lookahead < '&' || '*' < lookahead)) ADVANCE(961); END_STATE(); case 261: - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == ')') ADVANCE(337); - if (lookahead == '+') ADVANCE(771); - if (lookahead == '-') ADVANCE(769); - if (lookahead == '0') ADVANCE(803); - if (lookahead == '<') ADVANCE(333); - if (lookahead == '>') ADVANCE(334); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(449); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '~') ADVANCE(772); + ADVANCE_MAP( + '\n', 721, + '"', 791, + '#', 865, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + '-', 953, + '0', 806, + ';', 557, + '<', 612, + '>', 620, + '\\', 329, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(261) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + lookahead == ' ') SKIP(261); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); if (lookahead != 0 && - lookahead != '&' && - lookahead != ';' && - lookahead != '|') ADVANCE(958); + (lookahead < '&' || ')' < lookahead)) ADVANCE(961); END_STATE(); case 262: - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == ')') ADVANCE(337); - if (lookahead == '+') ADVANCE(771); - if (lookahead == '-') ADVANCE(769); - if (lookahead == '0') ADVANCE(804); - if (lookahead == '<') ADVANCE(333); - if (lookahead == '>') ADVANCE(334); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(441); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '~') ADVANCE(772); + ADVANCE_MAP( + '\n', 722, + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '&', 605, + ')', 658, + '*', 640, + '-', 635, + '0', 948, + ';', 558, + '<', 616, + '>', 621, + '?', 763, + '@', 944, + '\\', 191, + '_', 951, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(262) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(806); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(868); - if (lookahead != 0 && - lookahead != '&' && - lookahead != ';' && - lookahead != '|') ADVANCE(958); + lookahead == ' ') SKIP(262); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 263: - if (lookahead == '!') ADVANCE(951); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '%') ADVANCE(649); - if (lookahead == '&') ADVANCE(601); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == '*') ADVANCE(638); - if (lookahead == '+') ADVANCE(630); - if (lookahead == '-') ADVANCE(633); - if (lookahead == '/') ADVANCE(644); - if (lookahead == '0') ADVANCE(803); - if (lookahead == '<') ADVANCE(607); - if (lookahead == '=') ADVANCE(560); - if (lookahead == '>') ADVANCE(616); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(428); - if (lookahead == ']') ADVANCE(675); - if (lookahead == '^') ADVANCE(596); - if (lookahead == '`') ADVANCE(856); - if (lookahead == '|') ADVANCE(592); + ADVANCE_MAP( + '\n', 723, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + ';', 557, + '<', 613, + '>', 620, + '?', 764, + '@', 945, + '\\', 223, + '_', 950, + '`', 858, + 'e', 874, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(263) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + lookahead == ' ') SKIP(263); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(958); + (lookahead < '&' || '*' < lookahead)) ADVANCE(961); END_STATE(); case 264: - if (lookahead == '!') ADVANCE(951); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '%') ADVANCE(649); - if (lookahead == '&') ADVANCE(601); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == '*') ADVANCE(638); - if (lookahead == '+') ADVANCE(630); - if (lookahead == '-') ADVANCE(633); - if (lookahead == '/') ADVANCE(644); - if (lookahead == '0') ADVANCE(803); - if (lookahead == '<') ADVANCE(607); - if (lookahead == '=') ADVANCE(560); - if (lookahead == '>') ADVANCE(616); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(486); - if (lookahead == ']') ADVANCE(675); - if (lookahead == '^') ADVANCE(596); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(592); + ADVANCE_MAP( + '\n', 724, + '"', 791, + '#', 865, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + '-', 953, + '0', 806, + ';', 557, + '<', 613, + '>', 620, + '\\', 399, + '`', 858, + 'e', 959, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(264) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + lookahead == ' ') SKIP(264); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(958); + (lookahead < '&' || ')' < lookahead)) ADVANCE(961); END_STATE(); case 265: - if (lookahead == '!') ADVANCE(671); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '%') ADVANCE(650); - if (lookahead == '&') ADVANCE(600); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '*') ADVANCE(639); - if (lookahead == '+') ADVANCE(631); - if (lookahead == '-') ADVANCE(634); - if (lookahead == '/') ADVANCE(645); - if (lookahead == '0') ADVANCE(945); - if (lookahead == '<') ADVANCE(615); - if (lookahead == '=') ADVANCE(562); - if (lookahead == '>') ADVANCE(620); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(370); - if (lookahead == '^') ADVANCE(597); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(594); + ADVANCE_MAP( + '\n', 725, + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '&', 492, + '*', 640, + '-', 635, + '0', 948, + '<', 615, + '>', 621, + '?', 763, + '@', 944, + '\\', 108, + '_', 951, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(265) + lookahead == ' ') SKIP(265); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 266: - if (lookahead == '!') ADVANCE(671); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '%') ADVANCE(650); - if (lookahead == '&') ADVANCE(600); - if (lookahead == ')') ADVANCE(337); - if (lookahead == '*') ADVANCE(639); - if (lookahead == '+') ADVANCE(631); - if (lookahead == '-') ADVANCE(634); - if (lookahead == '/') ADVANCE(645); - if (lookahead == '0') ADVANCE(945); - if (lookahead == '<') ADVANCE(615); - if (lookahead == '=') ADVANCE(562); - if (lookahead == '>') ADVANCE(620); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(397); - if (lookahead == '^') ADVANCE(597); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(594); + ADVANCE_MAP( + '\n', 726, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + ';', 557, + '<', 612, + '>', 620, + '?', 764, + '@', 945, + '\\', 43, + '_', 950, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(266) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + lookahead == ' ') SKIP(266); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(961); END_STATE(); case 267: - if (lookahead == '!') ADVANCE(671); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '%') ADVANCE(650); - if (lookahead == '&') ADVANCE(600); - if (lookahead == '*') ADVANCE(639); - if (lookahead == '+') ADVANCE(631); - if (lookahead == '-') ADVANCE(634); - if (lookahead == '/') ADVANCE(645); - if (lookahead == '0') ADVANCE(945); - if (lookahead == ':') ADVANCE(762); - if (lookahead == '<') ADVANCE(615); - if (lookahead == '=') ADVANCE(562); - if (lookahead == '>') ADVANCE(620); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(369); - if (lookahead == '^') ADVANCE(597); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(594); + ADVANCE_MAP( + '\n', 727, + '"', 791, + '#', 865, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + ')', 658, + '-', 953, + '0', 806, + ';', 558, + '<', 612, + '>', 620, + '\\', 332, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(267) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + lookahead == ' ') SKIP(267); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 268: - if (lookahead == '!') ADVANCE(671); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '%') ADVANCE(650); - if (lookahead == '&') ADVANCE(600); - if (lookahead == '*') ADVANCE(639); - if (lookahead == '+') ADVANCE(631); - if (lookahead == '-') ADVANCE(634); - if (lookahead == '/') ADVANCE(645); - if (lookahead == '0') ADVANCE(945); - if (lookahead == '<') ADVANCE(615); - if (lookahead == '=') ADVANCE(562); - if (lookahead == '>') ADVANCE(620); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(367); - if (lookahead == ']') ADVANCE(675); - if (lookahead == '^') ADVANCE(597); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(594); + ADVANCE_MAP( + '\n', 728, + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '&', 492, + '*', 640, + '-', 635, + '0', 948, + '<', 616, + '>', 621, + '?', 763, + '@', 944, + '\\', 196, + '_', 951, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(268) + lookahead == ' ') SKIP(268); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 269: - if (lookahead == '!') ADVANCE(671); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '%') ADVANCE(650); - if (lookahead == '&') ADVANCE(600); - if (lookahead == '*') ADVANCE(639); - if (lookahead == '+') ADVANCE(631); - if (lookahead == '-') ADVANCE(634); - if (lookahead == '/') ADVANCE(645); - if (lookahead == '0') ADVANCE(945); - if (lookahead == '<') ADVANCE(615); - if (lookahead == '=') ADVANCE(562); - if (lookahead == '>') ADVANCE(620); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(396); - if (lookahead == ']') ADVANCE(347); - if (lookahead == '^') ADVANCE(597); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(594); + ADVANCE_MAP( + '\n', 729, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + ')', 658, + '*', 643, + '-', 639, + '0', 946, + ';', 558, + '<', 612, + '>', 620, + '?', 764, + '@', 945, + '\\', 45, + '_', 950, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(269) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + lookahead == ' ') SKIP(269); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 270: - if (lookahead == '!') ADVANCE(671); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '%') ADVANCE(650); - if (lookahead == '&') ADVANCE(600); - if (lookahead == '*') ADVANCE(639); - if (lookahead == '+') ADVANCE(631); - if (lookahead == '-') ADVANCE(634); - if (lookahead == '/') ADVANCE(645); - if (lookahead == '0') ADVANCE(945); - if (lookahead == '<') ADVANCE(615); - if (lookahead == '=') ADVANCE(562); - if (lookahead == '>') ADVANCE(620); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(371); - if (lookahead == '^') ADVANCE(597); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(594); + ADVANCE_MAP( + '\n', 730, + '"', 791, + '#', 865, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + '-', 953, + '0', 806, + ';', 557, + '<', 613, + '>', 620, + '\\', 400, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(270) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + lookahead == ' ') SKIP(270); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(961); END_STATE(); case 271: - if (lookahead == '!') ADVANCE(344); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(785); - if (lookahead == '%') ADVANCE(650); - if (lookahead == '&') ADVANCE(600); - if (lookahead == ')') ADVANCE(337); - if (lookahead == '*') ADVANCE(639); - if (lookahead == '+') ADVANCE(631); - if (lookahead == ',') ADVANCE(556); - if (lookahead == '-') ADVANCE(634); - if (lookahead == '.') ADVANCE(341); - if (lookahead == '/') ADVANCE(645); - if (lookahead == ':') ADVANCE(762); - if (lookahead == ';') ADVANCE(328); - if (lookahead == '<') ADVANCE(615); - if (lookahead == '=') ADVANCE(562); - if (lookahead == '>') ADVANCE(620); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '[') ADVANCE(673); - if (lookahead == '\\') SKIP(447) - if (lookahead == ']') ADVANCE(347); - if (lookahead == '^') ADVANCE(597); - if (lookahead == '`') ADVANCE(855); - if (lookahead == 'e') ADVANCE(352); - if (lookahead == 'i') ADVANCE(351); - if (lookahead == '|') ADVANCE(594); - if (lookahead == '}') ADVANCE(818); + ADVANCE_MAP( + '\n', 731, + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '&', 492, + '*', 640, + '-', 635, + '0', 948, + '<', 614, + '>', 621, + '?', 763, + '@', 944, + '\\', 214, + '_', 951, + '|', 519, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(272) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(775); + lookahead == ' ') SKIP(271); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 272: - if (lookahead == '!') ADVANCE(344); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(785); - if (lookahead == '%') ADVANCE(650); - if (lookahead == '&') ADVANCE(600); - if (lookahead == ')') ADVANCE(337); - if (lookahead == '*') ADVANCE(639); - if (lookahead == '+') ADVANCE(631); - if (lookahead == ',') ADVANCE(556); - if (lookahead == '-') ADVANCE(634); - if (lookahead == '/') ADVANCE(645); - if (lookahead == ':') ADVANCE(762); - if (lookahead == ';') ADVANCE(328); - if (lookahead == '<') ADVANCE(615); - if (lookahead == '=') ADVANCE(562); - if (lookahead == '>') ADVANCE(620); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '[') ADVANCE(673); - if (lookahead == '\\') SKIP(447) - if (lookahead == ']') ADVANCE(347); - if (lookahead == '^') ADVANCE(597); - if (lookahead == '`') ADVANCE(855); - if (lookahead == 'e') ADVANCE(352); - if (lookahead == 'i') ADVANCE(351); - if (lookahead == '|') ADVANCE(594); - if (lookahead == '}') ADVANCE(818); + ADVANCE_MAP( + '\n', 732, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + ';', 558, + '<', 612, + '>', 620, + '?', 764, + '@', 945, + '\\', 166, + '_', 950, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(272) + lookahead == ' ') SKIP(272); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(961); END_STATE(); case 273: - if (lookahead == '!') ADVANCE(344); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(336); - if (lookahead == '%') ADVANCE(650); - if (lookahead == '&') ADVANCE(600); - if (lookahead == '(') ADVANCE(332); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '*') ADVANCE(639); - if (lookahead == '+') ADVANCE(631); - if (lookahead == ',') ADVANCE(556); - if (lookahead == '-') ADVANCE(634); - if (lookahead == '/') ADVANCE(645); - if (lookahead == '<') ADVANCE(615); - if (lookahead == '=') ADVANCE(562); - if (lookahead == '>') ADVANCE(620); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') SKIP(448) - if (lookahead == ']') ADVANCE(675); - if (lookahead == '^') ADVANCE(597); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(594); + ADVANCE_MAP( + '\n', 733, + '"', 791, + '#', 865, + '$', 784, + '&', 492, + '\'', 494, + '(', 497, + '-', 953, + '0', 806, + '<', 611, + '>', 620, + '\\', 334, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(273) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z')) ADVANCE(879); + lookahead == ' ') SKIP(273); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(961); END_STATE(); case 274: - if (lookahead == '!') ADVANCE(344); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '%') ADVANCE(650); - if (lookahead == '&') ADVANCE(600); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '*') ADVANCE(639); - if (lookahead == '+') ADVANCE(631); - if (lookahead == ',') ADVANCE(556); - if (lookahead == '-') ADVANCE(635); - if (lookahead == '/') ADVANCE(645); - if (lookahead == '<') ADVANCE(615); - if (lookahead == '=') ADVANCE(561); - if (lookahead == '>') ADVANCE(620); - if (lookahead == '\\') SKIP(502) - if (lookahead == '^') ADVANCE(597); - if (lookahead == '|') ADVANCE(594); + ADVANCE_MAP( + '\n', 734, + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '&', 602, + '*', 640, + '-', 635, + '0', 948, + ';', 558, + '?', 763, + '@', 944, + '\\', 128, + '_', 951, + 'i', 879, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(274) + lookahead == ' ') SKIP(274); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 275: - if (lookahead == '!') ADVANCE(344); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '%') ADVANCE(650); - if (lookahead == '&') ADVANCE(600); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '*') ADVANCE(639); - if (lookahead == '+') ADVANCE(631); - if (lookahead == '-') ADVANCE(634); - if (lookahead == '/') ADVANCE(645); - if (lookahead == '<') ADVANCE(615); - if (lookahead == '=') ADVANCE(562); - if (lookahead == '>') ADVANCE(620); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '[') ADVANCE(673); - if (lookahead == '\\') SKIP(457) - if (lookahead == ']') ADVANCE(675); - if (lookahead == '^') ADVANCE(597); - if (lookahead == '`') ADVANCE(348); - if (lookahead == '|') ADVANCE(594); - if (lookahead == '}') ADVANCE(818); + ADVANCE_MAP( + '\n', 735, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 492, + '\'', 494, + '(', 657, + '*', 643, + '-', 639, + '0', 946, + '<', 612, + '=', 955, + '>', 620, + '?', 764, + '@', 945, + '\\', 48, + '_', 950, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(275) + lookahead == ' ') SKIP(275); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + (lookahead < ';' || ']' < lookahead)) ADVANCE(961); END_STATE(); case 276: - if (lookahead == '!') ADVANCE(344); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '%') ADVANCE(650); - if (lookahead == '&') ADVANCE(600); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '*') ADVANCE(639); - if (lookahead == '+') ADVANCE(631); - if (lookahead == '-') ADVANCE(634); - if (lookahead == '/') ADVANCE(645); - if (lookahead == '<') ADVANCE(615); - if (lookahead == '=') ADVANCE(562); - if (lookahead == '>') ADVANCE(620); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') SKIP(452) - if (lookahead == ']') ADVANCE(675); - if (lookahead == '^') ADVANCE(597); - if (lookahead == '`') ADVANCE(348); - if (lookahead == '|') ADVANCE(594); + ADVANCE_MAP( + '\n', 736, + '"', 791, + '#', 865, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + ')', 658, + '-', 953, + '0', 806, + ';', 558, + '<', 613, + '>', 620, + '\\', 401, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(276) + lookahead == ' ') SKIP(276); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 277: - if (lookahead == '!') ADVANCE(344); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '%') ADVANCE(650); - if (lookahead == '&') ADVANCE(600); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '*') ADVANCE(639); - if (lookahead == '+') ADVANCE(631); - if (lookahead == '-') ADVANCE(634); - if (lookahead == '/') ADVANCE(645); - if (lookahead == '<') ADVANCE(615); - if (lookahead == '=') ADVANCE(562); - if (lookahead == '>') ADVANCE(620); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') SKIP(454) - if (lookahead == '^') ADVANCE(597); - if (lookahead == '`') ADVANCE(348); - if (lookahead == '|') ADVANCE(594); + ADVANCE_MAP( + '\n', 737, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + ';', 557, + '<', 613, + '>', 620, + '?', 764, + '@', 945, + '\\', 227, + '_', 950, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(277) + lookahead == ' ') SKIP(277); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(961); END_STATE(); case 278: - if (lookahead == '!') ADVANCE(344); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '%') ADVANCE(650); - if (lookahead == '&') ADVANCE(600); - if (lookahead == ')') ADVANCE(337); - if (lookahead == '*') ADVANCE(639); - if (lookahead == '+') ADVANCE(631); - if (lookahead == ',') ADVANCE(556); - if (lookahead == '-') ADVANCE(634); - if (lookahead == '/') ADVANCE(645); - if (lookahead == ':') ADVANCE(762); - if (lookahead == '<') ADVANCE(615); - if (lookahead == '=') ADVANCE(562); - if (lookahead == '>') ADVANCE(620); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') SKIP(450) - if (lookahead == ']') ADVANCE(787); - if (lookahead == '^') ADVANCE(597); - if (lookahead == '`') ADVANCE(348); - if (lookahead == '|') ADVANCE(594); + ADVANCE_MAP( + '\n', 738, + '"', 791, + '#', 865, + '$', 784, + '&', 605, + '\'', 494, + '(', 657, + '-', 953, + '0', 806, + ';', 557, + '<', 612, + '=', 955, + '>', 620, + '\\', 337, + '`', 859, + 'e', 959, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(278) + lookahead == ' ') SKIP(278); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(961); END_STATE(); case 279: - if (lookahead == '!') ADVANCE(344); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '%') ADVANCE(650); - if (lookahead == '&') ADVANCE(600); - if (lookahead == ')') ADVANCE(337); - if (lookahead == '*') ADVANCE(639); - if (lookahead == '+') ADVANCE(631); - if (lookahead == ',') ADVANCE(556); - if (lookahead == '-') ADVANCE(635); - if (lookahead == '/') ADVANCE(645); - if (lookahead == '<') ADVANCE(615); - if (lookahead == '=') ADVANCE(561); - if (lookahead == '>') ADVANCE(620); - if (lookahead == '\\') SKIP(458) - if (lookahead == '^') ADVANCE(597); - if (lookahead == '|') ADVANCE(594); - if (lookahead == '}') ADVANCE(778); + ADVANCE_MAP( + '\n', 739, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + ';', 558, + '<', 613, + '>', 620, + '?', 764, + '@', 945, + '\\', 208, + '_', 950, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(280) + lookahead == ' ') SKIP(279); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(961); END_STATE(); case 280: - if (lookahead == '!') ADVANCE(344); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '%') ADVANCE(650); - if (lookahead == '&') ADVANCE(600); - if (lookahead == ')') ADVANCE(337); - if (lookahead == '*') ADVANCE(639); - if (lookahead == '+') ADVANCE(631); - if (lookahead == ',') ADVANCE(556); - if (lookahead == '-') ADVANCE(635); - if (lookahead == '/') ADVANCE(645); - if (lookahead == '<') ADVANCE(615); - if (lookahead == '=') ADVANCE(561); - if (lookahead == '>') ADVANCE(620); - if (lookahead == '\\') SKIP(458) - if (lookahead == '^') ADVANCE(597); - if (lookahead == '|') ADVANCE(594); + ADVANCE_MAP( + '\n', 740, + '"', 791, + '#', 865, + '$', 784, + '&', 605, + '\'', 494, + '(', 657, + '-', 953, + '0', 806, + ';', 557, + '<', 612, + '=', 955, + '>', 620, + '\\', 338, + '`', 859, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(280) + lookahead == ' ') SKIP(280); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(961); END_STATE(); case 281: - if (lookahead == '!') ADVANCE(344); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '%') ADVANCE(650); - if (lookahead == '&') ADVANCE(600); - if (lookahead == ')') ADVANCE(337); - if (lookahead == '*') ADVANCE(639); - if (lookahead == '+') ADVANCE(631); - if (lookahead == '-') ADVANCE(634); - if (lookahead == '/') ADVANCE(645); - if (lookahead == ':') ADVANCE(762); - if (lookahead == '<') ADVANCE(615); - if (lookahead == '=') ADVANCE(562); - if (lookahead == '>') ADVANCE(620); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') SKIP(453) - if (lookahead == '^') ADVANCE(597); - if (lookahead == '`') ADVANCE(348); - if (lookahead == '|') ADVANCE(594); + ADVANCE_MAP( + '\n', 741, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 492, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + '<', 612, + '=', 955, + '>', 620, + '?', 764, + '@', 945, + '\\', 168, + '_', 950, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(281) + lookahead == ' ') SKIP(281); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + (lookahead < ';' || ']' < lookahead)) ADVANCE(961); END_STATE(); case 282: - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == '<') ADVANCE(612); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(379); - if (lookahead == ']') ADVANCE(675); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 742, + '"', 791, + '#', 865, + '$', 784, + '&', 605, + '\'', 494, + '(', 657, + ')', 658, + '-', 953, + '0', 806, + ';', 558, + '<', 612, + '=', 955, + '>', 620, + '\\', 340, + '`', 859, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(282) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + lookahead == ' ') SKIP(282); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 283: - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == '<') ADVANCE(612); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(382); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 743, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + ')', 658, + '*', 643, + '-', 639, + '0', 946, + ';', 558, + '<', 613, + '>', 620, + '?', 764, + '@', 945, + '\\', 229, + '_', 950, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(283) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + lookahead == ' ') SKIP(283); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 284: - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == '<') ADVANCE(613); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(402); - if (lookahead == ']') ADVANCE(675); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 744, + '"', 791, + '#', 865, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + '-', 953, + '0', 806, + ';', 557, + '<', 612, + '>', 620, + '\\', 342, + '`', 859, + 'e', 959, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(284) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + lookahead == ' ') SKIP(284); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(961); END_STATE(); case 285: - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == '<') ADVANCE(613); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(403); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 745, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 492, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + '<', 612, + '>', 620, + '?', 764, + '@', 945, + '\\', 57, + '_', 950, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(285) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + lookahead == ' ') SKIP(285); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(961); END_STATE(); case 286: - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(384); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(590); + ADVANCE_MAP( + '\n', 746, + '"', 791, + '#', 865, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + '-', 953, + '0', 807, + ';', 557, + '<', 613, + '>', 620, + '\\', 343, + '`', 859, + 'e', 869, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(286) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + lookahead == ' ') SKIP(286); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(809); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(871); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(961); END_STATE(); case 287: - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(386); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '\n' || - lookahead == '\r') SKIP(287) - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(793); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ADVANCE_MAP( + '\n', 747, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 492, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + '<', 613, + '>', 620, + '?', 764, + '@', 945, + '\\', 234, + '_', 950, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(287); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); if (lookahead != 0 && - lookahead != '`') ADVANCE(798); + (lookahead < '&' || '*' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(961); END_STATE(); case 288: - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(385); - if (lookahead == '_') ADVANCE(948); + ADVANCE_MAP( + '\n', 748, + '"', 791, + '#', 865, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + '-', 953, + '0', 806, + ';', 557, + '<', 612, + '>', 620, + '\\', 345, + '`', 859, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(288) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + lookahead == ' ') SKIP(288); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(961); END_STATE(); case 289: - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(785); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '(') ADVANCE(653); - if (lookahead == '+') ADVANCE(771); - if (lookahead == '-') ADVANCE(769); - if (lookahead == '0') ADVANCE(808); - if (lookahead == '<') ADVANCE(612); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') SKIP(464) - if (lookahead == ']') ADVANCE(675); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); - if (lookahead == '~') ADVANCE(772); + ADVANCE_MAP( + '\n', 749, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 492, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + '<', 611, + '>', 620, + '?', 764, + '@', 945, + '\\', 175, + '_', 950, + '`', 858, + '|', 519, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(289) + lookahead == ' ') SKIP(289); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(961); END_STATE(); case 290: - if (lookahead == '!') ADVANCE(669); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(387); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '\n' || - lookahead == '\r') SKIP(290) - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(794); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ADVANCE_MAP( + '\n', 750, + '"', 791, + '#', 865, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + '-', 953, + '0', 807, + ';', 557, + '<', 613, + '>', 620, + '\\', 346, + '`', 859, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(290); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(809); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(871); if (lookahead != 0 && - lookahead != '"' && - lookahead != '`') ADVANCE(798); + (lookahead < '&' || ')' < lookahead)) ADVANCE(961); END_STATE(); case 291: - if (lookahead == '!') ADVANCE(669); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(388); - if (lookahead == '_') ADVANCE(948); + ADVANCE_MAP( + '\n', 751, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 602, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + ';', 558, + '<', 498, + '>', 499, + '?', 764, + '@', 945, + '\\', 101, + '_', 950, + '`', 858, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(291) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + lookahead == ' ') SKIP(291); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(961); END_STATE(); case 292: - if (lookahead == '!') ADVANCE(669); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(784); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') SKIP(467) - if (lookahead == '_') ADVANCE(948); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '}') ADVANCE(818); + ADVANCE_MAP( + '\n', 752, + '"', 791, + '#', 865, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + ')', 658, + '-', 953, + '0', 806, + ';', 558, + '<', 612, + '>', 620, + '\\', 348, + '`', 859, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(292) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + lookahead == ' ') SKIP(292); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 293: - if (lookahead == '!') ADVANCE(669); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(784); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') SKIP(476) - if (lookahead == '_') ADVANCE(948); - if (lookahead == '`') ADVANCE(855); + ADVANCE_MAP( + '\n', 753, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + '<', 498, + '>', 499, + '?', 764, + '@', 945, + '\\', 112, + '_', 950, + '`', 858, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(293) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + lookahead == ' ') SKIP(293); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '_' || '}' < lookahead)) ADVANCE(961); END_STATE(); case 294: - if (lookahead == '!') ADVANCE(819); - if (lookahead == '#') ADVANCE(825); - if (lookahead == '$') ADVANCE(784); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == '=') ADVANCE(826); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') SKIP(467) - if (lookahead == '_') ADVANCE(948); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '}') ADVANCE(818); + ADVANCE_MAP( + '\n', 754, + '"', 791, + '#', 865, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + ')', 658, + '-', 953, + '0', 807, + ';', 558, + '<', 613, + '>', 620, + '\\', 349, + '`', 859, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(292) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + lookahead == ' ') SKIP(294); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(809); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(871); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 295: - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(346); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == '<') ADVANCE(608); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[') ADVANCE(674); - if (lookahead == '\\') ADVANCE(439); - if (lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '`') ADVANCE(855); + ADVANCE_MAP( + '\n', 755, + '"', 791, + '#', 865, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + '-', 953, + '0', 806, + ';', 557, + '<', 613, + '>', 620, + '\\', 350, + '`', 859, + 'e', 959, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(295) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + lookahead == ' ') SKIP(295); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';' && - lookahead != '|') ADVANCE(958); + (lookahead < '&' || ')' < lookahead)) ADVANCE(961); END_STATE(); case 296: - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(346); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == '<') ADVANCE(608); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(500); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(590); + ADVANCE_MAP( + '\n', 756, + '"', 791, + '#', 865, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + '-', 953, + '0', 806, + ';', 557, + '<', 613, + '>', 620, + '\\', 353, + '`', 859, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(296) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + lookahead == ' ') SKIP(296); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); if (lookahead != 0 && - lookahead != ';') ADVANCE(958); + (lookahead < '&' || ')' < lookahead)) ADVANCE(961); END_STATE(); case 297: - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(346); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == '<') ADVANCE(608); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(511); - if (lookahead == '`') ADVANCE(856); - if (lookahead == '|') ADVANCE(590); + ADVANCE_MAP( + '\n', 757, + '"', 791, + '#', 865, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + ')', 658, + '-', 953, + '0', 806, + ';', 558, + '<', 613, + '>', 620, + '\\', 354, + '`', 859, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(297) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0 && - lookahead != ';') ADVANCE(958); + lookahead == ' ') SKIP(297); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 298: - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(445); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 758, + '"', 791, + '#', 865, + '$', 784, + '&', 602, + '\'', 494, + '(', 657, + '-', 953, + '0', 806, + ';', 558, + '<', 498, + '>', 499, + '\\', 359, + '`', 858, + 'e', 959, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(298) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + lookahead == ' ') SKIP(298); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); if (lookahead != 0 && - lookahead != ';') ADVANCE(958); + (lookahead < '&' || ')' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(961); END_STATE(); case 299: - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '=') ADVANCE(952); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(438); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 759, + '"', 791, + '#', 865, + '$', 784, + '&', 492, + '\'', 494, + '(', 497, + '-', 953, + '0', 806, + '<', 611, + '>', 620, + '\\', 370, + '`', 859, + '|', 519, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(299) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + lookahead == ' ') SKIP(299); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(958); + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(961); END_STATE(); case 300: - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '=') ADVANCE(952); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(495); - if (lookahead == '`') ADVANCE(856); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 760, + '"', 791, + '#', 865, + '$', 784, + '&', 602, + '\'', 494, + '(', 497, + '-', 953, + '0', 806, + ';', 558, + '<', 498, + '>', 499, + '\\', 373, + '`', 858, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(300) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + lookahead == ' ') SKIP(300); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(958); + (lookahead < '&' || ')' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(961); END_STATE(); case 301: - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(510); - if (lookahead == '`') ADVANCE(856); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 761, + '"', 791, + '#', 865, + '$', 784, + '&', 602, + '\'', 494, + '(', 497, + '-', 953, + '0', 806, + ';', 558, + '<', 498, + '>', 499, + '\\', 383, + '`', 859, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(301) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); + lookahead == ' ') SKIP(301); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); if (lookahead != 0 && - lookahead != ';') ADVANCE(958); + (lookahead < '&' || ')' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(961); END_STATE(); case 302: - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(444); - if (lookahead == ']') ADVANCE(675); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(302) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(958); + if (lookahead == '\r') SKIP(1); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(403); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 303: - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(499); - if (lookahead == ']') ADVANCE(675); - if (lookahead == '`') ADVANCE(856); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(303) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(958); + if (lookahead == '\r') ADVANCE(792); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(798); + if (lookahead != 0) ADVANCE(801); END_STATE(); case 304: - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == '<') ADVANCE(610); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(509); - if (lookahead == ']') ADVANCE(675); - if (lookahead == '`') ADVANCE(856); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(304) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(958); + if (lookahead == '\r') ADVANCE(802); + if (lookahead != 0) ADVANCE(801); END_STATE(); case 305: - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == '<') ADVANCE(610); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(515); - if (lookahead == ']') ADVANCE(675); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(305) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(958); + if (lookahead == '\r') SKIP(2); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(419); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 306: - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == '<') ADVANCE(610); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(446); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(306) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(958); + if (lookahead == '\r') SKIP(3); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(420); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 307: - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == '<') ADVANCE(610); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(501); - if (lookahead == '`') ADVANCE(856); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(307) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(958); + if (lookahead == '\r') SKIP(4); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(421); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 308: - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(804); - if (lookahead == '<') ADVANCE(610); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(443); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(308) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(806); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(868); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(958); + if (lookahead == '\r') SKIP(5); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(6); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 309: - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(804); - if (lookahead == '<') ADVANCE(610); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(498); - if (lookahead == '`') ADVANCE(856); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(309) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(806); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(868); - if (lookahead != 0 && - lookahead != ')' && - lookahead != ';') ADVANCE(958); + if (lookahead == '\r') SKIP(7); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(405); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 310: - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == '<') ADVANCE(333); - if (lookahead == '>') ADVANCE(334); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{') ADVANCE(786); - if (lookahead == '\\') ADVANCE(460); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '}') ADVANCE(818); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(310) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '|') ADVANCE(958); + if (lookahead == '\r') SKIP(8); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(423); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 311: - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == '<') ADVANCE(333); - if (lookahead == '>') ADVANCE(334); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(456); - if (lookahead == '`') ADVANCE(855); - if (lookahead == 'e') ADVANCE(956); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(311) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '|') ADVANCE(958); + if (lookahead == '\r') SKIP(9); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(424); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 312: - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(785); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '(') ADVANCE(653); - if (lookahead == ')') ADVANCE(337); - if (lookahead == '+') ADVANCE(339); - if (lookahead == '-') ADVANCE(340); - if (lookahead == '0') ADVANCE(809); - if (lookahead == '<') ADVANCE(613); - if (lookahead == '=') ADVANCE(559); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') SKIP(468) - if (lookahead == ']') ADVANCE(675); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(312) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(811); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(656); + if (lookahead == '\r') SKIP(144); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(409); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 313: - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(782); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(653); - if (lookahead == ')') ADVANCE(655); - if (lookahead == ';') ADVANCE(553); - if (lookahead == '<') ADVANCE(333); - if (lookahead == '>') ADVANCE(334); - if (lookahead == '\\') ADVANCE(474); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '{') ADVANCE(666); - if (lookahead == '|') ADVANCE(590); - if (lookahead == '}') ADVANCE(818); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(313) - if (lookahead != 0 && - lookahead != '&' && - (lookahead < '[' || ']' < lookahead)) ADVANCE(958); + if (lookahead == '\r') SKIP(200); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(410); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 314: - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(335); - if (lookahead == '%') ADVANCE(646); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '+') ADVANCE(629); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '/') ADVANCE(641); - if (lookahead == ':') ADVANCE(762); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{') ADVANCE(786); - if (lookahead == '\\') SKIP(479) - if (lookahead == '`') ADVANCE(855); - if (lookahead == '}') ADVANCE(818); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(314) + if (lookahead == '\r') SKIP(10); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(406); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 315: - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '\\') SKIP(481) - if (lookahead == '}') ADVANCE(818); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(842); + if (lookahead == '\r') SKIP(145); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(407); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 316: - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(863); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == '<') ADVANCE(333); - if (lookahead == '>') ADVANCE(334); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(461); - if (lookahead == '`') ADVANCE(855); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(316) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '|') ADVANCE(958); + if (lookahead == '\r') SKIP(11); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(408); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 317: - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(863); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == '<') ADVANCE(333); - if (lookahead == '>') ADVANCE(334); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(463); - if (lookahead == ']') ADVANCE(675); - if (lookahead == '`') ADVANCE(855); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(317) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '|') ADVANCE(958); + if (lookahead == '\r') SKIP(20); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(146); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 318: - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(797); - if (lookahead == '$') ADVANCE(783); - if (lookahead == '(') ADVANCE(796); - if (lookahead == '\\') ADVANCE(477); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '\n' || - lookahead == '\r') SKIP(318) + if (lookahead == '\r') SKIP(147); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(795); - if (lookahead != 0) ADVANCE(798); + lookahead == ' ') SKIP(237); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 319: - if (lookahead == '#') ADVANCE(816); - if (lookahead == '%') ADVANCE(648); - if (lookahead == '*') ADVANCE(823); - if (lookahead == '+') ADVANCE(833); - if (lookahead == ',') ADVANCE(558); - if (lookahead == '-') ADVANCE(830); - if (lookahead == '/') ADVANCE(643); - if (lookahead == ':') ADVANCE(764); - if (lookahead == '=') ADVANCE(826); - if (lookahead == '?') ADVANCE(836); - if (lookahead == '@') ADVANCE(821); - if (lookahead == '[') ADVANCE(673); - if (lookahead == '\\') SKIP(462) - if (lookahead == '^') ADVANCE(598); - if (lookahead == '}') ADVANCE(818); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(320) + if (lookahead == '\r') SKIP(21); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(427); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 320: - if (lookahead == '#') ADVANCE(816); - if (lookahead == '%') ADVANCE(648); - if (lookahead == ',') ADVANCE(558); - if (lookahead == '/') ADVANCE(643); - if (lookahead == ':') ADVANCE(762); - if (lookahead == '[') ADVANCE(673); - if (lookahead == '\\') SKIP(462) - if (lookahead == '^') ADVANCE(598); - if (lookahead == '}') ADVANCE(818); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(320) + if (lookahead == '\r') SKIP(148); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(428); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 321: - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(353); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '-') ADVANCE(342); - if (lookahead == '0') ADVANCE(808); - if (lookahead == '<') ADVANCE(613); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') SKIP(470) - if (lookahead == ']') ADVANCE(675); - if (lookahead == '`') ADVANCE(348); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(321) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(879); + if (lookahead == '\r') SKIP(22); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(422); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 322: - if (lookahead == '#') ADVANCE(862); - if (lookahead == '%') ADVANCE(646); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '+') ADVANCE(629); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '/') ADVANCE(641); - if (lookahead == '<') ADVANCE(613); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') SKIP(472) - if (lookahead == '`') ADVANCE(348); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(322) + if (lookahead == '\r') SKIP(23); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(240); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 323: - if (lookahead == '#') ADVANCE(862); - if (lookahead == '&') ADVANCE(346); - if (lookahead == '(') ADVANCE(654); - if (lookahead == '<') ADVANCE(611); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '[') ADVANCE(674); - if (lookahead == '\\') ADVANCE(478); - if (lookahead == '{') ADVANCE(666); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(323) - if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != ']' && - lookahead != '`' && - lookahead != '|' && - lookahead != '}') ADVANCE(958); + if (lookahead == '\r') SKIP(24); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(243); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 324: - if (lookahead == '#') ADVANCE(862); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '<') ADVANCE(612); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '[' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(469); - if (lookahead == ']') ADVANCE(675); - if (lookahead == '`') ADVANCE(348); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(324) - if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';') ADVANCE(958); + if (lookahead == '\r') SKIP(25); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(246); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 325: - if (lookahead == '#') ADVANCE(862); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '<') ADVANCE(612); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') SKIP(473) - if (lookahead == '`') ADVANCE(348); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(325) + if (lookahead == '\r') SKIP(28); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(249); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 326: - if (lookahead == '#') ADVANCE(862); - if (lookahead == '+') ADVANCE(345); - if (lookahead == '/') ADVANCE(641); - if (lookahead == '=') ADVANCE(559); - if (lookahead == '[') ADVANCE(673); - if (lookahead == '\\') SKIP(482) - if (lookahead == '`') ADVANCE(348); - if (lookahead == '}') ADVANCE(818); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(326) + if (lookahead == '\r') SKIP(31); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(252); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 327: - if (lookahead == '&') ADVANCE(588); - if (lookahead == '>') ADVANCE(680); + if (lookahead == '\r') SKIP(34); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(255); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 328: - if (lookahead == '&') ADVANCE(664); - if (lookahead == ';') ADVANCE(663); + if (lookahead == '\r') SKIP(35); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(258); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 329: - if (lookahead == '\'') ADVANCE(800); - if (lookahead != 0) ADVANCE(329); + if (lookahead == '\r') SKIP(38); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(261); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 330: - if (lookahead == '\'') ADVANCE(801); - if (lookahead == '\\') ADVANCE(331); - if (lookahead != 0) ADVANCE(330); + if (lookahead == '\r') SKIP(39); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(464); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 331: - if (lookahead == '\'') ADVANCE(802); - if (lookahead == '\\') ADVANCE(331); - if (lookahead != 0) ADVANCE(330); + if (lookahead == '\r') SKIP(40); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(460); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 332: - if (lookahead == '(') ADVANCE(551); + if (lookahead == '\r') SKIP(41); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(267); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 333: - if (lookahead == '(') ADVANCE(858); + if (lookahead == '\r') SKIP(46); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(426); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 334: - if (lookahead == '(') ADVANCE(859); + if (lookahead == '\r') SKIP(51); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(273); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 335: - if (lookahead == '(') ADVANCE(853); - if (lookahead == '`') ADVANCE(857); + if (lookahead == '\r') SKIP(52); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(473); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 336: - if (lookahead == '(') ADVANCE(853); - if (lookahead == '`') ADVANCE(857); - if (lookahead == '{') ADVANCE(817); + if (lookahead == '\r') SKIP(53); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(467); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 337: - if (lookahead == ')') ADVANCE(552); + if (lookahead == '\r') SKIP(149); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(278); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 338: - if (lookahead == '+') ADVANCE(564); + if (lookahead == '\r') SKIP(150); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(280); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 339: - if (lookahead == '+') ADVANCE(564); - if (lookahead == '=') ADVANCE(568); + if (lookahead == '\r') SKIP(58); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(463); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 340: - if (lookahead == '-') ADVANCE(566); - if (lookahead == '0') ADVANCE(809); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(811); + if (lookahead == '\r') SKIP(151); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(282); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 341: - if (lookahead == '.') ADVANCE(776); + if (lookahead == '\r') SKIP(176); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(461); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 342: - if (lookahead == '0') ADVANCE(809); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(811); + if (lookahead == '\r') SKIP(161); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(284); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 343: - if (lookahead == '<') ADVANCE(759); + if (lookahead == '\r') SKIP(154); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(286); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 344: - if (lookahead == '=') ADVANCE(605); + if (lookahead == '\r') SKIP(65); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(469); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 345: - if (lookahead == '=') ADVANCE(568); + if (lookahead == '\r') SKIP(162); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(288); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 346: - if (lookahead == '>') ADVANCE(680); + if (lookahead == '\r') SKIP(157); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(290); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 347: - if (lookahead == ']') ADVANCE(677); + if (lookahead == '\r') SKIP(68); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(436); END_STATE(); case 348: - if (lookahead == '`') ADVANCE(779); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(348); + if (lookahead == '\r') SKIP(164); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(292); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 349: - if (lookahead == 'a') ADVANCE(350); + if (lookahead == '\r') SKIP(160); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(294); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 350: - if (lookahead == 'c') ADVANCE(657); + if (lookahead == '\r') SKIP(204); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(295); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 351: - if (lookahead == 'n') ADVANCE(548); + if (lookahead == '\r') SKIP(71); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(437); END_STATE(); case 352: - if (lookahead == 's') ADVANCE(349); + if (lookahead == '\r') SKIP(72); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(425); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 353: - if (lookahead == '{') ADVANCE(817); + if (lookahead == '\r') SKIP(205); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(296); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 354: - if (lookahead == '|') ADVANCE(586); + if (lookahead == '\r') SKIP(206); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(297); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 355: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(12) - if (lookahead == '\n') ADVANCE(880); - if (lookahead == '\r') ADVANCE(13); - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\r') SKIP(163); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(465); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 356: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(240) - if (lookahead == '\n') ADVANCE(918); - if (lookahead == '\r') ADVANCE(17); - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\r') SKIP(75); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(443); END_STATE(); case 357: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(163) - if (lookahead == '\n') ADVANCE(882); - if (lookahead == '\r') ADVANCE(24); - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\r') SKIP(173); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(468); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 358: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(176) - if (lookahead == '\n') ADVANCE(884); - if (lookahead == '\r') ADVANCE(26); - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\r') SKIP(210); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(466); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 359: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(182) - if (lookahead == '\n') ADVANCE(888); - if (lookahead == '\r') ADVANCE(27); - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\r') SKIP(76); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(298); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 360: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(197) - if (lookahead == '\n') ADVANCE(898); - if (lookahead == '\r') ADVANCE(31); - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\r') SKIP(172); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(474); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 361: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(203) - if (lookahead == '\n') ADVANCE(902); - if (lookahead == '\r') ADVANCE(36); - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\r') SKIP(77); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(439); END_STATE(); case 362: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(206) - if (lookahead == '\n') ADVANCE(904); - if (lookahead == '\r') ADVANCE(38); - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\r') SKIP(78); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(446); END_STATE(); case 363: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(214) - if (lookahead == '\n') ADVANCE(909); - if (lookahead == '\r') ADVANCE(39); - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\r') SKIP(182); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(445); END_STATE(); case 364: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(248) - if (lookahead == '\n') ADVANCE(920); - if (lookahead == '\r') ADVANCE(41); - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\r') SKIP(209); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(470); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 365: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(250) - if (lookahead == '\n') ADVANCE(922); - if (lookahead == '\r') ADVANCE(44); - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\r') SKIP(181); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(471); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 366: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(222) - if (lookahead == '\n') ADVANCE(913); - if (lookahead == '\r') ADVANCE(46); - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\r') SKIP(81); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(442); END_STATE(); case 367: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(268) - if (lookahead == '\n') ADVANCE(930); - if (lookahead == '\r') ADVANCE(47); + if (lookahead == '\r') SKIP(84); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(85); END_STATE(); case 368: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(251) - if (lookahead == '\n') ADVANCE(923); - if (lookahead == '\r') ADVANCE(48); - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\r') SKIP(92); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(475); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 369: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(267) - if (lookahead == '\n') ADVANCE(929); - if (lookahead == '\r') ADVANCE(49); + if (lookahead == '\r') SKIP(95); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(441); END_STATE(); case 370: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(265) - if (lookahead == '\n') ADVANCE(927); - if (lookahead == '\r') ADVANCE(51); + if (lookahead == '\r') SKIP(171); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(299); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 371: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(270) - if (lookahead == '\n') ADVANCE(932); - if (lookahead == '\r') ADVANCE(52); + if (lookahead == '\r') SKIP(96); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(444); END_STATE(); case 372: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(247) - if (lookahead == '\n') ADVANCE(919); - if (lookahead == '\r') ADVANCE(56); - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\r') SKIP(189); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(438); END_STATE(); case 373: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(150) - if (lookahead == '\n') ADVANCE(881); - if (lookahead == '\r') ADVANCE(62); + if (lookahead == '\r') SKIP(99); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(300); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 374: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(175) - if (lookahead == '\n') ADVANCE(883); - if (lookahead == '\r') ADVANCE(71); + if (lookahead == '\r') SKIP(217); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(462); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 375: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(184) - if (lookahead == '\n') ADVANCE(889); - if (lookahead == '\r') ADVANCE(75); + if (lookahead == '\r') SKIP(102); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(476); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 376: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(187) - if (lookahead == '\n') ADVANCE(891); - if (lookahead == '\r') ADVANCE(76); + if (lookahead == '\r') SKIP(103); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(481); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 377: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(228) - if (lookahead == '\n') ADVANCE(916); - if (lookahead == '\r') ADVANCE(77); - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\r') SKIP(104); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(485); END_STATE(); case 378: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(202) - if (lookahead == '\n') ADVANCE(901); - if (lookahead == '\r') ADVANCE(82); + if (lookahead == '\r') SKIP(115); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(482); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 379: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(282) - if (lookahead == '\n') ADVANCE(933); - if (lookahead == '\r') ADVANCE(83); + if (lookahead == '\r') SKIP(116); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(454); END_STATE(); case 380: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(254) - if (lookahead == '\n') ADVANCE(926); - if (lookahead == '\r') ADVANCE(84); - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\r') SKIP(117); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(88); END_STATE(); case 381: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(230) - if (lookahead == '\n') ADVANCE(917); - if (lookahead == '\r') ADVANCE(85); - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\r') SKIP(118); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(86); END_STATE(); case 382: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(283) - if (lookahead == '\n') ADVANCE(934); - if (lookahead == '\r') ADVANCE(86); + if (lookahead == '\r') SKIP(199); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(89); END_STATE(); case 383: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(211) - if (lookahead == '\n') ADVANCE(907); - if (lookahead == '\r') ADVANCE(99); + if (lookahead == '\r') SKIP(192); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(301); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 384: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(286) - if (lookahead == '\n') ADVANCE(937); - if (lookahead == '\r') ADVANCE(102); + if (lookahead == '\r') SKIP(119); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(457); END_STATE(); case 385: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(288) - if (lookahead == '\n') ADVANCE(938); - if (lookahead == '\r') ADVANCE(103); + if (lookahead == '\r') SKIP(120); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(477); END_STATE(); case 386: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') ADVANCE(793); - if (lookahead == '\n') ADVANCE(793); - if (lookahead == '\r') ADVANCE(790); - if (lookahead != 0) ADVANCE(798); + if (lookahead == '\r') SKIP(121); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(489); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 387: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') ADVANCE(794); - if (lookahead == '\n') ADVANCE(794); - if (lookahead == '\r') ADVANCE(791); - if (lookahead != 0) ADVANCE(798); + if (lookahead == '\r') SKIP(122); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(486); END_STATE(); case 388: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(291) - if (lookahead == '\n') ADVANCE(939); - if (lookahead == '\r') ADVANCE(104); + if (lookahead == '\r') SKIP(123); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(478); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 389: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(179) - if (lookahead == '\n') ADVANCE(886); - if (lookahead == '\r') ADVANCE(118); - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\r') SKIP(124); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(87); END_STATE(); case 390: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(185) - if (lookahead == '\n') ADVANCE(890); - if (lookahead == '\r') ADVANCE(120); - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\r') SKIP(125); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(487); END_STATE(); case 391: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(191) - if (lookahead == '\n') ADVANCE(894); - if (lookahead == '\r') ADVANCE(121); - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\r') SKIP(126); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(490); END_STATE(); case 392: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(212) - if (lookahead == '\n') ADVANCE(908); - if (lookahead == '\r') ADVANCE(128); - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\r') SKIP(129); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(90); END_STATE(); case 393: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(220) - if (lookahead == '\n') ADVANCE(912); - if (lookahead == '\r') ADVANCE(129); - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\r') SKIP(130); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(458); END_STATE(); case 394: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(249) - if (lookahead == '\n') ADVANCE(921); - if (lookahead == '\r') ADVANCE(131); - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\r') SKIP(139); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(488); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 395: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(226) - if (lookahead == '\n') ADVANCE(915); - if (lookahead == '\r') ADVANCE(135); - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\r') SKIP(140); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(91); END_STATE(); case 396: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(269) - if (lookahead == '\n') ADVANCE(931); - if (lookahead == '\r') ADVANCE(136); + if (lookahead == '\r') SKIP(141); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(479); END_STATE(); case 397: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(266) - if (lookahead == '\n') ADVANCE(928); - if (lookahead == '\r') ADVANCE(138); + if (lookahead == '\r') SKIP(142); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(480); END_STATE(); case 398: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(181) - if (lookahead == '\n') ADVANCE(887); - if (lookahead == '\r') ADVANCE(140); + if (lookahead == '\r') SKIP(143); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(491); END_STATE(); case 399: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(193) - if (lookahead == '\n') ADVANCE(895); - if (lookahead == '\r') ADVANCE(142); + if (lookahead == '\r') SKIP(221); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(264); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 400: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(199) - if (lookahead == '\n') ADVANCE(899); - if (lookahead == '\r') ADVANCE(143); + if (lookahead == '\r') SKIP(224); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(270); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 401: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(205) - if (lookahead == '\n') ADVANCE(903); - if (lookahead == '\r') ADVANCE(145); + if (lookahead == '\r') SKIP(225); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(276); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 402: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(284) - if (lookahead == '\n') ADVANCE(935); - if (lookahead == '\r') ADVANCE(146); + if (lookahead == '\r') SKIP(230); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(472); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 403: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(285) - if (lookahead == '\n') ADVANCE(936); - if (lookahead == '\r') ADVANCE(147); + ADVANCE_MAP( + '!', 673, + '"', 791, + '#', 819, + '$', 784, + '%', 650, + '&', 604, + '\'', 494, + '(', 657, + ')', 658, + '*', 641, + '+', 773, + ',', 560, + '-', 771, + '/', 645, + '0', 947, + ':', 768, + ';', 557, + '<', 610, + '=', 566, + '>', 619, + '?', 764, + '@', 945, + '[', 677, + '\\', 302, + ']', 678, + '^', 598, + '_', 949, + '`', 859, + 'e', 959, + 'i', 958, + '{', 669, + '|', 595, + '}', 821, + '~', 775, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(403); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 404: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(188) - if (lookahead == '\n') ADVANCE(892); - if (lookahead == '\r') ADVANCE(151); - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 673, + '"', 791, + '#', 819, + '$', 784, + '%', 652, + '&', 604, + '\'', 494, + '(', 657, + '*', 641, + '+', 633, + '-', 636, + '/', 647, + '0', 946, + '<', 610, + '=', 563, + '>', 619, + '?', 764, + '@', 945, + '\\', 19, + ']', 678, + '^', 599, + '_', 950, + '`', 858, + '|', 595, + '[', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(404); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if (lookahead != 0 && + (lookahead < ' ' || '+' < lookahead) && + (lookahead < ';' || '}' < lookahead)) ADVANCE(961); END_STATE(); case 405: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(218) - if (lookahead == '\n') ADVANCE(911); - if (lookahead == '\r') ADVANCE(155); - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 673, + '"', 791, + '#', 865, + '$', 784, + '%', 652, + '&', 604, + '\'', 494, + '(', 657, + '*', 641, + '+', 774, + '-', 772, + '/', 647, + '0', 806, + '<', 610, + '=', 563, + '>', 619, + '?', 764, + '\\', 309, + ']', 678, + '^', 599, + '`', 859, + '|', 595, + '~', 775, + '[', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(405); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0 && + (lookahead < ' ' || '+' < lookahead) && + (lookahead < ';' || '?' < lookahead)) ADVANCE(961); END_STATE(); case 406: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(190) - if (lookahead == '\n') ADVANCE(893); - if (lookahead == '\r') ADVANCE(158); + ADVANCE_MAP( + '!', 673, + '"', 791, + '#', 865, + '$', 784, + '%', 652, + '&', 603, + '\'', 494, + '(', 657, + ')', 658, + '*', 641, + '+', 774, + '-', 772, + '/', 647, + '0', 806, + '<', 617, + '=', 563, + '>', 622, + '?', 764, + '\\', 314, + '^', 599, + '`', 859, + '|', 597, + '~', 775, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(406); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0 && + (lookahead < ';' || '?' < lookahead)) ADVANCE(961); END_STATE(); case 407: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(208) - if (lookahead == '\n') ADVANCE(905); - if (lookahead == '\r') ADVANCE(159); + ADVANCE_MAP( + '!', 673, + '"', 791, + '#', 865, + '$', 784, + '%', 652, + '&', 603, + '\'', 494, + '(', 657, + ')', 502, + '*', 641, + '+', 774, + '-', 772, + '/', 647, + '0', 806, + '<', 617, + '=', 563, + '>', 622, + '?', 764, + '\\', 315, + '^', 599, + '`', 859, + '|', 597, + '~', 775, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(407); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0 && + (lookahead < ';' || '?' < lookahead)) ADVANCE(961); END_STATE(); case 408: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(194) - if (lookahead == '\n') ADVANCE(896); - if (lookahead == '\r') ADVANCE(160); - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 673, + '"', 791, + '#', 865, + '$', 784, + '%', 652, + '&', 603, + '\'', 494, + '(', 657, + '*', 641, + '+', 774, + '-', 772, + '/', 647, + '0', 806, + ':', 768, + '<', 617, + '=', 563, + '>', 622, + '?', 764, + '\\', 316, + '^', 599, + '`', 859, + '|', 597, + '~', 775, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(408); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0 && + (lookahead < ' ' || '+' < lookahead) && + (lookahead < '/' || '?' < lookahead)) ADVANCE(961); END_STATE(); case 409: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(196) - if (lookahead == '\n') ADVANCE(897); - if (lookahead == '\r') ADVANCE(162); + ADVANCE_MAP( + '!', 673, + '"', 791, + '#', 865, + '$', 784, + '%', 652, + '&', 603, + '\'', 494, + '(', 657, + '*', 641, + '+', 774, + '-', 772, + '/', 647, + '0', 806, + '<', 617, + '=', 563, + '>', 622, + '?', 764, + '\\', 312, + ']', 678, + '^', 599, + '`', 859, + '|', 597, + '~', 775, + '[', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(409); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0 && + (lookahead < ' ' || '+' < lookahead) && + (lookahead < ';' || '?' < lookahead)) ADVANCE(961); END_STATE(); case 410: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(200) - if (lookahead == '\n') ADVANCE(900); - if (lookahead == '\r') ADVANCE(165); - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 673, + '"', 791, + '#', 865, + '$', 784, + '%', 652, + '&', 603, + '\'', 494, + '(', 657, + '*', 641, + '+', 774, + '-', 772, + '/', 647, + '0', 806, + '<', 617, + '=', 563, + '>', 622, + '?', 764, + '\\', 313, + ']', 790, + '^', 599, + '`', 859, + '|', 597, + '~', 775, + '[', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(410); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0 && + (lookahead < ' ' || '+' < lookahead) && + (lookahead < ';' || '?' < lookahead)) ADVANCE(961); END_STATE(); case 411: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(209) - if (lookahead == '\n') ADVANCE(906); - if (lookahead == '\r') ADVANCE(168); - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 511, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + '<', 611, + '>', 620, + '?', 764, + '@', 945, + '\\', 74, + '_', 950, + '`', 858, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(411); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '_' || '}' < lookahead)) ADVANCE(961); END_STATE(); case 412: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(216) - if (lookahead == '\n') ADVANCE(910); - if (lookahead == '\r') ADVANCE(169); - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 492, + '\'', 494, + '(', 657, + '*', 643, + '-', 639, + '0', 946, + '<', 612, + '=', 955, + '>', 620, + '?', 764, + '@', 945, + '\\', 50, + '_', 950, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(412); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + (lookahead < ';' || ']' < lookahead)) ADVANCE(961); END_STATE(); case 413: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(252) - if (lookahead == '\n') ADVANCE(924); - if (lookahead == '\r') ADVANCE(171); - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 492, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + '<', 612, + '=', 955, + '>', 620, + '?', 764, + '@', 945, + '\\', 170, + '_', 950, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(413); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + (lookahead < ';' || ']' < lookahead)) ADVANCE(961); END_STATE(); case 414: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(224) - if (lookahead == '\n') ADVANCE(914); - if (lookahead == '\r') ADVANCE(172); - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 492, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + '<', 612, + '>', 620, + '?', 764, + '@', 945, + '\\', 55, + ']', 678, + '_', 950, + '`', 858, + '|', 596, + '[', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(414); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(961); END_STATE(); case 415: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(253) - if (lookahead == '\n') ADVANCE(925); - if (lookahead == '\r') ADVANCE(173); - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 492, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + '<', 612, + '>', 620, + '?', 764, + '@', 945, + '\\', 60, + '_', 950, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(415); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(961); END_STATE(); case 416: - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') SKIP(178) - if (lookahead == '\n') ADVANCE(885); - if (lookahead == '\r') ADVANCE(139); + ADVANCE_MAP( + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 492, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + '<', 613, + '>', 620, + '?', 764, + '@', 945, + '\\', 232, + ']', 678, + '_', 950, + '`', 858, + '|', 596, + '[', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(416); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(961); END_STATE(); case 417: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(239) - if (lookahead == '\r') SKIP(1) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 492, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + '<', 613, + '>', 620, + '?', 764, + '@', 945, + '\\', 236, + '_', 950, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(417); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(961); END_STATE(); case 418: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(255) - if (lookahead == '\r') SKIP(2) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '\'', 494, + '(', 497, + ')', 658, + '*', 643, + '-', 639, + '0', 946, + '<', 498, + '>', 499, + '?', 764, + '@', 945, + '\\', 110, + '_', 950, + '`', 858, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(418); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '_' || '}' < lookahead)) ADVANCE(961); END_STATE(); case 419: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(256) - if (lookahead == '\r') SKIP(3) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 675, + '"', 791, + '#', 865, + '$', 784, + '&', 511, + '\'', 494, + '(', 657, + ')', 658, + '-', 953, + '0', 806, + ';', 493, + '<', 611, + '>', 620, + '[', 677, + '\\', 305, + '`', 858, + '{', 669, + '|', 593, + ']', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(419); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 420: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(257) - if (lookahead == '\r') SKIP(4) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 675, + '"', 791, + '#', 865, + '$', 784, + '&', 511, + '\'', 494, + '(', 657, + ')', 502, + '+', 774, + '-', 772, + '0', 806, + '<', 611, + '>', 620, + '[', 677, + '\\', 306, + '`', 858, + '{', 669, + '|', 594, + '~', 775, + ']', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(420); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0 && + lookahead != ';' && + lookahead != '<') ADVANCE(961); END_STATE(); case 421: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(6) - if (lookahead == '\r') SKIP(5) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 675, + '"', 791, + '#', 865, + '$', 784, + '&', 511, + '\'', 494, + '(', 657, + '+', 774, + '-', 772, + '0', 806, + '<', 611, + '>', 620, + '[', 677, + '\\', 307, + ']', 678, + '`', 858, + '{', 669, + '}', 789, + '~', 775, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(421); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(961); END_STATE(); case 422: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(241) - if (lookahead == '\r') SKIP(7) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 675, + '"', 791, + '#', 865, + '$', 784, + '&', 511, + '\'', 494, + '(', 657, + '+', 774, + '-', 772, + '0', 806, + '<', 611, + '>', 620, + '[', 677, + '\\', 321, + '`', 858, + '~', 775, + ']', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(422); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(961); END_STATE(); case 423: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(259) - if (lookahead == '\r') SKIP(8) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 675, + '"', 791, + '#', 865, + '$', 784, + '&', 511, + '\'', 494, + '(', 657, + '-', 953, + '0', 806, + ';', 493, + '<', 611, + '>', 620, + '[', 677, + '\\', 310, + '`', 858, + 'e', 959, + '{', 669, + ']', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(423); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(961); END_STATE(); case 424: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(260) - if (lookahead == '\r') SKIP(9) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 675, + '"', 791, + '#', 865, + '$', 784, + '&', 511, + '\'', 494, + '(', 657, + '-', 953, + '0', 806, + '<', 611, + '>', 620, + '[', 677, + '\\', 311, + ']', 789, + '`', 858, + '{', 669, + '}', 670, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(424); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(961); END_STATE(); case 425: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(242) - if (lookahead == '\r') SKIP(10) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 675, + '"', 791, + '#', 865, + '$', 784, + '\'', 494, + '(', 657, + ')', 502, + '+', 774, + '-', 772, + '0', 806, + '<', 498, + '>', 499, + '\\', 352, + '`', 858, + '~', 775, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(425); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(961); END_STATE(); case 426: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(244) - if (lookahead == '\r') SKIP(11) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 675, + '"', 791, + '#', 865, + '$', 784, + '\'', 494, + '(', 657, + ')', 502, + '+', 774, + '-', 772, + '0', 807, + '<', 498, + '>', 499, + '\\', 333, + '`', 858, + '~', 775, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(426); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(809); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(871); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '_' || '~' < lookahead)) ADVANCE(961); END_STATE(); case 427: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(112) - if (lookahead == '\r') SKIP(18) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 954, + '"', 791, + '#', 865, + '$', 784, + '%', 652, + '&', 604, + '\'', 494, + '(', 657, + '*', 641, + '+', 633, + '-', 636, + '/', 647, + '0', 806, + '<', 610, + '=', 563, + '>', 619, + '?', 764, + '\\', 319, + ']', 678, + '^', 599, + '`', 859, + '|', 595, + '[', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(427); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0 && + (lookahead < ' ' || '+' < lookahead) && + (lookahead < ';' || '?' < lookahead)) ADVANCE(961); END_STATE(); case 428: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(263) - if (lookahead == '\r') SKIP(19) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 954, + '"', 791, + '#', 865, + '$', 784, + '%', 652, + '&', 604, + '\'', 494, + '(', 657, + '*', 641, + '+', 633, + '-', 636, + '/', 647, + '0', 806, + '<', 610, + '=', 563, + '>', 619, + '?', 764, + '\\', 320, + ']', 678, + '^', 599, + '`', 858, + '|', 595, + '[', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(428); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0 && + (lookahead < ' ' || '+' < lookahead) && + (lookahead < ';' || '?' < lookahead)) ADVANCE(961); END_STATE(); case 429: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(258) - if (lookahead == '\r') SKIP(20) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 674, + '"', 791, + '#', 819, + '$', 783, + '%', 653, + '&', 603, + ')', 658, + '*', 642, + '+', 634, + '-', 637, + '/', 648, + '0', 948, + '<', 618, + '=', 565, + '>', 623, + '?', 763, + '@', 944, + '\\', 180, + '^', 600, + '_', 951, + '|', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(429); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 430: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(177) - if (lookahead == '\r') SKIP(21) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 674, + '"', 791, + '#', 819, + '$', 783, + '%', 653, + '&', 603, + ')', 502, + '*', 642, + '+', 634, + '-', 637, + '/', 648, + '0', 948, + '<', 618, + '=', 565, + '>', 623, + '?', 763, + '@', 944, + '\\', 64, + '^', 600, + '_', 951, + '|', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(430); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 431: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(180) - if (lookahead == '\r') SKIP(22) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 674, + '"', 791, + '#', 819, + '$', 783, + '%', 653, + '&', 603, + '*', 642, + '+', 634, + '-', 637, + '/', 648, + '0', 948, + ':', 765, + '<', 618, + '=', 565, + '>', 623, + '?', 763, + '@', 944, + '\\', 67, + '^', 600, + '_', 951, + '|', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(431); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 432: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(183) - if (lookahead == '\r') SKIP(23) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 674, + '"', 791, + '#', 819, + '$', 783, + '%', 653, + '&', 603, + '*', 642, + '+', 634, + '-', 637, + '/', 648, + '0', 948, + '<', 618, + '=', 565, + '>', 623, + '?', 763, + '@', 944, + '\\', 62, + ']', 678, + '^', 600, + '_', 951, + '|', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(432); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 433: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(186) - if (lookahead == '\r') SKIP(25) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 674, + '"', 791, + '#', 819, + '$', 783, + '%', 653, + '&', 603, + '*', 642, + '+', 634, + '-', 637, + '/', 648, + '0', 948, + '<', 618, + '=', 565, + '>', 623, + '?', 763, + '@', 944, + '\\', 178, + ']', 512, + '^', 600, + '_', 951, + '|', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(433); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 434: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(189) - if (lookahead == '\r') SKIP(28) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 674, + '"', 791, + '#', 819, + '$', 783, + '%', 653, + '&', 603, + '*', 642, + '+', 634, + '-', 637, + '/', 648, + '0', 948, + '<', 618, + '=', 565, + '>', 623, + '?', 763, + '@', 944, + '\\', 70, + '^', 600, + '_', 951, + '|', 597, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(434); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 435: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(192) - if (lookahead == '\r') SKIP(29) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 509, + '"', 791, + '#', 865, + '$', 788, + '%', 653, + '&', 603, + ')', 502, + '*', 642, + '+', 634, + ',', 559, + '-', 637, + '.', 506, + '/', 648, + ':', 765, + ';', 493, + '<', 618, + '=', 565, + '>', 623, + '?', 763, + ); + if (lookahead == '\\') SKIP(347); + if (lookahead == ']') ADVANCE(790); + if (lookahead == '^') ADVANCE(600); + if (lookahead == '`') ADVANCE(858); + if (lookahead == 'e') ADVANCE(517); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == '|') ADVANCE(597); + if (lookahead == '[' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(789); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(436); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(778); END_STATE(); case 436: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(195) - if (lookahead == '\r') SKIP(30) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 509, + '"', 791, + '#', 865, + '$', 788, + '%', 653, + '&', 603, + ')', 502, + '*', 642, + '+', 634, + ',', 559, + '-', 637, + '/', 648, + ':', 765, + ';', 493, + '<', 618, + '=', 565, + '>', 623, + '?', 763, + ); + if (lookahead == '\\') SKIP(347); + if (lookahead == ']') ADVANCE(790); + if (lookahead == '^') ADVANCE(600); + if (lookahead == '`') ADVANCE(858); + if (lookahead == 'e') ADVANCE(517); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == '|') ADVANCE(597); + if (lookahead == '[' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(789); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(436); END_STATE(); case 437: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(198) - if (lookahead == '\r') SKIP(32) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 509, + '"', 791, + '#', 865, + '$', 501, + '%', 653, + '&', 603, + '(', 497, + ')', 658, + '*', 642, + '+', 634, + ',', 559, + '-', 637, + '/', 648, + '<', 618, + '=', 565, + '>', 623, + '?', 763, + ); + if (lookahead == '\\') SKIP(351); + if (lookahead == ']') ADVANCE(678); + if (lookahead == '^') ADVANCE(600); + if (lookahead == '`') ADVANCE(858); + if (lookahead == '|') ADVANCE(597); + if (lookahead == '[' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(789); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(437); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 438: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(299) - if (lookahead == '\r') SKIP(33) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 509, + '#', 865, + '%', 653, + '&', 603, + ')', 658, + '*', 642, + '+', 634, + ',', 559, + '-', 638, + '/', 648, + '<', 618, + '=', 564, + '>', 623, + ); + if (lookahead == '\\') SKIP(372); + if (lookahead == '^') ADVANCE(600); + if (lookahead == '|') ADVANCE(597); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(438); END_STATE(); case 439: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(295) - if (lookahead == '\r') SKIP(34) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 509, + '#', 865, + '%', 653, + '&', 603, + ')', 658, + '*', 642, + '+', 634, + '-', 637, + '/', 648, + ':', 765, + '<', 618, + '=', 565, + '>', 623, + '?', 763, + ); + if (lookahead == '\\') SKIP(361); + if (lookahead == '^') ADVANCE(600); + if (lookahead == '`') ADVANCE(513); + if (lookahead == '|') ADVANCE(597); + if (('[' <= lookahead && lookahead <= ']') || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(789); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(439); END_STATE(); case 440: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(204) - if (lookahead == '\r') SKIP(35) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 509, + '#', 865, + '%', 653, + '&', 603, + ')', 658, + '*', 642, + '+', 634, + '-', 637, + '/', 648, + '<', 618, + '=', 565, + '>', 623, + '?', 763, + '[', 676, + ); + if (lookahead == '\\') SKIP(369); + if (lookahead == '^') ADVANCE(600); + if (lookahead == '|') ADVANCE(597); + if (lookahead == '}') ADVANCE(781); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(441); END_STATE(); case 441: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(262) - if (lookahead == '\r') SKIP(37) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 509, + '#', 865, + '%', 653, + '&', 603, + ')', 658, + '*', 642, + '+', 634, + '-', 637, + '/', 648, + '<', 618, + '=', 565, + '>', 623, + '?', 763, + '[', 676, + ); + if (lookahead == '\\') SKIP(369); + if (lookahead == '^') ADVANCE(600); + if (lookahead == '|') ADVANCE(597); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(441); END_STATE(); case 442: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(213) - if (lookahead == '\r') SKIP(40) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 509, + '#', 865, + '%', 653, + '&', 603, + ')', 502, + '*', 642, + '+', 634, + ',', 559, + '-', 637, + '/', 648, + ':', 765, + '<', 618, + '=', 565, + '>', 623, + '?', 763, + '[', 676, + ); + if (lookahead == '\\') SKIP(366); + if (lookahead == ']') ADVANCE(678); + if (lookahead == '^') ADVANCE(600); + if (lookahead == '`') ADVANCE(513); + if (lookahead == '|') ADVANCE(597); + if (lookahead == '}') ADVANCE(821); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(442); END_STATE(); case 443: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(308) - if (lookahead == '\r') SKIP(42) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 509, + '#', 865, + '%', 653, + '&', 603, + ')', 502, + '*', 642, + '+', 634, + ',', 559, + '-', 637, + '/', 648, + ':', 765, + '<', 618, + '=', 565, + '>', 623, + '?', 763, + ); + if (lookahead == '\\') SKIP(356); + if (lookahead == ']') ADVANCE(790); + if (lookahead == '^') ADVANCE(600); + if (lookahead == '`') ADVANCE(513); + if (lookahead == '|') ADVANCE(597); + if (lookahead == '[' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(789); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(443); END_STATE(); case 444: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(302) - if (lookahead == '\r') SKIP(43) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 509, + '#', 865, + '%', 653, + '&', 603, + ')', 502, + '*', 642, + '+', 634, + ',', 559, + '-', 638, + '/', 648, + '<', 618, + '=', 564, + '>', 623, + ); + if (lookahead == '\\') SKIP(371); + if (lookahead == '^') ADVANCE(600); + if (lookahead == '|') ADVANCE(597); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(444); END_STATE(); case 445: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(298) - if (lookahead == '\r') SKIP(45) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 509, + '#', 865, + '%', 653, + '&', 603, + ')', 502, + '*', 642, + '+', 634, + '-', 637, + '/', 648, + ':', 765, + '<', 618, + '=', 565, + '>', 623, + '?', 763, + ); + if (lookahead == '\\') SKIP(363); + if (lookahead == '^') ADVANCE(600); + if (lookahead == '`') ADVANCE(513); + if (lookahead == '|') ADVANCE(597); + if (('[' <= lookahead && lookahead <= ']') || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(789); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(445); END_STATE(); case 446: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(306) - if (lookahead == '\r') SKIP(50) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 509, + '#', 865, + '%', 653, + '&', 603, + '*', 642, + '+', 634, + '-', 637, + '/', 648, + '<', 618, + '=', 565, + '>', 623, + '?', 763, + ); + if (lookahead == '\\') SKIP(362); + if (lookahead == ']') ADVANCE(678); + if (lookahead == '^') ADVANCE(600); + if (lookahead == '`') ADVANCE(513); + if (lookahead == '|') ADVANCE(597); + if (lookahead == '[' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(789); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(446); END_STATE(); case 447: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(272) - if (lookahead == '\r') SKIP(53) + ADVANCE_MAP( + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '&', 492, + '*', 640, + '-', 635, + '0', 948, + '<', 615, + '>', 621, + '?', 763, + '@', 944, + '\\', 106, + ']', 678, + '_', 951, + '|', 596, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(447); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 448: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(273) - if (lookahead == '\r') SKIP(54) + ADVANCE_MAP( + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '&', 492, + '*', 640, + '-', 635, + '0', 948, + '<', 615, + '>', 621, + '?', 763, + '@', 944, + '\\', 114, + '_', 951, + '|', 596, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(448); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 449: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(261) - if (lookahead == '\r') SKIP(55) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '&', 492, + '*', 640, + '-', 635, + '0', 948, + '<', 616, + '>', 621, + '?', 763, + '@', 944, + '\\', 194, + ']', 678, + '_', 951, + '|', 596, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(449); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 450: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(278) - if (lookahead == '\r') SKIP(57) + ADVANCE_MAP( + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '&', 492, + '*', 640, + '-', 635, + '0', 948, + '<', 616, + '>', 621, + '?', 763, + '@', 944, + '\\', 198, + '_', 951, + '|', 596, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(450); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 451: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(235) - if (lookahead == '\r') SKIP(58) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 672, + '"', 791, + '#', 819, + '$', 783, + ')', 658, + '*', 640, + '-', 635, + '0', 948, + '?', 763, + '@', 944, + '\\', 132, + '_', 951, + '|', 593, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(451); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 452: + ADVANCE_MAP( + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '*', 640, + '-', 635, + '0', 948, + '?', 763, + '@', 944, + '\\', 135, + '_', 951, + ); + if (lookahead == '\n' || + lookahead == '\r') SKIP(452); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(276) - if (lookahead == '\r') SKIP(59) + lookahead == ' ') ADVANCE(796); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + if (lookahead != 0 && + (lookahead < '_' || 'z' < lookahead)) ADVANCE(801); END_STATE(); case 453: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(281) - if (lookahead == '\r') SKIP(60) + ADVANCE_MAP( + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '*', 640, + '-', 635, + '0', 948, + '?', 763, + '@', 944, + '\\', 134, + '_', 951, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(453); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 454: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(277) - if (lookahead == '\r') SKIP(61) + ADVANCE_MAP( + '!', 672, + '"', 791, + '#', 865, + '$', 788, + '&', 492, + '(', 656, + '+', 774, + '-', 772, + '0', 811, + '<', 615, + '>', 621, + ); + if (lookahead == '\\') SKIP(379); + if (lookahead == ']') ADVANCE(678); + if (lookahead == '`') ADVANCE(858); + if (lookahead == '|') ADVANCE(596); + if (lookahead == '~') ADVANCE(775); + if (lookahead == '[' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(789); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(454); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(813); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 455: + ADVANCE_MAP( + '!', 672, + '#', 819, + '$', 783, + '*', 640, + '-', 635, + '0', 948, + '?', 763, + '@', 944, + '\\', 136, + '_', 951, + ); + if (lookahead == '\n' || + lookahead == '\r') SKIP(455); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(64) - if (lookahead == '\r') SKIP(63) + lookahead == ' ') ADVANCE(797); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + if (lookahead != 0 && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '_' || 'z' < lookahead)) ADVANCE(801); END_STATE(); case 456: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(311) - if (lookahead == '\r') SKIP(72) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 672, + '#', 819, + '$', 783, + '*', 640, + '-', 635, + '0', 948, + '?', 763, + '@', 944, + '\\', 138, + '_', 951, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(456); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 457: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(275) - if (lookahead == '\r') SKIP(73) + ADVANCE_MAP( + '!', 672, + '#', 819, + '$', 787, + '*', 640, + '-', 635, + '0', 948, + '?', 763, + '@', 944, + ); + if (lookahead == '\\') SKIP(384); + if (lookahead == '_') ADVANCE(951); + if (lookahead == '`') ADVANCE(858); + if (lookahead == '}') ADVANCE(821); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(457); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 458: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(280) - if (lookahead == '\r') SKIP(74) + ADVANCE_MAP( + '!', 672, + '#', 819, + '$', 787, + '*', 640, + '-', 635, + '0', 948, + '?', 763, + '@', 944, + ); + if (lookahead == '\\') SKIP(393); + if (lookahead == '_') ADVANCE(951); + if (lookahead == '`') ADVANCE(858); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(458); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 459: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(237) - if (lookahead == '\r') SKIP(78) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '!', 822, + '#', 828, + '$', 787, + '*', 640, + '-', 635, + '0', 948, + '=', 829, + '?', 763, + '@', 944, + ); + if (lookahead == '\\') SKIP(384); + if (lookahead == '_') ADVANCE(951); + if (lookahead == '`') ADVANCE(858); + if (lookahead == '}') ADVANCE(821); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(457); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 460: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(310) - if (lookahead == '\r') SKIP(79) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '"', 791, + '#', 865, + '$', 784, + '&', 511, + '\'', 494, + '(', 657, + '-', 953, + '0', 806, + '<', 611, + '>', 620, + '[', 677, + '\\', 331, + '`', 858, + ']', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(460); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(961); END_STATE(); case 461: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(316) - if (lookahead == '\r') SKIP(80) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '"', 791, + '#', 865, + '$', 784, + '&', 511, + '\'', 494, + '(', 497, + ')', 658, + '-', 953, + '0', 806, + '<', 611, + '>', 620, + '\\', 341, + '`', 858, + '|', 593, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(461); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0 && + lookahead != ';' && + lookahead != '<') ADVANCE(961); END_STATE(); case 462: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(320) - if (lookahead == '\r') SKIP(81) + ADVANCE_MAP( + '"', 791, + '#', 865, + '$', 784, + '&', 511, + '\'', 494, + '(', 497, + ')', 658, + '-', 953, + '0', 806, + '<', 611, + '>', 620, + '\\', 374, + '`', 859, + '|', 593, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(462); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0 && + lookahead != ';' && + lookahead != '<') ADVANCE(961); END_STATE(); case 463: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(317) - if (lookahead == '\r') SKIP(87) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '"', 791, + '#', 865, + '$', 784, + '&', 492, + '\'', 494, + '(', 657, + ')', 658, + '-', 953, + '0', 806, + '<', 612, + '>', 620, + '\\', 339, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(463); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0 && + lookahead != ';' && + lookahead != '<') ADVANCE(961); END_STATE(); case 464: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(289) - if (lookahead == '\r') SKIP(88) + ADVANCE_MAP( + '"', 791, + '#', 865, + '$', 784, + '&', 492, + '\'', 494, + '(', 657, + '-', 953, + '0', 806, + '<', 612, + '=', 955, + '>', 620, + '\\', 330, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(464); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + (lookahead < ';' || '>' < lookahead)) ADVANCE(961); END_STATE(); case 465: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(65) - if (lookahead == '\r') SKIP(89) + ADVANCE_MAP( + '"', 791, + '#', 865, + '$', 784, + '&', 492, + '\'', 494, + '(', 657, + '-', 953, + '0', 806, + '<', 612, + '=', 955, + '>', 620, + '\\', 355, + '`', 859, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(465); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + (lookahead < ';' || '>' < lookahead)) ADVANCE(961); END_STATE(); case 466: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(67) - if (lookahead == '\r') SKIP(90) + ADVANCE_MAP( + '"', 791, + '#', 865, + '$', 784, + '&', 492, + '\'', 494, + '(', 497, + ')', 658, + '-', 953, + '0', 806, + '<', 612, + '>', 620, + '\\', 358, + '`', 859, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(466); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0 && + lookahead != ';' && + lookahead != '<') ADVANCE(961); END_STATE(); case 467: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(292) - if (lookahead == '\r') SKIP(91) + ADVANCE_MAP( + '"', 791, + '#', 865, + '$', 784, + '&', 492, + '\'', 494, + '(', 497, + '-', 953, + '0', 806, + '<', 612, + '>', 620, + '\\', 336, + ']', 678, + '`', 858, + '|', 596, + '[', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(467); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(961); END_STATE(); case 468: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(312) - if (lookahead == '\r') SKIP(92) + ADVANCE_MAP( + '"', 791, + '#', 865, + '$', 784, + '&', 492, + '\'', 494, + '(', 497, + '-', 953, + '0', 806, + '<', 612, + '>', 620, + '\\', 357, + ']', 678, + '`', 859, + '|', 596, + '[', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(468); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(961); END_STATE(); case 469: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(324) - if (lookahead == '\r') SKIP(93) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '"', 791, + '#', 865, + '$', 784, + '&', 492, + '\'', 494, + '(', 497, + '-', 953, + '0', 806, + '<', 613, + '>', 620, + '\\', 344, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(469); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(961); END_STATE(); case 470: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(321) - if (lookahead == '\r') SKIP(94) + ADVANCE_MAP( + '"', 791, + '#', 865, + '$', 784, + '&', 492, + '\'', 494, + '(', 497, + '-', 953, + '0', 806, + '<', 613, + '>', 620, + '\\', 364, + ']', 678, + '`', 859, + '|', 596, + '[', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(470); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(961); END_STATE(); case 471: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(66) - if (lookahead == '\r') SKIP(95) + ADVANCE_MAP( + '"', 791, + '#', 865, + '$', 784, + '&', 492, + '\'', 494, + '(', 497, + '-', 953, + '0', 806, + '<', 613, + '>', 620, + '\\', 365, + '`', 859, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(471); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(961); END_STATE(); case 472: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(322) - if (lookahead == '\r') SKIP(96) + ADVANCE_MAP( + '"', 791, + '#', 865, + '$', 784, + '&', 492, + '\'', 494, + '(', 497, + '-', 953, + '0', 806, + '<', 613, + '>', 620, + '\\', 402, + ']', 678, + '`', 858, + '|', 596, + '[', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(472); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(961); END_STATE(); case 473: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(325) - if (lookahead == '\r') SKIP(97) + ADVANCE_MAP( + '"', 791, + '#', 865, + '$', 784, + '&', 492, + '\'', 494, + '(', 497, + '-', 953, + '0', 807, + '<', 613, + '>', 620, + '\\', 335, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(473); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(809); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(871); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(961); END_STATE(); case 474: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(313) - if (lookahead == '\r') SKIP(98) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '"', 791, + '#', 865, + '$', 784, + '&', 492, + '\'', 494, + '(', 497, + '-', 953, + '0', 807, + '<', 613, + '>', 620, + '\\', 360, + '`', 859, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(474); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(809); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(871); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(961); END_STATE(); case 475: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(69) - if (lookahead == '\r') SKIP(100) + ADVANCE_MAP( + '"', 791, + '#', 865, + '$', 784, + '\'', 494, + '(', 657, + '-', 953, + '0', 806, + '<', 498, + '>', 499, + '\\', 368, + '`', 858, + 'e', 959, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(475); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(961); END_STATE(); case 476: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(293) - if (lookahead == '\r') SKIP(101) + ADVANCE_MAP( + '"', 791, + '#', 865, + '$', 784, + '\'', 494, + '(', 657, + '-', 953, + '0', 806, + '<', 498, + '>', 499, + '\\', 375, + '`', 858, + '}', 821, + '[', 789, + ']', 789, + '{', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(476); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(961); END_STATE(); case 477: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(795); - if (lookahead == '\r') ADVANCE(789); - if (lookahead != 0) ADVANCE(798); + ADVANCE_MAP( + '"', 791, + '#', 865, + '$', 788, + '&', 492, + '(', 656, + ')', 502, + '+', 504, + '-', 505, + '0', 812, + '<', 616, + '=', 562, + '>', 621, + ); + if (lookahead == '\\') SKIP(385); + if (lookahead == ']') ADVANCE(678); + if (lookahead == '`') ADVANCE(858); + if (lookahead == '|') ADVANCE(596); + if (lookahead == '[' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(789); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(477); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(659); END_STATE(); case 478: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(323) - if (lookahead == '\r') SKIP(105) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '"', 791, + '#', 865, + '$', 785, + '\'', 494, + '(', 656, + ')', 658, + ';', 556, + '<', 498, + '>', 499, + '\\', 388, + '`', 858, + '{', 669, + '|', 593, + '}', 821, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(478); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + (lookahead < '[' || ']' < lookahead)) ADVANCE(961); END_STATE(); case 479: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(314) - if (lookahead == '\r') SKIP(106) + ADVANCE_MAP( + '"', 791, + '#', 865, + '$', 500, + '%', 649, + '*', 640, + '+', 632, + '-', 635, + '/', 644, + ':', 765, + ); + if (lookahead == '\\') SKIP(396); + if (lookahead == '`') ADVANCE(858); + if (lookahead == '}') ADVANCE(821); + if (('[' <= lookahead && lookahead <= ']') || + lookahead == '{') ADVANCE(789); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(479); END_STATE(); case 480: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(70) - if (lookahead == '\r') SKIP(107) + if (lookahead == '"') ADVANCE(791); + if (lookahead == '#') ADVANCE(865); + if (lookahead == '\'') ADVANCE(494); + if (lookahead == ')') ADVANCE(658); + if (lookahead == '\\') SKIP(397); + if (lookahead == '}') ADVANCE(821); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(845); END_STATE(); case 481: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(315) - if (lookahead == '\r') SKIP(108) + ADVANCE_MAP( + '"', 791, + '#', 866, + '$', 784, + '\'', 494, + '(', 657, + '-', 953, + '0', 806, + '<', 498, + '>', 499, + '\\', 376, + '`', 858, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(481); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(961); END_STATE(); case 482: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(326) - if (lookahead == '\r') SKIP(109) + ADVANCE_MAP( + '"', 791, + '#', 866, + '$', 784, + '\'', 494, + '(', 497, + '-', 953, + '0', 806, + '<', 498, + '>', 499, + '\\', 378, + ']', 678, + '`', 858, + '[', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(482); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(961); END_STATE(); case 483: + if (lookahead == '"') ADVANCE(791); + if (lookahead == '#') ADVANCE(800); + if (lookahead == '$') ADVANCE(786); + if (lookahead == '(') ADVANCE(799); + if (lookahead == '\\') ADVANCE(303); + if (lookahead == '`') ADVANCE(858); + if (lookahead == '\n' || + lookahead == '\r') SKIP(483); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(245) - if (lookahead == '\r') SKIP(110) - if (lookahead != 0) ADVANCE(958); + lookahead == ' ') ADVANCE(798); + if (lookahead != 0) ADVANCE(801); END_STATE(); case 484: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(243) - if (lookahead == '\r') SKIP(111) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '#', 819, + '%', 651, + '*', 826, + '+', 836, + ',', 561, + '-', 833, + '/', 646, + ':', 767, + '=', 829, + '?', 839, + '@', 824, + '[', 676, + ); + if (lookahead == '\\') SKIP(377); + if (lookahead == '^') ADVANCE(601); + if (lookahead == '}') ADVANCE(821); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(485); END_STATE(); case 485: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(174) - if (lookahead == '\r') SKIP(113) - if (lookahead != 0) ADVANCE(958); + if (lookahead == '#') ADVANCE(819); + if (lookahead == '%') ADVANCE(651); + if (lookahead == ',') ADVANCE(561); + if (lookahead == '/') ADVANCE(646); + if (lookahead == ':') ADVANCE(765); + if (lookahead == '[') ADVANCE(676); + if (lookahead == '\\') SKIP(377); + if (lookahead == '^') ADVANCE(601); + if (lookahead == '}') ADVANCE(821); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(485); END_STATE(); case 486: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(264) - if (lookahead == '\r') SKIP(114) - if (lookahead != 0) ADVANCE(958); + if (lookahead == '#') ADVANCE(865); + if (lookahead == '$') ADVANCE(518); + if (lookahead == '&') ADVANCE(492); + if (lookahead == '-') ADVANCE(507); + if (lookahead == '0') ADVANCE(811); + if (lookahead == '<') ADVANCE(616); + if (lookahead == '>') ADVANCE(621); + if (lookahead == '\\') SKIP(387); + if (lookahead == '`') ADVANCE(513); + if (lookahead == '|') ADVANCE(596); + if (('[' <= lookahead && lookahead <= ']') || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(789); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(486); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(813); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 487: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(215) - if (lookahead == '\r') SKIP(115) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '#', 865, + '%', 649, + '&', 492, + '*', 640, + '+', 632, + '-', 635, + '/', 644, + '<', 615, + '>', 621, + ); + if (lookahead == '\\') SKIP(390); + if (lookahead == '`') ADVANCE(513); + if (lookahead == '|') ADVANCE(596); + if (('[' <= lookahead && lookahead <= ']') || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(789); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(487); END_STATE(); case 488: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(217) - if (lookahead == '\r') SKIP(116) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '#', 865, + '&', 511, + '(', 657, + '<', 614, + '>', 621, + '[', 677, + '\\', 394, + '{', 669, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(488); + if (lookahead != 0 && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '[' || ']' < lookahead) && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(961); END_STATE(); case 489: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(219) - if (lookahead == '\r') SKIP(117) - if (lookahead != 0) ADVANCE(958); + ADVANCE_MAP( + '#', 865, + '&', 492, + '<', 615, + '>', 621, + '\\', 386, + ']', 678, + '`', 513, + '|', 596, + '[', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(489); + if (lookahead != 0 && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(961); END_STATE(); case 490: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(221) - if (lookahead == '\r') SKIP(119) - if (lookahead != 0) ADVANCE(958); + if (lookahead == '#') ADVANCE(865); + if (lookahead == '&') ADVANCE(492); + if (lookahead == '<') ADVANCE(616); + if (lookahead == '>') ADVANCE(621); + if (lookahead == '\\') SKIP(391); + if (lookahead == ']') ADVANCE(678); + if (lookahead == '`') ADVANCE(513); + if (lookahead == '|') ADVANCE(596); + if (lookahead == '[' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(789); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(490); END_STATE(); case 491: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(225) - if (lookahead == '\r') SKIP(122) - if (lookahead != 0) ADVANCE(958); + if (lookahead == '#') ADVANCE(865); + if (lookahead == '+') ADVANCE(510); + if (lookahead == '/') ADVANCE(644); + if (lookahead == '=') ADVANCE(562); + if (lookahead == '[') ADVANCE(676); + if (lookahead == '\\') SKIP(398); + if (lookahead == '`') ADVANCE(513); + if (lookahead == '}') ADVANCE(821); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(491); END_STATE(); case 492: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(231) - if (lookahead == '\r') SKIP(123) - if (lookahead != 0) ADVANCE(958); + if (lookahead == '&') ADVANCE(591); + if (lookahead == '>') ADVANCE(683); END_STATE(); case 493: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(223) - if (lookahead == '\r') SKIP(124) - if (lookahead != 0) ADVANCE(958); + if (lookahead == '&') ADVANCE(667); + if (lookahead == ';') ADVANCE(666); END_STATE(); case 494: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(227) - if (lookahead == '\r') SKIP(125) - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\'') ADVANCE(803); + if (lookahead != 0) ADVANCE(494); END_STATE(); case 495: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(300) - if (lookahead == '\r') SKIP(126) - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\'') ADVANCE(804); + if (lookahead == '\\') ADVANCE(496); + if (lookahead != 0) ADVANCE(495); END_STATE(); case 496: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(232) - if (lookahead == '\r') SKIP(127) - if (lookahead != 0) ADVANCE(958); + if (lookahead == '\'') ADVANCE(805); + if (lookahead == '\\') ADVANCE(496); + if (lookahead != 0) ADVANCE(495); END_STATE(); case 497: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(236) - if (lookahead == '\r') SKIP(130) - if (lookahead != 0) ADVANCE(958); + if (lookahead == '(') ADVANCE(554); END_STATE(); case 498: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(309) - if (lookahead == '\r') SKIP(132) - if (lookahead != 0) ADVANCE(958); + if (lookahead == '(') ADVANCE(861); END_STATE(); case 499: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(303) - if (lookahead == '\r') SKIP(133) - if (lookahead != 0) ADVANCE(958); + if (lookahead == '(') ADVANCE(862); END_STATE(); case 500: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(296) - if (lookahead == '\r') SKIP(134) - if (lookahead != 0) ADVANCE(958); + if (lookahead == '(') ADVANCE(856); + if (lookahead == '`') ADVANCE(860); END_STATE(); case 501: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(307) - if (lookahead == '\r') SKIP(137) - if (lookahead != 0) ADVANCE(958); + if (lookahead == '(') ADVANCE(856); + if (lookahead == '`') ADVANCE(860); + if (lookahead == '{') ADVANCE(820); END_STATE(); case 502: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(274) - if (lookahead == '\r') SKIP(141) + if (lookahead == ')') ADVANCE(555); END_STATE(); case 503: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(238) - if (lookahead == '\r') SKIP(144) - if (lookahead != 0) ADVANCE(958); + if (lookahead == '+') ADVANCE(567); END_STATE(); case 504: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(68) - if (lookahead == '\r') SKIP(148) + if (lookahead == '+') ADVANCE(567); + if (lookahead == '=') ADVANCE(571); END_STATE(); case 505: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(246) - if (lookahead == '\r') SKIP(149) - if (lookahead != 0) ADVANCE(958); + if (lookahead == '-') ADVANCE(569); + if (lookahead == '0') ADVANCE(812); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); END_STATE(); case 506: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(229) - if (lookahead == '\r') SKIP(152) - if (lookahead != 0) ADVANCE(958); + if (lookahead == '.') ADVANCE(779); END_STATE(); case 507: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(233) - if (lookahead == '\r') SKIP(153) - if (lookahead != 0) ADVANCE(958); + if (lookahead == '0') ADVANCE(812); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); END_STATE(); case 508: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(234) - if (lookahead == '\r') SKIP(154) - if (lookahead != 0) ADVANCE(958); + if (lookahead == '<') ADVANCE(762); END_STATE(); case 509: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(304) - if (lookahead == '\r') SKIP(156) - if (lookahead != 0) ADVANCE(958); + if (lookahead == '=') ADVANCE(608); END_STATE(); case 510: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(301) - if (lookahead == '\r') SKIP(157) - if (lookahead != 0) ADVANCE(958); + if (lookahead == '=') ADVANCE(571); END_STATE(); case 511: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(297) - if (lookahead == '\r') SKIP(161) - if (lookahead != 0) ADVANCE(958); + if (lookahead == '>') ADVANCE(683); END_STATE(); case 512: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(201) - if (lookahead == '\r') SKIP(164) - if (lookahead != 0) ADVANCE(958); + if (lookahead == ']') ADVANCE(680); END_STATE(); case 513: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(207) - if (lookahead == '\r') SKIP(166) - if (lookahead != 0) ADVANCE(958); + if (lookahead == '`') ADVANCE(782); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(513); END_STATE(); case 514: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(210) - if (lookahead == '\r') SKIP(167) - if (lookahead != 0) ADVANCE(958); + if (lookahead == 'a') ADVANCE(515); END_STATE(); case 515: - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(305) - if (lookahead == '\r') SKIP(170) - if (lookahead != 0) ADVANCE(958); + if (lookahead == 'c') ADVANCE(660); END_STATE(); case 516: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(811); + if (lookahead == 'n') ADVANCE(551); END_STATE(); case 517: - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(958); + if (lookahead == 's') ADVANCE(514); END_STATE(); case 518: - if (lookahead != 0 && - lookahead != '\r') ADVANCE(798); - if (lookahead == '\r') ADVANCE(799); + if (lookahead == '{') ADVANCE(820); END_STATE(); case 519: - if (eof) ADVANCE(547); - if (lookahead == '\n') ADVANCE(690); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '&') ADVANCE(602); - if (lookahead == ')') ADVANCE(655); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(612); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') SKIP(544) - if (lookahead == '`') ADVANCE(856); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(519) + if (lookahead == '|') ADVANCE(589); END_STATE(); case 520: - if (eof) ADVANCE(547); - if (lookahead == '\n') ADVANCE(690); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '&') ADVANCE(602); - if (lookahead == ')') ADVANCE(655); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(612); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') SKIP(546) - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(520) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(814); END_STATE(); case 521: - if (eof) ADVANCE(547); - if (lookahead == '\n') ADVANCE(690); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '&') ADVANCE(602); - if (lookahead == ')') ADVANCE(655); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(613); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') SKIP(543) - if (lookahead == '`') ADVANCE(856); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(521) + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(961); END_STATE(); case 522: - if (eof) ADVANCE(547); - if (lookahead == '\n') ADVANCE(690); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '&') ADVANCE(602); - if (lookahead == ')') ADVANCE(655); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(613); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') SKIP(545) - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); + if (eof) ADVANCE(550); + if (lookahead == '\n') ADVANCE(693); + if (lookahead == '#') ADVANCE(865); + if (lookahead == '&') ADVANCE(605); + if (lookahead == ')') ADVANCE(658); + if (lookahead == ';') ADVANCE(558); + if (lookahead == '<') ADVANCE(615); + if (lookahead == '>') ADVANCE(621); + if (lookahead == '\\') SKIP(544); + if (lookahead == '`') ADVANCE(859); + if (lookahead == '|') ADVANCE(596); + if (('[' <= lookahead && lookahead <= ']') || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(789); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(522) + lookahead == ' ') SKIP(522); END_STATE(); case 523: - if (eof) ADVANCE(547); - if (lookahead == '\n') SKIP(521) + if (eof) ADVANCE(550); + if (lookahead == '\n') ADVANCE(693); + if (lookahead == '#') ADVANCE(865); + if (lookahead == '&') ADVANCE(605); + if (lookahead == ')') ADVANCE(658); + if (lookahead == ';') ADVANCE(558); + if (lookahead == '<') ADVANCE(615); + if (lookahead == '>') ADVANCE(621); + if (lookahead == '\\') SKIP(546); + if (lookahead == '`') ADVANCE(858); + if (lookahead == '|') ADVANCE(596); + if (('[' <= lookahead && lookahead <= ']') || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(789); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(523); END_STATE(); case 524: - if (eof) ADVANCE(547); - if (lookahead == '\n') SKIP(519) + if (eof) ADVANCE(550); + if (lookahead == '\n') ADVANCE(693); + if (lookahead == '#') ADVANCE(865); + if (lookahead == '&') ADVANCE(605); + if (lookahead == ')') ADVANCE(658); + if (lookahead == ';') ADVANCE(558); + if (lookahead == '<') ADVANCE(616); + if (lookahead == '>') ADVANCE(621); + if (lookahead == '\\') SKIP(545); + if (lookahead == '`') ADVANCE(859); + if (lookahead == '|') ADVANCE(596); + if (('[' <= lookahead && lookahead <= ']') || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(789); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(524); END_STATE(); case 525: - if (eof) ADVANCE(547); - if (lookahead == '\n') SKIP(522) + if (eof) ADVANCE(550); + if (lookahead == '\n') ADVANCE(693); + if (lookahead == '#') ADVANCE(865); + if (lookahead == '&') ADVANCE(605); + if (lookahead == ')') ADVANCE(658); + if (lookahead == ';') ADVANCE(558); + if (lookahead == '<') ADVANCE(616); + if (lookahead == '>') ADVANCE(621); + if (lookahead == '\\') SKIP(547); + if (lookahead == '`') ADVANCE(858); + if (lookahead == '|') ADVANCE(596); + if (('[' <= lookahead && lookahead <= ']') || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(789); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(525); END_STATE(); case 526: - if (eof) ADVANCE(547); - if (lookahead == '\n') SKIP(520) + if (eof) ADVANCE(550); + if (lookahead == '\n') SKIP(522); END_STATE(); case 527: - if (eof) ADVANCE(547); - if (lookahead == '\n') ADVANCE(703); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '=') ADVANCE(952); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(432); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(527) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0) ADVANCE(958); + if (eof) ADVANCE(550); + if (lookahead == '\n') SKIP(524); END_STATE(); case 528: - if (eof) ADVANCE(547); - if (lookahead == '\n') ADVANCE(705); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '=') ADVANCE(952); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(390); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(528) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (lookahead != 0 && - lookahead != ')') ADVANCE(958); + if (eof) ADVANCE(550); + if (lookahead == '\n') SKIP(523); END_STATE(); case 529: - if (eof) ADVANCE(547); - if (lookahead == '\n') ADVANCE(710); - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(612); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(406); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(529) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + if (eof) ADVANCE(550); + if (lookahead == '\n') SKIP(525); END_STATE(); case 530: - if (eof) ADVANCE(547); - if (lookahead == '\n') ADVANCE(712); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(804); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(610); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(435); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); + if (eof) ADVANCE(550); + ADVANCE_MAP( + '\n', 704, + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '&', 605, + '*', 640, + '-', 635, + '0', 948, + ';', 558, + '<', 615, + '>', 621, + '?', 763, + '@', 944, + '\\', 186, + '_', 951, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(530) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(806); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(868); - if (lookahead != 0) ADVANCE(958); + lookahead == ' ') SKIP(530); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 531: - if (eof) ADVANCE(547); - if (lookahead == '\n') ADVANCE(714); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '=') ADVANCE(952); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(408); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); + if (eof) ADVANCE(550); + ADVANCE_MAP( + '\n', 706, + '"', 791, + '#', 865, + '$', 784, + '&', 605, + '\'', 494, + '(', 657, + ')', 658, + '-', 953, + '0', 806, + ';', 558, + '<', 612, + '=', 955, + '>', 620, + '\\', 324, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(531) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (lookahead != 0 && - lookahead != ')') ADVANCE(958); + lookahead == ' ') SKIP(531); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 532: - if (eof) ADVANCE(547); - if (lookahead == '\n') ADVANCE(716); - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(613); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(409); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(593); + if (eof) ADVANCE(550); + ADVANCE_MAP( + '\n', 708, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 605, + '\'', 494, + '(', 657, + '*', 643, + '-', 639, + '0', 946, + ';', 558, + '<', 612, + '=', 955, + '>', 620, + '?', 764, + '@', 945, + '\\', 203, + '_', 950, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(532) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + lookahead == ' ') SKIP(532); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(961); END_STATE(); case 533: - if (eof) ADVANCE(547); - if (lookahead == '\n') ADVANCE(724); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(440); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); + if (eof) ADVANCE(550); + ADVANCE_MAP( + '\n', 714, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + ';', 558, + '<', 612, + '=', 955, + '>', 620, + '?', 764, + '@', 945, + '\\', 216, + '_', 950, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(533) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0) ADVANCE(958); + lookahead == ' ') SKIP(533); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(961); END_STATE(); case 534: - if (eof) ADVANCE(547); - if (lookahead == '\n') ADVANCE(730); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(610); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(514); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); + if (eof) ADVANCE(550); + ADVANCE_MAP( + '\n', 715, + '"', 791, + '#', 865, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + ')', 658, + '-', 953, + '0', 807, + ';', 558, + '<', 613, + '>', 620, + '\\', 327, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(534) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0) ADVANCE(958); + lookahead == ' ') SKIP(534); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(809); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(871); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 535: - if (eof) ADVANCE(547); - if (lookahead == '\n') ADVANCE(732); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(392); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); + if (eof) ADVANCE(550); + ADVANCE_MAP( + '\n', 716, + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '&', 605, + '*', 640, + '-', 635, + '0', 948, + ';', 558, + '<', 616, + '>', 621, + '?', 763, + '@', 944, + '\\', 219, + '_', 951, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(535) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (lookahead != 0 && - lookahead != ')') ADVANCE(958); + lookahead == ' ') SKIP(535); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 536: - if (eof) ADVANCE(547); - if (lookahead == '\n') ADVANCE(738); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(610); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(405); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); + if (eof) ADVANCE(550); + ADVANCE_MAP( + '\n', 727, + '"', 791, + '#', 865, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + ')', 658, + '-', 953, + '0', 806, + ';', 558, + '<', 612, + '>', 620, + '\\', 332, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(536) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (lookahead != 0 && - lookahead != ')') ADVANCE(958); + lookahead == ' ') SKIP(536); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 537: - if (eof) ADVANCE(547); - if (lookahead == '\n') ADVANCE(739); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '=') ADVANCE(952); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(489); - if (lookahead == '`') ADVANCE(856); - if (lookahead == '|') ADVANCE(593); + if (eof) ADVANCE(550); + ADVANCE_MAP( + '\n', 732, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + ';', 558, + '<', 612, + '>', 620, + '?', 764, + '@', 945, + '\\', 166, + '_', 950, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(537) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0) ADVANCE(958); + lookahead == ' ') SKIP(537); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(961); END_STATE(); case 538: - if (eof) ADVANCE(547); - if (lookahead == '\n') ADVANCE(751); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(804); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(610); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(492); - if (lookahead == '`') ADVANCE(856); - if (lookahead == '|') ADVANCE(593); + if (eof) ADVANCE(550); + ADVANCE_MAP( + '\n', 736, + '"', 791, + '#', 865, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + ')', 658, + '-', 953, + '0', 806, + ';', 558, + '<', 613, + '>', 620, + '\\', 401, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(538) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(806); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(868); - if (lookahead != 0) ADVANCE(958); + lookahead == ' ') SKIP(538); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 539: - if (eof) ADVANCE(547); - if (lookahead == '\n') ADVANCE(752); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(496); - if (lookahead == '`') ADVANCE(856); - if (lookahead == '|') ADVANCE(593); + if (eof) ADVANCE(550); + ADVANCE_MAP( + '\n', 739, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + ';', 558, + '<', 613, + '>', 620, + '?', 764, + '@', 945, + '\\', 208, + '_', 950, + '`', 858, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(539) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0) ADVANCE(958); + lookahead == ' ') SKIP(539); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(961); END_STATE(); case 540: - if (eof) ADVANCE(547); - if (lookahead == '\n') ADVANCE(754); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(610); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[' || - lookahead == ']' || - lookahead == '{' || - lookahead == '}') ADVANCE(786); - if (lookahead == '\\') ADVANCE(508); - if (lookahead == '`') ADVANCE(856); - if (lookahead == '|') ADVANCE(593); + if (eof) ADVANCE(550); + ADVANCE_MAP( + '\n', 742, + '"', 791, + '#', 865, + '$', 784, + '&', 605, + '\'', 494, + '(', 657, + ')', 658, + '-', 953, + '0', 806, + ';', 558, + '<', 612, + '=', 955, + '>', 620, + '\\', 340, + '`', 859, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(540) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0) ADVANCE(958); + lookahead == ' ') SKIP(540); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 541: - if (eof) ADVANCE(547); - if (lookahead == '!') ADVANCE(670); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '%') ADVANCE(647); - if (lookahead == '&') ADVANCE(601); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '*') ADVANCE(638); - if (lookahead == '+') ADVANCE(770); - if (lookahead == ',') ADVANCE(557); - if (lookahead == '-') ADVANCE(768); - if (lookahead == '/') ADVANCE(642); - if (lookahead == '0') ADVANCE(944); - if (lookahead == ':') ADVANCE(765); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(607); - if (lookahead == '=') ADVANCE(563); - if (lookahead == '>') ADVANCE(616); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '[') ADVANCE(674); - if (lookahead == '\\') ADVANCE(417); - if (lookahead == ']') ADVANCE(675); - if (lookahead == '^') ADVANCE(595); - if (lookahead == '_') ADVANCE(946); - if (lookahead == '`') ADVANCE(856); - if (lookahead == 'e') ADVANCE(956); - if (lookahead == 'i') ADVANCE(955); - if (lookahead == '{') ADVANCE(666); - if (lookahead == '|') ADVANCE(592); - if (lookahead == '}') ADVANCE(818); - if (lookahead == '~') ADVANCE(772); + if (eof) ADVANCE(550); + ADVANCE_MAP( + '\n', 752, + '"', 791, + '#', 865, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + ')', 658, + '-', 953, + '0', 806, + ';', 558, + '<', 612, + '>', 620, + '\\', 348, + '`', 859, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(541) - if (lookahead != 0) ADVANCE(958); + lookahead == ' ') SKIP(541); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 542: - if (eof) ADVANCE(547); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(862); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(346); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '-') ADVANCE(950); - if (lookahead == '0') ADVANCE(803); - if (lookahead == ';') ADVANCE(328); - if (lookahead == '<') ADVANCE(608); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '[') ADVANCE(674); - if (lookahead == '\\') ADVANCE(418); - if (lookahead == ']' || - lookahead == '}') ADVANCE(786); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '{') ADVANCE(666); - if (lookahead == '|') ADVANCE(590); + if (eof) ADVANCE(550); + ADVANCE_MAP( + '\n', 754, + '"', 791, + '#', 865, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + ')', 658, + '-', 953, + '0', 807, + ';', 558, + '<', 613, + '>', 620, + '\\', 349, + '`', 859, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(542) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (lookahead != 0) ADVANCE(958); + lookahead == ' ') SKIP(542); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(809); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(871); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 543: - if (eof) ADVANCE(547); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(521) - if (lookahead == '\r') SKIP(523) + if (eof) ADVANCE(550); + ADVANCE_MAP( + '\n', 757, + '"', 791, + '#', 865, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + ')', 658, + '-', 953, + '0', 806, + ';', 558, + '<', 613, + '>', 620, + '\\', 354, + '`', 859, + '|', 596, + '[', 789, + ']', 789, + '{', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(543); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 544: - if (eof) ADVANCE(547); + if (eof) ADVANCE(550); + if (lookahead == '\r') SKIP(526); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(519) - if (lookahead == '\r') SKIP(524) + lookahead == ' ') SKIP(522); END_STATE(); case 545: - if (eof) ADVANCE(547); + if (eof) ADVANCE(550); + if (lookahead == '\r') SKIP(527); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(522) - if (lookahead == '\r') SKIP(525) + lookahead == ' ') SKIP(524); END_STATE(); case 546: - if (eof) ADVANCE(547); + if (eof) ADVANCE(550); + if (lookahead == '\r') SKIP(528); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(520) - if (lookahead == '\r') SKIP(526) + lookahead == ' ') SKIP(523); END_STATE(); case 547: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (eof) ADVANCE(550); + if (lookahead == '\r') SKIP(529); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(525); END_STATE(); case 548: - ACCEPT_TOKEN(anon_sym_in); + if (eof) ADVANCE(550); + ADVANCE_MAP( + '!', 673, + '"', 791, + '#', 819, + '$', 784, + '%', 650, + '&', 604, + '\'', 494, + '(', 657, + ')', 658, + '*', 641, + '+', 773, + ',', 560, + '-', 771, + '/', 645, + '0', 947, + ':', 768, + ';', 557, + '<', 610, + '=', 566, + '>', 619, + '?', 764, + '@', 945, + '[', 677, + '\\', 302, + ']', 678, + '^', 598, + '_', 949, + '`', 859, + 'e', 959, + 'i', 958, + '{', 669, + '|', 595, + '}', 821, + '~', 775, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(548); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 549: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + if (eof) ADVANCE(550); + ADVANCE_MAP( + '!', 675, + '"', 791, + '#', 865, + '$', 784, + '&', 511, + '\'', 494, + '(', 657, + ')', 658, + '-', 953, + '0', 806, + ';', 493, + '<', 611, + '>', 620, + '[', 677, + '\\', 305, + '`', 858, + '{', 669, + '|', 593, + ']', 789, + '}', 789, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(549); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (lookahead != 0) ADVANCE(961); END_STATE(); case 550: - ACCEPT_TOKEN(anon_sym_in); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 551: - ACCEPT_TOKEN(anon_sym_LPAREN_LPAREN); + ACCEPT_TOKEN(anon_sym_in); END_STATE(); case 552: - ACCEPT_TOKEN(anon_sym_RPAREN_RPAREN); + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); case 553: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_in); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 554: - ACCEPT_TOKEN(anon_sym_SEMI); - if (lookahead == '&') ADVANCE(664); - if (lookahead == ';') ADVANCE(663); + ACCEPT_TOKEN(anon_sym_LPAREN_LPAREN); END_STATE(); case 555: - ACCEPT_TOKEN(anon_sym_SEMI); - if (lookahead == ';') ADVANCE(662); + ACCEPT_TOKEN(anon_sym_RPAREN_RPAREN); END_STATE(); case 556: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 557: - ACCEPT_TOKEN(anon_sym_COMMA); - if (lookahead == ',') ADVANCE(850); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + ACCEPT_TOKEN(anon_sym_SEMI); + if (lookahead == '&') ADVANCE(667); + if (lookahead == ';') ADVANCE(666); END_STATE(); case 558: - ACCEPT_TOKEN(anon_sym_COMMA); - if (lookahead == ',') ADVANCE(849); + ACCEPT_TOKEN(anon_sym_SEMI); + if (lookahead == ';') ADVANCE(665); END_STATE(); case 559: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 560: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(604); - if (lookahead == '\\') ADVANCE(517); - if (lookahead == '~') ADVANCE(679); - if (!sym_word_character_set_2(lookahead)) ADVANCE(958); + ACCEPT_TOKEN(anon_sym_COMMA); + if (lookahead == ',') ADVANCE(853); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); case 561: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(603); + ACCEPT_TOKEN(anon_sym_COMMA); + if (lookahead == ',') ADVANCE(852); END_STATE(); case 562: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(603); - if (lookahead == '~') ADVANCE(678); END_STATE(); case 563: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + if (lookahead == '=') ADVANCE(607); + if (lookahead == '\\') ADVANCE(521); + if (lookahead == '~') ADVANCE(682); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); case 564: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(606); END_STATE(); case 565: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(606); + if (lookahead == '~') ADVANCE(681); END_STATE(); case 566: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); case 567: - ACCEPT_TOKEN(anon_sym_DASH_DASH); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 568: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); case 569: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 570: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_DASH_DASH); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); case 571: - ACCEPT_TOKEN(anon_sym_DASH_EQ); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 572: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); case 573: - ACCEPT_TOKEN(anon_sym_STAR_EQ); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 574: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); case 575: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 576: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); case 577: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 578: - ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); case 579: - ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 580: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); case 581: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); case 582: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); case 583: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 584: - ACCEPT_TOKEN(anon_sym_CARET_EQ); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 585: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 586: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 587: - ACCEPT_TOKEN(anon_sym_DASHo); + ACCEPT_TOKEN(anon_sym_CARET_EQ); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); case 588: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 589: - ACCEPT_TOKEN(anon_sym_DASHa); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 590: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_DASHo); END_STATE(); case 591: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '&') ADVANCE(668); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 592: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '&') ADVANCE(668); - if (lookahead == '=') ADVANCE(585); - if (lookahead == '|') ADVANCE(586); + ACCEPT_TOKEN(anon_sym_DASHa); END_STATE(); case 593: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '&') ADVANCE(668); - if (lookahead == '|') ADVANCE(586); END_STATE(); case 594: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(585); - if (lookahead == '|') ADVANCE(586); + if (lookahead == '&') ADVANCE(671); END_STATE(); case 595: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(584); - if (lookahead == '\\') ADVANCE(517); - if (lookahead == '^') ADVANCE(852); - if (!sym_word_character_set_2(lookahead)) ADVANCE(958); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '&') ADVANCE(671); + if (lookahead == '=') ADVANCE(588); + if (lookahead == '|') ADVANCE(589); END_STATE(); case 596: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(584); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_2(lookahead)) ADVANCE(958); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '&') ADVANCE(671); + if (lookahead == '|') ADVANCE(589); END_STATE(); case 597: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(583); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(588); + if (lookahead == '|') ADVANCE(589); END_STATE(); case 598: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '^') ADVANCE(851); + if (lookahead == '=') ADVANCE(587); + if (lookahead == '\\') ADVANCE(521); + if (lookahead == '^') ADVANCE(855); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); case 599: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(587); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); case 600: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(588); - if (lookahead == '=') ADVANCE(582); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(586); END_STATE(); case 601: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(588); - if (lookahead == '=') ADVANCE(582); - if (lookahead == '>') ADVANCE(680); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '^') ADVANCE(854); END_STATE(); case 602: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(588); - if (lookahead == '>') ADVANCE(680); END_STATE(); case 603: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(591); + if (lookahead == '=') ADVANCE(585); END_STATE(); case 604: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(591); + if (lookahead == '=') ADVANCE(585); + if (lookahead == '>') ADVANCE(683); END_STATE(); case 605: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(591); + if (lookahead == '>') ADVANCE(683); END_STATE(); case 606: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 607: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(682); - if (lookahead == '(') ADVANCE(858); - if (lookahead == '<') ADVANCE(625); - if (lookahead == '=') ADVANCE(621); + ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); case 608: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(682); - if (lookahead == '(') ADVANCE(858); - if (lookahead == '<') ADVANCE(343); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 609: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(682); - if (lookahead == '(') ADVANCE(858); - if (lookahead == '<') ADVANCE(624); + ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); case 610: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(682); - if (lookahead == '(') ADVANCE(858); - if (lookahead == '<') ADVANCE(623); + if (lookahead == '&') ADVANCE(685); + if (lookahead == '(') ADVANCE(861); + if (lookahead == '<') ADVANCE(628); + if (lookahead == '=') ADVANCE(624); END_STATE(); case 611: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(682); - if (lookahead == '<') ADVANCE(343); + if (lookahead == '&') ADVANCE(685); + if (lookahead == '(') ADVANCE(861); + if (lookahead == '<') ADVANCE(508); END_STATE(); case 612: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(682); - if (lookahead == '<') ADVANCE(624); + if (lookahead == '&') ADVANCE(685); + if (lookahead == '(') ADVANCE(861); + if (lookahead == '<') ADVANCE(627); END_STATE(); case 613: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(682); - if (lookahead == '<') ADVANCE(623); + if (lookahead == '&') ADVANCE(685); + if (lookahead == '(') ADVANCE(861); + if (lookahead == '<') ADVANCE(626); END_STATE(); case 614: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '(') ADVANCE(858); - if (lookahead == '<') ADVANCE(626); - if (lookahead == '=') ADVANCE(621); + if (lookahead == '&') ADVANCE(685); + if (lookahead == '<') ADVANCE(508); END_STATE(); case 615: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(626); - if (lookahead == '=') ADVANCE(621); + if (lookahead == '&') ADVANCE(685); + if (lookahead == '<') ADVANCE(627); END_STATE(); case 616: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(683); - if (lookahead == '(') ADVANCE(859); - if (lookahead == '=') ADVANCE(622); - if (lookahead == '>') ADVANCE(628); - if (lookahead == '|') ADVANCE(684); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') ADVANCE(685); + if (lookahead == '<') ADVANCE(626); END_STATE(); case 617: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(683); - if (lookahead == '(') ADVANCE(859); - if (lookahead == '>') ADVANCE(627); - if (lookahead == '|') ADVANCE(684); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '(') ADVANCE(861); + if (lookahead == '<') ADVANCE(629); + if (lookahead == '=') ADVANCE(624); END_STATE(); case 618: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(683); - if (lookahead == '>') ADVANCE(627); - if (lookahead == '|') ADVANCE(684); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(629); + if (lookahead == '=') ADVANCE(624); END_STATE(); case 619: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '(') ADVANCE(859); - if (lookahead == '=') ADVANCE(622); - if (lookahead == '>') ADVANCE(628); + if (lookahead == '&') ADVANCE(686); + if (lookahead == '(') ADVANCE(862); + if (lookahead == '=') ADVANCE(625); + if (lookahead == '>') ADVANCE(631); + if (lookahead == '|') ADVANCE(687); END_STATE(); case 620: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(622); - if (lookahead == '>') ADVANCE(628); + if (lookahead == '&') ADVANCE(686); + if (lookahead == '(') ADVANCE(862); + if (lookahead == '>') ADVANCE(630); + if (lookahead == '|') ADVANCE(687); END_STATE(); case 621: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '&') ADVANCE(686); + if (lookahead == '>') ADVANCE(630); + if (lookahead == '|') ADVANCE(687); END_STATE(); case 622: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '(') ADVANCE(862); + if (lookahead == '=') ADVANCE(625); + if (lookahead == '>') ADVANCE(631); END_STATE(); case 623: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '-') ADVANCE(687); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(625); + if (lookahead == '>') ADVANCE(631); END_STATE(); case 624: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '-') ADVANCE(687); - if (lookahead == '<') ADVANCE(759); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 625: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '-') ADVANCE(687); - if (lookahead == '<') ADVANCE(759); - if (lookahead == '=') ADVANCE(580); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 626: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(580); + if (lookahead == '-') ADVANCE(690); END_STATE(); case 627: - ACCEPT_TOKEN(anon_sym_GT_GT); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '-') ADVANCE(690); + if (lookahead == '<') ADVANCE(762); END_STATE(); case 628: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(581); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '-') ADVANCE(690); + if (lookahead == '<') ADVANCE(762); + if (lookahead == '=') ADVANCE(583); END_STATE(); case 629: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(583); END_STATE(); case 630: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(565); - if (lookahead == '=') ADVANCE(569); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_2(lookahead)) ADVANCE(958); + ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); case 631: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(564); - if (lookahead == '=') ADVANCE(568); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(584); END_STATE(); case 632: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 633: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(567); - if (lookahead == '0') ADVANCE(803); - if (lookahead == '=') ADVANCE(571); - if (lookahead == '\\') ADVANCE(517); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (!sym_word_character_set_2(lookahead)) ADVANCE(958); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(568); + if (lookahead == '=') ADVANCE(572); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); case 634: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(566); - if (lookahead == '=') ADVANCE(570); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(567); + if (lookahead == '=') ADVANCE(571); END_STATE(); case 635: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(566); - if (lookahead == '=') ADVANCE(570); - if (lookahead == 'a') ADVANCE(589); - if (lookahead == 'o') ADVANCE(587); END_STATE(); case 636: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '0') ADVANCE(803); - if (lookahead == '\\') ADVANCE(517); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + if (lookahead == '-') ADVANCE(570); + if (lookahead == '0') ADVANCE(806); + if (lookahead == '=') ADVANCE(574); + if (lookahead == '\\') ADVANCE(521); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); case 637: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(569); + if (lookahead == '=') ADVANCE(573); END_STATE(); case 638: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(651); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(569); if (lookahead == '=') ADVANCE(573); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_2(lookahead)) ADVANCE(958); + if (lookahead == 'a') ADVANCE(592); + if (lookahead == 'o') ADVANCE(590); END_STATE(); case 639: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(652); - if (lookahead == '=') ADVANCE(572); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '0') ADVANCE(806); + if (lookahead == '\\') ADVANCE(521); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); case 640: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); case 641: - ACCEPT_TOKEN(anon_sym_SLASH); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(654); + if (lookahead == '=') ADVANCE(576); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); case 642: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '#') ADVANCE(846); - if (lookahead == '%') ADVANCE(848); - if (lookahead == '/') ADVANCE(844); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(655); if (lookahead == '=') ADVANCE(575); - if (lookahead == '\\') ADVANCE(517); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ' && - (lookahead < '"' || ')' < lookahead) && - (lookahead < ';' || '>' < lookahead) && - (lookahead < '[' || ']' < lookahead) && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(958); END_STATE(); case 643: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '#') ADVANCE(845); - if (lookahead == '%') ADVANCE(847); - if (lookahead == '/') ADVANCE(843); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); case 644: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '=') ADVANCE(575); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_2(lookahead)) ADVANCE(958); END_STATE(); case 645: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '=') ADVANCE(574); + if (lookahead == '#') ADVANCE(849); + if (lookahead == '%') ADVANCE(851); + if (lookahead == '/') ADVANCE(847); + if (lookahead == '=') ADVANCE(578); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(961); END_STATE(); case 646: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '#') ADVANCE(848); + if (lookahead == '%') ADVANCE(850); + if (lookahead == '/') ADVANCE(846); END_STATE(); case 647: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '%') ADVANCE(841); - if (lookahead == '=') ADVANCE(577); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_3(lookahead)) ADVANCE(958); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '=') ADVANCE(578); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); case 648: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '%') ADVANCE(840); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '=') ADVANCE(577); END_STATE(); case 649: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(577); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_2(lookahead)) ADVANCE(958); END_STATE(); case 650: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(576); + if (lookahead == '%') ADVANCE(844); + if (lookahead == '=') ADVANCE(580); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); case 651: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(579); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_2(lookahead)) ADVANCE(958); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '%') ADVANCE(843); END_STATE(); case 652: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(578); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(580); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); case 653: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(579); END_STATE(); case 654: - ACCEPT_TOKEN(anon_sym_LPAREN); - if (lookahead == '(') ADVANCE(551); + ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(582); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); case 655: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(581); END_STATE(); case 656: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 657: + ACCEPT_TOKEN(anon_sym_LPAREN); + if (lookahead == '(') ADVANCE(554); + END_STATE(); + case 658: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 659: ACCEPT_TOKEN(aux_sym__c_word_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(656); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(659); END_STATE(); - case 657: + case 660: ACCEPT_TOKEN(anon_sym_esac); END_STATE(); - case 658: + case 661: ACCEPT_TOKEN(anon_sym_esac); - if (lookahead == '\\') ADVANCE(517); + if (lookahead == '\\') ADVANCE(521); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); - if (!sym_word_character_set_4(lookahead)) ADVANCE(958); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(871); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); - case 659: + case 662: ACCEPT_TOKEN(anon_sym_esac); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); - case 660: + case 663: ACCEPT_TOKEN(anon_sym_esac); - if (lookahead == '\\') ADVANCE(16); + if (lookahead == '\\') ADVANCE(17); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (!sym_word_character_set_4(lookahead)) ADVANCE(958); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); - case 661: + case 664: ACCEPT_TOKEN(anon_sym_esac); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); - case 662: + case 665: ACCEPT_TOKEN(anon_sym_SEMI_SEMI); END_STATE(); - case 663: + case 666: ACCEPT_TOKEN(anon_sym_SEMI_SEMI); - if (lookahead == '&') ADVANCE(665); - END_STATE(); - case 664: - ACCEPT_TOKEN(anon_sym_SEMI_AMP); - END_STATE(); - case 665: - ACCEPT_TOKEN(anon_sym_SEMI_SEMI_AMP); - END_STATE(); - case 666: - ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '&') ADVANCE(668); END_STATE(); case 667: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_SEMI_AMP); END_STATE(); case 668: - ACCEPT_TOKEN(anon_sym_PIPE_AMP); + ACCEPT_TOKEN(anon_sym_SEMI_SEMI_AMP); END_STATE(); case 669: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 670: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(606); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_2(lookahead)) ADVANCE(958); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 671: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(605); + ACCEPT_TOKEN(anon_sym_PIPE_AMP); END_STATE(); case 672: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); case 673: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(609); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); case 674: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') ADVANCE(676); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(608); END_STATE(); case 675: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); case 676: - ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 677: - ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '[') ADVANCE(679); END_STATE(); case 678: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 679: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); END_STATE(); case 680: - ACCEPT_TOKEN(anon_sym_AMP_GT); - if (lookahead == '>') ADVANCE(681); + ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); END_STATE(); case 681: - ACCEPT_TOKEN(anon_sym_AMP_GT_GT); + ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); case 682: - ACCEPT_TOKEN(anon_sym_LT_AMP); - if (lookahead == '-') ADVANCE(685); + ACCEPT_TOKEN(anon_sym_EQ_TILDE); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); case 683: - ACCEPT_TOKEN(anon_sym_GT_AMP); - if (lookahead == '-') ADVANCE(686); + ACCEPT_TOKEN(anon_sym_AMP_GT); + if (lookahead == '>') ADVANCE(684); END_STATE(); case 684: - ACCEPT_TOKEN(anon_sym_GT_PIPE); + ACCEPT_TOKEN(anon_sym_AMP_GT_GT); END_STATE(); case 685: - ACCEPT_TOKEN(anon_sym_LT_AMP_DASH); + ACCEPT_TOKEN(anon_sym_LT_AMP); + if (lookahead == '-') ADVANCE(688); END_STATE(); case 686: - ACCEPT_TOKEN(anon_sym_GT_AMP_DASH); + ACCEPT_TOKEN(anon_sym_GT_AMP); + if (lookahead == '-') ADVANCE(689); END_STATE(); case 687: - ACCEPT_TOKEN(anon_sym_LT_LT_DASH); + ACCEPT_TOKEN(anon_sym_GT_PIPE); END_STATE(); case 688: - ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(688); - if (lookahead == '+') ADVANCE(771); - if (lookahead == '-') ADVANCE(769); - if (lookahead == '\\') ADVANCE(421); - if (lookahead == '~') ADVANCE(772); + ACCEPT_TOKEN(anon_sym_LT_AMP_DASH); END_STATE(); case 689: - ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(689); - if (lookahead == '\\') ADVANCE(355); + ACCEPT_TOKEN(anon_sym_GT_AMP_DASH); END_STATE(); case 690: - ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(690); + ACCEPT_TOKEN(anon_sym_LT_LT_DASH); END_STATE(); case 691: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(691); - if (lookahead == '\\') ADVANCE(427); + if (lookahead == '+') ADVANCE(774); + if (lookahead == '-') ADVANCE(772); + if (lookahead == '\\') ADVANCE(308); + if (lookahead == '~') ADVANCE(775); END_STATE(); case 692: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(692); - if (lookahead == '\\') ADVANCE(373); + if (lookahead == '\\') ADVANCE(14); END_STATE(); case 693: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(693); - if (lookahead == '\\') ADVANCE(357); END_STATE(); case 694: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(694); - if (lookahead == '\\') ADVANCE(485); + if (lookahead == '\\') ADVANCE(317); END_STATE(); case 695: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(695); - if (lookahead == '\\') ADVANCE(374); + if (lookahead == '\\') ADVANCE(80); END_STATE(); case 696: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(696); - if (lookahead == '\\') ADVANCE(358); + if (lookahead == '\\') ADVANCE(27); END_STATE(); case 697: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(697); - if (lookahead == '\\') ADVANCE(430); + if (lookahead == '\\') ADVANCE(318); END_STATE(); case 698: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(698); - if (lookahead == '\\') ADVANCE(416); + if (lookahead == '\\') ADVANCE(184); END_STATE(); case 699: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(699); - if (lookahead == '\\') ADVANCE(389); + if (lookahead == '\\') ADVANCE(153); END_STATE(); case 700: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(700); - if (lookahead == '\\') ADVANCE(431); + if (lookahead == '\\') ADVANCE(322); END_STATE(); case 701: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(701); - if (lookahead == '\\') ADVANCE(398); + if (lookahead == '\\') ADVANCE(83); END_STATE(); case 702: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(702); - if (lookahead == '\\') ADVANCE(359); + if (lookahead == '\\') ADVANCE(30); END_STATE(); case 703: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(703); - if (lookahead == '\\') ADVANCE(432); + if (lookahead == '\\') ADVANCE(323); END_STATE(); case 704: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(704); - if (lookahead == '\\') ADVANCE(375); + if (lookahead == '\\') ADVANCE(186); END_STATE(); case 705: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(705); - if (lookahead == '\\') ADVANCE(390); + if (lookahead == '\\') ADVANCE(156); END_STATE(); case 706: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(706); - if (lookahead == '\\') ADVANCE(433); + if (lookahead == '\\') ADVANCE(324); END_STATE(); case 707: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(707); - if (lookahead == '\\') ADVANCE(376); + if (lookahead == '\\') ADVANCE(94); END_STATE(); case 708: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(708); - if (lookahead == '\\') ADVANCE(404); + if (lookahead == '\\') ADVANCE(203); END_STATE(); case 709: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(709); - if (lookahead == '\\') ADVANCE(434); + if (lookahead == '\\') ADVANCE(325); END_STATE(); case 710: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(710); - if (lookahead == '\\') ADVANCE(406); + if (lookahead == '\\') ADVANCE(212); END_STATE(); case 711: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(711); - if (lookahead == '\\') ADVANCE(391); + if (lookahead == '\\') ADVANCE(33); END_STATE(); case 712: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(712); - if (lookahead == '\\') ADVANCE(435); + if (lookahead == '\\') ADVANCE(326); END_STATE(); case 713: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(713); - if (lookahead == '\\') ADVANCE(399); + if (lookahead == '\\') ADVANCE(98); END_STATE(); case 714: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(714); - if (lookahead == '\\') ADVANCE(408); + if (lookahead == '\\') ADVANCE(216); END_STATE(); case 715: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(715); - if (lookahead == '\\') ADVANCE(436); + if (lookahead == '\\') ADVANCE(327); END_STATE(); case 716: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(716); - if (lookahead == '\\') ADVANCE(409); + if (lookahead == '\\') ADVANCE(219); END_STATE(); case 717: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(717); - if (lookahead == '\\') ADVANCE(360); + if (lookahead == '\\') ADVANCE(159); END_STATE(); case 718: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(718); - if (lookahead == '\\') ADVANCE(437); + if (lookahead == '\\') ADVANCE(328); END_STATE(); case 719: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(719); - if (lookahead == '\\') ADVANCE(400); + if (lookahead == '\\') ADVANCE(188); END_STATE(); case 720: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(720); - if (lookahead == '\\') ADVANCE(410); + if (lookahead == '\\') ADVANCE(37); END_STATE(); case 721: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(721); - if (lookahead == '\\') ADVANCE(512); + if (lookahead == '\\') ADVANCE(329); END_STATE(); case 722: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(722); - if (lookahead == '\\') ADVANCE(378); + if (lookahead == '\\') ADVANCE(191); END_STATE(); case 723: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(723); - if (lookahead == '\\') ADVANCE(361); + if (lookahead == '\\') ADVANCE(223); END_STATE(); case 724: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(724); - if (lookahead == '\\') ADVANCE(440); + if (lookahead == '\\') ADVANCE(399); END_STATE(); case 725: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(725); - if (lookahead == '\\') ADVANCE(401); + if (lookahead == '\\') ADVANCE(108); END_STATE(); case 726: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(726); - if (lookahead == '\\') ADVANCE(362); + if (lookahead == '\\') ADVANCE(43); END_STATE(); case 727: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(727); - if (lookahead == '\\') ADVANCE(513); + if (lookahead == '\\') ADVANCE(332); END_STATE(); case 728: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(728); - if (lookahead == '\\') ADVANCE(407); + if (lookahead == '\\') ADVANCE(196); END_STATE(); case 729: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(729); - if (lookahead == '\\') ADVANCE(411); + if (lookahead == '\\') ADVANCE(45); END_STATE(); case 730: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(730); - if (lookahead == '\\') ADVANCE(514); + if (lookahead == '\\') ADVANCE(400); END_STATE(); case 731: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(731); - if (lookahead == '\\') ADVANCE(383); + if (lookahead == '\\') ADVANCE(214); END_STATE(); case 732: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(732); - if (lookahead == '\\') ADVANCE(392); + if (lookahead == '\\') ADVANCE(166); END_STATE(); case 733: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(733); - if (lookahead == '\\') ADVANCE(442); + if (lookahead == '\\') ADVANCE(334); END_STATE(); case 734: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(734); - if (lookahead == '\\') ADVANCE(363); + if (lookahead == '\\') ADVANCE(128); END_STATE(); case 735: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(735); - if (lookahead == '\\') ADVANCE(487); + if (lookahead == '\\') ADVANCE(48); END_STATE(); case 736: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(736); - if (lookahead == '\\') ADVANCE(412); + if (lookahead == '\\') ADVANCE(401); END_STATE(); case 737: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(737); - if (lookahead == '\\') ADVANCE(488); + if (lookahead == '\\') ADVANCE(227); END_STATE(); case 738: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(738); - if (lookahead == '\\') ADVANCE(405); + if (lookahead == '\\') ADVANCE(337); END_STATE(); case 739: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(739); - if (lookahead == '\\') ADVANCE(489); + if (lookahead == '\\') ADVANCE(208); END_STATE(); case 740: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(740); - if (lookahead == '\\') ADVANCE(393); + if (lookahead == '\\') ADVANCE(338); END_STATE(); case 741: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(741); - if (lookahead == '\\') ADVANCE(490); + if (lookahead == '\\') ADVANCE(168); END_STATE(); case 742: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(742); - if (lookahead == '\\') ADVANCE(366); + if (lookahead == '\\') ADVANCE(340); END_STATE(); case 743: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(743); - if (lookahead == '\\') ADVANCE(493); + if (lookahead == '\\') ADVANCE(229); END_STATE(); case 744: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(744); - if (lookahead == '\\') ADVANCE(414); + if (lookahead == '\\') ADVANCE(342); END_STATE(); case 745: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(745); - if (lookahead == '\\') ADVANCE(491); + if (lookahead == '\\') ADVANCE(57); END_STATE(); case 746: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(746); - if (lookahead == '\\') ADVANCE(395); + if (lookahead == '\\') ADVANCE(343); END_STATE(); case 747: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(747); - if (lookahead == '\\') ADVANCE(494); + if (lookahead == '\\') ADVANCE(234); END_STATE(); case 748: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(748); - if (lookahead == '\\') ADVANCE(377); + if (lookahead == '\\') ADVANCE(345); END_STATE(); case 749: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(749); - if (lookahead == '\\') ADVANCE(506); + if (lookahead == '\\') ADVANCE(175); END_STATE(); case 750: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(750); - if (lookahead == '\\') ADVANCE(381); + if (lookahead == '\\') ADVANCE(346); END_STATE(); case 751: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(751); - if (lookahead == '\\') ADVANCE(492); + if (lookahead == '\\') ADVANCE(101); END_STATE(); case 752: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(752); - if (lookahead == '\\') ADVANCE(496); + if (lookahead == '\\') ADVANCE(348); END_STATE(); case 753: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(753); - if (lookahead == '\\') ADVANCE(507); + if (lookahead == '\\') ADVANCE(112); END_STATE(); case 754: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(754); - if (lookahead == '\\') ADVANCE(508); + if (lookahead == '\\') ADVANCE(349); END_STATE(); case 755: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(755); - if (lookahead == '\\') ADVANCE(451); + if (lookahead == '\\') ADVANCE(350); END_STATE(); case 756: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(756); - if (lookahead == '\\') ADVANCE(497); + if (lookahead == '\\') ADVANCE(353); END_STATE(); case 757: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(757); - if (lookahead == '\\') ADVANCE(459); + if (lookahead == '\\') ADVANCE(354); END_STATE(); case 758: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(758); - if (lookahead == '\\') ADVANCE(503); + if (lookahead == '\\') ADVANCE(359); END_STATE(); case 759: - ACCEPT_TOKEN(anon_sym_LT_LT_LT); + ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); + if (lookahead == '\n') ADVANCE(759); + if (lookahead == '\\') ADVANCE(370); END_STATE(); case 760: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); + if (lookahead == '\n') ADVANCE(760); + if (lookahead == '\\') ADVANCE(373); END_STATE(); case 761: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); + if (lookahead == '\n') ADVANCE(761); + if (lookahead == '\\') ADVANCE(383); END_STATE(); case 762: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_LT_LT_LT); END_STATE(); case 763: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '+') ADVANCE(835); - if (lookahead == '-') ADVANCE(832); - if (lookahead == '=') ADVANCE(829); - if (lookahead == '?') ADVANCE(839); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_2(lookahead)) ADVANCE(958); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 764: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '+') ADVANCE(834); - if (lookahead == '-') ADVANCE(831); - if (lookahead == '=') ADVANCE(828); - if (lookahead == '?') ADVANCE(838); + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); case 765: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); END_STATE(); case 766: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '+') ADVANCE(838); + if (lookahead == '-') ADVANCE(835); + if (lookahead == '=') ADVANCE(832); + if (lookahead == '?') ADVANCE(842); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); case 767: - ACCEPT_TOKEN(anon_sym_DASH_DASH2); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '+') ADVANCE(837); + if (lookahead == '-') ADVANCE(834); + if (lookahead == '=') ADVANCE(831); + if (lookahead == '?') ADVANCE(841); END_STATE(); case 768: - ACCEPT_TOKEN(anon_sym_DASH2); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); case 769: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(767); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); END_STATE(); case 770: - ACCEPT_TOKEN(anon_sym_PLUS2); + ACCEPT_TOKEN(anon_sym_DASH_DASH2); END_STATE(); case 771: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(766); + ACCEPT_TOKEN(anon_sym_DASH2); END_STATE(); case 772: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(770); END_STATE(); case 773: - ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN_LPAREN); + ACCEPT_TOKEN(anon_sym_PLUS2); END_STATE(); case 774: - ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACK); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '+') ADVANCE(769); END_STATE(); case 775: - ACCEPT_TOKEN(aux_sym_brace_expression_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(775); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 776: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN_LPAREN); END_STATE(); case 777: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACK); END_STATE(); case 778: - ACCEPT_TOKEN(anon_sym_RBRACE2); + ACCEPT_TOKEN(aux_sym_brace_expression_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(778); END_STATE(); case 779: - ACCEPT_TOKEN(aux_sym_concatenation_token1); + ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 780: - ACCEPT_TOKEN(anon_sym_DOLLAR); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); case 781: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '\'') ADVANCE(330); - if (lookahead == '(') ADVANCE(854); - if (lookahead == '[') ADVANCE(774); - if (lookahead == '`') ADVANCE(857); - if (lookahead == '{') ADVANCE(817); + ACCEPT_TOKEN(anon_sym_RBRACE2); END_STATE(); case 782: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '\'') ADVANCE(330); - if (lookahead == '(') ADVANCE(853); - if (lookahead == '`') ADVANCE(857); - if (lookahead == '{') ADVANCE(817); + ACCEPT_TOKEN(aux_sym_concatenation_token1); END_STATE(); case 783: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') ADVANCE(854); - if (lookahead == '[') ADVANCE(774); - if (lookahead == '`') ADVANCE(857); - if (lookahead == '{') ADVANCE(817); END_STATE(); case 784: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') ADVANCE(853); - if (lookahead == '`') ADVANCE(857); + if (lookahead == '\'') ADVANCE(495); + if (lookahead == '(') ADVANCE(857); + if (lookahead == '[') ADVANCE(777); + if (lookahead == '`') ADVANCE(860); + if (lookahead == '{') ADVANCE(820); END_STATE(); case 785: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') ADVANCE(853); - if (lookahead == '`') ADVANCE(857); - if (lookahead == '{') ADVANCE(817); + if (lookahead == '\'') ADVANCE(495); + if (lookahead == '(') ADVANCE(856); + if (lookahead == '`') ADVANCE(860); + if (lookahead == '{') ADVANCE(820); END_STATE(); case 786: - ACCEPT_TOKEN(sym__special_character); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '(') ADVANCE(857); + if (lookahead == '[') ADVANCE(777); + if (lookahead == '`') ADVANCE(860); + if (lookahead == '{') ADVANCE(820); END_STATE(); case 787: - ACCEPT_TOKEN(sym__special_character); - if (lookahead == ']') ADVANCE(677); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '(') ADVANCE(856); + if (lookahead == '`') ADVANCE(860); END_STATE(); case 788: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '(') ADVANCE(856); + if (lookahead == '`') ADVANCE(860); + if (lookahead == '{') ADVANCE(820); END_STATE(); case 789: + ACCEPT_TOKEN(sym__special_character); + END_STATE(); + case 790: + ACCEPT_TOKEN(sym__special_character); + if (lookahead == ']') ADVANCE(680); + END_STATE(); + case 791: + ACCEPT_TOKEN(anon_sym_DQUOTE); + END_STATE(); + case 792: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '\n') ADVANCE(795); - if (lookahead == '\\') ADVANCE(518); + if (lookahead == '\n') ADVANCE(798); + if (lookahead == '\\') ADVANCE(304); if (lookahead != 0 && lookahead != '\r' && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(798); + lookahead != '`') ADVANCE(801); END_STATE(); - case 790: + case 793: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '\n') ADVANCE(793); - if (lookahead == '\\') ADVANCE(518); + if (lookahead == '\n') ADVANCE(796); + if (lookahead == '\\') ADVANCE(304); if (lookahead != 0 && lookahead != '\r' && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(798); + lookahead != '`') ADVANCE(801); END_STATE(); - case 791: + case 794: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '\n') ADVANCE(794); - if (lookahead == '\\') ADVANCE(518); + if (lookahead == '\n') ADVANCE(797); + if (lookahead == '\\') ADVANCE(304); if (lookahead != 0 && lookahead != '\r' && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(798); + lookahead != '`') ADVANCE(801); END_STATE(); - case 792: + case 795: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '\n') ADVANCE(798); - if (lookahead == '\\') ADVANCE(860); + if (lookahead == '\n') ADVANCE(801); + if (lookahead == '\\') ADVANCE(863); if (lookahead != 0 && lookahead != '\r' && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(797); + lookahead != '`') ADVANCE(800); END_STATE(); - case 793: + case 796: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(386); - if (lookahead == '_') ADVANCE(948); + ADVANCE_MAP( + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '*', 640, + '-', 635, + '0', 948, + '?', 763, + '@', 944, + '\\', 135, + '_', 951, + ); if (lookahead == '\n' || - lookahead == '\r') SKIP(287) + lookahead == '\r') SKIP(452); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(793); + lookahead == ' ') ADVANCE(796); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && - lookahead != '`') ADVANCE(798); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(801); END_STATE(); - case 794: + case 797: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '!') ADVANCE(669); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(387); - if (lookahead == '_') ADVANCE(948); + ADVANCE_MAP( + '!', 672, + '#', 819, + '$', 783, + '*', 640, + '-', 635, + '0', 948, + '?', 763, + '@', 944, + '\\', 136, + '_', 951, + ); if (lookahead == '\n' || - lookahead == '\r') SKIP(290) + lookahead == '\r') SKIP(455); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(794); + lookahead == ' ') ADVANCE(797); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && - lookahead != '"' && - lookahead != '`') ADVANCE(798); + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '_' || 'z' < lookahead)) ADVANCE(801); END_STATE(); - case 795: + case 798: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(797); - if (lookahead == '$') ADVANCE(783); - if (lookahead == '(') ADVANCE(796); - if (lookahead == '\\') ADVANCE(477); - if (lookahead == '`') ADVANCE(855); + if (lookahead == '"') ADVANCE(791); + if (lookahead == '#') ADVANCE(800); + if (lookahead == '$') ADVANCE(786); + if (lookahead == '(') ADVANCE(799); + if (lookahead == '\\') ADVANCE(303); + if (lookahead == '`') ADVANCE(858); if (lookahead == '\n' || - lookahead == '\r') SKIP(318) + lookahead == '\r') SKIP(483); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(795); - if (lookahead != 0) ADVANCE(798); + lookahead == ' ') ADVANCE(798); + if (lookahead != 0) ADVANCE(801); END_STATE(); - case 796: + case 799: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '(') ADVANCE(551); - if (lookahead == '\\') ADVANCE(518); + if (lookahead == '(') ADVANCE(554); + if (lookahead == '\\') ADVANCE(304); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(798); + lookahead != '`') ADVANCE(801); END_STATE(); - case 797: + case 800: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '\\') ADVANCE(860); + if (lookahead == '\\') ADVANCE(863); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(797); + lookahead != '`') ADVANCE(800); END_STATE(); - case 798: + case 801: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '\\') ADVANCE(518); + if (lookahead == '\\') ADVANCE(304); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(798); + lookahead != '`') ADVANCE(801); END_STATE(); - case 799: + case 802: ACCEPT_TOKEN(sym_string_content); + if (lookahead == '\\') ADVANCE(304); if (lookahead != 0 && lookahead != '\r' && lookahead != '"' && lookahead != '$' && - lookahead != '\\' && - lookahead != '`') ADVANCE(798); - if (lookahead == '\\') ADVANCE(518); + lookahead != '`') ADVANCE(801); END_STATE(); - case 800: + case 803: ACCEPT_TOKEN(sym_raw_string); END_STATE(); - case 801: + case 804: ACCEPT_TOKEN(sym_ansi_c_string); END_STATE(); - case 802: + case 805: ACCEPT_TOKEN(sym_ansi_c_string); - if (lookahead == '\'') ADVANCE(801); - if (lookahead == '\\') ADVANCE(331); - if (lookahead != 0) ADVANCE(330); + if (lookahead == '\'') ADVANCE(804); + if (lookahead == '\\') ADVANCE(496); + if (lookahead != 0) ADVANCE(495); END_STATE(); - case 803: + case 806: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(814); - if (lookahead == '\\') ADVANCE(517); - if (lookahead == 'x') ADVANCE(957); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (!sym_word_character_set_5(lookahead)) ADVANCE(958); + if (lookahead == '#') ADVANCE(817); + if (lookahead == '\\') ADVANCE(521); + if (lookahead == 'x') ADVANCE(960); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(808); + if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(961); END_STATE(); - case 804: + case 807: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(814); - if (lookahead == '\\') ADVANCE(517); - if (lookahead == 'x') ADVANCE(867); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(806); + if (lookahead == '#') ADVANCE(817); + if (lookahead == '\\') ADVANCE(521); + if (lookahead == 'x') ADVANCE(870); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(809); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); - if (!sym_word_character_set_6(lookahead)) ADVANCE(958); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(871); + if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(961); END_STATE(); - case 805: + case 808: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(814); - if (lookahead == '\\') ADVANCE(517); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (!sym_word_character_set_5(lookahead)) ADVANCE(958); + if (lookahead == '#') ADVANCE(817); + if (lookahead == '\\') ADVANCE(521); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(808); + if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(961); END_STATE(); - case 806: + case 809: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(814); - if (lookahead == '\\') ADVANCE(517); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(806); + if (lookahead == '#') ADVANCE(817); + if (lookahead == '\\') ADVANCE(521); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(809); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); - if (!sym_word_character_set_6(lookahead)) ADVANCE(958); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(871); + if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(961); END_STATE(); - case 807: + case 810: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(814); - if (lookahead == '\\') ADVANCE(16); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(807); + if (lookahead == '#') ADVANCE(817); + if (lookahead == '\\') ADVANCE(17); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (!sym_word_character_set_6(lookahead)) ADVANCE(958); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(961); END_STATE(); - case 808: + case 811: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(815); - if (lookahead == 'x') ADVANCE(878); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (lookahead == '#') ADVANCE(818); + if (lookahead == 'x') ADVANCE(881); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(813); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); - case 809: + case 812: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(815); - if (lookahead == 'x') ADVANCE(516); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(811); + if (lookahead == '#') ADVANCE(818); + if (lookahead == 'x') ADVANCE(520); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(814); END_STATE(); - case 810: + case 813: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(815); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (lookahead == '#') ADVANCE(818); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(813); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); - case 811: + case 814: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(815); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(811); + if (lookahead == '#') ADVANCE(818); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(814); END_STATE(); - case 812: + case 815: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '\\') ADVANCE(517); + if (lookahead == '\\') ADVANCE(521); if (('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(812); - if (!sym_word_character_set_4(lookahead)) ADVANCE(958); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); - case 813: + case 816: ACCEPT_TOKEN(aux_sym_number_token1); if (('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(813); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); END_STATE(); - case 814: + case 817: ACCEPT_TOKEN(aux_sym_number_token2); - if (lookahead == '\\') ADVANCE(517); + if (lookahead == '\\') ADVANCE(521); if (('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(812); - if (!sym_word_character_set_4(lookahead)) ADVANCE(958); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); - case 815: + case 818: ACCEPT_TOKEN(aux_sym_number_token2); if (('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(813); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); END_STATE(); - case 816: + case 819: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 817: + case 820: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); END_STATE(); - case 818: + case 821: ACCEPT_TOKEN(anon_sym_RBRACE3); END_STATE(); - case 819: + case 822: ACCEPT_TOKEN(anon_sym_BANG2); END_STATE(); - case 820: + case 823: ACCEPT_TOKEN(anon_sym_BANG2); - if (lookahead == '=') ADVANCE(606); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_2(lookahead)) ADVANCE(958); + if (lookahead == '=') ADVANCE(609); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); - case 821: + case 824: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 822: + case 825: ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); - case 823: + case 826: ACCEPT_TOKEN(anon_sym_STAR2); END_STATE(); - case 824: + case 827: ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(651); - if (lookahead == '=') ADVANCE(573); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_2(lookahead)) ADVANCE(958); + if (lookahead == '*') ADVANCE(654); + if (lookahead == '=') ADVANCE(576); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); - case 825: + case 828: ACCEPT_TOKEN(anon_sym_POUND2); END_STATE(); - case 826: + case 829: ACCEPT_TOKEN(anon_sym_EQ2); END_STATE(); - case 827: + case 830: ACCEPT_TOKEN(anon_sym_EQ2); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); - case 828: + case 831: ACCEPT_TOKEN(anon_sym_COLON_EQ); END_STATE(); - case 829: + case 832: ACCEPT_TOKEN(anon_sym_COLON_EQ); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); - case 830: + case 833: ACCEPT_TOKEN(anon_sym_DASH3); END_STATE(); - case 831: + case 834: ACCEPT_TOKEN(anon_sym_COLON_DASH); END_STATE(); - case 832: + case 835: ACCEPT_TOKEN(anon_sym_COLON_DASH); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); - case 833: + case 836: ACCEPT_TOKEN(anon_sym_PLUS3); END_STATE(); - case 834: + case 837: ACCEPT_TOKEN(anon_sym_COLON_PLUS); END_STATE(); - case 835: + case 838: ACCEPT_TOKEN(anon_sym_COLON_PLUS); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); - case 836: + case 839: ACCEPT_TOKEN(anon_sym_QMARK2); END_STATE(); - case 837: + case 840: ACCEPT_TOKEN(anon_sym_QMARK2); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); - case 838: + case 841: ACCEPT_TOKEN(anon_sym_COLON_QMARK); END_STATE(); - case 839: + case 842: ACCEPT_TOKEN(anon_sym_COLON_QMARK); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); - case 840: + case 843: ACCEPT_TOKEN(anon_sym_PERCENT_PERCENT); END_STATE(); - case 841: + case 844: ACCEPT_TOKEN(anon_sym_PERCENT_PERCENT); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); - case 842: + case 845: ACCEPT_TOKEN(aux_sym__expansion_regex_token1); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(842); + lookahead == ' ') ADVANCE(845); END_STATE(); - case 843: + case 846: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); - case 844: + case 847: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); - case 845: + case 848: ACCEPT_TOKEN(anon_sym_SLASH_POUND); END_STATE(); - case 846: + case 849: ACCEPT_TOKEN(anon_sym_SLASH_POUND); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); - case 847: + case 850: ACCEPT_TOKEN(anon_sym_SLASH_PERCENT); END_STATE(); - case 848: + case 851: ACCEPT_TOKEN(anon_sym_SLASH_PERCENT); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); - case 849: + case 852: ACCEPT_TOKEN(anon_sym_COMMA_COMMA); END_STATE(); - case 850: + case 853: ACCEPT_TOKEN(anon_sym_COMMA_COMMA); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); - case 851: + case 854: ACCEPT_TOKEN(anon_sym_CARET_CARET); END_STATE(); - case 852: + case 855: ACCEPT_TOKEN(anon_sym_CARET_CARET); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); - case 853: + case 856: ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); END_STATE(); - case 854: + case 857: ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); - if (lookahead == '(') ADVANCE(773); + if (lookahead == '(') ADVANCE(776); END_STATE(); - case 855: + case 858: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 856: + case 859: ACCEPT_TOKEN(anon_sym_BQUOTE); - if (lookahead == '`') ADVANCE(779); + if (lookahead == '`') ADVANCE(782); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(348); + lookahead == ' ') ADVANCE(513); END_STATE(); - case 857: + case 860: ACCEPT_TOKEN(anon_sym_DOLLAR_BQUOTE); END_STATE(); - case 858: + case 861: ACCEPT_TOKEN(anon_sym_LT_LPAREN); END_STATE(); - case 859: + case 862: ACCEPT_TOKEN(anon_sym_GT_LPAREN); END_STATE(); - case 860: + case 863: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(798); - if (lookahead == '\r') ADVANCE(792); - if (lookahead != 0) ADVANCE(797); + if (lookahead == '\n') ADVANCE(801); + if (lookahead == '\r') ADVANCE(795); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 861: + case 864: ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(863); if (lookahead == '\t' || - (11 <= lookahead && lookahead <= '\r')) ADVANCE(862); + (0x0b <= lookahead && lookahead <= '\r')) ADVANCE(865); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(866); END_STATE(); - case 862: + case 865: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(862); + lookahead != '\n') ADVANCE(865); END_STATE(); - case 863: + case 866: ACCEPT_TOKEN(sym__comment_word); - if (lookahead == '\\') ADVANCE(861); - if (!sym_word_character_set_1(lookahead)) ADVANCE(863); + if (lookahead == '\\') ADVANCE(864); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(866); END_STATE(); - case 864: + case 867: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(517); - if (lookahead == 'a') ADVANCE(865); + if (lookahead == '\\') ADVANCE(521); + if (lookahead == 'a') ADVANCE(868); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(868); - if (!sym_word_character_set_4(lookahead)) ADVANCE(958); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(871); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); - case 865: + case 868: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(517); - if (lookahead == 'c') ADVANCE(658); + if (lookahead == '\\') ADVANCE(521); + if (lookahead == 'c') ADVANCE(661); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); - if (!sym_word_character_set_4(lookahead)) ADVANCE(958); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(871); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); - case 866: + case 869: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(517); - if (lookahead == 's') ADVANCE(864); + if (lookahead == '\\') ADVANCE(521); + if (lookahead == 's') ADVANCE(867); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); - if (!sym_word_character_set_4(lookahead)) ADVANCE(958); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(871); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); - case 867: + case 870: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(517); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(806); + if (lookahead == '\\') ADVANCE(521); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(809); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); - if (!sym_word_character_set_4(lookahead)) ADVANCE(958); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(871); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); - case 868: + case 871: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(517); + if (lookahead == '\\') ADVANCE(521); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(868); - if (!sym_word_character_set_4(lookahead)) ADVANCE(958); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(871); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); - case 869: + case 872: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(16); - if (lookahead == 'a') ADVANCE(870); + if (lookahead == '\\') ADVANCE(17); + if (lookahead == 'a') ADVANCE(873); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (!sym_word_character_set_4(lookahead)) ADVANCE(958); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); - case 870: + case 873: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(16); - if (lookahead == 'c') ADVANCE(660); + if (lookahead == '\\') ADVANCE(17); + if (lookahead == 'c') ADVANCE(663); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (!sym_word_character_set_4(lookahead)) ADVANCE(958); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); - case 871: + case 874: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(16); - if (lookahead == 's') ADVANCE(869); + if (lookahead == '\\') ADVANCE(17); + if (lookahead == 's') ADVANCE(872); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (!sym_word_character_set_4(lookahead)) ADVANCE(958); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); - case 872: + case 875: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(16); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(807); + if (lookahead == '\\') ADVANCE(17); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (!sym_word_character_set_4(lookahead)) ADVANCE(958); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); - case 873: + case 876: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(16); + if (lookahead == '\\') ADVANCE(17); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (!sym_word_character_set_4(lookahead)) ADVANCE(958); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); - case 874: + case 877: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 'a') ADVANCE(875); + if (lookahead == 'a') ADVANCE(878); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); - case 875: + case 878: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 'c') ADVANCE(661); + if (lookahead == 'c') ADVANCE(664); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); - case 876: + case 879: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 'n') ADVANCE(550); + if (lookahead == 'n') ADVANCE(553); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); - case 877: + case 880: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 's') ADVANCE(874); + if (lookahead == 's') ADVANCE(877); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); - case 878: + case 881: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(813); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); - case 879: + case 882: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); - END_STATE(); - case 880: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(689); - if (lookahead == '!') ADVANCE(670); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '%') ADVANCE(649); - if (lookahead == '&') ADVANCE(601); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '*') ADVANCE(638); - if (lookahead == '+') ADVANCE(630); - if (lookahead == '-') ADVANCE(633); - if (lookahead == '/') ADVANCE(644); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(607); - if (lookahead == '=') ADVANCE(560); - if (lookahead == '>') ADVANCE(616); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '\\') ADVANCE(355); - if (lookahead == '^') ADVANCE(596); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(592); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(12) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (lookahead != 0 && - (lookahead < '[' || '}' < lookahead)) ADVANCE(958); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); - case 881: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(692); - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(612); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(373); - if (lookahead == '_') ADVANCE(948); - if (lookahead == 'e') ADVANCE(877); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(150) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); - END_STATE(); - case 882: + case 883: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(693); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '=') ADVANCE(952); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '\\') ADVANCE(357); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == 'e') ADVANCE(871); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 692, + '!', 673, + '"', 791, + '#', 819, + '$', 784, + '%', 652, + '&', 604, + '\'', 494, + '(', 657, + ')', 658, + '*', 641, + '+', 633, + '-', 636, + '/', 647, + '0', 946, + ';', 558, + '<', 610, + '=', 563, + '>', 619, + '?', 764, + '@', 945, + '\\', 14, + '^', 599, + '_', 950, + '`', 858, + '|', 595, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(163) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + lookahead == ' ') SKIP(12); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); if (lookahead != 0 && - lookahead != ')' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(958); + (lookahead < ';' || '}' < lookahead)) ADVANCE(961); END_STATE(); - case 883: + case 884: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(695); - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(612); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(374); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 695, + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '&', 605, + '*', 640, + '-', 635, + '0', 948, + ';', 557, + '<', 615, + '>', 621, + '?', 763, + '@', 944, + '\\', 80, + '_', 951, + 'e', 880, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(175) + lookahead == ' ') SKIP(201); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); - case 884: + case 885: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(696); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '=') ADVANCE(952); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '\\') ADVANCE(358); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 696, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 605, + '\'', 494, + '(', 657, + '*', 643, + '-', 639, + '0', 946, + ';', 557, + '<', 612, + '=', 955, + '>', 620, + '?', 764, + '@', 945, + '\\', 27, + '_', 950, + '`', 858, + 'e', 874, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(176) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + lookahead == ' ') SKIP(220); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); if (lookahead != 0 && - lookahead != ')' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(958); + (lookahead < '&' || '*' < lookahead) && + (lookahead < ';' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(961); END_STATE(); - case 885: + case 886: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(698); - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(613); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(416); - if (lookahead == '_') ADVANCE(948); - if (lookahead == 'e') ADVANCE(877); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 698, + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '&', 605, + '*', 640, + '-', 635, + '0', 948, + ';', 557, + '<', 616, + '>', 621, + '?', 763, + '@', 944, + '\\', 184, + '_', 951, + 'e', 880, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(178) + lookahead == ' ') SKIP(238); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); - case 886: + case 887: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(699); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '=') ADVANCE(952); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '\\') ADVANCE(389); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == 'e') ADVANCE(871); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 699, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + ';', 557, + '<', 612, + '=', 955, + '>', 620, + '?', 764, + '@', 945, + '\\', 153, + '_', 950, + '`', 858, + 'e', 874, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(179) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + lookahead == ' ') SKIP(239); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); if (lookahead != 0 && - lookahead != ')' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(958); + (lookahead < '&' || '*' < lookahead) && + (lookahead < ';' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(961); END_STATE(); - case 887: + case 888: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(701); - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(613); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(398); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 701, + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '&', 605, + '*', 640, + '-', 635, + '0', 948, + ';', 557, + '<', 615, + '>', 621, + '?', 763, + '@', 944, + '\\', 83, + '_', 951, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(181) + lookahead == ' ') SKIP(241); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); - case 888: + case 889: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(702); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '=') ADVANCE(952); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '\\') ADVANCE(359); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 702, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 605, + '\'', 494, + '(', 657, + '*', 643, + '-', 639, + '0', 946, + ';', 557, + '<', 612, + '=', 955, + '>', 620, + '?', 764, + '@', 945, + '\\', 30, + '_', 950, + '`', 858, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(182) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + lookahead == ' ') SKIP(242); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); if (lookahead != 0 && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(958); + (lookahead < '&' || '*' < lookahead) && + (lookahead < ';' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(961); END_STATE(); - case 889: + case 890: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(704); - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(612); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(375); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 704, + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '&', 605, + '*', 640, + '-', 635, + '0', 948, + ';', 558, + '<', 615, + '>', 621, + '?', 763, + '@', 944, + '\\', 186, + '_', 951, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(184) + lookahead == ' ') SKIP(244); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); - case 890: + case 891: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(705); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '=') ADVANCE(952); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '\\') ADVANCE(390); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 705, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + ';', 557, + '<', 612, + '=', 955, + '>', 620, + '?', 764, + '@', 945, + '\\', 156, + '_', 950, + '`', 858, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(185) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + lookahead == ' ') SKIP(245); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); if (lookahead != 0 && - lookahead != ')' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(958); + (lookahead < '&' || '*' < lookahead) && + (lookahead < ';' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(961); END_STATE(); - case 891: + case 892: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(707); - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '&') ADVANCE(602); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(612); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(376); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 707, + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '&', 605, + '*', 640, + '-', 635, + '0', 948, + ';', 558, + '<', 615, + '>', 621, + '?', 763, + '@', 944, + '\\', 94, + '_', 951, + '`', 858, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(187) + lookahead == ' ') SKIP(247); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); - case 892: + case 893: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(708); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '=') ADVANCE(952); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '\\') ADVANCE(404); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 708, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 605, + '\'', 494, + '(', 657, + '*', 643, + '-', 639, + '0', 946, + ';', 558, + '<', 612, + '=', 955, + '>', 620, + '?', 764, + '@', 945, + '\\', 203, + '_', 950, + '`', 858, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(188) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + lookahead == ' ') SKIP(248); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); if (lookahead != 0 && - lookahead != ')' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(958); + (lookahead < '&' || '*' < lookahead) && + (lookahead < ';' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(961); END_STATE(); - case 893: + case 894: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(710); - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(612); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(406); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 710, + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '&', 605, + '*', 640, + '-', 635, + '0', 948, + ';', 557, + '<', 616, + '>', 621, + '?', 763, + '@', 944, + '\\', 212, + '_', 951, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(190) + lookahead == ' ') SKIP(250); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); - case 894: + case 895: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(711); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '=') ADVANCE(952); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '\\') ADVANCE(391); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 711, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 605, + '\'', 494, + '(', 657, + ')', 658, + '*', 643, + '-', 639, + '0', 946, + ';', 558, + '<', 612, + '=', 955, + '>', 620, + '?', 764, + '@', 945, + '\\', 33, + '_', 950, + '`', 858, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(191) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + lookahead == ' ') SKIP(251); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); if (lookahead != 0 && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(958); + (lookahead < ';' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(961); END_STATE(); - case 895: + case 896: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(713); - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(613); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(399); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 713, + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '&', 605, + ')', 658, + '*', 640, + '-', 635, + '0', 948, + ';', 558, + '<', 615, + '>', 621, + '?', 763, + '@', 944, + '\\', 98, + '_', 951, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(193) + lookahead == ' ') SKIP(253); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); - case 896: + case 897: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(714); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '=') ADVANCE(952); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '\\') ADVANCE(408); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 714, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + ';', 558, + '<', 612, + '=', 955, + '>', 620, + '?', 764, + '@', 945, + '\\', 216, + '_', 950, + '`', 858, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(194) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + lookahead == ' ') SKIP(254); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); if (lookahead != 0 && - lookahead != ')' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(958); + (lookahead < '&' || '*' < lookahead) && + (lookahead < ';' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(961); END_STATE(); - case 897: + case 898: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(716); - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(613); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(409); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 716, + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '&', 605, + '*', 640, + '-', 635, + '0', 948, + ';', 558, + '<', 616, + '>', 621, + '?', 763, + '@', 944, + '\\', 219, + '_', 951, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(196) + lookahead == ' ') SKIP(256); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); - case 898: + case 899: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(717); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '\\') ADVANCE(360); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == 'e') ADVANCE(871); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 717, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + ')', 658, + '*', 643, + '-', 639, + '0', 946, + ';', 558, + '<', 612, + '=', 955, + '>', 620, + '?', 764, + '@', 945, + '\\', 159, + '_', 950, + '`', 858, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(197) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + lookahead == ' ') SKIP(257); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); if (lookahead != 0 && - lookahead != ')' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(958); + (lookahead < ';' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(961); END_STATE(); - case 899: + case 900: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(719); - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '&') ADVANCE(602); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(613); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(400); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 719, + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '&', 605, + '*', 640, + '-', 635, + '0', 948, + ';', 558, + '<', 616, + '>', 621, + '?', 763, + '@', 944, + '\\', 188, + '_', 951, + '`', 858, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(199) + lookahead == ' ') SKIP(259); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); - case 900: + case 901: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(720); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(610); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '\\') ADVANCE(410); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == 'e') ADVANCE(871); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 720, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + ';', 557, + '<', 612, + '>', 620, + '?', 764, + '@', 945, + '\\', 37, + '_', 950, + '`', 858, + 'e', 874, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(200) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + lookahead == ' ') SKIP(260); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); if (lookahead != 0 && - lookahead != ')' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(958); + (lookahead < '&' || '*' < lookahead) && + (lookahead < '>' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(961); END_STATE(); - case 901: + case 902: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(722); - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == '<') ADVANCE(612); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(378); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 722, + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '&', 605, + ')', 658, + '*', 640, + '-', 635, + '0', 948, + ';', 558, + '<', 616, + '>', 621, + '?', 763, + '@', 944, + '\\', 191, + '_', 951, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(202) + lookahead == ' ') SKIP(262); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); - case 902: + case 903: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(723); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '\\') ADVANCE(361); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 723, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + ';', 557, + '<', 613, + '>', 620, + '?', 764, + '@', 945, + '\\', 223, + '_', 950, + '`', 858, + 'e', 874, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(203) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + lookahead == ' ') SKIP(263); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); if (lookahead != 0 && - lookahead != ')' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(958); + (lookahead < '&' || '*' < lookahead) && + (lookahead < '>' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(961); END_STATE(); - case 903: + case 904: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(725); - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == '<') ADVANCE(613); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(401); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 725, + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '&', 492, + '*', 640, + '-', 635, + '0', 948, + '<', 615, + '>', 621, + '?', 763, + '@', 944, + '\\', 108, + '_', 951, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(205) + lookahead == ' ') SKIP(265); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); - case 904: + case 905: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(726); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '\\') ADVANCE(362); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 726, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + ';', 557, + '<', 612, + '>', 620, + '?', 764, + '@', 945, + '\\', 43, + '_', 950, + '`', 858, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(206) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + lookahead == ' ') SKIP(266); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); if (lookahead != 0 && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(958); + (lookahead < '&' || '*' < lookahead) && + (lookahead < '>' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(961); END_STATE(); - case 905: + case 906: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(728); - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == '<') ADVANCE(611); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(354); + ADVANCE_MAP( + '\n', 728, + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '&', 492, + '*', 640, + '-', 635, + '0', 948, + '<', 616, + '>', 621, + '?', 763, + '@', 944, + '\\', 196, + '_', 951, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(208) + lookahead == ' ') SKIP(268); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); - case 906: + case 907: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(729); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(554); - if (lookahead == '<') ADVANCE(610); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '\\') ADVANCE(411); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 729, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + ')', 658, + '*', 643, + '-', 639, + '0', 946, + ';', 558, + '<', 612, + '>', 620, + '?', 764, + '@', 945, + '\\', 45, + '_', 950, + '`', 858, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(209) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + lookahead == ' ') SKIP(269); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); if (lookahead != 0 && - lookahead != ')' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(958); + (lookahead < '>' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(961); END_STATE(); - case 907: + case 908: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(731); - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '&') ADVANCE(599); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(383); - if (lookahead == '_') ADVANCE(948); - if (lookahead == 'i') ADVANCE(876); + ADVANCE_MAP( + '\n', 731, + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '&', 492, + '*', 640, + '-', 635, + '0', 948, + '<', 614, + '>', 621, + '?', 763, + '@', 944, + '\\', 214, + '_', 951, + '|', 519, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(211) + lookahead == ' ') SKIP(271); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); - END_STATE(); - case 908: - ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(732); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '\\') ADVANCE(392); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(212) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (lookahead != 0 && - lookahead != ')' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(958); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 909: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(734); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '=') ADVANCE(952); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '\\') ADVANCE(363); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 732, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + ';', 558, + '<', 612, + '>', 620, + '?', 764, + '@', 945, + '\\', 166, + '_', 950, + '`', 858, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(214) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + lookahead == ' ') SKIP(272); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); if (lookahead != 0 && - lookahead != ')' && - (lookahead < ';' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(958); + (lookahead < '&' || '*' < lookahead) && + (lookahead < '>' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(961); END_STATE(); case 910: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(736); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(610); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '\\') ADVANCE(412); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 734, + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '&', 602, + '*', 640, + '-', 635, + '0', 948, + ';', 558, + '?', 763, + '@', 944, + '\\', 128, + '_', 951, + 'i', 879, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(216) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (lookahead != 0 && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(958); + lookahead == ' ') SKIP(274); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 911: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(738); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(602); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(610); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '\\') ADVANCE(405); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 735, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 492, + '\'', 494, + '(', 657, + '*', 643, + '-', 639, + '0', 946, + '<', 612, + '=', 955, + '>', 620, + '?', 764, + '@', 945, + '\\', 48, + '_', 950, + '`', 858, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(218) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + lookahead == ' ') SKIP(275); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); if (lookahead != 0 && - lookahead != ')' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(958); + (lookahead < '&' || '*' < lookahead) && + (lookahead < ';' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(961); END_STATE(); case 912: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(740); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '=') ADVANCE(952); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '\\') ADVANCE(393); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 737, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + ';', 557, + '<', 613, + '>', 620, + '?', 764, + '@', 945, + '\\', 227, + '_', 950, + '`', 858, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(220) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + lookahead == ' ') SKIP(277); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); if (lookahead != 0 && - lookahead != ')' && - (lookahead < ';' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(958); + (lookahead < '&' || '*' < lookahead) && + (lookahead < '>' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(961); END_STATE(); case 913: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(742); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '\\') ADVANCE(366); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 739, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + ';', 558, + '<', 613, + '>', 620, + '?', 764, + '@', 945, + '\\', 208, + '_', 950, + '`', 858, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(222) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + lookahead == ' ') SKIP(279); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(958); + (lookahead < '&' || '*' < lookahead) && + (lookahead < '>' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(961); END_STATE(); case 914: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(744); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == '<') ADVANCE(610); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '\\') ADVANCE(414); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 741, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 492, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + '<', 612, + '=', 955, + '>', 620, + '?', 764, + '@', 945, + '\\', 168, + '_', 950, + '`', 858, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(224) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + lookahead == ' ') SKIP(281); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(958); + (lookahead < '&' || '*' < lookahead) && + (lookahead < ';' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(961); END_STATE(); case 915: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(746); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == '<') ADVANCE(608); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '\\') ADVANCE(395); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(354); + ADVANCE_MAP( + '\n', 743, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 605, + '\'', 494, + '(', 497, + ')', 658, + '*', 643, + '-', 639, + '0', 946, + ';', 558, + '<', 613, + '>', 620, + '?', 764, + '@', 945, + '\\', 229, + '_', 950, + '`', 858, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(226) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + lookahead == ' ') SKIP(283); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(958); + (lookahead < '>' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(961); END_STATE(); case 916: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(748); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(599); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == ';') ADVANCE(555); - if (lookahead == '<') ADVANCE(333); - if (lookahead == '>') ADVANCE(334); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '\\') ADVANCE(377); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); + ADVANCE_MAP( + '\n', 745, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 492, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + '<', 612, + '>', 620, + '?', 764, + '@', 945, + '\\', 57, + '_', 950, + '`', 858, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(228) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + lookahead == ' ') SKIP(285); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); if (lookahead != 0 && - lookahead != ')' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(958); + (lookahead < '&' || '*' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '>' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(961); END_STATE(); case 917: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\n') ADVANCE(750); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == '<') ADVANCE(333); - if (lookahead == '>') ADVANCE(334); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '\\') ADVANCE(381); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); + ADVANCE_MAP( + '\n', 747, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 492, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + '<', 613, + '>', 620, + '?', 764, + '@', 945, + '\\', 234, + '_', 950, + '`', 858, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(230) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + lookahead == ' ') SKIP(287); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && + (lookahead < '&' || '*' < lookahead) && lookahead != ';' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(958); + lookahead != '<' && + (lookahead < '>' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(961); END_STATE(); case 918: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(670); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '%') ADVANCE(649); - if (lookahead == '&') ADVANCE(601); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == '*') ADVANCE(638); - if (lookahead == '+') ADVANCE(630); - if (lookahead == '-') ADVANCE(633); - if (lookahead == '/') ADVANCE(644); - if (lookahead == '0') ADVANCE(943); - if (lookahead == '<') ADVANCE(607); - if (lookahead == '=') ADVANCE(560); - if (lookahead == '>') ADVANCE(616); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '\\') ADVANCE(356); - if (lookahead == ']') ADVANCE(675); - if (lookahead == '^') ADVANCE(596); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(592); + ADVANCE_MAP( + '\n', 749, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 492, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + '<', 611, + '>', 620, + '?', 764, + '@', 945, + '\\', 175, + '_', 950, + '`', 858, + '|', 519, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(240) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + lookahead == ' ') SKIP(289); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); if (lookahead != 0 && - lookahead != ')' && - (lookahead < ';' || '}' < lookahead)) ADVANCE(958); + (lookahead < '&' || '*' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '>' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(961); END_STATE(); case 919: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(346); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == '<') ADVANCE(608); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '\\') ADVANCE(372); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); + ADVANCE_MAP( + '\n', 751, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 602, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + ';', 558, + '<', 498, + '>', 499, + '?', 764, + '@', 945, + '\\', 101, + '_', 950, + '`', 858, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(247) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + lookahead == ' ') SKIP(291); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(958); + (lookahead < '&' || '*' < lookahead) && + (lookahead < '>' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(961); END_STATE(); case 920: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(654); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '=') ADVANCE(952); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '\\') ADVANCE(364); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '\n', 753, + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + '<', 498, + '>', 499, + '?', 764, + '@', 945, + '\\', 112, + '_', 950, + '`', 858, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(248) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + lookahead == ' ') SKIP(293); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); if (lookahead != 0 && - lookahead != ')' && - (lookahead < ';' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(958); + (lookahead < '&' || '*' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '>' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(961); END_STATE(); case 921: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '=') ADVANCE(952); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '\\') ADVANCE(394); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '!', 673, + '"', 791, + '#', 819, + '$', 784, + '%', 652, + '&', 604, + '\'', 494, + '(', 657, + '*', 641, + '+', 633, + '-', 636, + '/', 647, + '0', 946, + '<', 610, + '=', 563, + '>', 619, + '?', 764, + '@', 945, + '\\', 19, + ']', 678, + '^', 599, + '_', 950, + '`', 858, + '|', 595, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(249) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + lookahead == ' ') SKIP(404); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); if (lookahead != 0 && - lookahead != ')' && - (lookahead < ';' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(958); + (lookahead < ' ' || '+' < lookahead) && + (lookahead < ';' || '}' < lookahead)) ADVANCE(961); END_STATE(); case 922: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '\\') ADVANCE(365); - if (lookahead == ']') ADVANCE(675); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 511, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + '<', 611, + '>', 620, + '?', 764, + '@', 945, + '\\', 74, + '_', 950, + '`', 858, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(250) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + lookahead == ' ') SKIP(411); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); if (lookahead != 0 && - lookahead != ')' && + (lookahead < '&' || '*' < lookahead) && lookahead != ';' && - lookahead != '[' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(958); + lookahead != '<' && + (lookahead < '>' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(961); END_STATE(); case 923: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == '<') ADVANCE(609); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '\\') ADVANCE(368); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 492, + '\'', 494, + '(', 657, + '*', 643, + '-', 639, + '0', 946, + '<', 612, + '=', 955, + '>', 620, + '?', 764, + '@', 945, + '\\', 50, + '_', 950, + '`', 858, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(251) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + lookahead == ' ') SKIP(412); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(958); + (lookahead < '&' || '*' < lookahead) && + (lookahead < ';' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(961); END_STATE(); case 924: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == '<') ADVANCE(610); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '\\') ADVANCE(413); - if (lookahead == ']') ADVANCE(675); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 492, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + '<', 612, + '=', 955, + '>', 620, + '?', 764, + '@', 945, + '\\', 170, + '_', 950, + '`', 858, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(252) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + lookahead == ' ') SKIP(413); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); if (lookahead != 0 && - lookahead != ')' && - lookahead != ';' && - lookahead != '[' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(958); + (lookahead < '&' || '*' < lookahead) && + (lookahead < ';' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(961); END_STATE(); case 925: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == '<') ADVANCE(610); - if (lookahead == '>') ADVANCE(617); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '\\') ADVANCE(415); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 492, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + '<', 612, + '>', 620, + '?', 764, + '@', 945, + '\\', 55, + ']', 678, + '_', 950, + '`', 858, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(253) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + lookahead == ' ') SKIP(414); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); if (lookahead != 0 && - lookahead != ')' && + (lookahead < '&' || '*' < lookahead) && lookahead != ';' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(958); + lookahead != '<' && + (lookahead < '>' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(961); END_STATE(); case 926: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(672); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(781); - if (lookahead == '\'') ADVANCE(329); - if (lookahead == '(') ADVANCE(332); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '-') ADVANCE(636); - if (lookahead == '0') ADVANCE(943); - if (lookahead == '<') ADVANCE(333); - if (lookahead == '>') ADVANCE(334); - if (lookahead == '?') ADVANCE(761); - if (lookahead == '@') ADVANCE(942); - if (lookahead == '\\') ADVANCE(380); - if (lookahead == '_') ADVANCE(947); - if (lookahead == '`') ADVANCE(855); + ADVANCE_MAP( + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 492, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + '<', 612, + '>', 620, + '?', 764, + '@', 945, + '\\', 60, + '_', 950, + '`', 858, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(254) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(807); + lookahead == ' ') SKIP(415); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); if (lookahead != 0 && - lookahead != '&' && + (lookahead < '&' || '*' < lookahead) && lookahead != ';' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(958); + lookahead != '<' && + (lookahead < '>' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(961); END_STATE(); case 927: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(671); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '%') ADVANCE(650); - if (lookahead == '&') ADVANCE(600); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '*') ADVANCE(639); - if (lookahead == '+') ADVANCE(631); - if (lookahead == '-') ADVANCE(634); - if (lookahead == '/') ADVANCE(645); - if (lookahead == '0') ADVANCE(945); - if (lookahead == '<') ADVANCE(615); - if (lookahead == '=') ADVANCE(562); - if (lookahead == '>') ADVANCE(620); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(370); - if (lookahead == '^') ADVANCE(597); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(594); + ADVANCE_MAP( + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 492, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + '<', 613, + '>', 620, + '?', 764, + '@', 945, + '\\', 232, + ']', 678, + '_', 950, + '`', 858, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(265) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + lookahead == ' ') SKIP(416); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '>' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(961); END_STATE(); case 928: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(671); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '%') ADVANCE(650); - if (lookahead == '&') ADVANCE(600); - if (lookahead == ')') ADVANCE(337); - if (lookahead == '*') ADVANCE(639); - if (lookahead == '+') ADVANCE(631); - if (lookahead == '-') ADVANCE(634); - if (lookahead == '/') ADVANCE(645); - if (lookahead == '0') ADVANCE(945); - if (lookahead == '<') ADVANCE(615); - if (lookahead == '=') ADVANCE(562); - if (lookahead == '>') ADVANCE(620); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(397); - if (lookahead == '^') ADVANCE(597); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(594); + ADVANCE_MAP( + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '&', 492, + '\'', 494, + '(', 497, + '*', 643, + '-', 639, + '0', 946, + '<', 613, + '>', 620, + '?', 764, + '@', 945, + '\\', 236, + '_', 950, + '`', 858, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(266) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + lookahead == ' ') SKIP(417); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '>' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(961); END_STATE(); case 929: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(671); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '%') ADVANCE(650); - if (lookahead == '&') ADVANCE(600); - if (lookahead == '*') ADVANCE(639); - if (lookahead == '+') ADVANCE(631); - if (lookahead == '-') ADVANCE(634); - if (lookahead == '/') ADVANCE(645); - if (lookahead == '0') ADVANCE(945); - if (lookahead == ':') ADVANCE(762); - if (lookahead == '<') ADVANCE(615); - if (lookahead == '=') ADVANCE(562); - if (lookahead == '>') ADVANCE(620); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(369); - if (lookahead == '^') ADVANCE(597); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(594); + ADVANCE_MAP( + '!', 675, + '"', 791, + '#', 819, + '$', 784, + '\'', 494, + '(', 497, + ')', 658, + '*', 643, + '-', 639, + '0', 946, + '<', 498, + '>', 499, + '?', 764, + '@', 945, + '\\', 110, + '_', 950, + '`', 858, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(267) - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + lookahead == ' ') SKIP(418); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '>' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(961); END_STATE(); case 930: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(671); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '%') ADVANCE(650); - if (lookahead == '&') ADVANCE(600); - if (lookahead == '*') ADVANCE(639); - if (lookahead == '+') ADVANCE(631); - if (lookahead == '-') ADVANCE(634); - if (lookahead == '/') ADVANCE(645); - if (lookahead == '0') ADVANCE(945); - if (lookahead == '<') ADVANCE(615); - if (lookahead == '=') ADVANCE(562); - if (lookahead == '>') ADVANCE(620); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(367); - if (lookahead == ']') ADVANCE(675); - if (lookahead == '^') ADVANCE(597); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(594); + ADVANCE_MAP( + '!', 674, + '"', 791, + '#', 819, + '$', 783, + '%', 653, + '&', 603, + ')', 658, + '*', 642, + '+', 634, + '-', 637, + '/', 648, + '0', 948, + '<', 618, + '=', 565, + '>', 623, + '?', 763, + '@', 944, + '\\', 180, + '^', 600, + '_', 951, + '|', 597, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(268) + lookahead == ' ') SKIP(429); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 931: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(671); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '%') ADVANCE(650); - if (lookahead == '&') ADVANCE(600); - if (lookahead == '*') ADVANCE(639); - if (lookahead == '+') ADVANCE(631); - if (lookahead == '-') ADVANCE(634); - if (lookahead == '/') ADVANCE(645); - if (lookahead == '0') ADVANCE(945); - if (lookahead == '<') ADVANCE(615); - if (lookahead == '=') ADVANCE(562); - if (lookahead == '>') ADVANCE(620); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(396); - if (lookahead == ']') ADVANCE(347); - if (lookahead == '^') ADVANCE(597); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(594); + ADVANCE_MAP( + '!', 674, + '"', 791, + '#', 819, + '$', 783, + '%', 653, + '&', 603, + ')', 502, + '*', 642, + '+', 634, + '-', 637, + '/', 648, + '0', 948, + '<', 618, + '=', 565, + '>', 623, + '?', 763, + '@', 944, + '\\', 64, + '^', 600, + '_', 951, + '|', 597, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(269) + lookahead == ' ') SKIP(430); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 932: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(671); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '%') ADVANCE(650); - if (lookahead == '&') ADVANCE(600); - if (lookahead == '*') ADVANCE(639); - if (lookahead == '+') ADVANCE(631); - if (lookahead == '-') ADVANCE(634); - if (lookahead == '/') ADVANCE(645); - if (lookahead == '0') ADVANCE(945); - if (lookahead == '<') ADVANCE(615); - if (lookahead == '=') ADVANCE(562); - if (lookahead == '>') ADVANCE(620); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(371); - if (lookahead == '^') ADVANCE(597); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(594); + ADVANCE_MAP( + '!', 674, + '"', 791, + '#', 819, + '$', 783, + '%', 653, + '&', 603, + '*', 642, + '+', 634, + '-', 637, + '/', 648, + '0', 948, + ':', 765, + '<', 618, + '=', 565, + '>', 623, + '?', 763, + '@', 944, + '\\', 67, + '^', 600, + '_', 951, + '|', 597, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(270) + lookahead == ' ') SKIP(431); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 933: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == '<') ADVANCE(612); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(379); - if (lookahead == ']') ADVANCE(675); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '!', 674, + '"', 791, + '#', 819, + '$', 783, + '%', 653, + '&', 603, + '*', 642, + '+', 634, + '-', 637, + '/', 648, + '0', 948, + '<', 618, + '=', 565, + '>', 623, + '?', 763, + '@', 944, + '\\', 62, + ']', 678, + '^', 600, + '_', 951, + '|', 597, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(282) + lookahead == ' ') SKIP(432); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 934: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == '<') ADVANCE(612); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(382); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '!', 674, + '"', 791, + '#', 819, + '$', 783, + '%', 653, + '&', 603, + '*', 642, + '+', 634, + '-', 637, + '/', 648, + '0', 948, + '<', 618, + '=', 565, + '>', 623, + '?', 763, + '@', 944, + '\\', 178, + ']', 512, + '^', 600, + '_', 951, + '|', 597, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(283) + lookahead == ' ') SKIP(433); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 935: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == '<') ADVANCE(613); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(402); - if (lookahead == ']') ADVANCE(675); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '!', 674, + '"', 791, + '#', 819, + '$', 783, + '%', 653, + '&', 603, + '*', 642, + '+', 634, + '-', 637, + '/', 648, + '0', 948, + '<', 618, + '=', 565, + '>', 623, + '?', 763, + '@', 944, + '\\', 70, + '^', 600, + '_', 951, + '|', 597, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(284) + lookahead == ' ') SKIP(434); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 936: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '&') ADVANCE(327); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == '<') ADVANCE(613); - if (lookahead == '>') ADVANCE(618); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(403); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(593); + ADVANCE_MAP( + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '&', 492, + '*', 640, + '-', 635, + '0', 948, + '<', 615, + '>', 621, + '?', 763, + '@', 944, + '\\', 106, + ']', 678, + '_', 951, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(285) + lookahead == ' ') SKIP(447); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 937: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == ')') ADVANCE(655); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(384); - if (lookahead == '_') ADVANCE(948); - if (lookahead == '|') ADVANCE(590); + ADVANCE_MAP( + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '&', 492, + '*', 640, + '-', 635, + '0', 948, + '<', 615, + '>', 621, + '?', 763, + '@', 944, + '\\', 114, + '_', 951, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(286) + lookahead == ' ') SKIP(448); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 938: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(669); - if (lookahead == '"') ADVANCE(788); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(385); - if (lookahead == '_') ADVANCE(948); + ADVANCE_MAP( + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '&', 492, + '*', 640, + '-', 635, + '0', 948, + '<', 616, + '>', 621, + '?', 763, + '@', 944, + '\\', 194, + ']', 678, + '_', 951, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(288) + lookahead == ' ') SKIP(449); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 939: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '!') ADVANCE(669); - if (lookahead == '#') ADVANCE(816); - if (lookahead == '$') ADVANCE(780); - if (lookahead == '*') ADVANCE(637); - if (lookahead == '-') ADVANCE(632); - if (lookahead == '0') ADVANCE(945); - if (lookahead == '?') ADVANCE(760); - if (lookahead == '@') ADVANCE(941); - if (lookahead == '\\') ADVANCE(388); - if (lookahead == '_') ADVANCE(948); + ADVANCE_MAP( + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '&', 492, + '*', 640, + '-', 635, + '0', 948, + '<', 616, + '>', 621, + '?', 763, + '@', 944, + '\\', 198, + '_', 951, + '|', 596, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(291) + lookahead == ' ') SKIP(450); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 940: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); - if (lookahead == '\\') ADVANCE(15); + ADVANCE_MAP( + '!', 672, + '"', 791, + '#', 819, + '$', 783, + ')', 658, + '*', 640, + '-', 635, + '0', 948, + '?', 763, + '@', 944, + '\\', 132, + '_', 951, + '|', 593, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(451); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + END_STATE(); + case 941: + ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); + ADVANCE_MAP( + '!', 672, + '"', 791, + '#', 819, + '$', 783, + '*', 640, + '-', 635, + '0', 948, + '?', 763, + '@', 944, + '\\', 134, + '_', 951, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(453); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + END_STATE(); + case 942: + ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); + ADVANCE_MAP( + '!', 672, + '#', 819, + '$', 783, + '*', 640, + '-', 635, + '0', 948, + '?', 763, + '@', 944, + '\\', 138, + '_', 951, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(456); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + END_STATE(); + case 943: + ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); + if (lookahead == '\\') ADVANCE(16); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(940); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(943); END_STATE(); - case 941: + case 944: ACCEPT_TOKEN(anon_sym_AT2); END_STATE(); - case 942: + case 945: ACCEPT_TOKEN(anon_sym_AT2); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); - case 943: + case 946: ACCEPT_TOKEN(anon_sym_0); - if (lookahead == '#') ADVANCE(814); - if (lookahead == '\\') ADVANCE(16); - if (lookahead == 'x') ADVANCE(872); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(807); + if (lookahead == '#') ADVANCE(817); + if (lookahead == '\\') ADVANCE(17); + if (lookahead == 'x') ADVANCE(875); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (!sym_word_character_set_6(lookahead)) ADVANCE(958); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(961); END_STATE(); - case 944: + case 947: ACCEPT_TOKEN(anon_sym_0); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); - case 945: + case 948: ACCEPT_TOKEN(anon_sym_0); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); - case 946: + case 949: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); - case 947: + case 950: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '\\') ADVANCE(16); + if (lookahead == '\\') ADVANCE(17); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(873); - if (!sym_word_character_set_4(lookahead)) ADVANCE(958); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); - case 948: + case 951: ACCEPT_TOKEN(anon_sym__); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(879); - END_STATE(); - case 949: - ACCEPT_TOKEN(sym_word); - if (lookahead == '.') ADVANCE(777); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); - END_STATE(); - case 950: - ACCEPT_TOKEN(sym_word); - if (lookahead == '0') ADVANCE(803); - if (lookahead == '\\') ADVANCE(517); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); - END_STATE(); - case 951: - ACCEPT_TOKEN(sym_word); - if (lookahead == '=') ADVANCE(606); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_2(lookahead)) ADVANCE(958); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); END_STATE(); case 952: ACCEPT_TOKEN(sym_word); - if (lookahead == '=') ADVANCE(604); - if (lookahead == '\\') ADVANCE(517); - if (lookahead == '~') ADVANCE(679); - if (!sym_word_character_set_2(lookahead)) ADVANCE(958); + if (lookahead == '.') ADVANCE(780); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); case 953: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(517); - if (lookahead == 'a') ADVANCE(954); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + if (lookahead == '0') ADVANCE(806); + if (lookahead == '\\') ADVANCE(521); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); case 954: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(517); - if (lookahead == 'c') ADVANCE(659); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + if (lookahead == '=') ADVANCE(609); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); case 955: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(517); - if (lookahead == 'n') ADVANCE(549); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + if (lookahead == '=') ADVANCE(607); + if (lookahead == '\\') ADVANCE(521); + if (lookahead == '~') ADVANCE(682); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); case 956: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(517); - if (lookahead == 's') ADVANCE(953); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + if (lookahead == '\\') ADVANCE(521); + if (lookahead == 'a') ADVANCE(957); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); case 957: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(517); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(805); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + if (lookahead == '\\') ADVANCE(521); + if (lookahead == 'c') ADVANCE(662); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); case 958: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(517); - if (!sym_word_character_set_1(lookahead)) ADVANCE(958); + if (lookahead == '\\') ADVANCE(521); + if (lookahead == 'n') ADVANCE(552); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + END_STATE(); + case 959: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') ADVANCE(521); + if (lookahead == 's') ADVANCE(956); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + END_STATE(); + case 960: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') ADVANCE(521); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(808); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + END_STATE(); + case 961: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') ADVANCE(521); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); END_STATE(); default: return false; @@ -20861,7 +21162,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'P') ADVANCE(5); if (lookahead == 'Q') ADVANCE(6); if (lookahead == 'U') ADVANCE(7); - if (lookahead == '\\') SKIP(8) + if (lookahead == '\\') SKIP(8); if (lookahead == 'a') ADVANCE(9); if (lookahead == 'c') ADVANCE(10); if (lookahead == 'd') ADVANCE(11); @@ -20876,7 +21177,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(20); if (lookahead == 'w') ADVANCE(21); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(22) + lookahead == ' ') SKIP(22); END_STATE(); case 1: ACCEPT_TOKEN(anon_sym_A); @@ -20900,9 +21201,9 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_U); END_STATE(); case 8: + if (lookahead == '\r') SKIP(23); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(22) - if (lookahead == '\r') SKIP(23) + lookahead == ' ') SKIP(22); END_STATE(); case 9: ACCEPT_TOKEN(anon_sym_a); @@ -20950,7 +21251,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'h') ADVANCE(39); END_STATE(); case 22: - if (lookahead == '\\') SKIP(8) + if (lookahead == '\\') SKIP(8); if (lookahead == 'c') ADVANCE(10); if (lookahead == 'd') ADVANCE(11); if (lookahead == 'e') ADVANCE(12); @@ -20963,10 +21264,10 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(40); if (lookahead == 'w') ADVANCE(21); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(22) + lookahead == ' ') SKIP(22); END_STATE(); case 23: - if (lookahead == '\n') SKIP(22) + if (lookahead == '\n') SKIP(22); END_STATE(); case 24: if (lookahead == 's') ADVANCE(41); @@ -21198,7676 +21499,7676 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 542, .external_lex_state = 2}, - [2] = {.lex_state = 256, .external_lex_state = 2}, - [3] = {.lex_state = 256, .external_lex_state = 2}, - [4] = {.lex_state = 257, .external_lex_state = 3}, - [5] = {.lex_state = 257, .external_lex_state = 3}, - [6] = {.lex_state = 257, .external_lex_state = 3}, - [7] = {.lex_state = 257, .external_lex_state = 3}, - [8] = {.lex_state = 257, .external_lex_state = 3}, - [9] = {.lex_state = 257, .external_lex_state = 3}, - [10] = {.lex_state = 257, .external_lex_state = 3}, - [11] = {.lex_state = 257, .external_lex_state = 3}, + [1] = {.lex_state = 549, .external_lex_state = 2}, + [2] = {.lex_state = 420, .external_lex_state = 2}, + [3] = {.lex_state = 420, .external_lex_state = 2}, + [4] = {.lex_state = 421, .external_lex_state = 3}, + [5] = {.lex_state = 421, .external_lex_state = 3}, + [6] = {.lex_state = 421, .external_lex_state = 3}, + [7] = {.lex_state = 421, .external_lex_state = 3}, + [8] = {.lex_state = 421, .external_lex_state = 3}, + [9] = {.lex_state = 421, .external_lex_state = 3}, + [10] = {.lex_state = 421, .external_lex_state = 3}, + [11] = {.lex_state = 421, .external_lex_state = 3}, [12] = {.lex_state = 6, .external_lex_state = 4}, - [13] = {.lex_state = 542, .external_lex_state = 2}, - [14] = {.lex_state = 542, .external_lex_state = 2}, - [15] = {.lex_state = 542, .external_lex_state = 2}, - [16] = {.lex_state = 241, .external_lex_state = 5}, - [17] = {.lex_state = 542, .external_lex_state = 2}, - [18] = {.lex_state = 542, .external_lex_state = 2}, - [19] = {.lex_state = 542, .external_lex_state = 2}, - [20] = {.lex_state = 542, .external_lex_state = 2}, - [21] = {.lex_state = 542, .external_lex_state = 2}, - [22] = {.lex_state = 259, .external_lex_state = 6}, - [23] = {.lex_state = 259, .external_lex_state = 6}, - [24] = {.lex_state = 259, .external_lex_state = 6}, - [25] = {.lex_state = 259, .external_lex_state = 6}, - [26] = {.lex_state = 259, .external_lex_state = 6}, - [27] = {.lex_state = 259, .external_lex_state = 6}, - [28] = {.lex_state = 259, .external_lex_state = 6}, - [29] = {.lex_state = 259, .external_lex_state = 6}, - [30] = {.lex_state = 259, .external_lex_state = 6}, - [31] = {.lex_state = 259, .external_lex_state = 6}, - [32] = {.lex_state = 259, .external_lex_state = 6}, - [33] = {.lex_state = 259, .external_lex_state = 6}, - [34] = {.lex_state = 542, .external_lex_state = 2}, - [35] = {.lex_state = 542, .external_lex_state = 2}, - [36] = {.lex_state = 542, .external_lex_state = 2}, - [37] = {.lex_state = 542, .external_lex_state = 2}, - [38] = {.lex_state = 542, .external_lex_state = 2}, - [39] = {.lex_state = 542, .external_lex_state = 2}, - [40] = {.lex_state = 542, .external_lex_state = 2}, - [41] = {.lex_state = 542, .external_lex_state = 2}, - [42] = {.lex_state = 542, .external_lex_state = 2}, - [43] = {.lex_state = 542, .external_lex_state = 2}, - [44] = {.lex_state = 542, .external_lex_state = 2}, - [45] = {.lex_state = 542, .external_lex_state = 2}, - [46] = {.lex_state = 542, .external_lex_state = 2}, - [47] = {.lex_state = 542, .external_lex_state = 2}, - [48] = {.lex_state = 542, .external_lex_state = 2}, - [49] = {.lex_state = 542, .external_lex_state = 2}, - [50] = {.lex_state = 542, .external_lex_state = 2}, - [51] = {.lex_state = 542, .external_lex_state = 2}, - [52] = {.lex_state = 542, .external_lex_state = 2}, - [53] = {.lex_state = 542, .external_lex_state = 2}, - [54] = {.lex_state = 542, .external_lex_state = 2}, - [55] = {.lex_state = 542, .external_lex_state = 2}, - [56] = {.lex_state = 542, .external_lex_state = 2}, - [57] = {.lex_state = 542, .external_lex_state = 2}, - [58] = {.lex_state = 542, .external_lex_state = 2}, - [59] = {.lex_state = 542, .external_lex_state = 2}, - [60] = {.lex_state = 542, .external_lex_state = 2}, - [61] = {.lex_state = 542, .external_lex_state = 2}, - [62] = {.lex_state = 260, .external_lex_state = 2}, - [63] = {.lex_state = 260, .external_lex_state = 2}, - [64] = {.lex_state = 542, .external_lex_state = 2}, - [65] = {.lex_state = 542, .external_lex_state = 2}, - [66] = {.lex_state = 542, .external_lex_state = 2}, - [67] = {.lex_state = 542, .external_lex_state = 2}, - [68] = {.lex_state = 260, .external_lex_state = 2}, - [69] = {.lex_state = 542, .external_lex_state = 2}, - [70] = {.lex_state = 542, .external_lex_state = 2}, - [71] = {.lex_state = 542, .external_lex_state = 2}, - [72] = {.lex_state = 260, .external_lex_state = 2}, - [73] = {.lex_state = 542, .external_lex_state = 2}, - [74] = {.lex_state = 260, .external_lex_state = 2}, - [75] = {.lex_state = 542, .external_lex_state = 2}, - [76] = {.lex_state = 542, .external_lex_state = 2}, - [77] = {.lex_state = 542, .external_lex_state = 2}, - [78] = {.lex_state = 542, .external_lex_state = 2}, - [79] = {.lex_state = 542, .external_lex_state = 2}, - [80] = {.lex_state = 542, .external_lex_state = 2}, - [81] = {.lex_state = 260, .external_lex_state = 2}, - [82] = {.lex_state = 260, .external_lex_state = 2}, - [83] = {.lex_state = 542, .external_lex_state = 2}, - [84] = {.lex_state = 542, .external_lex_state = 2}, - [85] = {.lex_state = 542, .external_lex_state = 2}, - [86] = {.lex_state = 260, .external_lex_state = 2}, - [87] = {.lex_state = 260, .external_lex_state = 2}, - [88] = {.lex_state = 542, .external_lex_state = 2}, - [89] = {.lex_state = 542, .external_lex_state = 2}, - [90] = {.lex_state = 542, .external_lex_state = 2}, - [91] = {.lex_state = 542, .external_lex_state = 2}, - [92] = {.lex_state = 260, .external_lex_state = 2}, - [93] = {.lex_state = 260, .external_lex_state = 2}, - [94] = {.lex_state = 542, .external_lex_state = 2}, - [95] = {.lex_state = 542, .external_lex_state = 2}, - [96] = {.lex_state = 260, .external_lex_state = 2}, - [97] = {.lex_state = 542, .external_lex_state = 2}, - [98] = {.lex_state = 542, .external_lex_state = 2}, - [99] = {.lex_state = 260, .external_lex_state = 2}, - [100] = {.lex_state = 542, .external_lex_state = 2}, - [101] = {.lex_state = 542, .external_lex_state = 2}, - [102] = {.lex_state = 542, .external_lex_state = 2}, - [103] = {.lex_state = 542, .external_lex_state = 2}, - [104] = {.lex_state = 542, .external_lex_state = 2}, - [105] = {.lex_state = 542, .external_lex_state = 2}, - [106] = {.lex_state = 542, .external_lex_state = 2}, - [107] = {.lex_state = 542, .external_lex_state = 2}, - [108] = {.lex_state = 542, .external_lex_state = 2}, - [109] = {.lex_state = 542, .external_lex_state = 2}, - [110] = {.lex_state = 542, .external_lex_state = 2}, - [111] = {.lex_state = 542, .external_lex_state = 2}, - [112] = {.lex_state = 542, .external_lex_state = 2}, - [113] = {.lex_state = 542, .external_lex_state = 2}, - [114] = {.lex_state = 542, .external_lex_state = 2}, - [115] = {.lex_state = 542, .external_lex_state = 2}, - [116] = {.lex_state = 542, .external_lex_state = 2}, - [117] = {.lex_state = 542, .external_lex_state = 2}, - [118] = {.lex_state = 542, .external_lex_state = 2}, - [119] = {.lex_state = 542, .external_lex_state = 2}, - [120] = {.lex_state = 542, .external_lex_state = 2}, - [121] = {.lex_state = 542, .external_lex_state = 2}, - [122] = {.lex_state = 542, .external_lex_state = 2}, - [123] = {.lex_state = 542, .external_lex_state = 2}, - [124] = {.lex_state = 542, .external_lex_state = 2}, - [125] = {.lex_state = 542, .external_lex_state = 2}, - [126] = {.lex_state = 542, .external_lex_state = 2}, - [127] = {.lex_state = 542, .external_lex_state = 2}, - [128] = {.lex_state = 542, .external_lex_state = 2}, - [129] = {.lex_state = 542, .external_lex_state = 2}, - [130] = {.lex_state = 542, .external_lex_state = 2}, - [131] = {.lex_state = 542, .external_lex_state = 2}, - [132] = {.lex_state = 542, .external_lex_state = 2}, - [133] = {.lex_state = 542, .external_lex_state = 2}, - [134] = {.lex_state = 542, .external_lex_state = 2}, - [135] = {.lex_state = 542, .external_lex_state = 2}, - [136] = {.lex_state = 542, .external_lex_state = 2}, - [137] = {.lex_state = 542, .external_lex_state = 2}, - [138] = {.lex_state = 542, .external_lex_state = 2}, - [139] = {.lex_state = 542, .external_lex_state = 2}, - [140] = {.lex_state = 542, .external_lex_state = 2}, - [141] = {.lex_state = 542, .external_lex_state = 2}, - [142] = {.lex_state = 542, .external_lex_state = 2}, - [143] = {.lex_state = 542, .external_lex_state = 2}, - [144] = {.lex_state = 542, .external_lex_state = 2}, - [145] = {.lex_state = 542, .external_lex_state = 2}, - [146] = {.lex_state = 542, .external_lex_state = 2}, - [147] = {.lex_state = 542, .external_lex_state = 2}, - [148] = {.lex_state = 542, .external_lex_state = 2}, - [149] = {.lex_state = 542, .external_lex_state = 2}, - [150] = {.lex_state = 542, .external_lex_state = 2}, - [151] = {.lex_state = 542, .external_lex_state = 2}, - [152] = {.lex_state = 542, .external_lex_state = 2}, - [153] = {.lex_state = 542, .external_lex_state = 2}, - [154] = {.lex_state = 260, .external_lex_state = 2}, - [155] = {.lex_state = 542, .external_lex_state = 2}, - [156] = {.lex_state = 542, .external_lex_state = 2}, - [157] = {.lex_state = 542, .external_lex_state = 2}, - [158] = {.lex_state = 542, .external_lex_state = 2}, - [159] = {.lex_state = 542, .external_lex_state = 2}, - [160] = {.lex_state = 542, .external_lex_state = 2}, - [161] = {.lex_state = 542, .external_lex_state = 2}, - [162] = {.lex_state = 542, .external_lex_state = 2}, - [163] = {.lex_state = 542, .external_lex_state = 2}, - [164] = {.lex_state = 542, .external_lex_state = 2}, - [165] = {.lex_state = 542, .external_lex_state = 2}, - [166] = {.lex_state = 542, .external_lex_state = 2}, - [167] = {.lex_state = 542, .external_lex_state = 2}, - [168] = {.lex_state = 542, .external_lex_state = 2}, - [169] = {.lex_state = 542, .external_lex_state = 2}, - [170] = {.lex_state = 542, .external_lex_state = 2}, - [171] = {.lex_state = 542, .external_lex_state = 2}, - [172] = {.lex_state = 542, .external_lex_state = 2}, - [173] = {.lex_state = 542, .external_lex_state = 2}, - [174] = {.lex_state = 542, .external_lex_state = 2}, - [175] = {.lex_state = 542, .external_lex_state = 2}, - [176] = {.lex_state = 542, .external_lex_state = 2}, - [177] = {.lex_state = 542, .external_lex_state = 2}, - [178] = {.lex_state = 542, .external_lex_state = 2}, - [179] = {.lex_state = 542, .external_lex_state = 2}, - [180] = {.lex_state = 542, .external_lex_state = 2}, - [181] = {.lex_state = 542, .external_lex_state = 2}, - [182] = {.lex_state = 542, .external_lex_state = 2}, - [183] = {.lex_state = 542, .external_lex_state = 2}, - [184] = {.lex_state = 542, .external_lex_state = 2}, - [185] = {.lex_state = 542, .external_lex_state = 2}, - [186] = {.lex_state = 542, .external_lex_state = 2}, - [187] = {.lex_state = 542, .external_lex_state = 2}, - [188] = {.lex_state = 542, .external_lex_state = 2}, - [189] = {.lex_state = 542, .external_lex_state = 2}, - [190] = {.lex_state = 542, .external_lex_state = 2}, - [191] = {.lex_state = 542, .external_lex_state = 2}, - [192] = {.lex_state = 542, .external_lex_state = 2}, - [193] = {.lex_state = 542, .external_lex_state = 2}, - [194] = {.lex_state = 542, .external_lex_state = 2}, - [195] = {.lex_state = 542, .external_lex_state = 2}, - [196] = {.lex_state = 542, .external_lex_state = 2}, - [197] = {.lex_state = 542, .external_lex_state = 2}, - [198] = {.lex_state = 542, .external_lex_state = 2}, - [199] = {.lex_state = 542, .external_lex_state = 2}, - [200] = {.lex_state = 542, .external_lex_state = 2}, - [201] = {.lex_state = 542, .external_lex_state = 2}, - [202] = {.lex_state = 542, .external_lex_state = 2}, - [203] = {.lex_state = 542, .external_lex_state = 2}, - [204] = {.lex_state = 542, .external_lex_state = 2}, - [205] = {.lex_state = 542, .external_lex_state = 2}, - [206] = {.lex_state = 542, .external_lex_state = 2}, - [207] = {.lex_state = 542, .external_lex_state = 2}, - [208] = {.lex_state = 542, .external_lex_state = 2}, - [209] = {.lex_state = 542, .external_lex_state = 2}, - [210] = {.lex_state = 542, .external_lex_state = 2}, - [211] = {.lex_state = 542, .external_lex_state = 2}, - [212] = {.lex_state = 542, .external_lex_state = 2}, - [213] = {.lex_state = 542, .external_lex_state = 2}, - [214] = {.lex_state = 542, .external_lex_state = 2}, - [215] = {.lex_state = 542, .external_lex_state = 2}, - [216] = {.lex_state = 542, .external_lex_state = 2}, - [217] = {.lex_state = 542, .external_lex_state = 2}, - [218] = {.lex_state = 542, .external_lex_state = 2}, - [219] = {.lex_state = 542, .external_lex_state = 2}, - [220] = {.lex_state = 542, .external_lex_state = 2}, - [221] = {.lex_state = 542, .external_lex_state = 2}, - [222] = {.lex_state = 542, .external_lex_state = 2}, - [223] = {.lex_state = 542, .external_lex_state = 2}, - [224] = {.lex_state = 542, .external_lex_state = 2}, - [225] = {.lex_state = 542, .external_lex_state = 2}, - [226] = {.lex_state = 542, .external_lex_state = 2}, - [227] = {.lex_state = 542, .external_lex_state = 2}, - [228] = {.lex_state = 542, .external_lex_state = 2}, - [229] = {.lex_state = 542, .external_lex_state = 2}, - [230] = {.lex_state = 542, .external_lex_state = 2}, - [231] = {.lex_state = 542, .external_lex_state = 2}, - [232] = {.lex_state = 542, .external_lex_state = 2}, - [233] = {.lex_state = 542, .external_lex_state = 2}, - [234] = {.lex_state = 542, .external_lex_state = 2}, - [235] = {.lex_state = 542, .external_lex_state = 2}, - [236] = {.lex_state = 542, .external_lex_state = 2}, - [237] = {.lex_state = 542, .external_lex_state = 2}, - [238] = {.lex_state = 542, .external_lex_state = 2}, - [239] = {.lex_state = 542, .external_lex_state = 2}, - [240] = {.lex_state = 542, .external_lex_state = 2}, - [241] = {.lex_state = 542, .external_lex_state = 2}, - [242] = {.lex_state = 542, .external_lex_state = 2}, - [243] = {.lex_state = 542, .external_lex_state = 2}, - [244] = {.lex_state = 542, .external_lex_state = 2}, - [245] = {.lex_state = 542, .external_lex_state = 2}, - [246] = {.lex_state = 542, .external_lex_state = 2}, - [247] = {.lex_state = 542, .external_lex_state = 2}, - [248] = {.lex_state = 542, .external_lex_state = 2}, - [249] = {.lex_state = 542, .external_lex_state = 2}, - [250] = {.lex_state = 542, .external_lex_state = 2}, - [251] = {.lex_state = 542, .external_lex_state = 2}, - [252] = {.lex_state = 542, .external_lex_state = 2}, - [253] = {.lex_state = 542, .external_lex_state = 2}, - [254] = {.lex_state = 542, .external_lex_state = 2}, - [255] = {.lex_state = 542, .external_lex_state = 2}, - [256] = {.lex_state = 542, .external_lex_state = 2}, - [257] = {.lex_state = 542, .external_lex_state = 2}, - [258] = {.lex_state = 542, .external_lex_state = 2}, - [259] = {.lex_state = 542, .external_lex_state = 2}, - [260] = {.lex_state = 542, .external_lex_state = 2}, - [261] = {.lex_state = 542, .external_lex_state = 2}, - [262] = {.lex_state = 542, .external_lex_state = 2}, - [263] = {.lex_state = 542, .external_lex_state = 2}, - [264] = {.lex_state = 542, .external_lex_state = 2}, - [265] = {.lex_state = 542, .external_lex_state = 2}, - [266] = {.lex_state = 542, .external_lex_state = 2}, - [267] = {.lex_state = 542, .external_lex_state = 2}, - [268] = {.lex_state = 542, .external_lex_state = 2}, - [269] = {.lex_state = 542, .external_lex_state = 2}, - [270] = {.lex_state = 542, .external_lex_state = 2}, - [271] = {.lex_state = 542, .external_lex_state = 2}, - [272] = {.lex_state = 542, .external_lex_state = 2}, - [273] = {.lex_state = 542, .external_lex_state = 2}, - [274] = {.lex_state = 542, .external_lex_state = 2}, - [275] = {.lex_state = 542, .external_lex_state = 2}, - [276] = {.lex_state = 542, .external_lex_state = 2}, - [277] = {.lex_state = 542, .external_lex_state = 2}, - [278] = {.lex_state = 542, .external_lex_state = 2}, - [279] = {.lex_state = 542, .external_lex_state = 2}, - [280] = {.lex_state = 542, .external_lex_state = 2}, - [281] = {.lex_state = 542, .external_lex_state = 2}, - [282] = {.lex_state = 260, .external_lex_state = 2}, - [283] = {.lex_state = 542, .external_lex_state = 2}, - [284] = {.lex_state = 260, .external_lex_state = 2}, - [285] = {.lex_state = 542, .external_lex_state = 2}, - [286] = {.lex_state = 542, .external_lex_state = 2}, - [287] = {.lex_state = 542, .external_lex_state = 2}, - [288] = {.lex_state = 542, .external_lex_state = 2}, - [289] = {.lex_state = 542, .external_lex_state = 2}, - [290] = {.lex_state = 260, .external_lex_state = 2}, - [291] = {.lex_state = 542, .external_lex_state = 2}, - [292] = {.lex_state = 542, .external_lex_state = 2}, - [293] = {.lex_state = 542, .external_lex_state = 2}, - [294] = {.lex_state = 542, .external_lex_state = 2}, - [295] = {.lex_state = 542, .external_lex_state = 2}, - [296] = {.lex_state = 542, .external_lex_state = 2}, - [297] = {.lex_state = 542, .external_lex_state = 2}, - [298] = {.lex_state = 542, .external_lex_state = 2}, - [299] = {.lex_state = 542, .external_lex_state = 2}, - [300] = {.lex_state = 542, .external_lex_state = 2}, - [301] = {.lex_state = 542, .external_lex_state = 2}, - [302] = {.lex_state = 542, .external_lex_state = 2}, - [303] = {.lex_state = 542, .external_lex_state = 2}, - [304] = {.lex_state = 542, .external_lex_state = 2}, - [305] = {.lex_state = 542, .external_lex_state = 2}, - [306] = {.lex_state = 542, .external_lex_state = 2}, - [307] = {.lex_state = 542, .external_lex_state = 2}, - [308] = {.lex_state = 542, .external_lex_state = 2}, - [309] = {.lex_state = 542, .external_lex_state = 2}, - [310] = {.lex_state = 542, .external_lex_state = 2}, - [311] = {.lex_state = 542, .external_lex_state = 2}, - [312] = {.lex_state = 542, .external_lex_state = 2}, - [313] = {.lex_state = 542, .external_lex_state = 2}, - [314] = {.lex_state = 542, .external_lex_state = 2}, - [315] = {.lex_state = 542, .external_lex_state = 2}, - [316] = {.lex_state = 542, .external_lex_state = 2}, - [317] = {.lex_state = 542, .external_lex_state = 2}, - [318] = {.lex_state = 542, .external_lex_state = 2}, - [319] = {.lex_state = 542, .external_lex_state = 2}, - [320] = {.lex_state = 542, .external_lex_state = 2}, - [321] = {.lex_state = 542, .external_lex_state = 2}, - [322] = {.lex_state = 542, .external_lex_state = 2}, - [323] = {.lex_state = 542, .external_lex_state = 2}, - [324] = {.lex_state = 542, .external_lex_state = 2}, - [325] = {.lex_state = 542, .external_lex_state = 2}, - [326] = {.lex_state = 542, .external_lex_state = 2}, - [327] = {.lex_state = 542, .external_lex_state = 2}, - [328] = {.lex_state = 542, .external_lex_state = 2}, - [329] = {.lex_state = 542, .external_lex_state = 2}, - [330] = {.lex_state = 542, .external_lex_state = 2}, - [331] = {.lex_state = 542, .external_lex_state = 2}, - [332] = {.lex_state = 542, .external_lex_state = 2}, - [333] = {.lex_state = 542, .external_lex_state = 2}, - [334] = {.lex_state = 542, .external_lex_state = 2}, - [335] = {.lex_state = 542, .external_lex_state = 2}, - [336] = {.lex_state = 542, .external_lex_state = 2}, - [337] = {.lex_state = 542, .external_lex_state = 2}, - [338] = {.lex_state = 542, .external_lex_state = 2}, - [339] = {.lex_state = 542, .external_lex_state = 2}, - [340] = {.lex_state = 542, .external_lex_state = 2}, - [341] = {.lex_state = 542, .external_lex_state = 2}, - [342] = {.lex_state = 542, .external_lex_state = 2}, - [343] = {.lex_state = 542, .external_lex_state = 2}, - [344] = {.lex_state = 542, .external_lex_state = 2}, - [345] = {.lex_state = 542, .external_lex_state = 2}, - [346] = {.lex_state = 542, .external_lex_state = 2}, - [347] = {.lex_state = 542, .external_lex_state = 2}, - [348] = {.lex_state = 542, .external_lex_state = 2}, - [349] = {.lex_state = 542, .external_lex_state = 2}, - [350] = {.lex_state = 542, .external_lex_state = 2}, - [351] = {.lex_state = 542, .external_lex_state = 2}, - [352] = {.lex_state = 542, .external_lex_state = 2}, - [353] = {.lex_state = 542, .external_lex_state = 2}, - [354] = {.lex_state = 542, .external_lex_state = 2}, - [355] = {.lex_state = 542, .external_lex_state = 2}, - [356] = {.lex_state = 542, .external_lex_state = 2}, - [357] = {.lex_state = 542, .external_lex_state = 2}, - [358] = {.lex_state = 542, .external_lex_state = 2}, - [359] = {.lex_state = 542, .external_lex_state = 2}, - [360] = {.lex_state = 542, .external_lex_state = 2}, - [361] = {.lex_state = 542, .external_lex_state = 2}, - [362] = {.lex_state = 542, .external_lex_state = 2}, - [363] = {.lex_state = 542, .external_lex_state = 2}, - [364] = {.lex_state = 542, .external_lex_state = 2}, - [365] = {.lex_state = 542, .external_lex_state = 2}, - [366] = {.lex_state = 542, .external_lex_state = 2}, - [367] = {.lex_state = 542, .external_lex_state = 2}, - [368] = {.lex_state = 542, .external_lex_state = 2}, - [369] = {.lex_state = 542, .external_lex_state = 2}, - [370] = {.lex_state = 542, .external_lex_state = 2}, - [371] = {.lex_state = 542, .external_lex_state = 2}, - [372] = {.lex_state = 542, .external_lex_state = 2}, - [373] = {.lex_state = 542, .external_lex_state = 2}, - [374] = {.lex_state = 542, .external_lex_state = 2}, - [375] = {.lex_state = 542, .external_lex_state = 2}, - [376] = {.lex_state = 542, .external_lex_state = 2}, - [377] = {.lex_state = 542, .external_lex_state = 2}, - [378] = {.lex_state = 542, .external_lex_state = 2}, - [379] = {.lex_state = 542, .external_lex_state = 2}, - [380] = {.lex_state = 542, .external_lex_state = 2}, - [381] = {.lex_state = 542, .external_lex_state = 2}, - [382] = {.lex_state = 542, .external_lex_state = 2}, - [383] = {.lex_state = 542, .external_lex_state = 2}, - [384] = {.lex_state = 542, .external_lex_state = 2}, - [385] = {.lex_state = 542, .external_lex_state = 2}, - [386] = {.lex_state = 542, .external_lex_state = 2}, - [387] = {.lex_state = 542, .external_lex_state = 2}, - [388] = {.lex_state = 542, .external_lex_state = 2}, - [389] = {.lex_state = 542, .external_lex_state = 2}, - [390] = {.lex_state = 542, .external_lex_state = 2}, - [391] = {.lex_state = 542, .external_lex_state = 2}, - [392] = {.lex_state = 542, .external_lex_state = 2}, - [393] = {.lex_state = 542, .external_lex_state = 2}, - [394] = {.lex_state = 542, .external_lex_state = 2}, - [395] = {.lex_state = 542, .external_lex_state = 2}, - [396] = {.lex_state = 542, .external_lex_state = 2}, - [397] = {.lex_state = 542, .external_lex_state = 2}, - [398] = {.lex_state = 542, .external_lex_state = 2}, - [399] = {.lex_state = 542, .external_lex_state = 2}, - [400] = {.lex_state = 542, .external_lex_state = 2}, - [401] = {.lex_state = 542, .external_lex_state = 2}, - [402] = {.lex_state = 542, .external_lex_state = 2}, - [403] = {.lex_state = 542, .external_lex_state = 2}, - [404] = {.lex_state = 542, .external_lex_state = 2}, - [405] = {.lex_state = 542, .external_lex_state = 2}, - [406] = {.lex_state = 542, .external_lex_state = 2}, - [407] = {.lex_state = 542, .external_lex_state = 2}, - [408] = {.lex_state = 542, .external_lex_state = 2}, - [409] = {.lex_state = 542, .external_lex_state = 2}, - [410] = {.lex_state = 542, .external_lex_state = 2}, - [411] = {.lex_state = 542, .external_lex_state = 2}, - [412] = {.lex_state = 542, .external_lex_state = 2}, - [413] = {.lex_state = 542, .external_lex_state = 2}, - [414] = {.lex_state = 542, .external_lex_state = 2}, - [415] = {.lex_state = 542, .external_lex_state = 2}, - [416] = {.lex_state = 542, .external_lex_state = 2}, - [417] = {.lex_state = 542, .external_lex_state = 2}, - [418] = {.lex_state = 542, .external_lex_state = 2}, - [419] = {.lex_state = 542, .external_lex_state = 2}, - [420] = {.lex_state = 542, .external_lex_state = 2}, - [421] = {.lex_state = 542, .external_lex_state = 2}, - [422] = {.lex_state = 542, .external_lex_state = 2}, - [423] = {.lex_state = 542, .external_lex_state = 2}, - [424] = {.lex_state = 542, .external_lex_state = 2}, - [425] = {.lex_state = 542, .external_lex_state = 2}, - [426] = {.lex_state = 542, .external_lex_state = 2}, - [427] = {.lex_state = 542, .external_lex_state = 2}, - [428] = {.lex_state = 542, .external_lex_state = 2}, - [429] = {.lex_state = 542, .external_lex_state = 2}, - [430] = {.lex_state = 542, .external_lex_state = 2}, - [431] = {.lex_state = 542, .external_lex_state = 2}, - [432] = {.lex_state = 542, .external_lex_state = 2}, - [433] = {.lex_state = 542, .external_lex_state = 2}, - [434] = {.lex_state = 542, .external_lex_state = 2}, - [435] = {.lex_state = 542, .external_lex_state = 2}, - [436] = {.lex_state = 542, .external_lex_state = 2}, - [437] = {.lex_state = 542, .external_lex_state = 2}, - [438] = {.lex_state = 542, .external_lex_state = 2}, - [439] = {.lex_state = 542, .external_lex_state = 2}, - [440] = {.lex_state = 542, .external_lex_state = 2}, - [441] = {.lex_state = 542, .external_lex_state = 2}, - [442] = {.lex_state = 542, .external_lex_state = 2}, - [443] = {.lex_state = 542, .external_lex_state = 2}, - [444] = {.lex_state = 542, .external_lex_state = 2}, - [445] = {.lex_state = 542, .external_lex_state = 2}, - [446] = {.lex_state = 542, .external_lex_state = 2}, - [447] = {.lex_state = 542, .external_lex_state = 2}, - [448] = {.lex_state = 542, .external_lex_state = 2}, - [449] = {.lex_state = 542, .external_lex_state = 2}, - [450] = {.lex_state = 542, .external_lex_state = 2}, - [451] = {.lex_state = 242, .external_lex_state = 7}, - [452] = {.lex_state = 245, .external_lex_state = 8}, - [453] = {.lex_state = 245, .external_lex_state = 8}, - [454] = {.lex_state = 245, .external_lex_state = 8}, - [455] = {.lex_state = 245, .external_lex_state = 8}, - [456] = {.lex_state = 245, .external_lex_state = 8}, - [457] = {.lex_state = 245, .external_lex_state = 8}, - [458] = {.lex_state = 244, .external_lex_state = 7}, - [459] = {.lex_state = 243, .external_lex_state = 7}, - [460] = {.lex_state = 246, .external_lex_state = 7}, - [461] = {.lex_state = 245, .external_lex_state = 8}, - [462] = {.lex_state = 245, .external_lex_state = 8}, - [463] = {.lex_state = 242, .external_lex_state = 7}, + [13] = {.lex_state = 405, .external_lex_state = 5}, + [14] = {.lex_state = 549, .external_lex_state = 2}, + [15] = {.lex_state = 549, .external_lex_state = 2}, + [16] = {.lex_state = 549, .external_lex_state = 2}, + [17] = {.lex_state = 549, .external_lex_state = 2}, + [18] = {.lex_state = 549, .external_lex_state = 2}, + [19] = {.lex_state = 549, .external_lex_state = 2}, + [20] = {.lex_state = 549, .external_lex_state = 2}, + [21] = {.lex_state = 549, .external_lex_state = 2}, + [22] = {.lex_state = 423, .external_lex_state = 6}, + [23] = {.lex_state = 423, .external_lex_state = 6}, + [24] = {.lex_state = 423, .external_lex_state = 6}, + [25] = {.lex_state = 423, .external_lex_state = 6}, + [26] = {.lex_state = 423, .external_lex_state = 6}, + [27] = {.lex_state = 423, .external_lex_state = 6}, + [28] = {.lex_state = 423, .external_lex_state = 6}, + [29] = {.lex_state = 423, .external_lex_state = 6}, + [30] = {.lex_state = 423, .external_lex_state = 6}, + [31] = {.lex_state = 423, .external_lex_state = 6}, + [32] = {.lex_state = 423, .external_lex_state = 6}, + [33] = {.lex_state = 423, .external_lex_state = 6}, + [34] = {.lex_state = 549, .external_lex_state = 2}, + [35] = {.lex_state = 549, .external_lex_state = 2}, + [36] = {.lex_state = 549, .external_lex_state = 2}, + [37] = {.lex_state = 549, .external_lex_state = 2}, + [38] = {.lex_state = 549, .external_lex_state = 2}, + [39] = {.lex_state = 549, .external_lex_state = 2}, + [40] = {.lex_state = 549, .external_lex_state = 2}, + [41] = {.lex_state = 549, .external_lex_state = 2}, + [42] = {.lex_state = 549, .external_lex_state = 2}, + [43] = {.lex_state = 549, .external_lex_state = 2}, + [44] = {.lex_state = 549, .external_lex_state = 2}, + [45] = {.lex_state = 549, .external_lex_state = 2}, + [46] = {.lex_state = 549, .external_lex_state = 2}, + [47] = {.lex_state = 549, .external_lex_state = 2}, + [48] = {.lex_state = 549, .external_lex_state = 2}, + [49] = {.lex_state = 549, .external_lex_state = 2}, + [50] = {.lex_state = 549, .external_lex_state = 2}, + [51] = {.lex_state = 549, .external_lex_state = 2}, + [52] = {.lex_state = 549, .external_lex_state = 2}, + [53] = {.lex_state = 549, .external_lex_state = 2}, + [54] = {.lex_state = 549, .external_lex_state = 2}, + [55] = {.lex_state = 549, .external_lex_state = 2}, + [56] = {.lex_state = 549, .external_lex_state = 2}, + [57] = {.lex_state = 549, .external_lex_state = 2}, + [58] = {.lex_state = 549, .external_lex_state = 2}, + [59] = {.lex_state = 549, .external_lex_state = 2}, + [60] = {.lex_state = 549, .external_lex_state = 2}, + [61] = {.lex_state = 549, .external_lex_state = 2}, + [62] = {.lex_state = 549, .external_lex_state = 2}, + [63] = {.lex_state = 549, .external_lex_state = 2}, + [64] = {.lex_state = 549, .external_lex_state = 2}, + [65] = {.lex_state = 549, .external_lex_state = 2}, + [66] = {.lex_state = 549, .external_lex_state = 2}, + [67] = {.lex_state = 549, .external_lex_state = 2}, + [68] = {.lex_state = 549, .external_lex_state = 2}, + [69] = {.lex_state = 424, .external_lex_state = 2}, + [70] = {.lex_state = 424, .external_lex_state = 2}, + [71] = {.lex_state = 424, .external_lex_state = 2}, + [72] = {.lex_state = 549, .external_lex_state = 2}, + [73] = {.lex_state = 424, .external_lex_state = 2}, + [74] = {.lex_state = 424, .external_lex_state = 2}, + [75] = {.lex_state = 549, .external_lex_state = 2}, + [76] = {.lex_state = 549, .external_lex_state = 2}, + [77] = {.lex_state = 424, .external_lex_state = 2}, + [78] = {.lex_state = 549, .external_lex_state = 2}, + [79] = {.lex_state = 424, .external_lex_state = 2}, + [80] = {.lex_state = 549, .external_lex_state = 2}, + [81] = {.lex_state = 549, .external_lex_state = 2}, + [82] = {.lex_state = 424, .external_lex_state = 2}, + [83] = {.lex_state = 424, .external_lex_state = 2}, + [84] = {.lex_state = 549, .external_lex_state = 2}, + [85] = {.lex_state = 549, .external_lex_state = 2}, + [86] = {.lex_state = 549, .external_lex_state = 2}, + [87] = {.lex_state = 424, .external_lex_state = 2}, + [88] = {.lex_state = 424, .external_lex_state = 2}, + [89] = {.lex_state = 549, .external_lex_state = 2}, + [90] = {.lex_state = 549, .external_lex_state = 2}, + [91] = {.lex_state = 424, .external_lex_state = 2}, + [92] = {.lex_state = 424, .external_lex_state = 2}, + [93] = {.lex_state = 549, .external_lex_state = 2}, + [94] = {.lex_state = 549, .external_lex_state = 2}, + [95] = {.lex_state = 424, .external_lex_state = 2}, + [96] = {.lex_state = 424, .external_lex_state = 2}, + [97] = {.lex_state = 549, .external_lex_state = 2}, + [98] = {.lex_state = 549, .external_lex_state = 2}, + [99] = {.lex_state = 424, .external_lex_state = 2}, + [100] = {.lex_state = 424, .external_lex_state = 2}, + [101] = {.lex_state = 549, .external_lex_state = 2}, + [102] = {.lex_state = 549, .external_lex_state = 2}, + [103] = {.lex_state = 549, .external_lex_state = 2}, + [104] = {.lex_state = 549, .external_lex_state = 2}, + [105] = {.lex_state = 549, .external_lex_state = 2}, + [106] = {.lex_state = 549, .external_lex_state = 2}, + [107] = {.lex_state = 549, .external_lex_state = 2}, + [108] = {.lex_state = 549, .external_lex_state = 2}, + [109] = {.lex_state = 549, .external_lex_state = 2}, + [110] = {.lex_state = 549, .external_lex_state = 2}, + [111] = {.lex_state = 549, .external_lex_state = 2}, + [112] = {.lex_state = 549, .external_lex_state = 2}, + [113] = {.lex_state = 549, .external_lex_state = 2}, + [114] = {.lex_state = 549, .external_lex_state = 2}, + [115] = {.lex_state = 549, .external_lex_state = 2}, + [116] = {.lex_state = 549, .external_lex_state = 2}, + [117] = {.lex_state = 549, .external_lex_state = 2}, + [118] = {.lex_state = 549, .external_lex_state = 2}, + [119] = {.lex_state = 549, .external_lex_state = 2}, + [120] = {.lex_state = 549, .external_lex_state = 2}, + [121] = {.lex_state = 549, .external_lex_state = 2}, + [122] = {.lex_state = 549, .external_lex_state = 2}, + [123] = {.lex_state = 549, .external_lex_state = 2}, + [124] = {.lex_state = 549, .external_lex_state = 2}, + [125] = {.lex_state = 549, .external_lex_state = 2}, + [126] = {.lex_state = 549, .external_lex_state = 2}, + [127] = {.lex_state = 549, .external_lex_state = 2}, + [128] = {.lex_state = 549, .external_lex_state = 2}, + [129] = {.lex_state = 549, .external_lex_state = 2}, + [130] = {.lex_state = 549, .external_lex_state = 2}, + [131] = {.lex_state = 549, .external_lex_state = 2}, + [132] = {.lex_state = 549, .external_lex_state = 2}, + [133] = {.lex_state = 549, .external_lex_state = 2}, + [134] = {.lex_state = 549, .external_lex_state = 2}, + [135] = {.lex_state = 549, .external_lex_state = 2}, + [136] = {.lex_state = 549, .external_lex_state = 2}, + [137] = {.lex_state = 549, .external_lex_state = 2}, + [138] = {.lex_state = 549, .external_lex_state = 2}, + [139] = {.lex_state = 549, .external_lex_state = 2}, + [140] = {.lex_state = 549, .external_lex_state = 2}, + [141] = {.lex_state = 549, .external_lex_state = 2}, + [142] = {.lex_state = 549, .external_lex_state = 2}, + [143] = {.lex_state = 549, .external_lex_state = 2}, + [144] = {.lex_state = 549, .external_lex_state = 2}, + [145] = {.lex_state = 549, .external_lex_state = 2}, + [146] = {.lex_state = 549, .external_lex_state = 2}, + [147] = {.lex_state = 549, .external_lex_state = 2}, + [148] = {.lex_state = 549, .external_lex_state = 2}, + [149] = {.lex_state = 549, .external_lex_state = 2}, + [150] = {.lex_state = 549, .external_lex_state = 2}, + [151] = {.lex_state = 549, .external_lex_state = 2}, + [152] = {.lex_state = 549, .external_lex_state = 2}, + [153] = {.lex_state = 549, .external_lex_state = 2}, + [154] = {.lex_state = 549, .external_lex_state = 2}, + [155] = {.lex_state = 549, .external_lex_state = 2}, + [156] = {.lex_state = 549, .external_lex_state = 2}, + [157] = {.lex_state = 549, .external_lex_state = 2}, + [158] = {.lex_state = 549, .external_lex_state = 2}, + [159] = {.lex_state = 549, .external_lex_state = 2}, + [160] = {.lex_state = 549, .external_lex_state = 2}, + [161] = {.lex_state = 549, .external_lex_state = 2}, + [162] = {.lex_state = 549, .external_lex_state = 2}, + [163] = {.lex_state = 549, .external_lex_state = 2}, + [164] = {.lex_state = 549, .external_lex_state = 2}, + [165] = {.lex_state = 549, .external_lex_state = 2}, + [166] = {.lex_state = 549, .external_lex_state = 2}, + [167] = {.lex_state = 549, .external_lex_state = 2}, + [168] = {.lex_state = 549, .external_lex_state = 2}, + [169] = {.lex_state = 549, .external_lex_state = 2}, + [170] = {.lex_state = 549, .external_lex_state = 2}, + [171] = {.lex_state = 549, .external_lex_state = 2}, + [172] = {.lex_state = 549, .external_lex_state = 2}, + [173] = {.lex_state = 549, .external_lex_state = 2}, + [174] = {.lex_state = 549, .external_lex_state = 2}, + [175] = {.lex_state = 549, .external_lex_state = 2}, + [176] = {.lex_state = 549, .external_lex_state = 2}, + [177] = {.lex_state = 549, .external_lex_state = 2}, + [178] = {.lex_state = 549, .external_lex_state = 2}, + [179] = {.lex_state = 549, .external_lex_state = 2}, + [180] = {.lex_state = 549, .external_lex_state = 2}, + [181] = {.lex_state = 549, .external_lex_state = 2}, + [182] = {.lex_state = 549, .external_lex_state = 2}, + [183] = {.lex_state = 549, .external_lex_state = 2}, + [184] = {.lex_state = 549, .external_lex_state = 2}, + [185] = {.lex_state = 549, .external_lex_state = 2}, + [186] = {.lex_state = 549, .external_lex_state = 2}, + [187] = {.lex_state = 549, .external_lex_state = 2}, + [188] = {.lex_state = 549, .external_lex_state = 2}, + [189] = {.lex_state = 549, .external_lex_state = 2}, + [190] = {.lex_state = 549, .external_lex_state = 2}, + [191] = {.lex_state = 549, .external_lex_state = 2}, + [192] = {.lex_state = 549, .external_lex_state = 2}, + [193] = {.lex_state = 549, .external_lex_state = 2}, + [194] = {.lex_state = 549, .external_lex_state = 2}, + [195] = {.lex_state = 549, .external_lex_state = 2}, + [196] = {.lex_state = 549, .external_lex_state = 2}, + [197] = {.lex_state = 549, .external_lex_state = 2}, + [198] = {.lex_state = 549, .external_lex_state = 2}, + [199] = {.lex_state = 549, .external_lex_state = 2}, + [200] = {.lex_state = 549, .external_lex_state = 2}, + [201] = {.lex_state = 549, .external_lex_state = 2}, + [202] = {.lex_state = 549, .external_lex_state = 2}, + [203] = {.lex_state = 549, .external_lex_state = 2}, + [204] = {.lex_state = 549, .external_lex_state = 2}, + [205] = {.lex_state = 549, .external_lex_state = 2}, + [206] = {.lex_state = 549, .external_lex_state = 2}, + [207] = {.lex_state = 549, .external_lex_state = 2}, + [208] = {.lex_state = 549, .external_lex_state = 2}, + [209] = {.lex_state = 549, .external_lex_state = 2}, + [210] = {.lex_state = 549, .external_lex_state = 2}, + [211] = {.lex_state = 549, .external_lex_state = 2}, + [212] = {.lex_state = 549, .external_lex_state = 2}, + [213] = {.lex_state = 549, .external_lex_state = 2}, + [214] = {.lex_state = 549, .external_lex_state = 2}, + [215] = {.lex_state = 549, .external_lex_state = 2}, + [216] = {.lex_state = 549, .external_lex_state = 2}, + [217] = {.lex_state = 549, .external_lex_state = 2}, + [218] = {.lex_state = 549, .external_lex_state = 2}, + [219] = {.lex_state = 549, .external_lex_state = 2}, + [220] = {.lex_state = 549, .external_lex_state = 2}, + [221] = {.lex_state = 549, .external_lex_state = 2}, + [222] = {.lex_state = 549, .external_lex_state = 2}, + [223] = {.lex_state = 549, .external_lex_state = 2}, + [224] = {.lex_state = 549, .external_lex_state = 2}, + [225] = {.lex_state = 549, .external_lex_state = 2}, + [226] = {.lex_state = 549, .external_lex_state = 2}, + [227] = {.lex_state = 549, .external_lex_state = 2}, + [228] = {.lex_state = 549, .external_lex_state = 2}, + [229] = {.lex_state = 549, .external_lex_state = 2}, + [230] = {.lex_state = 549, .external_lex_state = 2}, + [231] = {.lex_state = 549, .external_lex_state = 2}, + [232] = {.lex_state = 549, .external_lex_state = 2}, + [233] = {.lex_state = 549, .external_lex_state = 2}, + [234] = {.lex_state = 549, .external_lex_state = 2}, + [235] = {.lex_state = 549, .external_lex_state = 2}, + [236] = {.lex_state = 549, .external_lex_state = 2}, + [237] = {.lex_state = 549, .external_lex_state = 2}, + [238] = {.lex_state = 549, .external_lex_state = 2}, + [239] = {.lex_state = 549, .external_lex_state = 2}, + [240] = {.lex_state = 549, .external_lex_state = 2}, + [241] = {.lex_state = 549, .external_lex_state = 2}, + [242] = {.lex_state = 549, .external_lex_state = 2}, + [243] = {.lex_state = 549, .external_lex_state = 2}, + [244] = {.lex_state = 549, .external_lex_state = 2}, + [245] = {.lex_state = 549, .external_lex_state = 2}, + [246] = {.lex_state = 549, .external_lex_state = 2}, + [247] = {.lex_state = 549, .external_lex_state = 2}, + [248] = {.lex_state = 549, .external_lex_state = 2}, + [249] = {.lex_state = 549, .external_lex_state = 2}, + [250] = {.lex_state = 549, .external_lex_state = 2}, + [251] = {.lex_state = 549, .external_lex_state = 2}, + [252] = {.lex_state = 549, .external_lex_state = 2}, + [253] = {.lex_state = 549, .external_lex_state = 2}, + [254] = {.lex_state = 549, .external_lex_state = 2}, + [255] = {.lex_state = 549, .external_lex_state = 2}, + [256] = {.lex_state = 549, .external_lex_state = 2}, + [257] = {.lex_state = 549, .external_lex_state = 2}, + [258] = {.lex_state = 549, .external_lex_state = 2}, + [259] = {.lex_state = 549, .external_lex_state = 2}, + [260] = {.lex_state = 549, .external_lex_state = 2}, + [261] = {.lex_state = 549, .external_lex_state = 2}, + [262] = {.lex_state = 549, .external_lex_state = 2}, + [263] = {.lex_state = 549, .external_lex_state = 2}, + [264] = {.lex_state = 549, .external_lex_state = 2}, + [265] = {.lex_state = 549, .external_lex_state = 2}, + [266] = {.lex_state = 549, .external_lex_state = 2}, + [267] = {.lex_state = 549, .external_lex_state = 2}, + [268] = {.lex_state = 549, .external_lex_state = 2}, + [269] = {.lex_state = 549, .external_lex_state = 2}, + [270] = {.lex_state = 549, .external_lex_state = 2}, + [271] = {.lex_state = 549, .external_lex_state = 2}, + [272] = {.lex_state = 549, .external_lex_state = 2}, + [273] = {.lex_state = 549, .external_lex_state = 2}, + [274] = {.lex_state = 549, .external_lex_state = 2}, + [275] = {.lex_state = 549, .external_lex_state = 2}, + [276] = {.lex_state = 549, .external_lex_state = 2}, + [277] = {.lex_state = 549, .external_lex_state = 2}, + [278] = {.lex_state = 549, .external_lex_state = 2}, + [279] = {.lex_state = 549, .external_lex_state = 2}, + [280] = {.lex_state = 549, .external_lex_state = 2}, + [281] = {.lex_state = 549, .external_lex_state = 2}, + [282] = {.lex_state = 549, .external_lex_state = 2}, + [283] = {.lex_state = 549, .external_lex_state = 2}, + [284] = {.lex_state = 549, .external_lex_state = 2}, + [285] = {.lex_state = 549, .external_lex_state = 2}, + [286] = {.lex_state = 549, .external_lex_state = 2}, + [287] = {.lex_state = 549, .external_lex_state = 2}, + [288] = {.lex_state = 549, .external_lex_state = 2}, + [289] = {.lex_state = 549, .external_lex_state = 2}, + [290] = {.lex_state = 549, .external_lex_state = 2}, + [291] = {.lex_state = 549, .external_lex_state = 2}, + [292] = {.lex_state = 549, .external_lex_state = 2}, + [293] = {.lex_state = 549, .external_lex_state = 2}, + [294] = {.lex_state = 549, .external_lex_state = 2}, + [295] = {.lex_state = 549, .external_lex_state = 2}, + [296] = {.lex_state = 549, .external_lex_state = 2}, + [297] = {.lex_state = 549, .external_lex_state = 2}, + [298] = {.lex_state = 549, .external_lex_state = 2}, + [299] = {.lex_state = 549, .external_lex_state = 2}, + [300] = {.lex_state = 549, .external_lex_state = 2}, + [301] = {.lex_state = 549, .external_lex_state = 2}, + [302] = {.lex_state = 549, .external_lex_state = 2}, + [303] = {.lex_state = 549, .external_lex_state = 2}, + [304] = {.lex_state = 549, .external_lex_state = 2}, + [305] = {.lex_state = 549, .external_lex_state = 2}, + [306] = {.lex_state = 549, .external_lex_state = 2}, + [307] = {.lex_state = 549, .external_lex_state = 2}, + [308] = {.lex_state = 549, .external_lex_state = 2}, + [309] = {.lex_state = 549, .external_lex_state = 2}, + [310] = {.lex_state = 549, .external_lex_state = 2}, + [311] = {.lex_state = 549, .external_lex_state = 2}, + [312] = {.lex_state = 549, .external_lex_state = 2}, + [313] = {.lex_state = 549, .external_lex_state = 2}, + [314] = {.lex_state = 549, .external_lex_state = 2}, + [315] = {.lex_state = 549, .external_lex_state = 2}, + [316] = {.lex_state = 549, .external_lex_state = 2}, + [317] = {.lex_state = 549, .external_lex_state = 2}, + [318] = {.lex_state = 549, .external_lex_state = 2}, + [319] = {.lex_state = 549, .external_lex_state = 2}, + [320] = {.lex_state = 549, .external_lex_state = 2}, + [321] = {.lex_state = 549, .external_lex_state = 2}, + [322] = {.lex_state = 549, .external_lex_state = 2}, + [323] = {.lex_state = 549, .external_lex_state = 2}, + [324] = {.lex_state = 549, .external_lex_state = 2}, + [325] = {.lex_state = 549, .external_lex_state = 2}, + [326] = {.lex_state = 549, .external_lex_state = 2}, + [327] = {.lex_state = 549, .external_lex_state = 2}, + [328] = {.lex_state = 549, .external_lex_state = 2}, + [329] = {.lex_state = 549, .external_lex_state = 2}, + [330] = {.lex_state = 549, .external_lex_state = 2}, + [331] = {.lex_state = 549, .external_lex_state = 2}, + [332] = {.lex_state = 549, .external_lex_state = 2}, + [333] = {.lex_state = 549, .external_lex_state = 2}, + [334] = {.lex_state = 549, .external_lex_state = 2}, + [335] = {.lex_state = 549, .external_lex_state = 2}, + [336] = {.lex_state = 549, .external_lex_state = 2}, + [337] = {.lex_state = 549, .external_lex_state = 2}, + [338] = {.lex_state = 549, .external_lex_state = 2}, + [339] = {.lex_state = 549, .external_lex_state = 2}, + [340] = {.lex_state = 549, .external_lex_state = 2}, + [341] = {.lex_state = 549, .external_lex_state = 2}, + [342] = {.lex_state = 549, .external_lex_state = 2}, + [343] = {.lex_state = 549, .external_lex_state = 2}, + [344] = {.lex_state = 549, .external_lex_state = 2}, + [345] = {.lex_state = 549, .external_lex_state = 2}, + [346] = {.lex_state = 549, .external_lex_state = 2}, + [347] = {.lex_state = 549, .external_lex_state = 2}, + [348] = {.lex_state = 549, .external_lex_state = 2}, + [349] = {.lex_state = 549, .external_lex_state = 2}, + [350] = {.lex_state = 549, .external_lex_state = 2}, + [351] = {.lex_state = 549, .external_lex_state = 2}, + [352] = {.lex_state = 549, .external_lex_state = 2}, + [353] = {.lex_state = 549, .external_lex_state = 2}, + [354] = {.lex_state = 549, .external_lex_state = 2}, + [355] = {.lex_state = 549, .external_lex_state = 2}, + [356] = {.lex_state = 549, .external_lex_state = 2}, + [357] = {.lex_state = 549, .external_lex_state = 2}, + [358] = {.lex_state = 549, .external_lex_state = 2}, + [359] = {.lex_state = 549, .external_lex_state = 2}, + [360] = {.lex_state = 549, .external_lex_state = 2}, + [361] = {.lex_state = 549, .external_lex_state = 2}, + [362] = {.lex_state = 549, .external_lex_state = 2}, + [363] = {.lex_state = 549, .external_lex_state = 2}, + [364] = {.lex_state = 549, .external_lex_state = 2}, + [365] = {.lex_state = 549, .external_lex_state = 2}, + [366] = {.lex_state = 549, .external_lex_state = 2}, + [367] = {.lex_state = 549, .external_lex_state = 2}, + [368] = {.lex_state = 549, .external_lex_state = 2}, + [369] = {.lex_state = 549, .external_lex_state = 2}, + [370] = {.lex_state = 549, .external_lex_state = 2}, + [371] = {.lex_state = 549, .external_lex_state = 2}, + [372] = {.lex_state = 549, .external_lex_state = 2}, + [373] = {.lex_state = 549, .external_lex_state = 2}, + [374] = {.lex_state = 549, .external_lex_state = 2}, + [375] = {.lex_state = 549, .external_lex_state = 2}, + [376] = {.lex_state = 549, .external_lex_state = 2}, + [377] = {.lex_state = 549, .external_lex_state = 2}, + [378] = {.lex_state = 549, .external_lex_state = 2}, + [379] = {.lex_state = 549, .external_lex_state = 2}, + [380] = {.lex_state = 549, .external_lex_state = 2}, + [381] = {.lex_state = 549, .external_lex_state = 2}, + [382] = {.lex_state = 549, .external_lex_state = 2}, + [383] = {.lex_state = 549, .external_lex_state = 2}, + [384] = {.lex_state = 549, .external_lex_state = 2}, + [385] = {.lex_state = 549, .external_lex_state = 2}, + [386] = {.lex_state = 549, .external_lex_state = 2}, + [387] = {.lex_state = 549, .external_lex_state = 2}, + [388] = {.lex_state = 549, .external_lex_state = 2}, + [389] = {.lex_state = 549, .external_lex_state = 2}, + [390] = {.lex_state = 549, .external_lex_state = 2}, + [391] = {.lex_state = 549, .external_lex_state = 2}, + [392] = {.lex_state = 549, .external_lex_state = 2}, + [393] = {.lex_state = 549, .external_lex_state = 2}, + [394] = {.lex_state = 549, .external_lex_state = 2}, + [395] = {.lex_state = 549, .external_lex_state = 2}, + [396] = {.lex_state = 549, .external_lex_state = 2}, + [397] = {.lex_state = 549, .external_lex_state = 2}, + [398] = {.lex_state = 549, .external_lex_state = 2}, + [399] = {.lex_state = 549, .external_lex_state = 2}, + [400] = {.lex_state = 549, .external_lex_state = 2}, + [401] = {.lex_state = 549, .external_lex_state = 2}, + [402] = {.lex_state = 549, .external_lex_state = 2}, + [403] = {.lex_state = 549, .external_lex_state = 2}, + [404] = {.lex_state = 549, .external_lex_state = 2}, + [405] = {.lex_state = 549, .external_lex_state = 2}, + [406] = {.lex_state = 549, .external_lex_state = 2}, + [407] = {.lex_state = 549, .external_lex_state = 2}, + [408] = {.lex_state = 549, .external_lex_state = 2}, + [409] = {.lex_state = 549, .external_lex_state = 2}, + [410] = {.lex_state = 549, .external_lex_state = 2}, + [411] = {.lex_state = 549, .external_lex_state = 2}, + [412] = {.lex_state = 549, .external_lex_state = 2}, + [413] = {.lex_state = 549, .external_lex_state = 2}, + [414] = {.lex_state = 549, .external_lex_state = 2}, + [415] = {.lex_state = 549, .external_lex_state = 2}, + [416] = {.lex_state = 549, .external_lex_state = 2}, + [417] = {.lex_state = 549, .external_lex_state = 2}, + [418] = {.lex_state = 549, .external_lex_state = 2}, + [419] = {.lex_state = 549, .external_lex_state = 2}, + [420] = {.lex_state = 549, .external_lex_state = 2}, + [421] = {.lex_state = 549, .external_lex_state = 2}, + [422] = {.lex_state = 549, .external_lex_state = 2}, + [423] = {.lex_state = 549, .external_lex_state = 2}, + [424] = {.lex_state = 549, .external_lex_state = 2}, + [425] = {.lex_state = 549, .external_lex_state = 2}, + [426] = {.lex_state = 549, .external_lex_state = 2}, + [427] = {.lex_state = 549, .external_lex_state = 2}, + [428] = {.lex_state = 549, .external_lex_state = 2}, + [429] = {.lex_state = 549, .external_lex_state = 2}, + [430] = {.lex_state = 549, .external_lex_state = 2}, + [431] = {.lex_state = 549, .external_lex_state = 2}, + [432] = {.lex_state = 549, .external_lex_state = 2}, + [433] = {.lex_state = 549, .external_lex_state = 2}, + [434] = {.lex_state = 549, .external_lex_state = 2}, + [435] = {.lex_state = 549, .external_lex_state = 2}, + [436] = {.lex_state = 549, .external_lex_state = 2}, + [437] = {.lex_state = 549, .external_lex_state = 2}, + [438] = {.lex_state = 549, .external_lex_state = 2}, + [439] = {.lex_state = 549, .external_lex_state = 2}, + [440] = {.lex_state = 549, .external_lex_state = 2}, + [441] = {.lex_state = 549, .external_lex_state = 2}, + [442] = {.lex_state = 549, .external_lex_state = 2}, + [443] = {.lex_state = 549, .external_lex_state = 2}, + [444] = {.lex_state = 549, .external_lex_state = 2}, + [445] = {.lex_state = 549, .external_lex_state = 2}, + [446] = {.lex_state = 549, .external_lex_state = 2}, + [447] = {.lex_state = 549, .external_lex_state = 2}, + [448] = {.lex_state = 549, .external_lex_state = 2}, + [449] = {.lex_state = 549, .external_lex_state = 2}, + [450] = {.lex_state = 549, .external_lex_state = 2}, + [451] = {.lex_state = 409, .external_lex_state = 7}, + [452] = {.lex_state = 410, .external_lex_state = 8}, + [453] = {.lex_state = 409, .external_lex_state = 7}, + [454] = {.lex_state = 409, .external_lex_state = 7}, + [455] = {.lex_state = 409, .external_lex_state = 7}, + [456] = {.lex_state = 409, .external_lex_state = 7}, + [457] = {.lex_state = 406, .external_lex_state = 8}, + [458] = {.lex_state = 407, .external_lex_state = 8}, + [459] = {.lex_state = 409, .external_lex_state = 7}, + [460] = {.lex_state = 408, .external_lex_state = 8}, + [461] = {.lex_state = 409, .external_lex_state = 7}, + [462] = {.lex_state = 409, .external_lex_state = 7}, + [463] = {.lex_state = 406, .external_lex_state = 8}, [464] = {.lex_state = 12, .external_lex_state = 9}, [465] = {.lex_state = 12, .external_lex_state = 9}, - [466] = {.lex_state = 240, .external_lex_state = 10}, - [467] = {.lex_state = 240, .external_lex_state = 10}, - [468] = {.lex_state = 112, .external_lex_state = 4}, - [469] = {.lex_state = 112, .external_lex_state = 4}, - [470] = {.lex_state = 112, .external_lex_state = 4}, - [471] = {.lex_state = 112, .external_lex_state = 4}, - [472] = {.lex_state = 112, .external_lex_state = 4}, - [473] = {.lex_state = 112, .external_lex_state = 4}, - [474] = {.lex_state = 112, .external_lex_state = 4}, - [475] = {.lex_state = 112, .external_lex_state = 4}, - [476] = {.lex_state = 112, .external_lex_state = 4}, - [477] = {.lex_state = 112, .external_lex_state = 4}, - [478] = {.lex_state = 112, .external_lex_state = 4}, - [479] = {.lex_state = 112, .external_lex_state = 4}, - [480] = {.lex_state = 112, .external_lex_state = 4}, - [481] = {.lex_state = 112, .external_lex_state = 4}, - [482] = {.lex_state = 112, .external_lex_state = 4}, - [483] = {.lex_state = 112, .external_lex_state = 4}, - [484] = {.lex_state = 112, .external_lex_state = 4}, - [485] = {.lex_state = 112, .external_lex_state = 4}, - [486] = {.lex_state = 112, .external_lex_state = 4}, - [487] = {.lex_state = 112, .external_lex_state = 4}, - [488] = {.lex_state = 112, .external_lex_state = 4}, - [489] = {.lex_state = 112, .external_lex_state = 4}, - [490] = {.lex_state = 112, .external_lex_state = 4}, - [491] = {.lex_state = 112, .external_lex_state = 4}, - [492] = {.lex_state = 112, .external_lex_state = 4}, - [493] = {.lex_state = 174, .external_lex_state = 11}, - [494] = {.lex_state = 174, .external_lex_state = 11}, - [495] = {.lex_state = 174, .external_lex_state = 11}, - [496] = {.lex_state = 263, .external_lex_state = 5}, - [497] = {.lex_state = 263, .external_lex_state = 5}, - [498] = {.lex_state = 263, .external_lex_state = 5}, - [499] = {.lex_state = 263, .external_lex_state = 5}, - [500] = {.lex_state = 263, .external_lex_state = 5}, - [501] = {.lex_state = 263, .external_lex_state = 5}, - [502] = {.lex_state = 174, .external_lex_state = 11}, - [503] = {.lex_state = 263, .external_lex_state = 5}, - [504] = {.lex_state = 263, .external_lex_state = 5}, - [505] = {.lex_state = 263, .external_lex_state = 5}, - [506] = {.lex_state = 263, .external_lex_state = 5}, - [507] = {.lex_state = 263, .external_lex_state = 5}, - [508] = {.lex_state = 263, .external_lex_state = 5}, - [509] = {.lex_state = 263, .external_lex_state = 5}, - [510] = {.lex_state = 263, .external_lex_state = 5}, - [511] = {.lex_state = 263, .external_lex_state = 5}, - [512] = {.lex_state = 263, .external_lex_state = 5}, - [513] = {.lex_state = 263, .external_lex_state = 5}, - [514] = {.lex_state = 263, .external_lex_state = 5}, - [515] = {.lex_state = 263, .external_lex_state = 5}, - [516] = {.lex_state = 263, .external_lex_state = 5}, - [517] = {.lex_state = 263, .external_lex_state = 5}, - [518] = {.lex_state = 263, .external_lex_state = 5}, - [519] = {.lex_state = 263, .external_lex_state = 5}, - [520] = {.lex_state = 263, .external_lex_state = 5}, - [521] = {.lex_state = 263, .external_lex_state = 5}, - [522] = {.lex_state = 264, .external_lex_state = 12}, - [523] = {.lex_state = 264, .external_lex_state = 12}, - [524] = {.lex_state = 264, .external_lex_state = 12}, - [525] = {.lex_state = 264, .external_lex_state = 12}, - [526] = {.lex_state = 258, .external_lex_state = 2}, - [527] = {.lex_state = 258, .external_lex_state = 2}, - [528] = {.lex_state = 177, .external_lex_state = 13}, - [529] = {.lex_state = 177, .external_lex_state = 13}, - [530] = {.lex_state = 180, .external_lex_state = 11}, - [531] = {.lex_state = 180, .external_lex_state = 11}, - [532] = {.lex_state = 177, .external_lex_state = 14}, - [533] = {.lex_state = 527, .external_lex_state = 11}, - [534] = {.lex_state = 527, .external_lex_state = 11}, - [535] = {.lex_state = 177, .external_lex_state = 14}, - [536] = {.lex_state = 527, .external_lex_state = 11}, - [537] = {.lex_state = 527, .external_lex_state = 11}, - [538] = {.lex_state = 163, .external_lex_state = 15}, - [539] = {.lex_state = 163, .external_lex_state = 15}, - [540] = {.lex_state = 177, .external_lex_state = 14}, - [541] = {.lex_state = 180, .external_lex_state = 16}, - [542] = {.lex_state = 180, .external_lex_state = 16}, - [543] = {.lex_state = 527, .external_lex_state = 11}, - [544] = {.lex_state = 527, .external_lex_state = 11}, - [545] = {.lex_state = 527, .external_lex_state = 11}, - [546] = {.lex_state = 186, .external_lex_state = 17}, - [547] = {.lex_state = 180, .external_lex_state = 16}, - [548] = {.lex_state = 186, .external_lex_state = 17}, - [549] = {.lex_state = 176, .external_lex_state = 9}, - [550] = {.lex_state = 176, .external_lex_state = 9}, - [551] = {.lex_state = 186, .external_lex_state = 17}, - [552] = {.lex_state = 179, .external_lex_state = 18}, - [553] = {.lex_state = 179, .external_lex_state = 18}, - [554] = {.lex_state = 527, .external_lex_state = 11}, - [555] = {.lex_state = 182, .external_lex_state = 9}, - [556] = {.lex_state = 528, .external_lex_state = 9}, - [557] = {.lex_state = 527, .external_lex_state = 16}, - [558] = {.lex_state = 528, .external_lex_state = 9}, - [559] = {.lex_state = 189, .external_lex_state = 19}, - [560] = {.lex_state = 527, .external_lex_state = 16}, - [561] = {.lex_state = 527, .external_lex_state = 16}, - [562] = {.lex_state = 527, .external_lex_state = 16}, - [563] = {.lex_state = 189, .external_lex_state = 19}, - [564] = {.lex_state = 182, .external_lex_state = 9}, - [565] = {.lex_state = 189, .external_lex_state = 19}, - [566] = {.lex_state = 527, .external_lex_state = 16}, - [567] = {.lex_state = 188, .external_lex_state = 20}, - [568] = {.lex_state = 188, .external_lex_state = 20}, - [569] = {.lex_state = 527, .external_lex_state = 16}, - [570] = {.lex_state = 530, .external_lex_state = 19}, - [571] = {.lex_state = 527, .external_lex_state = 16}, - [572] = {.lex_state = 191, .external_lex_state = 20}, - [573] = {.lex_state = 195, .external_lex_state = 17}, - [574] = {.lex_state = 527, .external_lex_state = 16}, - [575] = {.lex_state = 195, .external_lex_state = 17}, - [576] = {.lex_state = 530, .external_lex_state = 19}, - [577] = {.lex_state = 530, .external_lex_state = 19}, - [578] = {.lex_state = 531, .external_lex_state = 20}, - [579] = {.lex_state = 528, .external_lex_state = 9}, - [580] = {.lex_state = 528, .external_lex_state = 9}, - [581] = {.lex_state = 530, .external_lex_state = 19}, - [582] = {.lex_state = 527, .external_lex_state = 16}, - [583] = {.lex_state = 195, .external_lex_state = 17}, - [584] = {.lex_state = 527, .external_lex_state = 16}, - [585] = {.lex_state = 530, .external_lex_state = 19}, - [586] = {.lex_state = 530, .external_lex_state = 19}, - [587] = {.lex_state = 527, .external_lex_state = 16}, - [588] = {.lex_state = 531, .external_lex_state = 20}, - [589] = {.lex_state = 191, .external_lex_state = 20}, - [590] = {.lex_state = 186, .external_lex_state = 21}, - [591] = {.lex_state = 195, .external_lex_state = 21}, - [592] = {.lex_state = 530, .external_lex_state = 19}, - [593] = {.lex_state = 195, .external_lex_state = 21}, - [594] = {.lex_state = 530, .external_lex_state = 19}, - [595] = {.lex_state = 195, .external_lex_state = 21}, - [596] = {.lex_state = 180, .external_lex_state = 11}, - [597] = {.lex_state = 197, .external_lex_state = 17}, - [598] = {.lex_state = 186, .external_lex_state = 21}, - [599] = {.lex_state = 542, .external_lex_state = 2}, - [600] = {.lex_state = 180, .external_lex_state = 11}, - [601] = {.lex_state = 198, .external_lex_state = 19}, - [602] = {.lex_state = 530, .external_lex_state = 19}, - [603] = {.lex_state = 197, .external_lex_state = 17}, - [604] = {.lex_state = 195, .external_lex_state = 17}, - [605] = {.lex_state = 197, .external_lex_state = 17}, - [606] = {.lex_state = 531, .external_lex_state = 20}, - [607] = {.lex_state = 195, .external_lex_state = 17}, - [608] = {.lex_state = 531, .external_lex_state = 20}, - [609] = {.lex_state = 198, .external_lex_state = 19}, - [610] = {.lex_state = 530, .external_lex_state = 19}, - [611] = {.lex_state = 197, .external_lex_state = 17}, - [612] = {.lex_state = 530, .external_lex_state = 19}, - [613] = {.lex_state = 186, .external_lex_state = 21}, - [614] = {.lex_state = 198, .external_lex_state = 19}, - [615] = {.lex_state = 198, .external_lex_state = 22}, - [616] = {.lex_state = 201, .external_lex_state = 21}, - [617] = {.lex_state = 299, .external_lex_state = 23}, - [618] = {.lex_state = 295, .external_lex_state = 2}, - [619] = {.lex_state = 295, .external_lex_state = 2}, - [620] = {.lex_state = 299, .external_lex_state = 23}, - [621] = {.lex_state = 198, .external_lex_state = 22}, - [622] = {.lex_state = 259, .external_lex_state = 6}, - [623] = {.lex_state = 295, .external_lex_state = 2}, - [624] = {.lex_state = 542, .external_lex_state = 2}, - [625] = {.lex_state = 542, .external_lex_state = 2}, - [626] = {.lex_state = 295, .external_lex_state = 2}, - [627] = {.lex_state = 533, .external_lex_state = 19}, - [628] = {.lex_state = 200, .external_lex_state = 17}, - [629] = {.lex_state = 189, .external_lex_state = 22}, - [630] = {.lex_state = 201, .external_lex_state = 21}, - [631] = {.lex_state = 195, .external_lex_state = 21}, - [632] = {.lex_state = 189, .external_lex_state = 22}, - [633] = {.lex_state = 189, .external_lex_state = 22}, - [634] = {.lex_state = 200, .external_lex_state = 17}, - [635] = {.lex_state = 195, .external_lex_state = 21}, - [636] = {.lex_state = 295, .external_lex_state = 2}, - [637] = {.lex_state = 200, .external_lex_state = 17}, - [638] = {.lex_state = 200, .external_lex_state = 17}, - [639] = {.lex_state = 203, .external_lex_state = 19}, - [640] = {.lex_state = 203, .external_lex_state = 19}, - [641] = {.lex_state = 200, .external_lex_state = 17}, - [642] = {.lex_state = 533, .external_lex_state = 19}, - [643] = {.lex_state = 200, .external_lex_state = 17}, - [644] = {.lex_state = 295, .external_lex_state = 2}, - [645] = {.lex_state = 198, .external_lex_state = 19}, - [646] = {.lex_state = 533, .external_lex_state = 19}, - [647] = {.lex_state = 203, .external_lex_state = 19}, - [648] = {.lex_state = 198, .external_lex_state = 19}, - [649] = {.lex_state = 533, .external_lex_state = 19}, - [650] = {.lex_state = 295, .external_lex_state = 2}, - [651] = {.lex_state = 533, .external_lex_state = 19}, - [652] = {.lex_state = 203, .external_lex_state = 19}, - [653] = {.lex_state = 198, .external_lex_state = 22}, - [654] = {.lex_state = 533, .external_lex_state = 19}, - [655] = {.lex_state = 259, .external_lex_state = 6}, - [656] = {.lex_state = 295, .external_lex_state = 2}, - [657] = {.lex_state = 201, .external_lex_state = 21}, - [658] = {.lex_state = 198, .external_lex_state = 22}, - [659] = {.lex_state = 262, .external_lex_state = 24}, - [660] = {.lex_state = 207, .external_lex_state = 22}, - [661] = {.lex_state = 262, .external_lex_state = 24}, - [662] = {.lex_state = 206, .external_lex_state = 19}, - [663] = {.lex_state = 209, .external_lex_state = 19}, - [664] = {.lex_state = 530, .external_lex_state = 22}, - [665] = {.lex_state = 198, .external_lex_state = 22}, - [666] = {.lex_state = 209, .external_lex_state = 19}, - [667] = {.lex_state = 530, .external_lex_state = 22}, - [668] = {.lex_state = 206, .external_lex_state = 19}, - [669] = {.lex_state = 535, .external_lex_state = 19}, - [670] = {.lex_state = 209, .external_lex_state = 19}, - [671] = {.lex_state = 262, .external_lex_state = 24}, - [672] = {.lex_state = 533, .external_lex_state = 22}, - [673] = {.lex_state = 533, .external_lex_state = 19}, - [674] = {.lex_state = 209, .external_lex_state = 19}, - [675] = {.lex_state = 180, .external_lex_state = 16}, - [676] = {.lex_state = 209, .external_lex_state = 19}, - [677] = {.lex_state = 206, .external_lex_state = 19}, - [678] = {.lex_state = 533, .external_lex_state = 22}, - [679] = {.lex_state = 209, .external_lex_state = 19}, - [680] = {.lex_state = 207, .external_lex_state = 22}, - [681] = {.lex_state = 201, .external_lex_state = 21}, - [682] = {.lex_state = 533, .external_lex_state = 19}, - [683] = {.lex_state = 535, .external_lex_state = 19}, - [684] = {.lex_state = 533, .external_lex_state = 22}, - [685] = {.lex_state = 262, .external_lex_state = 24}, - [686] = {.lex_state = 533, .external_lex_state = 19}, - [687] = {.lex_state = 535, .external_lex_state = 19}, - [688] = {.lex_state = 180, .external_lex_state = 16}, - [689] = {.lex_state = 533, .external_lex_state = 19}, - [690] = {.lex_state = 530, .external_lex_state = 22}, - [691] = {.lex_state = 533, .external_lex_state = 22}, - [692] = {.lex_state = 206, .external_lex_state = 19}, - [693] = {.lex_state = 530, .external_lex_state = 22}, - [694] = {.lex_state = 533, .external_lex_state = 19}, - [695] = {.lex_state = 530, .external_lex_state = 22}, - [696] = {.lex_state = 214, .external_lex_state = 9}, - [697] = {.lex_state = 262, .external_lex_state = 24}, - [698] = {.lex_state = 262, .external_lex_state = 24}, - [699] = {.lex_state = 214, .external_lex_state = 9}, - [700] = {.lex_state = 535, .external_lex_state = 19}, - [701] = {.lex_state = 262, .external_lex_state = 24}, - [702] = {.lex_state = 533, .external_lex_state = 22}, - [703] = {.lex_state = 180, .external_lex_state = 16}, - [704] = {.lex_state = 533, .external_lex_state = 19}, - [705] = {.lex_state = 533, .external_lex_state = 22}, - [706] = {.lex_state = 201, .external_lex_state = 21}, - [707] = {.lex_state = 207, .external_lex_state = 22}, - [708] = {.lex_state = 533, .external_lex_state = 19}, - [709] = {.lex_state = 530, .external_lex_state = 22}, - [710] = {.lex_state = 216, .external_lex_state = 19}, - [711] = {.lex_state = 262, .external_lex_state = 24}, - [712] = {.lex_state = 262, .external_lex_state = 24}, - [713] = {.lex_state = 262, .external_lex_state = 24}, - [714] = {.lex_state = 534, .external_lex_state = 22}, - [715] = {.lex_state = 533, .external_lex_state = 22}, - [716] = {.lex_state = 536, .external_lex_state = 19}, - [717] = {.lex_state = 536, .external_lex_state = 19}, - [718] = {.lex_state = 530, .external_lex_state = 22}, - [719] = {.lex_state = 533, .external_lex_state = 22}, - [720] = {.lex_state = 533, .external_lex_state = 22}, - [721] = {.lex_state = 536, .external_lex_state = 19}, - [722] = {.lex_state = 207, .external_lex_state = 22}, - [723] = {.lex_state = 536, .external_lex_state = 19}, - [724] = {.lex_state = 207, .external_lex_state = 22}, - [725] = {.lex_state = 536, .external_lex_state = 19}, - [726] = {.lex_state = 530, .external_lex_state = 22}, - [727] = {.lex_state = 299, .external_lex_state = 25}, - [728] = {.lex_state = 213, .external_lex_state = 26}, - [729] = {.lex_state = 213, .external_lex_state = 26}, - [730] = {.lex_state = 262, .external_lex_state = 24}, - [731] = {.lex_state = 530, .external_lex_state = 22}, - [732] = {.lex_state = 248, .external_lex_state = 27}, - [733] = {.lex_state = 533, .external_lex_state = 22}, - [734] = {.lex_state = 262, .external_lex_state = 24}, - [735] = {.lex_state = 536, .external_lex_state = 19}, - [736] = {.lex_state = 213, .external_lex_state = 26}, - [737] = {.lex_state = 248, .external_lex_state = 27}, - [738] = {.lex_state = 533, .external_lex_state = 22}, - [739] = {.lex_state = 533, .external_lex_state = 22}, - [740] = {.lex_state = 216, .external_lex_state = 19}, - [741] = {.lex_state = 534, .external_lex_state = 22}, - [742] = {.lex_state = 534, .external_lex_state = 22}, - [743] = {.lex_state = 530, .external_lex_state = 22}, - [744] = {.lex_state = 213, .external_lex_state = 26}, - [745] = {.lex_state = 213, .external_lex_state = 26}, - [746] = {.lex_state = 189, .external_lex_state = 19}, - [747] = {.lex_state = 534, .external_lex_state = 22}, - [748] = {.lex_state = 189, .external_lex_state = 19}, - [749] = {.lex_state = 535, .external_lex_state = 19}, - [750] = {.lex_state = 535, .external_lex_state = 19}, - [751] = {.lex_state = 299, .external_lex_state = 25}, - [752] = {.lex_state = 299, .external_lex_state = 25}, - [753] = {.lex_state = 213, .external_lex_state = 26}, - [754] = {.lex_state = 533, .external_lex_state = 22}, - [755] = {.lex_state = 533, .external_lex_state = 22}, - [756] = {.lex_state = 216, .external_lex_state = 19}, - [757] = {.lex_state = 534, .external_lex_state = 22}, - [758] = {.lex_state = 213, .external_lex_state = 26}, - [759] = {.lex_state = 533, .external_lex_state = 19}, - [760] = {.lex_state = 262, .external_lex_state = 24}, - [761] = {.lex_state = 530, .external_lex_state = 22}, - [762] = {.lex_state = 262, .external_lex_state = 24}, - [763] = {.lex_state = 262, .external_lex_state = 24}, - [764] = {.lex_state = 533, .external_lex_state = 22}, - [765] = {.lex_state = 216, .external_lex_state = 19}, - [766] = {.lex_state = 216, .external_lex_state = 19}, - [767] = {.lex_state = 220, .external_lex_state = 20}, - [768] = {.lex_state = 220, .external_lex_state = 20}, - [769] = {.lex_state = 213, .external_lex_state = 26}, - [770] = {.lex_state = 213, .external_lex_state = 26}, - [771] = {.lex_state = 213, .external_lex_state = 26}, - [772] = {.lex_state = 533, .external_lex_state = 19}, - [773] = {.lex_state = 534, .external_lex_state = 22}, - [774] = {.lex_state = 216, .external_lex_state = 19}, - [775] = {.lex_state = 535, .external_lex_state = 19}, - [776] = {.lex_state = 535, .external_lex_state = 19}, - [777] = {.lex_state = 189, .external_lex_state = 19}, - [778] = {.lex_state = 533, .external_lex_state = 22}, - [779] = {.lex_state = 534, .external_lex_state = 22}, - [780] = {.lex_state = 260, .external_lex_state = 2}, - [781] = {.lex_state = 534, .external_lex_state = 22}, - [782] = {.lex_state = 249, .external_lex_state = 28}, - [783] = {.lex_state = 534, .external_lex_state = 22}, - [784] = {.lex_state = 536, .external_lex_state = 19}, - [785] = {.lex_state = 533, .external_lex_state = 22}, - [786] = {.lex_state = 534, .external_lex_state = 22}, - [787] = {.lex_state = 536, .external_lex_state = 19}, - [788] = {.lex_state = 534, .external_lex_state = 22}, - [789] = {.lex_state = 534, .external_lex_state = 22}, - [790] = {.lex_state = 533, .external_lex_state = 22}, - [791] = {.lex_state = 534, .external_lex_state = 22}, - [792] = {.lex_state = 533, .external_lex_state = 22}, - [793] = {.lex_state = 536, .external_lex_state = 19}, - [794] = {.lex_state = 542, .external_lex_state = 2}, - [795] = {.lex_state = 536, .external_lex_state = 19}, - [796] = {.lex_state = 536, .external_lex_state = 19}, - [797] = {.lex_state = 308, .external_lex_state = 29}, - [798] = {.lex_state = 534, .external_lex_state = 22}, - [799] = {.lex_state = 308, .external_lex_state = 29}, - [800] = {.lex_state = 542, .external_lex_state = 2}, - [801] = {.lex_state = 536, .external_lex_state = 19}, - [802] = {.lex_state = 542, .external_lex_state = 2}, - [803] = {.lex_state = 308, .external_lex_state = 29}, - [804] = {.lex_state = 534, .external_lex_state = 22}, - [805] = {.lex_state = 249, .external_lex_state = 28}, - [806] = {.lex_state = 198, .external_lex_state = 19}, - [807] = {.lex_state = 195, .external_lex_state = 17}, - [808] = {.lex_state = 215, .external_lex_state = 30}, - [809] = {.lex_state = 195, .external_lex_state = 17}, - [810] = {.lex_state = 542, .external_lex_state = 2}, - [811] = {.lex_state = 198, .external_lex_state = 19}, - [812] = {.lex_state = 542, .external_lex_state = 2}, - [813] = {.lex_state = 215, .external_lex_state = 30}, - [814] = {.lex_state = 215, .external_lex_state = 30}, - [815] = {.lex_state = 215, .external_lex_state = 30}, - [816] = {.lex_state = 198, .external_lex_state = 19}, - [817] = {.lex_state = 302, .external_lex_state = 31}, - [818] = {.lex_state = 195, .external_lex_state = 17}, - [819] = {.lex_state = 215, .external_lex_state = 30}, - [820] = {.lex_state = 215, .external_lex_state = 30}, - [821] = {.lex_state = 302, .external_lex_state = 31}, - [822] = {.lex_state = 195, .external_lex_state = 17}, - [823] = {.lex_state = 302, .external_lex_state = 31}, - [824] = {.lex_state = 215, .external_lex_state = 30}, - [825] = {.lex_state = 534, .external_lex_state = 22}, - [826] = {.lex_state = 534, .external_lex_state = 22}, - [827] = {.lex_state = 542, .external_lex_state = 2}, - [828] = {.lex_state = 534, .external_lex_state = 22}, - [829] = {.lex_state = 534, .external_lex_state = 22}, - [830] = {.lex_state = 302, .external_lex_state = 31}, - [831] = {.lex_state = 215, .external_lex_state = 30}, - [832] = {.lex_state = 215, .external_lex_state = 32}, - [833] = {.lex_state = 198, .external_lex_state = 19}, - [834] = {.lex_state = 215, .external_lex_state = 32}, - [835] = {.lex_state = 198, .external_lex_state = 19}, - [836] = {.lex_state = 198, .external_lex_state = 19}, - [837] = {.lex_state = 217, .external_lex_state = 4}, - [838] = {.lex_state = 217, .external_lex_state = 4}, - [839] = {.lex_state = 198, .external_lex_state = 19}, - [840] = {.lex_state = 250, .external_lex_state = 31}, - [841] = {.lex_state = 217, .external_lex_state = 4}, - [842] = {.lex_state = 250, .external_lex_state = 31}, - [843] = {.lex_state = 215, .external_lex_state = 30}, - [844] = {.lex_state = 215, .external_lex_state = 30}, - [845] = {.lex_state = 215, .external_lex_state = 30}, - [846] = {.lex_state = 215, .external_lex_state = 30}, - [847] = {.lex_state = 198, .external_lex_state = 19}, - [848] = {.lex_state = 215, .external_lex_state = 30}, - [849] = {.lex_state = 198, .external_lex_state = 19}, - [850] = {.lex_state = 217, .external_lex_state = 4}, - [851] = {.lex_state = 298, .external_lex_state = 29}, - [852] = {.lex_state = 217, .external_lex_state = 4}, - [853] = {.lex_state = 217, .external_lex_state = 4}, - [854] = {.lex_state = 215, .external_lex_state = 32}, - [855] = {.lex_state = 215, .external_lex_state = 30}, - [856] = {.lex_state = 215, .external_lex_state = 30}, - [857] = {.lex_state = 215, .external_lex_state = 30}, - [858] = {.lex_state = 298, .external_lex_state = 29}, - [859] = {.lex_state = 215, .external_lex_state = 32}, - [860] = {.lex_state = 198, .external_lex_state = 22}, - [861] = {.lex_state = 215, .external_lex_state = 32}, - [862] = {.lex_state = 198, .external_lex_state = 22}, - [863] = {.lex_state = 198, .external_lex_state = 22}, - [864] = {.lex_state = 215, .external_lex_state = 30}, - [865] = {.lex_state = 189, .external_lex_state = 22}, - [866] = {.lex_state = 215, .external_lex_state = 30}, - [867] = {.lex_state = 302, .external_lex_state = 33}, - [868] = {.lex_state = 215, .external_lex_state = 30}, - [869] = {.lex_state = 215, .external_lex_state = 30}, - [870] = {.lex_state = 298, .external_lex_state = 29}, - [871] = {.lex_state = 215, .external_lex_state = 30}, - [872] = {.lex_state = 215, .external_lex_state = 30}, - [873] = {.lex_state = 222, .external_lex_state = 19}, - [874] = {.lex_state = 215, .external_lex_state = 32}, - [875] = {.lex_state = 189, .external_lex_state = 22}, - [876] = {.lex_state = 215, .external_lex_state = 32}, - [877] = {.lex_state = 222, .external_lex_state = 19}, - [878] = {.lex_state = 189, .external_lex_state = 22}, - [879] = {.lex_state = 302, .external_lex_state = 33}, - [880] = {.lex_state = 215, .external_lex_state = 32}, - [881] = {.lex_state = 250, .external_lex_state = 31}, - [882] = {.lex_state = 302, .external_lex_state = 31}, - [883] = {.lex_state = 250, .external_lex_state = 31}, - [884] = {.lex_state = 215, .external_lex_state = 30}, - [885] = {.lex_state = 215, .external_lex_state = 32}, - [886] = {.lex_state = 217, .external_lex_state = 4}, - [887] = {.lex_state = 215, .external_lex_state = 30}, - [888] = {.lex_state = 215, .external_lex_state = 30}, - [889] = {.lex_state = 215, .external_lex_state = 30}, - [890] = {.lex_state = 222, .external_lex_state = 19}, - [891] = {.lex_state = 215, .external_lex_state = 32}, - [892] = {.lex_state = 222, .external_lex_state = 19}, - [893] = {.lex_state = 215, .external_lex_state = 32}, - [894] = {.lex_state = 215, .external_lex_state = 32}, - [895] = {.lex_state = 302, .external_lex_state = 33}, - [896] = {.lex_state = 224, .external_lex_state = 19}, - [897] = {.lex_state = 298, .external_lex_state = 34}, - [898] = {.lex_state = 215, .external_lex_state = 32}, - [899] = {.lex_state = 224, .external_lex_state = 19}, - [900] = {.lex_state = 215, .external_lex_state = 32}, - [901] = {.lex_state = 215, .external_lex_state = 32}, - [902] = {.lex_state = 268, .external_lex_state = 35}, - [903] = {.lex_state = 298, .external_lex_state = 34}, - [904] = {.lex_state = 268, .external_lex_state = 35}, - [905] = {.lex_state = 298, .external_lex_state = 29}, - [906] = {.lex_state = 224, .external_lex_state = 19}, - [907] = {.lex_state = 537, .external_lex_state = 4}, - [908] = {.lex_state = 198, .external_lex_state = 22}, - [909] = {.lex_state = 198, .external_lex_state = 22}, - [910] = {.lex_state = 215, .external_lex_state = 32}, - [911] = {.lex_state = 224, .external_lex_state = 19}, - [912] = {.lex_state = 215, .external_lex_state = 32}, - [913] = {.lex_state = 533, .external_lex_state = 19}, - [914] = {.lex_state = 217, .external_lex_state = 4}, - [915] = {.lex_state = 217, .external_lex_state = 4}, - [916] = {.lex_state = 217, .external_lex_state = 4}, - [917] = {.lex_state = 215, .external_lex_state = 32}, - [918] = {.lex_state = 215, .external_lex_state = 32}, - [919] = {.lex_state = 215, .external_lex_state = 32}, - [920] = {.lex_state = 537, .external_lex_state = 4}, - [921] = {.lex_state = 217, .external_lex_state = 4}, - [922] = {.lex_state = 215, .external_lex_state = 32}, - [923] = {.lex_state = 217, .external_lex_state = 4}, - [924] = {.lex_state = 215, .external_lex_state = 32}, - [925] = {.lex_state = 296, .external_lex_state = 36}, - [926] = {.lex_state = 177, .external_lex_state = 13}, - [927] = {.lex_state = 217, .external_lex_state = 4}, - [928] = {.lex_state = 217, .external_lex_state = 4}, - [929] = {.lex_state = 217, .external_lex_state = 4}, - [930] = {.lex_state = 215, .external_lex_state = 32}, - [931] = {.lex_state = 217, .external_lex_state = 4}, - [932] = {.lex_state = 537, .external_lex_state = 4}, - [933] = {.lex_state = 296, .external_lex_state = 36}, - [934] = {.lex_state = 217, .external_lex_state = 4}, - [935] = {.lex_state = 537, .external_lex_state = 4}, - [936] = {.lex_state = 298, .external_lex_state = 34}, - [937] = {.lex_state = 296, .external_lex_state = 36}, - [938] = {.lex_state = 537, .external_lex_state = 4}, - [939] = {.lex_state = 302, .external_lex_state = 33}, - [940] = {.lex_state = 537, .external_lex_state = 4}, - [941] = {.lex_state = 224, .external_lex_state = 19}, - [942] = {.lex_state = 224, .external_lex_state = 19}, - [943] = {.lex_state = 252, .external_lex_state = 31}, - [944] = {.lex_state = 302, .external_lex_state = 33}, - [945] = {.lex_state = 533, .external_lex_state = 19}, - [946] = {.lex_state = 252, .external_lex_state = 31}, - [947] = {.lex_state = 537, .external_lex_state = 4}, - [948] = {.lex_state = 533, .external_lex_state = 19}, - [949] = {.lex_state = 298, .external_lex_state = 29}, - [950] = {.lex_state = 308, .external_lex_state = 34}, - [951] = {.lex_state = 296, .external_lex_state = 36}, - [952] = {.lex_state = 177, .external_lex_state = 13}, - [953] = {.lex_state = 251, .external_lex_state = 29}, - [954] = {.lex_state = 251, .external_lex_state = 29}, - [955] = {.lex_state = 296, .external_lex_state = 36}, - [956] = {.lex_state = 251, .external_lex_state = 29}, - [957] = {.lex_state = 537, .external_lex_state = 4}, - [958] = {.lex_state = 296, .external_lex_state = 36}, - [959] = {.lex_state = 537, .external_lex_state = 4}, - [960] = {.lex_state = 251, .external_lex_state = 29}, - [961] = {.lex_state = 533, .external_lex_state = 19}, - [962] = {.lex_state = 308, .external_lex_state = 34}, - [963] = {.lex_state = 215, .external_lex_state = 32}, - [964] = {.lex_state = 217, .external_lex_state = 4}, - [965] = {.lex_state = 537, .external_lex_state = 4}, - [966] = {.lex_state = 537, .external_lex_state = 4}, - [967] = {.lex_state = 305, .external_lex_state = 33}, - [968] = {.lex_state = 217, .external_lex_state = 4}, - [969] = {.lex_state = 217, .external_lex_state = 37}, - [970] = {.lex_state = 217, .external_lex_state = 37}, - [971] = {.lex_state = 305, .external_lex_state = 33}, - [972] = {.lex_state = 207, .external_lex_state = 22}, - [973] = {.lex_state = 207, .external_lex_state = 22}, - [974] = {.lex_state = 217, .external_lex_state = 37}, - [975] = {.lex_state = 215, .external_lex_state = 32}, - [976] = {.lex_state = 207, .external_lex_state = 22}, - [977] = {.lex_state = 215, .external_lex_state = 32}, - [978] = {.lex_state = 217, .external_lex_state = 37}, - [979] = {.lex_state = 308, .external_lex_state = 34}, - [980] = {.lex_state = 217, .external_lex_state = 4}, - [981] = {.lex_state = 305, .external_lex_state = 33}, - [982] = {.lex_state = 217, .external_lex_state = 4}, - [983] = {.lex_state = 537, .external_lex_state = 4}, - [984] = {.lex_state = 215, .external_lex_state = 32}, - [985] = {.lex_state = 217, .external_lex_state = 37}, - [986] = {.lex_state = 533, .external_lex_state = 19}, - [987] = {.lex_state = 215, .external_lex_state = 32}, - [988] = {.lex_state = 217, .external_lex_state = 4}, - [989] = {.lex_state = 296, .external_lex_state = 36}, - [990] = {.lex_state = 217, .external_lex_state = 4}, - [991] = {.lex_state = 533, .external_lex_state = 19}, - [992] = {.lex_state = 217, .external_lex_state = 37}, - [993] = {.lex_state = 217, .external_lex_state = 37}, - [994] = {.lex_state = 217, .external_lex_state = 37}, - [995] = {.lex_state = 217, .external_lex_state = 37}, - [996] = {.lex_state = 537, .external_lex_state = 4}, - [997] = {.lex_state = 296, .external_lex_state = 36}, - [998] = {.lex_state = 217, .external_lex_state = 4}, - [999] = {.lex_state = 217, .external_lex_state = 4}, - [1000] = {.lex_state = 217, .external_lex_state = 37}, - [1001] = {.lex_state = 217, .external_lex_state = 37}, - [1002] = {.lex_state = 533, .external_lex_state = 19}, - [1003] = {.lex_state = 217, .external_lex_state = 37}, - [1004] = {.lex_state = 217, .external_lex_state = 4}, - [1005] = {.lex_state = 215, .external_lex_state = 32}, - [1006] = {.lex_state = 533, .external_lex_state = 19}, - [1007] = {.lex_state = 537, .external_lex_state = 4}, - [1008] = {.lex_state = 215, .external_lex_state = 32}, - [1009] = {.lex_state = 215, .external_lex_state = 32}, - [1010] = {.lex_state = 253, .external_lex_state = 29}, - [1011] = {.lex_state = 221, .external_lex_state = 38}, - [1012] = {.lex_state = 537, .external_lex_state = 4}, - [1013] = {.lex_state = 537, .external_lex_state = 4}, - [1014] = {.lex_state = 177, .external_lex_state = 14}, - [1015] = {.lex_state = 537, .external_lex_state = 4}, - [1016] = {.lex_state = 537, .external_lex_state = 4}, - [1017] = {.lex_state = 537, .external_lex_state = 4}, - [1018] = {.lex_state = 537, .external_lex_state = 4}, - [1019] = {.lex_state = 537, .external_lex_state = 4}, - [1020] = {.lex_state = 537, .external_lex_state = 4}, - [1021] = {.lex_state = 537, .external_lex_state = 37}, - [1022] = {.lex_state = 537, .external_lex_state = 4}, - [1023] = {.lex_state = 537, .external_lex_state = 37}, - [1024] = {.lex_state = 267, .external_lex_state = 39}, - [1025] = {.lex_state = 267, .external_lex_state = 39}, - [1026] = {.lex_state = 180, .external_lex_state = 11}, - [1027] = {.lex_state = 537, .external_lex_state = 4}, - [1028] = {.lex_state = 533, .external_lex_state = 19}, - [1029] = {.lex_state = 537, .external_lex_state = 4}, - [1030] = {.lex_state = 533, .external_lex_state = 19}, - [1031] = {.lex_state = 537, .external_lex_state = 4}, - [1032] = {.lex_state = 537, .external_lex_state = 37}, - [1033] = {.lex_state = 537, .external_lex_state = 4}, - [1034] = {.lex_state = 537, .external_lex_state = 4}, - [1035] = {.lex_state = 306, .external_lex_state = 34}, - [1036] = {.lex_state = 533, .external_lex_state = 19}, - [1037] = {.lex_state = 537, .external_lex_state = 4}, - [1038] = {.lex_state = 537, .external_lex_state = 4}, - [1039] = {.lex_state = 537, .external_lex_state = 37}, - [1040] = {.lex_state = 537, .external_lex_state = 37}, - [1041] = {.lex_state = 253, .external_lex_state = 29}, - [1042] = {.lex_state = 537, .external_lex_state = 37}, - [1043] = {.lex_state = 537, .external_lex_state = 4}, - [1044] = {.lex_state = 537, .external_lex_state = 4}, - [1045] = {.lex_state = 177, .external_lex_state = 14}, - [1046] = {.lex_state = 537, .external_lex_state = 4}, - [1047] = {.lex_state = 537, .external_lex_state = 4}, - [1048] = {.lex_state = 253, .external_lex_state = 29}, - [1049] = {.lex_state = 537, .external_lex_state = 4}, - [1050] = {.lex_state = 253, .external_lex_state = 29}, - [1051] = {.lex_state = 265, .external_lex_state = 39}, - [1052] = {.lex_state = 177, .external_lex_state = 13}, - [1053] = {.lex_state = 265, .external_lex_state = 39}, - [1054] = {.lex_state = 537, .external_lex_state = 4}, - [1055] = {.lex_state = 537, .external_lex_state = 4}, - [1056] = {.lex_state = 306, .external_lex_state = 34}, - [1057] = {.lex_state = 537, .external_lex_state = 4}, - [1058] = {.lex_state = 537, .external_lex_state = 4}, - [1059] = {.lex_state = 533, .external_lex_state = 19}, - [1060] = {.lex_state = 537, .external_lex_state = 4}, - [1061] = {.lex_state = 537, .external_lex_state = 4}, - [1062] = {.lex_state = 537, .external_lex_state = 4}, - [1063] = {.lex_state = 537, .external_lex_state = 4}, - [1064] = {.lex_state = 537, .external_lex_state = 4}, - [1065] = {.lex_state = 537, .external_lex_state = 37}, - [1066] = {.lex_state = 537, .external_lex_state = 37}, - [1067] = {.lex_state = 221, .external_lex_state = 38}, - [1068] = {.lex_state = 221, .external_lex_state = 38}, - [1069] = {.lex_state = 537, .external_lex_state = 37}, - [1070] = {.lex_state = 268, .external_lex_state = 40}, - [1071] = {.lex_state = 268, .external_lex_state = 40}, - [1072] = {.lex_state = 537, .external_lex_state = 37}, - [1073] = {.lex_state = 223, .external_lex_state = 38}, - [1074] = {.lex_state = 223, .external_lex_state = 38}, - [1075] = {.lex_state = 306, .external_lex_state = 34}, - [1076] = {.lex_state = 537, .external_lex_state = 37}, - [1077] = {.lex_state = 537, .external_lex_state = 4}, - [1078] = {.lex_state = 537, .external_lex_state = 4}, - [1079] = {.lex_state = 223, .external_lex_state = 38}, - [1080] = {.lex_state = 537, .external_lex_state = 4}, - [1081] = {.lex_state = 223, .external_lex_state = 38}, - [1082] = {.lex_state = 177, .external_lex_state = 13}, - [1083] = {.lex_state = 537, .external_lex_state = 4}, - [1084] = {.lex_state = 537, .external_lex_state = 4}, - [1085] = {.lex_state = 537, .external_lex_state = 4}, - [1086] = {.lex_state = 221, .external_lex_state = 38}, - [1087] = {.lex_state = 221, .external_lex_state = 38}, - [1088] = {.lex_state = 221, .external_lex_state = 38}, - [1089] = {.lex_state = 223, .external_lex_state = 38}, - [1090] = {.lex_state = 298, .external_lex_state = 34}, - [1091] = {.lex_state = 537, .external_lex_state = 37}, - [1092] = {.lex_state = 221, .external_lex_state = 38}, - [1093] = {.lex_state = 537, .external_lex_state = 37}, - [1094] = {.lex_state = 537, .external_lex_state = 37}, - [1095] = {.lex_state = 177, .external_lex_state = 14}, - [1096] = {.lex_state = 533, .external_lex_state = 19}, - [1097] = {.lex_state = 180, .external_lex_state = 11}, - [1098] = {.lex_state = 533, .external_lex_state = 19}, - [1099] = {.lex_state = 217, .external_lex_state = 37}, - [1100] = {.lex_state = 223, .external_lex_state = 38}, - [1101] = {.lex_state = 217, .external_lex_state = 37}, - [1102] = {.lex_state = 298, .external_lex_state = 34}, - [1103] = {.lex_state = 217, .external_lex_state = 37}, - [1104] = {.lex_state = 537, .external_lex_state = 4}, - [1105] = {.lex_state = 537, .external_lex_state = 4}, - [1106] = {.lex_state = 537, .external_lex_state = 37}, - [1107] = {.lex_state = 537, .external_lex_state = 37}, - [1108] = {.lex_state = 537, .external_lex_state = 37}, - [1109] = {.lex_state = 537, .external_lex_state = 37}, - [1110] = {.lex_state = 207, .external_lex_state = 22}, - [1111] = {.lex_state = 207, .external_lex_state = 22}, - [1112] = {.lex_state = 537, .external_lex_state = 4}, - [1113] = {.lex_state = 537, .external_lex_state = 4}, - [1114] = {.lex_state = 269, .external_lex_state = 39}, - [1115] = {.lex_state = 269, .external_lex_state = 39}, - [1116] = {.lex_state = 537, .external_lex_state = 4}, - [1117] = {.lex_state = 305, .external_lex_state = 33}, - [1118] = {.lex_state = 305, .external_lex_state = 33}, - [1119] = {.lex_state = 217, .external_lex_state = 37}, - [1120] = {.lex_state = 217, .external_lex_state = 37}, - [1121] = {.lex_state = 223, .external_lex_state = 38}, - [1122] = {.lex_state = 537, .external_lex_state = 37}, - [1123] = {.lex_state = 537, .external_lex_state = 37}, - [1124] = {.lex_state = 537, .external_lex_state = 37}, - [1125] = {.lex_state = 537, .external_lex_state = 4}, - [1126] = {.lex_state = 537, .external_lex_state = 4}, - [1127] = {.lex_state = 223, .external_lex_state = 38}, - [1128] = {.lex_state = 537, .external_lex_state = 4}, - [1129] = {.lex_state = 217, .external_lex_state = 37}, - [1130] = {.lex_state = 217, .external_lex_state = 37}, - [1131] = {.lex_state = 537, .external_lex_state = 37}, - [1132] = {.lex_state = 533, .external_lex_state = 19}, - [1133] = {.lex_state = 217, .external_lex_state = 37}, - [1134] = {.lex_state = 266, .external_lex_state = 39}, - [1135] = {.lex_state = 253, .external_lex_state = 29}, - [1136] = {.lex_state = 217, .external_lex_state = 37}, - [1137] = {.lex_state = 217, .external_lex_state = 37}, - [1138] = {.lex_state = 217, .external_lex_state = 37}, - [1139] = {.lex_state = 217, .external_lex_state = 37}, - [1140] = {.lex_state = 537, .external_lex_state = 37}, - [1141] = {.lex_state = 253, .external_lex_state = 29}, - [1142] = {.lex_state = 217, .external_lex_state = 37}, - [1143] = {.lex_state = 217, .external_lex_state = 37}, - [1144] = {.lex_state = 537, .external_lex_state = 37}, - [1145] = {.lex_state = 217, .external_lex_state = 37}, - [1146] = {.lex_state = 177, .external_lex_state = 14}, - [1147] = {.lex_state = 223, .external_lex_state = 38}, - [1148] = {.lex_state = 223, .external_lex_state = 38}, - [1149] = {.lex_state = 177, .external_lex_state = 14}, - [1150] = {.lex_state = 533, .external_lex_state = 19}, - [1151] = {.lex_state = 533, .external_lex_state = 19}, - [1152] = {.lex_state = 537, .external_lex_state = 4}, - [1153] = {.lex_state = 533, .external_lex_state = 19}, - [1154] = {.lex_state = 266, .external_lex_state = 39}, - [1155] = {.lex_state = 217, .external_lex_state = 37}, - [1156] = {.lex_state = 221, .external_lex_state = 38}, - [1157] = {.lex_state = 217, .external_lex_state = 37}, - [1158] = {.lex_state = 223, .external_lex_state = 38}, - [1159] = {.lex_state = 217, .external_lex_state = 37}, - [1160] = {.lex_state = 223, .external_lex_state = 38}, - [1161] = {.lex_state = 217, .external_lex_state = 37}, - [1162] = {.lex_state = 223, .external_lex_state = 38}, - [1163] = {.lex_state = 223, .external_lex_state = 38}, - [1164] = {.lex_state = 270, .external_lex_state = 39}, - [1165] = {.lex_state = 223, .external_lex_state = 38}, - [1166] = {.lex_state = 225, .external_lex_state = 41}, - [1167] = {.lex_state = 225, .external_lex_state = 41}, - [1168] = {.lex_state = 177, .external_lex_state = 14}, - [1169] = {.lex_state = 180, .external_lex_state = 11}, - [1170] = {.lex_state = 225, .external_lex_state = 41}, - [1171] = {.lex_state = 225, .external_lex_state = 41}, - [1172] = {.lex_state = 306, .external_lex_state = 34}, - [1173] = {.lex_state = 271, .external_lex_state = 42}, - [1174] = {.lex_state = 537, .external_lex_state = 37}, - [1175] = {.lex_state = 180, .external_lex_state = 16}, - [1176] = {.lex_state = 537, .external_lex_state = 37}, - [1177] = {.lex_state = 537, .external_lex_state = 37}, - [1178] = {.lex_state = 306, .external_lex_state = 34}, - [1179] = {.lex_state = 527, .external_lex_state = 11}, - [1180] = {.lex_state = 180, .external_lex_state = 16}, - [1181] = {.lex_state = 177, .external_lex_state = 14}, - [1182] = {.lex_state = 177, .external_lex_state = 14}, - [1183] = {.lex_state = 537, .external_lex_state = 37}, - [1184] = {.lex_state = 227, .external_lex_state = 41}, - [1185] = {.lex_state = 537, .external_lex_state = 37}, - [1186] = {.lex_state = 537, .external_lex_state = 37}, - [1187] = {.lex_state = 537, .external_lex_state = 37}, - [1188] = {.lex_state = 537, .external_lex_state = 37}, - [1189] = {.lex_state = 537, .external_lex_state = 37}, - [1190] = {.lex_state = 221, .external_lex_state = 43}, - [1191] = {.lex_state = 221, .external_lex_state = 43}, - [1192] = {.lex_state = 227, .external_lex_state = 41}, - [1193] = {.lex_state = 227, .external_lex_state = 41}, - [1194] = {.lex_state = 537, .external_lex_state = 37}, - [1195] = {.lex_state = 537, .external_lex_state = 37}, - [1196] = {.lex_state = 537, .external_lex_state = 37}, - [1197] = {.lex_state = 270, .external_lex_state = 39}, - [1198] = {.lex_state = 223, .external_lex_state = 38}, - [1199] = {.lex_state = 223, .external_lex_state = 38}, - [1200] = {.lex_state = 537, .external_lex_state = 37}, - [1201] = {.lex_state = 180, .external_lex_state = 16}, - [1202] = {.lex_state = 180, .external_lex_state = 16}, - [1203] = {.lex_state = 537, .external_lex_state = 37}, - [1204] = {.lex_state = 223, .external_lex_state = 38}, - [1205] = {.lex_state = 537, .external_lex_state = 37}, - [1206] = {.lex_state = 221, .external_lex_state = 38}, - [1207] = {.lex_state = 221, .external_lex_state = 38}, - [1208] = {.lex_state = 223, .external_lex_state = 38}, - [1209] = {.lex_state = 527, .external_lex_state = 11}, - [1210] = {.lex_state = 223, .external_lex_state = 38}, - [1211] = {.lex_state = 221, .external_lex_state = 43}, - [1212] = {.lex_state = 527, .external_lex_state = 11}, - [1213] = {.lex_state = 221, .external_lex_state = 38}, - [1214] = {.lex_state = 221, .external_lex_state = 43}, - [1215] = {.lex_state = 537, .external_lex_state = 37}, - [1216] = {.lex_state = 537, .external_lex_state = 37}, - [1217] = {.lex_state = 221, .external_lex_state = 43}, - [1218] = {.lex_state = 223, .external_lex_state = 38}, - [1219] = {.lex_state = 537, .external_lex_state = 37}, - [1220] = {.lex_state = 221, .external_lex_state = 38}, - [1221] = {.lex_state = 223, .external_lex_state = 38}, - [1222] = {.lex_state = 221, .external_lex_state = 38}, - [1223] = {.lex_state = 537, .external_lex_state = 37}, - [1224] = {.lex_state = 221, .external_lex_state = 38}, - [1225] = {.lex_state = 221, .external_lex_state = 38}, - [1226] = {.lex_state = 221, .external_lex_state = 43}, - [1227] = {.lex_state = 223, .external_lex_state = 43}, - [1228] = {.lex_state = 223, .external_lex_state = 43}, - [1229] = {.lex_state = 177, .external_lex_state = 14}, - [1230] = {.lex_state = 223, .external_lex_state = 43}, - [1231] = {.lex_state = 537, .external_lex_state = 37}, - [1232] = {.lex_state = 223, .external_lex_state = 38}, - [1233] = {.lex_state = 223, .external_lex_state = 38}, - [1234] = {.lex_state = 223, .external_lex_state = 43}, - [1235] = {.lex_state = 221, .external_lex_state = 38}, - [1236] = {.lex_state = 221, .external_lex_state = 38}, - [1237] = {.lex_state = 537, .external_lex_state = 37}, - [1238] = {.lex_state = 537, .external_lex_state = 37}, - [1239] = {.lex_state = 537, .external_lex_state = 37}, - [1240] = {.lex_state = 221, .external_lex_state = 38}, - [1241] = {.lex_state = 221, .external_lex_state = 38}, - [1242] = {.lex_state = 221, .external_lex_state = 38}, - [1243] = {.lex_state = 537, .external_lex_state = 37}, - [1244] = {.lex_state = 537, .external_lex_state = 37}, - [1245] = {.lex_state = 227, .external_lex_state = 41}, - [1246] = {.lex_state = 223, .external_lex_state = 38}, - [1247] = {.lex_state = 223, .external_lex_state = 38}, - [1248] = {.lex_state = 537, .external_lex_state = 37}, - [1249] = {.lex_state = 227, .external_lex_state = 41}, - [1250] = {.lex_state = 227, .external_lex_state = 41}, - [1251] = {.lex_state = 225, .external_lex_state = 41}, - [1252] = {.lex_state = 221, .external_lex_state = 38}, - [1253] = {.lex_state = 221, .external_lex_state = 38}, - [1254] = {.lex_state = 223, .external_lex_state = 38}, - [1255] = {.lex_state = 223, .external_lex_state = 38}, - [1256] = {.lex_state = 223, .external_lex_state = 38}, - [1257] = {.lex_state = 225, .external_lex_state = 41}, - [1258] = {.lex_state = 227, .external_lex_state = 41}, - [1259] = {.lex_state = 537, .external_lex_state = 37}, - [1260] = {.lex_state = 180, .external_lex_state = 11}, - [1261] = {.lex_state = 227, .external_lex_state = 41}, - [1262] = {.lex_state = 225, .external_lex_state = 41}, - [1263] = {.lex_state = 227, .external_lex_state = 41}, - [1264] = {.lex_state = 227, .external_lex_state = 41}, - [1265] = {.lex_state = 227, .external_lex_state = 41}, - [1266] = {.lex_state = 225, .external_lex_state = 41}, - [1267] = {.lex_state = 527, .external_lex_state = 11}, - [1268] = {.lex_state = 537, .external_lex_state = 37}, - [1269] = {.lex_state = 227, .external_lex_state = 41}, - [1270] = {.lex_state = 227, .external_lex_state = 41}, - [1271] = {.lex_state = 537, .external_lex_state = 37}, - [1272] = {.lex_state = 537, .external_lex_state = 37}, - [1273] = {.lex_state = 537, .external_lex_state = 37}, - [1274] = {.lex_state = 537, .external_lex_state = 37}, - [1275] = {.lex_state = 227, .external_lex_state = 41}, - [1276] = {.lex_state = 537, .external_lex_state = 37}, - [1277] = {.lex_state = 537, .external_lex_state = 37}, - [1278] = {.lex_state = 221, .external_lex_state = 38}, - [1279] = {.lex_state = 537, .external_lex_state = 37}, - [1280] = {.lex_state = 537, .external_lex_state = 37}, - [1281] = {.lex_state = 177, .external_lex_state = 14}, - [1282] = {.lex_state = 537, .external_lex_state = 37}, - [1283] = {.lex_state = 537, .external_lex_state = 37}, - [1284] = {.lex_state = 537, .external_lex_state = 37}, - [1285] = {.lex_state = 537, .external_lex_state = 37}, - [1286] = {.lex_state = 221, .external_lex_state = 38}, - [1287] = {.lex_state = 537, .external_lex_state = 37}, - [1288] = {.lex_state = 221, .external_lex_state = 38}, - [1289] = {.lex_state = 537, .external_lex_state = 37}, - [1290] = {.lex_state = 223, .external_lex_state = 43}, - [1291] = {.lex_state = 223, .external_lex_state = 43}, - [1292] = {.lex_state = 537, .external_lex_state = 37}, - [1293] = {.lex_state = 537, .external_lex_state = 37}, - [1294] = {.lex_state = 537, .external_lex_state = 37}, - [1295] = {.lex_state = 180, .external_lex_state = 16}, - [1296] = {.lex_state = 537, .external_lex_state = 37}, - [1297] = {.lex_state = 221, .external_lex_state = 38}, - [1298] = {.lex_state = 223, .external_lex_state = 38}, - [1299] = {.lex_state = 221, .external_lex_state = 38}, - [1300] = {.lex_state = 537, .external_lex_state = 37}, - [1301] = {.lex_state = 177, .external_lex_state = 14}, - [1302] = {.lex_state = 223, .external_lex_state = 38}, - [1303] = {.lex_state = 537, .external_lex_state = 37}, - [1304] = {.lex_state = 537, .external_lex_state = 37}, - [1305] = {.lex_state = 223, .external_lex_state = 38}, - [1306] = {.lex_state = 223, .external_lex_state = 38}, - [1307] = {.lex_state = 227, .external_lex_state = 44}, - [1308] = {.lex_state = 229, .external_lex_state = 43}, - [1309] = {.lex_state = 223, .external_lex_state = 43}, - [1310] = {.lex_state = 223, .external_lex_state = 43}, - [1311] = {.lex_state = 227, .external_lex_state = 44}, - [1312] = {.lex_state = 273, .external_lex_state = 45}, - [1313] = {.lex_state = 527, .external_lex_state = 16}, - [1314] = {.lex_state = 213, .external_lex_state = 26}, - [1315] = {.lex_state = 225, .external_lex_state = 41}, - [1316] = {.lex_state = 225, .external_lex_state = 41}, - [1317] = {.lex_state = 213, .external_lex_state = 26}, - [1318] = {.lex_state = 538, .external_lex_state = 41}, - [1319] = {.lex_state = 225, .external_lex_state = 41}, - [1320] = {.lex_state = 539, .external_lex_state = 41}, - [1321] = {.lex_state = 527, .external_lex_state = 16}, - [1322] = {.lex_state = 538, .external_lex_state = 41}, - [1323] = {.lex_state = 227, .external_lex_state = 41}, - [1324] = {.lex_state = 227, .external_lex_state = 41}, - [1325] = {.lex_state = 225, .external_lex_state = 44}, - [1326] = {.lex_state = 225, .external_lex_state = 44}, - [1327] = {.lex_state = 227, .external_lex_state = 41}, - [1328] = {.lex_state = 180, .external_lex_state = 16}, - [1329] = {.lex_state = 180, .external_lex_state = 16}, - [1330] = {.lex_state = 539, .external_lex_state = 41}, - [1331] = {.lex_state = 539, .external_lex_state = 41}, - [1332] = {.lex_state = 213, .external_lex_state = 26}, - [1333] = {.lex_state = 539, .external_lex_state = 41}, - [1334] = {.lex_state = 227, .external_lex_state = 41}, - [1335] = {.lex_state = 527, .external_lex_state = 16}, - [1336] = {.lex_state = 539, .external_lex_state = 41}, - [1337] = {.lex_state = 538, .external_lex_state = 41}, - [1338] = {.lex_state = 180, .external_lex_state = 16}, - [1339] = {.lex_state = 539, .external_lex_state = 41}, - [1340] = {.lex_state = 227, .external_lex_state = 41}, - [1341] = {.lex_state = 538, .external_lex_state = 41}, - [1342] = {.lex_state = 539, .external_lex_state = 41}, - [1343] = {.lex_state = 539, .external_lex_state = 41}, - [1344] = {.lex_state = 539, .external_lex_state = 41}, - [1345] = {.lex_state = 227, .external_lex_state = 41}, - [1346] = {.lex_state = 180, .external_lex_state = 16}, - [1347] = {.lex_state = 227, .external_lex_state = 44}, - [1348] = {.lex_state = 227, .external_lex_state = 41}, - [1349] = {.lex_state = 195, .external_lex_state = 17}, - [1350] = {.lex_state = 225, .external_lex_state = 41}, - [1351] = {.lex_state = 527, .external_lex_state = 11}, - [1352] = {.lex_state = 227, .external_lex_state = 41}, - [1353] = {.lex_state = 225, .external_lex_state = 41}, - [1354] = {.lex_state = 539, .external_lex_state = 41}, - [1355] = {.lex_state = 539, .external_lex_state = 41}, - [1356] = {.lex_state = 538, .external_lex_state = 41}, - [1357] = {.lex_state = 539, .external_lex_state = 41}, - [1358] = {.lex_state = 527, .external_lex_state = 16}, - [1359] = {.lex_state = 225, .external_lex_state = 41}, - [1360] = {.lex_state = 538, .external_lex_state = 41}, - [1361] = {.lex_state = 195, .external_lex_state = 17}, - [1362] = {.lex_state = 538, .external_lex_state = 41}, - [1363] = {.lex_state = 539, .external_lex_state = 41}, - [1364] = {.lex_state = 223, .external_lex_state = 43}, - [1365] = {.lex_state = 223, .external_lex_state = 43}, - [1366] = {.lex_state = 223, .external_lex_state = 43}, - [1367] = {.lex_state = 539, .external_lex_state = 41}, - [1368] = {.lex_state = 186, .external_lex_state = 17}, - [1369] = {.lex_state = 225, .external_lex_state = 44}, - [1370] = {.lex_state = 539, .external_lex_state = 41}, - [1371] = {.lex_state = 538, .external_lex_state = 41}, - [1372] = {.lex_state = 539, .external_lex_state = 41}, - [1373] = {.lex_state = 539, .external_lex_state = 41}, - [1374] = {.lex_state = 527, .external_lex_state = 16}, - [1375] = {.lex_state = 225, .external_lex_state = 41}, - [1376] = {.lex_state = 527, .external_lex_state = 11}, - [1377] = {.lex_state = 527, .external_lex_state = 16}, - [1378] = {.lex_state = 225, .external_lex_state = 41}, - [1379] = {.lex_state = 527, .external_lex_state = 16}, - [1380] = {.lex_state = 195, .external_lex_state = 17}, - [1381] = {.lex_state = 229, .external_lex_state = 43}, - [1382] = {.lex_state = 195, .external_lex_state = 17}, - [1383] = {.lex_state = 538, .external_lex_state = 41}, - [1384] = {.lex_state = 223, .external_lex_state = 43}, - [1385] = {.lex_state = 225, .external_lex_state = 41}, - [1386] = {.lex_state = 527, .external_lex_state = 11}, - [1387] = {.lex_state = 180, .external_lex_state = 16}, - [1388] = {.lex_state = 229, .external_lex_state = 43}, - [1389] = {.lex_state = 225, .external_lex_state = 41}, - [1390] = {.lex_state = 180, .external_lex_state = 16}, - [1391] = {.lex_state = 539, .external_lex_state = 41}, - [1392] = {.lex_state = 539, .external_lex_state = 41}, - [1393] = {.lex_state = 227, .external_lex_state = 41}, - [1394] = {.lex_state = 227, .external_lex_state = 44}, - [1395] = {.lex_state = 539, .external_lex_state = 41}, - [1396] = {.lex_state = 539, .external_lex_state = 41}, - [1397] = {.lex_state = 539, .external_lex_state = 41}, - [1398] = {.lex_state = 538, .external_lex_state = 41}, - [1399] = {.lex_state = 539, .external_lex_state = 41}, - [1400] = {.lex_state = 223, .external_lex_state = 43}, - [1401] = {.lex_state = 527, .external_lex_state = 16}, - [1402] = {.lex_state = 223, .external_lex_state = 43}, - [1403] = {.lex_state = 223, .external_lex_state = 43}, - [1404] = {.lex_state = 527, .external_lex_state = 11}, - [1405] = {.lex_state = 539, .external_lex_state = 41}, - [1406] = {.lex_state = 223, .external_lex_state = 43}, - [1407] = {.lex_state = 539, .external_lex_state = 41}, - [1408] = {.lex_state = 225, .external_lex_state = 41}, - [1409] = {.lex_state = 227, .external_lex_state = 41}, - [1410] = {.lex_state = 225, .external_lex_state = 41}, - [1411] = {.lex_state = 227, .external_lex_state = 41}, - [1412] = {.lex_state = 225, .external_lex_state = 44}, - [1413] = {.lex_state = 223, .external_lex_state = 43}, - [1414] = {.lex_state = 225, .external_lex_state = 41}, - [1415] = {.lex_state = 225, .external_lex_state = 44}, - [1416] = {.lex_state = 225, .external_lex_state = 41}, - [1417] = {.lex_state = 221, .external_lex_state = 43}, - [1418] = {.lex_state = 221, .external_lex_state = 43}, - [1419] = {.lex_state = 225, .external_lex_state = 41}, - [1420] = {.lex_state = 225, .external_lex_state = 44}, - [1421] = {.lex_state = 539, .external_lex_state = 41}, - [1422] = {.lex_state = 221, .external_lex_state = 43}, - [1423] = {.lex_state = 221, .external_lex_state = 43}, - [1424] = {.lex_state = 227, .external_lex_state = 41}, - [1425] = {.lex_state = 226, .external_lex_state = 46}, - [1426] = {.lex_state = 226, .external_lex_state = 46}, - [1427] = {.lex_state = 227, .external_lex_state = 41}, - [1428] = {.lex_state = 227, .external_lex_state = 41}, - [1429] = {.lex_state = 195, .external_lex_state = 17}, - [1430] = {.lex_state = 227, .external_lex_state = 41}, - [1431] = {.lex_state = 527, .external_lex_state = 16}, - [1432] = {.lex_state = 221, .external_lex_state = 43}, - [1433] = {.lex_state = 195, .external_lex_state = 17}, - [1434] = {.lex_state = 221, .external_lex_state = 43}, - [1435] = {.lex_state = 221, .external_lex_state = 43}, - [1436] = {.lex_state = 527, .external_lex_state = 16}, - [1437] = {.lex_state = 221, .external_lex_state = 43}, - [1438] = {.lex_state = 221, .external_lex_state = 43}, - [1439] = {.lex_state = 221, .external_lex_state = 43}, - [1440] = {.lex_state = 225, .external_lex_state = 41}, - [1441] = {.lex_state = 229, .external_lex_state = 43}, - [1442] = {.lex_state = 225, .external_lex_state = 41}, - [1443] = {.lex_state = 538, .external_lex_state = 41}, - [1444] = {.lex_state = 229, .external_lex_state = 43}, - [1445] = {.lex_state = 539, .external_lex_state = 41}, - [1446] = {.lex_state = 539, .external_lex_state = 41}, - [1447] = {.lex_state = 538, .external_lex_state = 41}, - [1448] = {.lex_state = 186, .external_lex_state = 17}, - [1449] = {.lex_state = 227, .external_lex_state = 41}, - [1450] = {.lex_state = 221, .external_lex_state = 43}, - [1451] = {.lex_state = 229, .external_lex_state = 43}, - [1452] = {.lex_state = 221, .external_lex_state = 43}, - [1453] = {.lex_state = 221, .external_lex_state = 43}, - [1454] = {.lex_state = 227, .external_lex_state = 41}, - [1455] = {.lex_state = 221, .external_lex_state = 43}, - [1456] = {.lex_state = 221, .external_lex_state = 43}, - [1457] = {.lex_state = 227, .external_lex_state = 44}, - [1458] = {.lex_state = 221, .external_lex_state = 43}, - [1459] = {.lex_state = 221, .external_lex_state = 43}, - [1460] = {.lex_state = 538, .external_lex_state = 41}, - [1461] = {.lex_state = 223, .external_lex_state = 43}, - [1462] = {.lex_state = 223, .external_lex_state = 43}, - [1463] = {.lex_state = 223, .external_lex_state = 43}, - [1464] = {.lex_state = 223, .external_lex_state = 43}, - [1465] = {.lex_state = 227, .external_lex_state = 41}, - [1466] = {.lex_state = 227, .external_lex_state = 41}, - [1467] = {.lex_state = 538, .external_lex_state = 41}, - [1468] = {.lex_state = 227, .external_lex_state = 44}, - [1469] = {.lex_state = 225, .external_lex_state = 41}, - [1470] = {.lex_state = 538, .external_lex_state = 41}, - [1471] = {.lex_state = 223, .external_lex_state = 43}, - [1472] = {.lex_state = 225, .external_lex_state = 41}, - [1473] = {.lex_state = 223, .external_lex_state = 43}, - [1474] = {.lex_state = 195, .external_lex_state = 17}, - [1475] = {.lex_state = 538, .external_lex_state = 41}, - [1476] = {.lex_state = 223, .external_lex_state = 43}, - [1477] = {.lex_state = 223, .external_lex_state = 43}, - [1478] = {.lex_state = 221, .external_lex_state = 43}, - [1479] = {.lex_state = 221, .external_lex_state = 43}, - [1480] = {.lex_state = 186, .external_lex_state = 17}, - [1481] = {.lex_state = 538, .external_lex_state = 41}, - [1482] = {.lex_state = 539, .external_lex_state = 41}, - [1483] = {.lex_state = 538, .external_lex_state = 41}, - [1484] = {.lex_state = 538, .external_lex_state = 41}, - [1485] = {.lex_state = 227, .external_lex_state = 44}, - [1486] = {.lex_state = 538, .external_lex_state = 41}, - [1487] = {.lex_state = 538, .external_lex_state = 41}, - [1488] = {.lex_state = 538, .external_lex_state = 41}, - [1489] = {.lex_state = 539, .external_lex_state = 41}, - [1490] = {.lex_state = 538, .external_lex_state = 41}, - [1491] = {.lex_state = 538, .external_lex_state = 41}, - [1492] = {.lex_state = 538, .external_lex_state = 41}, - [1493] = {.lex_state = 538, .external_lex_state = 41}, - [1494] = {.lex_state = 538, .external_lex_state = 41}, - [1495] = {.lex_state = 538, .external_lex_state = 41}, - [1496] = {.lex_state = 225, .external_lex_state = 44}, - [1497] = {.lex_state = 227, .external_lex_state = 44}, - [1498] = {.lex_state = 186, .external_lex_state = 17}, - [1499] = {.lex_state = 538, .external_lex_state = 41}, - [1500] = {.lex_state = 538, .external_lex_state = 41}, - [1501] = {.lex_state = 229, .external_lex_state = 43}, - [1502] = {.lex_state = 538, .external_lex_state = 41}, - [1503] = {.lex_state = 225, .external_lex_state = 44}, - [1504] = {.lex_state = 229, .external_lex_state = 43}, - [1505] = {.lex_state = 539, .external_lex_state = 41}, - [1506] = {.lex_state = 229, .external_lex_state = 43}, - [1507] = {.lex_state = 229, .external_lex_state = 43}, - [1508] = {.lex_state = 538, .external_lex_state = 41}, - [1509] = {.lex_state = 198, .external_lex_state = 19}, - [1510] = {.lex_state = 227, .external_lex_state = 44}, - [1511] = {.lex_state = 539, .external_lex_state = 41}, - [1512] = {.lex_state = 539, .external_lex_state = 41}, - [1513] = {.lex_state = 229, .external_lex_state = 43}, - [1514] = {.lex_state = 229, .external_lex_state = 43}, - [1515] = {.lex_state = 229, .external_lex_state = 43}, - [1516] = {.lex_state = 227, .external_lex_state = 44}, - [1517] = {.lex_state = 229, .external_lex_state = 43}, - [1518] = {.lex_state = 227, .external_lex_state = 44}, - [1519] = {.lex_state = 539, .external_lex_state = 41}, - [1520] = {.lex_state = 229, .external_lex_state = 43}, - [1521] = {.lex_state = 527, .external_lex_state = 16}, - [1522] = {.lex_state = 186, .external_lex_state = 21}, - [1523] = {.lex_state = 539, .external_lex_state = 41}, - [1524] = {.lex_state = 233, .external_lex_state = 44}, - [1525] = {.lex_state = 229, .external_lex_state = 43}, - [1526] = {.lex_state = 233, .external_lex_state = 44}, - [1527] = {.lex_state = 227, .external_lex_state = 44}, - [1528] = {.lex_state = 538, .external_lex_state = 44}, - [1529] = {.lex_state = 539, .external_lex_state = 41}, - [1530] = {.lex_state = 229, .external_lex_state = 43}, - [1531] = {.lex_state = 538, .external_lex_state = 41}, - [1532] = {.lex_state = 229, .external_lex_state = 43}, - [1533] = {.lex_state = 229, .external_lex_state = 43}, - [1534] = {.lex_state = 195, .external_lex_state = 17}, - [1535] = {.lex_state = 186, .external_lex_state = 17}, - [1536] = {.lex_state = 538, .external_lex_state = 41}, - [1537] = {.lex_state = 538, .external_lex_state = 41}, - [1538] = {.lex_state = 538, .external_lex_state = 41}, - [1539] = {.lex_state = 198, .external_lex_state = 19}, - [1540] = {.lex_state = 538, .external_lex_state = 41}, - [1541] = {.lex_state = 539, .external_lex_state = 41}, - [1542] = {.lex_state = 186, .external_lex_state = 17}, - [1543] = {.lex_state = 527, .external_lex_state = 16}, - [1544] = {.lex_state = 539, .external_lex_state = 41}, - [1545] = {.lex_state = 539, .external_lex_state = 41}, - [1546] = {.lex_state = 229, .external_lex_state = 43}, - [1547] = {.lex_state = 538, .external_lex_state = 41}, - [1548] = {.lex_state = 538, .external_lex_state = 41}, - [1549] = {.lex_state = 538, .external_lex_state = 41}, - [1550] = {.lex_state = 539, .external_lex_state = 41}, - [1551] = {.lex_state = 195, .external_lex_state = 17}, - [1552] = {.lex_state = 527, .external_lex_state = 16}, - [1553] = {.lex_state = 539, .external_lex_state = 41}, - [1554] = {.lex_state = 539, .external_lex_state = 41}, - [1555] = {.lex_state = 539, .external_lex_state = 41}, - [1556] = {.lex_state = 195, .external_lex_state = 17}, - [1557] = {.lex_state = 538, .external_lex_state = 44}, - [1558] = {.lex_state = 538, .external_lex_state = 41}, - [1559] = {.lex_state = 539, .external_lex_state = 41}, - [1560] = {.lex_state = 539, .external_lex_state = 41}, - [1561] = {.lex_state = 195, .external_lex_state = 17}, - [1562] = {.lex_state = 198, .external_lex_state = 19}, - [1563] = {.lex_state = 538, .external_lex_state = 41}, - [1564] = {.lex_state = 539, .external_lex_state = 41}, - [1565] = {.lex_state = 539, .external_lex_state = 41}, - [1566] = {.lex_state = 539, .external_lex_state = 41}, - [1567] = {.lex_state = 198, .external_lex_state = 19}, - [1568] = {.lex_state = 225, .external_lex_state = 44}, - [1569] = {.lex_state = 225, .external_lex_state = 44}, - [1570] = {.lex_state = 539, .external_lex_state = 41}, - [1571] = {.lex_state = 538, .external_lex_state = 41}, - [1572] = {.lex_state = 217, .external_lex_state = 4}, - [1573] = {.lex_state = 527, .external_lex_state = 16}, - [1574] = {.lex_state = 186, .external_lex_state = 17}, - [1575] = {.lex_state = 539, .external_lex_state = 41}, - [1576] = {.lex_state = 261, .external_lex_state = 47}, - [1577] = {.lex_state = 227, .external_lex_state = 44}, - [1578] = {.lex_state = 229, .external_lex_state = 43}, - [1579] = {.lex_state = 229, .external_lex_state = 43}, - [1580] = {.lex_state = 538, .external_lex_state = 41}, - [1581] = {.lex_state = 229, .external_lex_state = 43}, - [1582] = {.lex_state = 538, .external_lex_state = 44}, - [1583] = {.lex_state = 539, .external_lex_state = 41}, - [1584] = {.lex_state = 227, .external_lex_state = 44}, - [1585] = {.lex_state = 227, .external_lex_state = 44}, - [1586] = {.lex_state = 539, .external_lex_state = 41}, - [1587] = {.lex_state = 539, .external_lex_state = 41}, - [1588] = {.lex_state = 225, .external_lex_state = 44}, - [1589] = {.lex_state = 538, .external_lex_state = 41}, - [1590] = {.lex_state = 539, .external_lex_state = 41}, - [1591] = {.lex_state = 225, .external_lex_state = 44}, - [1592] = {.lex_state = 227, .external_lex_state = 44}, - [1593] = {.lex_state = 225, .external_lex_state = 44}, - [1594] = {.lex_state = 227, .external_lex_state = 44}, - [1595] = {.lex_state = 538, .external_lex_state = 41}, - [1596] = {.lex_state = 539, .external_lex_state = 41}, - [1597] = {.lex_state = 538, .external_lex_state = 44}, - [1598] = {.lex_state = 538, .external_lex_state = 41}, - [1599] = {.lex_state = 539, .external_lex_state = 41}, - [1600] = {.lex_state = 225, .external_lex_state = 44}, - [1601] = {.lex_state = 539, .external_lex_state = 41}, - [1602] = {.lex_state = 538, .external_lex_state = 41}, - [1603] = {.lex_state = 273, .external_lex_state = 48}, - [1604] = {.lex_state = 195, .external_lex_state = 21}, - [1605] = {.lex_state = 539, .external_lex_state = 41}, - [1606] = {.lex_state = 198, .external_lex_state = 19}, - [1607] = {.lex_state = 195, .external_lex_state = 17}, - [1608] = {.lex_state = 198, .external_lex_state = 19}, - [1609] = {.lex_state = 225, .external_lex_state = 44}, - [1610] = {.lex_state = 225, .external_lex_state = 44}, - [1611] = {.lex_state = 527, .external_lex_state = 16}, - [1612] = {.lex_state = 225, .external_lex_state = 44}, - [1613] = {.lex_state = 527, .external_lex_state = 16}, - [1614] = {.lex_state = 539, .external_lex_state = 41}, - [1615] = {.lex_state = 261, .external_lex_state = 47}, - [1616] = {.lex_state = 227, .external_lex_state = 44}, - [1617] = {.lex_state = 227, .external_lex_state = 44}, - [1618] = {.lex_state = 198, .external_lex_state = 19}, - [1619] = {.lex_state = 538, .external_lex_state = 41}, - [1620] = {.lex_state = 261, .external_lex_state = 47}, - [1621] = {.lex_state = 539, .external_lex_state = 41}, - [1622] = {.lex_state = 527, .external_lex_state = 16}, - [1623] = {.lex_state = 538, .external_lex_state = 41}, - [1624] = {.lex_state = 225, .external_lex_state = 44}, - [1625] = {.lex_state = 539, .external_lex_state = 41}, - [1626] = {.lex_state = 539, .external_lex_state = 41}, - [1627] = {.lex_state = 198, .external_lex_state = 19}, - [1628] = {.lex_state = 539, .external_lex_state = 41}, - [1629] = {.lex_state = 195, .external_lex_state = 17}, - [1630] = {.lex_state = 539, .external_lex_state = 44}, - [1631] = {.lex_state = 186, .external_lex_state = 21}, - [1632] = {.lex_state = 539, .external_lex_state = 44}, - [1633] = {.lex_state = 539, .external_lex_state = 41}, - [1634] = {.lex_state = 195, .external_lex_state = 17}, - [1635] = {.lex_state = 195, .external_lex_state = 17}, - [1636] = {.lex_state = 261, .external_lex_state = 47}, - [1637] = {.lex_state = 539, .external_lex_state = 44}, - [1638] = {.lex_state = 539, .external_lex_state = 44}, - [1639] = {.lex_state = 195, .external_lex_state = 17}, - [1640] = {.lex_state = 233, .external_lex_state = 44}, - [1641] = {.lex_state = 229, .external_lex_state = 43}, - [1642] = {.lex_state = 229, .external_lex_state = 43}, - [1643] = {.lex_state = 198, .external_lex_state = 19}, - [1644] = {.lex_state = 538, .external_lex_state = 41}, - [1645] = {.lex_state = 233, .external_lex_state = 44}, - [1646] = {.lex_state = 189, .external_lex_state = 19}, - [1647] = {.lex_state = 538, .external_lex_state = 44}, - [1648] = {.lex_state = 273, .external_lex_state = 42}, - [1649] = {.lex_state = 539, .external_lex_state = 44}, - [1650] = {.lex_state = 538, .external_lex_state = 44}, - [1651] = {.lex_state = 539, .external_lex_state = 41}, - [1652] = {.lex_state = 538, .external_lex_state = 41}, - [1653] = {.lex_state = 217, .external_lex_state = 4}, - [1654] = {.lex_state = 213, .external_lex_state = 26}, - [1655] = {.lex_state = 225, .external_lex_state = 44}, - [1656] = {.lex_state = 527, .external_lex_state = 16}, - [1657] = {.lex_state = 225, .external_lex_state = 44}, - [1658] = {.lex_state = 195, .external_lex_state = 21}, - [1659] = {.lex_state = 233, .external_lex_state = 44}, - [1660] = {.lex_state = 539, .external_lex_state = 41}, - [1661] = {.lex_state = 539, .external_lex_state = 41}, - [1662] = {.lex_state = 539, .external_lex_state = 41}, - [1663] = {.lex_state = 538, .external_lex_state = 41}, - [1664] = {.lex_state = 538, .external_lex_state = 41}, - [1665] = {.lex_state = 538, .external_lex_state = 41}, - [1666] = {.lex_state = 225, .external_lex_state = 44}, - [1667] = {.lex_state = 195, .external_lex_state = 17}, - [1668] = {.lex_state = 539, .external_lex_state = 41}, - [1669] = {.lex_state = 227, .external_lex_state = 44}, - [1670] = {.lex_state = 213, .external_lex_state = 26}, - [1671] = {.lex_state = 225, .external_lex_state = 44}, - [1672] = {.lex_state = 538, .external_lex_state = 44}, - [1673] = {.lex_state = 527, .external_lex_state = 16}, - [1674] = {.lex_state = 227, .external_lex_state = 44}, - [1675] = {.lex_state = 539, .external_lex_state = 44}, - [1676] = {.lex_state = 227, .external_lex_state = 44}, - [1677] = {.lex_state = 225, .external_lex_state = 44}, - [1678] = {.lex_state = 227, .external_lex_state = 44}, - [1679] = {.lex_state = 261, .external_lex_state = 47}, - [1680] = {.lex_state = 539, .external_lex_state = 41}, - [1681] = {.lex_state = 538, .external_lex_state = 44}, - [1682] = {.lex_state = 539, .external_lex_state = 41}, - [1683] = {.lex_state = 539, .external_lex_state = 41}, - [1684] = {.lex_state = 539, .external_lex_state = 41}, - [1685] = {.lex_state = 261, .external_lex_state = 47}, - [1686] = {.lex_state = 539, .external_lex_state = 41}, - [1687] = {.lex_state = 539, .external_lex_state = 41}, - [1688] = {.lex_state = 539, .external_lex_state = 41}, - [1689] = {.lex_state = 538, .external_lex_state = 41}, - [1690] = {.lex_state = 539, .external_lex_state = 41}, - [1691] = {.lex_state = 538, .external_lex_state = 41}, - [1692] = {.lex_state = 538, .external_lex_state = 41}, - [1693] = {.lex_state = 538, .external_lex_state = 41}, - [1694] = {.lex_state = 539, .external_lex_state = 44}, - [1695] = {.lex_state = 539, .external_lex_state = 44}, - [1696] = {.lex_state = 538, .external_lex_state = 44}, - [1697] = {.lex_state = 538, .external_lex_state = 41}, - [1698] = {.lex_state = 261, .external_lex_state = 47}, - [1699] = {.lex_state = 189, .external_lex_state = 19}, - [1700] = {.lex_state = 539, .external_lex_state = 41}, - [1701] = {.lex_state = 227, .external_lex_state = 44}, - [1702] = {.lex_state = 539, .external_lex_state = 41}, - [1703] = {.lex_state = 195, .external_lex_state = 17}, - [1704] = {.lex_state = 539, .external_lex_state = 44}, - [1705] = {.lex_state = 538, .external_lex_state = 44}, - [1706] = {.lex_state = 198, .external_lex_state = 19}, - [1707] = {.lex_state = 198, .external_lex_state = 19}, - [1708] = {.lex_state = 539, .external_lex_state = 44}, - [1709] = {.lex_state = 227, .external_lex_state = 44}, - [1710] = {.lex_state = 539, .external_lex_state = 44}, - [1711] = {.lex_state = 539, .external_lex_state = 44}, - [1712] = {.lex_state = 527, .external_lex_state = 16}, - [1713] = {.lex_state = 225, .external_lex_state = 44}, - [1714] = {.lex_state = 538, .external_lex_state = 44}, - [1715] = {.lex_state = 217, .external_lex_state = 4}, - [1716] = {.lex_state = 527, .external_lex_state = 16}, - [1717] = {.lex_state = 217, .external_lex_state = 4}, - [1718] = {.lex_state = 225, .external_lex_state = 44}, - [1719] = {.lex_state = 217, .external_lex_state = 4}, - [1720] = {.lex_state = 189, .external_lex_state = 19}, - [1721] = {.lex_state = 217, .external_lex_state = 4}, - [1722] = {.lex_state = 538, .external_lex_state = 44}, - [1723] = {.lex_state = 538, .external_lex_state = 41}, - [1724] = {.lex_state = 527, .external_lex_state = 16}, - [1725] = {.lex_state = 233, .external_lex_state = 44}, - [1726] = {.lex_state = 538, .external_lex_state = 44}, - [1727] = {.lex_state = 538, .external_lex_state = 44}, - [1728] = {.lex_state = 538, .external_lex_state = 44}, - [1729] = {.lex_state = 198, .external_lex_state = 19}, - [1730] = {.lex_state = 261, .external_lex_state = 49}, - [1731] = {.lex_state = 198, .external_lex_state = 19}, - [1732] = {.lex_state = 538, .external_lex_state = 44}, - [1733] = {.lex_state = 538, .external_lex_state = 44}, - [1734] = {.lex_state = 538, .external_lex_state = 44}, - [1735] = {.lex_state = 189, .external_lex_state = 19}, - [1736] = {.lex_state = 530, .external_lex_state = 19}, - [1737] = {.lex_state = 538, .external_lex_state = 44}, - [1738] = {.lex_state = 533, .external_lex_state = 19}, - [1739] = {.lex_state = 533, .external_lex_state = 19}, - [1740] = {.lex_state = 533, .external_lex_state = 19}, - [1741] = {.lex_state = 533, .external_lex_state = 19}, - [1742] = {.lex_state = 533, .external_lex_state = 19}, - [1743] = {.lex_state = 530, .external_lex_state = 19}, - [1744] = {.lex_state = 533, .external_lex_state = 19}, - [1745] = {.lex_state = 217, .external_lex_state = 37}, - [1746] = {.lex_state = 538, .external_lex_state = 44}, - [1747] = {.lex_state = 198, .external_lex_state = 19}, - [1748] = {.lex_state = 189, .external_lex_state = 19}, - [1749] = {.lex_state = 261, .external_lex_state = 50}, - [1750] = {.lex_state = 217, .external_lex_state = 37}, - [1751] = {.lex_state = 533, .external_lex_state = 19}, - [1752] = {.lex_state = 217, .external_lex_state = 37}, - [1753] = {.lex_state = 538, .external_lex_state = 44}, - [1754] = {.lex_state = 539, .external_lex_state = 44}, - [1755] = {.lex_state = 539, .external_lex_state = 44}, - [1756] = {.lex_state = 539, .external_lex_state = 44}, - [1757] = {.lex_state = 261, .external_lex_state = 49}, - [1758] = {.lex_state = 217, .external_lex_state = 37}, - [1759] = {.lex_state = 189, .external_lex_state = 19}, - [1760] = {.lex_state = 233, .external_lex_state = 44}, - [1761] = {.lex_state = 233, .external_lex_state = 44}, - [1762] = {.lex_state = 233, .external_lex_state = 44}, - [1763] = {.lex_state = 233, .external_lex_state = 44}, - [1764] = {.lex_state = 233, .external_lex_state = 44}, - [1765] = {.lex_state = 233, .external_lex_state = 44}, - [1766] = {.lex_state = 539, .external_lex_state = 44}, - [1767] = {.lex_state = 198, .external_lex_state = 19}, - [1768] = {.lex_state = 539, .external_lex_state = 44}, - [1769] = {.lex_state = 539, .external_lex_state = 44}, - [1770] = {.lex_state = 233, .external_lex_state = 44}, - [1771] = {.lex_state = 539, .external_lex_state = 44}, - [1772] = {.lex_state = 233, .external_lex_state = 44}, - [1773] = {.lex_state = 233, .external_lex_state = 44}, - [1774] = {.lex_state = 539, .external_lex_state = 44}, - [1775] = {.lex_state = 233, .external_lex_state = 44}, - [1776] = {.lex_state = 198, .external_lex_state = 19}, - [1777] = {.lex_state = 539, .external_lex_state = 44}, - [1778] = {.lex_state = 261, .external_lex_state = 50}, - [1779] = {.lex_state = 539, .external_lex_state = 44}, - [1780] = {.lex_state = 539, .external_lex_state = 44}, - [1781] = {.lex_state = 233, .external_lex_state = 44}, - [1782] = {.lex_state = 233, .external_lex_state = 44}, - [1783] = {.lex_state = 539, .external_lex_state = 44}, - [1784] = {.lex_state = 217, .external_lex_state = 37}, - [1785] = {.lex_state = 539, .external_lex_state = 44}, - [1786] = {.lex_state = 539, .external_lex_state = 44}, - [1787] = {.lex_state = 217, .external_lex_state = 37}, - [1788] = {.lex_state = 538, .external_lex_state = 44}, - [1789] = {.lex_state = 198, .external_lex_state = 22}, - [1790] = {.lex_state = 539, .external_lex_state = 44}, - [1791] = {.lex_state = 261, .external_lex_state = 49}, - [1792] = {.lex_state = 538, .external_lex_state = 44}, - [1793] = {.lex_state = 538, .external_lex_state = 44}, - [1794] = {.lex_state = 217, .external_lex_state = 37}, - [1795] = {.lex_state = 217, .external_lex_state = 37}, - [1796] = {.lex_state = 538, .external_lex_state = 44}, - [1797] = {.lex_state = 300, .external_lex_state = 51}, - [1798] = {.lex_state = 538, .external_lex_state = 44}, - [1799] = {.lex_state = 300, .external_lex_state = 51}, - [1800] = {.lex_state = 300, .external_lex_state = 51}, - [1801] = {.lex_state = 533, .external_lex_state = 19}, - [1802] = {.lex_state = 233, .external_lex_state = 44}, - [1803] = {.lex_state = 201, .external_lex_state = 21}, - [1804] = {.lex_state = 538, .external_lex_state = 44}, - [1805] = {.lex_state = 538, .external_lex_state = 44}, - [1806] = {.lex_state = 261, .external_lex_state = 49}, - [1807] = {.lex_state = 233, .external_lex_state = 44}, - [1808] = {.lex_state = 296, .external_lex_state = 36}, - [1809] = {.lex_state = 233, .external_lex_state = 44}, - [1810] = {.lex_state = 538, .external_lex_state = 44}, - [1811] = {.lex_state = 298, .external_lex_state = 29}, - [1812] = {.lex_state = 233, .external_lex_state = 44}, - [1813] = {.lex_state = 538, .external_lex_state = 44}, - [1814] = {.lex_state = 189, .external_lex_state = 22}, - [1815] = {.lex_state = 539, .external_lex_state = 44}, - [1816] = {.lex_state = 530, .external_lex_state = 19}, - [1817] = {.lex_state = 539, .external_lex_state = 44}, - [1818] = {.lex_state = 539, .external_lex_state = 44}, - [1819] = {.lex_state = 539, .external_lex_state = 44}, - [1820] = {.lex_state = 539, .external_lex_state = 44}, - [1821] = {.lex_state = 217, .external_lex_state = 37}, - [1822] = {.lex_state = 217, .external_lex_state = 37}, - [1823] = {.lex_state = 217, .external_lex_state = 37}, - [1824] = {.lex_state = 261, .external_lex_state = 49}, - [1825] = {.lex_state = 233, .external_lex_state = 44}, - [1826] = {.lex_state = 533, .external_lex_state = 19}, - [1827] = {.lex_state = 233, .external_lex_state = 44}, - [1828] = {.lex_state = 533, .external_lex_state = 19}, - [1829] = {.lex_state = 533, .external_lex_state = 19}, - [1830] = {.lex_state = 261, .external_lex_state = 49}, - [1831] = {.lex_state = 296, .external_lex_state = 36}, - [1832] = {.lex_state = 540, .external_lex_state = 44}, - [1833] = {.lex_state = 539, .external_lex_state = 44}, - [1834] = {.lex_state = 233, .external_lex_state = 44}, - [1835] = {.lex_state = 189, .external_lex_state = 19}, - [1836] = {.lex_state = 538, .external_lex_state = 44}, - [1837] = {.lex_state = 538, .external_lex_state = 44}, - [1838] = {.lex_state = 538, .external_lex_state = 44}, - [1839] = {.lex_state = 540, .external_lex_state = 44}, - [1840] = {.lex_state = 539, .external_lex_state = 44}, - [1841] = {.lex_state = 539, .external_lex_state = 44}, - [1842] = {.lex_state = 261, .external_lex_state = 49}, - [1843] = {.lex_state = 540, .external_lex_state = 44}, - [1844] = {.lex_state = 198, .external_lex_state = 19}, - [1845] = {.lex_state = 540, .external_lex_state = 44}, - [1846] = {.lex_state = 540, .external_lex_state = 44}, - [1847] = {.lex_state = 538, .external_lex_state = 44}, - [1848] = {.lex_state = 538, .external_lex_state = 44}, - [1849] = {.lex_state = 538, .external_lex_state = 44}, - [1850] = {.lex_state = 261, .external_lex_state = 50}, - [1851] = {.lex_state = 539, .external_lex_state = 44}, - [1852] = {.lex_state = 538, .external_lex_state = 44}, - [1853] = {.lex_state = 538, .external_lex_state = 44}, - [1854] = {.lex_state = 538, .external_lex_state = 44}, - [1855] = {.lex_state = 538, .external_lex_state = 44}, - [1856] = {.lex_state = 538, .external_lex_state = 44}, - [1857] = {.lex_state = 538, .external_lex_state = 44}, - [1858] = {.lex_state = 538, .external_lex_state = 44}, - [1859] = {.lex_state = 538, .external_lex_state = 44}, - [1860] = {.lex_state = 189, .external_lex_state = 22}, - [1861] = {.lex_state = 539, .external_lex_state = 44}, - [1862] = {.lex_state = 539, .external_lex_state = 44}, - [1863] = {.lex_state = 538, .external_lex_state = 44}, - [1864] = {.lex_state = 539, .external_lex_state = 44}, - [1865] = {.lex_state = 539, .external_lex_state = 44}, - [1866] = {.lex_state = 539, .external_lex_state = 44}, - [1867] = {.lex_state = 261, .external_lex_state = 50}, - [1868] = {.lex_state = 296, .external_lex_state = 36}, - [1869] = {.lex_state = 261, .external_lex_state = 49}, - [1870] = {.lex_state = 539, .external_lex_state = 44}, - [1871] = {.lex_state = 261, .external_lex_state = 49}, - [1872] = {.lex_state = 198, .external_lex_state = 19}, - [1873] = {.lex_state = 530, .external_lex_state = 19}, - [1874] = {.lex_state = 538, .external_lex_state = 44}, - [1875] = {.lex_state = 538, .external_lex_state = 44}, - [1876] = {.lex_state = 538, .external_lex_state = 44}, - [1877] = {.lex_state = 539, .external_lex_state = 44}, - [1878] = {.lex_state = 538, .external_lex_state = 44}, - [1879] = {.lex_state = 540, .external_lex_state = 44}, - [1880] = {.lex_state = 538, .external_lex_state = 44}, - [1881] = {.lex_state = 538, .external_lex_state = 44}, - [1882] = {.lex_state = 298, .external_lex_state = 29}, - [1883] = {.lex_state = 198, .external_lex_state = 19}, - [1884] = {.lex_state = 261, .external_lex_state = 49}, - [1885] = {.lex_state = 195, .external_lex_state = 21}, - [1886] = {.lex_state = 201, .external_lex_state = 21}, - [1887] = {.lex_state = 530, .external_lex_state = 19}, - [1888] = {.lex_state = 539, .external_lex_state = 44}, - [1889] = {.lex_state = 540, .external_lex_state = 44}, - [1890] = {.lex_state = 186, .external_lex_state = 21}, - [1891] = {.lex_state = 539, .external_lex_state = 44}, - [1892] = {.lex_state = 198, .external_lex_state = 19}, - [1893] = {.lex_state = 198, .external_lex_state = 19}, - [1894] = {.lex_state = 540, .external_lex_state = 44}, - [1895] = {.lex_state = 533, .external_lex_state = 19}, - [1896] = {.lex_state = 539, .external_lex_state = 44}, - [1897] = {.lex_state = 300, .external_lex_state = 51}, - [1898] = {.lex_state = 533, .external_lex_state = 19}, - [1899] = {.lex_state = 198, .external_lex_state = 22}, - [1900] = {.lex_state = 533, .external_lex_state = 19}, - [1901] = {.lex_state = 300, .external_lex_state = 51}, - [1902] = {.lex_state = 538, .external_lex_state = 44}, - [1903] = {.lex_state = 538, .external_lex_state = 44}, - [1904] = {.lex_state = 300, .external_lex_state = 51}, - [1905] = {.lex_state = 261, .external_lex_state = 49}, - [1906] = {.lex_state = 261, .external_lex_state = 50}, - [1907] = {.lex_state = 298, .external_lex_state = 29}, - [1908] = {.lex_state = 540, .external_lex_state = 44}, - [1909] = {.lex_state = 198, .external_lex_state = 19}, - [1910] = {.lex_state = 540, .external_lex_state = 44}, - [1911] = {.lex_state = 540, .external_lex_state = 44}, - [1912] = {.lex_state = 300, .external_lex_state = 51}, - [1913] = {.lex_state = 261, .external_lex_state = 49}, - [1914] = {.lex_state = 538, .external_lex_state = 44}, - [1915] = {.lex_state = 538, .external_lex_state = 44}, - [1916] = {.lex_state = 540, .external_lex_state = 44}, - [1917] = {.lex_state = 539, .external_lex_state = 44}, - [1918] = {.lex_state = 539, .external_lex_state = 44}, - [1919] = {.lex_state = 539, .external_lex_state = 44}, - [1920] = {.lex_state = 539, .external_lex_state = 44}, - [1921] = {.lex_state = 539, .external_lex_state = 44}, - [1922] = {.lex_state = 539, .external_lex_state = 44}, - [1923] = {.lex_state = 539, .external_lex_state = 44}, - [1924] = {.lex_state = 539, .external_lex_state = 44}, - [1925] = {.lex_state = 261, .external_lex_state = 50}, - [1926] = {.lex_state = 261, .external_lex_state = 50}, - [1927] = {.lex_state = 261, .external_lex_state = 50}, - [1928] = {.lex_state = 539, .external_lex_state = 44}, - [1929] = {.lex_state = 530, .external_lex_state = 19}, - [1930] = {.lex_state = 533, .external_lex_state = 19}, - [1931] = {.lex_state = 533, .external_lex_state = 19}, - [1932] = {.lex_state = 261, .external_lex_state = 49}, - [1933] = {.lex_state = 261, .external_lex_state = 49}, - [1934] = {.lex_state = 261, .external_lex_state = 49}, - [1935] = {.lex_state = 261, .external_lex_state = 49}, - [1936] = {.lex_state = 261, .external_lex_state = 49}, - [1937] = {.lex_state = 261, .external_lex_state = 49}, - [1938] = {.lex_state = 261, .external_lex_state = 49}, - [1939] = {.lex_state = 533, .external_lex_state = 19}, - [1940] = {.lex_state = 261, .external_lex_state = 49}, - [1941] = {.lex_state = 261, .external_lex_state = 49}, - [1942] = {.lex_state = 261, .external_lex_state = 49}, - [1943] = {.lex_state = 261, .external_lex_state = 49}, - [1944] = {.lex_state = 261, .external_lex_state = 49}, - [1945] = {.lex_state = 540, .external_lex_state = 44}, - [1946] = {.lex_state = 540, .external_lex_state = 44}, - [1947] = {.lex_state = 530, .external_lex_state = 19}, - [1948] = {.lex_state = 261, .external_lex_state = 49}, - [1949] = {.lex_state = 261, .external_lex_state = 49}, - [1950] = {.lex_state = 261, .external_lex_state = 49}, - [1951] = {.lex_state = 530, .external_lex_state = 19}, - [1952] = {.lex_state = 533, .external_lex_state = 19}, - [1953] = {.lex_state = 533, .external_lex_state = 19}, - [1954] = {.lex_state = 300, .external_lex_state = 51}, - [1955] = {.lex_state = 300, .external_lex_state = 51}, - [1956] = {.lex_state = 300, .external_lex_state = 51}, - [1957] = {.lex_state = 533, .external_lex_state = 19}, - [1958] = {.lex_state = 533, .external_lex_state = 19}, - [1959] = {.lex_state = 533, .external_lex_state = 19}, - [1960] = {.lex_state = 300, .external_lex_state = 51}, - [1961] = {.lex_state = 530, .external_lex_state = 19}, - [1962] = {.lex_state = 300, .external_lex_state = 51}, - [1963] = {.lex_state = 261, .external_lex_state = 49}, - [1964] = {.lex_state = 530, .external_lex_state = 22}, - [1965] = {.lex_state = 300, .external_lex_state = 51}, - [1966] = {.lex_state = 530, .external_lex_state = 22}, - [1967] = {.lex_state = 261, .external_lex_state = 49}, - [1968] = {.lex_state = 540, .external_lex_state = 44}, - [1969] = {.lex_state = 261, .external_lex_state = 49}, - [1970] = {.lex_state = 261, .external_lex_state = 49}, - [1971] = {.lex_state = 300, .external_lex_state = 51}, - [1972] = {.lex_state = 540, .external_lex_state = 44}, - [1973] = {.lex_state = 300, .external_lex_state = 51}, - [1974] = {.lex_state = 533, .external_lex_state = 19}, - [1975] = {.lex_state = 261, .external_lex_state = 49}, - [1976] = {.lex_state = 261, .external_lex_state = 49}, - [1977] = {.lex_state = 300, .external_lex_state = 51}, - [1978] = {.lex_state = 261, .external_lex_state = 49}, - [1979] = {.lex_state = 540, .external_lex_state = 44}, - [1980] = {.lex_state = 261, .external_lex_state = 49}, - [1981] = {.lex_state = 261, .external_lex_state = 49}, - [1982] = {.lex_state = 261, .external_lex_state = 49}, - [1983] = {.lex_state = 261, .external_lex_state = 49}, - [1984] = {.lex_state = 261, .external_lex_state = 49}, - [1985] = {.lex_state = 261, .external_lex_state = 49}, - [1986] = {.lex_state = 540, .external_lex_state = 44}, - [1987] = {.lex_state = 261, .external_lex_state = 49}, - [1988] = {.lex_state = 261, .external_lex_state = 49}, - [1989] = {.lex_state = 261, .external_lex_state = 49}, - [1990] = {.lex_state = 261, .external_lex_state = 49}, - [1991] = {.lex_state = 261, .external_lex_state = 49}, - [1992] = {.lex_state = 300, .external_lex_state = 51}, - [1993] = {.lex_state = 540, .external_lex_state = 44}, - [1994] = {.lex_state = 533, .external_lex_state = 19}, - [1995] = {.lex_state = 300, .external_lex_state = 51}, - [1996] = {.lex_state = 540, .external_lex_state = 44}, - [1997] = {.lex_state = 540, .external_lex_state = 44}, - [1998] = {.lex_state = 261, .external_lex_state = 49}, - [1999] = {.lex_state = 261, .external_lex_state = 49}, - [2000] = {.lex_state = 261, .external_lex_state = 49}, - [2001] = {.lex_state = 261, .external_lex_state = 49}, - [2002] = {.lex_state = 300, .external_lex_state = 51}, - [2003] = {.lex_state = 261, .external_lex_state = 49}, - [2004] = {.lex_state = 540, .external_lex_state = 44}, - [2005] = {.lex_state = 540, .external_lex_state = 44}, - [2006] = {.lex_state = 540, .external_lex_state = 44}, - [2007] = {.lex_state = 261, .external_lex_state = 49}, - [2008] = {.lex_state = 261, .external_lex_state = 49}, - [2009] = {.lex_state = 261, .external_lex_state = 49}, - [2010] = {.lex_state = 261, .external_lex_state = 49}, - [2011] = {.lex_state = 261, .external_lex_state = 49}, - [2012] = {.lex_state = 540, .external_lex_state = 44}, - [2013] = {.lex_state = 261, .external_lex_state = 49}, - [2014] = {.lex_state = 261, .external_lex_state = 49}, - [2015] = {.lex_state = 530, .external_lex_state = 19}, - [2016] = {.lex_state = 261, .external_lex_state = 49}, - [2017] = {.lex_state = 533, .external_lex_state = 19}, - [2018] = {.lex_state = 261, .external_lex_state = 49}, - [2019] = {.lex_state = 533, .external_lex_state = 19}, - [2020] = {.lex_state = 533, .external_lex_state = 19}, - [2021] = {.lex_state = 261, .external_lex_state = 49}, - [2022] = {.lex_state = 261, .external_lex_state = 49}, - [2023] = {.lex_state = 261, .external_lex_state = 49}, - [2024] = {.lex_state = 533, .external_lex_state = 22}, - [2025] = {.lex_state = 540, .external_lex_state = 44}, - [2026] = {.lex_state = 533, .external_lex_state = 22}, - [2027] = {.lex_state = 261, .external_lex_state = 49}, - [2028] = {.lex_state = 261, .external_lex_state = 49}, - [2029] = {.lex_state = 261, .external_lex_state = 49}, - [2030] = {.lex_state = 261, .external_lex_state = 49}, - [2031] = {.lex_state = 261, .external_lex_state = 49}, - [2032] = {.lex_state = 540, .external_lex_state = 44}, - [2033] = {.lex_state = 300, .external_lex_state = 52}, - [2034] = {.lex_state = 261, .external_lex_state = 49}, - [2035] = {.lex_state = 261, .external_lex_state = 49}, - [2036] = {.lex_state = 261, .external_lex_state = 49}, - [2037] = {.lex_state = 300, .external_lex_state = 51}, - [2038] = {.lex_state = 261, .external_lex_state = 49}, - [2039] = {.lex_state = 261, .external_lex_state = 49}, - [2040] = {.lex_state = 261, .external_lex_state = 49}, - [2041] = {.lex_state = 261, .external_lex_state = 49}, - [2042] = {.lex_state = 261, .external_lex_state = 49}, - [2043] = {.lex_state = 261, .external_lex_state = 49}, - [2044] = {.lex_state = 261, .external_lex_state = 49}, - [2045] = {.lex_state = 261, .external_lex_state = 49}, - [2046] = {.lex_state = 300, .external_lex_state = 51}, - [2047] = {.lex_state = 261, .external_lex_state = 49}, - [2048] = {.lex_state = 261, .external_lex_state = 49}, - [2049] = {.lex_state = 261, .external_lex_state = 49}, - [2050] = {.lex_state = 261, .external_lex_state = 49}, - [2051] = {.lex_state = 261, .external_lex_state = 49}, - [2052] = {.lex_state = 261, .external_lex_state = 49}, - [2053] = {.lex_state = 261, .external_lex_state = 49}, - [2054] = {.lex_state = 261, .external_lex_state = 49}, - [2055] = {.lex_state = 533, .external_lex_state = 19}, - [2056] = {.lex_state = 261, .external_lex_state = 49}, - [2057] = {.lex_state = 300, .external_lex_state = 51}, - [2058] = {.lex_state = 540, .external_lex_state = 44}, - [2059] = {.lex_state = 261, .external_lex_state = 49}, - [2060] = {.lex_state = 533, .external_lex_state = 19}, - [2061] = {.lex_state = 261, .external_lex_state = 49}, - [2062] = {.lex_state = 261, .external_lex_state = 49}, - [2063] = {.lex_state = 261, .external_lex_state = 49}, - [2064] = {.lex_state = 261, .external_lex_state = 49}, - [2065] = {.lex_state = 300, .external_lex_state = 51}, - [2066] = {.lex_state = 261, .external_lex_state = 49}, - [2067] = {.lex_state = 540, .external_lex_state = 44}, - [2068] = {.lex_state = 540, .external_lex_state = 44}, - [2069] = {.lex_state = 261, .external_lex_state = 49}, - [2070] = {.lex_state = 533, .external_lex_state = 19}, - [2071] = {.lex_state = 533, .external_lex_state = 19}, - [2072] = {.lex_state = 261, .external_lex_state = 49}, - [2073] = {.lex_state = 540, .external_lex_state = 44}, - [2074] = {.lex_state = 540, .external_lex_state = 44}, - [2075] = {.lex_state = 300, .external_lex_state = 51}, - [2076] = {.lex_state = 533, .external_lex_state = 19}, - [2077] = {.lex_state = 300, .external_lex_state = 51}, - [2078] = {.lex_state = 533, .external_lex_state = 19}, - [2079] = {.lex_state = 533, .external_lex_state = 19}, - [2080] = {.lex_state = 540, .external_lex_state = 44}, - [2081] = {.lex_state = 540, .external_lex_state = 44}, - [2082] = {.lex_state = 533, .external_lex_state = 19}, - [2083] = {.lex_state = 533, .external_lex_state = 19}, - [2084] = {.lex_state = 533, .external_lex_state = 19}, - [2085] = {.lex_state = 533, .external_lex_state = 19}, - [2086] = {.lex_state = 540, .external_lex_state = 44}, - [2087] = {.lex_state = 261, .external_lex_state = 49}, - [2088] = {.lex_state = 533, .external_lex_state = 19}, - [2089] = {.lex_state = 261, .external_lex_state = 49}, - [2090] = {.lex_state = 261, .external_lex_state = 49}, - [2091] = {.lex_state = 540, .external_lex_state = 44}, - [2092] = {.lex_state = 261, .external_lex_state = 49}, - [2093] = {.lex_state = 300, .external_lex_state = 51}, - [2094] = {.lex_state = 198, .external_lex_state = 22}, - [2095] = {.lex_state = 540, .external_lex_state = 44}, - [2096] = {.lex_state = 533, .external_lex_state = 19}, - [2097] = {.lex_state = 533, .external_lex_state = 19}, - [2098] = {.lex_state = 533, .external_lex_state = 19}, - [2099] = {.lex_state = 533, .external_lex_state = 19}, - [2100] = {.lex_state = 540, .external_lex_state = 44}, - [2101] = {.lex_state = 533, .external_lex_state = 19}, - [2102] = {.lex_state = 533, .external_lex_state = 19}, - [2103] = {.lex_state = 533, .external_lex_state = 19}, - [2104] = {.lex_state = 533, .external_lex_state = 19}, - [2105] = {.lex_state = 540, .external_lex_state = 44}, - [2106] = {.lex_state = 533, .external_lex_state = 19}, - [2107] = {.lex_state = 533, .external_lex_state = 19}, - [2108] = {.lex_state = 540, .external_lex_state = 44}, - [2109] = {.lex_state = 540, .external_lex_state = 44}, - [2110] = {.lex_state = 533, .external_lex_state = 19}, - [2111] = {.lex_state = 540, .external_lex_state = 44}, - [2112] = {.lex_state = 533, .external_lex_state = 19}, - [2113] = {.lex_state = 247, .external_lex_state = 36}, - [2114] = {.lex_state = 540, .external_lex_state = 44}, - [2115] = {.lex_state = 247, .external_lex_state = 36}, - [2116] = {.lex_state = 540, .external_lex_state = 44}, - [2117] = {.lex_state = 533, .external_lex_state = 19}, - [2118] = {.lex_state = 207, .external_lex_state = 22}, - [2119] = {.lex_state = 261, .external_lex_state = 49}, - [2120] = {.lex_state = 533, .external_lex_state = 19}, - [2121] = {.lex_state = 540, .external_lex_state = 44}, - [2122] = {.lex_state = 533, .external_lex_state = 19}, - [2123] = {.lex_state = 296, .external_lex_state = 36}, - [2124] = {.lex_state = 533, .external_lex_state = 22}, - [2125] = {.lex_state = 300, .external_lex_state = 52}, - [2126] = {.lex_state = 300, .external_lex_state = 52}, - [2127] = {.lex_state = 300, .external_lex_state = 52}, - [2128] = {.lex_state = 533, .external_lex_state = 19}, - [2129] = {.lex_state = 261, .external_lex_state = 49}, - [2130] = {.lex_state = 261, .external_lex_state = 49}, - [2131] = {.lex_state = 261, .external_lex_state = 49}, - [2132] = {.lex_state = 261, .external_lex_state = 49}, - [2133] = {.lex_state = 533, .external_lex_state = 19}, - [2134] = {.lex_state = 261, .external_lex_state = 49}, - [2135] = {.lex_state = 300, .external_lex_state = 52}, - [2136] = {.lex_state = 533, .external_lex_state = 19}, - [2137] = {.lex_state = 261, .external_lex_state = 49}, - [2138] = {.lex_state = 296, .external_lex_state = 36}, - [2139] = {.lex_state = 261, .external_lex_state = 49}, - [2140] = {.lex_state = 533, .external_lex_state = 19}, - [2141] = {.lex_state = 533, .external_lex_state = 19}, - [2142] = {.lex_state = 533, .external_lex_state = 19}, - [2143] = {.lex_state = 533, .external_lex_state = 19}, - [2144] = {.lex_state = 533, .external_lex_state = 19}, - [2145] = {.lex_state = 261, .external_lex_state = 49}, - [2146] = {.lex_state = 533, .external_lex_state = 19}, - [2147] = {.lex_state = 207, .external_lex_state = 22}, - [2148] = {.lex_state = 533, .external_lex_state = 19}, - [2149] = {.lex_state = 533, .external_lex_state = 19}, - [2150] = {.lex_state = 533, .external_lex_state = 19}, - [2151] = {.lex_state = 533, .external_lex_state = 19}, - [2152] = {.lex_state = 300, .external_lex_state = 52}, - [2153] = {.lex_state = 533, .external_lex_state = 19}, - [2154] = {.lex_state = 300, .external_lex_state = 52}, - [2155] = {.lex_state = 300, .external_lex_state = 52}, - [2156] = {.lex_state = 533, .external_lex_state = 19}, - [2157] = {.lex_state = 533, .external_lex_state = 19}, - [2158] = {.lex_state = 530, .external_lex_state = 19}, - [2159] = {.lex_state = 533, .external_lex_state = 19}, - [2160] = {.lex_state = 201, .external_lex_state = 21}, - [2161] = {.lex_state = 533, .external_lex_state = 22}, - [2162] = {.lex_state = 540, .external_lex_state = 44}, - [2163] = {.lex_state = 533, .external_lex_state = 19}, - [2164] = {.lex_state = 533, .external_lex_state = 19}, - [2165] = {.lex_state = 533, .external_lex_state = 19}, - [2166] = {.lex_state = 261, .external_lex_state = 49}, - [2167] = {.lex_state = 533, .external_lex_state = 19}, - [2168] = {.lex_state = 533, .external_lex_state = 19}, - [2169] = {.lex_state = 533, .external_lex_state = 19}, - [2170] = {.lex_state = 533, .external_lex_state = 19}, - [2171] = {.lex_state = 533, .external_lex_state = 19}, - [2172] = {.lex_state = 533, .external_lex_state = 19}, - [2173] = {.lex_state = 533, .external_lex_state = 19}, - [2174] = {.lex_state = 261, .external_lex_state = 49}, - [2175] = {.lex_state = 533, .external_lex_state = 19}, - [2176] = {.lex_state = 533, .external_lex_state = 19}, - [2177] = {.lex_state = 533, .external_lex_state = 19}, - [2178] = {.lex_state = 533, .external_lex_state = 19}, - [2179] = {.lex_state = 533, .external_lex_state = 19}, - [2180] = {.lex_state = 533, .external_lex_state = 19}, - [2181] = {.lex_state = 533, .external_lex_state = 19}, - [2182] = {.lex_state = 189, .external_lex_state = 22}, - [2183] = {.lex_state = 533, .external_lex_state = 19}, - [2184] = {.lex_state = 261, .external_lex_state = 49}, - [2185] = {.lex_state = 533, .external_lex_state = 19}, - [2186] = {.lex_state = 533, .external_lex_state = 19}, - [2187] = {.lex_state = 533, .external_lex_state = 19}, - [2188] = {.lex_state = 261, .external_lex_state = 49}, - [2189] = {.lex_state = 533, .external_lex_state = 19}, - [2190] = {.lex_state = 530, .external_lex_state = 22}, - [2191] = {.lex_state = 533, .external_lex_state = 19}, - [2192] = {.lex_state = 261, .external_lex_state = 49}, - [2193] = {.lex_state = 533, .external_lex_state = 19}, - [2194] = {.lex_state = 533, .external_lex_state = 19}, - [2195] = {.lex_state = 533, .external_lex_state = 19}, - [2196] = {.lex_state = 533, .external_lex_state = 19}, - [2197] = {.lex_state = 261, .external_lex_state = 49}, - [2198] = {.lex_state = 261, .external_lex_state = 49}, - [2199] = {.lex_state = 300, .external_lex_state = 52}, - [2200] = {.lex_state = 533, .external_lex_state = 19}, - [2201] = {.lex_state = 533, .external_lex_state = 19}, - [2202] = {.lex_state = 261, .external_lex_state = 49}, - [2203] = {.lex_state = 300, .external_lex_state = 52}, - [2204] = {.lex_state = 300, .external_lex_state = 52}, - [2205] = {.lex_state = 261, .external_lex_state = 49}, - [2206] = {.lex_state = 533, .external_lex_state = 19}, - [2207] = {.lex_state = 533, .external_lex_state = 19}, - [2208] = {.lex_state = 261, .external_lex_state = 49}, - [2209] = {.lex_state = 261, .external_lex_state = 49}, - [2210] = {.lex_state = 540, .external_lex_state = 44}, - [2211] = {.lex_state = 300, .external_lex_state = 52}, - [2212] = {.lex_state = 533, .external_lex_state = 19}, - [2213] = {.lex_state = 261, .external_lex_state = 49}, - [2214] = {.lex_state = 540, .external_lex_state = 44}, - [2215] = {.lex_state = 530, .external_lex_state = 19}, - [2216] = {.lex_state = 540, .external_lex_state = 44}, - [2217] = {.lex_state = 533, .external_lex_state = 19}, - [2218] = {.lex_state = 540, .external_lex_state = 44}, - [2219] = {.lex_state = 533, .external_lex_state = 19}, - [2220] = {.lex_state = 533, .external_lex_state = 19}, - [2221] = {.lex_state = 533, .external_lex_state = 19}, - [2222] = {.lex_state = 540, .external_lex_state = 44}, - [2223] = {.lex_state = 533, .external_lex_state = 19}, - [2224] = {.lex_state = 540, .external_lex_state = 44}, - [2225] = {.lex_state = 261, .external_lex_state = 49}, - [2226] = {.lex_state = 261, .external_lex_state = 49}, - [2227] = {.lex_state = 533, .external_lex_state = 19}, - [2228] = {.lex_state = 533, .external_lex_state = 19}, - [2229] = {.lex_state = 261, .external_lex_state = 49}, - [2230] = {.lex_state = 261, .external_lex_state = 49}, - [2231] = {.lex_state = 261, .external_lex_state = 49}, - [2232] = {.lex_state = 261, .external_lex_state = 49}, - [2233] = {.lex_state = 261, .external_lex_state = 49}, - [2234] = {.lex_state = 261, .external_lex_state = 49}, - [2235] = {.lex_state = 261, .external_lex_state = 49}, - [2236] = {.lex_state = 533, .external_lex_state = 19}, - [2237] = {.lex_state = 533, .external_lex_state = 19}, - [2238] = {.lex_state = 261, .external_lex_state = 49}, - [2239] = {.lex_state = 261, .external_lex_state = 49}, - [2240] = {.lex_state = 261, .external_lex_state = 49}, - [2241] = {.lex_state = 261, .external_lex_state = 49}, - [2242] = {.lex_state = 261, .external_lex_state = 49}, - [2243] = {.lex_state = 261, .external_lex_state = 49}, - [2244] = {.lex_state = 261, .external_lex_state = 49}, - [2245] = {.lex_state = 261, .external_lex_state = 49}, - [2246] = {.lex_state = 261, .external_lex_state = 49}, - [2247] = {.lex_state = 530, .external_lex_state = 19}, - [2248] = {.lex_state = 261, .external_lex_state = 49}, - [2249] = {.lex_state = 261, .external_lex_state = 49}, - [2250] = {.lex_state = 261, .external_lex_state = 49}, - [2251] = {.lex_state = 261, .external_lex_state = 49}, - [2252] = {.lex_state = 261, .external_lex_state = 49}, - [2253] = {.lex_state = 530, .external_lex_state = 19}, - [2254] = {.lex_state = 530, .external_lex_state = 22}, - [2255] = {.lex_state = 533, .external_lex_state = 19}, - [2256] = {.lex_state = 261, .external_lex_state = 49}, - [2257] = {.lex_state = 540, .external_lex_state = 44}, - [2258] = {.lex_state = 261, .external_lex_state = 49}, - [2259] = {.lex_state = 533, .external_lex_state = 19}, - [2260] = {.lex_state = 540, .external_lex_state = 44}, - [2261] = {.lex_state = 261, .external_lex_state = 49}, - [2262] = {.lex_state = 533, .external_lex_state = 19}, - [2263] = {.lex_state = 540, .external_lex_state = 44}, - [2264] = {.lex_state = 533, .external_lex_state = 19}, - [2265] = {.lex_state = 533, .external_lex_state = 19}, - [2266] = {.lex_state = 261, .external_lex_state = 49}, - [2267] = {.lex_state = 261, .external_lex_state = 49}, - [2268] = {.lex_state = 300, .external_lex_state = 52}, - [2269] = {.lex_state = 300, .external_lex_state = 52}, + [466] = {.lex_state = 404, .external_lex_state = 10}, + [467] = {.lex_state = 404, .external_lex_state = 10}, + [468] = {.lex_state = 146, .external_lex_state = 4}, + [469] = {.lex_state = 146, .external_lex_state = 4}, + [470] = {.lex_state = 146, .external_lex_state = 4}, + [471] = {.lex_state = 146, .external_lex_state = 4}, + [472] = {.lex_state = 146, .external_lex_state = 4}, + [473] = {.lex_state = 146, .external_lex_state = 4}, + [474] = {.lex_state = 146, .external_lex_state = 4}, + [475] = {.lex_state = 146, .external_lex_state = 4}, + [476] = {.lex_state = 146, .external_lex_state = 4}, + [477] = {.lex_state = 146, .external_lex_state = 4}, + [478] = {.lex_state = 146, .external_lex_state = 4}, + [479] = {.lex_state = 146, .external_lex_state = 4}, + [480] = {.lex_state = 146, .external_lex_state = 4}, + [481] = {.lex_state = 146, .external_lex_state = 4}, + [482] = {.lex_state = 146, .external_lex_state = 4}, + [483] = {.lex_state = 146, .external_lex_state = 4}, + [484] = {.lex_state = 146, .external_lex_state = 4}, + [485] = {.lex_state = 146, .external_lex_state = 4}, + [486] = {.lex_state = 146, .external_lex_state = 4}, + [487] = {.lex_state = 146, .external_lex_state = 4}, + [488] = {.lex_state = 146, .external_lex_state = 4}, + [489] = {.lex_state = 146, .external_lex_state = 4}, + [490] = {.lex_state = 146, .external_lex_state = 4}, + [491] = {.lex_state = 146, .external_lex_state = 4}, + [492] = {.lex_state = 146, .external_lex_state = 4}, + [493] = {.lex_state = 237, .external_lex_state = 11}, + [494] = {.lex_state = 237, .external_lex_state = 11}, + [495] = {.lex_state = 237, .external_lex_state = 11}, + [496] = {.lex_state = 427, .external_lex_state = 5}, + [497] = {.lex_state = 427, .external_lex_state = 5}, + [498] = {.lex_state = 237, .external_lex_state = 11}, + [499] = {.lex_state = 427, .external_lex_state = 5}, + [500] = {.lex_state = 427, .external_lex_state = 5}, + [501] = {.lex_state = 427, .external_lex_state = 5}, + [502] = {.lex_state = 427, .external_lex_state = 5}, + [503] = {.lex_state = 427, .external_lex_state = 5}, + [504] = {.lex_state = 427, .external_lex_state = 5}, + [505] = {.lex_state = 427, .external_lex_state = 5}, + [506] = {.lex_state = 427, .external_lex_state = 5}, + [507] = {.lex_state = 427, .external_lex_state = 5}, + [508] = {.lex_state = 427, .external_lex_state = 5}, + [509] = {.lex_state = 427, .external_lex_state = 5}, + [510] = {.lex_state = 427, .external_lex_state = 5}, + [511] = {.lex_state = 427, .external_lex_state = 5}, + [512] = {.lex_state = 427, .external_lex_state = 5}, + [513] = {.lex_state = 427, .external_lex_state = 5}, + [514] = {.lex_state = 427, .external_lex_state = 5}, + [515] = {.lex_state = 427, .external_lex_state = 5}, + [516] = {.lex_state = 427, .external_lex_state = 5}, + [517] = {.lex_state = 427, .external_lex_state = 5}, + [518] = {.lex_state = 427, .external_lex_state = 5}, + [519] = {.lex_state = 427, .external_lex_state = 5}, + [520] = {.lex_state = 427, .external_lex_state = 5}, + [521] = {.lex_state = 427, .external_lex_state = 5}, + [522] = {.lex_state = 428, .external_lex_state = 12}, + [523] = {.lex_state = 428, .external_lex_state = 12}, + [524] = {.lex_state = 428, .external_lex_state = 12}, + [525] = {.lex_state = 428, .external_lex_state = 12}, + [526] = {.lex_state = 422, .external_lex_state = 2}, + [527] = {.lex_state = 422, .external_lex_state = 2}, + [528] = {.lex_state = 240, .external_lex_state = 13}, + [529] = {.lex_state = 240, .external_lex_state = 13}, + [530] = {.lex_state = 243, .external_lex_state = 11}, + [531] = {.lex_state = 243, .external_lex_state = 11}, + [532] = {.lex_state = 240, .external_lex_state = 14}, + [533] = {.lex_state = 531, .external_lex_state = 11}, + [534] = {.lex_state = 531, .external_lex_state = 11}, + [535] = {.lex_state = 240, .external_lex_state = 14}, + [536] = {.lex_state = 240, .external_lex_state = 14}, + [537] = {.lex_state = 220, .external_lex_state = 15}, + [538] = {.lex_state = 220, .external_lex_state = 15}, + [539] = {.lex_state = 531, .external_lex_state = 11}, + [540] = {.lex_state = 531, .external_lex_state = 11}, + [541] = {.lex_state = 249, .external_lex_state = 16}, + [542] = {.lex_state = 249, .external_lex_state = 16}, + [543] = {.lex_state = 243, .external_lex_state = 17}, + [544] = {.lex_state = 249, .external_lex_state = 16}, + [545] = {.lex_state = 531, .external_lex_state = 11}, + [546] = {.lex_state = 531, .external_lex_state = 11}, + [547] = {.lex_state = 243, .external_lex_state = 17}, + [548] = {.lex_state = 239, .external_lex_state = 18}, + [549] = {.lex_state = 239, .external_lex_state = 18}, + [550] = {.lex_state = 242, .external_lex_state = 9}, + [551] = {.lex_state = 242, .external_lex_state = 9}, + [552] = {.lex_state = 531, .external_lex_state = 11}, + [553] = {.lex_state = 531, .external_lex_state = 11}, + [554] = {.lex_state = 243, .external_lex_state = 17}, + [555] = {.lex_state = 245, .external_lex_state = 19}, + [556] = {.lex_state = 531, .external_lex_state = 17}, + [557] = {.lex_state = 252, .external_lex_state = 20}, + [558] = {.lex_state = 532, .external_lex_state = 9}, + [559] = {.lex_state = 251, .external_lex_state = 9}, + [560] = {.lex_state = 251, .external_lex_state = 9}, + [561] = {.lex_state = 531, .external_lex_state = 17}, + [562] = {.lex_state = 252, .external_lex_state = 20}, + [563] = {.lex_state = 531, .external_lex_state = 17}, + [564] = {.lex_state = 531, .external_lex_state = 17}, + [565] = {.lex_state = 245, .external_lex_state = 19}, + [566] = {.lex_state = 252, .external_lex_state = 20}, + [567] = {.lex_state = 531, .external_lex_state = 17}, + [568] = {.lex_state = 532, .external_lex_state = 9}, + [569] = {.lex_state = 531, .external_lex_state = 17}, + [570] = {.lex_state = 534, .external_lex_state = 20}, + [571] = {.lex_state = 531, .external_lex_state = 17}, + [572] = {.lex_state = 531, .external_lex_state = 17}, + [573] = {.lex_state = 534, .external_lex_state = 20}, + [574] = {.lex_state = 534, .external_lex_state = 20}, + [575] = {.lex_state = 534, .external_lex_state = 20}, + [576] = {.lex_state = 532, .external_lex_state = 9}, + [577] = {.lex_state = 534, .external_lex_state = 20}, + [578] = {.lex_state = 533, .external_lex_state = 19}, + [579] = {.lex_state = 533, .external_lex_state = 19}, + [580] = {.lex_state = 532, .external_lex_state = 9}, + [581] = {.lex_state = 257, .external_lex_state = 19}, + [582] = {.lex_state = 257, .external_lex_state = 19}, + [583] = {.lex_state = 258, .external_lex_state = 16}, + [584] = {.lex_state = 258, .external_lex_state = 16}, + [585] = {.lex_state = 258, .external_lex_state = 16}, + [586] = {.lex_state = 534, .external_lex_state = 20}, + [587] = {.lex_state = 531, .external_lex_state = 17}, + [588] = {.lex_state = 531, .external_lex_state = 17}, + [589] = {.lex_state = 531, .external_lex_state = 17}, + [590] = {.lex_state = 260, .external_lex_state = 16}, + [591] = {.lex_state = 533, .external_lex_state = 19}, + [592] = {.lex_state = 258, .external_lex_state = 16}, + [593] = {.lex_state = 258, .external_lex_state = 16}, + [594] = {.lex_state = 260, .external_lex_state = 16}, + [595] = {.lex_state = 260, .external_lex_state = 16}, + [596] = {.lex_state = 258, .external_lex_state = 21}, + [597] = {.lex_state = 258, .external_lex_state = 21}, + [598] = {.lex_state = 261, .external_lex_state = 20}, + [599] = {.lex_state = 533, .external_lex_state = 19}, + [600] = {.lex_state = 249, .external_lex_state = 21}, + [601] = {.lex_state = 534, .external_lex_state = 20}, + [602] = {.lex_state = 258, .external_lex_state = 21}, + [603] = {.lex_state = 534, .external_lex_state = 20}, + [604] = {.lex_state = 249, .external_lex_state = 21}, + [605] = {.lex_state = 549, .external_lex_state = 2}, + [606] = {.lex_state = 534, .external_lex_state = 20}, + [607] = {.lex_state = 249, .external_lex_state = 21}, + [608] = {.lex_state = 534, .external_lex_state = 20}, + [609] = {.lex_state = 260, .external_lex_state = 16}, + [610] = {.lex_state = 261, .external_lex_state = 20}, + [611] = {.lex_state = 243, .external_lex_state = 11}, + [612] = {.lex_state = 534, .external_lex_state = 20}, + [613] = {.lex_state = 243, .external_lex_state = 11}, + [614] = {.lex_state = 261, .external_lex_state = 20}, + [615] = {.lex_state = 264, .external_lex_state = 21}, + [616] = {.lex_state = 252, .external_lex_state = 22}, + [617] = {.lex_state = 464, .external_lex_state = 23}, + [618] = {.lex_state = 460, .external_lex_state = 2}, + [619] = {.lex_state = 264, .external_lex_state = 21}, + [620] = {.lex_state = 264, .external_lex_state = 21}, + [621] = {.lex_state = 460, .external_lex_state = 2}, + [622] = {.lex_state = 258, .external_lex_state = 21}, + [623] = {.lex_state = 258, .external_lex_state = 21}, + [624] = {.lex_state = 423, .external_lex_state = 6}, + [625] = {.lex_state = 536, .external_lex_state = 20}, + [626] = {.lex_state = 261, .external_lex_state = 20}, + [627] = {.lex_state = 261, .external_lex_state = 20}, + [628] = {.lex_state = 460, .external_lex_state = 2}, + [629] = {.lex_state = 261, .external_lex_state = 22}, + [630] = {.lex_state = 423, .external_lex_state = 6}, + [631] = {.lex_state = 549, .external_lex_state = 2}, + [632] = {.lex_state = 261, .external_lex_state = 22}, + [633] = {.lex_state = 261, .external_lex_state = 22}, + [634] = {.lex_state = 464, .external_lex_state = 23}, + [635] = {.lex_state = 536, .external_lex_state = 20}, + [636] = {.lex_state = 263, .external_lex_state = 16}, + [637] = {.lex_state = 263, .external_lex_state = 16}, + [638] = {.lex_state = 263, .external_lex_state = 16}, + [639] = {.lex_state = 263, .external_lex_state = 16}, + [640] = {.lex_state = 536, .external_lex_state = 20}, + [641] = {.lex_state = 263, .external_lex_state = 16}, + [642] = {.lex_state = 263, .external_lex_state = 16}, + [643] = {.lex_state = 536, .external_lex_state = 20}, + [644] = {.lex_state = 536, .external_lex_state = 20}, + [645] = {.lex_state = 266, .external_lex_state = 20}, + [646] = {.lex_state = 266, .external_lex_state = 20}, + [647] = {.lex_state = 266, .external_lex_state = 20}, + [648] = {.lex_state = 266, .external_lex_state = 20}, + [649] = {.lex_state = 460, .external_lex_state = 2}, + [650] = {.lex_state = 460, .external_lex_state = 2}, + [651] = {.lex_state = 536, .external_lex_state = 20}, + [652] = {.lex_state = 252, .external_lex_state = 22}, + [653] = {.lex_state = 549, .external_lex_state = 2}, + [654] = {.lex_state = 460, .external_lex_state = 2}, + [655] = {.lex_state = 460, .external_lex_state = 2}, + [656] = {.lex_state = 252, .external_lex_state = 22}, + [657] = {.lex_state = 460, .external_lex_state = 2}, + [658] = {.lex_state = 269, .external_lex_state = 20}, + [659] = {.lex_state = 536, .external_lex_state = 22}, + [660] = {.lex_state = 536, .external_lex_state = 22}, + [661] = {.lex_state = 536, .external_lex_state = 22}, + [662] = {.lex_state = 269, .external_lex_state = 20}, + [663] = {.lex_state = 269, .external_lex_state = 20}, + [664] = {.lex_state = 426, .external_lex_state = 24}, + [665] = {.lex_state = 264, .external_lex_state = 21}, + [666] = {.lex_state = 264, .external_lex_state = 21}, + [667] = {.lex_state = 536, .external_lex_state = 22}, + [668] = {.lex_state = 534, .external_lex_state = 22}, + [669] = {.lex_state = 536, .external_lex_state = 20}, + [670] = {.lex_state = 536, .external_lex_state = 20}, + [671] = {.lex_state = 534, .external_lex_state = 22}, + [672] = {.lex_state = 270, .external_lex_state = 22}, + [673] = {.lex_state = 270, .external_lex_state = 22}, + [674] = {.lex_state = 270, .external_lex_state = 22}, + [675] = {.lex_state = 261, .external_lex_state = 22}, + [676] = {.lex_state = 261, .external_lex_state = 22}, + [677] = {.lex_state = 426, .external_lex_state = 24}, + [678] = {.lex_state = 534, .external_lex_state = 22}, + [679] = {.lex_state = 426, .external_lex_state = 24}, + [680] = {.lex_state = 537, .external_lex_state = 20}, + [681] = {.lex_state = 537, .external_lex_state = 20}, + [682] = {.lex_state = 537, .external_lex_state = 20}, + [683] = {.lex_state = 275, .external_lex_state = 9}, + [684] = {.lex_state = 275, .external_lex_state = 9}, + [685] = {.lex_state = 269, .external_lex_state = 20}, + [686] = {.lex_state = 536, .external_lex_state = 22}, + [687] = {.lex_state = 536, .external_lex_state = 20}, + [688] = {.lex_state = 536, .external_lex_state = 22}, + [689] = {.lex_state = 277, .external_lex_state = 20}, + [690] = {.lex_state = 277, .external_lex_state = 20}, + [691] = {.lex_state = 277, .external_lex_state = 20}, + [692] = {.lex_state = 277, .external_lex_state = 20}, + [693] = {.lex_state = 426, .external_lex_state = 24}, + [694] = {.lex_state = 277, .external_lex_state = 20}, + [695] = {.lex_state = 277, .external_lex_state = 20}, + [696] = {.lex_state = 536, .external_lex_state = 20}, + [697] = {.lex_state = 534, .external_lex_state = 22}, + [698] = {.lex_state = 536, .external_lex_state = 20}, + [699] = {.lex_state = 426, .external_lex_state = 24}, + [700] = {.lex_state = 536, .external_lex_state = 20}, + [701] = {.lex_state = 536, .external_lex_state = 20}, + [702] = {.lex_state = 426, .external_lex_state = 24}, + [703] = {.lex_state = 534, .external_lex_state = 22}, + [704] = {.lex_state = 426, .external_lex_state = 24}, + [705] = {.lex_state = 534, .external_lex_state = 22}, + [706] = {.lex_state = 243, .external_lex_state = 17}, + [707] = {.lex_state = 243, .external_lex_state = 17}, + [708] = {.lex_state = 243, .external_lex_state = 17}, + [709] = {.lex_state = 537, .external_lex_state = 20}, + [710] = {.lex_state = 539, .external_lex_state = 20}, + [711] = {.lex_state = 426, .external_lex_state = 24}, + [712] = {.lex_state = 426, .external_lex_state = 24}, + [713] = {.lex_state = 539, .external_lex_state = 20}, + [714] = {.lex_state = 412, .external_lex_state = 25}, + [715] = {.lex_state = 412, .external_lex_state = 25}, + [716] = {.lex_state = 426, .external_lex_state = 24}, + [717] = {.lex_state = 539, .external_lex_state = 20}, + [718] = {.lex_state = 536, .external_lex_state = 22}, + [719] = {.lex_state = 273, .external_lex_state = 26}, + [720] = {.lex_state = 536, .external_lex_state = 22}, + [721] = {.lex_state = 537, .external_lex_state = 20}, + [722] = {.lex_state = 537, .external_lex_state = 20}, + [723] = {.lex_state = 273, .external_lex_state = 26}, + [724] = {.lex_state = 536, .external_lex_state = 22}, + [725] = {.lex_state = 273, .external_lex_state = 26}, + [726] = {.lex_state = 281, .external_lex_state = 19}, + [727] = {.lex_state = 281, .external_lex_state = 19}, + [728] = {.lex_state = 283, .external_lex_state = 20}, + [729] = {.lex_state = 539, .external_lex_state = 20}, + [730] = {.lex_state = 426, .external_lex_state = 24}, + [731] = {.lex_state = 464, .external_lex_state = 27}, + [732] = {.lex_state = 283, .external_lex_state = 20}, + [733] = {.lex_state = 283, .external_lex_state = 20}, + [734] = {.lex_state = 536, .external_lex_state = 22}, + [735] = {.lex_state = 538, .external_lex_state = 22}, + [736] = {.lex_state = 273, .external_lex_state = 26}, + [737] = {.lex_state = 273, .external_lex_state = 26}, + [738] = {.lex_state = 273, .external_lex_state = 26}, + [739] = {.lex_state = 273, .external_lex_state = 26}, + [740] = {.lex_state = 534, .external_lex_state = 22}, + [741] = {.lex_state = 539, .external_lex_state = 20}, + [742] = {.lex_state = 283, .external_lex_state = 20}, + [743] = {.lex_state = 536, .external_lex_state = 22}, + [744] = {.lex_state = 536, .external_lex_state = 22}, + [745] = {.lex_state = 426, .external_lex_state = 24}, + [746] = {.lex_state = 536, .external_lex_state = 22}, + [747] = {.lex_state = 464, .external_lex_state = 27}, + [748] = {.lex_state = 270, .external_lex_state = 22}, + [749] = {.lex_state = 534, .external_lex_state = 22}, + [750] = {.lex_state = 538, .external_lex_state = 22}, + [751] = {.lex_state = 283, .external_lex_state = 20}, + [752] = {.lex_state = 538, .external_lex_state = 22}, + [753] = {.lex_state = 534, .external_lex_state = 22}, + [754] = {.lex_state = 270, .external_lex_state = 22}, + [755] = {.lex_state = 464, .external_lex_state = 27}, + [756] = {.lex_state = 283, .external_lex_state = 20}, + [757] = {.lex_state = 273, .external_lex_state = 26}, + [758] = {.lex_state = 534, .external_lex_state = 22}, + [759] = {.lex_state = 273, .external_lex_state = 26}, + [760] = {.lex_state = 426, .external_lex_state = 24}, + [761] = {.lex_state = 538, .external_lex_state = 22}, + [762] = {.lex_state = 538, .external_lex_state = 22}, + [763] = {.lex_state = 252, .external_lex_state = 20}, + [764] = {.lex_state = 426, .external_lex_state = 24}, + [765] = {.lex_state = 252, .external_lex_state = 20}, + [766] = {.lex_state = 538, .external_lex_state = 22}, + [767] = {.lex_state = 534, .external_lex_state = 22}, + [768] = {.lex_state = 536, .external_lex_state = 22}, + [769] = {.lex_state = 536, .external_lex_state = 22}, + [770] = {.lex_state = 252, .external_lex_state = 20}, + [771] = {.lex_state = 537, .external_lex_state = 20}, + [772] = {.lex_state = 537, .external_lex_state = 20}, + [773] = {.lex_state = 539, .external_lex_state = 20}, + [774] = {.lex_state = 273, .external_lex_state = 26}, + [775] = {.lex_state = 536, .external_lex_state = 20}, + [776] = {.lex_state = 536, .external_lex_state = 20}, + [777] = {.lex_state = 426, .external_lex_state = 24}, + [778] = {.lex_state = 538, .external_lex_state = 22}, + [779] = {.lex_state = 538, .external_lex_state = 22}, + [780] = {.lex_state = 539, .external_lex_state = 20}, + [781] = {.lex_state = 413, .external_lex_state = 28}, + [782] = {.lex_state = 413, .external_lex_state = 28}, + [783] = {.lex_state = 473, .external_lex_state = 29}, + [784] = {.lex_state = 538, .external_lex_state = 22}, + [785] = {.lex_state = 539, .external_lex_state = 20}, + [786] = {.lex_state = 539, .external_lex_state = 20}, + [787] = {.lex_state = 538, .external_lex_state = 22}, + [788] = {.lex_state = 538, .external_lex_state = 22}, + [789] = {.lex_state = 538, .external_lex_state = 22}, + [790] = {.lex_state = 536, .external_lex_state = 22}, + [791] = {.lex_state = 536, .external_lex_state = 22}, + [792] = {.lex_state = 539, .external_lex_state = 20}, + [793] = {.lex_state = 539, .external_lex_state = 20}, + [794] = {.lex_state = 538, .external_lex_state = 22}, + [795] = {.lex_state = 549, .external_lex_state = 2}, + [796] = {.lex_state = 536, .external_lex_state = 22}, + [797] = {.lex_state = 536, .external_lex_state = 22}, + [798] = {.lex_state = 538, .external_lex_state = 22}, + [799] = {.lex_state = 549, .external_lex_state = 2}, + [800] = {.lex_state = 538, .external_lex_state = 22}, + [801] = {.lex_state = 549, .external_lex_state = 2}, + [802] = {.lex_state = 539, .external_lex_state = 20}, + [803] = {.lex_state = 473, .external_lex_state = 29}, + [804] = {.lex_state = 473, .external_lex_state = 29}, + [805] = {.lex_state = 424, .external_lex_state = 2}, + [806] = {.lex_state = 261, .external_lex_state = 20}, + [807] = {.lex_state = 467, .external_lex_state = 30}, + [808] = {.lex_state = 258, .external_lex_state = 16}, + [809] = {.lex_state = 258, .external_lex_state = 16}, + [810] = {.lex_state = 258, .external_lex_state = 16}, + [811] = {.lex_state = 538, .external_lex_state = 22}, + [812] = {.lex_state = 467, .external_lex_state = 30}, + [813] = {.lex_state = 278, .external_lex_state = 31}, + [814] = {.lex_state = 261, .external_lex_state = 20}, + [815] = {.lex_state = 278, .external_lex_state = 31}, + [816] = {.lex_state = 278, .external_lex_state = 31}, + [817] = {.lex_state = 549, .external_lex_state = 2}, + [818] = {.lex_state = 278, .external_lex_state = 31}, + [819] = {.lex_state = 258, .external_lex_state = 16}, + [820] = {.lex_state = 261, .external_lex_state = 20}, + [821] = {.lex_state = 549, .external_lex_state = 2}, + [822] = {.lex_state = 278, .external_lex_state = 31}, + [823] = {.lex_state = 278, .external_lex_state = 31}, + [824] = {.lex_state = 278, .external_lex_state = 31}, + [825] = {.lex_state = 538, .external_lex_state = 22}, + [826] = {.lex_state = 467, .external_lex_state = 30}, + [827] = {.lex_state = 538, .external_lex_state = 22}, + [828] = {.lex_state = 549, .external_lex_state = 2}, + [829] = {.lex_state = 538, .external_lex_state = 22}, + [830] = {.lex_state = 252, .external_lex_state = 22}, + [831] = {.lex_state = 467, .external_lex_state = 32}, + [832] = {.lex_state = 278, .external_lex_state = 33}, + [833] = {.lex_state = 278, .external_lex_state = 31}, + [834] = {.lex_state = 261, .external_lex_state = 22}, + [835] = {.lex_state = 261, .external_lex_state = 22}, + [836] = {.lex_state = 278, .external_lex_state = 31}, + [837] = {.lex_state = 414, .external_lex_state = 30}, + [838] = {.lex_state = 278, .external_lex_state = 31}, + [839] = {.lex_state = 278, .external_lex_state = 31}, + [840] = {.lex_state = 278, .external_lex_state = 31}, + [841] = {.lex_state = 414, .external_lex_state = 30}, + [842] = {.lex_state = 278, .external_lex_state = 31}, + [843] = {.lex_state = 278, .external_lex_state = 31}, + [844] = {.lex_state = 261, .external_lex_state = 22}, + [845] = {.lex_state = 414, .external_lex_state = 30}, + [846] = {.lex_state = 261, .external_lex_state = 20}, + [847] = {.lex_state = 414, .external_lex_state = 30}, + [848] = {.lex_state = 278, .external_lex_state = 31}, + [849] = {.lex_state = 278, .external_lex_state = 31}, + [850] = {.lex_state = 278, .external_lex_state = 33}, + [851] = {.lex_state = 278, .external_lex_state = 33}, + [852] = {.lex_state = 278, .external_lex_state = 33}, + [853] = {.lex_state = 278, .external_lex_state = 31}, + [854] = {.lex_state = 278, .external_lex_state = 31}, + [855] = {.lex_state = 278, .external_lex_state = 33}, + [856] = {.lex_state = 280, .external_lex_state = 4}, + [857] = {.lex_state = 280, .external_lex_state = 4}, + [858] = {.lex_state = 280, .external_lex_state = 4}, + [859] = {.lex_state = 280, .external_lex_state = 4}, + [860] = {.lex_state = 278, .external_lex_state = 31}, + [861] = {.lex_state = 261, .external_lex_state = 20}, + [862] = {.lex_state = 278, .external_lex_state = 31}, + [863] = {.lex_state = 278, .external_lex_state = 31}, + [864] = {.lex_state = 278, .external_lex_state = 31}, + [865] = {.lex_state = 278, .external_lex_state = 31}, + [866] = {.lex_state = 280, .external_lex_state = 4}, + [867] = {.lex_state = 278, .external_lex_state = 33}, + [868] = {.lex_state = 278, .external_lex_state = 33}, + [869] = {.lex_state = 278, .external_lex_state = 31}, + [870] = {.lex_state = 278, .external_lex_state = 31}, + [871] = {.lex_state = 278, .external_lex_state = 31}, + [872] = {.lex_state = 280, .external_lex_state = 4}, + [873] = {.lex_state = 278, .external_lex_state = 33}, + [874] = {.lex_state = 261, .external_lex_state = 20}, + [875] = {.lex_state = 285, .external_lex_state = 20}, + [876] = {.lex_state = 285, .external_lex_state = 20}, + [877] = {.lex_state = 252, .external_lex_state = 22}, + [878] = {.lex_state = 278, .external_lex_state = 33}, + [879] = {.lex_state = 278, .external_lex_state = 33}, + [880] = {.lex_state = 261, .external_lex_state = 20}, + [881] = {.lex_state = 463, .external_lex_state = 29}, + [882] = {.lex_state = 463, .external_lex_state = 29}, + [883] = {.lex_state = 463, .external_lex_state = 29}, + [884] = {.lex_state = 278, .external_lex_state = 33}, + [885] = {.lex_state = 252, .external_lex_state = 22}, + [886] = {.lex_state = 278, .external_lex_state = 33}, + [887] = {.lex_state = 467, .external_lex_state = 32}, + [888] = {.lex_state = 467, .external_lex_state = 32}, + [889] = {.lex_state = 285, .external_lex_state = 20}, + [890] = {.lex_state = 285, .external_lex_state = 20}, + [891] = {.lex_state = 467, .external_lex_state = 30}, + [892] = {.lex_state = 467, .external_lex_state = 30}, + [893] = {.lex_state = 261, .external_lex_state = 20}, + [894] = {.lex_state = 261, .external_lex_state = 20}, + [895] = {.lex_state = 280, .external_lex_state = 4}, + [896] = {.lex_state = 540, .external_lex_state = 4}, + [897] = {.lex_state = 278, .external_lex_state = 33}, + [898] = {.lex_state = 280, .external_lex_state = 34}, + [899] = {.lex_state = 278, .external_lex_state = 33}, + [900] = {.lex_state = 278, .external_lex_state = 33}, + [901] = {.lex_state = 280, .external_lex_state = 34}, + [902] = {.lex_state = 280, .external_lex_state = 4}, + [903] = {.lex_state = 280, .external_lex_state = 4}, + [904] = {.lex_state = 280, .external_lex_state = 4}, + [905] = {.lex_state = 280, .external_lex_state = 4}, + [906] = {.lex_state = 280, .external_lex_state = 4}, + [907] = {.lex_state = 278, .external_lex_state = 33}, + [908] = {.lex_state = 278, .external_lex_state = 33}, + [909] = {.lex_state = 280, .external_lex_state = 4}, + [910] = {.lex_state = 540, .external_lex_state = 4}, + [911] = {.lex_state = 280, .external_lex_state = 4}, + [912] = {.lex_state = 540, .external_lex_state = 4}, + [913] = {.lex_state = 536, .external_lex_state = 20}, + [914] = {.lex_state = 280, .external_lex_state = 34}, + [915] = {.lex_state = 278, .external_lex_state = 33}, + [916] = {.lex_state = 278, .external_lex_state = 33}, + [917] = {.lex_state = 280, .external_lex_state = 34}, + [918] = {.lex_state = 280, .external_lex_state = 34}, + [919] = {.lex_state = 280, .external_lex_state = 34}, + [920] = {.lex_state = 280, .external_lex_state = 4}, + [921] = {.lex_state = 280, .external_lex_state = 4}, + [922] = {.lex_state = 415, .external_lex_state = 29}, + [923] = {.lex_state = 415, .external_lex_state = 29}, + [924] = {.lex_state = 280, .external_lex_state = 4}, + [925] = {.lex_state = 280, .external_lex_state = 4}, + [926] = {.lex_state = 278, .external_lex_state = 33}, + [927] = {.lex_state = 278, .external_lex_state = 33}, + [928] = {.lex_state = 278, .external_lex_state = 33}, + [929] = {.lex_state = 278, .external_lex_state = 33}, + [930] = {.lex_state = 278, .external_lex_state = 33}, + [931] = {.lex_state = 287, .external_lex_state = 20}, + [932] = {.lex_state = 287, .external_lex_state = 20}, + [933] = {.lex_state = 278, .external_lex_state = 33}, + [934] = {.lex_state = 278, .external_lex_state = 33}, + [935] = {.lex_state = 278, .external_lex_state = 33}, + [936] = {.lex_state = 287, .external_lex_state = 20}, + [937] = {.lex_state = 287, .external_lex_state = 20}, + [938] = {.lex_state = 280, .external_lex_state = 4}, + [939] = {.lex_state = 280, .external_lex_state = 4}, + [940] = {.lex_state = 280, .external_lex_state = 4}, + [941] = {.lex_state = 280, .external_lex_state = 4}, + [942] = {.lex_state = 280, .external_lex_state = 4}, + [943] = {.lex_state = 280, .external_lex_state = 4}, + [944] = {.lex_state = 280, .external_lex_state = 4}, + [945] = {.lex_state = 280, .external_lex_state = 4}, + [946] = {.lex_state = 287, .external_lex_state = 20}, + [947] = {.lex_state = 287, .external_lex_state = 20}, + [948] = {.lex_state = 540, .external_lex_state = 4}, + [949] = {.lex_state = 473, .external_lex_state = 35}, + [950] = {.lex_state = 461, .external_lex_state = 36}, + [951] = {.lex_state = 536, .external_lex_state = 20}, + [952] = {.lex_state = 536, .external_lex_state = 20}, + [953] = {.lex_state = 473, .external_lex_state = 35}, + [954] = {.lex_state = 540, .external_lex_state = 4}, + [955] = {.lex_state = 536, .external_lex_state = 20}, + [956] = {.lex_state = 278, .external_lex_state = 33}, + [957] = {.lex_state = 473, .external_lex_state = 35}, + [958] = {.lex_state = 472, .external_lex_state = 32}, + [959] = {.lex_state = 472, .external_lex_state = 32}, + [960] = {.lex_state = 467, .external_lex_state = 32}, + [961] = {.lex_state = 467, .external_lex_state = 32}, + [962] = {.lex_state = 270, .external_lex_state = 22}, + [963] = {.lex_state = 270, .external_lex_state = 22}, + [964] = {.lex_state = 270, .external_lex_state = 22}, + [965] = {.lex_state = 472, .external_lex_state = 32}, + [966] = {.lex_state = 540, .external_lex_state = 4}, + [967] = {.lex_state = 540, .external_lex_state = 4}, + [968] = {.lex_state = 432, .external_lex_state = 37}, + [969] = {.lex_state = 432, .external_lex_state = 37}, + [970] = {.lex_state = 463, .external_lex_state = 29}, + [971] = {.lex_state = 463, .external_lex_state = 29}, + [972] = {.lex_state = 461, .external_lex_state = 36}, + [973] = {.lex_state = 540, .external_lex_state = 4}, + [974] = {.lex_state = 463, .external_lex_state = 35}, + [975] = {.lex_state = 463, .external_lex_state = 35}, + [976] = {.lex_state = 463, .external_lex_state = 35}, + [977] = {.lex_state = 461, .external_lex_state = 36}, + [978] = {.lex_state = 240, .external_lex_state = 13}, + [979] = {.lex_state = 540, .external_lex_state = 4}, + [980] = {.lex_state = 540, .external_lex_state = 4}, + [981] = {.lex_state = 540, .external_lex_state = 4}, + [982] = {.lex_state = 540, .external_lex_state = 4}, + [983] = {.lex_state = 536, .external_lex_state = 20}, + [984] = {.lex_state = 461, .external_lex_state = 36}, + [985] = {.lex_state = 540, .external_lex_state = 4}, + [986] = {.lex_state = 536, .external_lex_state = 20}, + [987] = {.lex_state = 280, .external_lex_state = 34}, + [988] = {.lex_state = 280, .external_lex_state = 34}, + [989] = {.lex_state = 536, .external_lex_state = 20}, + [990] = {.lex_state = 280, .external_lex_state = 34}, + [991] = {.lex_state = 280, .external_lex_state = 34}, + [992] = {.lex_state = 461, .external_lex_state = 36}, + [993] = {.lex_state = 280, .external_lex_state = 34}, + [994] = {.lex_state = 280, .external_lex_state = 34}, + [995] = {.lex_state = 415, .external_lex_state = 29}, + [996] = {.lex_state = 415, .external_lex_state = 29}, + [997] = {.lex_state = 240, .external_lex_state = 13}, + [998] = {.lex_state = 416, .external_lex_state = 30}, + [999] = {.lex_state = 416, .external_lex_state = 30}, + [1000] = {.lex_state = 278, .external_lex_state = 33}, + [1001] = {.lex_state = 461, .external_lex_state = 36}, + [1002] = {.lex_state = 540, .external_lex_state = 4}, + [1003] = {.lex_state = 536, .external_lex_state = 20}, + [1004] = {.lex_state = 461, .external_lex_state = 36}, + [1005] = {.lex_state = 278, .external_lex_state = 33}, + [1006] = {.lex_state = 278, .external_lex_state = 33}, + [1007] = {.lex_state = 261, .external_lex_state = 22}, + [1008] = {.lex_state = 261, .external_lex_state = 22}, + [1009] = {.lex_state = 461, .external_lex_state = 36}, + [1010] = {.lex_state = 540, .external_lex_state = 4}, + [1011] = {.lex_state = 540, .external_lex_state = 34}, + [1012] = {.lex_state = 280, .external_lex_state = 34}, + [1013] = {.lex_state = 280, .external_lex_state = 34}, + [1014] = {.lex_state = 280, .external_lex_state = 34}, + [1015] = {.lex_state = 280, .external_lex_state = 34}, + [1016] = {.lex_state = 280, .external_lex_state = 34}, + [1017] = {.lex_state = 280, .external_lex_state = 34}, + [1018] = {.lex_state = 280, .external_lex_state = 34}, + [1019] = {.lex_state = 430, .external_lex_state = 38}, + [1020] = {.lex_state = 430, .external_lex_state = 38}, + [1021] = {.lex_state = 280, .external_lex_state = 34}, + [1022] = {.lex_state = 280, .external_lex_state = 34}, + [1023] = {.lex_state = 280, .external_lex_state = 34}, + [1024] = {.lex_state = 540, .external_lex_state = 34}, + [1025] = {.lex_state = 536, .external_lex_state = 20}, + [1026] = {.lex_state = 280, .external_lex_state = 34}, + [1027] = {.lex_state = 280, .external_lex_state = 34}, + [1028] = {.lex_state = 540, .external_lex_state = 34}, + [1029] = {.lex_state = 540, .external_lex_state = 34}, + [1030] = {.lex_state = 417, .external_lex_state = 29}, + [1031] = {.lex_state = 417, .external_lex_state = 29}, + [1032] = {.lex_state = 536, .external_lex_state = 20}, + [1033] = {.lex_state = 280, .external_lex_state = 34}, + [1034] = {.lex_state = 536, .external_lex_state = 20}, + [1035] = {.lex_state = 536, .external_lex_state = 20}, + [1036] = {.lex_state = 536, .external_lex_state = 20}, + [1037] = {.lex_state = 540, .external_lex_state = 34}, + [1038] = {.lex_state = 540, .external_lex_state = 34}, + [1039] = {.lex_state = 540, .external_lex_state = 34}, + [1040] = {.lex_state = 540, .external_lex_state = 34}, + [1041] = {.lex_state = 433, .external_lex_state = 38}, + [1042] = {.lex_state = 433, .external_lex_state = 38}, + [1043] = {.lex_state = 472, .external_lex_state = 32}, + [1044] = {.lex_state = 472, .external_lex_state = 32}, + [1045] = {.lex_state = 540, .external_lex_state = 34}, + [1046] = {.lex_state = 540, .external_lex_state = 34}, + [1047] = {.lex_state = 536, .external_lex_state = 20}, + [1048] = {.lex_state = 540, .external_lex_state = 4}, + [1049] = {.lex_state = 540, .external_lex_state = 4}, + [1050] = {.lex_state = 540, .external_lex_state = 34}, + [1051] = {.lex_state = 280, .external_lex_state = 34}, + [1052] = {.lex_state = 540, .external_lex_state = 34}, + [1053] = {.lex_state = 284, .external_lex_state = 39}, + [1054] = {.lex_state = 284, .external_lex_state = 39}, + [1055] = {.lex_state = 280, .external_lex_state = 34}, + [1056] = {.lex_state = 540, .external_lex_state = 4}, + [1057] = {.lex_state = 540, .external_lex_state = 4}, + [1058] = {.lex_state = 540, .external_lex_state = 4}, + [1059] = {.lex_state = 286, .external_lex_state = 39}, + [1060] = {.lex_state = 286, .external_lex_state = 39}, + [1061] = {.lex_state = 540, .external_lex_state = 4}, + [1062] = {.lex_state = 284, .external_lex_state = 39}, + [1063] = {.lex_state = 540, .external_lex_state = 4}, + [1064] = {.lex_state = 284, .external_lex_state = 39}, + [1065] = {.lex_state = 429, .external_lex_state = 38}, + [1066] = {.lex_state = 429, .external_lex_state = 38}, + [1067] = {.lex_state = 540, .external_lex_state = 34}, + [1068] = {.lex_state = 469, .external_lex_state = 35}, + [1069] = {.lex_state = 540, .external_lex_state = 34}, + [1070] = {.lex_state = 469, .external_lex_state = 35}, + [1071] = {.lex_state = 540, .external_lex_state = 34}, + [1072] = {.lex_state = 469, .external_lex_state = 35}, + [1073] = {.lex_state = 240, .external_lex_state = 13}, + [1074] = {.lex_state = 463, .external_lex_state = 35}, + [1075] = {.lex_state = 540, .external_lex_state = 34}, + [1076] = {.lex_state = 463, .external_lex_state = 35}, + [1077] = {.lex_state = 284, .external_lex_state = 39}, + [1078] = {.lex_state = 284, .external_lex_state = 39}, + [1079] = {.lex_state = 284, .external_lex_state = 39}, + [1080] = {.lex_state = 284, .external_lex_state = 39}, + [1081] = {.lex_state = 284, .external_lex_state = 39}, + [1082] = {.lex_state = 284, .external_lex_state = 39}, + [1083] = {.lex_state = 540, .external_lex_state = 4}, + [1084] = {.lex_state = 286, .external_lex_state = 39}, + [1085] = {.lex_state = 286, .external_lex_state = 39}, + [1086] = {.lex_state = 540, .external_lex_state = 4}, + [1087] = {.lex_state = 540, .external_lex_state = 4}, + [1088] = {.lex_state = 240, .external_lex_state = 14}, + [1089] = {.lex_state = 540, .external_lex_state = 4}, + [1090] = {.lex_state = 540, .external_lex_state = 4}, + [1091] = {.lex_state = 540, .external_lex_state = 4}, + [1092] = {.lex_state = 540, .external_lex_state = 4}, + [1093] = {.lex_state = 240, .external_lex_state = 14}, + [1094] = {.lex_state = 540, .external_lex_state = 34}, + [1095] = {.lex_state = 540, .external_lex_state = 4}, + [1096] = {.lex_state = 540, .external_lex_state = 4}, + [1097] = {.lex_state = 240, .external_lex_state = 14}, + [1098] = {.lex_state = 540, .external_lex_state = 4}, + [1099] = {.lex_state = 540, .external_lex_state = 4}, + [1100] = {.lex_state = 540, .external_lex_state = 4}, + [1101] = {.lex_state = 540, .external_lex_state = 4}, + [1102] = {.lex_state = 540, .external_lex_state = 4}, + [1103] = {.lex_state = 540, .external_lex_state = 34}, + [1104] = {.lex_state = 540, .external_lex_state = 34}, + [1105] = {.lex_state = 540, .external_lex_state = 4}, + [1106] = {.lex_state = 540, .external_lex_state = 4}, + [1107] = {.lex_state = 540, .external_lex_state = 4}, + [1108] = {.lex_state = 540, .external_lex_state = 4}, + [1109] = {.lex_state = 540, .external_lex_state = 4}, + [1110] = {.lex_state = 540, .external_lex_state = 4}, + [1111] = {.lex_state = 240, .external_lex_state = 14}, + [1112] = {.lex_state = 540, .external_lex_state = 34}, + [1113] = {.lex_state = 540, .external_lex_state = 4}, + [1114] = {.lex_state = 540, .external_lex_state = 4}, + [1115] = {.lex_state = 280, .external_lex_state = 34}, + [1116] = {.lex_state = 280, .external_lex_state = 34}, + [1117] = {.lex_state = 540, .external_lex_state = 4}, + [1118] = {.lex_state = 536, .external_lex_state = 20}, + [1119] = {.lex_state = 432, .external_lex_state = 40}, + [1120] = {.lex_state = 432, .external_lex_state = 40}, + [1121] = {.lex_state = 540, .external_lex_state = 4}, + [1122] = {.lex_state = 540, .external_lex_state = 4}, + [1123] = {.lex_state = 417, .external_lex_state = 29}, + [1124] = {.lex_state = 417, .external_lex_state = 29}, + [1125] = {.lex_state = 417, .external_lex_state = 29}, + [1126] = {.lex_state = 417, .external_lex_state = 29}, + [1127] = {.lex_state = 243, .external_lex_state = 11}, + [1128] = {.lex_state = 540, .external_lex_state = 4}, + [1129] = {.lex_state = 540, .external_lex_state = 4}, + [1130] = {.lex_state = 431, .external_lex_state = 38}, + [1131] = {.lex_state = 431, .external_lex_state = 38}, + [1132] = {.lex_state = 536, .external_lex_state = 20}, + [1133] = {.lex_state = 540, .external_lex_state = 4}, + [1134] = {.lex_state = 540, .external_lex_state = 34}, + [1135] = {.lex_state = 540, .external_lex_state = 34}, + [1136] = {.lex_state = 243, .external_lex_state = 11}, + [1137] = {.lex_state = 240, .external_lex_state = 13}, + [1138] = {.lex_state = 540, .external_lex_state = 4}, + [1139] = {.lex_state = 280, .external_lex_state = 34}, + [1140] = {.lex_state = 280, .external_lex_state = 34}, + [1141] = {.lex_state = 540, .external_lex_state = 34}, + [1142] = {.lex_state = 540, .external_lex_state = 4}, + [1143] = {.lex_state = 284, .external_lex_state = 39}, + [1144] = {.lex_state = 284, .external_lex_state = 39}, + [1145] = {.lex_state = 284, .external_lex_state = 39}, + [1146] = {.lex_state = 286, .external_lex_state = 39}, + [1147] = {.lex_state = 286, .external_lex_state = 39}, + [1148] = {.lex_state = 536, .external_lex_state = 20}, + [1149] = {.lex_state = 286, .external_lex_state = 39}, + [1150] = {.lex_state = 536, .external_lex_state = 20}, + [1151] = {.lex_state = 540, .external_lex_state = 4}, + [1152] = {.lex_state = 284, .external_lex_state = 39}, + [1153] = {.lex_state = 540, .external_lex_state = 4}, + [1154] = {.lex_state = 286, .external_lex_state = 39}, + [1155] = {.lex_state = 540, .external_lex_state = 4}, + [1156] = {.lex_state = 540, .external_lex_state = 4}, + [1157] = {.lex_state = 540, .external_lex_state = 34}, + [1158] = {.lex_state = 540, .external_lex_state = 4}, + [1159] = {.lex_state = 270, .external_lex_state = 22}, + [1160] = {.lex_state = 270, .external_lex_state = 22}, + [1161] = {.lex_state = 240, .external_lex_state = 14}, + [1162] = {.lex_state = 540, .external_lex_state = 4}, + [1163] = {.lex_state = 540, .external_lex_state = 4}, + [1164] = {.lex_state = 286, .external_lex_state = 41}, + [1165] = {.lex_state = 286, .external_lex_state = 39}, + [1166] = {.lex_state = 286, .external_lex_state = 39}, + [1167] = {.lex_state = 286, .external_lex_state = 39}, + [1168] = {.lex_state = 284, .external_lex_state = 39}, + [1169] = {.lex_state = 286, .external_lex_state = 39}, + [1170] = {.lex_state = 540, .external_lex_state = 34}, + [1171] = {.lex_state = 240, .external_lex_state = 14}, + [1172] = {.lex_state = 540, .external_lex_state = 34}, + [1173] = {.lex_state = 286, .external_lex_state = 39}, + [1174] = {.lex_state = 240, .external_lex_state = 14}, + [1175] = {.lex_state = 286, .external_lex_state = 39}, + [1176] = {.lex_state = 540, .external_lex_state = 34}, + [1177] = {.lex_state = 284, .external_lex_state = 41}, + [1178] = {.lex_state = 284, .external_lex_state = 41}, + [1179] = {.lex_state = 531, .external_lex_state = 11}, + [1180] = {.lex_state = 540, .external_lex_state = 34}, + [1181] = {.lex_state = 540, .external_lex_state = 34}, + [1182] = {.lex_state = 540, .external_lex_state = 34}, + [1183] = {.lex_state = 540, .external_lex_state = 34}, + [1184] = {.lex_state = 531, .external_lex_state = 11}, + [1185] = {.lex_state = 540, .external_lex_state = 34}, + [1186] = {.lex_state = 540, .external_lex_state = 34}, + [1187] = {.lex_state = 288, .external_lex_state = 42}, + [1188] = {.lex_state = 288, .external_lex_state = 42}, + [1189] = {.lex_state = 284, .external_lex_state = 41}, + [1190] = {.lex_state = 288, .external_lex_state = 42}, + [1191] = {.lex_state = 288, .external_lex_state = 42}, + [1192] = {.lex_state = 288, .external_lex_state = 42}, + [1193] = {.lex_state = 288, .external_lex_state = 42}, + [1194] = {.lex_state = 540, .external_lex_state = 34}, + [1195] = {.lex_state = 540, .external_lex_state = 34}, + [1196] = {.lex_state = 288, .external_lex_state = 42}, + [1197] = {.lex_state = 288, .external_lex_state = 42}, + [1198] = {.lex_state = 540, .external_lex_state = 34}, + [1199] = {.lex_state = 540, .external_lex_state = 34}, + [1200] = {.lex_state = 540, .external_lex_state = 34}, + [1201] = {.lex_state = 540, .external_lex_state = 34}, + [1202] = {.lex_state = 540, .external_lex_state = 34}, + [1203] = {.lex_state = 284, .external_lex_state = 39}, + [1204] = {.lex_state = 290, .external_lex_state = 42}, + [1205] = {.lex_state = 290, .external_lex_state = 42}, + [1206] = {.lex_state = 284, .external_lex_state = 39}, + [1207] = {.lex_state = 469, .external_lex_state = 35}, + [1208] = {.lex_state = 240, .external_lex_state = 14}, + [1209] = {.lex_state = 469, .external_lex_state = 35}, + [1210] = {.lex_state = 284, .external_lex_state = 39}, + [1211] = {.lex_state = 290, .external_lex_state = 42}, + [1212] = {.lex_state = 286, .external_lex_state = 39}, + [1213] = {.lex_state = 243, .external_lex_state = 17}, + [1214] = {.lex_state = 284, .external_lex_state = 39}, + [1215] = {.lex_state = 540, .external_lex_state = 34}, + [1216] = {.lex_state = 540, .external_lex_state = 34}, + [1217] = {.lex_state = 284, .external_lex_state = 39}, + [1218] = {.lex_state = 286, .external_lex_state = 39}, + [1219] = {.lex_state = 243, .external_lex_state = 17}, + [1220] = {.lex_state = 540, .external_lex_state = 34}, + [1221] = {.lex_state = 540, .external_lex_state = 34}, + [1222] = {.lex_state = 540, .external_lex_state = 34}, + [1223] = {.lex_state = 540, .external_lex_state = 34}, + [1224] = {.lex_state = 540, .external_lex_state = 34}, + [1225] = {.lex_state = 284, .external_lex_state = 39}, + [1226] = {.lex_state = 435, .external_lex_state = 43}, + [1227] = {.lex_state = 284, .external_lex_state = 39}, + [1228] = {.lex_state = 540, .external_lex_state = 34}, + [1229] = {.lex_state = 531, .external_lex_state = 11}, + [1230] = {.lex_state = 540, .external_lex_state = 34}, + [1231] = {.lex_state = 243, .external_lex_state = 11}, + [1232] = {.lex_state = 290, .external_lex_state = 42}, + [1233] = {.lex_state = 284, .external_lex_state = 39}, + [1234] = {.lex_state = 284, .external_lex_state = 39}, + [1235] = {.lex_state = 288, .external_lex_state = 42}, + [1236] = {.lex_state = 540, .external_lex_state = 34}, + [1237] = {.lex_state = 540, .external_lex_state = 34}, + [1238] = {.lex_state = 284, .external_lex_state = 39}, + [1239] = {.lex_state = 290, .external_lex_state = 42}, + [1240] = {.lex_state = 240, .external_lex_state = 14}, + [1241] = {.lex_state = 288, .external_lex_state = 42}, + [1242] = {.lex_state = 540, .external_lex_state = 34}, + [1243] = {.lex_state = 284, .external_lex_state = 39}, + [1244] = {.lex_state = 243, .external_lex_state = 11}, + [1245] = {.lex_state = 540, .external_lex_state = 34}, + [1246] = {.lex_state = 290, .external_lex_state = 42}, + [1247] = {.lex_state = 434, .external_lex_state = 38}, + [1248] = {.lex_state = 288, .external_lex_state = 42}, + [1249] = {.lex_state = 284, .external_lex_state = 41}, + [1250] = {.lex_state = 434, .external_lex_state = 38}, + [1251] = {.lex_state = 540, .external_lex_state = 34}, + [1252] = {.lex_state = 288, .external_lex_state = 42}, + [1253] = {.lex_state = 286, .external_lex_state = 39}, + [1254] = {.lex_state = 288, .external_lex_state = 42}, + [1255] = {.lex_state = 540, .external_lex_state = 34}, + [1256] = {.lex_state = 240, .external_lex_state = 14}, + [1257] = {.lex_state = 531, .external_lex_state = 11}, + [1258] = {.lex_state = 284, .external_lex_state = 39}, + [1259] = {.lex_state = 284, .external_lex_state = 39}, + [1260] = {.lex_state = 286, .external_lex_state = 39}, + [1261] = {.lex_state = 243, .external_lex_state = 17}, + [1262] = {.lex_state = 540, .external_lex_state = 34}, + [1263] = {.lex_state = 540, .external_lex_state = 34}, + [1264] = {.lex_state = 288, .external_lex_state = 42}, + [1265] = {.lex_state = 540, .external_lex_state = 34}, + [1266] = {.lex_state = 284, .external_lex_state = 39}, + [1267] = {.lex_state = 540, .external_lex_state = 34}, + [1268] = {.lex_state = 286, .external_lex_state = 39}, + [1269] = {.lex_state = 286, .external_lex_state = 39}, + [1270] = {.lex_state = 286, .external_lex_state = 39}, + [1271] = {.lex_state = 540, .external_lex_state = 34}, + [1272] = {.lex_state = 540, .external_lex_state = 34}, + [1273] = {.lex_state = 540, .external_lex_state = 34}, + [1274] = {.lex_state = 284, .external_lex_state = 39}, + [1275] = {.lex_state = 286, .external_lex_state = 41}, + [1276] = {.lex_state = 286, .external_lex_state = 41}, + [1277] = {.lex_state = 284, .external_lex_state = 39}, + [1278] = {.lex_state = 284, .external_lex_state = 41}, + [1279] = {.lex_state = 286, .external_lex_state = 41}, + [1280] = {.lex_state = 540, .external_lex_state = 34}, + [1281] = {.lex_state = 540, .external_lex_state = 34}, + [1282] = {.lex_state = 540, .external_lex_state = 34}, + [1283] = {.lex_state = 540, .external_lex_state = 34}, + [1284] = {.lex_state = 286, .external_lex_state = 39}, + [1285] = {.lex_state = 540, .external_lex_state = 34}, + [1286] = {.lex_state = 290, .external_lex_state = 42}, + [1287] = {.lex_state = 286, .external_lex_state = 41}, + [1288] = {.lex_state = 243, .external_lex_state = 17}, + [1289] = {.lex_state = 284, .external_lex_state = 39}, + [1290] = {.lex_state = 286, .external_lex_state = 39}, + [1291] = {.lex_state = 284, .external_lex_state = 39}, + [1292] = {.lex_state = 286, .external_lex_state = 39}, + [1293] = {.lex_state = 240, .external_lex_state = 14}, + [1294] = {.lex_state = 540, .external_lex_state = 34}, + [1295] = {.lex_state = 540, .external_lex_state = 34}, + [1296] = {.lex_state = 540, .external_lex_state = 34}, + [1297] = {.lex_state = 540, .external_lex_state = 34}, + [1298] = {.lex_state = 540, .external_lex_state = 34}, + [1299] = {.lex_state = 243, .external_lex_state = 17}, + [1300] = {.lex_state = 286, .external_lex_state = 39}, + [1301] = {.lex_state = 284, .external_lex_state = 41}, + [1302] = {.lex_state = 286, .external_lex_state = 39}, + [1303] = {.lex_state = 286, .external_lex_state = 39}, + [1304] = {.lex_state = 286, .external_lex_state = 41}, + [1305] = {.lex_state = 540, .external_lex_state = 34}, + [1306] = {.lex_state = 290, .external_lex_state = 42}, + [1307] = {.lex_state = 531, .external_lex_state = 17}, + [1308] = {.lex_state = 541, .external_lex_state = 42}, + [1309] = {.lex_state = 541, .external_lex_state = 42}, + [1310] = {.lex_state = 288, .external_lex_state = 44}, + [1311] = {.lex_state = 290, .external_lex_state = 42}, + [1312] = {.lex_state = 284, .external_lex_state = 41}, + [1313] = {.lex_state = 286, .external_lex_state = 41}, + [1314] = {.lex_state = 258, .external_lex_state = 16}, + [1315] = {.lex_state = 290, .external_lex_state = 42}, + [1316] = {.lex_state = 541, .external_lex_state = 42}, + [1317] = {.lex_state = 288, .external_lex_state = 42}, + [1318] = {.lex_state = 289, .external_lex_state = 45}, + [1319] = {.lex_state = 289, .external_lex_state = 45}, + [1320] = {.lex_state = 288, .external_lex_state = 42}, + [1321] = {.lex_state = 286, .external_lex_state = 41}, + [1322] = {.lex_state = 290, .external_lex_state = 44}, + [1323] = {.lex_state = 249, .external_lex_state = 16}, + [1324] = {.lex_state = 286, .external_lex_state = 41}, + [1325] = {.lex_state = 286, .external_lex_state = 41}, + [1326] = {.lex_state = 541, .external_lex_state = 42}, + [1327] = {.lex_state = 541, .external_lex_state = 42}, + [1328] = {.lex_state = 541, .external_lex_state = 42}, + [1329] = {.lex_state = 541, .external_lex_state = 42}, + [1330] = {.lex_state = 541, .external_lex_state = 42}, + [1331] = {.lex_state = 286, .external_lex_state = 41}, + [1332] = {.lex_state = 286, .external_lex_state = 41}, + [1333] = {.lex_state = 286, .external_lex_state = 41}, + [1334] = {.lex_state = 290, .external_lex_state = 42}, + [1335] = {.lex_state = 541, .external_lex_state = 42}, + [1336] = {.lex_state = 290, .external_lex_state = 44}, + [1337] = {.lex_state = 542, .external_lex_state = 42}, + [1338] = {.lex_state = 542, .external_lex_state = 42}, + [1339] = {.lex_state = 258, .external_lex_state = 16}, + [1340] = {.lex_state = 542, .external_lex_state = 42}, + [1341] = {.lex_state = 288, .external_lex_state = 42}, + [1342] = {.lex_state = 288, .external_lex_state = 42}, + [1343] = {.lex_state = 258, .external_lex_state = 16}, + [1344] = {.lex_state = 290, .external_lex_state = 44}, + [1345] = {.lex_state = 542, .external_lex_state = 42}, + [1346] = {.lex_state = 542, .external_lex_state = 42}, + [1347] = {.lex_state = 288, .external_lex_state = 42}, + [1348] = {.lex_state = 290, .external_lex_state = 42}, + [1349] = {.lex_state = 288, .external_lex_state = 42}, + [1350] = {.lex_state = 290, .external_lex_state = 42}, + [1351] = {.lex_state = 290, .external_lex_state = 42}, + [1352] = {.lex_state = 542, .external_lex_state = 42}, + [1353] = {.lex_state = 273, .external_lex_state = 26}, + [1354] = {.lex_state = 273, .external_lex_state = 26}, + [1355] = {.lex_state = 290, .external_lex_state = 42}, + [1356] = {.lex_state = 284, .external_lex_state = 41}, + [1357] = {.lex_state = 273, .external_lex_state = 26}, + [1358] = {.lex_state = 284, .external_lex_state = 41}, + [1359] = {.lex_state = 284, .external_lex_state = 41}, + [1360] = {.lex_state = 284, .external_lex_state = 41}, + [1361] = {.lex_state = 284, .external_lex_state = 41}, + [1362] = {.lex_state = 541, .external_lex_state = 42}, + [1363] = {.lex_state = 284, .external_lex_state = 41}, + [1364] = {.lex_state = 286, .external_lex_state = 41}, + [1365] = {.lex_state = 541, .external_lex_state = 42}, + [1366] = {.lex_state = 284, .external_lex_state = 41}, + [1367] = {.lex_state = 284, .external_lex_state = 41}, + [1368] = {.lex_state = 284, .external_lex_state = 41}, + [1369] = {.lex_state = 258, .external_lex_state = 16}, + [1370] = {.lex_state = 531, .external_lex_state = 17}, + [1371] = {.lex_state = 284, .external_lex_state = 41}, + [1372] = {.lex_state = 531, .external_lex_state = 17}, + [1373] = {.lex_state = 258, .external_lex_state = 16}, + [1374] = {.lex_state = 295, .external_lex_state = 41}, + [1375] = {.lex_state = 288, .external_lex_state = 42}, + [1376] = {.lex_state = 288, .external_lex_state = 42}, + [1377] = {.lex_state = 288, .external_lex_state = 42}, + [1378] = {.lex_state = 288, .external_lex_state = 42}, + [1379] = {.lex_state = 286, .external_lex_state = 41}, + [1380] = {.lex_state = 290, .external_lex_state = 42}, + [1381] = {.lex_state = 258, .external_lex_state = 16}, + [1382] = {.lex_state = 288, .external_lex_state = 42}, + [1383] = {.lex_state = 290, .external_lex_state = 42}, + [1384] = {.lex_state = 249, .external_lex_state = 16}, + [1385] = {.lex_state = 290, .external_lex_state = 42}, + [1386] = {.lex_state = 290, .external_lex_state = 42}, + [1387] = {.lex_state = 295, .external_lex_state = 41}, + [1388] = {.lex_state = 295, .external_lex_state = 41}, + [1389] = {.lex_state = 290, .external_lex_state = 42}, + [1390] = {.lex_state = 290, .external_lex_state = 42}, + [1391] = {.lex_state = 290, .external_lex_state = 42}, + [1392] = {.lex_state = 531, .external_lex_state = 17}, + [1393] = {.lex_state = 288, .external_lex_state = 42}, + [1394] = {.lex_state = 288, .external_lex_state = 42}, + [1395] = {.lex_state = 288, .external_lex_state = 42}, + [1396] = {.lex_state = 284, .external_lex_state = 41}, + [1397] = {.lex_state = 290, .external_lex_state = 44}, + [1398] = {.lex_state = 531, .external_lex_state = 11}, + [1399] = {.lex_state = 541, .external_lex_state = 42}, + [1400] = {.lex_state = 290, .external_lex_state = 42}, + [1401] = {.lex_state = 290, .external_lex_state = 42}, + [1402] = {.lex_state = 284, .external_lex_state = 41}, + [1403] = {.lex_state = 531, .external_lex_state = 11}, + [1404] = {.lex_state = 542, .external_lex_state = 42}, + [1405] = {.lex_state = 542, .external_lex_state = 42}, + [1406] = {.lex_state = 541, .external_lex_state = 42}, + [1407] = {.lex_state = 541, .external_lex_state = 42}, + [1408] = {.lex_state = 249, .external_lex_state = 16}, + [1409] = {.lex_state = 541, .external_lex_state = 42}, + [1410] = {.lex_state = 531, .external_lex_state = 17}, + [1411] = {.lex_state = 284, .external_lex_state = 41}, + [1412] = {.lex_state = 288, .external_lex_state = 42}, + [1413] = {.lex_state = 531, .external_lex_state = 17}, + [1414] = {.lex_state = 541, .external_lex_state = 42}, + [1415] = {.lex_state = 541, .external_lex_state = 42}, + [1416] = {.lex_state = 288, .external_lex_state = 42}, + [1417] = {.lex_state = 284, .external_lex_state = 41}, + [1418] = {.lex_state = 531, .external_lex_state = 17}, + [1419] = {.lex_state = 541, .external_lex_state = 42}, + [1420] = {.lex_state = 288, .external_lex_state = 44}, + [1421] = {.lex_state = 288, .external_lex_state = 44}, + [1422] = {.lex_state = 541, .external_lex_state = 42}, + [1423] = {.lex_state = 243, .external_lex_state = 17}, + [1424] = {.lex_state = 437, .external_lex_state = 46}, + [1425] = {.lex_state = 284, .external_lex_state = 41}, + [1426] = {.lex_state = 541, .external_lex_state = 42}, + [1427] = {.lex_state = 243, .external_lex_state = 17}, + [1428] = {.lex_state = 531, .external_lex_state = 11}, + [1429] = {.lex_state = 243, .external_lex_state = 17}, + [1430] = {.lex_state = 542, .external_lex_state = 42}, + [1431] = {.lex_state = 542, .external_lex_state = 42}, + [1432] = {.lex_state = 531, .external_lex_state = 11}, + [1433] = {.lex_state = 542, .external_lex_state = 42}, + [1434] = {.lex_state = 541, .external_lex_state = 42}, + [1435] = {.lex_state = 541, .external_lex_state = 42}, + [1436] = {.lex_state = 541, .external_lex_state = 42}, + [1437] = {.lex_state = 288, .external_lex_state = 44}, + [1438] = {.lex_state = 541, .external_lex_state = 42}, + [1439] = {.lex_state = 542, .external_lex_state = 42}, + [1440] = {.lex_state = 542, .external_lex_state = 42}, + [1441] = {.lex_state = 290, .external_lex_state = 44}, + [1442] = {.lex_state = 290, .external_lex_state = 44}, + [1443] = {.lex_state = 542, .external_lex_state = 42}, + [1444] = {.lex_state = 243, .external_lex_state = 17}, + [1445] = {.lex_state = 542, .external_lex_state = 42}, + [1446] = {.lex_state = 243, .external_lex_state = 17}, + [1447] = {.lex_state = 541, .external_lex_state = 42}, + [1448] = {.lex_state = 541, .external_lex_state = 42}, + [1449] = {.lex_state = 541, .external_lex_state = 42}, + [1450] = {.lex_state = 542, .external_lex_state = 42}, + [1451] = {.lex_state = 284, .external_lex_state = 41}, + [1452] = {.lex_state = 284, .external_lex_state = 41}, + [1453] = {.lex_state = 531, .external_lex_state = 17}, + [1454] = {.lex_state = 288, .external_lex_state = 44}, + [1455] = {.lex_state = 531, .external_lex_state = 17}, + [1456] = {.lex_state = 243, .external_lex_state = 17}, + [1457] = {.lex_state = 531, .external_lex_state = 17}, + [1458] = {.lex_state = 288, .external_lex_state = 44}, + [1459] = {.lex_state = 288, .external_lex_state = 42}, + [1460] = {.lex_state = 295, .external_lex_state = 41}, + [1461] = {.lex_state = 295, .external_lex_state = 41}, + [1462] = {.lex_state = 284, .external_lex_state = 41}, + [1463] = {.lex_state = 288, .external_lex_state = 42}, + [1464] = {.lex_state = 286, .external_lex_state = 41}, + [1465] = {.lex_state = 286, .external_lex_state = 41}, + [1466] = {.lex_state = 286, .external_lex_state = 41}, + [1467] = {.lex_state = 288, .external_lex_state = 42}, + [1468] = {.lex_state = 286, .external_lex_state = 41}, + [1469] = {.lex_state = 286, .external_lex_state = 41}, + [1470] = {.lex_state = 286, .external_lex_state = 41}, + [1471] = {.lex_state = 286, .external_lex_state = 41}, + [1472] = {.lex_state = 258, .external_lex_state = 16}, + [1473] = {.lex_state = 290, .external_lex_state = 42}, + [1474] = {.lex_state = 290, .external_lex_state = 42}, + [1475] = {.lex_state = 286, .external_lex_state = 41}, + [1476] = {.lex_state = 541, .external_lex_state = 42}, + [1477] = {.lex_state = 286, .external_lex_state = 41}, + [1478] = {.lex_state = 286, .external_lex_state = 41}, + [1479] = {.lex_state = 295, .external_lex_state = 41}, + [1480] = {.lex_state = 290, .external_lex_state = 42}, + [1481] = {.lex_state = 531, .external_lex_state = 17}, + [1482] = {.lex_state = 542, .external_lex_state = 42}, + [1483] = {.lex_state = 288, .external_lex_state = 44}, + [1484] = {.lex_state = 542, .external_lex_state = 42}, + [1485] = {.lex_state = 288, .external_lex_state = 44}, + [1486] = {.lex_state = 425, .external_lex_state = 47}, + [1487] = {.lex_state = 541, .external_lex_state = 42}, + [1488] = {.lex_state = 290, .external_lex_state = 44}, + [1489] = {.lex_state = 541, .external_lex_state = 42}, + [1490] = {.lex_state = 437, .external_lex_state = 48}, + [1491] = {.lex_state = 249, .external_lex_state = 21}, + [1492] = {.lex_state = 295, .external_lex_state = 41}, + [1493] = {.lex_state = 531, .external_lex_state = 17}, + [1494] = {.lex_state = 542, .external_lex_state = 42}, + [1495] = {.lex_state = 295, .external_lex_state = 41}, + [1496] = {.lex_state = 290, .external_lex_state = 44}, + [1497] = {.lex_state = 290, .external_lex_state = 44}, + [1498] = {.lex_state = 290, .external_lex_state = 44}, + [1499] = {.lex_state = 290, .external_lex_state = 44}, + [1500] = {.lex_state = 541, .external_lex_state = 42}, + [1501] = {.lex_state = 541, .external_lex_state = 42}, + [1502] = {.lex_state = 542, .external_lex_state = 42}, + [1503] = {.lex_state = 273, .external_lex_state = 26}, + [1504] = {.lex_state = 290, .external_lex_state = 44}, + [1505] = {.lex_state = 290, .external_lex_state = 44}, + [1506] = {.lex_state = 258, .external_lex_state = 16}, + [1507] = {.lex_state = 296, .external_lex_state = 44}, + [1508] = {.lex_state = 295, .external_lex_state = 41}, + [1509] = {.lex_state = 542, .external_lex_state = 42}, + [1510] = {.lex_state = 542, .external_lex_state = 42}, + [1511] = {.lex_state = 542, .external_lex_state = 42}, + [1512] = {.lex_state = 273, .external_lex_state = 26}, + [1513] = {.lex_state = 295, .external_lex_state = 41}, + [1514] = {.lex_state = 542, .external_lex_state = 44}, + [1515] = {.lex_state = 295, .external_lex_state = 41}, + [1516] = {.lex_state = 542, .external_lex_state = 44}, + [1517] = {.lex_state = 541, .external_lex_state = 42}, + [1518] = {.lex_state = 290, .external_lex_state = 44}, + [1519] = {.lex_state = 290, .external_lex_state = 44}, + [1520] = {.lex_state = 290, .external_lex_state = 44}, + [1521] = {.lex_state = 296, .external_lex_state = 44}, + [1522] = {.lex_state = 258, .external_lex_state = 21}, + [1523] = {.lex_state = 252, .external_lex_state = 20}, + [1524] = {.lex_state = 296, .external_lex_state = 44}, + [1525] = {.lex_state = 290, .external_lex_state = 44}, + [1526] = {.lex_state = 249, .external_lex_state = 16}, + [1527] = {.lex_state = 541, .external_lex_state = 42}, + [1528] = {.lex_state = 288, .external_lex_state = 44}, + [1529] = {.lex_state = 288, .external_lex_state = 44}, + [1530] = {.lex_state = 288, .external_lex_state = 44}, + [1531] = {.lex_state = 541, .external_lex_state = 42}, + [1532] = {.lex_state = 252, .external_lex_state = 20}, + [1533] = {.lex_state = 288, .external_lex_state = 44}, + [1534] = {.lex_state = 531, .external_lex_state = 17}, + [1535] = {.lex_state = 288, .external_lex_state = 44}, + [1536] = {.lex_state = 295, .external_lex_state = 41}, + [1537] = {.lex_state = 288, .external_lex_state = 44}, + [1538] = {.lex_state = 425, .external_lex_state = 47}, + [1539] = {.lex_state = 261, .external_lex_state = 20}, + [1540] = {.lex_state = 288, .external_lex_state = 44}, + [1541] = {.lex_state = 288, .external_lex_state = 44}, + [1542] = {.lex_state = 261, .external_lex_state = 20}, + [1543] = {.lex_state = 290, .external_lex_state = 44}, + [1544] = {.lex_state = 542, .external_lex_state = 44}, + [1545] = {.lex_state = 542, .external_lex_state = 42}, + [1546] = {.lex_state = 541, .external_lex_state = 42}, + [1547] = {.lex_state = 261, .external_lex_state = 20}, + [1548] = {.lex_state = 261, .external_lex_state = 20}, + [1549] = {.lex_state = 295, .external_lex_state = 41}, + [1550] = {.lex_state = 261, .external_lex_state = 20}, + [1551] = {.lex_state = 541, .external_lex_state = 42}, + [1552] = {.lex_state = 531, .external_lex_state = 17}, + [1553] = {.lex_state = 542, .external_lex_state = 42}, + [1554] = {.lex_state = 542, .external_lex_state = 44}, + [1555] = {.lex_state = 295, .external_lex_state = 41}, + [1556] = {.lex_state = 258, .external_lex_state = 16}, + [1557] = {.lex_state = 288, .external_lex_state = 44}, + [1558] = {.lex_state = 296, .external_lex_state = 44}, + [1559] = {.lex_state = 296, .external_lex_state = 44}, + [1560] = {.lex_state = 542, .external_lex_state = 44}, + [1561] = {.lex_state = 541, .external_lex_state = 42}, + [1562] = {.lex_state = 541, .external_lex_state = 42}, + [1563] = {.lex_state = 295, .external_lex_state = 41}, + [1564] = {.lex_state = 531, .external_lex_state = 17}, + [1565] = {.lex_state = 295, .external_lex_state = 41}, + [1566] = {.lex_state = 541, .external_lex_state = 42}, + [1567] = {.lex_state = 295, .external_lex_state = 41}, + [1568] = {.lex_state = 541, .external_lex_state = 42}, + [1569] = {.lex_state = 541, .external_lex_state = 44}, + [1570] = {.lex_state = 541, .external_lex_state = 42}, + [1571] = {.lex_state = 249, .external_lex_state = 16}, + [1572] = {.lex_state = 541, .external_lex_state = 42}, + [1573] = {.lex_state = 541, .external_lex_state = 42}, + [1574] = {.lex_state = 541, .external_lex_state = 44}, + [1575] = {.lex_state = 541, .external_lex_state = 42}, + [1576] = {.lex_state = 290, .external_lex_state = 44}, + [1577] = {.lex_state = 290, .external_lex_state = 44}, + [1578] = {.lex_state = 541, .external_lex_state = 44}, + [1579] = {.lex_state = 541, .external_lex_state = 42}, + [1580] = {.lex_state = 541, .external_lex_state = 42}, + [1581] = {.lex_state = 249, .external_lex_state = 21}, + [1582] = {.lex_state = 541, .external_lex_state = 42}, + [1583] = {.lex_state = 295, .external_lex_state = 41}, + [1584] = {.lex_state = 249, .external_lex_state = 16}, + [1585] = {.lex_state = 288, .external_lex_state = 44}, + [1586] = {.lex_state = 295, .external_lex_state = 41}, + [1587] = {.lex_state = 296, .external_lex_state = 44}, + [1588] = {.lex_state = 425, .external_lex_state = 47}, + [1589] = {.lex_state = 541, .external_lex_state = 42}, + [1590] = {.lex_state = 249, .external_lex_state = 16}, + [1591] = {.lex_state = 541, .external_lex_state = 42}, + [1592] = {.lex_state = 542, .external_lex_state = 44}, + [1593] = {.lex_state = 542, .external_lex_state = 44}, + [1594] = {.lex_state = 541, .external_lex_state = 42}, + [1595] = {.lex_state = 541, .external_lex_state = 44}, + [1596] = {.lex_state = 541, .external_lex_state = 44}, + [1597] = {.lex_state = 541, .external_lex_state = 44}, + [1598] = {.lex_state = 542, .external_lex_state = 42}, + [1599] = {.lex_state = 541, .external_lex_state = 42}, + [1600] = {.lex_state = 258, .external_lex_state = 21}, + [1601] = {.lex_state = 288, .external_lex_state = 44}, + [1602] = {.lex_state = 541, .external_lex_state = 44}, + [1603] = {.lex_state = 542, .external_lex_state = 42}, + [1604] = {.lex_state = 425, .external_lex_state = 47}, + [1605] = {.lex_state = 290, .external_lex_state = 44}, + [1606] = {.lex_state = 542, .external_lex_state = 42}, + [1607] = {.lex_state = 437, .external_lex_state = 43}, + [1608] = {.lex_state = 295, .external_lex_state = 41}, + [1609] = {.lex_state = 542, .external_lex_state = 42}, + [1610] = {.lex_state = 541, .external_lex_state = 44}, + [1611] = {.lex_state = 541, .external_lex_state = 44}, + [1612] = {.lex_state = 541, .external_lex_state = 44}, + [1613] = {.lex_state = 541, .external_lex_state = 44}, + [1614] = {.lex_state = 258, .external_lex_state = 16}, + [1615] = {.lex_state = 541, .external_lex_state = 44}, + [1616] = {.lex_state = 542, .external_lex_state = 42}, + [1617] = {.lex_state = 261, .external_lex_state = 20}, + [1618] = {.lex_state = 542, .external_lex_state = 42}, + [1619] = {.lex_state = 542, .external_lex_state = 42}, + [1620] = {.lex_state = 541, .external_lex_state = 42}, + [1621] = {.lex_state = 531, .external_lex_state = 17}, + [1622] = {.lex_state = 252, .external_lex_state = 20}, + [1623] = {.lex_state = 288, .external_lex_state = 44}, + [1624] = {.lex_state = 258, .external_lex_state = 16}, + [1625] = {.lex_state = 280, .external_lex_state = 4}, + [1626] = {.lex_state = 531, .external_lex_state = 17}, + [1627] = {.lex_state = 542, .external_lex_state = 42}, + [1628] = {.lex_state = 542, .external_lex_state = 42}, + [1629] = {.lex_state = 541, .external_lex_state = 42}, + [1630] = {.lex_state = 541, .external_lex_state = 42}, + [1631] = {.lex_state = 542, .external_lex_state = 42}, + [1632] = {.lex_state = 542, .external_lex_state = 42}, + [1633] = {.lex_state = 531, .external_lex_state = 17}, + [1634] = {.lex_state = 542, .external_lex_state = 42}, + [1635] = {.lex_state = 425, .external_lex_state = 47}, + [1636] = {.lex_state = 542, .external_lex_state = 42}, + [1637] = {.lex_state = 542, .external_lex_state = 42}, + [1638] = {.lex_state = 542, .external_lex_state = 42}, + [1639] = {.lex_state = 542, .external_lex_state = 42}, + [1640] = {.lex_state = 542, .external_lex_state = 42}, + [1641] = {.lex_state = 542, .external_lex_state = 42}, + [1642] = {.lex_state = 542, .external_lex_state = 42}, + [1643] = {.lex_state = 542, .external_lex_state = 42}, + [1644] = {.lex_state = 541, .external_lex_state = 42}, + [1645] = {.lex_state = 541, .external_lex_state = 42}, + [1646] = {.lex_state = 541, .external_lex_state = 42}, + [1647] = {.lex_state = 542, .external_lex_state = 42}, + [1648] = {.lex_state = 542, .external_lex_state = 42}, + [1649] = {.lex_state = 542, .external_lex_state = 42}, + [1650] = {.lex_state = 531, .external_lex_state = 17}, + [1651] = {.lex_state = 280, .external_lex_state = 4}, + [1652] = {.lex_state = 541, .external_lex_state = 42}, + [1653] = {.lex_state = 541, .external_lex_state = 42}, + [1654] = {.lex_state = 541, .external_lex_state = 42}, + [1655] = {.lex_state = 290, .external_lex_state = 44}, + [1656] = {.lex_state = 542, .external_lex_state = 44}, + [1657] = {.lex_state = 541, .external_lex_state = 42}, + [1658] = {.lex_state = 258, .external_lex_state = 16}, + [1659] = {.lex_state = 295, .external_lex_state = 41}, + [1660] = {.lex_state = 531, .external_lex_state = 17}, + [1661] = {.lex_state = 261, .external_lex_state = 20}, + [1662] = {.lex_state = 541, .external_lex_state = 42}, + [1663] = {.lex_state = 541, .external_lex_state = 42}, + [1664] = {.lex_state = 541, .external_lex_state = 42}, + [1665] = {.lex_state = 541, .external_lex_state = 42}, + [1666] = {.lex_state = 541, .external_lex_state = 42}, + [1667] = {.lex_state = 542, .external_lex_state = 44}, + [1668] = {.lex_state = 541, .external_lex_state = 42}, + [1669] = {.lex_state = 261, .external_lex_state = 20}, + [1670] = {.lex_state = 295, .external_lex_state = 41}, + [1671] = {.lex_state = 531, .external_lex_state = 17}, + [1672] = {.lex_state = 425, .external_lex_state = 47}, + [1673] = {.lex_state = 542, .external_lex_state = 44}, + [1674] = {.lex_state = 258, .external_lex_state = 16}, + [1675] = {.lex_state = 295, .external_lex_state = 41}, + [1676] = {.lex_state = 288, .external_lex_state = 44}, + [1677] = {.lex_state = 542, .external_lex_state = 44}, + [1678] = {.lex_state = 288, .external_lex_state = 44}, + [1679] = {.lex_state = 542, .external_lex_state = 42}, + [1680] = {.lex_state = 542, .external_lex_state = 42}, + [1681] = {.lex_state = 288, .external_lex_state = 44}, + [1682] = {.lex_state = 531, .external_lex_state = 17}, + [1683] = {.lex_state = 542, .external_lex_state = 42}, + [1684] = {.lex_state = 542, .external_lex_state = 42}, + [1685] = {.lex_state = 295, .external_lex_state = 41}, + [1686] = {.lex_state = 541, .external_lex_state = 42}, + [1687] = {.lex_state = 258, .external_lex_state = 16}, + [1688] = {.lex_state = 541, .external_lex_state = 42}, + [1689] = {.lex_state = 280, .external_lex_state = 4}, + [1690] = {.lex_state = 288, .external_lex_state = 44}, + [1691] = {.lex_state = 542, .external_lex_state = 42}, + [1692] = {.lex_state = 290, .external_lex_state = 44}, + [1693] = {.lex_state = 280, .external_lex_state = 4}, + [1694] = {.lex_state = 280, .external_lex_state = 4}, + [1695] = {.lex_state = 542, .external_lex_state = 44}, + [1696] = {.lex_state = 258, .external_lex_state = 16}, + [1697] = {.lex_state = 295, .external_lex_state = 41}, + [1698] = {.lex_state = 541, .external_lex_state = 42}, + [1699] = {.lex_state = 290, .external_lex_state = 44}, + [1700] = {.lex_state = 541, .external_lex_state = 42}, + [1701] = {.lex_state = 541, .external_lex_state = 42}, + [1702] = {.lex_state = 425, .external_lex_state = 47}, + [1703] = {.lex_state = 290, .external_lex_state = 44}, + [1704] = {.lex_state = 258, .external_lex_state = 16}, + [1705] = {.lex_state = 258, .external_lex_state = 16}, + [1706] = {.lex_state = 542, .external_lex_state = 42}, + [1707] = {.lex_state = 541, .external_lex_state = 42}, + [1708] = {.lex_state = 261, .external_lex_state = 20}, + [1709] = {.lex_state = 541, .external_lex_state = 42}, + [1710] = {.lex_state = 541, .external_lex_state = 42}, + [1711] = {.lex_state = 261, .external_lex_state = 20}, + [1712] = {.lex_state = 280, .external_lex_state = 4}, + [1713] = {.lex_state = 542, .external_lex_state = 42}, + [1714] = {.lex_state = 542, .external_lex_state = 42}, + [1715] = {.lex_state = 542, .external_lex_state = 42}, + [1716] = {.lex_state = 542, .external_lex_state = 42}, + [1717] = {.lex_state = 542, .external_lex_state = 42}, + [1718] = {.lex_state = 258, .external_lex_state = 16}, + [1719] = {.lex_state = 261, .external_lex_state = 20}, + [1720] = {.lex_state = 542, .external_lex_state = 42}, + [1721] = {.lex_state = 288, .external_lex_state = 44}, + [1722] = {.lex_state = 541, .external_lex_state = 42}, + [1723] = {.lex_state = 541, .external_lex_state = 42}, + [1724] = {.lex_state = 541, .external_lex_state = 42}, + [1725] = {.lex_state = 542, .external_lex_state = 42}, + [1726] = {.lex_state = 541, .external_lex_state = 44}, + [1727] = {.lex_state = 543, .external_lex_state = 44}, + [1728] = {.lex_state = 543, .external_lex_state = 44}, + [1729] = {.lex_state = 465, .external_lex_state = 49}, + [1730] = {.lex_state = 543, .external_lex_state = 44}, + [1731] = {.lex_state = 541, .external_lex_state = 44}, + [1732] = {.lex_state = 541, .external_lex_state = 44}, + [1733] = {.lex_state = 541, .external_lex_state = 44}, + [1734] = {.lex_state = 541, .external_lex_state = 44}, + [1735] = {.lex_state = 541, .external_lex_state = 44}, + [1736] = {.lex_state = 541, .external_lex_state = 44}, + [1737] = {.lex_state = 541, .external_lex_state = 44}, + [1738] = {.lex_state = 541, .external_lex_state = 44}, + [1739] = {.lex_state = 543, .external_lex_state = 44}, + [1740] = {.lex_state = 541, .external_lex_state = 44}, + [1741] = {.lex_state = 543, .external_lex_state = 44}, + [1742] = {.lex_state = 541, .external_lex_state = 44}, + [1743] = {.lex_state = 543, .external_lex_state = 44}, + [1744] = {.lex_state = 541, .external_lex_state = 44}, + [1745] = {.lex_state = 541, .external_lex_state = 44}, + [1746] = {.lex_state = 541, .external_lex_state = 44}, + [1747] = {.lex_state = 541, .external_lex_state = 44}, + [1748] = {.lex_state = 534, .external_lex_state = 20}, + [1749] = {.lex_state = 541, .external_lex_state = 44}, + [1750] = {.lex_state = 541, .external_lex_state = 44}, + [1751] = {.lex_state = 541, .external_lex_state = 44}, + [1752] = {.lex_state = 541, .external_lex_state = 44}, + [1753] = {.lex_state = 541, .external_lex_state = 44}, + [1754] = {.lex_state = 541, .external_lex_state = 44}, + [1755] = {.lex_state = 543, .external_lex_state = 44}, + [1756] = {.lex_state = 541, .external_lex_state = 44}, + [1757] = {.lex_state = 541, .external_lex_state = 44}, + [1758] = {.lex_state = 541, .external_lex_state = 44}, + [1759] = {.lex_state = 541, .external_lex_state = 44}, + [1760] = {.lex_state = 541, .external_lex_state = 44}, + [1761] = {.lex_state = 541, .external_lex_state = 44}, + [1762] = {.lex_state = 541, .external_lex_state = 44}, + [1763] = {.lex_state = 541, .external_lex_state = 44}, + [1764] = {.lex_state = 541, .external_lex_state = 44}, + [1765] = {.lex_state = 541, .external_lex_state = 44}, + [1766] = {.lex_state = 541, .external_lex_state = 44}, + [1767] = {.lex_state = 541, .external_lex_state = 44}, + [1768] = {.lex_state = 541, .external_lex_state = 44}, + [1769] = {.lex_state = 541, .external_lex_state = 44}, + [1770] = {.lex_state = 541, .external_lex_state = 44}, + [1771] = {.lex_state = 541, .external_lex_state = 44}, + [1772] = {.lex_state = 541, .external_lex_state = 44}, + [1773] = {.lex_state = 425, .external_lex_state = 50}, + [1774] = {.lex_state = 425, .external_lex_state = 50}, + [1775] = {.lex_state = 536, .external_lex_state = 20}, + [1776] = {.lex_state = 536, .external_lex_state = 20}, + [1777] = {.lex_state = 536, .external_lex_state = 20}, + [1778] = {.lex_state = 249, .external_lex_state = 21}, + [1779] = {.lex_state = 543, .external_lex_state = 44}, + [1780] = {.lex_state = 543, .external_lex_state = 44}, + [1781] = {.lex_state = 425, .external_lex_state = 51}, + [1782] = {.lex_state = 425, .external_lex_state = 50}, + [1783] = {.lex_state = 425, .external_lex_state = 51}, + [1784] = {.lex_state = 252, .external_lex_state = 22}, + [1785] = {.lex_state = 264, .external_lex_state = 21}, + [1786] = {.lex_state = 534, .external_lex_state = 20}, + [1787] = {.lex_state = 536, .external_lex_state = 20}, + [1788] = {.lex_state = 258, .external_lex_state = 21}, + [1789] = {.lex_state = 425, .external_lex_state = 50}, + [1790] = {.lex_state = 536, .external_lex_state = 20}, + [1791] = {.lex_state = 463, .external_lex_state = 29}, + [1792] = {.lex_state = 536, .external_lex_state = 20}, + [1793] = {.lex_state = 261, .external_lex_state = 20}, + [1794] = {.lex_state = 261, .external_lex_state = 20}, + [1795] = {.lex_state = 536, .external_lex_state = 20}, + [1796] = {.lex_state = 536, .external_lex_state = 20}, + [1797] = {.lex_state = 252, .external_lex_state = 20}, + [1798] = {.lex_state = 296, .external_lex_state = 44}, + [1799] = {.lex_state = 296, .external_lex_state = 44}, + [1800] = {.lex_state = 296, .external_lex_state = 44}, + [1801] = {.lex_state = 252, .external_lex_state = 22}, + [1802] = {.lex_state = 296, .external_lex_state = 44}, + [1803] = {.lex_state = 296, .external_lex_state = 44}, + [1804] = {.lex_state = 296, .external_lex_state = 44}, + [1805] = {.lex_state = 296, .external_lex_state = 44}, + [1806] = {.lex_state = 425, .external_lex_state = 50}, + [1807] = {.lex_state = 261, .external_lex_state = 20}, + [1808] = {.lex_state = 261, .external_lex_state = 20}, + [1809] = {.lex_state = 534, .external_lex_state = 20}, + [1810] = {.lex_state = 261, .external_lex_state = 22}, + [1811] = {.lex_state = 296, .external_lex_state = 44}, + [1812] = {.lex_state = 542, .external_lex_state = 44}, + [1813] = {.lex_state = 296, .external_lex_state = 44}, + [1814] = {.lex_state = 542, .external_lex_state = 44}, + [1815] = {.lex_state = 542, .external_lex_state = 44}, + [1816] = {.lex_state = 542, .external_lex_state = 44}, + [1817] = {.lex_state = 542, .external_lex_state = 44}, + [1818] = {.lex_state = 542, .external_lex_state = 44}, + [1819] = {.lex_state = 542, .external_lex_state = 44}, + [1820] = {.lex_state = 534, .external_lex_state = 20}, + [1821] = {.lex_state = 542, .external_lex_state = 44}, + [1822] = {.lex_state = 542, .external_lex_state = 44}, + [1823] = {.lex_state = 296, .external_lex_state = 44}, + [1824] = {.lex_state = 296, .external_lex_state = 44}, + [1825] = {.lex_state = 542, .external_lex_state = 44}, + [1826] = {.lex_state = 542, .external_lex_state = 44}, + [1827] = {.lex_state = 542, .external_lex_state = 44}, + [1828] = {.lex_state = 542, .external_lex_state = 44}, + [1829] = {.lex_state = 542, .external_lex_state = 44}, + [1830] = {.lex_state = 542, .external_lex_state = 44}, + [1831] = {.lex_state = 542, .external_lex_state = 44}, + [1832] = {.lex_state = 542, .external_lex_state = 44}, + [1833] = {.lex_state = 542, .external_lex_state = 44}, + [1834] = {.lex_state = 542, .external_lex_state = 44}, + [1835] = {.lex_state = 543, .external_lex_state = 44}, + [1836] = {.lex_state = 543, .external_lex_state = 44}, + [1837] = {.lex_state = 296, .external_lex_state = 44}, + [1838] = {.lex_state = 280, .external_lex_state = 34}, + [1839] = {.lex_state = 296, .external_lex_state = 44}, + [1840] = {.lex_state = 296, .external_lex_state = 44}, + [1841] = {.lex_state = 296, .external_lex_state = 44}, + [1842] = {.lex_state = 296, .external_lex_state = 44}, + [1843] = {.lex_state = 296, .external_lex_state = 44}, + [1844] = {.lex_state = 296, .external_lex_state = 44}, + [1845] = {.lex_state = 425, .external_lex_state = 51}, + [1846] = {.lex_state = 425, .external_lex_state = 50}, + [1847] = {.lex_state = 541, .external_lex_state = 44}, + [1848] = {.lex_state = 541, .external_lex_state = 44}, + [1849] = {.lex_state = 541, .external_lex_state = 44}, + [1850] = {.lex_state = 425, .external_lex_state = 51}, + [1851] = {.lex_state = 465, .external_lex_state = 49}, + [1852] = {.lex_state = 425, .external_lex_state = 51}, + [1853] = {.lex_state = 465, .external_lex_state = 49}, + [1854] = {.lex_state = 465, .external_lex_state = 49}, + [1855] = {.lex_state = 543, .external_lex_state = 44}, + [1856] = {.lex_state = 425, .external_lex_state = 51}, + [1857] = {.lex_state = 541, .external_lex_state = 44}, + [1858] = {.lex_state = 541, .external_lex_state = 44}, + [1859] = {.lex_state = 542, .external_lex_state = 44}, + [1860] = {.lex_state = 542, .external_lex_state = 44}, + [1861] = {.lex_state = 542, .external_lex_state = 44}, + [1862] = {.lex_state = 461, .external_lex_state = 36}, + [1863] = {.lex_state = 425, .external_lex_state = 51}, + [1864] = {.lex_state = 280, .external_lex_state = 34}, + [1865] = {.lex_state = 280, .external_lex_state = 34}, + [1866] = {.lex_state = 280, .external_lex_state = 34}, + [1867] = {.lex_state = 425, .external_lex_state = 51}, + [1868] = {.lex_state = 425, .external_lex_state = 51}, + [1869] = {.lex_state = 536, .external_lex_state = 20}, + [1870] = {.lex_state = 425, .external_lex_state = 51}, + [1871] = {.lex_state = 261, .external_lex_state = 20}, + [1872] = {.lex_state = 425, .external_lex_state = 51}, + [1873] = {.lex_state = 425, .external_lex_state = 51}, + [1874] = {.lex_state = 536, .external_lex_state = 20}, + [1875] = {.lex_state = 461, .external_lex_state = 36}, + [1876] = {.lex_state = 542, .external_lex_state = 44}, + [1877] = {.lex_state = 534, .external_lex_state = 20}, + [1878] = {.lex_state = 252, .external_lex_state = 20}, + [1879] = {.lex_state = 542, .external_lex_state = 44}, + [1880] = {.lex_state = 542, .external_lex_state = 44}, + [1881] = {.lex_state = 542, .external_lex_state = 44}, + [1882] = {.lex_state = 261, .external_lex_state = 20}, + [1883] = {.lex_state = 261, .external_lex_state = 20}, + [1884] = {.lex_state = 542, .external_lex_state = 44}, + [1885] = {.lex_state = 542, .external_lex_state = 44}, + [1886] = {.lex_state = 252, .external_lex_state = 20}, + [1887] = {.lex_state = 542, .external_lex_state = 44}, + [1888] = {.lex_state = 252, .external_lex_state = 20}, + [1889] = {.lex_state = 261, .external_lex_state = 20}, + [1890] = {.lex_state = 425, .external_lex_state = 50}, + [1891] = {.lex_state = 461, .external_lex_state = 36}, + [1892] = {.lex_state = 536, .external_lex_state = 20}, + [1893] = {.lex_state = 534, .external_lex_state = 20}, + [1894] = {.lex_state = 261, .external_lex_state = 20}, + [1895] = {.lex_state = 536, .external_lex_state = 20}, + [1896] = {.lex_state = 463, .external_lex_state = 29}, + [1897] = {.lex_state = 542, .external_lex_state = 44}, + [1898] = {.lex_state = 542, .external_lex_state = 44}, + [1899] = {.lex_state = 542, .external_lex_state = 44}, + [1900] = {.lex_state = 542, .external_lex_state = 44}, + [1901] = {.lex_state = 542, .external_lex_state = 44}, + [1902] = {.lex_state = 264, .external_lex_state = 21}, + [1903] = {.lex_state = 542, .external_lex_state = 44}, + [1904] = {.lex_state = 542, .external_lex_state = 44}, + [1905] = {.lex_state = 542, .external_lex_state = 44}, + [1906] = {.lex_state = 542, .external_lex_state = 44}, + [1907] = {.lex_state = 542, .external_lex_state = 44}, + [1908] = {.lex_state = 542, .external_lex_state = 44}, + [1909] = {.lex_state = 542, .external_lex_state = 44}, + [1910] = {.lex_state = 261, .external_lex_state = 20}, + [1911] = {.lex_state = 536, .external_lex_state = 20}, + [1912] = {.lex_state = 261, .external_lex_state = 20}, + [1913] = {.lex_state = 425, .external_lex_state = 50}, + [1914] = {.lex_state = 542, .external_lex_state = 44}, + [1915] = {.lex_state = 542, .external_lex_state = 44}, + [1916] = {.lex_state = 463, .external_lex_state = 29}, + [1917] = {.lex_state = 465, .external_lex_state = 49}, + [1918] = {.lex_state = 261, .external_lex_state = 22}, + [1919] = {.lex_state = 465, .external_lex_state = 49}, + [1920] = {.lex_state = 280, .external_lex_state = 34}, + [1921] = {.lex_state = 280, .external_lex_state = 34}, + [1922] = {.lex_state = 280, .external_lex_state = 34}, + [1923] = {.lex_state = 280, .external_lex_state = 34}, + [1924] = {.lex_state = 465, .external_lex_state = 49}, + [1925] = {.lex_state = 536, .external_lex_state = 20}, + [1926] = {.lex_state = 280, .external_lex_state = 34}, + [1927] = {.lex_state = 280, .external_lex_state = 34}, + [1928] = {.lex_state = 280, .external_lex_state = 34}, + [1929] = {.lex_state = 296, .external_lex_state = 44}, + [1930] = {.lex_state = 536, .external_lex_state = 20}, + [1931] = {.lex_state = 425, .external_lex_state = 51}, + [1932] = {.lex_state = 536, .external_lex_state = 20}, + [1933] = {.lex_state = 425, .external_lex_state = 51}, + [1934] = {.lex_state = 425, .external_lex_state = 51}, + [1935] = {.lex_state = 425, .external_lex_state = 51}, + [1936] = {.lex_state = 425, .external_lex_state = 51}, + [1937] = {.lex_state = 425, .external_lex_state = 51}, + [1938] = {.lex_state = 536, .external_lex_state = 20}, + [1939] = {.lex_state = 425, .external_lex_state = 51}, + [1940] = {.lex_state = 425, .external_lex_state = 51}, + [1941] = {.lex_state = 425, .external_lex_state = 51}, + [1942] = {.lex_state = 543, .external_lex_state = 44}, + [1943] = {.lex_state = 536, .external_lex_state = 20}, + [1944] = {.lex_state = 536, .external_lex_state = 20}, + [1945] = {.lex_state = 536, .external_lex_state = 22}, + [1946] = {.lex_state = 543, .external_lex_state = 44}, + [1947] = {.lex_state = 536, .external_lex_state = 20}, + [1948] = {.lex_state = 543, .external_lex_state = 44}, + [1949] = {.lex_state = 536, .external_lex_state = 20}, + [1950] = {.lex_state = 425, .external_lex_state = 51}, + [1951] = {.lex_state = 543, .external_lex_state = 44}, + [1952] = {.lex_state = 543, .external_lex_state = 44}, + [1953] = {.lex_state = 543, .external_lex_state = 44}, + [1954] = {.lex_state = 425, .external_lex_state = 51}, + [1955] = {.lex_state = 425, .external_lex_state = 51}, + [1956] = {.lex_state = 543, .external_lex_state = 44}, + [1957] = {.lex_state = 252, .external_lex_state = 22}, + [1958] = {.lex_state = 543, .external_lex_state = 44}, + [1959] = {.lex_state = 425, .external_lex_state = 51}, + [1960] = {.lex_state = 534, .external_lex_state = 20}, + [1961] = {.lex_state = 425, .external_lex_state = 51}, + [1962] = {.lex_state = 425, .external_lex_state = 51}, + [1963] = {.lex_state = 543, .external_lex_state = 44}, + [1964] = {.lex_state = 425, .external_lex_state = 51}, + [1965] = {.lex_state = 425, .external_lex_state = 51}, + [1966] = {.lex_state = 425, .external_lex_state = 51}, + [1967] = {.lex_state = 425, .external_lex_state = 51}, + [1968] = {.lex_state = 425, .external_lex_state = 51}, + [1969] = {.lex_state = 425, .external_lex_state = 51}, + [1970] = {.lex_state = 425, .external_lex_state = 51}, + [1971] = {.lex_state = 425, .external_lex_state = 51}, + [1972] = {.lex_state = 543, .external_lex_state = 44}, + [1973] = {.lex_state = 270, .external_lex_state = 22}, + [1974] = {.lex_state = 543, .external_lex_state = 44}, + [1975] = {.lex_state = 465, .external_lex_state = 49}, + [1976] = {.lex_state = 534, .external_lex_state = 20}, + [1977] = {.lex_state = 261, .external_lex_state = 22}, + [1978] = {.lex_state = 425, .external_lex_state = 51}, + [1979] = {.lex_state = 536, .external_lex_state = 20}, + [1980] = {.lex_state = 465, .external_lex_state = 49}, + [1981] = {.lex_state = 543, .external_lex_state = 44}, + [1982] = {.lex_state = 465, .external_lex_state = 49}, + [1983] = {.lex_state = 543, .external_lex_state = 44}, + [1984] = {.lex_state = 534, .external_lex_state = 20}, + [1985] = {.lex_state = 465, .external_lex_state = 49}, + [1986] = {.lex_state = 543, .external_lex_state = 44}, + [1987] = {.lex_state = 465, .external_lex_state = 49}, + [1988] = {.lex_state = 425, .external_lex_state = 51}, + [1989] = {.lex_state = 465, .external_lex_state = 49}, + [1990] = {.lex_state = 425, .external_lex_state = 51}, + [1991] = {.lex_state = 536, .external_lex_state = 22}, + [1992] = {.lex_state = 534, .external_lex_state = 20}, + [1993] = {.lex_state = 543, .external_lex_state = 44}, + [1994] = {.lex_state = 534, .external_lex_state = 20}, + [1995] = {.lex_state = 543, .external_lex_state = 44}, + [1996] = {.lex_state = 543, .external_lex_state = 44}, + [1997] = {.lex_state = 543, .external_lex_state = 44}, + [1998] = {.lex_state = 534, .external_lex_state = 22}, + [1999] = {.lex_state = 543, .external_lex_state = 44}, + [2000] = {.lex_state = 465, .external_lex_state = 49}, + [2001] = {.lex_state = 543, .external_lex_state = 44}, + [2002] = {.lex_state = 543, .external_lex_state = 44}, + [2003] = {.lex_state = 536, .external_lex_state = 20}, + [2004] = {.lex_state = 543, .external_lex_state = 44}, + [2005] = {.lex_state = 465, .external_lex_state = 49}, + [2006] = {.lex_state = 536, .external_lex_state = 22}, + [2007] = {.lex_state = 465, .external_lex_state = 52}, + [2008] = {.lex_state = 465, .external_lex_state = 52}, + [2009] = {.lex_state = 425, .external_lex_state = 51}, + [2010] = {.lex_state = 425, .external_lex_state = 51}, + [2011] = {.lex_state = 425, .external_lex_state = 51}, + [2012] = {.lex_state = 536, .external_lex_state = 20}, + [2013] = {.lex_state = 465, .external_lex_state = 52}, + [2014] = {.lex_state = 465, .external_lex_state = 52}, + [2015] = {.lex_state = 543, .external_lex_state = 44}, + [2016] = {.lex_state = 425, .external_lex_state = 51}, + [2017] = {.lex_state = 425, .external_lex_state = 51}, + [2018] = {.lex_state = 425, .external_lex_state = 51}, + [2019] = {.lex_state = 425, .external_lex_state = 51}, + [2020] = {.lex_state = 425, .external_lex_state = 51}, + [2021] = {.lex_state = 425, .external_lex_state = 51}, + [2022] = {.lex_state = 425, .external_lex_state = 51}, + [2023] = {.lex_state = 425, .external_lex_state = 51}, + [2024] = {.lex_state = 425, .external_lex_state = 51}, + [2025] = {.lex_state = 425, .external_lex_state = 51}, + [2026] = {.lex_state = 425, .external_lex_state = 51}, + [2027] = {.lex_state = 425, .external_lex_state = 51}, + [2028] = {.lex_state = 425, .external_lex_state = 51}, + [2029] = {.lex_state = 425, .external_lex_state = 51}, + [2030] = {.lex_state = 425, .external_lex_state = 51}, + [2031] = {.lex_state = 425, .external_lex_state = 51}, + [2032] = {.lex_state = 543, .external_lex_state = 44}, + [2033] = {.lex_state = 543, .external_lex_state = 44}, + [2034] = {.lex_state = 465, .external_lex_state = 49}, + [2035] = {.lex_state = 543, .external_lex_state = 44}, + [2036] = {.lex_state = 543, .external_lex_state = 44}, + [2037] = {.lex_state = 465, .external_lex_state = 49}, + [2038] = {.lex_state = 425, .external_lex_state = 51}, + [2039] = {.lex_state = 425, .external_lex_state = 51}, + [2040] = {.lex_state = 536, .external_lex_state = 20}, + [2041] = {.lex_state = 543, .external_lex_state = 44}, + [2042] = {.lex_state = 465, .external_lex_state = 49}, + [2043] = {.lex_state = 536, .external_lex_state = 20}, + [2044] = {.lex_state = 461, .external_lex_state = 36}, + [2045] = {.lex_state = 536, .external_lex_state = 20}, + [2046] = {.lex_state = 543, .external_lex_state = 44}, + [2047] = {.lex_state = 536, .external_lex_state = 20}, + [2048] = {.lex_state = 536, .external_lex_state = 20}, + [2049] = {.lex_state = 536, .external_lex_state = 20}, + [2050] = {.lex_state = 536, .external_lex_state = 20}, + [2051] = {.lex_state = 536, .external_lex_state = 20}, + [2052] = {.lex_state = 536, .external_lex_state = 20}, + [2053] = {.lex_state = 536, .external_lex_state = 20}, + [2054] = {.lex_state = 536, .external_lex_state = 20}, + [2055] = {.lex_state = 536, .external_lex_state = 20}, + [2056] = {.lex_state = 536, .external_lex_state = 20}, + [2057] = {.lex_state = 536, .external_lex_state = 20}, + [2058] = {.lex_state = 543, .external_lex_state = 44}, + [2059] = {.lex_state = 536, .external_lex_state = 20}, + [2060] = {.lex_state = 536, .external_lex_state = 20}, + [2061] = {.lex_state = 536, .external_lex_state = 20}, + [2062] = {.lex_state = 536, .external_lex_state = 20}, + [2063] = {.lex_state = 536, .external_lex_state = 20}, + [2064] = {.lex_state = 536, .external_lex_state = 20}, + [2065] = {.lex_state = 536, .external_lex_state = 20}, + [2066] = {.lex_state = 536, .external_lex_state = 20}, + [2067] = {.lex_state = 536, .external_lex_state = 20}, + [2068] = {.lex_state = 536, .external_lex_state = 20}, + [2069] = {.lex_state = 536, .external_lex_state = 20}, + [2070] = {.lex_state = 536, .external_lex_state = 20}, + [2071] = {.lex_state = 536, .external_lex_state = 20}, + [2072] = {.lex_state = 536, .external_lex_state = 20}, + [2073] = {.lex_state = 536, .external_lex_state = 20}, + [2074] = {.lex_state = 536, .external_lex_state = 20}, + [2075] = {.lex_state = 536, .external_lex_state = 20}, + [2076] = {.lex_state = 536, .external_lex_state = 20}, + [2077] = {.lex_state = 536, .external_lex_state = 20}, + [2078] = {.lex_state = 536, .external_lex_state = 20}, + [2079] = {.lex_state = 536, .external_lex_state = 20}, + [2080] = {.lex_state = 536, .external_lex_state = 20}, + [2081] = {.lex_state = 536, .external_lex_state = 20}, + [2082] = {.lex_state = 536, .external_lex_state = 20}, + [2083] = {.lex_state = 536, .external_lex_state = 20}, + [2084] = {.lex_state = 536, .external_lex_state = 20}, + [2085] = {.lex_state = 536, .external_lex_state = 20}, + [2086] = {.lex_state = 536, .external_lex_state = 20}, + [2087] = {.lex_state = 536, .external_lex_state = 20}, + [2088] = {.lex_state = 536, .external_lex_state = 20}, + [2089] = {.lex_state = 536, .external_lex_state = 20}, + [2090] = {.lex_state = 536, .external_lex_state = 20}, + [2091] = {.lex_state = 536, .external_lex_state = 20}, + [2092] = {.lex_state = 536, .external_lex_state = 20}, + [2093] = {.lex_state = 536, .external_lex_state = 20}, + [2094] = {.lex_state = 536, .external_lex_state = 20}, + [2095] = {.lex_state = 536, .external_lex_state = 20}, + [2096] = {.lex_state = 536, .external_lex_state = 20}, + [2097] = {.lex_state = 536, .external_lex_state = 20}, + [2098] = {.lex_state = 536, .external_lex_state = 20}, + [2099] = {.lex_state = 536, .external_lex_state = 20}, + [2100] = {.lex_state = 536, .external_lex_state = 20}, + [2101] = {.lex_state = 536, .external_lex_state = 20}, + [2102] = {.lex_state = 536, .external_lex_state = 20}, + [2103] = {.lex_state = 536, .external_lex_state = 20}, + [2104] = {.lex_state = 536, .external_lex_state = 20}, + [2105] = {.lex_state = 536, .external_lex_state = 20}, + [2106] = {.lex_state = 536, .external_lex_state = 20}, + [2107] = {.lex_state = 536, .external_lex_state = 20}, + [2108] = {.lex_state = 536, .external_lex_state = 20}, + [2109] = {.lex_state = 536, .external_lex_state = 20}, + [2110] = {.lex_state = 536, .external_lex_state = 20}, + [2111] = {.lex_state = 536, .external_lex_state = 20}, + [2112] = {.lex_state = 536, .external_lex_state = 20}, + [2113] = {.lex_state = 536, .external_lex_state = 20}, + [2114] = {.lex_state = 536, .external_lex_state = 20}, + [2115] = {.lex_state = 536, .external_lex_state = 20}, + [2116] = {.lex_state = 536, .external_lex_state = 20}, + [2117] = {.lex_state = 536, .external_lex_state = 20}, + [2118] = {.lex_state = 536, .external_lex_state = 20}, + [2119] = {.lex_state = 536, .external_lex_state = 20}, + [2120] = {.lex_state = 536, .external_lex_state = 20}, + [2121] = {.lex_state = 536, .external_lex_state = 20}, + [2122] = {.lex_state = 536, .external_lex_state = 20}, + [2123] = {.lex_state = 461, .external_lex_state = 36}, + [2124] = {.lex_state = 543, .external_lex_state = 44}, + [2125] = {.lex_state = 425, .external_lex_state = 51}, + [2126] = {.lex_state = 425, .external_lex_state = 51}, + [2127] = {.lex_state = 425, .external_lex_state = 51}, + [2128] = {.lex_state = 543, .external_lex_state = 44}, + [2129] = {.lex_state = 543, .external_lex_state = 44}, + [2130] = {.lex_state = 425, .external_lex_state = 51}, + [2131] = {.lex_state = 425, .external_lex_state = 51}, + [2132] = {.lex_state = 425, .external_lex_state = 51}, + [2133] = {.lex_state = 425, .external_lex_state = 51}, + [2134] = {.lex_state = 425, .external_lex_state = 51}, + [2135] = {.lex_state = 425, .external_lex_state = 51}, + [2136] = {.lex_state = 425, .external_lex_state = 51}, + [2137] = {.lex_state = 425, .external_lex_state = 51}, + [2138] = {.lex_state = 425, .external_lex_state = 51}, + [2139] = {.lex_state = 425, .external_lex_state = 51}, + [2140] = {.lex_state = 425, .external_lex_state = 51}, + [2141] = {.lex_state = 425, .external_lex_state = 51}, + [2142] = {.lex_state = 425, .external_lex_state = 51}, + [2143] = {.lex_state = 425, .external_lex_state = 51}, + [2144] = {.lex_state = 425, .external_lex_state = 51}, + [2145] = {.lex_state = 425, .external_lex_state = 51}, + [2146] = {.lex_state = 425, .external_lex_state = 51}, + [2147] = {.lex_state = 536, .external_lex_state = 20}, + [2148] = {.lex_state = 425, .external_lex_state = 51}, + [2149] = {.lex_state = 425, .external_lex_state = 51}, + [2150] = {.lex_state = 425, .external_lex_state = 51}, + [2151] = {.lex_state = 425, .external_lex_state = 51}, + [2152] = {.lex_state = 425, .external_lex_state = 51}, + [2153] = {.lex_state = 425, .external_lex_state = 51}, + [2154] = {.lex_state = 425, .external_lex_state = 51}, + [2155] = {.lex_state = 425, .external_lex_state = 51}, + [2156] = {.lex_state = 425, .external_lex_state = 51}, + [2157] = {.lex_state = 425, .external_lex_state = 51}, + [2158] = {.lex_state = 465, .external_lex_state = 52}, + [2159] = {.lex_state = 465, .external_lex_state = 52}, + [2160] = {.lex_state = 536, .external_lex_state = 20}, + [2161] = {.lex_state = 543, .external_lex_state = 44}, + [2162] = {.lex_state = 425, .external_lex_state = 51}, + [2163] = {.lex_state = 425, .external_lex_state = 51}, + [2164] = {.lex_state = 534, .external_lex_state = 20}, + [2165] = {.lex_state = 425, .external_lex_state = 51}, + [2166] = {.lex_state = 425, .external_lex_state = 51}, + [2167] = {.lex_state = 425, .external_lex_state = 51}, + [2168] = {.lex_state = 425, .external_lex_state = 51}, + [2169] = {.lex_state = 425, .external_lex_state = 51}, + [2170] = {.lex_state = 425, .external_lex_state = 51}, + [2171] = {.lex_state = 534, .external_lex_state = 22}, + [2172] = {.lex_state = 536, .external_lex_state = 20}, + [2173] = {.lex_state = 425, .external_lex_state = 51}, + [2174] = {.lex_state = 425, .external_lex_state = 51}, + [2175] = {.lex_state = 536, .external_lex_state = 20}, + [2176] = {.lex_state = 425, .external_lex_state = 51}, + [2177] = {.lex_state = 425, .external_lex_state = 51}, + [2178] = {.lex_state = 425, .external_lex_state = 51}, + [2179] = {.lex_state = 425, .external_lex_state = 51}, + [2180] = {.lex_state = 425, .external_lex_state = 51}, + [2181] = {.lex_state = 425, .external_lex_state = 51}, + [2182] = {.lex_state = 425, .external_lex_state = 51}, + [2183] = {.lex_state = 425, .external_lex_state = 51}, + [2184] = {.lex_state = 425, .external_lex_state = 51}, + [2185] = {.lex_state = 425, .external_lex_state = 51}, + [2186] = {.lex_state = 425, .external_lex_state = 51}, + [2187] = {.lex_state = 425, .external_lex_state = 51}, + [2188] = {.lex_state = 425, .external_lex_state = 51}, + [2189] = {.lex_state = 425, .external_lex_state = 51}, + [2190] = {.lex_state = 543, .external_lex_state = 44}, + [2191] = {.lex_state = 425, .external_lex_state = 51}, + [2192] = {.lex_state = 536, .external_lex_state = 20}, + [2193] = {.lex_state = 534, .external_lex_state = 20}, + [2194] = {.lex_state = 543, .external_lex_state = 44}, + [2195] = {.lex_state = 536, .external_lex_state = 20}, + [2196] = {.lex_state = 536, .external_lex_state = 20}, + [2197] = {.lex_state = 534, .external_lex_state = 20}, + [2198] = {.lex_state = 536, .external_lex_state = 20}, + [2199] = {.lex_state = 465, .external_lex_state = 52}, + [2200] = {.lex_state = 465, .external_lex_state = 52}, + [2201] = {.lex_state = 536, .external_lex_state = 20}, + [2202] = {.lex_state = 425, .external_lex_state = 51}, + [2203] = {.lex_state = 536, .external_lex_state = 20}, + [2204] = {.lex_state = 536, .external_lex_state = 20}, + [2205] = {.lex_state = 536, .external_lex_state = 22}, + [2206] = {.lex_state = 543, .external_lex_state = 44}, + [2207] = {.lex_state = 536, .external_lex_state = 20}, + [2208] = {.lex_state = 465, .external_lex_state = 49}, + [2209] = {.lex_state = 465, .external_lex_state = 49}, + [2210] = {.lex_state = 425, .external_lex_state = 51}, + [2211] = {.lex_state = 425, .external_lex_state = 51}, + [2212] = {.lex_state = 425, .external_lex_state = 51}, + [2213] = {.lex_state = 425, .external_lex_state = 51}, + [2214] = {.lex_state = 465, .external_lex_state = 49}, + [2215] = {.lex_state = 425, .external_lex_state = 51}, + [2216] = {.lex_state = 543, .external_lex_state = 44}, + [2217] = {.lex_state = 425, .external_lex_state = 51}, + [2218] = {.lex_state = 425, .external_lex_state = 51}, + [2219] = {.lex_state = 425, .external_lex_state = 51}, + [2220] = {.lex_state = 425, .external_lex_state = 51}, + [2221] = {.lex_state = 425, .external_lex_state = 51}, + [2222] = {.lex_state = 425, .external_lex_state = 51}, + [2223] = {.lex_state = 425, .external_lex_state = 51}, + [2224] = {.lex_state = 425, .external_lex_state = 51}, + [2225] = {.lex_state = 425, .external_lex_state = 51}, + [2226] = {.lex_state = 425, .external_lex_state = 51}, + [2227] = {.lex_state = 425, .external_lex_state = 51}, + [2228] = {.lex_state = 425, .external_lex_state = 51}, + [2229] = {.lex_state = 536, .external_lex_state = 20}, + [2230] = {.lex_state = 425, .external_lex_state = 51}, + [2231] = {.lex_state = 465, .external_lex_state = 52}, + [2232] = {.lex_state = 425, .external_lex_state = 51}, + [2233] = {.lex_state = 543, .external_lex_state = 44}, + [2234] = {.lex_state = 270, .external_lex_state = 22}, + [2235] = {.lex_state = 425, .external_lex_state = 51}, + [2236] = {.lex_state = 465, .external_lex_state = 52}, + [2237] = {.lex_state = 425, .external_lex_state = 51}, + [2238] = {.lex_state = 264, .external_lex_state = 21}, + [2239] = {.lex_state = 465, .external_lex_state = 52}, + [2240] = {.lex_state = 425, .external_lex_state = 51}, + [2241] = {.lex_state = 534, .external_lex_state = 22}, + [2242] = {.lex_state = 425, .external_lex_state = 51}, + [2243] = {.lex_state = 425, .external_lex_state = 51}, + [2244] = {.lex_state = 425, .external_lex_state = 51}, + [2245] = {.lex_state = 411, .external_lex_state = 36}, + [2246] = {.lex_state = 411, .external_lex_state = 36}, + [2247] = {.lex_state = 543, .external_lex_state = 44}, + [2248] = {.lex_state = 543, .external_lex_state = 44}, + [2249] = {.lex_state = 465, .external_lex_state = 49}, + [2250] = {.lex_state = 534, .external_lex_state = 22}, + [2251] = {.lex_state = 536, .external_lex_state = 20}, + [2252] = {.lex_state = 543, .external_lex_state = 44}, + [2253] = {.lex_state = 536, .external_lex_state = 20}, + [2254] = {.lex_state = 465, .external_lex_state = 49}, + [2255] = {.lex_state = 425, .external_lex_state = 51}, + [2256] = {.lex_state = 425, .external_lex_state = 51}, + [2257] = {.lex_state = 465, .external_lex_state = 49}, + [2258] = {.lex_state = 425, .external_lex_state = 51}, + [2259] = {.lex_state = 425, .external_lex_state = 51}, + [2260] = {.lex_state = 425, .external_lex_state = 51}, + [2261] = {.lex_state = 425, .external_lex_state = 51}, + [2262] = {.lex_state = 425, .external_lex_state = 51}, + [2263] = {.lex_state = 425, .external_lex_state = 51}, + [2264] = {.lex_state = 465, .external_lex_state = 49}, + [2265] = {.lex_state = 465, .external_lex_state = 49}, + [2266] = {.lex_state = 465, .external_lex_state = 52}, + [2267] = {.lex_state = 543, .external_lex_state = 44}, + [2268] = {.lex_state = 465, .external_lex_state = 52}, + [2269] = {.lex_state = 443, .external_lex_state = 53}, [2270] = {.lex_state = 534, .external_lex_state = 22}, - [2271] = {.lex_state = 303, .external_lex_state = 53}, - [2272] = {.lex_state = 533, .external_lex_state = 19}, - [2273] = {.lex_state = 533, .external_lex_state = 19}, - [2274] = {.lex_state = 278, .external_lex_state = 54}, - [2275] = {.lex_state = 278, .external_lex_state = 54}, - [2276] = {.lex_state = 278, .external_lex_state = 54}, - [2277] = {.lex_state = 278, .external_lex_state = 54}, - [2278] = {.lex_state = 303, .external_lex_state = 53}, - [2279] = {.lex_state = 227, .external_lex_state = 41}, - [2280] = {.lex_state = 530, .external_lex_state = 22}, - [2281] = {.lex_state = 534, .external_lex_state = 22}, - [2282] = {.lex_state = 227, .external_lex_state = 41}, - [2283] = {.lex_state = 227, .external_lex_state = 41}, - [2284] = {.lex_state = 303, .external_lex_state = 53}, - [2285] = {.lex_state = 303, .external_lex_state = 53}, - [2286] = {.lex_state = 533, .external_lex_state = 19}, - [2287] = {.lex_state = 300, .external_lex_state = 52}, - [2288] = {.lex_state = 227, .external_lex_state = 41}, - [2289] = {.lex_state = 300, .external_lex_state = 52}, - [2290] = {.lex_state = 227, .external_lex_state = 41}, - [2291] = {.lex_state = 227, .external_lex_state = 41}, - [2292] = {.lex_state = 278, .external_lex_state = 54}, - [2293] = {.lex_state = 303, .external_lex_state = 53}, - [2294] = {.lex_state = 300, .external_lex_state = 52}, - [2295] = {.lex_state = 300, .external_lex_state = 52}, - [2296] = {.lex_state = 303, .external_lex_state = 53}, - [2297] = {.lex_state = 227, .external_lex_state = 41}, - [2298] = {.lex_state = 303, .external_lex_state = 53}, - [2299] = {.lex_state = 300, .external_lex_state = 52}, - [2300] = {.lex_state = 303, .external_lex_state = 53}, - [2301] = {.lex_state = 300, .external_lex_state = 52}, - [2302] = {.lex_state = 227, .external_lex_state = 41}, - [2303] = {.lex_state = 303, .external_lex_state = 53}, - [2304] = {.lex_state = 278, .external_lex_state = 54}, - [2305] = {.lex_state = 207, .external_lex_state = 22}, - [2306] = {.lex_state = 533, .external_lex_state = 22}, - [2307] = {.lex_state = 278, .external_lex_state = 54}, - [2308] = {.lex_state = 303, .external_lex_state = 53}, - [2309] = {.lex_state = 303, .external_lex_state = 53}, - [2310] = {.lex_state = 530, .external_lex_state = 22}, - [2311] = {.lex_state = 534, .external_lex_state = 22}, - [2312] = {.lex_state = 278, .external_lex_state = 54}, - [2313] = {.lex_state = 300, .external_lex_state = 52}, - [2314] = {.lex_state = 303, .external_lex_state = 53}, - [2315] = {.lex_state = 278, .external_lex_state = 54}, - [2316] = {.lex_state = 534, .external_lex_state = 22}, - [2317] = {.lex_state = 278, .external_lex_state = 54}, - [2318] = {.lex_state = 300, .external_lex_state = 52}, - [2319] = {.lex_state = 278, .external_lex_state = 54}, - [2320] = {.lex_state = 300, .external_lex_state = 52}, - [2321] = {.lex_state = 278, .external_lex_state = 54}, - [2322] = {.lex_state = 278, .external_lex_state = 54}, - [2323] = {.lex_state = 225, .external_lex_state = 41}, - [2324] = {.lex_state = 225, .external_lex_state = 41}, - [2325] = {.lex_state = 227, .external_lex_state = 41}, - [2326] = {.lex_state = 300, .external_lex_state = 52}, - [2327] = {.lex_state = 227, .external_lex_state = 41}, - [2328] = {.lex_state = 227, .external_lex_state = 41}, - [2329] = {.lex_state = 225, .external_lex_state = 41}, - [2330] = {.lex_state = 225, .external_lex_state = 41}, - [2331] = {.lex_state = 225, .external_lex_state = 41}, - [2332] = {.lex_state = 299, .external_lex_state = 23}, - [2333] = {.lex_state = 300, .external_lex_state = 52}, - [2334] = {.lex_state = 300, .external_lex_state = 52}, - [2335] = {.lex_state = 300, .external_lex_state = 52}, - [2336] = {.lex_state = 225, .external_lex_state = 41}, - [2337] = {.lex_state = 227, .external_lex_state = 41}, - [2338] = {.lex_state = 533, .external_lex_state = 22}, - [2339] = {.lex_state = 300, .external_lex_state = 52}, - [2340] = {.lex_state = 227, .external_lex_state = 41}, - [2341] = {.lex_state = 300, .external_lex_state = 52}, - [2342] = {.lex_state = 225, .external_lex_state = 41}, - [2343] = {.lex_state = 300, .external_lex_state = 52}, - [2344] = {.lex_state = 300, .external_lex_state = 52}, - [2345] = {.lex_state = 299, .external_lex_state = 23}, - [2346] = {.lex_state = 303, .external_lex_state = 53}, - [2347] = {.lex_state = 278, .external_lex_state = 54}, - [2348] = {.lex_state = 303, .external_lex_state = 53}, - [2349] = {.lex_state = 235, .external_lex_state = 55}, - [2350] = {.lex_state = 301, .external_lex_state = 56}, - [2351] = {.lex_state = 299, .external_lex_state = 23}, - [2352] = {.lex_state = 299, .external_lex_state = 25}, - [2353] = {.lex_state = 235, .external_lex_state = 55}, - [2354] = {.lex_state = 278, .external_lex_state = 54}, - [2355] = {.lex_state = 278, .external_lex_state = 54}, - [2356] = {.lex_state = 303, .external_lex_state = 57}, - [2357] = {.lex_state = 301, .external_lex_state = 56}, - [2358] = {.lex_state = 235, .external_lex_state = 55}, - [2359] = {.lex_state = 301, .external_lex_state = 56}, - [2360] = {.lex_state = 235, .external_lex_state = 55}, - [2361] = {.lex_state = 235, .external_lex_state = 55}, - [2362] = {.lex_state = 303, .external_lex_state = 53}, - [2363] = {.lex_state = 303, .external_lex_state = 53}, - [2364] = {.lex_state = 235, .external_lex_state = 55}, - [2365] = {.lex_state = 225, .external_lex_state = 44}, - [2366] = {.lex_state = 299, .external_lex_state = 25}, - [2367] = {.lex_state = 225, .external_lex_state = 44}, - [2368] = {.lex_state = 299, .external_lex_state = 23}, - [2369] = {.lex_state = 301, .external_lex_state = 56}, - [2370] = {.lex_state = 299, .external_lex_state = 25}, - [2371] = {.lex_state = 301, .external_lex_state = 56}, - [2372] = {.lex_state = 235, .external_lex_state = 55}, - [2373] = {.lex_state = 309, .external_lex_state = 56}, - [2374] = {.lex_state = 276, .external_lex_state = 45}, - [2375] = {.lex_state = 303, .external_lex_state = 53}, - [2376] = {.lex_state = 235, .external_lex_state = 55}, - [2377] = {.lex_state = 235, .external_lex_state = 55}, - [2378] = {.lex_state = 235, .external_lex_state = 55}, - [2379] = {.lex_state = 235, .external_lex_state = 55}, - [2380] = {.lex_state = 303, .external_lex_state = 53}, - [2381] = {.lex_state = 534, .external_lex_state = 22}, - [2382] = {.lex_state = 276, .external_lex_state = 45}, - [2383] = {.lex_state = 278, .external_lex_state = 54}, - [2384] = {.lex_state = 303, .external_lex_state = 53}, - [2385] = {.lex_state = 225, .external_lex_state = 44}, - [2386] = {.lex_state = 225, .external_lex_state = 44}, - [2387] = {.lex_state = 278, .external_lex_state = 54}, - [2388] = {.lex_state = 303, .external_lex_state = 53}, - [2389] = {.lex_state = 227, .external_lex_state = 44}, - [2390] = {.lex_state = 303, .external_lex_state = 53}, - [2391] = {.lex_state = 227, .external_lex_state = 44}, - [2392] = {.lex_state = 278, .external_lex_state = 54}, - [2393] = {.lex_state = 278, .external_lex_state = 54}, - [2394] = {.lex_state = 299, .external_lex_state = 25}, - [2395] = {.lex_state = 309, .external_lex_state = 56}, - [2396] = {.lex_state = 301, .external_lex_state = 56}, - [2397] = {.lex_state = 278, .external_lex_state = 54}, - [2398] = {.lex_state = 303, .external_lex_state = 53}, - [2399] = {.lex_state = 303, .external_lex_state = 53}, - [2400] = {.lex_state = 303, .external_lex_state = 53}, - [2401] = {.lex_state = 303, .external_lex_state = 53}, - [2402] = {.lex_state = 303, .external_lex_state = 53}, - [2403] = {.lex_state = 225, .external_lex_state = 44}, - [2404] = {.lex_state = 227, .external_lex_state = 44}, - [2405] = {.lex_state = 309, .external_lex_state = 56}, - [2406] = {.lex_state = 309, .external_lex_state = 56}, - [2407] = {.lex_state = 309, .external_lex_state = 56}, - [2408] = {.lex_state = 281, .external_lex_state = 54}, - [2409] = {.lex_state = 281, .external_lex_state = 54}, - [2410] = {.lex_state = 235, .external_lex_state = 55}, - [2411] = {.lex_state = 235, .external_lex_state = 55}, - [2412] = {.lex_state = 303, .external_lex_state = 53}, - [2413] = {.lex_state = 301, .external_lex_state = 56}, - [2414] = {.lex_state = 235, .external_lex_state = 55}, - [2415] = {.lex_state = 301, .external_lex_state = 56}, - [2416] = {.lex_state = 235, .external_lex_state = 55}, - [2417] = {.lex_state = 299, .external_lex_state = 25}, - [2418] = {.lex_state = 534, .external_lex_state = 22}, - [2419] = {.lex_state = 309, .external_lex_state = 56}, - [2420] = {.lex_state = 303, .external_lex_state = 53}, - [2421] = {.lex_state = 303, .external_lex_state = 53}, - [2422] = {.lex_state = 227, .external_lex_state = 44}, - [2423] = {.lex_state = 303, .external_lex_state = 53}, - [2424] = {.lex_state = 303, .external_lex_state = 57}, - [2425] = {.lex_state = 303, .external_lex_state = 57}, - [2426] = {.lex_state = 309, .external_lex_state = 56}, - [2427] = {.lex_state = 301, .external_lex_state = 56}, - [2428] = {.lex_state = 235, .external_lex_state = 55}, - [2429] = {.lex_state = 301, .external_lex_state = 56}, - [2430] = {.lex_state = 303, .external_lex_state = 53}, - [2431] = {.lex_state = 227, .external_lex_state = 44}, - [2432] = {.lex_state = 301, .external_lex_state = 56}, - [2433] = {.lex_state = 277, .external_lex_state = 54}, - [2434] = {.lex_state = 301, .external_lex_state = 56}, - [2435] = {.lex_state = 309, .external_lex_state = 56}, - [2436] = {.lex_state = 301, .external_lex_state = 56}, - [2437] = {.lex_state = 303, .external_lex_state = 57}, - [2438] = {.lex_state = 303, .external_lex_state = 57}, - [2439] = {.lex_state = 278, .external_lex_state = 54}, - [2440] = {.lex_state = 301, .external_lex_state = 56}, - [2441] = {.lex_state = 303, .external_lex_state = 57}, - [2442] = {.lex_state = 278, .external_lex_state = 54}, - [2443] = {.lex_state = 271, .external_lex_state = 58}, - [2444] = {.lex_state = 309, .external_lex_state = 56}, - [2445] = {.lex_state = 273, .external_lex_state = 45}, - [2446] = {.lex_state = 303, .external_lex_state = 57}, - [2447] = {.lex_state = 303, .external_lex_state = 57}, - [2448] = {.lex_state = 303, .external_lex_state = 57}, - [2449] = {.lex_state = 303, .external_lex_state = 57}, - [2450] = {.lex_state = 303, .external_lex_state = 57}, - [2451] = {.lex_state = 276, .external_lex_state = 45}, - [2452] = {.lex_state = 309, .external_lex_state = 56}, - [2453] = {.lex_state = 309, .external_lex_state = 59}, - [2454] = {.lex_state = 309, .external_lex_state = 56}, - [2455] = {.lex_state = 276, .external_lex_state = 45}, - [2456] = {.lex_state = 278, .external_lex_state = 54}, - [2457] = {.lex_state = 302, .external_lex_state = 31}, - [2458] = {.lex_state = 301, .external_lex_state = 59}, - [2459] = {.lex_state = 278, .external_lex_state = 54}, - [2460] = {.lex_state = 304, .external_lex_state = 57}, - [2461] = {.lex_state = 276, .external_lex_state = 45}, - [2462] = {.lex_state = 303, .external_lex_state = 57}, - [2463] = {.lex_state = 273, .external_lex_state = 45}, - [2464] = {.lex_state = 276, .external_lex_state = 54}, - [2465] = {.lex_state = 309, .external_lex_state = 56}, - [2466] = {.lex_state = 278, .external_lex_state = 54}, - [2467] = {.lex_state = 309, .external_lex_state = 56}, - [2468] = {.lex_state = 309, .external_lex_state = 56}, - [2469] = {.lex_state = 309, .external_lex_state = 56}, - [2470] = {.lex_state = 233, .external_lex_state = 44}, - [2471] = {.lex_state = 233, .external_lex_state = 44}, - [2472] = {.lex_state = 273, .external_lex_state = 45}, - [2473] = {.lex_state = 278, .external_lex_state = 54}, - [2474] = {.lex_state = 273, .external_lex_state = 45}, - [2475] = {.lex_state = 276, .external_lex_state = 54}, - [2476] = {.lex_state = 302, .external_lex_state = 31}, - [2477] = {.lex_state = 309, .external_lex_state = 56}, - [2478] = {.lex_state = 303, .external_lex_state = 57}, - [2479] = {.lex_state = 301, .external_lex_state = 56}, - [2480] = {.lex_state = 233, .external_lex_state = 44}, - [2481] = {.lex_state = 301, .external_lex_state = 56}, - [2482] = {.lex_state = 303, .external_lex_state = 57}, - [2483] = {.lex_state = 301, .external_lex_state = 59}, - [2484] = {.lex_state = 281, .external_lex_state = 42}, - [2485] = {.lex_state = 271, .external_lex_state = 58}, - [2486] = {.lex_state = 304, .external_lex_state = 57}, - [2487] = {.lex_state = 301, .external_lex_state = 59}, - [2488] = {.lex_state = 304, .external_lex_state = 57}, - [2489] = {.lex_state = 304, .external_lex_state = 57}, - [2490] = {.lex_state = 304, .external_lex_state = 57}, - [2491] = {.lex_state = 276, .external_lex_state = 54}, - [2492] = {.lex_state = 299, .external_lex_state = 25}, - [2493] = {.lex_state = 301, .external_lex_state = 59}, - [2494] = {.lex_state = 304, .external_lex_state = 57}, - [2495] = {.lex_state = 278, .external_lex_state = 54}, - [2496] = {.lex_state = 303, .external_lex_state = 57}, - [2497] = {.lex_state = 276, .external_lex_state = 45}, - [2498] = {.lex_state = 301, .external_lex_state = 56}, - [2499] = {.lex_state = 309, .external_lex_state = 56}, - [2500] = {.lex_state = 276, .external_lex_state = 54}, - [2501] = {.lex_state = 273, .external_lex_state = 45}, - [2502] = {.lex_state = 301, .external_lex_state = 56}, - [2503] = {.lex_state = 278, .external_lex_state = 54}, - [2504] = {.lex_state = 303, .external_lex_state = 57}, - [2505] = {.lex_state = 271, .external_lex_state = 58}, - [2506] = {.lex_state = 276, .external_lex_state = 54}, - [2507] = {.lex_state = 301, .external_lex_state = 56}, - [2508] = {.lex_state = 301, .external_lex_state = 56}, - [2509] = {.lex_state = 276, .external_lex_state = 54}, - [2510] = {.lex_state = 301, .external_lex_state = 56}, - [2511] = {.lex_state = 276, .external_lex_state = 45}, - [2512] = {.lex_state = 301, .external_lex_state = 56}, - [2513] = {.lex_state = 301, .external_lex_state = 56}, - [2514] = {.lex_state = 301, .external_lex_state = 56}, - [2515] = {.lex_state = 301, .external_lex_state = 56}, - [2516] = {.lex_state = 301, .external_lex_state = 56}, - [2517] = {.lex_state = 301, .external_lex_state = 56}, - [2518] = {.lex_state = 301, .external_lex_state = 56}, - [2519] = {.lex_state = 271, .external_lex_state = 58}, - [2520] = {.lex_state = 301, .external_lex_state = 56}, - [2521] = {.lex_state = 276, .external_lex_state = 45}, - [2522] = {.lex_state = 299, .external_lex_state = 25}, - [2523] = {.lex_state = 303, .external_lex_state = 57}, - [2524] = {.lex_state = 271, .external_lex_state = 58}, - [2525] = {.lex_state = 301, .external_lex_state = 56}, - [2526] = {.lex_state = 309, .external_lex_state = 56}, - [2527] = {.lex_state = 309, .external_lex_state = 56}, - [2528] = {.lex_state = 309, .external_lex_state = 56}, - [2529] = {.lex_state = 271, .external_lex_state = 58}, - [2530] = {.lex_state = 271, .external_lex_state = 58}, - [2531] = {.lex_state = 271, .external_lex_state = 58}, - [2532] = {.lex_state = 302, .external_lex_state = 31}, - [2533] = {.lex_state = 276, .external_lex_state = 45}, - [2534] = {.lex_state = 299, .external_lex_state = 25}, - [2535] = {.lex_state = 301, .external_lex_state = 56}, - [2536] = {.lex_state = 303, .external_lex_state = 57}, - [2537] = {.lex_state = 281, .external_lex_state = 54}, - [2538] = {.lex_state = 309, .external_lex_state = 59}, - [2539] = {.lex_state = 309, .external_lex_state = 59}, - [2540] = {.lex_state = 276, .external_lex_state = 45}, - [2541] = {.lex_state = 302, .external_lex_state = 31}, - [2542] = {.lex_state = 301, .external_lex_state = 56}, - [2543] = {.lex_state = 301, .external_lex_state = 59}, - [2544] = {.lex_state = 309, .external_lex_state = 56}, - [2545] = {.lex_state = 309, .external_lex_state = 56}, - [2546] = {.lex_state = 276, .external_lex_state = 45}, - [2547] = {.lex_state = 273, .external_lex_state = 45}, - [2548] = {.lex_state = 309, .external_lex_state = 59}, - [2549] = {.lex_state = 276, .external_lex_state = 45}, - [2550] = {.lex_state = 301, .external_lex_state = 59}, - [2551] = {.lex_state = 276, .external_lex_state = 45}, - [2552] = {.lex_state = 273, .external_lex_state = 45}, - [2553] = {.lex_state = 309, .external_lex_state = 59}, - [2554] = {.lex_state = 301, .external_lex_state = 56}, - [2555] = {.lex_state = 276, .external_lex_state = 45}, - [2556] = {.lex_state = 299, .external_lex_state = 25}, - [2557] = {.lex_state = 281, .external_lex_state = 42}, - [2558] = {.lex_state = 299, .external_lex_state = 25}, - [2559] = {.lex_state = 271, .external_lex_state = 58}, - [2560] = {.lex_state = 303, .external_lex_state = 57}, - [2561] = {.lex_state = 273, .external_lex_state = 45}, - [2562] = {.lex_state = 299, .external_lex_state = 25}, - [2563] = {.lex_state = 276, .external_lex_state = 45}, - [2564] = {.lex_state = 309, .external_lex_state = 59}, - [2565] = {.lex_state = 309, .external_lex_state = 56}, - [2566] = {.lex_state = 309, .external_lex_state = 56}, - [2567] = {.lex_state = 303, .external_lex_state = 57}, - [2568] = {.lex_state = 302, .external_lex_state = 31}, - [2569] = {.lex_state = 302, .external_lex_state = 31}, - [2570] = {.lex_state = 303, .external_lex_state = 57}, - [2571] = {.lex_state = 303, .external_lex_state = 57}, - [2572] = {.lex_state = 233, .external_lex_state = 44}, - [2573] = {.lex_state = 278, .external_lex_state = 54}, - [2574] = {.lex_state = 309, .external_lex_state = 56}, - [2575] = {.lex_state = 278, .external_lex_state = 54}, - [2576] = {.lex_state = 303, .external_lex_state = 57}, - [2577] = {.lex_state = 303, .external_lex_state = 57}, - [2578] = {.lex_state = 233, .external_lex_state = 44}, - [2579] = {.lex_state = 309, .external_lex_state = 56}, - [2580] = {.lex_state = 309, .external_lex_state = 56}, - [2581] = {.lex_state = 303, .external_lex_state = 57}, - [2582] = {.lex_state = 278, .external_lex_state = 54}, - [2583] = {.lex_state = 301, .external_lex_state = 59}, - [2584] = {.lex_state = 273, .external_lex_state = 45}, - [2585] = {.lex_state = 304, .external_lex_state = 57}, - [2586] = {.lex_state = 276, .external_lex_state = 54}, - [2587] = {.lex_state = 304, .external_lex_state = 57}, - [2588] = {.lex_state = 278, .external_lex_state = 54}, - [2589] = {.lex_state = 271, .external_lex_state = 60}, - [2590] = {.lex_state = 304, .external_lex_state = 57}, - [2591] = {.lex_state = 304, .external_lex_state = 57}, - [2592] = {.lex_state = 304, .external_lex_state = 57}, - [2593] = {.lex_state = 276, .external_lex_state = 54}, - [2594] = {.lex_state = 271, .external_lex_state = 42}, - [2595] = {.lex_state = 298, .external_lex_state = 29}, - [2596] = {.lex_state = 276, .external_lex_state = 45}, - [2597] = {.lex_state = 276, .external_lex_state = 45}, - [2598] = {.lex_state = 276, .external_lex_state = 45}, - [2599] = {.lex_state = 304, .external_lex_state = 57}, - [2600] = {.lex_state = 304, .external_lex_state = 57}, - [2601] = {.lex_state = 273, .external_lex_state = 61}, - [2602] = {.lex_state = 302, .external_lex_state = 33}, - [2603] = {.lex_state = 276, .external_lex_state = 54}, - [2604] = {.lex_state = 304, .external_lex_state = 57}, - [2605] = {.lex_state = 304, .external_lex_state = 57}, - [2606] = {.lex_state = 304, .external_lex_state = 57}, - [2607] = {.lex_state = 304, .external_lex_state = 57}, - [2608] = {.lex_state = 304, .external_lex_state = 57}, - [2609] = {.lex_state = 304, .external_lex_state = 57}, - [2610] = {.lex_state = 304, .external_lex_state = 57}, - [2611] = {.lex_state = 304, .external_lex_state = 57}, - [2612] = {.lex_state = 307, .external_lex_state = 59}, - [2613] = {.lex_state = 307, .external_lex_state = 59}, - [2614] = {.lex_state = 304, .external_lex_state = 57}, - [2615] = {.lex_state = 304, .external_lex_state = 57}, - [2616] = {.lex_state = 304, .external_lex_state = 57}, - [2617] = {.lex_state = 304, .external_lex_state = 57}, - [2618] = {.lex_state = 307, .external_lex_state = 59}, - [2619] = {.lex_state = 307, .external_lex_state = 59}, - [2620] = {.lex_state = 307, .external_lex_state = 59}, - [2621] = {.lex_state = 271, .external_lex_state = 42}, - [2622] = {.lex_state = 302, .external_lex_state = 31}, - [2623] = {.lex_state = 302, .external_lex_state = 31}, - [2624] = {.lex_state = 276, .external_lex_state = 54}, - [2625] = {.lex_state = 276, .external_lex_state = 54}, - [2626] = {.lex_state = 309, .external_lex_state = 59}, - [2627] = {.lex_state = 271, .external_lex_state = 42}, - [2628] = {.lex_state = 309, .external_lex_state = 59}, - [2629] = {.lex_state = 309, .external_lex_state = 59}, - [2630] = {.lex_state = 276, .external_lex_state = 54}, - [2631] = {.lex_state = 276, .external_lex_state = 54}, - [2632] = {.lex_state = 307, .external_lex_state = 59}, - [2633] = {.lex_state = 301, .external_lex_state = 59}, - [2634] = {.lex_state = 301, .external_lex_state = 59}, - [2635] = {.lex_state = 302, .external_lex_state = 31}, - [2636] = {.lex_state = 271, .external_lex_state = 42}, - [2637] = {.lex_state = 302, .external_lex_state = 31}, - [2638] = {.lex_state = 301, .external_lex_state = 59}, - [2639] = {.lex_state = 301, .external_lex_state = 59}, - [2640] = {.lex_state = 301, .external_lex_state = 59}, - [2641] = {.lex_state = 273, .external_lex_state = 48}, - [2642] = {.lex_state = 309, .external_lex_state = 59}, - [2643] = {.lex_state = 301, .external_lex_state = 59}, - [2644] = {.lex_state = 301, .external_lex_state = 59}, - [2645] = {.lex_state = 309, .external_lex_state = 59}, - [2646] = {.lex_state = 309, .external_lex_state = 59}, - [2647] = {.lex_state = 276, .external_lex_state = 45}, - [2648] = {.lex_state = 271, .external_lex_state = 42}, - [2649] = {.lex_state = 309, .external_lex_state = 59}, - [2650] = {.lex_state = 309, .external_lex_state = 59}, - [2651] = {.lex_state = 301, .external_lex_state = 59}, - [2652] = {.lex_state = 309, .external_lex_state = 59}, - [2653] = {.lex_state = 301, .external_lex_state = 59}, - [2654] = {.lex_state = 276, .external_lex_state = 54}, - [2655] = {.lex_state = 301, .external_lex_state = 59}, - [2656] = {.lex_state = 273, .external_lex_state = 61}, - [2657] = {.lex_state = 273, .external_lex_state = 61}, - [2658] = {.lex_state = 273, .external_lex_state = 61}, - [2659] = {.lex_state = 271, .external_lex_state = 42}, - [2660] = {.lex_state = 273, .external_lex_state = 61}, - [2661] = {.lex_state = 276, .external_lex_state = 45}, - [2662] = {.lex_state = 273, .external_lex_state = 61}, - [2663] = {.lex_state = 309, .external_lex_state = 59}, - [2664] = {.lex_state = 276, .external_lex_state = 45}, - [2665] = {.lex_state = 276, .external_lex_state = 45}, - [2666] = {.lex_state = 309, .external_lex_state = 59}, - [2667] = {.lex_state = 309, .external_lex_state = 59}, - [2668] = {.lex_state = 273, .external_lex_state = 61}, - [2669] = {.lex_state = 273, .external_lex_state = 61}, - [2670] = {.lex_state = 273, .external_lex_state = 61}, - [2671] = {.lex_state = 298, .external_lex_state = 29}, - [2672] = {.lex_state = 301, .external_lex_state = 59}, - [2673] = {.lex_state = 276, .external_lex_state = 45}, - [2674] = {.lex_state = 301, .external_lex_state = 59}, - [2675] = {.lex_state = 276, .external_lex_state = 54}, - [2676] = {.lex_state = 301, .external_lex_state = 59}, - [2677] = {.lex_state = 301, .external_lex_state = 59}, - [2678] = {.lex_state = 298, .external_lex_state = 29}, - [2679] = {.lex_state = 276, .external_lex_state = 45}, - [2680] = {.lex_state = 276, .external_lex_state = 45}, - [2681] = {.lex_state = 276, .external_lex_state = 54}, - [2682] = {.lex_state = 301, .external_lex_state = 59}, - [2683] = {.lex_state = 309, .external_lex_state = 59}, - [2684] = {.lex_state = 301, .external_lex_state = 59}, - [2685] = {.lex_state = 309, .external_lex_state = 59}, - [2686] = {.lex_state = 301, .external_lex_state = 59}, - [2687] = {.lex_state = 301, .external_lex_state = 59}, - [2688] = {.lex_state = 308, .external_lex_state = 29}, - [2689] = {.lex_state = 298, .external_lex_state = 29}, - [2690] = {.lex_state = 277, .external_lex_state = 42}, - [2691] = {.lex_state = 302, .external_lex_state = 31}, - [2692] = {.lex_state = 308, .external_lex_state = 29}, - [2693] = {.lex_state = 302, .external_lex_state = 31}, - [2694] = {.lex_state = 271, .external_lex_state = 62}, - [2695] = {.lex_state = 277, .external_lex_state = 42}, - [2696] = {.lex_state = 271, .external_lex_state = 62}, - [2697] = {.lex_state = 276, .external_lex_state = 45}, - [2698] = {.lex_state = 276, .external_lex_state = 45}, - [2699] = {.lex_state = 278, .external_lex_state = 42}, - [2700] = {.lex_state = 309, .external_lex_state = 59}, - [2701] = {.lex_state = 309, .external_lex_state = 59}, - [2702] = {.lex_state = 271, .external_lex_state = 62}, - [2703] = {.lex_state = 298, .external_lex_state = 29}, - [2704] = {.lex_state = 271, .external_lex_state = 62}, - [2705] = {.lex_state = 150, .external_lex_state = 63}, - [2706] = {.lex_state = 150, .external_lex_state = 63}, - [2707] = {.lex_state = 309, .external_lex_state = 59}, - [2708] = {.lex_state = 276, .external_lex_state = 54}, - [2709] = {.lex_state = 276, .external_lex_state = 54}, - [2710] = {.lex_state = 276, .external_lex_state = 54}, - [2711] = {.lex_state = 309, .external_lex_state = 59}, - [2712] = {.lex_state = 309, .external_lex_state = 59}, - [2713] = {.lex_state = 281, .external_lex_state = 42}, - [2714] = {.lex_state = 308, .external_lex_state = 29}, - [2715] = {.lex_state = 302, .external_lex_state = 33}, - [2716] = {.lex_state = 276, .external_lex_state = 45}, - [2717] = {.lex_state = 278, .external_lex_state = 42}, - [2718] = {.lex_state = 298, .external_lex_state = 29}, - [2719] = {.lex_state = 276, .external_lex_state = 54}, - [2720] = {.lex_state = 278, .external_lex_state = 54}, - [2721] = {.lex_state = 276, .external_lex_state = 45}, - [2722] = {.lex_state = 276, .external_lex_state = 54}, - [2723] = {.lex_state = 278, .external_lex_state = 54}, - [2724] = {.lex_state = 271, .external_lex_state = 42}, - [2725] = {.lex_state = 302, .external_lex_state = 31}, - [2726] = {.lex_state = 298, .external_lex_state = 29}, - [2727] = {.lex_state = 273, .external_lex_state = 48}, - [2728] = {.lex_state = 276, .external_lex_state = 54}, - [2729] = {.lex_state = 276, .external_lex_state = 45}, - [2730] = {.lex_state = 276, .external_lex_state = 45}, - [2731] = {.lex_state = 276, .external_lex_state = 45}, - [2732] = {.lex_state = 276, .external_lex_state = 54}, - [2733] = {.lex_state = 276, .external_lex_state = 54}, - [2734] = {.lex_state = 276, .external_lex_state = 54}, - [2735] = {.lex_state = 276, .external_lex_state = 45}, - [2736] = {.lex_state = 276, .external_lex_state = 45}, - [2737] = {.lex_state = 273, .external_lex_state = 58}, - [2738] = {.lex_state = 273, .external_lex_state = 45}, - [2739] = {.lex_state = 271, .external_lex_state = 60}, - [2740] = {.lex_state = 271, .external_lex_state = 60}, - [2741] = {.lex_state = 271, .external_lex_state = 60}, - [2742] = {.lex_state = 271, .external_lex_state = 60}, - [2743] = {.lex_state = 271, .external_lex_state = 60}, - [2744] = {.lex_state = 271, .external_lex_state = 60}, - [2745] = {.lex_state = 271, .external_lex_state = 60}, - [2746] = {.lex_state = 271, .external_lex_state = 60}, - [2747] = {.lex_state = 271, .external_lex_state = 60}, - [2748] = {.lex_state = 271, .external_lex_state = 60}, - [2749] = {.lex_state = 271, .external_lex_state = 60}, - [2750] = {.lex_state = 271, .external_lex_state = 60}, - [2751] = {.lex_state = 271, .external_lex_state = 60}, - [2752] = {.lex_state = 271, .external_lex_state = 60}, - [2753] = {.lex_state = 271, .external_lex_state = 60}, - [2754] = {.lex_state = 271, .external_lex_state = 60}, - [2755] = {.lex_state = 271, .external_lex_state = 60}, - [2756] = {.lex_state = 271, .external_lex_state = 60}, - [2757] = {.lex_state = 271, .external_lex_state = 60}, - [2758] = {.lex_state = 271, .external_lex_state = 60}, - [2759] = {.lex_state = 271, .external_lex_state = 60}, - [2760] = {.lex_state = 271, .external_lex_state = 60}, - [2761] = {.lex_state = 271, .external_lex_state = 60}, - [2762] = {.lex_state = 271, .external_lex_state = 60}, - [2763] = {.lex_state = 271, .external_lex_state = 60}, - [2764] = {.lex_state = 271, .external_lex_state = 60}, - [2765] = {.lex_state = 271, .external_lex_state = 60}, - [2766] = {.lex_state = 271, .external_lex_state = 60}, - [2767] = {.lex_state = 271, .external_lex_state = 60}, - [2768] = {.lex_state = 271, .external_lex_state = 60}, - [2769] = {.lex_state = 271, .external_lex_state = 60}, - [2770] = {.lex_state = 271, .external_lex_state = 60}, - [2771] = {.lex_state = 271, .external_lex_state = 60}, - [2772] = {.lex_state = 271, .external_lex_state = 60}, - [2773] = {.lex_state = 271, .external_lex_state = 60}, - [2774] = {.lex_state = 271, .external_lex_state = 60}, - [2775] = {.lex_state = 271, .external_lex_state = 60}, - [2776] = {.lex_state = 305, .external_lex_state = 33}, - [2777] = {.lex_state = 271, .external_lex_state = 60}, - [2778] = {.lex_state = 271, .external_lex_state = 60}, - [2779] = {.lex_state = 271, .external_lex_state = 60}, - [2780] = {.lex_state = 298, .external_lex_state = 29}, - [2781] = {.lex_state = 271, .external_lex_state = 60}, - [2782] = {.lex_state = 271, .external_lex_state = 60}, - [2783] = {.lex_state = 271, .external_lex_state = 60}, - [2784] = {.lex_state = 271, .external_lex_state = 60}, - [2785] = {.lex_state = 271, .external_lex_state = 60}, - [2786] = {.lex_state = 271, .external_lex_state = 60}, - [2787] = {.lex_state = 271, .external_lex_state = 60}, - [2788] = {.lex_state = 271, .external_lex_state = 60}, - [2789] = {.lex_state = 271, .external_lex_state = 60}, - [2790] = {.lex_state = 271, .external_lex_state = 60}, - [2791] = {.lex_state = 271, .external_lex_state = 60}, - [2792] = {.lex_state = 271, .external_lex_state = 60}, - [2793] = {.lex_state = 271, .external_lex_state = 60}, - [2794] = {.lex_state = 271, .external_lex_state = 60}, - [2795] = {.lex_state = 271, .external_lex_state = 60}, - [2796] = {.lex_state = 273, .external_lex_state = 48}, - [2797] = {.lex_state = 271, .external_lex_state = 60}, - [2798] = {.lex_state = 298, .external_lex_state = 29}, - [2799] = {.lex_state = 271, .external_lex_state = 60}, - [2800] = {.lex_state = 271, .external_lex_state = 60}, - [2801] = {.lex_state = 271, .external_lex_state = 60}, - [2802] = {.lex_state = 273, .external_lex_state = 45}, - [2803] = {.lex_state = 271, .external_lex_state = 60}, - [2804] = {.lex_state = 271, .external_lex_state = 60}, - [2805] = {.lex_state = 273, .external_lex_state = 45}, - [2806] = {.lex_state = 305, .external_lex_state = 33}, - [2807] = {.lex_state = 308, .external_lex_state = 29}, - [2808] = {.lex_state = 273, .external_lex_state = 45}, - [2809] = {.lex_state = 271, .external_lex_state = 60}, - [2810] = {.lex_state = 273, .external_lex_state = 45}, - [2811] = {.lex_state = 271, .external_lex_state = 60}, - [2812] = {.lex_state = 273, .external_lex_state = 45}, - [2813] = {.lex_state = 273, .external_lex_state = 45}, - [2814] = {.lex_state = 273, .external_lex_state = 45}, - [2815] = {.lex_state = 273, .external_lex_state = 45}, - [2816] = {.lex_state = 273, .external_lex_state = 45}, - [2817] = {.lex_state = 308, .external_lex_state = 29}, - [2818] = {.lex_state = 271, .external_lex_state = 60}, - [2819] = {.lex_state = 302, .external_lex_state = 33}, - [2820] = {.lex_state = 271, .external_lex_state = 60}, - [2821] = {.lex_state = 271, .external_lex_state = 60}, - [2822] = {.lex_state = 271, .external_lex_state = 60}, - [2823] = {.lex_state = 271, .external_lex_state = 60}, - [2824] = {.lex_state = 271, .external_lex_state = 60}, - [2825] = {.lex_state = 271, .external_lex_state = 60}, - [2826] = {.lex_state = 271, .external_lex_state = 60}, - [2827] = {.lex_state = 273, .external_lex_state = 45}, - [2828] = {.lex_state = 273, .external_lex_state = 45}, - [2829] = {.lex_state = 273, .external_lex_state = 45}, - [2830] = {.lex_state = 273, .external_lex_state = 45}, - [2831] = {.lex_state = 273, .external_lex_state = 45}, - [2832] = {.lex_state = 273, .external_lex_state = 45}, - [2833] = {.lex_state = 273, .external_lex_state = 45}, - [2834] = {.lex_state = 273, .external_lex_state = 45}, - [2835] = {.lex_state = 273, .external_lex_state = 45}, - [2836] = {.lex_state = 271, .external_lex_state = 60}, - [2837] = {.lex_state = 273, .external_lex_state = 45}, - [2838] = {.lex_state = 64, .external_lex_state = 64}, - [2839] = {.lex_state = 273, .external_lex_state = 45}, - [2840] = {.lex_state = 271, .external_lex_state = 60}, - [2841] = {.lex_state = 307, .external_lex_state = 59}, - [2842] = {.lex_state = 307, .external_lex_state = 59}, - [2843] = {.lex_state = 271, .external_lex_state = 60}, - [2844] = {.lex_state = 271, .external_lex_state = 60}, - [2845] = {.lex_state = 271, .external_lex_state = 60}, - [2846] = {.lex_state = 298, .external_lex_state = 29}, - [2847] = {.lex_state = 271, .external_lex_state = 60}, - [2848] = {.lex_state = 271, .external_lex_state = 60}, - [2849] = {.lex_state = 271, .external_lex_state = 60}, - [2850] = {.lex_state = 307, .external_lex_state = 59}, - [2851] = {.lex_state = 273, .external_lex_state = 45}, - [2852] = {.lex_state = 271, .external_lex_state = 60}, - [2853] = {.lex_state = 271, .external_lex_state = 60}, - [2854] = {.lex_state = 307, .external_lex_state = 59}, - [2855] = {.lex_state = 271, .external_lex_state = 60}, - [2856] = {.lex_state = 271, .external_lex_state = 60}, - [2857] = {.lex_state = 307, .external_lex_state = 59}, - [2858] = {.lex_state = 271, .external_lex_state = 60}, - [2859] = {.lex_state = 307, .external_lex_state = 59}, - [2860] = {.lex_state = 271, .external_lex_state = 60}, - [2861] = {.lex_state = 307, .external_lex_state = 59}, - [2862] = {.lex_state = 273, .external_lex_state = 58}, - [2863] = {.lex_state = 273, .external_lex_state = 45}, - [2864] = {.lex_state = 298, .external_lex_state = 29}, - [2865] = {.lex_state = 273, .external_lex_state = 65}, - [2866] = {.lex_state = 271, .external_lex_state = 60}, - [2867] = {.lex_state = 298, .external_lex_state = 34}, - [2868] = {.lex_state = 273, .external_lex_state = 45}, - [2869] = {.lex_state = 307, .external_lex_state = 59}, - [2870] = {.lex_state = 307, .external_lex_state = 59}, - [2871] = {.lex_state = 273, .external_lex_state = 65}, - [2872] = {.lex_state = 273, .external_lex_state = 65}, - [2873] = {.lex_state = 273, .external_lex_state = 65}, - [2874] = {.lex_state = 273, .external_lex_state = 45}, - [2875] = {.lex_state = 273, .external_lex_state = 65}, - [2876] = {.lex_state = 273, .external_lex_state = 65}, - [2877] = {.lex_state = 307, .external_lex_state = 59}, - [2878] = {.lex_state = 308, .external_lex_state = 29}, - [2879] = {.lex_state = 307, .external_lex_state = 59}, - [2880] = {.lex_state = 271, .external_lex_state = 60}, - [2881] = {.lex_state = 273, .external_lex_state = 65}, - [2882] = {.lex_state = 273, .external_lex_state = 65}, - [2883] = {.lex_state = 273, .external_lex_state = 65}, - [2884] = {.lex_state = 298, .external_lex_state = 29}, - [2885] = {.lex_state = 273, .external_lex_state = 58}, - [2886] = {.lex_state = 298, .external_lex_state = 29}, - [2887] = {.lex_state = 175, .external_lex_state = 66}, - [2888] = {.lex_state = 175, .external_lex_state = 66}, - [2889] = {.lex_state = 273, .external_lex_state = 45}, - [2890] = {.lex_state = 271, .external_lex_state = 60}, - [2891] = {.lex_state = 273, .external_lex_state = 58}, - [2892] = {.lex_state = 273, .external_lex_state = 58}, - [2893] = {.lex_state = 273, .external_lex_state = 58}, - [2894] = {.lex_state = 271, .external_lex_state = 60}, - [2895] = {.lex_state = 178, .external_lex_state = 63}, - [2896] = {.lex_state = 178, .external_lex_state = 63}, - [2897] = {.lex_state = 273, .external_lex_state = 45}, - [2898] = {.lex_state = 271, .external_lex_state = 60}, - [2899] = {.lex_state = 271, .external_lex_state = 60}, - [2900] = {.lex_state = 273, .external_lex_state = 45}, - [2901] = {.lex_state = 307, .external_lex_state = 59}, - [2902] = {.lex_state = 178, .external_lex_state = 63}, - [2903] = {.lex_state = 178, .external_lex_state = 63}, - [2904] = {.lex_state = 307, .external_lex_state = 59}, - [2905] = {.lex_state = 298, .external_lex_state = 29}, - [2906] = {.lex_state = 307, .external_lex_state = 59}, - [2907] = {.lex_state = 307, .external_lex_state = 59}, - [2908] = {.lex_state = 273, .external_lex_state = 58}, - [2909] = {.lex_state = 273, .external_lex_state = 58}, - [2910] = {.lex_state = 273, .external_lex_state = 58}, - [2911] = {.lex_state = 307, .external_lex_state = 59}, - [2912] = {.lex_state = 308, .external_lex_state = 34}, - [2913] = {.lex_state = 298, .external_lex_state = 29}, - [2914] = {.lex_state = 298, .external_lex_state = 34}, - [2915] = {.lex_state = 271, .external_lex_state = 60}, - [2916] = {.lex_state = 271, .external_lex_state = 60}, - [2917] = {.lex_state = 271, .external_lex_state = 60}, - [2918] = {.lex_state = 307, .external_lex_state = 59}, - [2919] = {.lex_state = 307, .external_lex_state = 59}, - [2920] = {.lex_state = 307, .external_lex_state = 59}, - [2921] = {.lex_state = 271, .external_lex_state = 60}, - [2922] = {.lex_state = 271, .external_lex_state = 60}, - [2923] = {.lex_state = 271, .external_lex_state = 60}, - [2924] = {.lex_state = 273, .external_lex_state = 45}, - [2925] = {.lex_state = 273, .external_lex_state = 45}, - [2926] = {.lex_state = 271, .external_lex_state = 60}, - [2927] = {.lex_state = 277, .external_lex_state = 42}, - [2928] = {.lex_state = 278, .external_lex_state = 42}, - [2929] = {.lex_state = 271, .external_lex_state = 60}, - [2930] = {.lex_state = 271, .external_lex_state = 60}, - [2931] = {.lex_state = 271, .external_lex_state = 60}, - [2932] = {.lex_state = 271, .external_lex_state = 60}, - [2933] = {.lex_state = 273, .external_lex_state = 45}, - [2934] = {.lex_state = 298, .external_lex_state = 29}, - [2935] = {.lex_state = 308, .external_lex_state = 29}, - [2936] = {.lex_state = 271, .external_lex_state = 60}, - [2937] = {.lex_state = 271, .external_lex_state = 60}, - [2938] = {.lex_state = 271, .external_lex_state = 60}, - [2939] = {.lex_state = 308, .external_lex_state = 34}, - [2940] = {.lex_state = 298, .external_lex_state = 29}, - [2941] = {.lex_state = 298, .external_lex_state = 29}, - [2942] = {.lex_state = 271, .external_lex_state = 42}, - [2943] = {.lex_state = 271, .external_lex_state = 42}, - [2944] = {.lex_state = 311, .external_lex_state = 67}, - [2945] = {.lex_state = 275, .external_lex_state = 60}, - [2946] = {.lex_state = 64, .external_lex_state = 64}, - [2947] = {.lex_state = 64, .external_lex_state = 64}, - [2948] = {.lex_state = 64, .external_lex_state = 64}, - [2949] = {.lex_state = 279, .external_lex_state = 60}, - [2950] = {.lex_state = 273, .external_lex_state = 48}, - [2951] = {.lex_state = 273, .external_lex_state = 48}, - [2952] = {.lex_state = 64, .external_lex_state = 64}, - [2953] = {.lex_state = 273, .external_lex_state = 48}, - [2954] = {.lex_state = 273, .external_lex_state = 42}, - [2955] = {.lex_state = 271, .external_lex_state = 42}, - [2956] = {.lex_state = 64, .external_lex_state = 64}, - [2957] = {.lex_state = 273, .external_lex_state = 48}, - [2958] = {.lex_state = 273, .external_lex_state = 48}, - [2959] = {.lex_state = 273, .external_lex_state = 48}, - [2960] = {.lex_state = 273, .external_lex_state = 48}, - [2961] = {.lex_state = 273, .external_lex_state = 48}, - [2962] = {.lex_state = 273, .external_lex_state = 48}, - [2963] = {.lex_state = 273, .external_lex_state = 48}, - [2964] = {.lex_state = 273, .external_lex_state = 48}, - [2965] = {.lex_state = 64, .external_lex_state = 64}, - [2966] = {.lex_state = 273, .external_lex_state = 48}, - [2967] = {.lex_state = 271, .external_lex_state = 42}, - [2968] = {.lex_state = 271, .external_lex_state = 42}, - [2969] = {.lex_state = 271, .external_lex_state = 42}, - [2970] = {.lex_state = 271, .external_lex_state = 42}, - [2971] = {.lex_state = 271, .external_lex_state = 42}, - [2972] = {.lex_state = 271, .external_lex_state = 42}, - [2973] = {.lex_state = 271, .external_lex_state = 42}, - [2974] = {.lex_state = 271, .external_lex_state = 42}, - [2975] = {.lex_state = 271, .external_lex_state = 42}, - [2976] = {.lex_state = 271, .external_lex_state = 42}, - [2977] = {.lex_state = 271, .external_lex_state = 42}, - [2978] = {.lex_state = 271, .external_lex_state = 42}, - [2979] = {.lex_state = 271, .external_lex_state = 42}, - [2980] = {.lex_state = 308, .external_lex_state = 34}, - [2981] = {.lex_state = 273, .external_lex_state = 48}, - [2982] = {.lex_state = 311, .external_lex_state = 67}, - [2983] = {.lex_state = 273, .external_lex_state = 68}, - [2984] = {.lex_state = 273, .external_lex_state = 68}, - [2985] = {.lex_state = 273, .external_lex_state = 48}, - [2986] = {.lex_state = 273, .external_lex_state = 48}, - [2987] = {.lex_state = 271, .external_lex_state = 42}, - [2988] = {.lex_state = 273, .external_lex_state = 48}, - [2989] = {.lex_state = 273, .external_lex_state = 48}, - [2990] = {.lex_state = 273, .external_lex_state = 48}, - [2991] = {.lex_state = 64, .external_lex_state = 64}, - [2992] = {.lex_state = 64, .external_lex_state = 64}, - [2993] = {.lex_state = 64, .external_lex_state = 64}, - [2994] = {.lex_state = 271, .external_lex_state = 42}, - [2995] = {.lex_state = 271, .external_lex_state = 42}, - [2996] = {.lex_state = 271, .external_lex_state = 42}, - [2997] = {.lex_state = 64, .external_lex_state = 64}, - [2998] = {.lex_state = 273, .external_lex_state = 48}, - [2999] = {.lex_state = 64, .external_lex_state = 64}, - [3000] = {.lex_state = 271, .external_lex_state = 42}, - [3001] = {.lex_state = 271, .external_lex_state = 42}, - [3002] = {.lex_state = 271, .external_lex_state = 42}, - [3003] = {.lex_state = 271, .external_lex_state = 42}, - [3004] = {.lex_state = 271, .external_lex_state = 42}, - [3005] = {.lex_state = 64, .external_lex_state = 64}, - [3006] = {.lex_state = 273, .external_lex_state = 48}, - [3007] = {.lex_state = 271, .external_lex_state = 42}, - [3008] = {.lex_state = 271, .external_lex_state = 42}, - [3009] = {.lex_state = 273, .external_lex_state = 48}, - [3010] = {.lex_state = 271, .external_lex_state = 42}, - [3011] = {.lex_state = 273, .external_lex_state = 48}, - [3012] = {.lex_state = 273, .external_lex_state = 48}, - [3013] = {.lex_state = 271, .external_lex_state = 42}, - [3014] = {.lex_state = 271, .external_lex_state = 42}, - [3015] = {.lex_state = 181, .external_lex_state = 66}, - [3016] = {.lex_state = 181, .external_lex_state = 66}, - [3017] = {.lex_state = 271, .external_lex_state = 60}, - [3018] = {.lex_state = 181, .external_lex_state = 66}, - [3019] = {.lex_state = 64, .external_lex_state = 64}, - [3020] = {.lex_state = 64, .external_lex_state = 64}, - [3021] = {.lex_state = 64, .external_lex_state = 64}, - [3022] = {.lex_state = 271, .external_lex_state = 42}, - [3023] = {.lex_state = 271, .external_lex_state = 42}, - [3024] = {.lex_state = 64, .external_lex_state = 64}, - [3025] = {.lex_state = 64, .external_lex_state = 64}, - [3026] = {.lex_state = 64, .external_lex_state = 64}, - [3027] = {.lex_state = 181, .external_lex_state = 66}, - [3028] = {.lex_state = 273, .external_lex_state = 68}, - [3029] = {.lex_state = 273, .external_lex_state = 68}, - [3030] = {.lex_state = 271, .external_lex_state = 42}, - [3031] = {.lex_state = 274, .external_lex_state = 60}, - [3032] = {.lex_state = 311, .external_lex_state = 67}, - [3033] = {.lex_state = 271, .external_lex_state = 42}, - [3034] = {.lex_state = 271, .external_lex_state = 42}, - [3035] = {.lex_state = 275, .external_lex_state = 69}, - [3036] = {.lex_state = 64, .external_lex_state = 64}, - [3037] = {.lex_state = 271, .external_lex_state = 42}, - [3038] = {.lex_state = 311, .external_lex_state = 67}, - [3039] = {.lex_state = 271, .external_lex_state = 42}, - [3040] = {.lex_state = 271, .external_lex_state = 42}, - [3041] = {.lex_state = 271, .external_lex_state = 42}, - [3042] = {.lex_state = 273, .external_lex_state = 42}, - [3043] = {.lex_state = 271, .external_lex_state = 42}, - [3044] = {.lex_state = 184, .external_lex_state = 66}, - [3045] = {.lex_state = 64, .external_lex_state = 64}, - [3046] = {.lex_state = 271, .external_lex_state = 42}, - [3047] = {.lex_state = 184, .external_lex_state = 66}, - [3048] = {.lex_state = 271, .external_lex_state = 42}, - [3049] = {.lex_state = 273, .external_lex_state = 48}, - [3050] = {.lex_state = 271, .external_lex_state = 42}, - [3051] = {.lex_state = 271, .external_lex_state = 42}, - [3052] = {.lex_state = 273, .external_lex_state = 48}, - [3053] = {.lex_state = 273, .external_lex_state = 42}, - [3054] = {.lex_state = 271, .external_lex_state = 42}, - [3055] = {.lex_state = 298, .external_lex_state = 34}, - [3056] = {.lex_state = 64, .external_lex_state = 64}, - [3057] = {.lex_state = 311, .external_lex_state = 67}, - [3058] = {.lex_state = 273, .external_lex_state = 42}, - [3059] = {.lex_state = 271, .external_lex_state = 42}, - [3060] = {.lex_state = 271, .external_lex_state = 42}, - [3061] = {.lex_state = 271, .external_lex_state = 42}, - [3062] = {.lex_state = 271, .external_lex_state = 42}, - [3063] = {.lex_state = 271, .external_lex_state = 42}, - [3064] = {.lex_state = 271, .external_lex_state = 42}, - [3065] = {.lex_state = 306, .external_lex_state = 34}, - [3066] = {.lex_state = 311, .external_lex_state = 67}, - [3067] = {.lex_state = 271, .external_lex_state = 42}, - [3068] = {.lex_state = 271, .external_lex_state = 42}, - [3069] = {.lex_state = 273, .external_lex_state = 62}, - [3070] = {.lex_state = 311, .external_lex_state = 67}, - [3071] = {.lex_state = 273, .external_lex_state = 48}, - [3072] = {.lex_state = 273, .external_lex_state = 62}, - [3073] = {.lex_state = 271, .external_lex_state = 42}, - [3074] = {.lex_state = 64, .external_lex_state = 64}, - [3075] = {.lex_state = 64, .external_lex_state = 64}, - [3076] = {.lex_state = 64, .external_lex_state = 64}, - [3077] = {.lex_state = 273, .external_lex_state = 42}, - [3078] = {.lex_state = 273, .external_lex_state = 42}, - [3079] = {.lex_state = 273, .external_lex_state = 42}, - [3080] = {.lex_state = 273, .external_lex_state = 42}, - [3081] = {.lex_state = 273, .external_lex_state = 42}, - [3082] = {.lex_state = 273, .external_lex_state = 42}, - [3083] = {.lex_state = 273, .external_lex_state = 42}, - [3084] = {.lex_state = 273, .external_lex_state = 42}, - [3085] = {.lex_state = 273, .external_lex_state = 48}, - [3086] = {.lex_state = 273, .external_lex_state = 42}, - [3087] = {.lex_state = 271, .external_lex_state = 42}, - [3088] = {.lex_state = 273, .external_lex_state = 42}, - [3089] = {.lex_state = 271, .external_lex_state = 42}, - [3090] = {.lex_state = 273, .external_lex_state = 42}, - [3091] = {.lex_state = 273, .external_lex_state = 42}, - [3092] = {.lex_state = 236, .external_lex_state = 70}, - [3093] = {.lex_state = 236, .external_lex_state = 70}, - [3094] = {.lex_state = 273, .external_lex_state = 42}, - [3095] = {.lex_state = 273, .external_lex_state = 42}, - [3096] = {.lex_state = 271, .external_lex_state = 42}, - [3097] = {.lex_state = 273, .external_lex_state = 42}, - [3098] = {.lex_state = 273, .external_lex_state = 42}, - [3099] = {.lex_state = 273, .external_lex_state = 62}, - [3100] = {.lex_state = 273, .external_lex_state = 42}, - [3101] = {.lex_state = 271, .external_lex_state = 42}, - [3102] = {.lex_state = 271, .external_lex_state = 42}, - [3103] = {.lex_state = 273, .external_lex_state = 62}, - [3104] = {.lex_state = 271, .external_lex_state = 42}, - [3105] = {.lex_state = 311, .external_lex_state = 67}, - [3106] = {.lex_state = 311, .external_lex_state = 67}, - [3107] = {.lex_state = 273, .external_lex_state = 42}, - [3108] = {.lex_state = 271, .external_lex_state = 42}, - [3109] = {.lex_state = 311, .external_lex_state = 67}, - [3110] = {.lex_state = 236, .external_lex_state = 70}, - [3111] = {.lex_state = 273, .external_lex_state = 42}, - [3112] = {.lex_state = 271, .external_lex_state = 42}, - [3113] = {.lex_state = 64, .external_lex_state = 64}, - [3114] = {.lex_state = 306, .external_lex_state = 34}, - [3115] = {.lex_state = 236, .external_lex_state = 70}, - [3116] = {.lex_state = 64, .external_lex_state = 64}, - [3117] = {.lex_state = 236, .external_lex_state = 70}, - [3118] = {.lex_state = 64, .external_lex_state = 64}, - [3119] = {.lex_state = 64, .external_lex_state = 64}, - [3120] = {.lex_state = 236, .external_lex_state = 70}, - [3121] = {.lex_state = 273, .external_lex_state = 42}, - [3122] = {.lex_state = 311, .external_lex_state = 67}, - [3123] = {.lex_state = 271, .external_lex_state = 42}, - [3124] = {.lex_state = 273, .external_lex_state = 48}, - [3125] = {.lex_state = 271, .external_lex_state = 42}, - [3126] = {.lex_state = 273, .external_lex_state = 42}, - [3127] = {.lex_state = 296, .external_lex_state = 36}, - [3128] = {.lex_state = 271, .external_lex_state = 42}, - [3129] = {.lex_state = 271, .external_lex_state = 42}, - [3130] = {.lex_state = 273, .external_lex_state = 42}, - [3131] = {.lex_state = 273, .external_lex_state = 48}, - [3132] = {.lex_state = 187, .external_lex_state = 66}, - [3133] = {.lex_state = 311, .external_lex_state = 67}, - [3134] = {.lex_state = 187, .external_lex_state = 66}, - [3135] = {.lex_state = 311, .external_lex_state = 67}, - [3136] = {.lex_state = 311, .external_lex_state = 67}, - [3137] = {.lex_state = 311, .external_lex_state = 67}, - [3138] = {.lex_state = 273, .external_lex_state = 42}, - [3139] = {.lex_state = 271, .external_lex_state = 42}, - [3140] = {.lex_state = 273, .external_lex_state = 48}, - [3141] = {.lex_state = 271, .external_lex_state = 42}, - [3142] = {.lex_state = 273, .external_lex_state = 42}, - [3143] = {.lex_state = 271, .external_lex_state = 42}, - [3144] = {.lex_state = 271, .external_lex_state = 42}, - [3145] = {.lex_state = 273, .external_lex_state = 48}, - [3146] = {.lex_state = 273, .external_lex_state = 42}, - [3147] = {.lex_state = 271, .external_lex_state = 42}, - [3148] = {.lex_state = 271, .external_lex_state = 42}, - [3149] = {.lex_state = 305, .external_lex_state = 33}, - [3150] = {.lex_state = 271, .external_lex_state = 42}, - [3151] = {.lex_state = 273, .external_lex_state = 42}, - [3152] = {.lex_state = 273, .external_lex_state = 48}, - [3153] = {.lex_state = 271, .external_lex_state = 42}, - [3154] = {.lex_state = 271, .external_lex_state = 42}, - [3155] = {.lex_state = 273, .external_lex_state = 48}, - [3156] = {.lex_state = 271, .external_lex_state = 42}, - [3157] = {.lex_state = 64, .external_lex_state = 64}, - [3158] = {.lex_state = 271, .external_lex_state = 42}, - [3159] = {.lex_state = 64, .external_lex_state = 64}, - [3160] = {.lex_state = 64, .external_lex_state = 64}, - [3161] = {.lex_state = 64, .external_lex_state = 64}, - [3162] = {.lex_state = 529, .external_lex_state = 66}, - [3163] = {.lex_state = 529, .external_lex_state = 66}, - [3164] = {.lex_state = 311, .external_lex_state = 67}, - [3165] = {.lex_state = 273, .external_lex_state = 69}, - [3166] = {.lex_state = 273, .external_lex_state = 69}, - [3167] = {.lex_state = 279, .external_lex_state = 60}, - [3168] = {.lex_state = 273, .external_lex_state = 60}, - [3169] = {.lex_state = 273, .external_lex_state = 60}, - [3170] = {.lex_state = 279, .external_lex_state = 60}, - [3171] = {.lex_state = 279, .external_lex_state = 60}, - [3172] = {.lex_state = 279, .external_lex_state = 60}, - [3173] = {.lex_state = 279, .external_lex_state = 60}, - [3174] = {.lex_state = 279, .external_lex_state = 60}, - [3175] = {.lex_state = 236, .external_lex_state = 70}, - [3176] = {.lex_state = 279, .external_lex_state = 60}, - [3177] = {.lex_state = 236, .external_lex_state = 70}, - [3178] = {.lex_state = 273, .external_lex_state = 60}, - [3179] = {.lex_state = 273, .external_lex_state = 60}, - [3180] = {.lex_state = 273, .external_lex_state = 60}, - [3181] = {.lex_state = 236, .external_lex_state = 70}, - [3182] = {.lex_state = 273, .external_lex_state = 69}, - [3183] = {.lex_state = 271, .external_lex_state = 42}, - [3184] = {.lex_state = 236, .external_lex_state = 70}, - [3185] = {.lex_state = 273, .external_lex_state = 69}, - [3186] = {.lex_state = 193, .external_lex_state = 66}, - [3187] = {.lex_state = 193, .external_lex_state = 66}, - [3188] = {.lex_state = 273, .external_lex_state = 60}, - [3189] = {.lex_state = 279, .external_lex_state = 60}, - [3190] = {.lex_state = 273, .external_lex_state = 69}, - [3191] = {.lex_state = 273, .external_lex_state = 69}, - [3192] = {.lex_state = 273, .external_lex_state = 69}, - [3193] = {.lex_state = 271, .external_lex_state = 42}, - [3194] = {.lex_state = 273, .external_lex_state = 69}, - [3195] = {.lex_state = 271, .external_lex_state = 60}, - [3196] = {.lex_state = 279, .external_lex_state = 60}, - [3197] = {.lex_state = 271, .external_lex_state = 42}, - [3198] = {.lex_state = 279, .external_lex_state = 60}, - [3199] = {.lex_state = 279, .external_lex_state = 60}, - [3200] = {.lex_state = 279, .external_lex_state = 60}, - [3201] = {.lex_state = 279, .external_lex_state = 60}, - [3202] = {.lex_state = 279, .external_lex_state = 60}, - [3203] = {.lex_state = 273, .external_lex_state = 69}, - [3204] = {.lex_state = 273, .external_lex_state = 69}, - [3205] = {.lex_state = 279, .external_lex_state = 60}, - [3206] = {.lex_state = 306, .external_lex_state = 34}, - [3207] = {.lex_state = 279, .external_lex_state = 60}, - [3208] = {.lex_state = 273, .external_lex_state = 60}, - [3209] = {.lex_state = 273, .external_lex_state = 69}, - [3210] = {.lex_state = 279, .external_lex_state = 60}, - [3211] = {.lex_state = 273, .external_lex_state = 69}, - [3212] = {.lex_state = 273, .external_lex_state = 69}, - [3213] = {.lex_state = 279, .external_lex_state = 60}, - [3214] = {.lex_state = 279, .external_lex_state = 60}, - [3215] = {.lex_state = 273, .external_lex_state = 69}, - [3216] = {.lex_state = 279, .external_lex_state = 60}, - [3217] = {.lex_state = 279, .external_lex_state = 60}, - [3218] = {.lex_state = 279, .external_lex_state = 60}, - [3219] = {.lex_state = 273, .external_lex_state = 60}, - [3220] = {.lex_state = 236, .external_lex_state = 70}, - [3221] = {.lex_state = 236, .external_lex_state = 70}, - [3222] = {.lex_state = 273, .external_lex_state = 69}, - [3223] = {.lex_state = 273, .external_lex_state = 69}, - [3224] = {.lex_state = 273, .external_lex_state = 69}, - [3225] = {.lex_state = 236, .external_lex_state = 70}, - [3226] = {.lex_state = 236, .external_lex_state = 70}, - [3227] = {.lex_state = 532, .external_lex_state = 66}, - [3228] = {.lex_state = 279, .external_lex_state = 60}, - [3229] = {.lex_state = 236, .external_lex_state = 70}, - [3230] = {.lex_state = 532, .external_lex_state = 66}, - [3231] = {.lex_state = 273, .external_lex_state = 69}, - [3232] = {.lex_state = 273, .external_lex_state = 69}, - [3233] = {.lex_state = 298, .external_lex_state = 47}, - [3234] = {.lex_state = 273, .external_lex_state = 69}, - [3235] = {.lex_state = 273, .external_lex_state = 69}, - [3236] = {.lex_state = 298, .external_lex_state = 47}, - [3237] = {.lex_state = 199, .external_lex_state = 66}, - [3238] = {.lex_state = 199, .external_lex_state = 66}, - [3239] = {.lex_state = 273, .external_lex_state = 69}, - [3240] = {.lex_state = 532, .external_lex_state = 66}, - [3241] = {.lex_state = 273, .external_lex_state = 69}, - [3242] = {.lex_state = 273, .external_lex_state = 60}, - [3243] = {.lex_state = 532, .external_lex_state = 66}, - [3244] = {.lex_state = 273, .external_lex_state = 69}, - [3245] = {.lex_state = 279, .external_lex_state = 60}, - [3246] = {.lex_state = 273, .external_lex_state = 60}, - [3247] = {.lex_state = 273, .external_lex_state = 60}, - [3248] = {.lex_state = 273, .external_lex_state = 60}, - [3249] = {.lex_state = 273, .external_lex_state = 60}, - [3250] = {.lex_state = 236, .external_lex_state = 70}, - [3251] = {.lex_state = 273, .external_lex_state = 69}, - [3252] = {.lex_state = 273, .external_lex_state = 69}, - [3253] = {.lex_state = 236, .external_lex_state = 70}, - [3254] = {.lex_state = 279, .external_lex_state = 60}, - [3255] = {.lex_state = 273, .external_lex_state = 60}, - [3256] = {.lex_state = 236, .external_lex_state = 70}, - [3257] = {.lex_state = 273, .external_lex_state = 69}, - [3258] = {.lex_state = 273, .external_lex_state = 60}, - [3259] = {.lex_state = 273, .external_lex_state = 60}, - [3260] = {.lex_state = 273, .external_lex_state = 69}, - [3261] = {.lex_state = 273, .external_lex_state = 60}, - [3262] = {.lex_state = 273, .external_lex_state = 60}, - [3263] = {.lex_state = 273, .external_lex_state = 60}, - [3264] = {.lex_state = 273, .external_lex_state = 60}, - [3265] = {.lex_state = 273, .external_lex_state = 60}, - [3266] = {.lex_state = 273, .external_lex_state = 60}, - [3267] = {.lex_state = 273, .external_lex_state = 69}, - [3268] = {.lex_state = 273, .external_lex_state = 69}, - [3269] = {.lex_state = 193, .external_lex_state = 66}, - [3270] = {.lex_state = 193, .external_lex_state = 66}, - [3271] = {.lex_state = 273, .external_lex_state = 60}, - [3272] = {.lex_state = 279, .external_lex_state = 60}, - [3273] = {.lex_state = 273, .external_lex_state = 69}, - [3274] = {.lex_state = 273, .external_lex_state = 69}, - [3275] = {.lex_state = 274, .external_lex_state = 60}, - [3276] = {.lex_state = 279, .external_lex_state = 60}, - [3277] = {.lex_state = 273, .external_lex_state = 60}, - [3278] = {.lex_state = 273, .external_lex_state = 60}, - [3279] = {.lex_state = 273, .external_lex_state = 69}, - [3280] = {.lex_state = 274, .external_lex_state = 60}, - [3281] = {.lex_state = 273, .external_lex_state = 60}, - [3282] = {.lex_state = 274, .external_lex_state = 60}, - [3283] = {.lex_state = 273, .external_lex_state = 60}, - [3284] = {.lex_state = 273, .external_lex_state = 69}, - [3285] = {.lex_state = 279, .external_lex_state = 60}, - [3286] = {.lex_state = 279, .external_lex_state = 60}, - [3287] = {.lex_state = 273, .external_lex_state = 60}, - [3288] = {.lex_state = 273, .external_lex_state = 69}, - [3289] = {.lex_state = 273, .external_lex_state = 69}, - [3290] = {.lex_state = 279, .external_lex_state = 60}, - [3291] = {.lex_state = 274, .external_lex_state = 60}, - [3292] = {.lex_state = 279, .external_lex_state = 60}, - [3293] = {.lex_state = 273, .external_lex_state = 69}, - [3294] = {.lex_state = 273, .external_lex_state = 60}, - [3295] = {.lex_state = 273, .external_lex_state = 60}, - [3296] = {.lex_state = 273, .external_lex_state = 69}, - [3297] = {.lex_state = 279, .external_lex_state = 60}, - [3298] = {.lex_state = 529, .external_lex_state = 66}, - [3299] = {.lex_state = 273, .external_lex_state = 69}, - [3300] = {.lex_state = 274, .external_lex_state = 60}, - [3301] = {.lex_state = 273, .external_lex_state = 69}, - [3302] = {.lex_state = 273, .external_lex_state = 69}, - [3303] = {.lex_state = 273, .external_lex_state = 69}, - [3304] = {.lex_state = 273, .external_lex_state = 69}, - [3305] = {.lex_state = 271, .external_lex_state = 42}, - [3306] = {.lex_state = 274, .external_lex_state = 60}, - [3307] = {.lex_state = 274, .external_lex_state = 60}, - [3308] = {.lex_state = 273, .external_lex_state = 69}, - [3309] = {.lex_state = 273, .external_lex_state = 69}, - [3310] = {.lex_state = 298, .external_lex_state = 47}, - [3311] = {.lex_state = 236, .external_lex_state = 70}, - [3312] = {.lex_state = 274, .external_lex_state = 60}, - [3313] = {.lex_state = 529, .external_lex_state = 66}, - [3314] = {.lex_state = 271, .external_lex_state = 42}, - [3315] = {.lex_state = 273, .external_lex_state = 69}, - [3316] = {.lex_state = 273, .external_lex_state = 69}, - [3317] = {.lex_state = 273, .external_lex_state = 69}, - [3318] = {.lex_state = 271, .external_lex_state = 42}, - [3319] = {.lex_state = 271, .external_lex_state = 42}, - [3320] = {.lex_state = 273, .external_lex_state = 69}, - [3321] = {.lex_state = 273, .external_lex_state = 69}, - [3322] = {.lex_state = 274, .external_lex_state = 60}, - [3323] = {.lex_state = 271, .external_lex_state = 42}, - [3324] = {.lex_state = 273, .external_lex_state = 69}, - [3325] = {.lex_state = 273, .external_lex_state = 69}, - [3326] = {.lex_state = 273, .external_lex_state = 69}, - [3327] = {.lex_state = 271, .external_lex_state = 42}, - [3328] = {.lex_state = 273, .external_lex_state = 69}, - [3329] = {.lex_state = 273, .external_lex_state = 69}, - [3330] = {.lex_state = 271, .external_lex_state = 42}, - [3331] = {.lex_state = 236, .external_lex_state = 70}, - [3332] = {.lex_state = 271, .external_lex_state = 42}, - [3333] = {.lex_state = 271, .external_lex_state = 42}, - [3334] = {.lex_state = 273, .external_lex_state = 69}, - [3335] = {.lex_state = 271, .external_lex_state = 42}, - [3336] = {.lex_state = 273, .external_lex_state = 69}, - [3337] = {.lex_state = 273, .external_lex_state = 69}, - [3338] = {.lex_state = 273, .external_lex_state = 69}, - [3339] = {.lex_state = 273, .external_lex_state = 69}, - [3340] = {.lex_state = 273, .external_lex_state = 69}, - [3341] = {.lex_state = 273, .external_lex_state = 69}, - [3342] = {.lex_state = 273, .external_lex_state = 69}, - [3343] = {.lex_state = 273, .external_lex_state = 69}, - [3344] = {.lex_state = 273, .external_lex_state = 69}, - [3345] = {.lex_state = 271, .external_lex_state = 42}, - [3346] = {.lex_state = 273, .external_lex_state = 69}, - [3347] = {.lex_state = 271, .external_lex_state = 42}, - [3348] = {.lex_state = 273, .external_lex_state = 69}, - [3349] = {.lex_state = 273, .external_lex_state = 69}, - [3350] = {.lex_state = 271, .external_lex_state = 60}, - [3351] = {.lex_state = 271, .external_lex_state = 42}, - [3352] = {.lex_state = 274, .external_lex_state = 60}, - [3353] = {.lex_state = 274, .external_lex_state = 60}, - [3354] = {.lex_state = 274, .external_lex_state = 60}, - [3355] = {.lex_state = 273, .external_lex_state = 69}, - [3356] = {.lex_state = 271, .external_lex_state = 42}, - [3357] = {.lex_state = 273, .external_lex_state = 69}, - [3358] = {.lex_state = 271, .external_lex_state = 42}, - [3359] = {.lex_state = 273, .external_lex_state = 60}, - [3360] = {.lex_state = 236, .external_lex_state = 70}, - [3361] = {.lex_state = 273, .external_lex_state = 60}, - [3362] = {.lex_state = 273, .external_lex_state = 69}, - [3363] = {.lex_state = 273, .external_lex_state = 69}, - [3364] = {.lex_state = 273, .external_lex_state = 69}, - [3365] = {.lex_state = 273, .external_lex_state = 60}, - [3366] = {.lex_state = 273, .external_lex_state = 69}, - [3367] = {.lex_state = 273, .external_lex_state = 60}, - [3368] = {.lex_state = 273, .external_lex_state = 60}, - [3369] = {.lex_state = 273, .external_lex_state = 69}, - [3370] = {.lex_state = 273, .external_lex_state = 69}, - [3371] = {.lex_state = 273, .external_lex_state = 69}, - [3372] = {.lex_state = 273, .external_lex_state = 69}, - [3373] = {.lex_state = 273, .external_lex_state = 69}, - [3374] = {.lex_state = 273, .external_lex_state = 69}, - [3375] = {.lex_state = 273, .external_lex_state = 60}, - [3376] = {.lex_state = 236, .external_lex_state = 70}, - [3377] = {.lex_state = 298, .external_lex_state = 47}, - [3378] = {.lex_state = 298, .external_lex_state = 47}, - [3379] = {.lex_state = 273, .external_lex_state = 69}, - [3380] = {.lex_state = 274, .external_lex_state = 60}, - [3381] = {.lex_state = 274, .external_lex_state = 60}, - [3382] = {.lex_state = 298, .external_lex_state = 47}, - [3383] = {.lex_state = 298, .external_lex_state = 47}, - [3384] = {.lex_state = 274, .external_lex_state = 60}, - [3385] = {.lex_state = 298, .external_lex_state = 47}, - [3386] = {.lex_state = 298, .external_lex_state = 47}, - [3387] = {.lex_state = 274, .external_lex_state = 60}, - [3388] = {.lex_state = 298, .external_lex_state = 47}, - [3389] = {.lex_state = 298, .external_lex_state = 47}, - [3390] = {.lex_state = 274, .external_lex_state = 60}, - [3391] = {.lex_state = 273, .external_lex_state = 69}, - [3392] = {.lex_state = 274, .external_lex_state = 60}, - [3393] = {.lex_state = 236, .external_lex_state = 70}, - [3394] = {.lex_state = 274, .external_lex_state = 60}, - [3395] = {.lex_state = 274, .external_lex_state = 60}, - [3396] = {.lex_state = 273, .external_lex_state = 69}, - [3397] = {.lex_state = 271, .external_lex_state = 42}, - [3398] = {.lex_state = 273, .external_lex_state = 69}, - [3399] = {.lex_state = 274, .external_lex_state = 60}, - [3400] = {.lex_state = 273, .external_lex_state = 69}, - [3401] = {.lex_state = 271, .external_lex_state = 60}, - [3402] = {.lex_state = 274, .external_lex_state = 60}, - [3403] = {.lex_state = 274, .external_lex_state = 60}, - [3404] = {.lex_state = 274, .external_lex_state = 60}, - [3405] = {.lex_state = 274, .external_lex_state = 60}, - [3406] = {.lex_state = 274, .external_lex_state = 60}, - [3407] = {.lex_state = 298, .external_lex_state = 47}, - [3408] = {.lex_state = 273, .external_lex_state = 60}, - [3409] = {.lex_state = 273, .external_lex_state = 69}, - [3410] = {.lex_state = 273, .external_lex_state = 69}, - [3411] = {.lex_state = 298, .external_lex_state = 47}, - [3412] = {.lex_state = 273, .external_lex_state = 69}, - [3413] = {.lex_state = 273, .external_lex_state = 69}, - [3414] = {.lex_state = 199, .external_lex_state = 66}, - [3415] = {.lex_state = 236, .external_lex_state = 70}, - [3416] = {.lex_state = 298, .external_lex_state = 47}, - [3417] = {.lex_state = 199, .external_lex_state = 66}, - [3418] = {.lex_state = 236, .external_lex_state = 70}, - [3419] = {.lex_state = 298, .external_lex_state = 47}, - [3420] = {.lex_state = 298, .external_lex_state = 47}, - [3421] = {.lex_state = 273, .external_lex_state = 69}, - [3422] = {.lex_state = 298, .external_lex_state = 47}, - [3423] = {.lex_state = 298, .external_lex_state = 47}, - [3424] = {.lex_state = 298, .external_lex_state = 47}, - [3425] = {.lex_state = 273, .external_lex_state = 69}, - [3426] = {.lex_state = 273, .external_lex_state = 69}, - [3427] = {.lex_state = 273, .external_lex_state = 60}, - [3428] = {.lex_state = 273, .external_lex_state = 69}, - [3429] = {.lex_state = 273, .external_lex_state = 69}, - [3430] = {.lex_state = 273, .external_lex_state = 69}, - [3431] = {.lex_state = 273, .external_lex_state = 69}, - [3432] = {.lex_state = 273, .external_lex_state = 69}, - [3433] = {.lex_state = 273, .external_lex_state = 69}, - [3434] = {.lex_state = 273, .external_lex_state = 69}, - [3435] = {.lex_state = 273, .external_lex_state = 69}, - [3436] = {.lex_state = 273, .external_lex_state = 69}, - [3437] = {.lex_state = 298, .external_lex_state = 47}, - [3438] = {.lex_state = 298, .external_lex_state = 47}, - [3439] = {.lex_state = 273, .external_lex_state = 60}, - [3440] = {.lex_state = 298, .external_lex_state = 47}, - [3441] = {.lex_state = 274, .external_lex_state = 60}, - [3442] = {.lex_state = 274, .external_lex_state = 60}, - [3443] = {.lex_state = 274, .external_lex_state = 60}, - [3444] = {.lex_state = 274, .external_lex_state = 60}, - [3445] = {.lex_state = 273, .external_lex_state = 60}, - [3446] = {.lex_state = 273, .external_lex_state = 69}, - [3447] = {.lex_state = 273, .external_lex_state = 69}, - [3448] = {.lex_state = 273, .external_lex_state = 60}, - [3449] = {.lex_state = 273, .external_lex_state = 69}, - [3450] = {.lex_state = 273, .external_lex_state = 69}, - [3451] = {.lex_state = 298, .external_lex_state = 47}, - [3452] = {.lex_state = 298, .external_lex_state = 47}, - [3453] = {.lex_state = 273, .external_lex_state = 60}, - [3454] = {.lex_state = 274, .external_lex_state = 60}, - [3455] = {.lex_state = 274, .external_lex_state = 60}, - [3456] = {.lex_state = 297, .external_lex_state = 71}, - [3457] = {.lex_state = 228, .external_lex_state = 72}, - [3458] = {.lex_state = 237, .external_lex_state = 73}, - [3459] = {.lex_state = 297, .external_lex_state = 71}, - [3460] = {.lex_state = 237, .external_lex_state = 73}, - [3461] = {.lex_state = 297, .external_lex_state = 71}, - [3462] = {.lex_state = 310, .external_lex_state = 74}, - [3463] = {.lex_state = 532, .external_lex_state = 66}, - [3464] = {.lex_state = 532, .external_lex_state = 66}, - [3465] = {.lex_state = 297, .external_lex_state = 71}, - [3466] = {.lex_state = 297, .external_lex_state = 71}, - [3467] = {.lex_state = 297, .external_lex_state = 71}, - [3468] = {.lex_state = 297, .external_lex_state = 71}, - [3469] = {.lex_state = 213, .external_lex_state = 26}, - [3470] = {.lex_state = 310, .external_lex_state = 74}, - [3471] = {.lex_state = 297, .external_lex_state = 71}, - [3472] = {.lex_state = 297, .external_lex_state = 71}, - [3473] = {.lex_state = 213, .external_lex_state = 26}, - [3474] = {.lex_state = 228, .external_lex_state = 72}, - [3475] = {.lex_state = 237, .external_lex_state = 73}, - [3476] = {.lex_state = 297, .external_lex_state = 71}, - [3477] = {.lex_state = 298, .external_lex_state = 47}, - [3478] = {.lex_state = 237, .external_lex_state = 73}, - [3479] = {.lex_state = 297, .external_lex_state = 71}, - [3480] = {.lex_state = 297, .external_lex_state = 71}, - [3481] = {.lex_state = 297, .external_lex_state = 71}, - [3482] = {.lex_state = 532, .external_lex_state = 66}, - [3483] = {.lex_state = 297, .external_lex_state = 71}, - [3484] = {.lex_state = 237, .external_lex_state = 73}, - [3485] = {.lex_state = 532, .external_lex_state = 66}, - [3486] = {.lex_state = 310, .external_lex_state = 74}, - [3487] = {.lex_state = 316, .external_lex_state = 75}, - [3488] = {.lex_state = 297, .external_lex_state = 71}, - [3489] = {.lex_state = 316, .external_lex_state = 75}, - [3490] = {.lex_state = 297, .external_lex_state = 71}, - [3491] = {.lex_state = 319, .external_lex_state = 76}, - [3492] = {.lex_state = 297, .external_lex_state = 71}, - [3493] = {.lex_state = 316, .external_lex_state = 75}, - [3494] = {.lex_state = 297, .external_lex_state = 71}, - [3495] = {.lex_state = 316, .external_lex_state = 75}, - [3496] = {.lex_state = 316, .external_lex_state = 75}, - [3497] = {.lex_state = 316, .external_lex_state = 75}, - [3498] = {.lex_state = 297, .external_lex_state = 71}, - [3499] = {.lex_state = 316, .external_lex_state = 75}, - [3500] = {.lex_state = 316, .external_lex_state = 75}, - [3501] = {.lex_state = 297, .external_lex_state = 71}, - [3502] = {.lex_state = 316, .external_lex_state = 75}, - [3503] = {.lex_state = 316, .external_lex_state = 75}, - [3504] = {.lex_state = 297, .external_lex_state = 71}, - [3505] = {.lex_state = 297, .external_lex_state = 71}, - [3506] = {.lex_state = 297, .external_lex_state = 71}, - [3507] = {.lex_state = 316, .external_lex_state = 75}, - [3508] = {.lex_state = 297, .external_lex_state = 71}, - [3509] = {.lex_state = 316, .external_lex_state = 75}, - [3510] = {.lex_state = 297, .external_lex_state = 71}, - [3511] = {.lex_state = 213, .external_lex_state = 26}, - [3512] = {.lex_state = 297, .external_lex_state = 71}, - [3513] = {.lex_state = 297, .external_lex_state = 71}, - [3514] = {.lex_state = 316, .external_lex_state = 75}, - [3515] = {.lex_state = 297, .external_lex_state = 71}, - [3516] = {.lex_state = 297, .external_lex_state = 71}, - [3517] = {.lex_state = 316, .external_lex_state = 75}, - [3518] = {.lex_state = 316, .external_lex_state = 75}, - [3519] = {.lex_state = 316, .external_lex_state = 75}, - [3520] = {.lex_state = 316, .external_lex_state = 75}, - [3521] = {.lex_state = 316, .external_lex_state = 75}, - [3522] = {.lex_state = 297, .external_lex_state = 71}, - [3523] = {.lex_state = 316, .external_lex_state = 75}, - [3524] = {.lex_state = 316, .external_lex_state = 75}, - [3525] = {.lex_state = 297, .external_lex_state = 71}, - [3526] = {.lex_state = 316, .external_lex_state = 75}, - [3527] = {.lex_state = 316, .external_lex_state = 75}, - [3528] = {.lex_state = 297, .external_lex_state = 71}, - [3529] = {.lex_state = 297, .external_lex_state = 71}, - [3530] = {.lex_state = 316, .external_lex_state = 75}, - [3531] = {.lex_state = 319, .external_lex_state = 76}, - [3532] = {.lex_state = 319, .external_lex_state = 76}, - [3533] = {.lex_state = 319, .external_lex_state = 76}, - [3534] = {.lex_state = 319, .external_lex_state = 76}, - [3535] = {.lex_state = 202, .external_lex_state = 66}, - [3536] = {.lex_state = 296, .external_lex_state = 36}, - [3537] = {.lex_state = 282, .external_lex_state = 77}, - [3538] = {.lex_state = 282, .external_lex_state = 77}, - [3539] = {.lex_state = 296, .external_lex_state = 36}, - [3540] = {.lex_state = 202, .external_lex_state = 66}, - [3541] = {.lex_state = 296, .external_lex_state = 36}, - [3542] = {.lex_state = 296, .external_lex_state = 36}, - [3543] = {.lex_state = 296, .external_lex_state = 36}, - [3544] = {.lex_state = 296, .external_lex_state = 36}, - [3545] = {.lex_state = 296, .external_lex_state = 36}, - [3546] = {.lex_state = 298, .external_lex_state = 78}, - [3547] = {.lex_state = 296, .external_lex_state = 36}, - [3548] = {.lex_state = 298, .external_lex_state = 78}, - [3549] = {.lex_state = 298, .external_lex_state = 78}, - [3550] = {.lex_state = 298, .external_lex_state = 78}, - [3551] = {.lex_state = 298, .external_lex_state = 78}, - [3552] = {.lex_state = 296, .external_lex_state = 36}, - [3553] = {.lex_state = 298, .external_lex_state = 78}, - [3554] = {.lex_state = 298, .external_lex_state = 78}, - [3555] = {.lex_state = 298, .external_lex_state = 79}, - [3556] = {.lex_state = 296, .external_lex_state = 36}, - [3557] = {.lex_state = 298, .external_lex_state = 78}, - [3558] = {.lex_state = 298, .external_lex_state = 78}, - [3559] = {.lex_state = 254, .external_lex_state = 80}, - [3560] = {.lex_state = 254, .external_lex_state = 80}, - [3561] = {.lex_state = 298, .external_lex_state = 78}, - [3562] = {.lex_state = 230, .external_lex_state = 72}, - [3563] = {.lex_state = 298, .external_lex_state = 78}, - [3564] = {.lex_state = 298, .external_lex_state = 78}, - [3565] = {.lex_state = 198, .external_lex_state = 73}, - [3566] = {.lex_state = 298, .external_lex_state = 78}, - [3567] = {.lex_state = 198, .external_lex_state = 73}, - [3568] = {.lex_state = 298, .external_lex_state = 78}, - [3569] = {.lex_state = 296, .external_lex_state = 36}, - [3570] = {.lex_state = 198, .external_lex_state = 73}, - [3571] = {.lex_state = 198, .external_lex_state = 73}, - [3572] = {.lex_state = 284, .external_lex_state = 77}, - [3573] = {.lex_state = 296, .external_lex_state = 36}, - [3574] = {.lex_state = 298, .external_lex_state = 79}, - [3575] = {.lex_state = 298, .external_lex_state = 78}, - [3576] = {.lex_state = 298, .external_lex_state = 78}, - [3577] = {.lex_state = 298, .external_lex_state = 78}, - [3578] = {.lex_state = 296, .external_lex_state = 36}, - [3579] = {.lex_state = 205, .external_lex_state = 66}, - [3580] = {.lex_state = 283, .external_lex_state = 81}, - [3581] = {.lex_state = 296, .external_lex_state = 36}, - [3582] = {.lex_state = 283, .external_lex_state = 81}, - [3583] = {.lex_state = 198, .external_lex_state = 73}, - [3584] = {.lex_state = 230, .external_lex_state = 72}, - [3585] = {.lex_state = 198, .external_lex_state = 73}, - [3586] = {.lex_state = 298, .external_lex_state = 78}, - [3587] = {.lex_state = 298, .external_lex_state = 78}, - [3588] = {.lex_state = 298, .external_lex_state = 78}, - [3589] = {.lex_state = 298, .external_lex_state = 78}, - [3590] = {.lex_state = 298, .external_lex_state = 78}, - [3591] = {.lex_state = 198, .external_lex_state = 73}, - [3592] = {.lex_state = 298, .external_lex_state = 78}, - [3593] = {.lex_state = 298, .external_lex_state = 78}, - [3594] = {.lex_state = 298, .external_lex_state = 78}, - [3595] = {.lex_state = 298, .external_lex_state = 78}, - [3596] = {.lex_state = 198, .external_lex_state = 73}, - [3597] = {.lex_state = 296, .external_lex_state = 36}, - [3598] = {.lex_state = 284, .external_lex_state = 77}, - [3599] = {.lex_state = 298, .external_lex_state = 78}, - [3600] = {.lex_state = 205, .external_lex_state = 66}, - [3601] = {.lex_state = 296, .external_lex_state = 36}, - [3602] = {.lex_state = 298, .external_lex_state = 78}, - [3603] = {.lex_state = 198, .external_lex_state = 73}, - [3604] = {.lex_state = 298, .external_lex_state = 78}, - [3605] = {.lex_state = 198, .external_lex_state = 73}, - [3606] = {.lex_state = 298, .external_lex_state = 78}, - [3607] = {.lex_state = 205, .external_lex_state = 66}, - [3608] = {.lex_state = 198, .external_lex_state = 73}, - [3609] = {.lex_state = 298, .external_lex_state = 79}, - [3610] = {.lex_state = 298, .external_lex_state = 78}, - [3611] = {.lex_state = 298, .external_lex_state = 78}, - [3612] = {.lex_state = 205, .external_lex_state = 66}, - [3613] = {.lex_state = 298, .external_lex_state = 78}, - [3614] = {.lex_state = 298, .external_lex_state = 78}, - [3615] = {.lex_state = 317, .external_lex_state = 82}, - [3616] = {.lex_state = 317, .external_lex_state = 82}, - [3617] = {.lex_state = 298, .external_lex_state = 78}, - [3618] = {.lex_state = 298, .external_lex_state = 78}, - [3619] = {.lex_state = 285, .external_lex_state = 81}, - [3620] = {.lex_state = 298, .external_lex_state = 83}, - [3621] = {.lex_state = 298, .external_lex_state = 78}, - [3622] = {.lex_state = 298, .external_lex_state = 78}, - [3623] = {.lex_state = 298, .external_lex_state = 78}, - [3624] = {.lex_state = 298, .external_lex_state = 78}, - [3625] = {.lex_state = 298, .external_lex_state = 78}, - [3626] = {.lex_state = 298, .external_lex_state = 78}, - [3627] = {.lex_state = 298, .external_lex_state = 78}, - [3628] = {.lex_state = 319, .external_lex_state = 84}, - [3629] = {.lex_state = 298, .external_lex_state = 78}, - [3630] = {.lex_state = 298, .external_lex_state = 78}, - [3631] = {.lex_state = 298, .external_lex_state = 78}, - [3632] = {.lex_state = 298, .external_lex_state = 78}, - [3633] = {.lex_state = 298, .external_lex_state = 78}, - [3634] = {.lex_state = 298, .external_lex_state = 78}, - [3635] = {.lex_state = 298, .external_lex_state = 78}, - [3636] = {.lex_state = 285, .external_lex_state = 81}, - [3637] = {.lex_state = 298, .external_lex_state = 78}, - [3638] = {.lex_state = 298, .external_lex_state = 78}, - [3639] = {.lex_state = 298, .external_lex_state = 78}, - [3640] = {.lex_state = 298, .external_lex_state = 78}, - [3641] = {.lex_state = 298, .external_lex_state = 78}, - [3642] = {.lex_state = 298, .external_lex_state = 78}, - [3643] = {.lex_state = 317, .external_lex_state = 82}, - [3644] = {.lex_state = 317, .external_lex_state = 82}, - [3645] = {.lex_state = 298, .external_lex_state = 78}, - [3646] = {.lex_state = 298, .external_lex_state = 78}, - [3647] = {.lex_state = 298, .external_lex_state = 78}, - [3648] = {.lex_state = 298, .external_lex_state = 78}, - [3649] = {.lex_state = 298, .external_lex_state = 78}, - [3650] = {.lex_state = 298, .external_lex_state = 78}, - [3651] = {.lex_state = 298, .external_lex_state = 78}, - [3652] = {.lex_state = 298, .external_lex_state = 78}, - [3653] = {.lex_state = 298, .external_lex_state = 78}, - [3654] = {.lex_state = 298, .external_lex_state = 78}, - [3655] = {.lex_state = 298, .external_lex_state = 78}, - [3656] = {.lex_state = 317, .external_lex_state = 82}, - [3657] = {.lex_state = 317, .external_lex_state = 82}, - [3658] = {.lex_state = 317, .external_lex_state = 82}, - [3659] = {.lex_state = 298, .external_lex_state = 78}, - [3660] = {.lex_state = 298, .external_lex_state = 83}, - [3661] = {.lex_state = 298, .external_lex_state = 78}, - [3662] = {.lex_state = 298, .external_lex_state = 78}, - [3663] = {.lex_state = 317, .external_lex_state = 82}, - [3664] = {.lex_state = 285, .external_lex_state = 81}, - [3665] = {.lex_state = 298, .external_lex_state = 78}, - [3666] = {.lex_state = 285, .external_lex_state = 81}, - [3667] = {.lex_state = 298, .external_lex_state = 78}, - [3668] = {.lex_state = 317, .external_lex_state = 82}, - [3669] = {.lex_state = 298, .external_lex_state = 78}, - [3670] = {.lex_state = 298, .external_lex_state = 78}, - [3671] = {.lex_state = 317, .external_lex_state = 82}, - [3672] = {.lex_state = 298, .external_lex_state = 83}, - [3673] = {.lex_state = 298, .external_lex_state = 78}, - [3674] = {.lex_state = 298, .external_lex_state = 78}, - [3675] = {.lex_state = 298, .external_lex_state = 78}, - [3676] = {.lex_state = 298, .external_lex_state = 78}, - [3677] = {.lex_state = 298, .external_lex_state = 78}, - [3678] = {.lex_state = 298, .external_lex_state = 78}, - [3679] = {.lex_state = 298, .external_lex_state = 78}, - [3680] = {.lex_state = 298, .external_lex_state = 78}, - [3681] = {.lex_state = 298, .external_lex_state = 78}, - [3682] = {.lex_state = 298, .external_lex_state = 83}, - [3683] = {.lex_state = 317, .external_lex_state = 82}, - [3684] = {.lex_state = 298, .external_lex_state = 78}, - [3685] = {.lex_state = 317, .external_lex_state = 82}, - [3686] = {.lex_state = 298, .external_lex_state = 83}, - [3687] = {.lex_state = 298, .external_lex_state = 78}, - [3688] = {.lex_state = 298, .external_lex_state = 78}, - [3689] = {.lex_state = 298, .external_lex_state = 78}, - [3690] = {.lex_state = 298, .external_lex_state = 78}, - [3691] = {.lex_state = 298, .external_lex_state = 78}, - [3692] = {.lex_state = 298, .external_lex_state = 78}, - [3693] = {.lex_state = 298, .external_lex_state = 78}, - [3694] = {.lex_state = 298, .external_lex_state = 78}, - [3695] = {.lex_state = 298, .external_lex_state = 83}, - [3696] = {.lex_state = 298, .external_lex_state = 78}, - [3697] = {.lex_state = 298, .external_lex_state = 83}, - [3698] = {.lex_state = 316, .external_lex_state = 85}, - [3699] = {.lex_state = 289, .external_lex_state = 86}, - [3700] = {.lex_state = 316, .external_lex_state = 85}, - [3701] = {.lex_state = 316, .external_lex_state = 85}, - [3702] = {.lex_state = 316, .external_lex_state = 85}, - [3703] = {.lex_state = 298, .external_lex_state = 78}, - [3704] = {.lex_state = 316, .external_lex_state = 85}, - [3705] = {.lex_state = 289, .external_lex_state = 86}, - [3706] = {.lex_state = 298, .external_lex_state = 78}, - [3707] = {.lex_state = 316, .external_lex_state = 85}, - [3708] = {.lex_state = 289, .external_lex_state = 86}, - [3709] = {.lex_state = 289, .external_lex_state = 86}, - [3710] = {.lex_state = 289, .external_lex_state = 86}, - [3711] = {.lex_state = 316, .external_lex_state = 85}, - [3712] = {.lex_state = 316, .external_lex_state = 85}, - [3713] = {.lex_state = 289, .external_lex_state = 86}, - [3714] = {.lex_state = 289, .external_lex_state = 86}, - [3715] = {.lex_state = 298, .external_lex_state = 78}, - [3716] = {.lex_state = 298, .external_lex_state = 78}, - [3717] = {.lex_state = 316, .external_lex_state = 85}, - [3718] = {.lex_state = 298, .external_lex_state = 78}, - [3719] = {.lex_state = 316, .external_lex_state = 85}, - [3720] = {.lex_state = 298, .external_lex_state = 78}, - [3721] = {.lex_state = 298, .external_lex_state = 78}, - [3722] = {.lex_state = 289, .external_lex_state = 86}, - [3723] = {.lex_state = 316, .external_lex_state = 85}, - [3724] = {.lex_state = 289, .external_lex_state = 86}, - [3725] = {.lex_state = 298, .external_lex_state = 78}, - [3726] = {.lex_state = 289, .external_lex_state = 86}, - [3727] = {.lex_state = 316, .external_lex_state = 85}, - [3728] = {.lex_state = 289, .external_lex_state = 86}, - [3729] = {.lex_state = 289, .external_lex_state = 86}, - [3730] = {.lex_state = 289, .external_lex_state = 86}, - [3731] = {.lex_state = 289, .external_lex_state = 86}, - [3732] = {.lex_state = 316, .external_lex_state = 85}, - [3733] = {.lex_state = 316, .external_lex_state = 85}, - [3734] = {.lex_state = 298, .external_lex_state = 78}, - [3735] = {.lex_state = 316, .external_lex_state = 85}, - [3736] = {.lex_state = 298, .external_lex_state = 78}, - [3737] = {.lex_state = 316, .external_lex_state = 85}, - [3738] = {.lex_state = 316, .external_lex_state = 85}, - [3739] = {.lex_state = 298, .external_lex_state = 78}, - [3740] = {.lex_state = 298, .external_lex_state = 78}, - [3741] = {.lex_state = 289, .external_lex_state = 86}, - [3742] = {.lex_state = 289, .external_lex_state = 86}, - [3743] = {.lex_state = 289, .external_lex_state = 86}, - [3744] = {.lex_state = 289, .external_lex_state = 86}, - [3745] = {.lex_state = 316, .external_lex_state = 85}, - [3746] = {.lex_state = 316, .external_lex_state = 85}, - [3747] = {.lex_state = 316, .external_lex_state = 85}, - [3748] = {.lex_state = 289, .external_lex_state = 86}, - [3749] = {.lex_state = 289, .external_lex_state = 86}, - [3750] = {.lex_state = 316, .external_lex_state = 85}, - [3751] = {.lex_state = 289, .external_lex_state = 86}, - [3752] = {.lex_state = 316, .external_lex_state = 85}, - [3753] = {.lex_state = 289, .external_lex_state = 86}, - [3754] = {.lex_state = 289, .external_lex_state = 86}, - [3755] = {.lex_state = 289, .external_lex_state = 86}, - [3756] = {.lex_state = 316, .external_lex_state = 85}, - [3757] = {.lex_state = 316, .external_lex_state = 85}, - [3758] = {.lex_state = 316, .external_lex_state = 85}, - [3759] = {.lex_state = 289, .external_lex_state = 86}, - [3760] = {.lex_state = 316, .external_lex_state = 85}, - [3761] = {.lex_state = 298, .external_lex_state = 78}, - [3762] = {.lex_state = 298, .external_lex_state = 78}, - [3763] = {.lex_state = 298, .external_lex_state = 78}, - [3764] = {.lex_state = 289, .external_lex_state = 86}, - [3765] = {.lex_state = 298, .external_lex_state = 78}, - [3766] = {.lex_state = 316, .external_lex_state = 85}, - [3767] = {.lex_state = 316, .external_lex_state = 85}, - [3768] = {.lex_state = 316, .external_lex_state = 85}, - [3769] = {.lex_state = 298, .external_lex_state = 78}, - [3770] = {.lex_state = 316, .external_lex_state = 85}, - [3771] = {.lex_state = 316, .external_lex_state = 85}, - [3772] = {.lex_state = 298, .external_lex_state = 78}, - [3773] = {.lex_state = 316, .external_lex_state = 85}, - [3774] = {.lex_state = 316, .external_lex_state = 85}, - [3775] = {.lex_state = 298, .external_lex_state = 78}, - [3776] = {.lex_state = 316, .external_lex_state = 85}, - [3777] = {.lex_state = 298, .external_lex_state = 78}, - [3778] = {.lex_state = 316, .external_lex_state = 85}, - [3779] = {.lex_state = 298, .external_lex_state = 78}, - [3780] = {.lex_state = 298, .external_lex_state = 78}, - [3781] = {.lex_state = 316, .external_lex_state = 85}, - [3782] = {.lex_state = 298, .external_lex_state = 78}, - [3783] = {.lex_state = 289, .external_lex_state = 86}, - [3784] = {.lex_state = 289, .external_lex_state = 86}, - [3785] = {.lex_state = 316, .external_lex_state = 85}, - [3786] = {.lex_state = 289, .external_lex_state = 86}, - [3787] = {.lex_state = 298, .external_lex_state = 78}, - [3788] = {.lex_state = 316, .external_lex_state = 85}, - [3789] = {.lex_state = 289, .external_lex_state = 86}, - [3790] = {.lex_state = 316, .external_lex_state = 85}, - [3791] = {.lex_state = 316, .external_lex_state = 85}, - [3792] = {.lex_state = 316, .external_lex_state = 85}, - [3793] = {.lex_state = 289, .external_lex_state = 86}, - [3794] = {.lex_state = 316, .external_lex_state = 85}, - [3795] = {.lex_state = 316, .external_lex_state = 85}, - [3796] = {.lex_state = 316, .external_lex_state = 85}, - [3797] = {.lex_state = 289, .external_lex_state = 86}, - [3798] = {.lex_state = 316, .external_lex_state = 85}, - [3799] = {.lex_state = 298, .external_lex_state = 78}, - [3800] = {.lex_state = 289, .external_lex_state = 86}, - [3801] = {.lex_state = 298, .external_lex_state = 78}, - [3802] = {.lex_state = 316, .external_lex_state = 85}, - [3803] = {.lex_state = 316, .external_lex_state = 85}, - [3804] = {.lex_state = 289, .external_lex_state = 86}, - [3805] = {.lex_state = 298, .external_lex_state = 78}, - [3806] = {.lex_state = 316, .external_lex_state = 85}, - [3807] = {.lex_state = 298, .external_lex_state = 78}, - [3808] = {.lex_state = 298, .external_lex_state = 78}, - [3809] = {.lex_state = 289, .external_lex_state = 86}, - [3810] = {.lex_state = 316, .external_lex_state = 85}, - [3811] = {.lex_state = 316, .external_lex_state = 85}, - [3812] = {.lex_state = 289, .external_lex_state = 86}, - [3813] = {.lex_state = 316, .external_lex_state = 85}, - [3814] = {.lex_state = 316, .external_lex_state = 85}, - [3815] = {.lex_state = 316, .external_lex_state = 85}, - [3816] = {.lex_state = 289, .external_lex_state = 86}, - [3817] = {.lex_state = 289, .external_lex_state = 86}, - [3818] = {.lex_state = 289, .external_lex_state = 86}, - [3819] = {.lex_state = 316, .external_lex_state = 85}, - [3820] = {.lex_state = 289, .external_lex_state = 86}, - [3821] = {.lex_state = 298, .external_lex_state = 78}, - [3822] = {.lex_state = 298, .external_lex_state = 78}, - [3823] = {.lex_state = 316, .external_lex_state = 85}, - [3824] = {.lex_state = 289, .external_lex_state = 86}, - [3825] = {.lex_state = 289, .external_lex_state = 86}, - [3826] = {.lex_state = 316, .external_lex_state = 85}, - [3827] = {.lex_state = 298, .external_lex_state = 78}, - [3828] = {.lex_state = 298, .external_lex_state = 78}, - [3829] = {.lex_state = 316, .external_lex_state = 85}, - [3830] = {.lex_state = 289, .external_lex_state = 86}, - [3831] = {.lex_state = 289, .external_lex_state = 86}, - [3832] = {.lex_state = 298, .external_lex_state = 78}, - [3833] = {.lex_state = 298, .external_lex_state = 78}, - [3834] = {.lex_state = 316, .external_lex_state = 85}, - [3835] = {.lex_state = 289, .external_lex_state = 86}, - [3836] = {.lex_state = 298, .external_lex_state = 78}, - [3837] = {.lex_state = 316, .external_lex_state = 85}, - [3838] = {.lex_state = 298, .external_lex_state = 78}, - [3839] = {.lex_state = 316, .external_lex_state = 85}, - [3840] = {.lex_state = 298, .external_lex_state = 78}, - [3841] = {.lex_state = 316, .external_lex_state = 85}, - [3842] = {.lex_state = 289, .external_lex_state = 86}, - [3843] = {.lex_state = 316, .external_lex_state = 85}, - [3844] = {.lex_state = 316, .external_lex_state = 85}, - [3845] = {.lex_state = 316, .external_lex_state = 85}, - [3846] = {.lex_state = 316, .external_lex_state = 85}, - [3847] = {.lex_state = 316, .external_lex_state = 85}, - [3848] = {.lex_state = 316, .external_lex_state = 85}, - [3849] = {.lex_state = 289, .external_lex_state = 86}, - [3850] = {.lex_state = 289, .external_lex_state = 86}, - [3851] = {.lex_state = 316, .external_lex_state = 85}, - [3852] = {.lex_state = 316, .external_lex_state = 85}, - [3853] = {.lex_state = 316, .external_lex_state = 85}, - [3854] = {.lex_state = 316, .external_lex_state = 85}, - [3855] = {.lex_state = 289, .external_lex_state = 86}, - [3856] = {.lex_state = 316, .external_lex_state = 85}, - [3857] = {.lex_state = 289, .external_lex_state = 86}, - [3858] = {.lex_state = 316, .external_lex_state = 85}, - [3859] = {.lex_state = 298, .external_lex_state = 78}, - [3860] = {.lex_state = 316, .external_lex_state = 85}, - [3861] = {.lex_state = 316, .external_lex_state = 85}, - [3862] = {.lex_state = 289, .external_lex_state = 86}, - [3863] = {.lex_state = 289, .external_lex_state = 86}, - [3864] = {.lex_state = 316, .external_lex_state = 85}, - [3865] = {.lex_state = 316, .external_lex_state = 85}, - [3866] = {.lex_state = 316, .external_lex_state = 85}, - [3867] = {.lex_state = 316, .external_lex_state = 85}, - [3868] = {.lex_state = 316, .external_lex_state = 85}, - [3869] = {.lex_state = 316, .external_lex_state = 85}, - [3870] = {.lex_state = 316, .external_lex_state = 85}, - [3871] = {.lex_state = 316, .external_lex_state = 85}, - [3872] = {.lex_state = 316, .external_lex_state = 85}, - [3873] = {.lex_state = 316, .external_lex_state = 85}, - [3874] = {.lex_state = 289, .external_lex_state = 86}, - [3875] = {.lex_state = 289, .external_lex_state = 86}, - [3876] = {.lex_state = 289, .external_lex_state = 86}, - [3877] = {.lex_state = 316, .external_lex_state = 85}, - [3878] = {.lex_state = 316, .external_lex_state = 85}, - [3879] = {.lex_state = 289, .external_lex_state = 86}, - [3880] = {.lex_state = 316, .external_lex_state = 85}, - [3881] = {.lex_state = 316, .external_lex_state = 85}, - [3882] = {.lex_state = 316, .external_lex_state = 85}, - [3883] = {.lex_state = 316, .external_lex_state = 85}, - [3884] = {.lex_state = 316, .external_lex_state = 85}, - [3885] = {.lex_state = 316, .external_lex_state = 85}, - [3886] = {.lex_state = 316, .external_lex_state = 85}, - [3887] = {.lex_state = 316, .external_lex_state = 85}, - [3888] = {.lex_state = 289, .external_lex_state = 86}, - [3889] = {.lex_state = 316, .external_lex_state = 85}, - [3890] = {.lex_state = 316, .external_lex_state = 85}, - [3891] = {.lex_state = 316, .external_lex_state = 85}, - [3892] = {.lex_state = 289, .external_lex_state = 86}, - [3893] = {.lex_state = 289, .external_lex_state = 86}, - [3894] = {.lex_state = 316, .external_lex_state = 85}, - [3895] = {.lex_state = 316, .external_lex_state = 85}, - [3896] = {.lex_state = 316, .external_lex_state = 85}, - [3897] = {.lex_state = 316, .external_lex_state = 85}, - [3898] = {.lex_state = 298, .external_lex_state = 78}, - [3899] = {.lex_state = 316, .external_lex_state = 85}, - [3900] = {.lex_state = 316, .external_lex_state = 85}, - [3901] = {.lex_state = 316, .external_lex_state = 85}, - [3902] = {.lex_state = 298, .external_lex_state = 78}, - [3903] = {.lex_state = 316, .external_lex_state = 85}, - [3904] = {.lex_state = 316, .external_lex_state = 85}, - [3905] = {.lex_state = 316, .external_lex_state = 85}, - [3906] = {.lex_state = 316, .external_lex_state = 85}, - [3907] = {.lex_state = 298, .external_lex_state = 78}, - [3908] = {.lex_state = 316, .external_lex_state = 85}, - [3909] = {.lex_state = 316, .external_lex_state = 85}, - [3910] = {.lex_state = 316, .external_lex_state = 85}, - [3911] = {.lex_state = 316, .external_lex_state = 85}, - [3912] = {.lex_state = 316, .external_lex_state = 85}, - [3913] = {.lex_state = 316, .external_lex_state = 85}, - [3914] = {.lex_state = 316, .external_lex_state = 85}, - [3915] = {.lex_state = 289, .external_lex_state = 86}, - [3916] = {.lex_state = 289, .external_lex_state = 86}, - [3917] = {.lex_state = 316, .external_lex_state = 85}, - [3918] = {.lex_state = 316, .external_lex_state = 85}, - [3919] = {.lex_state = 289, .external_lex_state = 86}, - [3920] = {.lex_state = 289, .external_lex_state = 86}, - [3921] = {.lex_state = 316, .external_lex_state = 85}, - [3922] = {.lex_state = 316, .external_lex_state = 85}, - [3923] = {.lex_state = 316, .external_lex_state = 85}, - [3924] = {.lex_state = 316, .external_lex_state = 85}, - [3925] = {.lex_state = 316, .external_lex_state = 85}, - [3926] = {.lex_state = 316, .external_lex_state = 85}, - [3927] = {.lex_state = 316, .external_lex_state = 85}, - [3928] = {.lex_state = 316, .external_lex_state = 85}, - [3929] = {.lex_state = 316, .external_lex_state = 85}, - [3930] = {.lex_state = 316, .external_lex_state = 85}, - [3931] = {.lex_state = 316, .external_lex_state = 85}, - [3932] = {.lex_state = 289, .external_lex_state = 86}, - [3933] = {.lex_state = 289, .external_lex_state = 86}, - [3934] = {.lex_state = 289, .external_lex_state = 86}, - [3935] = {.lex_state = 316, .external_lex_state = 85}, - [3936] = {.lex_state = 316, .external_lex_state = 85}, - [3937] = {.lex_state = 316, .external_lex_state = 85}, - [3938] = {.lex_state = 316, .external_lex_state = 85}, - [3939] = {.lex_state = 316, .external_lex_state = 85}, - [3940] = {.lex_state = 316, .external_lex_state = 85}, - [3941] = {.lex_state = 316, .external_lex_state = 85}, - [3942] = {.lex_state = 316, .external_lex_state = 85}, - [3943] = {.lex_state = 316, .external_lex_state = 85}, - [3944] = {.lex_state = 289, .external_lex_state = 86}, - [3945] = {.lex_state = 289, .external_lex_state = 86}, - [3946] = {.lex_state = 316, .external_lex_state = 85}, - [3947] = {.lex_state = 316, .external_lex_state = 85}, - [3948] = {.lex_state = 316, .external_lex_state = 85}, - [3949] = {.lex_state = 316, .external_lex_state = 85}, - [3950] = {.lex_state = 316, .external_lex_state = 85}, - [3951] = {.lex_state = 316, .external_lex_state = 85}, - [3952] = {.lex_state = 316, .external_lex_state = 85}, - [3953] = {.lex_state = 316, .external_lex_state = 85}, - [3954] = {.lex_state = 316, .external_lex_state = 85}, - [3955] = {.lex_state = 316, .external_lex_state = 85}, - [3956] = {.lex_state = 316, .external_lex_state = 85}, - [3957] = {.lex_state = 316, .external_lex_state = 85}, - [3958] = {.lex_state = 316, .external_lex_state = 85}, - [3959] = {.lex_state = 316, .external_lex_state = 85}, - [3960] = {.lex_state = 289, .external_lex_state = 86}, - [3961] = {.lex_state = 316, .external_lex_state = 85}, - [3962] = {.lex_state = 316, .external_lex_state = 85}, - [3963] = {.lex_state = 298, .external_lex_state = 78}, - [3964] = {.lex_state = 316, .external_lex_state = 85}, - [3965] = {.lex_state = 298, .external_lex_state = 78}, - [3966] = {.lex_state = 289, .external_lex_state = 86}, - [3967] = {.lex_state = 289, .external_lex_state = 86}, - [3968] = {.lex_state = 316, .external_lex_state = 85}, - [3969] = {.lex_state = 316, .external_lex_state = 85}, - [3970] = {.lex_state = 289, .external_lex_state = 86}, - [3971] = {.lex_state = 316, .external_lex_state = 85}, - [3972] = {.lex_state = 316, .external_lex_state = 85}, - [3973] = {.lex_state = 289, .external_lex_state = 86}, - [3974] = {.lex_state = 289, .external_lex_state = 86}, - [3975] = {.lex_state = 316, .external_lex_state = 85}, - [3976] = {.lex_state = 316, .external_lex_state = 85}, - [3977] = {.lex_state = 289, .external_lex_state = 86}, - [3978] = {.lex_state = 289, .external_lex_state = 86}, - [3979] = {.lex_state = 316, .external_lex_state = 85}, - [3980] = {.lex_state = 316, .external_lex_state = 85}, - [3981] = {.lex_state = 289, .external_lex_state = 86}, - [3982] = {.lex_state = 289, .external_lex_state = 86}, - [3983] = {.lex_state = 289, .external_lex_state = 86}, - [3984] = {.lex_state = 316, .external_lex_state = 85}, - [3985] = {.lex_state = 289, .external_lex_state = 86}, - [3986] = {.lex_state = 289, .external_lex_state = 86}, - [3987] = {.lex_state = 289, .external_lex_state = 86}, - [3988] = {.lex_state = 316, .external_lex_state = 85}, - [3989] = {.lex_state = 316, .external_lex_state = 85}, - [3990] = {.lex_state = 316, .external_lex_state = 85}, - [3991] = {.lex_state = 316, .external_lex_state = 85}, - [3992] = {.lex_state = 316, .external_lex_state = 85}, - [3993] = {.lex_state = 316, .external_lex_state = 85}, - [3994] = {.lex_state = 289, .external_lex_state = 86}, - [3995] = {.lex_state = 289, .external_lex_state = 86}, - [3996] = {.lex_state = 316, .external_lex_state = 85}, - [3997] = {.lex_state = 289, .external_lex_state = 86}, - [3998] = {.lex_state = 316, .external_lex_state = 85}, - [3999] = {.lex_state = 316, .external_lex_state = 85}, - [4000] = {.lex_state = 289, .external_lex_state = 86}, - [4001] = {.lex_state = 289, .external_lex_state = 86}, - [4002] = {.lex_state = 316, .external_lex_state = 85}, - [4003] = {.lex_state = 316, .external_lex_state = 85}, - [4004] = {.lex_state = 316, .external_lex_state = 85}, - [4005] = {.lex_state = 289, .external_lex_state = 86}, - [4006] = {.lex_state = 289, .external_lex_state = 86}, - [4007] = {.lex_state = 316, .external_lex_state = 85}, - [4008] = {.lex_state = 289, .external_lex_state = 86}, - [4009] = {.lex_state = 316, .external_lex_state = 85}, - [4010] = {.lex_state = 316, .external_lex_state = 85}, - [4011] = {.lex_state = 316, .external_lex_state = 85}, - [4012] = {.lex_state = 289, .external_lex_state = 86}, - [4013] = {.lex_state = 316, .external_lex_state = 85}, - [4014] = {.lex_state = 316, .external_lex_state = 85}, - [4015] = {.lex_state = 316, .external_lex_state = 85}, - [4016] = {.lex_state = 316, .external_lex_state = 85}, - [4017] = {.lex_state = 316, .external_lex_state = 85}, - [4018] = {.lex_state = 298, .external_lex_state = 78}, - [4019] = {.lex_state = 316, .external_lex_state = 85}, - [4020] = {.lex_state = 316, .external_lex_state = 85}, - [4021] = {.lex_state = 289, .external_lex_state = 86}, - [4022] = {.lex_state = 316, .external_lex_state = 85}, - [4023] = {.lex_state = 316, .external_lex_state = 85}, - [4024] = {.lex_state = 298, .external_lex_state = 78}, - [4025] = {.lex_state = 289, .external_lex_state = 86}, - [4026] = {.lex_state = 316, .external_lex_state = 85}, - [4027] = {.lex_state = 316, .external_lex_state = 85}, - [4028] = {.lex_state = 316, .external_lex_state = 85}, - [4029] = {.lex_state = 316, .external_lex_state = 85}, - [4030] = {.lex_state = 298, .external_lex_state = 78}, - [4031] = {.lex_state = 298, .external_lex_state = 78}, - [4032] = {.lex_state = 289, .external_lex_state = 86}, - [4033] = {.lex_state = 289, .external_lex_state = 86}, - [4034] = {.lex_state = 316, .external_lex_state = 85}, - [4035] = {.lex_state = 289, .external_lex_state = 86}, - [4036] = {.lex_state = 298, .external_lex_state = 78}, - [4037] = {.lex_state = 289, .external_lex_state = 86}, - [4038] = {.lex_state = 316, .external_lex_state = 85}, - [4039] = {.lex_state = 298, .external_lex_state = 78}, - [4040] = {.lex_state = 289, .external_lex_state = 86}, - [4041] = {.lex_state = 289, .external_lex_state = 86}, - [4042] = {.lex_state = 316, .external_lex_state = 85}, - [4043] = {.lex_state = 289, .external_lex_state = 86}, - [4044] = {.lex_state = 289, .external_lex_state = 86}, - [4045] = {.lex_state = 298, .external_lex_state = 78}, - [4046] = {.lex_state = 316, .external_lex_state = 85}, - [4047] = {.lex_state = 289, .external_lex_state = 86}, - [4048] = {.lex_state = 289, .external_lex_state = 86}, - [4049] = {.lex_state = 289, .external_lex_state = 86}, - [4050] = {.lex_state = 298, .external_lex_state = 78}, - [4051] = {.lex_state = 289, .external_lex_state = 86}, - [4052] = {.lex_state = 298, .external_lex_state = 78}, - [4053] = {.lex_state = 298, .external_lex_state = 78}, - [4054] = {.lex_state = 289, .external_lex_state = 86}, - [4055] = {.lex_state = 316, .external_lex_state = 85}, - [4056] = {.lex_state = 289, .external_lex_state = 86}, - [4057] = {.lex_state = 289, .external_lex_state = 86}, - [4058] = {.lex_state = 289, .external_lex_state = 86}, - [4059] = {.lex_state = 316, .external_lex_state = 85}, - [4060] = {.lex_state = 289, .external_lex_state = 86}, - [4061] = {.lex_state = 289, .external_lex_state = 86}, - [4062] = {.lex_state = 289, .external_lex_state = 86}, - [4063] = {.lex_state = 289, .external_lex_state = 86}, - [4064] = {.lex_state = 289, .external_lex_state = 86}, - [4065] = {.lex_state = 316, .external_lex_state = 85}, - [4066] = {.lex_state = 289, .external_lex_state = 86}, - [4067] = {.lex_state = 289, .external_lex_state = 86}, - [4068] = {.lex_state = 289, .external_lex_state = 86}, - [4069] = {.lex_state = 289, .external_lex_state = 86}, - [4070] = {.lex_state = 289, .external_lex_state = 86}, - [4071] = {.lex_state = 316, .external_lex_state = 85}, - [4072] = {.lex_state = 289, .external_lex_state = 86}, - [4073] = {.lex_state = 289, .external_lex_state = 86}, - [4074] = {.lex_state = 289, .external_lex_state = 86}, - [4075] = {.lex_state = 316, .external_lex_state = 85}, - [4076] = {.lex_state = 289, .external_lex_state = 86}, - [4077] = {.lex_state = 316, .external_lex_state = 85}, - [4078] = {.lex_state = 298, .external_lex_state = 78}, - [4079] = {.lex_state = 289, .external_lex_state = 86}, - [4080] = {.lex_state = 316, .external_lex_state = 85}, - [4081] = {.lex_state = 316, .external_lex_state = 85}, - [4082] = {.lex_state = 289, .external_lex_state = 86}, - [4083] = {.lex_state = 289, .external_lex_state = 86}, - [4084] = {.lex_state = 289, .external_lex_state = 86}, - [4085] = {.lex_state = 289, .external_lex_state = 86}, - [4086] = {.lex_state = 316, .external_lex_state = 85}, - [4087] = {.lex_state = 316, .external_lex_state = 85}, - [4088] = {.lex_state = 316, .external_lex_state = 85}, - [4089] = {.lex_state = 316, .external_lex_state = 85}, - [4090] = {.lex_state = 289, .external_lex_state = 86}, - [4091] = {.lex_state = 289, .external_lex_state = 86}, - [4092] = {.lex_state = 316, .external_lex_state = 85}, - [4093] = {.lex_state = 289, .external_lex_state = 86}, - [4094] = {.lex_state = 316, .external_lex_state = 85}, - [4095] = {.lex_state = 316, .external_lex_state = 85}, - [4096] = {.lex_state = 289, .external_lex_state = 86}, - [4097] = {.lex_state = 316, .external_lex_state = 85}, - [4098] = {.lex_state = 289, .external_lex_state = 86}, - [4099] = {.lex_state = 316, .external_lex_state = 85}, - [4100] = {.lex_state = 316, .external_lex_state = 85}, - [4101] = {.lex_state = 289, .external_lex_state = 86}, - [4102] = {.lex_state = 289, .external_lex_state = 86}, - [4103] = {.lex_state = 289, .external_lex_state = 86}, - [4104] = {.lex_state = 316, .external_lex_state = 85}, - [4105] = {.lex_state = 316, .external_lex_state = 85}, - [4106] = {.lex_state = 316, .external_lex_state = 85}, - [4107] = {.lex_state = 298, .external_lex_state = 78}, - [4108] = {.lex_state = 289, .external_lex_state = 86}, - [4109] = {.lex_state = 298, .external_lex_state = 78}, - [4110] = {.lex_state = 289, .external_lex_state = 86}, - [4111] = {.lex_state = 298, .external_lex_state = 78}, - [4112] = {.lex_state = 289, .external_lex_state = 86}, - [4113] = {.lex_state = 316, .external_lex_state = 85}, - [4114] = {.lex_state = 289, .external_lex_state = 86}, - [4115] = {.lex_state = 298, .external_lex_state = 78}, - [4116] = {.lex_state = 316, .external_lex_state = 85}, - [4117] = {.lex_state = 316, .external_lex_state = 85}, - [4118] = {.lex_state = 298, .external_lex_state = 78}, - [4119] = {.lex_state = 298, .external_lex_state = 78}, - [4120] = {.lex_state = 289, .external_lex_state = 86}, - [4121] = {.lex_state = 289, .external_lex_state = 86}, - [4122] = {.lex_state = 298, .external_lex_state = 78}, - [4123] = {.lex_state = 289, .external_lex_state = 86}, - [4124] = {.lex_state = 289, .external_lex_state = 86}, - [4125] = {.lex_state = 298, .external_lex_state = 78}, - [4126] = {.lex_state = 298, .external_lex_state = 78}, - [4127] = {.lex_state = 316, .external_lex_state = 85}, - [4128] = {.lex_state = 316, .external_lex_state = 85}, - [4129] = {.lex_state = 316, .external_lex_state = 85}, - [4130] = {.lex_state = 289, .external_lex_state = 86}, - [4131] = {.lex_state = 289, .external_lex_state = 86}, - [4132] = {.lex_state = 289, .external_lex_state = 86}, - [4133] = {.lex_state = 316, .external_lex_state = 85}, - [4134] = {.lex_state = 289, .external_lex_state = 86}, - [4135] = {.lex_state = 289, .external_lex_state = 86}, - [4136] = {.lex_state = 289, .external_lex_state = 86}, - [4137] = {.lex_state = 289, .external_lex_state = 86}, - [4138] = {.lex_state = 298, .external_lex_state = 78}, - [4139] = {.lex_state = 316, .external_lex_state = 85}, - [4140] = {.lex_state = 316, .external_lex_state = 85}, - [4141] = {.lex_state = 316, .external_lex_state = 85}, - [4142] = {.lex_state = 289, .external_lex_state = 86}, - [4143] = {.lex_state = 289, .external_lex_state = 86}, - [4144] = {.lex_state = 289, .external_lex_state = 86}, - [4145] = {.lex_state = 289, .external_lex_state = 86}, - [4146] = {.lex_state = 289, .external_lex_state = 86}, - [4147] = {.lex_state = 289, .external_lex_state = 86}, - [4148] = {.lex_state = 289, .external_lex_state = 86}, - [4149] = {.lex_state = 289, .external_lex_state = 86}, - [4150] = {.lex_state = 289, .external_lex_state = 86}, - [4151] = {.lex_state = 289, .external_lex_state = 86}, - [4152] = {.lex_state = 298, .external_lex_state = 78}, - [4153] = {.lex_state = 316, .external_lex_state = 85}, - [4154] = {.lex_state = 289, .external_lex_state = 86}, - [4155] = {.lex_state = 289, .external_lex_state = 86}, - [4156] = {.lex_state = 316, .external_lex_state = 85}, - [4157] = {.lex_state = 316, .external_lex_state = 85}, - [4158] = {.lex_state = 316, .external_lex_state = 85}, - [4159] = {.lex_state = 316, .external_lex_state = 85}, - [4160] = {.lex_state = 316, .external_lex_state = 85}, - [4161] = {.lex_state = 316, .external_lex_state = 85}, - [4162] = {.lex_state = 316, .external_lex_state = 85}, - [4163] = {.lex_state = 316, .external_lex_state = 85}, - [4164] = {.lex_state = 289, .external_lex_state = 86}, - [4165] = {.lex_state = 298, .external_lex_state = 78}, - [4166] = {.lex_state = 289, .external_lex_state = 86}, - [4167] = {.lex_state = 298, .external_lex_state = 78}, - [4168] = {.lex_state = 316, .external_lex_state = 85}, - [4169] = {.lex_state = 289, .external_lex_state = 86}, - [4170] = {.lex_state = 298, .external_lex_state = 78}, - [4171] = {.lex_state = 316, .external_lex_state = 85}, - [4172] = {.lex_state = 316, .external_lex_state = 85}, - [4173] = {.lex_state = 316, .external_lex_state = 85}, - [4174] = {.lex_state = 298, .external_lex_state = 78}, - [4175] = {.lex_state = 289, .external_lex_state = 86}, - [4176] = {.lex_state = 289, .external_lex_state = 86}, - [4177] = {.lex_state = 316, .external_lex_state = 85}, - [4178] = {.lex_state = 316, .external_lex_state = 85}, - [4179] = {.lex_state = 316, .external_lex_state = 85}, - [4180] = {.lex_state = 316, .external_lex_state = 85}, - [4181] = {.lex_state = 316, .external_lex_state = 85}, - [4182] = {.lex_state = 298, .external_lex_state = 78}, - [4183] = {.lex_state = 289, .external_lex_state = 86}, - [4184] = {.lex_state = 289, .external_lex_state = 86}, - [4185] = {.lex_state = 289, .external_lex_state = 86}, - [4186] = {.lex_state = 298, .external_lex_state = 78}, - [4187] = {.lex_state = 316, .external_lex_state = 85}, - [4188] = {.lex_state = 298, .external_lex_state = 78}, - [4189] = {.lex_state = 298, .external_lex_state = 78}, - [4190] = {.lex_state = 289, .external_lex_state = 86}, - [4191] = {.lex_state = 316, .external_lex_state = 85}, - [4192] = {.lex_state = 289, .external_lex_state = 86}, - [4193] = {.lex_state = 289, .external_lex_state = 86}, - [4194] = {.lex_state = 289, .external_lex_state = 86}, - [4195] = {.lex_state = 289, .external_lex_state = 86}, - [4196] = {.lex_state = 289, .external_lex_state = 86}, - [4197] = {.lex_state = 316, .external_lex_state = 85}, - [4198] = {.lex_state = 316, .external_lex_state = 85}, - [4199] = {.lex_state = 316, .external_lex_state = 85}, - [4200] = {.lex_state = 289, .external_lex_state = 86}, - [4201] = {.lex_state = 289, .external_lex_state = 86}, - [4202] = {.lex_state = 289, .external_lex_state = 86}, - [4203] = {.lex_state = 316, .external_lex_state = 85}, - [4204] = {.lex_state = 289, .external_lex_state = 86}, - [4205] = {.lex_state = 289, .external_lex_state = 86}, - [4206] = {.lex_state = 289, .external_lex_state = 86}, - [4207] = {.lex_state = 289, .external_lex_state = 86}, - [4208] = {.lex_state = 289, .external_lex_state = 86}, - [4209] = {.lex_state = 289, .external_lex_state = 86}, - [4210] = {.lex_state = 289, .external_lex_state = 86}, - [4211] = {.lex_state = 289, .external_lex_state = 86}, - [4212] = {.lex_state = 289, .external_lex_state = 86}, - [4213] = {.lex_state = 316, .external_lex_state = 85}, - [4214] = {.lex_state = 316, .external_lex_state = 85}, - [4215] = {.lex_state = 289, .external_lex_state = 86}, - [4216] = {.lex_state = 208, .external_lex_state = 87}, - [4217] = {.lex_state = 65, .external_lex_state = 88}, - [4218] = {.lex_state = 67, .external_lex_state = 89}, - [4219] = {.lex_state = 65, .external_lex_state = 88}, - [4220] = {.lex_state = 65, .external_lex_state = 88}, - [4221] = {.lex_state = 319, .external_lex_state = 90}, - [4222] = {.lex_state = 68, .external_lex_state = 91}, - [4223] = {.lex_state = 67, .external_lex_state = 92}, - [4224] = {.lex_state = 67, .external_lex_state = 92}, - [4225] = {.lex_state = 67, .external_lex_state = 92}, - [4226] = {.lex_state = 65, .external_lex_state = 88}, - [4227] = {.lex_state = 67, .external_lex_state = 92}, - [4228] = {.lex_state = 208, .external_lex_state = 87}, - [4229] = {.lex_state = 68, .external_lex_state = 91}, - [4230] = {.lex_state = 68, .external_lex_state = 63}, - [4231] = {.lex_state = 67, .external_lex_state = 89}, - [4232] = {.lex_state = 67, .external_lex_state = 89}, - [4233] = {.lex_state = 67, .external_lex_state = 93}, - [4234] = {.lex_state = 67, .external_lex_state = 94}, - [4235] = {.lex_state = 67, .external_lex_state = 92}, - [4236] = {.lex_state = 65, .external_lex_state = 88}, - [4237] = {.lex_state = 68, .external_lex_state = 63}, - [4238] = {.lex_state = 68, .external_lex_state = 91}, - [4239] = {.lex_state = 67, .external_lex_state = 94}, - [4240] = {.lex_state = 67, .external_lex_state = 89}, - [4241] = {.lex_state = 65, .external_lex_state = 88}, - [4242] = {.lex_state = 67, .external_lex_state = 89}, - [4243] = {.lex_state = 65, .external_lex_state = 88}, - [4244] = {.lex_state = 521, .external_lex_state = 95}, - [4245] = {.lex_state = 67, .external_lex_state = 89}, - [4246] = {.lex_state = 67, .external_lex_state = 89}, - [4247] = {.lex_state = 67, .external_lex_state = 89}, - [4248] = {.lex_state = 67, .external_lex_state = 89}, - [4249] = {.lex_state = 67, .external_lex_state = 94}, - [4250] = {.lex_state = 67, .external_lex_state = 92}, - [4251] = {.lex_state = 68, .external_lex_state = 91}, - [4252] = {.lex_state = 67, .external_lex_state = 89}, - [4253] = {.lex_state = 519, .external_lex_state = 93}, - [4254] = {.lex_state = 67, .external_lex_state = 94}, - [4255] = {.lex_state = 68, .external_lex_state = 95}, - [4256] = {.lex_state = 68, .external_lex_state = 91}, - [4257] = {.lex_state = 67, .external_lex_state = 89}, - [4258] = {.lex_state = 68, .external_lex_state = 91}, - [4259] = {.lex_state = 68, .external_lex_state = 89}, - [4260] = {.lex_state = 67, .external_lex_state = 89}, - [4261] = {.lex_state = 522, .external_lex_state = 66}, - [4262] = {.lex_state = 67, .external_lex_state = 92}, - [4263] = {.lex_state = 67, .external_lex_state = 89}, - [4264] = {.lex_state = 519, .external_lex_state = 93}, - [4265] = {.lex_state = 67, .external_lex_state = 89}, - [4266] = {.lex_state = 67, .external_lex_state = 93}, - [4267] = {.lex_state = 67, .external_lex_state = 89}, - [4268] = {.lex_state = 521, .external_lex_state = 93}, - [4269] = {.lex_state = 520, .external_lex_state = 94}, - [4270] = {.lex_state = 68, .external_lex_state = 89}, - [4271] = {.lex_state = 68, .external_lex_state = 89}, - [4272] = {.lex_state = 68, .external_lex_state = 89}, - [4273] = {.lex_state = 67, .external_lex_state = 92}, - [4274] = {.lex_state = 67, .external_lex_state = 93}, - [4275] = {.lex_state = 519, .external_lex_state = 93}, - [4276] = {.lex_state = 67, .external_lex_state = 93}, - [4277] = {.lex_state = 520, .external_lex_state = 94}, - [4278] = {.lex_state = 68, .external_lex_state = 92}, - [4279] = {.lex_state = 67, .external_lex_state = 94}, - [4280] = {.lex_state = 519, .external_lex_state = 93}, - [4281] = {.lex_state = 519, .external_lex_state = 94}, - [4282] = {.lex_state = 68, .external_lex_state = 66}, - [4283] = {.lex_state = 68, .external_lex_state = 92}, - [4284] = {.lex_state = 67, .external_lex_state = 93}, - [4285] = {.lex_state = 68, .external_lex_state = 91}, - [4286] = {.lex_state = 68, .external_lex_state = 89}, - [4287] = {.lex_state = 522, .external_lex_state = 66}, - [4288] = {.lex_state = 521, .external_lex_state = 95}, - [4289] = {.lex_state = 520, .external_lex_state = 94}, - [4290] = {.lex_state = 67, .external_lex_state = 92}, - [4291] = {.lex_state = 319, .external_lex_state = 96}, - [4292] = {.lex_state = 68, .external_lex_state = 89}, - [4293] = {.lex_state = 319, .external_lex_state = 96}, - [4294] = {.lex_state = 520, .external_lex_state = 94}, - [4295] = {.lex_state = 67, .external_lex_state = 89}, - [4296] = {.lex_state = 68, .external_lex_state = 89}, - [4297] = {.lex_state = 68, .external_lex_state = 89}, - [4298] = {.lex_state = 67, .external_lex_state = 89}, - [4299] = {.lex_state = 67, .external_lex_state = 93}, - [4300] = {.lex_state = 67, .external_lex_state = 89}, - [4301] = {.lex_state = 67, .external_lex_state = 89}, - [4302] = {.lex_state = 67, .external_lex_state = 89}, - [4303] = {.lex_state = 68, .external_lex_state = 91}, - [4304] = {.lex_state = 68, .external_lex_state = 89}, - [4305] = {.lex_state = 520, .external_lex_state = 94}, - [4306] = {.lex_state = 67, .external_lex_state = 89}, - [4307] = {.lex_state = 67, .external_lex_state = 89}, - [4308] = {.lex_state = 67, .external_lex_state = 89}, - [4309] = {.lex_state = 67, .external_lex_state = 93}, - [4310] = {.lex_state = 67, .external_lex_state = 93}, - [4311] = {.lex_state = 519, .external_lex_state = 93}, - [4312] = {.lex_state = 519, .external_lex_state = 94}, - [4313] = {.lex_state = 521, .external_lex_state = 95}, - [4314] = {.lex_state = 520, .external_lex_state = 94}, - [4315] = {.lex_state = 68, .external_lex_state = 93}, - [4316] = {.lex_state = 521, .external_lex_state = 95}, - [4317] = {.lex_state = 67, .external_lex_state = 89}, - [4318] = {.lex_state = 521, .external_lex_state = 95}, - [4319] = {.lex_state = 67, .external_lex_state = 93}, - [4320] = {.lex_state = 521, .external_lex_state = 95}, - [4321] = {.lex_state = 519, .external_lex_state = 94}, - [4322] = {.lex_state = 68, .external_lex_state = 91}, - [4323] = {.lex_state = 68, .external_lex_state = 91}, - [4324] = {.lex_state = 67, .external_lex_state = 92}, - [4325] = {.lex_state = 68, .external_lex_state = 91}, - [4326] = {.lex_state = 68, .external_lex_state = 91}, - [4327] = {.lex_state = 68, .external_lex_state = 91}, - [4328] = {.lex_state = 67, .external_lex_state = 89}, - [4329] = {.lex_state = 67, .external_lex_state = 89}, - [4330] = {.lex_state = 67, .external_lex_state = 89}, - [4331] = {.lex_state = 67, .external_lex_state = 93}, - [4332] = {.lex_state = 68, .external_lex_state = 91}, - [4333] = {.lex_state = 521, .external_lex_state = 95}, - [4334] = {.lex_state = 521, .external_lex_state = 95}, - [4335] = {.lex_state = 68, .external_lex_state = 91}, - [4336] = {.lex_state = 68, .external_lex_state = 91}, - [4337] = {.lex_state = 519, .external_lex_state = 93}, - [4338] = {.lex_state = 519, .external_lex_state = 93}, - [4339] = {.lex_state = 68, .external_lex_state = 92}, - [4340] = {.lex_state = 68, .external_lex_state = 91}, - [4341] = {.lex_state = 68, .external_lex_state = 92}, - [4342] = {.lex_state = 68, .external_lex_state = 92}, - [4343] = {.lex_state = 68, .external_lex_state = 91}, - [4344] = {.lex_state = 319, .external_lex_state = 96}, - [4345] = {.lex_state = 521, .external_lex_state = 95}, - [4346] = {.lex_state = 67, .external_lex_state = 92}, - [4347] = {.lex_state = 520, .external_lex_state = 94}, - [4348] = {.lex_state = 519, .external_lex_state = 93}, - [4349] = {.lex_state = 68, .external_lex_state = 92}, - [4350] = {.lex_state = 521, .external_lex_state = 95}, - [4351] = {.lex_state = 67, .external_lex_state = 92}, - [4352] = {.lex_state = 67, .external_lex_state = 93}, - [4353] = {.lex_state = 519, .external_lex_state = 94}, - [4354] = {.lex_state = 68, .external_lex_state = 91}, - [4355] = {.lex_state = 68, .external_lex_state = 91}, - [4356] = {.lex_state = 68, .external_lex_state = 91}, - [4357] = {.lex_state = 521, .external_lex_state = 95}, - [4358] = {.lex_state = 68, .external_lex_state = 66}, - [4359] = {.lex_state = 519, .external_lex_state = 93}, - [4360] = {.lex_state = 521, .external_lex_state = 95}, - [4361] = {.lex_state = 521, .external_lex_state = 95}, - [4362] = {.lex_state = 519, .external_lex_state = 93}, - [4363] = {.lex_state = 319, .external_lex_state = 96}, - [4364] = {.lex_state = 68, .external_lex_state = 89}, - [4365] = {.lex_state = 521, .external_lex_state = 95}, - [4366] = {.lex_state = 519, .external_lex_state = 93}, - [4367] = {.lex_state = 519, .external_lex_state = 93}, - [4368] = {.lex_state = 68, .external_lex_state = 63}, - [4369] = {.lex_state = 519, .external_lex_state = 93}, - [4370] = {.lex_state = 68, .external_lex_state = 89}, - [4371] = {.lex_state = 67, .external_lex_state = 94}, - [4372] = {.lex_state = 519, .external_lex_state = 93}, - [4373] = {.lex_state = 521, .external_lex_state = 95}, - [4374] = {.lex_state = 521, .external_lex_state = 95}, - [4375] = {.lex_state = 67, .external_lex_state = 93}, - [4376] = {.lex_state = 519, .external_lex_state = 94}, - [4377] = {.lex_state = 521, .external_lex_state = 95}, - [4378] = {.lex_state = 521, .external_lex_state = 95}, - [4379] = {.lex_state = 519, .external_lex_state = 93}, - [4380] = {.lex_state = 68, .external_lex_state = 95}, - [4381] = {.lex_state = 519, .external_lex_state = 94}, - [4382] = {.lex_state = 67, .external_lex_state = 92}, - [4383] = {.lex_state = 68, .external_lex_state = 63}, - [4384] = {.lex_state = 68, .external_lex_state = 91}, - [4385] = {.lex_state = 68, .external_lex_state = 91}, - [4386] = {.lex_state = 519, .external_lex_state = 93}, - [4387] = {.lex_state = 67, .external_lex_state = 92}, - [4388] = {.lex_state = 67, .external_lex_state = 89}, - [4389] = {.lex_state = 519, .external_lex_state = 93}, - [4390] = {.lex_state = 68, .external_lex_state = 95}, - [4391] = {.lex_state = 519, .external_lex_state = 93}, - [4392] = {.lex_state = 519, .external_lex_state = 93}, - [4393] = {.lex_state = 521, .external_lex_state = 95}, - [4394] = {.lex_state = 520, .external_lex_state = 94}, - [4395] = {.lex_state = 519, .external_lex_state = 93}, - [4396] = {.lex_state = 519, .external_lex_state = 94}, - [4397] = {.lex_state = 520, .external_lex_state = 94}, - [4398] = {.lex_state = 521, .external_lex_state = 95}, - [4399] = {.lex_state = 67, .external_lex_state = 89}, - [4400] = {.lex_state = 519, .external_lex_state = 94}, - [4401] = {.lex_state = 519, .external_lex_state = 93}, - [4402] = {.lex_state = 521, .external_lex_state = 95}, - [4403] = {.lex_state = 519, .external_lex_state = 93}, - [4404] = {.lex_state = 67, .external_lex_state = 89}, - [4405] = {.lex_state = 68, .external_lex_state = 91}, - [4406] = {.lex_state = 68, .external_lex_state = 89}, - [4407] = {.lex_state = 521, .external_lex_state = 95}, - [4408] = {.lex_state = 521, .external_lex_state = 95}, - [4409] = {.lex_state = 67, .external_lex_state = 89}, - [4410] = {.lex_state = 68, .external_lex_state = 95}, - [4411] = {.lex_state = 519, .external_lex_state = 93}, - [4412] = {.lex_state = 68, .external_lex_state = 91}, - [4413] = {.lex_state = 68, .external_lex_state = 95}, - [4414] = {.lex_state = 68, .external_lex_state = 95}, - [4415] = {.lex_state = 519, .external_lex_state = 94}, - [4416] = {.lex_state = 68, .external_lex_state = 94}, - [4417] = {.lex_state = 68, .external_lex_state = 89}, - [4418] = {.lex_state = 519, .external_lex_state = 93}, - [4419] = {.lex_state = 68, .external_lex_state = 95}, - [4420] = {.lex_state = 67, .external_lex_state = 94}, - [4421] = {.lex_state = 522, .external_lex_state = 94}, - [4422] = {.lex_state = 238, .external_lex_state = 97}, - [4423] = {.lex_state = 520, .external_lex_state = 94}, - [4424] = {.lex_state = 67, .external_lex_state = 93}, - [4425] = {.lex_state = 67, .external_lex_state = 93}, - [4426] = {.lex_state = 67, .external_lex_state = 93}, - [4427] = {.lex_state = 67, .external_lex_state = 93}, - [4428] = {.lex_state = 68, .external_lex_state = 94}, - [4429] = {.lex_state = 521, .external_lex_state = 93}, - [4430] = {.lex_state = 68, .external_lex_state = 93}, - [4431] = {.lex_state = 68, .external_lex_state = 66}, - [4432] = {.lex_state = 67, .external_lex_state = 93}, - [4433] = {.lex_state = 68, .external_lex_state = 94}, - [4434] = {.lex_state = 68, .external_lex_state = 95}, - [4435] = {.lex_state = 68, .external_lex_state = 95}, - [4436] = {.lex_state = 68, .external_lex_state = 95}, - [4437] = {.lex_state = 68, .external_lex_state = 95}, - [4438] = {.lex_state = 67, .external_lex_state = 93}, - [4439] = {.lex_state = 521, .external_lex_state = 66}, - [4440] = {.lex_state = 519, .external_lex_state = 93}, - [4441] = {.lex_state = 68, .external_lex_state = 95}, - [4442] = {.lex_state = 68, .external_lex_state = 89}, - [4443] = {.lex_state = 67, .external_lex_state = 93}, - [4444] = {.lex_state = 67, .external_lex_state = 93}, - [4445] = {.lex_state = 67, .external_lex_state = 93}, - [4446] = {.lex_state = 67, .external_lex_state = 93}, - [4447] = {.lex_state = 68, .external_lex_state = 95}, - [4448] = {.lex_state = 68, .external_lex_state = 95}, - [4449] = {.lex_state = 68, .external_lex_state = 95}, - [4450] = {.lex_state = 519, .external_lex_state = 93}, - [4451] = {.lex_state = 521, .external_lex_state = 93}, - [4452] = {.lex_state = 519, .external_lex_state = 93}, - [4453] = {.lex_state = 68, .external_lex_state = 93}, - [4454] = {.lex_state = 67, .external_lex_state = 93}, - [4455] = {.lex_state = 68, .external_lex_state = 94}, - [4456] = {.lex_state = 521, .external_lex_state = 93}, - [4457] = {.lex_state = 68, .external_lex_state = 95}, - [4458] = {.lex_state = 238, .external_lex_state = 97}, - [4459] = {.lex_state = 519, .external_lex_state = 93}, - [4460] = {.lex_state = 238, .external_lex_state = 97}, - [4461] = {.lex_state = 68, .external_lex_state = 89}, - [4462] = {.lex_state = 68, .external_lex_state = 92}, - [4463] = {.lex_state = 519, .external_lex_state = 93}, - [4464] = {.lex_state = 67, .external_lex_state = 93}, - [4465] = {.lex_state = 68, .external_lex_state = 94}, - [4466] = {.lex_state = 519, .external_lex_state = 93}, - [4467] = {.lex_state = 519, .external_lex_state = 93}, - [4468] = {.lex_state = 68, .external_lex_state = 93}, - [4469] = {.lex_state = 68, .external_lex_state = 89}, - [4470] = {.lex_state = 68, .external_lex_state = 89}, - [4471] = {.lex_state = 68, .external_lex_state = 93}, - [4472] = {.lex_state = 519, .external_lex_state = 93}, - [4473] = {.lex_state = 521, .external_lex_state = 93}, - [4474] = {.lex_state = 68, .external_lex_state = 89}, - [4475] = {.lex_state = 521, .external_lex_state = 93}, - [4476] = {.lex_state = 519, .external_lex_state = 93}, - [4477] = {.lex_state = 519, .external_lex_state = 93}, - [4478] = {.lex_state = 68, .external_lex_state = 95}, - [4479] = {.lex_state = 519, .external_lex_state = 93}, - [4480] = {.lex_state = 519, .external_lex_state = 94}, - [4481] = {.lex_state = 519, .external_lex_state = 93}, - [4482] = {.lex_state = 67, .external_lex_state = 93}, - [4483] = {.lex_state = 68, .external_lex_state = 92}, - [4484] = {.lex_state = 519, .external_lex_state = 93}, - [4485] = {.lex_state = 522, .external_lex_state = 94}, - [4486] = {.lex_state = 519, .external_lex_state = 93}, - [4487] = {.lex_state = 521, .external_lex_state = 95}, - [4488] = {.lex_state = 519, .external_lex_state = 93}, - [4489] = {.lex_state = 519, .external_lex_state = 94}, - [4490] = {.lex_state = 68, .external_lex_state = 95}, - [4491] = {.lex_state = 238, .external_lex_state = 97}, - [4492] = {.lex_state = 67, .external_lex_state = 94}, - [4493] = {.lex_state = 67, .external_lex_state = 93}, - [4494] = {.lex_state = 67, .external_lex_state = 93}, - [4495] = {.lex_state = 519, .external_lex_state = 93}, - [4496] = {.lex_state = 68, .external_lex_state = 89}, - [4497] = {.lex_state = 68, .external_lex_state = 89}, - [4498] = {.lex_state = 67, .external_lex_state = 94}, - [4499] = {.lex_state = 68, .external_lex_state = 95}, - [4500] = {.lex_state = 522, .external_lex_state = 94}, - [4501] = {.lex_state = 68, .external_lex_state = 89}, - [4502] = {.lex_state = 68, .external_lex_state = 89}, - [4503] = {.lex_state = 522, .external_lex_state = 66}, - [4504] = {.lex_state = 68, .external_lex_state = 93}, - [4505] = {.lex_state = 521, .external_lex_state = 95}, - [4506] = {.lex_state = 68, .external_lex_state = 93}, - [4507] = {.lex_state = 68, .external_lex_state = 92}, - [4508] = {.lex_state = 68, .external_lex_state = 95}, - [4509] = {.lex_state = 319, .external_lex_state = 76}, - [4510] = {.lex_state = 519, .external_lex_state = 93}, - [4511] = {.lex_state = 521, .external_lex_state = 95}, - [4512] = {.lex_state = 68, .external_lex_state = 89}, - [4513] = {.lex_state = 519, .external_lex_state = 93}, - [4514] = {.lex_state = 521, .external_lex_state = 95}, - [4515] = {.lex_state = 521, .external_lex_state = 93}, - [4516] = {.lex_state = 68, .external_lex_state = 89}, - [4517] = {.lex_state = 519, .external_lex_state = 94}, - [4518] = {.lex_state = 519, .external_lex_state = 93}, - [4519] = {.lex_state = 521, .external_lex_state = 66}, - [4520] = {.lex_state = 238, .external_lex_state = 97}, - [4521] = {.lex_state = 522, .external_lex_state = 94}, - [4522] = {.lex_state = 519, .external_lex_state = 93}, - [4523] = {.lex_state = 519, .external_lex_state = 93}, - [4524] = {.lex_state = 521, .external_lex_state = 93}, - [4525] = {.lex_state = 521, .external_lex_state = 95}, - [4526] = {.lex_state = 68, .external_lex_state = 95}, - [4527] = {.lex_state = 67, .external_lex_state = 94}, - [4528] = {.lex_state = 68, .external_lex_state = 94}, - [4529] = {.lex_state = 519, .external_lex_state = 93}, - [4530] = {.lex_state = 519, .external_lex_state = 94}, - [4531] = {.lex_state = 521, .external_lex_state = 95}, - [4532] = {.lex_state = 68, .external_lex_state = 89}, - [4533] = {.lex_state = 68, .external_lex_state = 66}, - [4534] = {.lex_state = 521, .external_lex_state = 66}, - [4535] = {.lex_state = 521, .external_lex_state = 95}, - [4536] = {.lex_state = 521, .external_lex_state = 93}, - [4537] = {.lex_state = 521, .external_lex_state = 93}, - [4538] = {.lex_state = 68, .external_lex_state = 92}, - [4539] = {.lex_state = 68, .external_lex_state = 89}, - [4540] = {.lex_state = 521, .external_lex_state = 93}, - [4541] = {.lex_state = 319, .external_lex_state = 76}, - [4542] = {.lex_state = 319, .external_lex_state = 76}, - [4543] = {.lex_state = 521, .external_lex_state = 93}, - [4544] = {.lex_state = 521, .external_lex_state = 93}, - [4545] = {.lex_state = 521, .external_lex_state = 93}, - [4546] = {.lex_state = 522, .external_lex_state = 94}, - [4547] = {.lex_state = 520, .external_lex_state = 94}, - [4548] = {.lex_state = 521, .external_lex_state = 93}, - [4549] = {.lex_state = 67, .external_lex_state = 94}, - [4550] = {.lex_state = 521, .external_lex_state = 95}, - [4551] = {.lex_state = 519, .external_lex_state = 94}, - [4552] = {.lex_state = 68, .external_lex_state = 89}, - [4553] = {.lex_state = 68, .external_lex_state = 89}, - [4554] = {.lex_state = 68, .external_lex_state = 92}, - [4555] = {.lex_state = 68, .external_lex_state = 93}, - [4556] = {.lex_state = 68, .external_lex_state = 95}, - [4557] = {.lex_state = 68, .external_lex_state = 95}, - [4558] = {.lex_state = 238, .external_lex_state = 97}, - [4559] = {.lex_state = 521, .external_lex_state = 95}, - [4560] = {.lex_state = 68, .external_lex_state = 89}, - [4561] = {.lex_state = 521, .external_lex_state = 93}, - [4562] = {.lex_state = 68, .external_lex_state = 93}, - [4563] = {.lex_state = 68, .external_lex_state = 63}, - [4564] = {.lex_state = 521, .external_lex_state = 93}, - [4565] = {.lex_state = 519, .external_lex_state = 94}, - [4566] = {.lex_state = 521, .external_lex_state = 93}, - [4567] = {.lex_state = 519, .external_lex_state = 94}, - [4568] = {.lex_state = 522, .external_lex_state = 66}, - [4569] = {.lex_state = 521, .external_lex_state = 93}, - [4570] = {.lex_state = 519, .external_lex_state = 94}, - [4571] = {.lex_state = 519, .external_lex_state = 94}, - [4572] = {.lex_state = 68, .external_lex_state = 89}, - [4573] = {.lex_state = 520, .external_lex_state = 94}, - [4574] = {.lex_state = 521, .external_lex_state = 66}, - [4575] = {.lex_state = 67, .external_lex_state = 93}, - [4576] = {.lex_state = 67, .external_lex_state = 93}, - [4577] = {.lex_state = 67, .external_lex_state = 92}, - [4578] = {.lex_state = 521, .external_lex_state = 93}, - [4579] = {.lex_state = 68, .external_lex_state = 93}, - [4580] = {.lex_state = 67, .external_lex_state = 94}, - [4581] = {.lex_state = 522, .external_lex_state = 66}, - [4582] = {.lex_state = 519, .external_lex_state = 93}, - [4583] = {.lex_state = 519, .external_lex_state = 93}, - [4584] = {.lex_state = 519, .external_lex_state = 93}, - [4585] = {.lex_state = 521, .external_lex_state = 95}, - [4586] = {.lex_state = 521, .external_lex_state = 95}, - [4587] = {.lex_state = 68, .external_lex_state = 95}, - [4588] = {.lex_state = 67, .external_lex_state = 93}, - [4589] = {.lex_state = 68, .external_lex_state = 93}, - [4590] = {.lex_state = 67, .external_lex_state = 93}, - [4591] = {.lex_state = 519, .external_lex_state = 93}, - [4592] = {.lex_state = 519, .external_lex_state = 93}, - [4593] = {.lex_state = 521, .external_lex_state = 93}, - [4594] = {.lex_state = 521, .external_lex_state = 95}, - [4595] = {.lex_state = 68, .external_lex_state = 95}, - [4596] = {.lex_state = 67, .external_lex_state = 94}, - [4597] = {.lex_state = 67, .external_lex_state = 94}, - [4598] = {.lex_state = 521, .external_lex_state = 93}, - [4599] = {.lex_state = 519, .external_lex_state = 93}, - [4600] = {.lex_state = 68, .external_lex_state = 89}, - [4601] = {.lex_state = 68, .external_lex_state = 93}, - [4602] = {.lex_state = 519, .external_lex_state = 93}, - [4603] = {.lex_state = 521, .external_lex_state = 95}, - [4604] = {.lex_state = 519, .external_lex_state = 93}, - [4605] = {.lex_state = 319, .external_lex_state = 76}, - [4606] = {.lex_state = 521, .external_lex_state = 93}, - [4607] = {.lex_state = 67, .external_lex_state = 92}, - [4608] = {.lex_state = 521, .external_lex_state = 94}, - [4609] = {.lex_state = 520, .external_lex_state = 94}, - [4610] = {.lex_state = 520, .external_lex_state = 94}, - [4611] = {.lex_state = 521, .external_lex_state = 93}, - [4612] = {.lex_state = 520, .external_lex_state = 94}, - [4613] = {.lex_state = 67, .external_lex_state = 92}, - [4614] = {.lex_state = 521, .external_lex_state = 93}, - [4615] = {.lex_state = 520, .external_lex_state = 94}, - [4616] = {.lex_state = 68, .external_lex_state = 92}, - [4617] = {.lex_state = 520, .external_lex_state = 94}, - [4618] = {.lex_state = 68, .external_lex_state = 93}, - [4619] = {.lex_state = 521, .external_lex_state = 93}, - [4620] = {.lex_state = 68, .external_lex_state = 92}, - [4621] = {.lex_state = 521, .external_lex_state = 93}, - [4622] = {.lex_state = 521, .external_lex_state = 93}, - [4623] = {.lex_state = 520, .external_lex_state = 94}, - [4624] = {.lex_state = 294, .external_lex_state = 98}, - [4625] = {.lex_state = 519, .external_lex_state = 94}, - [4626] = {.lex_state = 521, .external_lex_state = 93}, - [4627] = {.lex_state = 521, .external_lex_state = 93}, - [4628] = {.lex_state = 238, .external_lex_state = 97}, - [4629] = {.lex_state = 294, .external_lex_state = 98}, - [4630] = {.lex_state = 521, .external_lex_state = 93}, - [4631] = {.lex_state = 238, .external_lex_state = 97}, - [4632] = {.lex_state = 67, .external_lex_state = 92}, - [4633] = {.lex_state = 521, .external_lex_state = 93}, - [4634] = {.lex_state = 521, .external_lex_state = 93}, - [4635] = {.lex_state = 521, .external_lex_state = 93}, - [4636] = {.lex_state = 522, .external_lex_state = 66}, - [4637] = {.lex_state = 68, .external_lex_state = 93}, - [4638] = {.lex_state = 68, .external_lex_state = 93}, - [4639] = {.lex_state = 68, .external_lex_state = 63}, - [4640] = {.lex_state = 521, .external_lex_state = 93}, - [4641] = {.lex_state = 294, .external_lex_state = 98}, - [4642] = {.lex_state = 520, .external_lex_state = 94}, - [4643] = {.lex_state = 67, .external_lex_state = 92}, - [4644] = {.lex_state = 519, .external_lex_state = 94}, - [4645] = {.lex_state = 68, .external_lex_state = 94}, - [4646] = {.lex_state = 312, .external_lex_state = 99}, - [4647] = {.lex_state = 67, .external_lex_state = 92}, - [4648] = {.lex_state = 67, .external_lex_state = 92}, - [4649] = {.lex_state = 294, .external_lex_state = 98}, - [4650] = {.lex_state = 521, .external_lex_state = 94}, - [4651] = {.lex_state = 312, .external_lex_state = 99}, - [4652] = {.lex_state = 294, .external_lex_state = 98}, - [4653] = {.lex_state = 238, .external_lex_state = 97}, - [4654] = {.lex_state = 294, .external_lex_state = 98}, - [4655] = {.lex_state = 520, .external_lex_state = 94}, - [4656] = {.lex_state = 68, .external_lex_state = 93}, - [4657] = {.lex_state = 294, .external_lex_state = 98}, - [4658] = {.lex_state = 294, .external_lex_state = 98}, - [4659] = {.lex_state = 519, .external_lex_state = 94}, - [4660] = {.lex_state = 294, .external_lex_state = 98}, - [4661] = {.lex_state = 294, .external_lex_state = 98}, - [4662] = {.lex_state = 522, .external_lex_state = 94}, - [4663] = {.lex_state = 521, .external_lex_state = 94}, - [4664] = {.lex_state = 68, .external_lex_state = 92}, - [4665] = {.lex_state = 519, .external_lex_state = 94}, - [4666] = {.lex_state = 520, .external_lex_state = 94}, - [4667] = {.lex_state = 519, .external_lex_state = 94}, - [4668] = {.lex_state = 294, .external_lex_state = 98}, - [4669] = {.lex_state = 521, .external_lex_state = 93}, - [4670] = {.lex_state = 238, .external_lex_state = 97}, - [4671] = {.lex_state = 294, .external_lex_state = 98}, - [4672] = {.lex_state = 294, .external_lex_state = 98}, - [4673] = {.lex_state = 521, .external_lex_state = 93}, - [4674] = {.lex_state = 521, .external_lex_state = 93}, - [4675] = {.lex_state = 294, .external_lex_state = 98}, - [4676] = {.lex_state = 294, .external_lex_state = 98}, - [4677] = {.lex_state = 294, .external_lex_state = 98}, - [4678] = {.lex_state = 294, .external_lex_state = 98}, - [4679] = {.lex_state = 294, .external_lex_state = 98}, - [4680] = {.lex_state = 294, .external_lex_state = 98}, - [4681] = {.lex_state = 294, .external_lex_state = 98}, - [4682] = {.lex_state = 294, .external_lex_state = 98}, - [4683] = {.lex_state = 521, .external_lex_state = 93}, - [4684] = {.lex_state = 521, .external_lex_state = 93}, - [4685] = {.lex_state = 519, .external_lex_state = 94}, - [4686] = {.lex_state = 294, .external_lex_state = 98}, - [4687] = {.lex_state = 521, .external_lex_state = 93}, - [4688] = {.lex_state = 522, .external_lex_state = 66}, - [4689] = {.lex_state = 521, .external_lex_state = 93}, - [4690] = {.lex_state = 294, .external_lex_state = 98}, - [4691] = {.lex_state = 294, .external_lex_state = 98}, - [4692] = {.lex_state = 521, .external_lex_state = 93}, - [4693] = {.lex_state = 294, .external_lex_state = 98}, - [4694] = {.lex_state = 294, .external_lex_state = 98}, - [4695] = {.lex_state = 68, .external_lex_state = 94}, - [4696] = {.lex_state = 294, .external_lex_state = 98}, - [4697] = {.lex_state = 522, .external_lex_state = 94}, - [4698] = {.lex_state = 521, .external_lex_state = 93}, - [4699] = {.lex_state = 521, .external_lex_state = 93}, - [4700] = {.lex_state = 312, .external_lex_state = 99}, - [4701] = {.lex_state = 68, .external_lex_state = 93}, - [4702] = {.lex_state = 520, .external_lex_state = 94}, - [4703] = {.lex_state = 294, .external_lex_state = 98}, - [4704] = {.lex_state = 68, .external_lex_state = 94}, - [4705] = {.lex_state = 521, .external_lex_state = 93}, - [4706] = {.lex_state = 68, .external_lex_state = 93}, - [4707] = {.lex_state = 294, .external_lex_state = 98}, - [4708] = {.lex_state = 238, .external_lex_state = 97}, - [4709] = {.lex_state = 67, .external_lex_state = 92}, - [4710] = {.lex_state = 521, .external_lex_state = 94}, - [4711] = {.lex_state = 521, .external_lex_state = 93}, - [4712] = {.lex_state = 67, .external_lex_state = 92}, - [4713] = {.lex_state = 294, .external_lex_state = 98}, - [4714] = {.lex_state = 294, .external_lex_state = 98}, - [4715] = {.lex_state = 294, .external_lex_state = 98}, - [4716] = {.lex_state = 521, .external_lex_state = 94}, - [4717] = {.lex_state = 521, .external_lex_state = 94}, - [4718] = {.lex_state = 294, .external_lex_state = 98}, - [4719] = {.lex_state = 520, .external_lex_state = 94}, - [4720] = {.lex_state = 294, .external_lex_state = 98}, - [4721] = {.lex_state = 312, .external_lex_state = 99}, - [4722] = {.lex_state = 522, .external_lex_state = 94}, - [4723] = {.lex_state = 519, .external_lex_state = 94}, - [4724] = {.lex_state = 522, .external_lex_state = 94}, - [4725] = {.lex_state = 522, .external_lex_state = 94}, - [4726] = {.lex_state = 68, .external_lex_state = 66}, - [4727] = {.lex_state = 520, .external_lex_state = 94}, - [4728] = {.lex_state = 294, .external_lex_state = 98}, - [4729] = {.lex_state = 294, .external_lex_state = 98}, - [4730] = {.lex_state = 294, .external_lex_state = 98}, - [4731] = {.lex_state = 294, .external_lex_state = 98}, - [4732] = {.lex_state = 294, .external_lex_state = 98}, - [4733] = {.lex_state = 521, .external_lex_state = 93}, - [4734] = {.lex_state = 521, .external_lex_state = 94}, - [4735] = {.lex_state = 238, .external_lex_state = 97}, - [4736] = {.lex_state = 520, .external_lex_state = 94}, - [4737] = {.lex_state = 294, .external_lex_state = 98}, - [4738] = {.lex_state = 294, .external_lex_state = 98}, - [4739] = {.lex_state = 68, .external_lex_state = 93}, - [4740] = {.lex_state = 294, .external_lex_state = 98}, - [4741] = {.lex_state = 312, .external_lex_state = 99}, - [4742] = {.lex_state = 312, .external_lex_state = 99}, - [4743] = {.lex_state = 312, .external_lex_state = 99}, - [4744] = {.lex_state = 294, .external_lex_state = 98}, - [4745] = {.lex_state = 521, .external_lex_state = 94}, - [4746] = {.lex_state = 521, .external_lex_state = 94}, - [4747] = {.lex_state = 520, .external_lex_state = 94}, - [4748] = {.lex_state = 521, .external_lex_state = 93}, - [4749] = {.lex_state = 294, .external_lex_state = 98}, - [4750] = {.lex_state = 519, .external_lex_state = 93}, - [4751] = {.lex_state = 294, .external_lex_state = 98}, - [4752] = {.lex_state = 294, .external_lex_state = 98}, - [4753] = {.lex_state = 68, .external_lex_state = 93}, - [4754] = {.lex_state = 519, .external_lex_state = 93}, - [4755] = {.lex_state = 67, .external_lex_state = 92}, - [4756] = {.lex_state = 294, .external_lex_state = 98}, - [4757] = {.lex_state = 312, .external_lex_state = 99}, - [4758] = {.lex_state = 520, .external_lex_state = 94}, - [4759] = {.lex_state = 522, .external_lex_state = 66}, - [4760] = {.lex_state = 521, .external_lex_state = 93}, - [4761] = {.lex_state = 294, .external_lex_state = 98}, - [4762] = {.lex_state = 68, .external_lex_state = 93}, - [4763] = {.lex_state = 294, .external_lex_state = 98}, - [4764] = {.lex_state = 294, .external_lex_state = 98}, - [4765] = {.lex_state = 294, .external_lex_state = 98}, - [4766] = {.lex_state = 238, .external_lex_state = 97}, - [4767] = {.lex_state = 68, .external_lex_state = 94}, - [4768] = {.lex_state = 294, .external_lex_state = 98}, - [4769] = {.lex_state = 520, .external_lex_state = 94}, - [4770] = {.lex_state = 68, .external_lex_state = 93}, - [4771] = {.lex_state = 521, .external_lex_state = 93}, - [4772] = {.lex_state = 67, .external_lex_state = 94}, - [4773] = {.lex_state = 294, .external_lex_state = 98}, - [4774] = {.lex_state = 521, .external_lex_state = 93}, - [4775] = {.lex_state = 521, .external_lex_state = 95}, - [4776] = {.lex_state = 519, .external_lex_state = 93}, - [4777] = {.lex_state = 519, .external_lex_state = 93}, - [4778] = {.lex_state = 521, .external_lex_state = 94}, - [4779] = {.lex_state = 294, .external_lex_state = 98}, - [4780] = {.lex_state = 68, .external_lex_state = 93}, - [4781] = {.lex_state = 521, .external_lex_state = 95}, - [4782] = {.lex_state = 520, .external_lex_state = 94}, - [4783] = {.lex_state = 521, .external_lex_state = 95}, - [4784] = {.lex_state = 521, .external_lex_state = 66}, - [4785] = {.lex_state = 67, .external_lex_state = 92}, - [4786] = {.lex_state = 67, .external_lex_state = 92}, - [4787] = {.lex_state = 521, .external_lex_state = 66}, - [4788] = {.lex_state = 68, .external_lex_state = 92}, - [4789] = {.lex_state = 67, .external_lex_state = 92}, - [4790] = {.lex_state = 68, .external_lex_state = 93}, - [4791] = {.lex_state = 294, .external_lex_state = 98}, - [4792] = {.lex_state = 68, .external_lex_state = 92}, - [4793] = {.lex_state = 522, .external_lex_state = 94}, - [4794] = {.lex_state = 522, .external_lex_state = 94}, - [4795] = {.lex_state = 521, .external_lex_state = 93}, - [4796] = {.lex_state = 68, .external_lex_state = 93}, - [4797] = {.lex_state = 521, .external_lex_state = 94}, - [4798] = {.lex_state = 294, .external_lex_state = 98}, - [4799] = {.lex_state = 294, .external_lex_state = 98}, - [4800] = {.lex_state = 294, .external_lex_state = 98}, - [4801] = {.lex_state = 238, .external_lex_state = 97}, - [4802] = {.lex_state = 521, .external_lex_state = 95}, - [4803] = {.lex_state = 312, .external_lex_state = 99}, - [4804] = {.lex_state = 68, .external_lex_state = 63}, - [4805] = {.lex_state = 68, .external_lex_state = 93}, - [4806] = {.lex_state = 519, .external_lex_state = 93}, - [4807] = {.lex_state = 238, .external_lex_state = 97}, - [4808] = {.lex_state = 238, .external_lex_state = 97}, - [4809] = {.lex_state = 294, .external_lex_state = 98}, - [4810] = {.lex_state = 238, .external_lex_state = 97}, - [4811] = {.lex_state = 238, .external_lex_state = 97}, - [4812] = {.lex_state = 238, .external_lex_state = 97}, - [4813] = {.lex_state = 294, .external_lex_state = 98}, - [4814] = {.lex_state = 294, .external_lex_state = 98}, - [4815] = {.lex_state = 294, .external_lex_state = 98}, - [4816] = {.lex_state = 519, .external_lex_state = 93}, - [4817] = {.lex_state = 294, .external_lex_state = 98}, - [4818] = {.lex_state = 67, .external_lex_state = 92}, - [4819] = {.lex_state = 294, .external_lex_state = 98}, - [4820] = {.lex_state = 67, .external_lex_state = 92}, - [4821] = {.lex_state = 67, .external_lex_state = 92}, - [4822] = {.lex_state = 519, .external_lex_state = 93}, - [4823] = {.lex_state = 294, .external_lex_state = 98}, - [4824] = {.lex_state = 68, .external_lex_state = 92}, - [4825] = {.lex_state = 238, .external_lex_state = 97}, - [4826] = {.lex_state = 294, .external_lex_state = 98}, - [4827] = {.lex_state = 67, .external_lex_state = 92}, - [4828] = {.lex_state = 521, .external_lex_state = 93}, - [4829] = {.lex_state = 519, .external_lex_state = 94}, - [4830] = {.lex_state = 294, .external_lex_state = 98}, - [4831] = {.lex_state = 68, .external_lex_state = 93}, - [4832] = {.lex_state = 294, .external_lex_state = 98}, - [4833] = {.lex_state = 238, .external_lex_state = 97}, - [4834] = {.lex_state = 519, .external_lex_state = 93}, - [4835] = {.lex_state = 519, .external_lex_state = 93}, - [4836] = {.lex_state = 294, .external_lex_state = 98}, - [4837] = {.lex_state = 238, .external_lex_state = 97}, - [4838] = {.lex_state = 519, .external_lex_state = 93}, - [4839] = {.lex_state = 294, .external_lex_state = 98}, - [4840] = {.lex_state = 68, .external_lex_state = 63}, - [4841] = {.lex_state = 294, .external_lex_state = 98}, - [4842] = {.lex_state = 238, .external_lex_state = 97}, - [4843] = {.lex_state = 294, .external_lex_state = 98}, - [4844] = {.lex_state = 67, .external_lex_state = 92}, - [4845] = {.lex_state = 294, .external_lex_state = 98}, - [4846] = {.lex_state = 522, .external_lex_state = 94}, - [4847] = {.lex_state = 238, .external_lex_state = 97}, - [4848] = {.lex_state = 294, .external_lex_state = 98}, - [4849] = {.lex_state = 68, .external_lex_state = 93}, - [4850] = {.lex_state = 294, .external_lex_state = 98}, - [4851] = {.lex_state = 294, .external_lex_state = 98}, - [4852] = {.lex_state = 68, .external_lex_state = 93}, - [4853] = {.lex_state = 68, .external_lex_state = 93}, - [4854] = {.lex_state = 294, .external_lex_state = 98}, - [4855] = {.lex_state = 68, .external_lex_state = 94}, - [4856] = {.lex_state = 520, .external_lex_state = 94}, - [4857] = {.lex_state = 294, .external_lex_state = 98}, - [4858] = {.lex_state = 520, .external_lex_state = 94}, - [4859] = {.lex_state = 68, .external_lex_state = 93}, - [4860] = {.lex_state = 521, .external_lex_state = 94}, - [4861] = {.lex_state = 520, .external_lex_state = 94}, - [4862] = {.lex_state = 238, .external_lex_state = 97}, - [4863] = {.lex_state = 294, .external_lex_state = 98}, - [4864] = {.lex_state = 67, .external_lex_state = 94}, - [4865] = {.lex_state = 522, .external_lex_state = 94}, - [4866] = {.lex_state = 68, .external_lex_state = 92}, - [4867] = {.lex_state = 68, .external_lex_state = 92}, - [4868] = {.lex_state = 522, .external_lex_state = 94}, - [4869] = {.lex_state = 522, .external_lex_state = 94}, - [4870] = {.lex_state = 68, .external_lex_state = 66}, - [4871] = {.lex_state = 522, .external_lex_state = 94}, - [4872] = {.lex_state = 68, .external_lex_state = 92}, - [4873] = {.lex_state = 522, .external_lex_state = 94}, - [4874] = {.lex_state = 522, .external_lex_state = 94}, - [4875] = {.lex_state = 522, .external_lex_state = 94}, - [4876] = {.lex_state = 522, .external_lex_state = 94}, - [4877] = {.lex_state = 522, .external_lex_state = 94}, - [4878] = {.lex_state = 68, .external_lex_state = 92}, - [4879] = {.lex_state = 68, .external_lex_state = 92}, - [4880] = {.lex_state = 68, .external_lex_state = 92}, - [4881] = {.lex_state = 68, .external_lex_state = 92}, - [4882] = {.lex_state = 68, .external_lex_state = 92}, - [4883] = {.lex_state = 68, .external_lex_state = 92}, - [4884] = {.lex_state = 68, .external_lex_state = 92}, - [4885] = {.lex_state = 67, .external_lex_state = 94}, - [4886] = {.lex_state = 522, .external_lex_state = 94}, - [4887] = {.lex_state = 522, .external_lex_state = 94}, - [4888] = {.lex_state = 68, .external_lex_state = 92}, - [4889] = {.lex_state = 68, .external_lex_state = 92}, - [4890] = {.lex_state = 68, .external_lex_state = 92}, - [4891] = {.lex_state = 312, .external_lex_state = 99}, - [4892] = {.lex_state = 522, .external_lex_state = 94}, - [4893] = {.lex_state = 67, .external_lex_state = 94}, - [4894] = {.lex_state = 68, .external_lex_state = 92}, - [4895] = {.lex_state = 522, .external_lex_state = 94}, - [4896] = {.lex_state = 521, .external_lex_state = 93}, - [4897] = {.lex_state = 521, .external_lex_state = 93}, - [4898] = {.lex_state = 522, .external_lex_state = 94}, - [4899] = {.lex_state = 68, .external_lex_state = 92}, - [4900] = {.lex_state = 522, .external_lex_state = 94}, - [4901] = {.lex_state = 521, .external_lex_state = 93}, - [4902] = {.lex_state = 67, .external_lex_state = 94}, - [4903] = {.lex_state = 522, .external_lex_state = 94}, - [4904] = {.lex_state = 68, .external_lex_state = 94}, - [4905] = {.lex_state = 522, .external_lex_state = 94}, - [4906] = {.lex_state = 521, .external_lex_state = 93}, - [4907] = {.lex_state = 522, .external_lex_state = 94}, - [4908] = {.lex_state = 68, .external_lex_state = 92}, - [4909] = {.lex_state = 522, .external_lex_state = 94}, - [4910] = {.lex_state = 68, .external_lex_state = 94}, - [4911] = {.lex_state = 522, .external_lex_state = 94}, - [4912] = {.lex_state = 522, .external_lex_state = 94}, - [4913] = {.lex_state = 68, .external_lex_state = 94}, - [4914] = {.lex_state = 67, .external_lex_state = 94}, - [4915] = {.lex_state = 522, .external_lex_state = 94}, - [4916] = {.lex_state = 68, .external_lex_state = 92}, - [4917] = {.lex_state = 67, .external_lex_state = 94}, - [4918] = {.lex_state = 312, .external_lex_state = 99}, - [4919] = {.lex_state = 521, .external_lex_state = 93}, - [4920] = {.lex_state = 522, .external_lex_state = 94}, - [4921] = {.lex_state = 521, .external_lex_state = 93}, - [4922] = {.lex_state = 68, .external_lex_state = 92}, - [4923] = {.lex_state = 68, .external_lex_state = 92}, - [4924] = {.lex_state = 312, .external_lex_state = 99}, - [4925] = {.lex_state = 68, .external_lex_state = 66}, - [4926] = {.lex_state = 68, .external_lex_state = 92}, - [4927] = {.lex_state = 68, .external_lex_state = 92}, - [4928] = {.lex_state = 521, .external_lex_state = 94}, - [4929] = {.lex_state = 68, .external_lex_state = 92}, - [4930] = {.lex_state = 68, .external_lex_state = 92}, - [4931] = {.lex_state = 522, .external_lex_state = 94}, - [4932] = {.lex_state = 68, .external_lex_state = 92}, - [4933] = {.lex_state = 68, .external_lex_state = 92}, - [4934] = {.lex_state = 312, .external_lex_state = 99}, - [4935] = {.lex_state = 522, .external_lex_state = 94}, - [4936] = {.lex_state = 68, .external_lex_state = 92}, - [4937] = {.lex_state = 68, .external_lex_state = 92}, - [4938] = {.lex_state = 522, .external_lex_state = 94}, - [4939] = {.lex_state = 68, .external_lex_state = 94}, - [4940] = {.lex_state = 522, .external_lex_state = 94}, - [4941] = {.lex_state = 521, .external_lex_state = 93}, - [4942] = {.lex_state = 68, .external_lex_state = 94}, - [4943] = {.lex_state = 68, .external_lex_state = 92}, - [4944] = {.lex_state = 68, .external_lex_state = 92}, - [4945] = {.lex_state = 68, .external_lex_state = 92}, - [4946] = {.lex_state = 67, .external_lex_state = 94}, - [4947] = {.lex_state = 68, .external_lex_state = 92}, - [4948] = {.lex_state = 522, .external_lex_state = 94}, - [4949] = {.lex_state = 68, .external_lex_state = 92}, - [4950] = {.lex_state = 67, .external_lex_state = 94}, - [4951] = {.lex_state = 521, .external_lex_state = 94}, - [4952] = {.lex_state = 522, .external_lex_state = 94}, - [4953] = {.lex_state = 67, .external_lex_state = 94}, - [4954] = {.lex_state = 522, .external_lex_state = 94}, - [4955] = {.lex_state = 68, .external_lex_state = 92}, - [4956] = {.lex_state = 68, .external_lex_state = 92}, - [4957] = {.lex_state = 68, .external_lex_state = 92}, - [4958] = {.lex_state = 522, .external_lex_state = 94}, - [4959] = {.lex_state = 68, .external_lex_state = 92}, - [4960] = {.lex_state = 522, .external_lex_state = 94}, - [4961] = {.lex_state = 522, .external_lex_state = 94}, - [4962] = {.lex_state = 67, .external_lex_state = 94}, - [4963] = {.lex_state = 68, .external_lex_state = 92}, - [4964] = {.lex_state = 67, .external_lex_state = 94}, - [4965] = {.lex_state = 522, .external_lex_state = 94}, - [4966] = {.lex_state = 68, .external_lex_state = 92}, - [4967] = {.lex_state = 312, .external_lex_state = 99}, - [4968] = {.lex_state = 522, .external_lex_state = 94}, - [4969] = {.lex_state = 68, .external_lex_state = 92}, - [4970] = {.lex_state = 522, .external_lex_state = 94}, - [4971] = {.lex_state = 68, .external_lex_state = 94}, - [4972] = {.lex_state = 312, .external_lex_state = 99}, - [4973] = {.lex_state = 522, .external_lex_state = 94}, - [4974] = {.lex_state = 312, .external_lex_state = 99}, - [4975] = {.lex_state = 237, .external_lex_state = 73}, - [4976] = {.lex_state = 68, .external_lex_state = 92}, - [4977] = {.lex_state = 68, .external_lex_state = 92}, - [4978] = {.lex_state = 68, .external_lex_state = 92}, - [4979] = {.lex_state = 522, .external_lex_state = 94}, - [4980] = {.lex_state = 68, .external_lex_state = 92}, - [4981] = {.lex_state = 68, .external_lex_state = 92}, - [4982] = {.lex_state = 67, .external_lex_state = 94}, - [4983] = {.lex_state = 522, .external_lex_state = 94}, - [4984] = {.lex_state = 68, .external_lex_state = 92}, - [4985] = {.lex_state = 68, .external_lex_state = 92}, - [4986] = {.lex_state = 521, .external_lex_state = 94}, - [4987] = {.lex_state = 522, .external_lex_state = 94}, - [4988] = {.lex_state = 522, .external_lex_state = 94}, - [4989] = {.lex_state = 522, .external_lex_state = 94}, - [4990] = {.lex_state = 68, .external_lex_state = 66}, - [4991] = {.lex_state = 68, .external_lex_state = 92}, - [4992] = {.lex_state = 521, .external_lex_state = 93}, - [4993] = {.lex_state = 521, .external_lex_state = 94}, - [4994] = {.lex_state = 522, .external_lex_state = 94}, - [4995] = {.lex_state = 519, .external_lex_state = 94}, - [4996] = {.lex_state = 521, .external_lex_state = 94}, - [4997] = {.lex_state = 521, .external_lex_state = 94}, - [4998] = {.lex_state = 521, .external_lex_state = 94}, - [4999] = {.lex_state = 312, .external_lex_state = 99}, - [5000] = {.lex_state = 519, .external_lex_state = 94}, - [5001] = {.lex_state = 519, .external_lex_state = 94}, - [5002] = {.lex_state = 522, .external_lex_state = 94}, - [5003] = {.lex_state = 68, .external_lex_state = 92}, - [5004] = {.lex_state = 68, .external_lex_state = 92}, - [5005] = {.lex_state = 522, .external_lex_state = 94}, - [5006] = {.lex_state = 68, .external_lex_state = 92}, - [5007] = {.lex_state = 521, .external_lex_state = 94}, - [5008] = {.lex_state = 68, .external_lex_state = 92}, - [5009] = {.lex_state = 522, .external_lex_state = 94}, - [5010] = {.lex_state = 522, .external_lex_state = 94}, - [5011] = {.lex_state = 522, .external_lex_state = 94}, - [5012] = {.lex_state = 68, .external_lex_state = 92}, - [5013] = {.lex_state = 68, .external_lex_state = 92}, - [5014] = {.lex_state = 522, .external_lex_state = 94}, - [5015] = {.lex_state = 312, .external_lex_state = 99}, - [5016] = {.lex_state = 68, .external_lex_state = 92}, - [5017] = {.lex_state = 522, .external_lex_state = 94}, - [5018] = {.lex_state = 67, .external_lex_state = 94}, - [5019] = {.lex_state = 67, .external_lex_state = 94}, - [5020] = {.lex_state = 67, .external_lex_state = 94}, - [5021] = {.lex_state = 237, .external_lex_state = 73}, - [5022] = {.lex_state = 522, .external_lex_state = 94}, - [5023] = {.lex_state = 522, .external_lex_state = 94}, - [5024] = {.lex_state = 67, .external_lex_state = 94}, - [5025] = {.lex_state = 67, .external_lex_state = 94}, - [5026] = {.lex_state = 522, .external_lex_state = 94}, - [5027] = {.lex_state = 522, .external_lex_state = 94}, - [5028] = {.lex_state = 68, .external_lex_state = 92}, - [5029] = {.lex_state = 522, .external_lex_state = 94}, - [5030] = {.lex_state = 522, .external_lex_state = 94}, - [5031] = {.lex_state = 521, .external_lex_state = 93}, - [5032] = {.lex_state = 68, .external_lex_state = 92}, - [5033] = {.lex_state = 521, .external_lex_state = 93}, - [5034] = {.lex_state = 227, .external_lex_state = 97}, - [5035] = {.lex_state = 68, .external_lex_state = 94}, - [5036] = {.lex_state = 521, .external_lex_state = 94}, - [5037] = {.lex_state = 68, .external_lex_state = 94}, - [5038] = {.lex_state = 301, .external_lex_state = 100}, - [5039] = {.lex_state = 68, .external_lex_state = 94}, - [5040] = {.lex_state = 522, .external_lex_state = 94}, - [5041] = {.lex_state = 301, .external_lex_state = 100}, - [5042] = {.lex_state = 68, .external_lex_state = 94}, - [5043] = {.lex_state = 68, .external_lex_state = 94}, - [5044] = {.lex_state = 237, .external_lex_state = 73}, - [5045] = {.lex_state = 301, .external_lex_state = 100}, - [5046] = {.lex_state = 68, .external_lex_state = 94}, - [5047] = {.lex_state = 68, .external_lex_state = 94}, - [5048] = {.lex_state = 227, .external_lex_state = 97}, - [5049] = {.lex_state = 68, .external_lex_state = 94}, - [5050] = {.lex_state = 68, .external_lex_state = 94}, - [5051] = {.lex_state = 521, .external_lex_state = 94}, - [5052] = {.lex_state = 68, .external_lex_state = 94}, - [5053] = {.lex_state = 68, .external_lex_state = 94}, - [5054] = {.lex_state = 521, .external_lex_state = 94}, - [5055] = {.lex_state = 227, .external_lex_state = 97}, - [5056] = {.lex_state = 67, .external_lex_state = 94}, - [5057] = {.lex_state = 227, .external_lex_state = 97}, - [5058] = {.lex_state = 67, .external_lex_state = 94}, - [5059] = {.lex_state = 301, .external_lex_state = 100}, - [5060] = {.lex_state = 68, .external_lex_state = 94}, - [5061] = {.lex_state = 68, .external_lex_state = 94}, - [5062] = {.lex_state = 227, .external_lex_state = 97}, - [5063] = {.lex_state = 68, .external_lex_state = 94}, - [5064] = {.lex_state = 324, .external_lex_state = 101}, - [5065] = {.lex_state = 301, .external_lex_state = 100}, - [5066] = {.lex_state = 68, .external_lex_state = 94}, - [5067] = {.lex_state = 68, .external_lex_state = 94}, - [5068] = {.lex_state = 68, .external_lex_state = 94}, - [5069] = {.lex_state = 68, .external_lex_state = 94}, - [5070] = {.lex_state = 522, .external_lex_state = 94}, - [5071] = {.lex_state = 68, .external_lex_state = 94}, - [5072] = {.lex_state = 68, .external_lex_state = 94}, - [5073] = {.lex_state = 68, .external_lex_state = 94}, - [5074] = {.lex_state = 68, .external_lex_state = 94}, - [5075] = {.lex_state = 68, .external_lex_state = 94}, - [5076] = {.lex_state = 68, .external_lex_state = 94}, - [5077] = {.lex_state = 68, .external_lex_state = 94}, - [5078] = {.lex_state = 68, .external_lex_state = 94}, - [5079] = {.lex_state = 521, .external_lex_state = 94}, - [5080] = {.lex_state = 68, .external_lex_state = 94}, - [5081] = {.lex_state = 522, .external_lex_state = 94}, - [5082] = {.lex_state = 521, .external_lex_state = 94}, - [5083] = {.lex_state = 68, .external_lex_state = 94}, - [5084] = {.lex_state = 68, .external_lex_state = 94}, - [5085] = {.lex_state = 68, .external_lex_state = 94}, - [5086] = {.lex_state = 68, .external_lex_state = 94}, - [5087] = {.lex_state = 68, .external_lex_state = 94}, - [5088] = {.lex_state = 68, .external_lex_state = 94}, - [5089] = {.lex_state = 68, .external_lex_state = 94}, - [5090] = {.lex_state = 68, .external_lex_state = 94}, - [5091] = {.lex_state = 68, .external_lex_state = 94}, - [5092] = {.lex_state = 68, .external_lex_state = 94}, - [5093] = {.lex_state = 68, .external_lex_state = 94}, - [5094] = {.lex_state = 68, .external_lex_state = 94}, - [5095] = {.lex_state = 521, .external_lex_state = 94}, - [5096] = {.lex_state = 68, .external_lex_state = 94}, - [5097] = {.lex_state = 301, .external_lex_state = 100}, - [5098] = {.lex_state = 68, .external_lex_state = 94}, - [5099] = {.lex_state = 68, .external_lex_state = 94}, - [5100] = {.lex_state = 68, .external_lex_state = 94}, - [5101] = {.lex_state = 68, .external_lex_state = 94}, - [5102] = {.lex_state = 522, .external_lex_state = 94}, - [5103] = {.lex_state = 68, .external_lex_state = 94}, - [5104] = {.lex_state = 68, .external_lex_state = 94}, - [5105] = {.lex_state = 68, .external_lex_state = 94}, - [5106] = {.lex_state = 68, .external_lex_state = 94}, - [5107] = {.lex_state = 68, .external_lex_state = 94}, - [5108] = {.lex_state = 521, .external_lex_state = 94}, - [5109] = {.lex_state = 67, .external_lex_state = 93}, - [5110] = {.lex_state = 68, .external_lex_state = 95}, - [5111] = {.lex_state = 68, .external_lex_state = 94}, - [5112] = {.lex_state = 68, .external_lex_state = 94}, - [5113] = {.lex_state = 68, .external_lex_state = 94}, - [5114] = {.lex_state = 68, .external_lex_state = 94}, - [5115] = {.lex_state = 521, .external_lex_state = 94}, - [5116] = {.lex_state = 68, .external_lex_state = 94}, - [5117] = {.lex_state = 67, .external_lex_state = 94}, - [5118] = {.lex_state = 67, .external_lex_state = 94}, - [5119] = {.lex_state = 68, .external_lex_state = 94}, - [5120] = {.lex_state = 68, .external_lex_state = 94}, - [5121] = {.lex_state = 311, .external_lex_state = 67}, - [5122] = {.lex_state = 521, .external_lex_state = 94}, - [5123] = {.lex_state = 301, .external_lex_state = 100}, - [5124] = {.lex_state = 324, .external_lex_state = 101}, - [5125] = {.lex_state = 311, .external_lex_state = 67}, - [5126] = {.lex_state = 311, .external_lex_state = 67}, - [5127] = {.lex_state = 324, .external_lex_state = 101}, - [5128] = {.lex_state = 67, .external_lex_state = 93}, - [5129] = {.lex_state = 67, .external_lex_state = 93}, - [5130] = {.lex_state = 67, .external_lex_state = 93}, - [5131] = {.lex_state = 67, .external_lex_state = 93}, - [5132] = {.lex_state = 311, .external_lex_state = 67}, - [5133] = {.lex_state = 67, .external_lex_state = 93}, - [5134] = {.lex_state = 67, .external_lex_state = 93}, - [5135] = {.lex_state = 67, .external_lex_state = 93}, - [5136] = {.lex_state = 67, .external_lex_state = 93}, - [5137] = {.lex_state = 68, .external_lex_state = 95}, - [5138] = {.lex_state = 68, .external_lex_state = 95}, - [5139] = {.lex_state = 311, .external_lex_state = 67}, - [5140] = {.lex_state = 324, .external_lex_state = 101}, - [5141] = {.lex_state = 311, .external_lex_state = 67}, - [5142] = {.lex_state = 312, .external_lex_state = 99}, - [5143] = {.lex_state = 311, .external_lex_state = 67}, - [5144] = {.lex_state = 311, .external_lex_state = 67}, - [5145] = {.lex_state = 311, .external_lex_state = 67}, - [5146] = {.lex_state = 311, .external_lex_state = 67}, - [5147] = {.lex_state = 68, .external_lex_state = 66}, - [5148] = {.lex_state = 68, .external_lex_state = 66}, - [5149] = {.lex_state = 301, .external_lex_state = 100}, - [5150] = {.lex_state = 301, .external_lex_state = 100}, - [5151] = {.lex_state = 301, .external_lex_state = 100}, - [5152] = {.lex_state = 301, .external_lex_state = 100}, - [5153] = {.lex_state = 301, .external_lex_state = 100}, - [5154] = {.lex_state = 301, .external_lex_state = 100}, - [5155] = {.lex_state = 301, .external_lex_state = 100}, - [5156] = {.lex_state = 301, .external_lex_state = 100}, - [5157] = {.lex_state = 301, .external_lex_state = 100}, - [5158] = {.lex_state = 301, .external_lex_state = 100}, - [5159] = {.lex_state = 301, .external_lex_state = 100}, - [5160] = {.lex_state = 301, .external_lex_state = 100}, - [5161] = {.lex_state = 301, .external_lex_state = 100}, - [5162] = {.lex_state = 311, .external_lex_state = 67}, - [5163] = {.lex_state = 521, .external_lex_state = 94}, - [5164] = {.lex_state = 311, .external_lex_state = 67}, - [5165] = {.lex_state = 301, .external_lex_state = 100}, - [5166] = {.lex_state = 311, .external_lex_state = 67}, - [5167] = {.lex_state = 289, .external_lex_state = 102}, - [5168] = {.lex_state = 312, .external_lex_state = 99}, - [5169] = {.lex_state = 311, .external_lex_state = 67}, - [5170] = {.lex_state = 324, .external_lex_state = 101}, - [5171] = {.lex_state = 301, .external_lex_state = 100}, - [5172] = {.lex_state = 311, .external_lex_state = 67}, - [5173] = {.lex_state = 324, .external_lex_state = 101}, - [5174] = {.lex_state = 321, .external_lex_state = 101}, - [5175] = {.lex_state = 324, .external_lex_state = 101}, - [5176] = {.lex_state = 67, .external_lex_state = 94}, - [5177] = {.lex_state = 311, .external_lex_state = 67}, - [5178] = {.lex_state = 324, .external_lex_state = 101}, - [5179] = {.lex_state = 324, .external_lex_state = 101}, - [5180] = {.lex_state = 324, .external_lex_state = 101}, - [5181] = {.lex_state = 67, .external_lex_state = 94}, - [5182] = {.lex_state = 324, .external_lex_state = 101}, - [5183] = {.lex_state = 311, .external_lex_state = 67}, - [5184] = {.lex_state = 289, .external_lex_state = 103}, - [5185] = {.lex_state = 312, .external_lex_state = 99}, - [5186] = {.lex_state = 312, .external_lex_state = 99}, - [5187] = {.lex_state = 312, .external_lex_state = 99}, - [5188] = {.lex_state = 324, .external_lex_state = 101}, - [5189] = {.lex_state = 521, .external_lex_state = 94}, - [5190] = {.lex_state = 312, .external_lex_state = 99}, - [5191] = {.lex_state = 312, .external_lex_state = 99}, - [5192] = {.lex_state = 312, .external_lex_state = 99}, - [5193] = {.lex_state = 311, .external_lex_state = 67}, - [5194] = {.lex_state = 312, .external_lex_state = 99}, - [5195] = {.lex_state = 289, .external_lex_state = 103}, - [5196] = {.lex_state = 312, .external_lex_state = 99}, - [5197] = {.lex_state = 312, .external_lex_state = 99}, - [5198] = {.lex_state = 312, .external_lex_state = 99}, - [5199] = {.lex_state = 301, .external_lex_state = 100}, - [5200] = {.lex_state = 301, .external_lex_state = 100}, - [5201] = {.lex_state = 311, .external_lex_state = 67}, - [5202] = {.lex_state = 312, .external_lex_state = 99}, - [5203] = {.lex_state = 312, .external_lex_state = 99}, - [5204] = {.lex_state = 301, .external_lex_state = 100}, - [5205] = {.lex_state = 289, .external_lex_state = 102}, - [5206] = {.lex_state = 68, .external_lex_state = 93}, - [5207] = {.lex_state = 67, .external_lex_state = 93}, - [5208] = {.lex_state = 67, .external_lex_state = 93}, - [5209] = {.lex_state = 68, .external_lex_state = 95}, - [5210] = {.lex_state = 68, .external_lex_state = 95}, - [5211] = {.lex_state = 66, .external_lex_state = 104}, - [5212] = {.lex_state = 66, .external_lex_state = 104}, - [5213] = {.lex_state = 289, .external_lex_state = 103}, - [5214] = {.lex_state = 312, .external_lex_state = 99}, - [5215] = {.lex_state = 311, .external_lex_state = 67}, - [5216] = {.lex_state = 521, .external_lex_state = 94}, - [5217] = {.lex_state = 312, .external_lex_state = 99}, - [5218] = {.lex_state = 312, .external_lex_state = 99}, - [5219] = {.lex_state = 312, .external_lex_state = 99}, - [5220] = {.lex_state = 312, .external_lex_state = 99}, - [5221] = {.lex_state = 322, .external_lex_state = 105}, - [5222] = {.lex_state = 312, .external_lex_state = 99}, - [5223] = {.lex_state = 312, .external_lex_state = 99}, - [5224] = {.lex_state = 521, .external_lex_state = 94}, - [5225] = {.lex_state = 312, .external_lex_state = 99}, - [5226] = {.lex_state = 312, .external_lex_state = 99}, - [5227] = {.lex_state = 311, .external_lex_state = 67}, - [5228] = {.lex_state = 312, .external_lex_state = 99}, - [5229] = {.lex_state = 312, .external_lex_state = 99}, - [5230] = {.lex_state = 312, .external_lex_state = 99}, - [5231] = {.lex_state = 312, .external_lex_state = 99}, - [5232] = {.lex_state = 66, .external_lex_state = 104}, - [5233] = {.lex_state = 312, .external_lex_state = 99}, - [5234] = {.lex_state = 312, .external_lex_state = 99}, - [5235] = {.lex_state = 312, .external_lex_state = 99}, - [5236] = {.lex_state = 312, .external_lex_state = 99}, - [5237] = {.lex_state = 312, .external_lex_state = 99}, - [5238] = {.lex_state = 312, .external_lex_state = 99}, - [5239] = {.lex_state = 312, .external_lex_state = 99}, - [5240] = {.lex_state = 325, .external_lex_state = 106}, - [5241] = {.lex_state = 312, .external_lex_state = 99}, - [5242] = {.lex_state = 312, .external_lex_state = 99}, - [5243] = {.lex_state = 312, .external_lex_state = 99}, - [5244] = {.lex_state = 312, .external_lex_state = 99}, - [5245] = {.lex_state = 311, .external_lex_state = 67}, - [5246] = {.lex_state = 312, .external_lex_state = 99}, - [5247] = {.lex_state = 311, .external_lex_state = 67}, - [5248] = {.lex_state = 521, .external_lex_state = 94}, - [5249] = {.lex_state = 313, .external_lex_state = 107}, - [5250] = {.lex_state = 311, .external_lex_state = 67}, - [5251] = {.lex_state = 298, .external_lex_state = 47}, - [5252] = {.lex_state = 298, .external_lex_state = 47}, - [5253] = {.lex_state = 321, .external_lex_state = 105}, - [5254] = {.lex_state = 298, .external_lex_state = 47}, - [5255] = {.lex_state = 324, .external_lex_state = 101}, - [5256] = {.lex_state = 321, .external_lex_state = 105}, - [5257] = {.lex_state = 298, .external_lex_state = 47}, - [5258] = {.lex_state = 289, .external_lex_state = 102}, - [5259] = {.lex_state = 298, .external_lex_state = 47}, - [5260] = {.lex_state = 66, .external_lex_state = 104}, - [5261] = {.lex_state = 298, .external_lex_state = 47}, - [5262] = {.lex_state = 324, .external_lex_state = 101}, - [5263] = {.lex_state = 324, .external_lex_state = 101}, - [5264] = {.lex_state = 298, .external_lex_state = 47}, - [5265] = {.lex_state = 298, .external_lex_state = 47}, - [5266] = {.lex_state = 312, .external_lex_state = 102}, - [5267] = {.lex_state = 322, .external_lex_state = 106}, - [5268] = {.lex_state = 298, .external_lex_state = 47}, - [5269] = {.lex_state = 324, .external_lex_state = 101}, - [5270] = {.lex_state = 324, .external_lex_state = 106}, - [5271] = {.lex_state = 324, .external_lex_state = 106}, - [5272] = {.lex_state = 298, .external_lex_state = 47}, - [5273] = {.lex_state = 298, .external_lex_state = 47}, - [5274] = {.lex_state = 298, .external_lex_state = 78}, - [5275] = {.lex_state = 298, .external_lex_state = 47}, - [5276] = {.lex_state = 324, .external_lex_state = 106}, - [5277] = {.lex_state = 298, .external_lex_state = 47}, - [5278] = {.lex_state = 321, .external_lex_state = 101}, - [5279] = {.lex_state = 324, .external_lex_state = 101}, - [5280] = {.lex_state = 298, .external_lex_state = 47}, - [5281] = {.lex_state = 298, .external_lex_state = 47}, - [5282] = {.lex_state = 298, .external_lex_state = 47}, - [5283] = {.lex_state = 298, .external_lex_state = 47}, - [5284] = {.lex_state = 324, .external_lex_state = 101}, - [5285] = {.lex_state = 298, .external_lex_state = 47}, - [5286] = {.lex_state = 68, .external_lex_state = 93}, - [5287] = {.lex_state = 68, .external_lex_state = 93}, - [5288] = {.lex_state = 324, .external_lex_state = 101}, - [5289] = {.lex_state = 312, .external_lex_state = 102}, - [5290] = {.lex_state = 321, .external_lex_state = 101}, - [5291] = {.lex_state = 298, .external_lex_state = 47}, - [5292] = {.lex_state = 289, .external_lex_state = 102}, - [5293] = {.lex_state = 68, .external_lex_state = 93}, - [5294] = {.lex_state = 324, .external_lex_state = 101}, - [5295] = {.lex_state = 298, .external_lex_state = 47}, - [5296] = {.lex_state = 298, .external_lex_state = 47}, - [5297] = {.lex_state = 321, .external_lex_state = 105}, - [5298] = {.lex_state = 324, .external_lex_state = 101}, - [5299] = {.lex_state = 298, .external_lex_state = 47}, - [5300] = {.lex_state = 324, .external_lex_state = 106}, - [5301] = {.lex_state = 324, .external_lex_state = 106}, - [5302] = {.lex_state = 298, .external_lex_state = 47}, - [5303] = {.lex_state = 324, .external_lex_state = 106}, - [5304] = {.lex_state = 298, .external_lex_state = 47}, - [5305] = {.lex_state = 68, .external_lex_state = 93}, - [5306] = {.lex_state = 68, .external_lex_state = 93}, - [5307] = {.lex_state = 298, .external_lex_state = 47}, - [5308] = {.lex_state = 298, .external_lex_state = 47}, - [5309] = {.lex_state = 298, .external_lex_state = 47}, - [5310] = {.lex_state = 298, .external_lex_state = 47}, - [5311] = {.lex_state = 298, .external_lex_state = 47}, - [5312] = {.lex_state = 68, .external_lex_state = 93}, - [5313] = {.lex_state = 298, .external_lex_state = 47}, - [5314] = {.lex_state = 298, .external_lex_state = 47}, - [5315] = {.lex_state = 312, .external_lex_state = 102}, - [5316] = {.lex_state = 298, .external_lex_state = 47}, - [5317] = {.lex_state = 312, .external_lex_state = 102}, - [5318] = {.lex_state = 68, .external_lex_state = 93}, - [5319] = {.lex_state = 298, .external_lex_state = 47}, - [5320] = {.lex_state = 298, .external_lex_state = 47}, - [5321] = {.lex_state = 298, .external_lex_state = 47}, - [5322] = {.lex_state = 321, .external_lex_state = 101}, - [5323] = {.lex_state = 324, .external_lex_state = 106}, - [5324] = {.lex_state = 298, .external_lex_state = 47}, - [5325] = {.lex_state = 298, .external_lex_state = 47}, - [5326] = {.lex_state = 298, .external_lex_state = 47}, - [5327] = {.lex_state = 324, .external_lex_state = 101}, - [5328] = {.lex_state = 321, .external_lex_state = 101}, - [5329] = {.lex_state = 298, .external_lex_state = 47}, - [5330] = {.lex_state = 298, .external_lex_state = 47}, - [5331] = {.lex_state = 321, .external_lex_state = 101}, - [5332] = {.lex_state = 298, .external_lex_state = 47}, - [5333] = {.lex_state = 298, .external_lex_state = 47}, - [5334] = {.lex_state = 298, .external_lex_state = 47}, - [5335] = {.lex_state = 298, .external_lex_state = 47}, - [5336] = {.lex_state = 298, .external_lex_state = 47}, - [5337] = {.lex_state = 324, .external_lex_state = 101}, - [5338] = {.lex_state = 298, .external_lex_state = 47}, - [5339] = {.lex_state = 298, .external_lex_state = 47}, - [5340] = {.lex_state = 298, .external_lex_state = 47}, - [5341] = {.lex_state = 298, .external_lex_state = 47}, - [5342] = {.lex_state = 298, .external_lex_state = 47}, - [5343] = {.lex_state = 298, .external_lex_state = 47}, - [5344] = {.lex_state = 298, .external_lex_state = 47}, - [5345] = {.lex_state = 298, .external_lex_state = 47}, - [5346] = {.lex_state = 298, .external_lex_state = 47}, - [5347] = {.lex_state = 321, .external_lex_state = 101}, - [5348] = {.lex_state = 321, .external_lex_state = 101}, - [5349] = {.lex_state = 321, .external_lex_state = 101}, - [5350] = {.lex_state = 312, .external_lex_state = 102}, - [5351] = {.lex_state = 198, .external_lex_state = 73}, - [5352] = {.lex_state = 324, .external_lex_state = 106}, - [5353] = {.lex_state = 298, .external_lex_state = 47}, - [5354] = {.lex_state = 298, .external_lex_state = 47}, - [5355] = {.lex_state = 298, .external_lex_state = 47}, - [5356] = {.lex_state = 312, .external_lex_state = 102}, - [5357] = {.lex_state = 289, .external_lex_state = 102}, - [5358] = {.lex_state = 312, .external_lex_state = 102}, - [5359] = {.lex_state = 324, .external_lex_state = 106}, - [5360] = {.lex_state = 312, .external_lex_state = 81}, - [5361] = {.lex_state = 312, .external_lex_state = 102}, - [5362] = {.lex_state = 289, .external_lex_state = 103}, - [5363] = {.lex_state = 289, .external_lex_state = 103}, - [5364] = {.lex_state = 324, .external_lex_state = 101}, - [5365] = {.lex_state = 298, .external_lex_state = 78}, - [5366] = {.lex_state = 68, .external_lex_state = 94}, - [5367] = {.lex_state = 67, .external_lex_state = 94}, - [5368] = {.lex_state = 68, .external_lex_state = 94}, - [5369] = {.lex_state = 68, .external_lex_state = 94}, - [5370] = {.lex_state = 68, .external_lex_state = 94}, - [5371] = {.lex_state = 321, .external_lex_state = 101}, - [5372] = {.lex_state = 67, .external_lex_state = 94}, - [5373] = {.lex_state = 324, .external_lex_state = 106}, - [5374] = {.lex_state = 321, .external_lex_state = 105}, - [5375] = {.lex_state = 67, .external_lex_state = 94}, - [5376] = {.lex_state = 289, .external_lex_state = 102}, - [5377] = {.lex_state = 321, .external_lex_state = 101}, - [5378] = {.lex_state = 324, .external_lex_state = 106}, - [5379] = {.lex_state = 321, .external_lex_state = 101}, - [5380] = {.lex_state = 324, .external_lex_state = 101}, - [5381] = {.lex_state = 68, .external_lex_state = 94}, - [5382] = {.lex_state = 312, .external_lex_state = 102}, - [5383] = {.lex_state = 68, .external_lex_state = 94}, - [5384] = {.lex_state = 298, .external_lex_state = 47}, - [5385] = {.lex_state = 312, .external_lex_state = 81}, - [5386] = {.lex_state = 298, .external_lex_state = 47}, - [5387] = {.lex_state = 324, .external_lex_state = 101}, - [5388] = {.lex_state = 289, .external_lex_state = 102}, - [5389] = {.lex_state = 324, .external_lex_state = 101}, - [5390] = {.lex_state = 321, .external_lex_state = 105}, - [5391] = {.lex_state = 298, .external_lex_state = 47}, - [5392] = {.lex_state = 68, .external_lex_state = 93}, - [5393] = {.lex_state = 68, .external_lex_state = 93}, - [5394] = {.lex_state = 312, .external_lex_state = 102}, - [5395] = {.lex_state = 298, .external_lex_state = 47}, - [5396] = {.lex_state = 298, .external_lex_state = 47}, - [5397] = {.lex_state = 298, .external_lex_state = 47}, - [5398] = {.lex_state = 68, .external_lex_state = 93}, - [5399] = {.lex_state = 324, .external_lex_state = 101}, - [5400] = {.lex_state = 324, .external_lex_state = 101}, - [5401] = {.lex_state = 298, .external_lex_state = 47}, - [5402] = {.lex_state = 324, .external_lex_state = 101}, - [5403] = {.lex_state = 324, .external_lex_state = 101}, - [5404] = {.lex_state = 324, .external_lex_state = 106}, - [5405] = {.lex_state = 289, .external_lex_state = 103}, - [5406] = {.lex_state = 312, .external_lex_state = 103}, - [5407] = {.lex_state = 321, .external_lex_state = 106}, - [5408] = {.lex_state = 322, .external_lex_state = 81}, - [5409] = {.lex_state = 321, .external_lex_state = 105}, - [5410] = {.lex_state = 289, .external_lex_state = 102}, - [5411] = {.lex_state = 321, .external_lex_state = 106}, - [5412] = {.lex_state = 321, .external_lex_state = 106}, - [5413] = {.lex_state = 321, .external_lex_state = 105}, - [5414] = {.lex_state = 321, .external_lex_state = 105}, - [5415] = {.lex_state = 321, .external_lex_state = 106}, - [5416] = {.lex_state = 298, .external_lex_state = 78}, - [5417] = {.lex_state = 321, .external_lex_state = 106}, - [5418] = {.lex_state = 321, .external_lex_state = 106}, - [5419] = {.lex_state = 312, .external_lex_state = 103}, - [5420] = {.lex_state = 321, .external_lex_state = 106}, - [5421] = {.lex_state = 312, .external_lex_state = 103}, - [5422] = {.lex_state = 321, .external_lex_state = 105}, - [5423] = {.lex_state = 289, .external_lex_state = 103}, - [5424] = {.lex_state = 312, .external_lex_state = 102}, - [5425] = {.lex_state = 313, .external_lex_state = 108}, - [5426] = {.lex_state = 312, .external_lex_state = 102}, - [5427] = {.lex_state = 321, .external_lex_state = 106}, - [5428] = {.lex_state = 321, .external_lex_state = 105}, - [5429] = {.lex_state = 66, .external_lex_state = 104}, - [5430] = {.lex_state = 324, .external_lex_state = 106}, - [5431] = {.lex_state = 321, .external_lex_state = 105}, - [5432] = {.lex_state = 324, .external_lex_state = 106}, - [5433] = {.lex_state = 324, .external_lex_state = 106}, - [5434] = {.lex_state = 324, .external_lex_state = 106}, - [5435] = {.lex_state = 321, .external_lex_state = 105}, - [5436] = {.lex_state = 312, .external_lex_state = 103}, - [5437] = {.lex_state = 325, .external_lex_state = 103}, - [5438] = {.lex_state = 324, .external_lex_state = 106}, - [5439] = {.lex_state = 324, .external_lex_state = 106}, - [5440] = {.lex_state = 324, .external_lex_state = 106}, - [5441] = {.lex_state = 321, .external_lex_state = 101}, - [5442] = {.lex_state = 321, .external_lex_state = 105}, - [5443] = {.lex_state = 321, .external_lex_state = 105}, - [5444] = {.lex_state = 324, .external_lex_state = 106}, - [5445] = {.lex_state = 324, .external_lex_state = 106}, - [5446] = {.lex_state = 321, .external_lex_state = 105}, - [5447] = {.lex_state = 312, .external_lex_state = 102}, - [5448] = {.lex_state = 321, .external_lex_state = 101}, - [5449] = {.lex_state = 324, .external_lex_state = 106}, - [5450] = {.lex_state = 321, .external_lex_state = 101}, - [5451] = {.lex_state = 321, .external_lex_state = 101}, - [5452] = {.lex_state = 324, .external_lex_state = 106}, - [5453] = {.lex_state = 324, .external_lex_state = 106}, - [5454] = {.lex_state = 321, .external_lex_state = 101}, - [5455] = {.lex_state = 321, .external_lex_state = 101}, - [5456] = {.lex_state = 198, .external_lex_state = 73}, - [5457] = {.lex_state = 324, .external_lex_state = 106}, - [5458] = {.lex_state = 66, .external_lex_state = 104}, - [5459] = {.lex_state = 321, .external_lex_state = 101}, - [5460] = {.lex_state = 66, .external_lex_state = 104}, - [5461] = {.lex_state = 321, .external_lex_state = 101}, - [5462] = {.lex_state = 325, .external_lex_state = 103}, - [5463] = {.lex_state = 321, .external_lex_state = 101}, - [5464] = {.lex_state = 321, .external_lex_state = 101}, - [5465] = {.lex_state = 312, .external_lex_state = 103}, - [5466] = {.lex_state = 325, .external_lex_state = 103}, - [5467] = {.lex_state = 324, .external_lex_state = 106}, - [5468] = {.lex_state = 321, .external_lex_state = 101}, - [5469] = {.lex_state = 325, .external_lex_state = 103}, - [5470] = {.lex_state = 321, .external_lex_state = 101}, - [5471] = {.lex_state = 321, .external_lex_state = 106}, - [5472] = {.lex_state = 321, .external_lex_state = 105}, - [5473] = {.lex_state = 321, .external_lex_state = 101}, - [5474] = {.lex_state = 321, .external_lex_state = 106}, - [5475] = {.lex_state = 289, .external_lex_state = 103}, - [5476] = {.lex_state = 321, .external_lex_state = 106}, - [5477] = {.lex_state = 321, .external_lex_state = 101}, - [5478] = {.lex_state = 321, .external_lex_state = 101}, - [5479] = {.lex_state = 322, .external_lex_state = 81}, - [5480] = {.lex_state = 321, .external_lex_state = 101}, - [5481] = {.lex_state = 321, .external_lex_state = 105}, - [5482] = {.lex_state = 321, .external_lex_state = 101}, - [5483] = {.lex_state = 321, .external_lex_state = 101}, - [5484] = {.lex_state = 321, .external_lex_state = 105}, - [5485] = {.lex_state = 324, .external_lex_state = 106}, - [5486] = {.lex_state = 324, .external_lex_state = 106}, - [5487] = {.lex_state = 321, .external_lex_state = 101}, - [5488] = {.lex_state = 321, .external_lex_state = 105}, - [5489] = {.lex_state = 324, .external_lex_state = 106}, - [5490] = {.lex_state = 321, .external_lex_state = 105}, - [5491] = {.lex_state = 321, .external_lex_state = 105}, - [5492] = {.lex_state = 324, .external_lex_state = 106}, - [5493] = {.lex_state = 321, .external_lex_state = 105}, - [5494] = {.lex_state = 325, .external_lex_state = 103}, - [5495] = {.lex_state = 321, .external_lex_state = 105}, - [5496] = {.lex_state = 312, .external_lex_state = 102}, - [5497] = {.lex_state = 321, .external_lex_state = 105}, - [5498] = {.lex_state = 312, .external_lex_state = 102}, - [5499] = {.lex_state = 68, .external_lex_state = 94}, - [5500] = {.lex_state = 322, .external_lex_state = 103}, - [5501] = {.lex_state = 321, .external_lex_state = 106}, - [5502] = {.lex_state = 321, .external_lex_state = 106}, - [5503] = {.lex_state = 211, .external_lex_state = 109}, - [5504] = {.lex_state = 66, .external_lex_state = 110}, - [5505] = {.lex_state = 66, .external_lex_state = 110}, - [5506] = {.lex_state = 325, .external_lex_state = 103}, - [5507] = {.lex_state = 321, .external_lex_state = 106}, - [5508] = {.lex_state = 321, .external_lex_state = 106}, - [5509] = {.lex_state = 321, .external_lex_state = 106}, - [5510] = {.lex_state = 321, .external_lex_state = 106}, - [5511] = {.lex_state = 321, .external_lex_state = 106}, - [5512] = {.lex_state = 322, .external_lex_state = 81}, - [5513] = {.lex_state = 321, .external_lex_state = 106}, - [5514] = {.lex_state = 211, .external_lex_state = 109}, - [5515] = {.lex_state = 66, .external_lex_state = 110}, - [5516] = {.lex_state = 66, .external_lex_state = 110}, - [5517] = {.lex_state = 66, .external_lex_state = 110}, - [5518] = {.lex_state = 69, .external_lex_state = 111}, - [5519] = {.lex_state = 322, .external_lex_state = 103}, - [5520] = {.lex_state = 322, .external_lex_state = 103}, - [5521] = {.lex_state = 321, .external_lex_state = 106}, - [5522] = {.lex_state = 321, .external_lex_state = 106}, - [5523] = {.lex_state = 321, .external_lex_state = 106}, - [5524] = {.lex_state = 321, .external_lex_state = 106}, - [5525] = {.lex_state = 321, .external_lex_state = 106}, - [5526] = {.lex_state = 289, .external_lex_state = 102}, - [5527] = {.lex_state = 321, .external_lex_state = 106}, - [5528] = {.lex_state = 68, .external_lex_state = 94}, - [5529] = {.lex_state = 312, .external_lex_state = 102}, - [5530] = {.lex_state = 289, .external_lex_state = 102}, - [5531] = {.lex_state = 66, .external_lex_state = 110}, - [5532] = {.lex_state = 322, .external_lex_state = 103}, - [5533] = {.lex_state = 68, .external_lex_state = 94}, - [5534] = {.lex_state = 321, .external_lex_state = 106}, - [5535] = {.lex_state = 68, .external_lex_state = 94}, - [5536] = {.lex_state = 321, .external_lex_state = 106}, - [5537] = {.lex_state = 321, .external_lex_state = 106}, - [5538] = {.lex_state = 66, .external_lex_state = 110}, - [5539] = {.lex_state = 289, .external_lex_state = 102}, - [5540] = {.lex_state = 66, .external_lex_state = 110}, - [5541] = {.lex_state = 321, .external_lex_state = 106}, - [5542] = {.lex_state = 321, .external_lex_state = 106}, - [5543] = {.lex_state = 289, .external_lex_state = 102}, - [5544] = {.lex_state = 322, .external_lex_state = 103}, - [5545] = {.lex_state = 66, .external_lex_state = 110}, - [5546] = {.lex_state = 66, .external_lex_state = 110}, - [5547] = {.lex_state = 289, .external_lex_state = 103}, - [5548] = {.lex_state = 69, .external_lex_state = 111}, - [5549] = {.lex_state = 312, .external_lex_state = 102}, - [5550] = {.lex_state = 312, .external_lex_state = 103}, - [5551] = {.lex_state = 312, .external_lex_state = 103}, - [5552] = {.lex_state = 312, .external_lex_state = 81}, - [5553] = {.lex_state = 69, .external_lex_state = 111}, - [5554] = {.lex_state = 312, .external_lex_state = 103}, - [5555] = {.lex_state = 312, .external_lex_state = 102}, - [5556] = {.lex_state = 312, .external_lex_state = 102}, - [5557] = {.lex_state = 312, .external_lex_state = 103}, - [5558] = {.lex_state = 312, .external_lex_state = 103}, - [5559] = {.lex_state = 312, .external_lex_state = 103}, - [5560] = {.lex_state = 289, .external_lex_state = 103}, - [5561] = {.lex_state = 312, .external_lex_state = 103}, - [5562] = {.lex_state = 69, .external_lex_state = 111}, - [5563] = {.lex_state = 312, .external_lex_state = 102}, - [5564] = {.lex_state = 289, .external_lex_state = 103}, - [5565] = {.lex_state = 312, .external_lex_state = 102}, - [5566] = {.lex_state = 312, .external_lex_state = 81}, - [5567] = {.lex_state = 289, .external_lex_state = 103}, - [5568] = {.lex_state = 312, .external_lex_state = 102}, - [5569] = {.lex_state = 312, .external_lex_state = 103}, - [5570] = {.lex_state = 289, .external_lex_state = 103}, - [5571] = {.lex_state = 312, .external_lex_state = 102}, - [5572] = {.lex_state = 312, .external_lex_state = 102}, - [5573] = {.lex_state = 312, .external_lex_state = 102}, - [5574] = {.lex_state = 312, .external_lex_state = 102}, - [5575] = {.lex_state = 312, .external_lex_state = 102}, - [5576] = {.lex_state = 312, .external_lex_state = 102}, - [5577] = {.lex_state = 69, .external_lex_state = 111}, - [5578] = {.lex_state = 312, .external_lex_state = 102}, - [5579] = {.lex_state = 312, .external_lex_state = 102}, - [5580] = {.lex_state = 69, .external_lex_state = 111}, - [5581] = {.lex_state = 312, .external_lex_state = 102}, - [5582] = {.lex_state = 289, .external_lex_state = 103}, - [5583] = {.lex_state = 69, .external_lex_state = 111}, - [5584] = {.lex_state = 69, .external_lex_state = 111}, - [5585] = {.lex_state = 312, .external_lex_state = 102}, - [5586] = {.lex_state = 312, .external_lex_state = 102}, - [5587] = {.lex_state = 289, .external_lex_state = 103}, - [5588] = {.lex_state = 289, .external_lex_state = 103}, - [5589] = {.lex_state = 312, .external_lex_state = 102}, - [5590] = {.lex_state = 312, .external_lex_state = 102}, - [5591] = {.lex_state = 289, .external_lex_state = 103}, - [5592] = {.lex_state = 289, .external_lex_state = 103}, - [5593] = {.lex_state = 312, .external_lex_state = 103}, - [5594] = {.lex_state = 289, .external_lex_state = 103}, - [5595] = {.lex_state = 312, .external_lex_state = 102}, - [5596] = {.lex_state = 312, .external_lex_state = 102}, - [5597] = {.lex_state = 312, .external_lex_state = 102}, - [5598] = {.lex_state = 312, .external_lex_state = 102}, - [5599] = {.lex_state = 312, .external_lex_state = 102}, - [5600] = {.lex_state = 312, .external_lex_state = 102}, - [5601] = {.lex_state = 289, .external_lex_state = 103}, - [5602] = {.lex_state = 312, .external_lex_state = 103}, - [5603] = {.lex_state = 289, .external_lex_state = 103}, - [5604] = {.lex_state = 289, .external_lex_state = 103}, - [5605] = {.lex_state = 69, .external_lex_state = 111}, - [5606] = {.lex_state = 69, .external_lex_state = 111}, - [5607] = {.lex_state = 322, .external_lex_state = 103}, - [5608] = {.lex_state = 69, .external_lex_state = 111}, - [5609] = {.lex_state = 66, .external_lex_state = 110}, - [5610] = {.lex_state = 312, .external_lex_state = 81}, - [5611] = {.lex_state = 312, .external_lex_state = 103}, - [5612] = {.lex_state = 289, .external_lex_state = 103}, - [5613] = {.lex_state = 289, .external_lex_state = 103}, - [5614] = {.lex_state = 312, .external_lex_state = 103}, - [5615] = {.lex_state = 289, .external_lex_state = 103}, - [5616] = {.lex_state = 69, .external_lex_state = 111}, - [5617] = {.lex_state = 312, .external_lex_state = 103}, - [5618] = {.lex_state = 69, .external_lex_state = 111}, - [5619] = {.lex_state = 312, .external_lex_state = 103}, - [5620] = {.lex_state = 312, .external_lex_state = 103}, - [5621] = {.lex_state = 312, .external_lex_state = 103}, - [5622] = {.lex_state = 69, .external_lex_state = 111}, - [5623] = {.lex_state = 312, .external_lex_state = 103}, - [5624] = {.lex_state = 312, .external_lex_state = 103}, - [5625] = {.lex_state = 69, .external_lex_state = 111}, - [5626] = {.lex_state = 312, .external_lex_state = 103}, - [5627] = {.lex_state = 312, .external_lex_state = 103}, - [5628] = {.lex_state = 69, .external_lex_state = 111}, - [5629] = {.lex_state = 312, .external_lex_state = 103}, - [5630] = {.lex_state = 312, .external_lex_state = 103}, - [5631] = {.lex_state = 312, .external_lex_state = 103}, - [5632] = {.lex_state = 69, .external_lex_state = 110}, - [5633] = {.lex_state = 312, .external_lex_state = 103}, - [5634] = {.lex_state = 312, .external_lex_state = 103}, - [5635] = {.lex_state = 312, .external_lex_state = 103}, - [5636] = {.lex_state = 312, .external_lex_state = 103}, - [5637] = {.lex_state = 312, .external_lex_state = 103}, - [5638] = {.lex_state = 312, .external_lex_state = 103}, - [5639] = {.lex_state = 312, .external_lex_state = 103}, - [5640] = {.lex_state = 312, .external_lex_state = 103}, - [5641] = {.lex_state = 312, .external_lex_state = 103}, - [5642] = {.lex_state = 312, .external_lex_state = 103}, - [5643] = {.lex_state = 69, .external_lex_state = 110}, - [5644] = {.lex_state = 312, .external_lex_state = 103}, - [5645] = {.lex_state = 312, .external_lex_state = 103}, - [5646] = {.lex_state = 312, .external_lex_state = 103}, - [5647] = {.lex_state = 312, .external_lex_state = 103}, - [5648] = {.lex_state = 312, .external_lex_state = 103}, - [5649] = {.lex_state = 312, .external_lex_state = 103}, - [5650] = {.lex_state = 312, .external_lex_state = 103}, - [5651] = {.lex_state = 69, .external_lex_state = 110}, - [5652] = {.lex_state = 312, .external_lex_state = 103}, - [5653] = {.lex_state = 312, .external_lex_state = 103}, - [5654] = {.lex_state = 69, .external_lex_state = 111}, - [5655] = {.lex_state = 69, .external_lex_state = 111}, - [5656] = {.lex_state = 312, .external_lex_state = 103}, - [5657] = {.lex_state = 69, .external_lex_state = 110}, - [5658] = {.lex_state = 312, .external_lex_state = 103}, - [5659] = {.lex_state = 312, .external_lex_state = 103}, - [5660] = {.lex_state = 69, .external_lex_state = 111}, - [5661] = {.lex_state = 312, .external_lex_state = 103}, - [5662] = {.lex_state = 69, .external_lex_state = 111}, - [5663] = {.lex_state = 69, .external_lex_state = 111}, - [5664] = {.lex_state = 69, .external_lex_state = 111}, - [5665] = {.lex_state = 312, .external_lex_state = 103}, - [5666] = {.lex_state = 69, .external_lex_state = 111}, - [5667] = {.lex_state = 312, .external_lex_state = 103}, - [5668] = {.lex_state = 69, .external_lex_state = 111}, - [5669] = {.lex_state = 69, .external_lex_state = 111}, - [5670] = {.lex_state = 69, .external_lex_state = 111}, - [5671] = {.lex_state = 312, .external_lex_state = 103}, - [5672] = {.lex_state = 312, .external_lex_state = 103}, - [5673] = {.lex_state = 312, .external_lex_state = 103}, - [5674] = {.lex_state = 69, .external_lex_state = 110}, - [5675] = {.lex_state = 312, .external_lex_state = 103}, - [5676] = {.lex_state = 312, .external_lex_state = 103}, - [5677] = {.lex_state = 312, .external_lex_state = 103}, - [5678] = {.lex_state = 312, .external_lex_state = 103}, - [5679] = {.lex_state = 312, .external_lex_state = 103}, - [5680] = {.lex_state = 69, .external_lex_state = 111}, - [5681] = {.lex_state = 312, .external_lex_state = 103}, - [5682] = {.lex_state = 312, .external_lex_state = 103}, - [5683] = {.lex_state = 69, .external_lex_state = 111}, - [5684] = {.lex_state = 312, .external_lex_state = 103}, - [5685] = {.lex_state = 312, .external_lex_state = 103}, - [5686] = {.lex_state = 312, .external_lex_state = 103}, - [5687] = {.lex_state = 312, .external_lex_state = 103}, - [5688] = {.lex_state = 69, .external_lex_state = 111}, - [5689] = {.lex_state = 312, .external_lex_state = 103}, - [5690] = {.lex_state = 312, .external_lex_state = 103}, - [5691] = {.lex_state = 312, .external_lex_state = 103}, - [5692] = {.lex_state = 312, .external_lex_state = 103}, - [5693] = {.lex_state = 69, .external_lex_state = 111}, - [5694] = {.lex_state = 312, .external_lex_state = 103}, - [5695] = {.lex_state = 312, .external_lex_state = 103}, - [5696] = {.lex_state = 69, .external_lex_state = 111}, - [5697] = {.lex_state = 293, .external_lex_state = 112}, - [5698] = {.lex_state = 286, .external_lex_state = 112}, - [5699] = {.lex_state = 286, .external_lex_state = 112}, - [5700] = {.lex_state = 293, .external_lex_state = 112}, - [5701] = {.lex_state = 69, .external_lex_state = 110}, - [5702] = {.lex_state = 318}, - [5703] = {.lex_state = 318}, - [5704] = {.lex_state = 318}, - [5705] = {.lex_state = 318}, - [5706] = {.lex_state = 318}, - [5707] = {.lex_state = 318}, - [5708] = {.lex_state = 318}, - [5709] = {.lex_state = 318}, - [5710] = {.lex_state = 318}, - [5711] = {.lex_state = 318}, - [5712] = {.lex_state = 318}, - [5713] = {.lex_state = 318}, - [5714] = {.lex_state = 318}, - [5715] = {.lex_state = 318}, - [5716] = {.lex_state = 318}, - [5717] = {.lex_state = 318}, - [5718] = {.lex_state = 318}, - [5719] = {.lex_state = 318}, - [5720] = {.lex_state = 318}, - [5721] = {.lex_state = 318}, - [5722] = {.lex_state = 318}, - [5723] = {.lex_state = 318}, - [5724] = {.lex_state = 318}, - [5725] = {.lex_state = 318}, - [5726] = {.lex_state = 318}, - [5727] = {.lex_state = 318}, - [5728] = {.lex_state = 318}, - [5729] = {.lex_state = 318}, - [5730] = {.lex_state = 318}, - [5731] = {.lex_state = 318}, - [5732] = {.lex_state = 318}, - [5733] = {.lex_state = 318}, - [5734] = {.lex_state = 318}, - [5735] = {.lex_state = 318}, - [5736] = {.lex_state = 318}, - [5737] = {.lex_state = 318}, - [5738] = {.lex_state = 66, .external_lex_state = 110}, - [5739] = {.lex_state = 318}, - [5740] = {.lex_state = 318}, - [5741] = {.lex_state = 318}, - [5742] = {.lex_state = 318}, - [5743] = {.lex_state = 318}, - [5744] = {.lex_state = 66, .external_lex_state = 110}, - [5745] = {.lex_state = 318}, - [5746] = {.lex_state = 318}, - [5747] = {.lex_state = 66, .external_lex_state = 110}, - [5748] = {.lex_state = 318}, - [5749] = {.lex_state = 318}, - [5750] = {.lex_state = 318}, - [5751] = {.lex_state = 318}, - [5752] = {.lex_state = 318}, - [5753] = {.lex_state = 318}, - [5754] = {.lex_state = 318}, - [5755] = {.lex_state = 318}, - [5756] = {.lex_state = 318}, - [5757] = {.lex_state = 318}, - [5758] = {.lex_state = 318}, - [5759] = {.lex_state = 318}, - [5760] = {.lex_state = 318}, - [5761] = {.lex_state = 318}, - [5762] = {.lex_state = 318}, - [5763] = {.lex_state = 318}, - [5764] = {.lex_state = 318}, - [5765] = {.lex_state = 318}, - [5766] = {.lex_state = 318}, - [5767] = {.lex_state = 318}, - [5768] = {.lex_state = 318}, - [5769] = {.lex_state = 318}, - [5770] = {.lex_state = 318}, - [5771] = {.lex_state = 318}, - [5772] = {.lex_state = 318}, - [5773] = {.lex_state = 318}, - [5774] = {.lex_state = 318}, - [5775] = {.lex_state = 318}, - [5776] = {.lex_state = 318}, - [5777] = {.lex_state = 318}, - [5778] = {.lex_state = 318}, - [5779] = {.lex_state = 318}, - [5780] = {.lex_state = 318}, - [5781] = {.lex_state = 318}, - [5782] = {.lex_state = 318}, - [5783] = {.lex_state = 318}, - [5784] = {.lex_state = 318}, - [5785] = {.lex_state = 318}, - [5786] = {.lex_state = 318}, - [5787] = {.lex_state = 318}, - [5788] = {.lex_state = 318}, - [5789] = {.lex_state = 66, .external_lex_state = 110}, - [5790] = {.lex_state = 318}, - [5791] = {.lex_state = 318}, - [5792] = {.lex_state = 318}, - [5793] = {.lex_state = 318}, - [5794] = {.lex_state = 318}, - [5795] = {.lex_state = 318}, - [5796] = {.lex_state = 318}, - [5797] = {.lex_state = 318}, - [5798] = {.lex_state = 318}, - [5799] = {.lex_state = 318}, - [5800] = {.lex_state = 318}, - [5801] = {.lex_state = 318}, - [5802] = {.lex_state = 318}, - [5803] = {.lex_state = 318}, - [5804] = {.lex_state = 318}, - [5805] = {.lex_state = 318}, - [5806] = {.lex_state = 318}, - [5807] = {.lex_state = 318}, - [5808] = {.lex_state = 318}, - [5809] = {.lex_state = 318}, - [5810] = {.lex_state = 318}, - [5811] = {.lex_state = 318}, - [5812] = {.lex_state = 318}, - [5813] = {.lex_state = 318}, - [5814] = {.lex_state = 318}, - [5815] = {.lex_state = 318}, - [5816] = {.lex_state = 318}, - [5817] = {.lex_state = 318}, - [5818] = {.lex_state = 318}, - [5819] = {.lex_state = 318}, - [5820] = {.lex_state = 318}, - [5821] = {.lex_state = 318}, - [5822] = {.lex_state = 318}, - [5823] = {.lex_state = 318}, - [5824] = {.lex_state = 318}, - [5825] = {.lex_state = 318}, - [5826] = {.lex_state = 318}, - [5827] = {.lex_state = 318}, - [5828] = {.lex_state = 318}, - [5829] = {.lex_state = 318}, - [5830] = {.lex_state = 318}, - [5831] = {.lex_state = 318}, - [5832] = {.lex_state = 318}, - [5833] = {.lex_state = 318}, - [5834] = {.lex_state = 318}, - [5835] = {.lex_state = 318}, - [5836] = {.lex_state = 318}, - [5837] = {.lex_state = 318}, - [5838] = {.lex_state = 318}, - [5839] = {.lex_state = 318}, - [5840] = {.lex_state = 318}, - [5841] = {.lex_state = 318}, - [5842] = {.lex_state = 318}, - [5843] = {.lex_state = 318}, - [5844] = {.lex_state = 318}, - [5845] = {.lex_state = 318}, - [5846] = {.lex_state = 318}, - [5847] = {.lex_state = 318}, - [5848] = {.lex_state = 318}, - [5849] = {.lex_state = 318}, - [5850] = {.lex_state = 318}, - [5851] = {.lex_state = 318}, - [5852] = {.lex_state = 318}, - [5853] = {.lex_state = 318}, - [5854] = {.lex_state = 318}, - [5855] = {.lex_state = 318}, - [5856] = {.lex_state = 318}, - [5857] = {.lex_state = 318}, - [5858] = {.lex_state = 318}, - [5859] = {.lex_state = 318}, - [5860] = {.lex_state = 318}, - [5861] = {.lex_state = 318}, - [5862] = {.lex_state = 318}, - [5863] = {.lex_state = 318}, - [5864] = {.lex_state = 318}, - [5865] = {.lex_state = 288, .external_lex_state = 112}, - [5866] = {.lex_state = 287, .external_lex_state = 112}, - [5867] = {.lex_state = 287, .external_lex_state = 112}, - [5868] = {.lex_state = 287, .external_lex_state = 112}, - [5869] = {.lex_state = 287, .external_lex_state = 112}, - [5870] = {.lex_state = 288, .external_lex_state = 112}, - [5871] = {.lex_state = 287, .external_lex_state = 112}, - [5872] = {.lex_state = 287, .external_lex_state = 112}, - [5873] = {.lex_state = 287, .external_lex_state = 112}, - [5874] = {.lex_state = 287, .external_lex_state = 112}, - [5875] = {.lex_state = 288, .external_lex_state = 112}, - [5876] = {.lex_state = 288, .external_lex_state = 112}, - [5877] = {.lex_state = 287, .external_lex_state = 112}, - [5878] = {.lex_state = 287, .external_lex_state = 112}, - [5879] = {.lex_state = 288, .external_lex_state = 112}, - [5880] = {.lex_state = 287, .external_lex_state = 112}, - [5881] = {.lex_state = 287, .external_lex_state = 112}, - [5882] = {.lex_state = 287, .external_lex_state = 112}, - [5883] = {.lex_state = 288, .external_lex_state = 112}, - [5884] = {.lex_state = 288, .external_lex_state = 112}, - [5885] = {.lex_state = 287, .external_lex_state = 112}, - [5886] = {.lex_state = 287, .external_lex_state = 112}, - [5887] = {.lex_state = 287, .external_lex_state = 112}, - [5888] = {.lex_state = 287, .external_lex_state = 112}, - [5889] = {.lex_state = 287, .external_lex_state = 112}, - [5890] = {.lex_state = 287, .external_lex_state = 112}, - [5891] = {.lex_state = 287, .external_lex_state = 112}, - [5892] = {.lex_state = 288, .external_lex_state = 112}, - [5893] = {.lex_state = 287, .external_lex_state = 112}, - [5894] = {.lex_state = 288, .external_lex_state = 112}, - [5895] = {.lex_state = 288, .external_lex_state = 112}, - [5896] = {.lex_state = 287, .external_lex_state = 112}, - [5897] = {.lex_state = 287, .external_lex_state = 112}, - [5898] = {.lex_state = 287, .external_lex_state = 112}, - [5899] = {.lex_state = 287, .external_lex_state = 112}, - [5900] = {.lex_state = 288, .external_lex_state = 112}, - [5901] = {.lex_state = 287, .external_lex_state = 112}, - [5902] = {.lex_state = 287, .external_lex_state = 112}, - [5903] = {.lex_state = 288, .external_lex_state = 112}, - [5904] = {.lex_state = 287, .external_lex_state = 112}, - [5905] = {.lex_state = 287, .external_lex_state = 112}, - [5906] = {.lex_state = 287, .external_lex_state = 112}, - [5907] = {.lex_state = 288, .external_lex_state = 112}, - [5908] = {.lex_state = 288, .external_lex_state = 112}, - [5909] = {.lex_state = 287, .external_lex_state = 112}, - [5910] = {.lex_state = 287, .external_lex_state = 112}, - [5911] = {.lex_state = 287, .external_lex_state = 112}, - [5912] = {.lex_state = 287, .external_lex_state = 112}, - [5913] = {.lex_state = 287, .external_lex_state = 112}, - [5914] = {.lex_state = 287, .external_lex_state = 112}, - [5915] = {.lex_state = 288, .external_lex_state = 112}, - [5916] = {.lex_state = 287, .external_lex_state = 112}, - [5917] = {.lex_state = 287, .external_lex_state = 112}, - [5918] = {.lex_state = 287, .external_lex_state = 112}, - [5919] = {.lex_state = 288, .external_lex_state = 112}, - [5920] = {.lex_state = 288, .external_lex_state = 112}, - [5921] = {.lex_state = 287, .external_lex_state = 112}, - [5922] = {.lex_state = 287, .external_lex_state = 112}, - [5923] = {.lex_state = 288, .external_lex_state = 112}, - [5924] = {.lex_state = 288, .external_lex_state = 112}, - [5925] = {.lex_state = 288, .external_lex_state = 112}, - [5926] = {.lex_state = 288, .external_lex_state = 112}, - [5927] = {.lex_state = 287, .external_lex_state = 112}, - [5928] = {.lex_state = 287, .external_lex_state = 112}, - [5929] = {.lex_state = 287, .external_lex_state = 112}, - [5930] = {.lex_state = 288, .external_lex_state = 112}, - [5931] = {.lex_state = 287, .external_lex_state = 112}, - [5932] = {.lex_state = 287, .external_lex_state = 112}, - [5933] = {.lex_state = 287, .external_lex_state = 112}, - [5934] = {.lex_state = 287, .external_lex_state = 112}, - [5935] = {.lex_state = 288, .external_lex_state = 112}, - [5936] = {.lex_state = 288, .external_lex_state = 112}, - [5937] = {.lex_state = 287, .external_lex_state = 112}, - [5938] = {.lex_state = 287, .external_lex_state = 112}, - [5939] = {.lex_state = 287, .external_lex_state = 112}, - [5940] = {.lex_state = 288, .external_lex_state = 112}, - [5941] = {.lex_state = 287, .external_lex_state = 112}, - [5942] = {.lex_state = 287, .external_lex_state = 112}, - [5943] = {.lex_state = 287, .external_lex_state = 112}, - [5944] = {.lex_state = 287, .external_lex_state = 112}, - [5945] = {.lex_state = 287, .external_lex_state = 112}, - [5946] = {.lex_state = 287, .external_lex_state = 112}, - [5947] = {.lex_state = 287, .external_lex_state = 112}, - [5948] = {.lex_state = 287, .external_lex_state = 112}, - [5949] = {.lex_state = 288, .external_lex_state = 112}, - [5950] = {.lex_state = 288, .external_lex_state = 112}, - [5951] = {.lex_state = 287, .external_lex_state = 112}, - [5952] = {.lex_state = 288, .external_lex_state = 112}, - [5953] = {.lex_state = 287, .external_lex_state = 112}, - [5954] = {.lex_state = 287, .external_lex_state = 112}, - [5955] = {.lex_state = 287, .external_lex_state = 112}, - [5956] = {.lex_state = 288, .external_lex_state = 112}, - [5957] = {.lex_state = 287, .external_lex_state = 112}, - [5958] = {.lex_state = 288, .external_lex_state = 112}, - [5959] = {.lex_state = 287, .external_lex_state = 112}, - [5960] = {.lex_state = 287, .external_lex_state = 112}, - [5961] = {.lex_state = 287, .external_lex_state = 112}, - [5962] = {.lex_state = 287, .external_lex_state = 112}, - [5963] = {.lex_state = 287, .external_lex_state = 112}, - [5964] = {.lex_state = 287, .external_lex_state = 112}, - [5965] = {.lex_state = 287, .external_lex_state = 112}, - [5966] = {.lex_state = 287, .external_lex_state = 112}, - [5967] = {.lex_state = 287, .external_lex_state = 112}, - [5968] = {.lex_state = 288, .external_lex_state = 112}, - [5969] = {.lex_state = 288, .external_lex_state = 112}, - [5970] = {.lex_state = 287, .external_lex_state = 112}, - [5971] = {.lex_state = 288, .external_lex_state = 112}, - [5972] = {.lex_state = 287, .external_lex_state = 112}, - [5973] = {.lex_state = 287, .external_lex_state = 112}, - [5974] = {.lex_state = 288, .external_lex_state = 112}, - [5975] = {.lex_state = 287, .external_lex_state = 112}, - [5976] = {.lex_state = 288, .external_lex_state = 112}, - [5977] = {.lex_state = 287, .external_lex_state = 112}, - [5978] = {.lex_state = 287, .external_lex_state = 112}, - [5979] = {.lex_state = 288, .external_lex_state = 112}, - [5980] = {.lex_state = 287, .external_lex_state = 112}, - [5981] = {.lex_state = 288, .external_lex_state = 112}, - [5982] = {.lex_state = 287, .external_lex_state = 112}, - [5983] = {.lex_state = 287, .external_lex_state = 112}, - [5984] = {.lex_state = 287, .external_lex_state = 112}, - [5985] = {.lex_state = 287, .external_lex_state = 112}, - [5986] = {.lex_state = 287, .external_lex_state = 112}, - [5987] = {.lex_state = 287, .external_lex_state = 112}, - [5988] = {.lex_state = 287, .external_lex_state = 112}, - [5989] = {.lex_state = 287, .external_lex_state = 112}, - [5990] = {.lex_state = 287, .external_lex_state = 112}, - [5991] = {.lex_state = 287, .external_lex_state = 112}, - [5992] = {.lex_state = 288, .external_lex_state = 112}, - [5993] = {.lex_state = 287, .external_lex_state = 112}, - [5994] = {.lex_state = 288, .external_lex_state = 112}, - [5995] = {.lex_state = 287, .external_lex_state = 112}, - [5996] = {.lex_state = 287, .external_lex_state = 112}, - [5997] = {.lex_state = 288, .external_lex_state = 112}, - [5998] = {.lex_state = 287, .external_lex_state = 112}, - [5999] = {.lex_state = 287, .external_lex_state = 112}, - [6000] = {.lex_state = 287, .external_lex_state = 112}, - [6001] = {.lex_state = 287, .external_lex_state = 112}, - [6002] = {.lex_state = 287, .external_lex_state = 112}, - [6003] = {.lex_state = 287, .external_lex_state = 112}, - [6004] = {.lex_state = 287, .external_lex_state = 112}, - [6005] = {.lex_state = 288, .external_lex_state = 112}, - [6006] = {.lex_state = 287, .external_lex_state = 112}, - [6007] = {.lex_state = 288, .external_lex_state = 112}, - [6008] = {.lex_state = 287, .external_lex_state = 112}, - [6009] = {.lex_state = 287, .external_lex_state = 112}, - [6010] = {.lex_state = 287, .external_lex_state = 112}, - [6011] = {.lex_state = 287, .external_lex_state = 112}, - [6012] = {.lex_state = 288, .external_lex_state = 112}, - [6013] = {.lex_state = 287, .external_lex_state = 112}, - [6014] = {.lex_state = 288, .external_lex_state = 112}, - [6015] = {.lex_state = 287, .external_lex_state = 112}, - [6016] = {.lex_state = 287, .external_lex_state = 112}, - [6017] = {.lex_state = 287, .external_lex_state = 112}, - [6018] = {.lex_state = 287, .external_lex_state = 112}, - [6019] = {.lex_state = 287, .external_lex_state = 112}, - [6020] = {.lex_state = 287, .external_lex_state = 112}, - [6021] = {.lex_state = 287, .external_lex_state = 112}, - [6022] = {.lex_state = 287, .external_lex_state = 112}, - [6023] = {.lex_state = 287, .external_lex_state = 112}, - [6024] = {.lex_state = 288, .external_lex_state = 112}, - [6025] = {.lex_state = 287, .external_lex_state = 112}, - [6026] = {.lex_state = 287, .external_lex_state = 112}, - [6027] = {.lex_state = 287, .external_lex_state = 112}, - [6028] = {.lex_state = 288, .external_lex_state = 112}, - [6029] = {.lex_state = 287, .external_lex_state = 112}, - [6030] = {.lex_state = 288, .external_lex_state = 112}, - [6031] = {.lex_state = 287, .external_lex_state = 112}, - [6032] = {.lex_state = 287, .external_lex_state = 112}, - [6033] = {.lex_state = 287, .external_lex_state = 112}, - [6034] = {.lex_state = 288, .external_lex_state = 112}, - [6035] = {.lex_state = 288, .external_lex_state = 112}, - [6036] = {.lex_state = 287, .external_lex_state = 112}, - [6037] = {.lex_state = 287, .external_lex_state = 112}, - [6038] = {.lex_state = 288, .external_lex_state = 112}, - [6039] = {.lex_state = 288, .external_lex_state = 112}, - [6040] = {.lex_state = 287, .external_lex_state = 112}, - [6041] = {.lex_state = 287, .external_lex_state = 112}, - [6042] = {.lex_state = 287, .external_lex_state = 112}, - [6043] = {.lex_state = 287, .external_lex_state = 112}, - [6044] = {.lex_state = 288, .external_lex_state = 112}, - [6045] = {.lex_state = 287, .external_lex_state = 112}, - [6046] = {.lex_state = 287, .external_lex_state = 112}, - [6047] = {.lex_state = 288, .external_lex_state = 112}, - [6048] = {.lex_state = 288, .external_lex_state = 112}, - [6049] = {.lex_state = 287, .external_lex_state = 112}, - [6050] = {.lex_state = 287, .external_lex_state = 112}, - [6051] = {.lex_state = 288, .external_lex_state = 112}, - [6052] = {.lex_state = 287, .external_lex_state = 112}, - [6053] = {.lex_state = 288, .external_lex_state = 112}, - [6054] = {.lex_state = 287, .external_lex_state = 112}, - [6055] = {.lex_state = 287, .external_lex_state = 112}, - [6056] = {.lex_state = 287, .external_lex_state = 112}, - [6057] = {.lex_state = 287, .external_lex_state = 112}, - [6058] = {.lex_state = 287, .external_lex_state = 112}, - [6059] = {.lex_state = 287, .external_lex_state = 112}, - [6060] = {.lex_state = 288, .external_lex_state = 112}, - [6061] = {.lex_state = 288, .external_lex_state = 112}, - [6062] = {.lex_state = 287, .external_lex_state = 112}, - [6063] = {.lex_state = 287, .external_lex_state = 112}, - [6064] = {.lex_state = 287, .external_lex_state = 112}, - [6065] = {.lex_state = 287, .external_lex_state = 112}, - [6066] = {.lex_state = 288, .external_lex_state = 112}, - [6067] = {.lex_state = 287, .external_lex_state = 112}, - [6068] = {.lex_state = 287, .external_lex_state = 112}, - [6069] = {.lex_state = 287, .external_lex_state = 112}, - [6070] = {.lex_state = 288, .external_lex_state = 112}, - [6071] = {.lex_state = 288, .external_lex_state = 112}, - [6072] = {.lex_state = 287, .external_lex_state = 112}, - [6073] = {.lex_state = 287, .external_lex_state = 112}, - [6074] = {.lex_state = 287, .external_lex_state = 112}, - [6075] = {.lex_state = 287, .external_lex_state = 112}, - [6076] = {.lex_state = 287, .external_lex_state = 112}, - [6077] = {.lex_state = 287, .external_lex_state = 112}, - [6078] = {.lex_state = 288, .external_lex_state = 112}, - [6079] = {.lex_state = 287, .external_lex_state = 112}, - [6080] = {.lex_state = 287, .external_lex_state = 112}, - [6081] = {.lex_state = 287, .external_lex_state = 112}, - [6082] = {.lex_state = 288, .external_lex_state = 112}, - [6083] = {.lex_state = 287, .external_lex_state = 112}, - [6084] = {.lex_state = 288, .external_lex_state = 112}, - [6085] = {.lex_state = 288, .external_lex_state = 112}, - [6086] = {.lex_state = 287, .external_lex_state = 112}, - [6087] = {.lex_state = 287, .external_lex_state = 112}, - [6088] = {.lex_state = 289, .external_lex_state = 113}, - [6089] = {.lex_state = 289, .external_lex_state = 113}, - [6090] = {.lex_state = 289, .external_lex_state = 113}, - [6091] = {.lex_state = 289, .external_lex_state = 113}, - [6092] = {.lex_state = 289, .external_lex_state = 113}, - [6093] = {.lex_state = 289, .external_lex_state = 113}, - [6094] = {.lex_state = 289, .external_lex_state = 113}, - [6095] = {.lex_state = 66, .external_lex_state = 104}, - [6096] = {.lex_state = 66, .external_lex_state = 104}, - [6097] = {.lex_state = 289, .external_lex_state = 113}, - [6098] = {.lex_state = 290, .external_lex_state = 112}, - [6099] = {.lex_state = 291, .external_lex_state = 112}, - [6100] = {.lex_state = 312, .external_lex_state = 113}, - [6101] = {.lex_state = 291, .external_lex_state = 112}, - [6102] = {.lex_state = 291, .external_lex_state = 112}, - [6103] = {.lex_state = 291, .external_lex_state = 112}, - [6104] = {.lex_state = 312, .external_lex_state = 113}, - [6105] = {.lex_state = 312, .external_lex_state = 113}, - [6106] = {.lex_state = 312, .external_lex_state = 113}, - [6107] = {.lex_state = 312, .external_lex_state = 113}, - [6108] = {.lex_state = 291, .external_lex_state = 112}, - [6109] = {.lex_state = 312, .external_lex_state = 113}, - [6110] = {.lex_state = 291, .external_lex_state = 112}, - [6111] = {.lex_state = 291, .external_lex_state = 112}, - [6112] = {.lex_state = 291, .external_lex_state = 112}, - [6113] = {.lex_state = 312, .external_lex_state = 113}, - [6114] = {.lex_state = 291, .external_lex_state = 112}, - [6115] = {.lex_state = 312, .external_lex_state = 113}, - [6116] = {.lex_state = 312, .external_lex_state = 113}, - [6117] = {.lex_state = 323}, - [6118] = {.lex_state = 323}, - [6119] = {.lex_state = 323}, - [6120] = {.lex_state = 323}, - [6121] = {.lex_state = 313, .external_lex_state = 114}, - [6122] = {.lex_state = 318, .external_lex_state = 115}, - [6123] = {.lex_state = 318, .external_lex_state = 115}, - [6124] = {.lex_state = 318, .external_lex_state = 115}, - [6125] = {.lex_state = 318, .external_lex_state = 115}, - [6126] = {.lex_state = 323}, - [6127] = {.lex_state = 318, .external_lex_state = 115}, - [6128] = {.lex_state = 271, .external_lex_state = 116}, - [6129] = {.lex_state = 323}, - [6130] = {.lex_state = 323}, - [6131] = {.lex_state = 271, .external_lex_state = 116}, - [6132] = {.lex_state = 323}, - [6133] = {.lex_state = 323}, - [6134] = {.lex_state = 323}, - [6135] = {.lex_state = 323}, - [6136] = {.lex_state = 323}, - [6137] = {.lex_state = 271, .external_lex_state = 116}, - [6138] = {.lex_state = 318, .external_lex_state = 115}, - [6139] = {.lex_state = 323}, - [6140] = {.lex_state = 318, .external_lex_state = 115}, - [6141] = {.lex_state = 318, .external_lex_state = 115}, - [6142] = {.lex_state = 323}, - [6143] = {.lex_state = 318, .external_lex_state = 115}, - [6144] = {.lex_state = 323}, - [6145] = {.lex_state = 323}, - [6146] = {.lex_state = 323}, - [6147] = {.lex_state = 318, .external_lex_state = 115}, - [6148] = {.lex_state = 323}, - [6149] = {.lex_state = 323}, - [6150] = {.lex_state = 323}, - [6151] = {.lex_state = 323}, - [6152] = {.lex_state = 323}, - [6153] = {.lex_state = 323}, - [6154] = {.lex_state = 318, .external_lex_state = 115}, - [6155] = {.lex_state = 323}, - [6156] = {.lex_state = 323}, - [6157] = {.lex_state = 323}, - [6158] = {.lex_state = 323}, - [6159] = {.lex_state = 323, .external_lex_state = 99}, - [6160] = {.lex_state = 323, .external_lex_state = 99}, - [6161] = {.lex_state = 323, .external_lex_state = 99}, - [6162] = {.lex_state = 323, .external_lex_state = 99}, - [6163] = {.lex_state = 323, .external_lex_state = 99}, - [6164] = {.lex_state = 313}, - [6165] = {.lex_state = 323, .external_lex_state = 99}, - [6166] = {.lex_state = 323, .external_lex_state = 99}, - [6167] = {.lex_state = 323, .external_lex_state = 99}, - [6168] = {.lex_state = 323, .external_lex_state = 99}, - [6169] = {.lex_state = 323, .external_lex_state = 99}, - [6170] = {.lex_state = 323, .external_lex_state = 99}, - [6171] = {.lex_state = 323, .external_lex_state = 99}, - [6172] = {.lex_state = 323, .external_lex_state = 99}, - [6173] = {.lex_state = 323, .external_lex_state = 99}, - [6174] = {.lex_state = 323, .external_lex_state = 99}, - [6175] = {.lex_state = 323, .external_lex_state = 99}, - [6176] = {.lex_state = 324}, - [6177] = {.lex_state = 323, .external_lex_state = 99}, - [6178] = {.lex_state = 323, .external_lex_state = 99}, - [6179] = {.lex_state = 318}, - [6180] = {.lex_state = 323, .external_lex_state = 99}, - [6181] = {.lex_state = 323, .external_lex_state = 99}, - [6182] = {.lex_state = 323, .external_lex_state = 99}, - [6183] = {.lex_state = 318}, - [6184] = {.lex_state = 323, .external_lex_state = 99}, - [6185] = {.lex_state = 323, .external_lex_state = 99}, - [6186] = {.lex_state = 323, .external_lex_state = 99}, - [6187] = {.lex_state = 314, .external_lex_state = 117}, - [6188] = {.lex_state = 70, .external_lex_state = 118}, - [6189] = {.lex_state = 70, .external_lex_state = 118}, - [6190] = {.lex_state = 315, .external_lex_state = 119}, - [6191] = {.lex_state = 70, .external_lex_state = 118}, - [6192] = {.lex_state = 70, .external_lex_state = 118}, - [6193] = {.lex_state = 70, .external_lex_state = 118}, - [6194] = {.lex_state = 315, .external_lex_state = 119}, - [6195] = {.lex_state = 321}, - [6196] = {.lex_state = 321}, - [6197] = {.lex_state = 315, .external_lex_state = 119}, - [6198] = {.lex_state = 70, .external_lex_state = 118}, - [6199] = {.lex_state = 70, .external_lex_state = 118}, - [6200] = {.lex_state = 70, .external_lex_state = 118}, - [6201] = {.lex_state = 70, .external_lex_state = 118}, - [6202] = {.lex_state = 70, .external_lex_state = 118}, - [6203] = {.lex_state = 70, .external_lex_state = 118}, - [6204] = {.lex_state = 70, .external_lex_state = 118}, - [6205] = {.lex_state = 70, .external_lex_state = 118}, - [6206] = {.lex_state = 70, .external_lex_state = 118}, - [6207] = {.lex_state = 70, .external_lex_state = 118}, - [6208] = {.lex_state = 314, .external_lex_state = 114}, - [6209] = {.lex_state = 70, .external_lex_state = 118}, - [6210] = {.lex_state = 70, .external_lex_state = 118}, - [6211] = {.lex_state = 271, .external_lex_state = 116}, - [6212] = {.lex_state = 314, .external_lex_state = 114}, - [6213] = {.lex_state = 70, .external_lex_state = 120}, - [6214] = {.lex_state = 70, .external_lex_state = 118}, - [6215] = {.lex_state = 314, .external_lex_state = 114}, - [6216] = {.lex_state = 314, .external_lex_state = 114}, - [6217] = {.lex_state = 70, .external_lex_state = 118}, - [6218] = {.lex_state = 314, .external_lex_state = 114}, - [6219] = {.lex_state = 70, .external_lex_state = 120}, - [6220] = {.lex_state = 70, .external_lex_state = 120}, - [6221] = {.lex_state = 70, .external_lex_state = 118}, - [6222] = {.lex_state = 70, .external_lex_state = 118}, - [6223] = {.lex_state = 70, .external_lex_state = 120}, - [6224] = {.lex_state = 271, .external_lex_state = 116}, - [6225] = {.lex_state = 70, .external_lex_state = 118}, - [6226] = {.lex_state = 271, .external_lex_state = 116}, - [6227] = {.lex_state = 314, .external_lex_state = 114}, - [6228] = {.lex_state = 314, .external_lex_state = 114}, - [6229] = {.lex_state = 314, .external_lex_state = 114}, - [6230] = {.lex_state = 70, .external_lex_state = 118}, - [6231] = {.lex_state = 70, .external_lex_state = 118}, - [6232] = {.lex_state = 70, .external_lex_state = 118}, - [6233] = {.lex_state = 271, .external_lex_state = 116}, - [6234] = {.lex_state = 314, .external_lex_state = 114}, - [6235] = {.lex_state = 271, .external_lex_state = 116}, - [6236] = {.lex_state = 70, .external_lex_state = 118}, - [6237] = {.lex_state = 271, .external_lex_state = 116}, - [6238] = {.lex_state = 70, .external_lex_state = 118}, - [6239] = {.lex_state = 271, .external_lex_state = 116}, - [6240] = {.lex_state = 70, .external_lex_state = 120}, - [6241] = {.lex_state = 70, .external_lex_state = 118}, - [6242] = {.lex_state = 70, .external_lex_state = 118}, - [6243] = {.lex_state = 70, .external_lex_state = 118}, - [6244] = {.lex_state = 70, .external_lex_state = 118}, - [6245] = {.lex_state = 314, .external_lex_state = 114}, - [6246] = {.lex_state = 314, .external_lex_state = 114}, - [6247] = {.lex_state = 314, .external_lex_state = 114}, - [6248] = {.lex_state = 271}, - [6249] = {.lex_state = 271}, - [6250] = {.lex_state = 271}, - [6251] = {.lex_state = 271}, - [6252] = {.lex_state = 271}, - [6253] = {.lex_state = 271}, - [6254] = {.lex_state = 271}, - [6255] = {.lex_state = 271}, - [6256] = {.lex_state = 314, .external_lex_state = 114}, - [6257] = {.lex_state = 271}, - [6258] = {.lex_state = 314, .external_lex_state = 114}, - [6259] = {.lex_state = 314, .external_lex_state = 114}, - [6260] = {.lex_state = 314, .external_lex_state = 114}, - [6261] = {.lex_state = 314, .external_lex_state = 114}, - [6262] = {.lex_state = 314, .external_lex_state = 114}, - [6263] = {.lex_state = 271}, - [6264] = {.lex_state = 314, .external_lex_state = 114}, - [6265] = {.lex_state = 324}, - [6266] = {.lex_state = 314, .external_lex_state = 114}, - [6267] = {.lex_state = 314, .external_lex_state = 114}, - [6268] = {.lex_state = 314, .external_lex_state = 114}, - [6269] = {.lex_state = 271}, - [6270] = {.lex_state = 65, .external_lex_state = 120}, - [6271] = {.lex_state = 271}, - [6272] = {.lex_state = 271}, - [6273] = {.lex_state = 271}, - [6274] = {.lex_state = 271}, - [6275] = {.lex_state = 314, .external_lex_state = 114}, - [6276] = {.lex_state = 271}, - [6277] = {.lex_state = 271}, - [6278] = {.lex_state = 271}, - [6279] = {.lex_state = 314, .external_lex_state = 114}, - [6280] = {.lex_state = 65, .external_lex_state = 120}, - [6281] = {.lex_state = 271}, - [6282] = {.lex_state = 271}, - [6283] = {.lex_state = 271}, - [6284] = {.lex_state = 271}, - [6285] = {.lex_state = 271}, - [6286] = {.lex_state = 65, .external_lex_state = 120}, - [6287] = {.lex_state = 314, .external_lex_state = 114}, - [6288] = {.lex_state = 271}, - [6289] = {.lex_state = 324}, - [6290] = {.lex_state = 271}, - [6291] = {.lex_state = 271}, - [6292] = {.lex_state = 271}, - [6293] = {.lex_state = 315, .external_lex_state = 119}, - [6294] = {.lex_state = 271}, - [6295] = {.lex_state = 271}, - [6296] = {.lex_state = 271}, - [6297] = {.lex_state = 271}, - [6298] = {.lex_state = 271}, - [6299] = {.lex_state = 314, .external_lex_state = 114}, - [6300] = {.lex_state = 65, .external_lex_state = 120}, - [6301] = {.lex_state = 314, .external_lex_state = 114}, - [6302] = {.lex_state = 297, .external_lex_state = 115}, - [6303] = {.lex_state = 297, .external_lex_state = 115}, - [6304] = {.lex_state = 70, .external_lex_state = 120}, - [6305] = {.lex_state = 271}, - [6306] = {.lex_state = 315, .external_lex_state = 119}, - [6307] = {.lex_state = 271}, - [6308] = {.lex_state = 271}, - [6309] = {.lex_state = 271}, - [6310] = {.lex_state = 297, .external_lex_state = 115}, - [6311] = {.lex_state = 271}, - [6312] = {.lex_state = 297, .external_lex_state = 115}, - [6313] = {.lex_state = 271}, - [6314] = {.lex_state = 326, .external_lex_state = 121}, - [6315] = {.lex_state = 271}, - [6316] = {.lex_state = 271}, - [6317] = {.lex_state = 315, .external_lex_state = 119}, - [6318] = {.lex_state = 297, .external_lex_state = 115}, - [6319] = {.lex_state = 65, .external_lex_state = 120}, - [6320] = {.lex_state = 271}, - [6321] = {.lex_state = 271}, - [6322] = {.lex_state = 271}, - [6323] = {.lex_state = 271}, - [6324] = {.lex_state = 271}, - [6325] = {.lex_state = 271}, - [6326] = {.lex_state = 297, .external_lex_state = 115}, - [6327] = {.lex_state = 324}, - [6328] = {.lex_state = 297, .external_lex_state = 115}, - [6329] = {.lex_state = 271}, - [6330] = {.lex_state = 65, .external_lex_state = 120}, - [6331] = {.lex_state = 324}, - [6332] = {.lex_state = 271}, - [6333] = {.lex_state = 271}, - [6334] = {.lex_state = 65, .external_lex_state = 120}, - [6335] = {.lex_state = 271}, - [6336] = {.lex_state = 271}, - [6337] = {.lex_state = 324}, - [6338] = {.lex_state = 297, .external_lex_state = 115}, - [6339] = {.lex_state = 324}, - [6340] = {.lex_state = 324}, - [6341] = {.lex_state = 271}, - [6342] = {.lex_state = 271}, - [6343] = {.lex_state = 271}, - [6344] = {.lex_state = 314, .external_lex_state = 114}, - [6345] = {.lex_state = 271}, - [6346] = {.lex_state = 326, .external_lex_state = 121}, - [6347] = {.lex_state = 271}, - [6348] = {.lex_state = 271}, - [6349] = {.lex_state = 271}, - [6350] = {.lex_state = 271}, - [6351] = {.lex_state = 271}, - [6352] = {.lex_state = 271}, - [6353] = {.lex_state = 326, .external_lex_state = 121}, - [6354] = {.lex_state = 271}, - [6355] = {.lex_state = 271}, - [6356] = {.lex_state = 271}, - [6357] = {.lex_state = 271}, - [6358] = {.lex_state = 271}, - [6359] = {.lex_state = 271}, - [6360] = {.lex_state = 271}, - [6361] = {.lex_state = 315, .external_lex_state = 119}, - [6362] = {.lex_state = 271}, - [6363] = {.lex_state = 324}, - [6364] = {.lex_state = 297, .external_lex_state = 115}, - [6365] = {.lex_state = 65, .external_lex_state = 120}, - [6366] = {.lex_state = 271}, - [6367] = {.lex_state = 271}, - [6368] = {.lex_state = 542, .external_lex_state = 122}, - [6369] = {.lex_state = 542, .external_lex_state = 122}, - [6370] = {.lex_state = 271, .external_lex_state = 123}, - [6371] = {.lex_state = 542, .external_lex_state = 122}, - [6372] = {.lex_state = 326, .external_lex_state = 124}, - [6373] = {.lex_state = 297, .external_lex_state = 115}, - [6374] = {.lex_state = 70, .external_lex_state = 120}, - [6375] = {.lex_state = 542, .external_lex_state = 122}, - [6376] = {.lex_state = 70, .external_lex_state = 120}, - [6377] = {.lex_state = 542, .external_lex_state = 122}, - [6378] = {.lex_state = 542, .external_lex_state = 122}, - [6379] = {.lex_state = 326, .external_lex_state = 124}, - [6380] = {.lex_state = 542, .external_lex_state = 122}, - [6381] = {.lex_state = 70, .external_lex_state = 120}, - [6382] = {.lex_state = 542, .external_lex_state = 122}, - [6383] = {.lex_state = 542, .external_lex_state = 122}, - [6384] = {.lex_state = 542, .external_lex_state = 122}, - [6385] = {.lex_state = 542, .external_lex_state = 122}, - [6386] = {.lex_state = 313}, - [6387] = {.lex_state = 542, .external_lex_state = 122}, - [6388] = {.lex_state = 271, .external_lex_state = 123}, - [6389] = {.lex_state = 271, .external_lex_state = 125}, - [6390] = {.lex_state = 271, .external_lex_state = 125}, - [6391] = {.lex_state = 542, .external_lex_state = 122}, - [6392] = {.lex_state = 542, .external_lex_state = 122}, - [6393] = {.lex_state = 297, .external_lex_state = 115}, - [6394] = {.lex_state = 271, .external_lex_state = 125}, - [6395] = {.lex_state = 542, .external_lex_state = 122}, - [6396] = {.lex_state = 313}, - [6397] = {.lex_state = 542, .external_lex_state = 122}, - [6398] = {.lex_state = 542, .external_lex_state = 122}, - [6399] = {.lex_state = 542, .external_lex_state = 122}, - [6400] = {.lex_state = 324}, - [6401] = {.lex_state = 542, .external_lex_state = 122}, - [6402] = {.lex_state = 271, .external_lex_state = 125}, - [6403] = {.lex_state = 271, .external_lex_state = 123}, - [6404] = {.lex_state = 542, .external_lex_state = 122}, - [6405] = {.lex_state = 296}, - [6406] = {.lex_state = 542, .external_lex_state = 122}, - [6407] = {.lex_state = 271, .external_lex_state = 123}, - [6408] = {.lex_state = 70, .external_lex_state = 120}, - [6409] = {.lex_state = 296}, - [6410] = {.lex_state = 326, .external_lex_state = 124}, - [6411] = {.lex_state = 542, .external_lex_state = 122}, - [6412] = {.lex_state = 542, .external_lex_state = 122}, - [6413] = {.lex_state = 70, .external_lex_state = 120}, - [6414] = {.lex_state = 542, .external_lex_state = 122}, - [6415] = {.lex_state = 296}, - [6416] = {.lex_state = 542, .external_lex_state = 122}, - [6417] = {.lex_state = 313}, - [6418] = {.lex_state = 542, .external_lex_state = 122}, - [6419] = {.lex_state = 297, .external_lex_state = 115}, - [6420] = {.lex_state = 297, .external_lex_state = 115}, - [6421] = {.lex_state = 542, .external_lex_state = 122}, - [6422] = {.lex_state = 542, .external_lex_state = 122}, - [6423] = {.lex_state = 542, .external_lex_state = 122}, - [6424] = {.lex_state = 271, .external_lex_state = 125}, - [6425] = {.lex_state = 326, .external_lex_state = 124}, - [6426] = {.lex_state = 296}, - [6427] = {.lex_state = 326, .external_lex_state = 124}, - [6428] = {.lex_state = 271, .external_lex_state = 125}, - [6429] = {.lex_state = 542, .external_lex_state = 122}, - [6430] = {.lex_state = 542, .external_lex_state = 122}, - [6431] = {.lex_state = 542, .external_lex_state = 122}, - [6432] = {.lex_state = 542, .external_lex_state = 122}, - [6433] = {.lex_state = 542, .external_lex_state = 122}, - [6434] = {.lex_state = 542, .external_lex_state = 122}, - [6435] = {.lex_state = 326, .external_lex_state = 121}, - [6436] = {.lex_state = 326, .external_lex_state = 121}, - [6437] = {.lex_state = 542, .external_lex_state = 122}, - [6438] = {.lex_state = 326, .external_lex_state = 121}, - [6439] = {.lex_state = 297, .external_lex_state = 115}, - [6440] = {.lex_state = 542, .external_lex_state = 122}, - [6441] = {.lex_state = 313}, - [6442] = {.lex_state = 542, .external_lex_state = 122}, - [6443] = {.lex_state = 70, .external_lex_state = 120}, - [6444] = {.lex_state = 542, .external_lex_state = 122}, - [6445] = {.lex_state = 542, .external_lex_state = 122}, - [6446] = {.lex_state = 542, .external_lex_state = 122}, - [6447] = {.lex_state = 542, .external_lex_state = 122}, - [6448] = {.lex_state = 271, .external_lex_state = 125}, - [6449] = {.lex_state = 326, .external_lex_state = 124}, - [6450] = {.lex_state = 542, .external_lex_state = 122}, - [6451] = {.lex_state = 542, .external_lex_state = 122}, - [6452] = {.lex_state = 542, .external_lex_state = 122}, - [6453] = {.lex_state = 542, .external_lex_state = 122}, - [6454] = {.lex_state = 542, .external_lex_state = 122}, - [6455] = {.lex_state = 542, .external_lex_state = 122}, - [6456] = {.lex_state = 542, .external_lex_state = 122}, - [6457] = {.lex_state = 542, .external_lex_state = 122}, - [6458] = {.lex_state = 542, .external_lex_state = 122}, - [6459] = {.lex_state = 542, .external_lex_state = 122}, - [6460] = {.lex_state = 326, .external_lex_state = 124}, - [6461] = {.lex_state = 542, .external_lex_state = 122}, - [6462] = {.lex_state = 542, .external_lex_state = 122}, - [6463] = {.lex_state = 65, .external_lex_state = 120}, - [6464] = {.lex_state = 542, .external_lex_state = 122}, - [6465] = {.lex_state = 271, .external_lex_state = 125}, - [6466] = {.lex_state = 542, .external_lex_state = 122}, - [6467] = {.lex_state = 542, .external_lex_state = 122}, - [6468] = {.lex_state = 542, .external_lex_state = 122}, - [6469] = {.lex_state = 70, .external_lex_state = 120}, - [6470] = {.lex_state = 322}, - [6471] = {.lex_state = 70, .external_lex_state = 120}, - [6472] = {.lex_state = 271, .external_lex_state = 125}, - [6473] = {.lex_state = 542, .external_lex_state = 122}, - [6474] = {.lex_state = 271, .external_lex_state = 125}, - [6475] = {.lex_state = 326, .external_lex_state = 124}, - [6476] = {.lex_state = 271, .external_lex_state = 125}, - [6477] = {.lex_state = 271, .external_lex_state = 125}, - [6478] = {.lex_state = 271, .external_lex_state = 125}, - [6479] = {.lex_state = 542, .external_lex_state = 122}, - [6480] = {.lex_state = 326, .external_lex_state = 124}, - [6481] = {.lex_state = 65, .external_lex_state = 120}, - [6482] = {.lex_state = 314, .external_lex_state = 114}, - [6483] = {.lex_state = 297, .external_lex_state = 115}, - [6484] = {.lex_state = 297, .external_lex_state = 115}, - [6485] = {.lex_state = 297, .external_lex_state = 115}, - [6486] = {.lex_state = 297, .external_lex_state = 115}, - [6487] = {.lex_state = 326, .external_lex_state = 124}, - [6488] = {.lex_state = 314, .external_lex_state = 114}, - [6489] = {.lex_state = 271, .external_lex_state = 125}, - [6490] = {.lex_state = 326, .external_lex_state = 124}, - [6491] = {.lex_state = 271, .external_lex_state = 126}, - [6492] = {.lex_state = 271, .external_lex_state = 126}, - [6493] = {.lex_state = 65, .external_lex_state = 120}, - [6494] = {.lex_state = 297, .external_lex_state = 115}, - [6495] = {.lex_state = 313}, - [6496] = {.lex_state = 271, .external_lex_state = 126}, - [6497] = {.lex_state = 297, .external_lex_state = 115}, - [6498] = {.lex_state = 275, .external_lex_state = 124}, - [6499] = {.lex_state = 271, .external_lex_state = 125}, - [6500] = {.lex_state = 314, .external_lex_state = 114}, - [6501] = {.lex_state = 271, .external_lex_state = 126}, - [6502] = {.lex_state = 297, .external_lex_state = 115}, - [6503] = {.lex_state = 297, .external_lex_state = 115}, - [6504] = {.lex_state = 297, .external_lex_state = 115}, - [6505] = {.lex_state = 326, .external_lex_state = 124}, - [6506] = {.lex_state = 326, .external_lex_state = 124}, - [6507] = {.lex_state = 326, .external_lex_state = 124}, - [6508] = {.lex_state = 313}, - [6509] = {.lex_state = 297, .external_lex_state = 115}, - [6510] = {.lex_state = 297, .external_lex_state = 115}, - [6511] = {.lex_state = 271, .external_lex_state = 126}, - [6512] = {.lex_state = 313}, - [6513] = {.lex_state = 297, .external_lex_state = 115}, - [6514] = {.lex_state = 326, .external_lex_state = 124}, - [6515] = {.lex_state = 326, .external_lex_state = 124}, - [6516] = {.lex_state = 326, .external_lex_state = 124}, - [6517] = {.lex_state = 326, .external_lex_state = 124}, - [6518] = {.lex_state = 326, .external_lex_state = 124}, - [6519] = {.lex_state = 297, .external_lex_state = 115}, - [6520] = {.lex_state = 297, .external_lex_state = 115}, - [6521] = {.lex_state = 271, .external_lex_state = 126}, - [6522] = {.lex_state = 297, .external_lex_state = 115}, - [6523] = {.lex_state = 297, .external_lex_state = 115}, - [6524] = {.lex_state = 271, .external_lex_state = 126}, - [6525] = {.lex_state = 326, .external_lex_state = 124}, - [6526] = {.lex_state = 297, .external_lex_state = 115}, - [6527] = {.lex_state = 271, .external_lex_state = 125}, - [6528] = {.lex_state = 271, .external_lex_state = 125}, - [6529] = {.lex_state = 271, .external_lex_state = 125}, - [6530] = {.lex_state = 314, .external_lex_state = 114}, - [6531] = {.lex_state = 65, .external_lex_state = 120}, - [6532] = {.lex_state = 326, .external_lex_state = 124}, - [6533] = {.lex_state = 271, .external_lex_state = 126}, - [6534] = {.lex_state = 297, .external_lex_state = 115}, - [6535] = {.lex_state = 297, .external_lex_state = 115}, - [6536] = {.lex_state = 271, .external_lex_state = 126}, - [6537] = {.lex_state = 326, .external_lex_state = 124}, - [6538] = {.lex_state = 271, .external_lex_state = 125}, - [6539] = {.lex_state = 271, .external_lex_state = 126}, - [6540] = {.lex_state = 271, .external_lex_state = 125}, - [6541] = {.lex_state = 271, .external_lex_state = 126}, - [6542] = {.lex_state = 271, .external_lex_state = 126}, - [6543] = {.lex_state = 296}, - [6544] = {.lex_state = 313}, - [6545] = {.lex_state = 296}, - [6546] = {.lex_state = 271, .external_lex_state = 125}, - [6547] = {.lex_state = 326}, - [6548] = {.lex_state = 271}, - [6549] = {.lex_state = 326}, - [6550] = {.lex_state = 271}, - [6551] = {.lex_state = 273}, - [6552] = {.lex_state = 271}, - [6553] = {.lex_state = 271}, - [6554] = {.lex_state = 542, .external_lex_state = 127}, - [6555] = {.lex_state = 542, .external_lex_state = 127}, - [6556] = {.lex_state = 542, .external_lex_state = 127}, - [6557] = {.lex_state = 542, .external_lex_state = 127}, - [6558] = {.lex_state = 256}, - [6559] = {.lex_state = 271}, - [6560] = {.lex_state = 326}, - [6561] = {.lex_state = 314, .external_lex_state = 114}, - [6562] = {.lex_state = 271}, - [6563] = {.lex_state = 542, .external_lex_state = 127}, - [6564] = {.lex_state = 542, .external_lex_state = 127}, - [6565] = {.lex_state = 271}, - [6566] = {.lex_state = 256}, - [6567] = {.lex_state = 542}, - [6568] = {.lex_state = 256}, - [6569] = {.lex_state = 542}, - [6570] = {.lex_state = 542}, - [6571] = {.lex_state = 542, .external_lex_state = 127}, - [6572] = {.lex_state = 256}, - [6573] = {.lex_state = 542, .external_lex_state = 127}, - [6574] = {.lex_state = 271}, - [6575] = {.lex_state = 326}, - [6576] = {.lex_state = 271}, - [6577] = {.lex_state = 271}, - [6578] = {.lex_state = 326}, - [6579] = {.lex_state = 271}, - [6580] = {.lex_state = 271}, - [6581] = {.lex_state = 296}, - [6582] = {.lex_state = 314, .external_lex_state = 117}, - [6583] = {.lex_state = 312, .external_lex_state = 115}, - [6584] = {.lex_state = 256}, - [6585] = {.lex_state = 312, .external_lex_state = 115}, - [6586] = {.lex_state = 271}, - [6587] = {.lex_state = 271}, - [6588] = {.lex_state = 271}, - [6589] = {.lex_state = 273}, - [6590] = {.lex_state = 542}, - [6591] = {.lex_state = 542}, - [6592] = {.lex_state = 271}, - [6593] = {.lex_state = 271}, - [6594] = {.lex_state = 271}, - [6595] = {.lex_state = 542}, - [6596] = {.lex_state = 542}, - [6597] = {.lex_state = 542}, - [6598] = {.lex_state = 542}, - [6599] = {.lex_state = 542}, - [6600] = {.lex_state = 271}, - [6601] = {.lex_state = 271}, - [6602] = {.lex_state = 271}, - [6603] = {.lex_state = 326}, - [6604] = {.lex_state = 326}, - [6605] = {.lex_state = 273}, - [6606] = {.lex_state = 271}, - [6607] = {.lex_state = 271}, - [6608] = {.lex_state = 271}, - [6609] = {.lex_state = 312, .external_lex_state = 115}, - [6610] = {.lex_state = 312, .external_lex_state = 115}, - [6611] = {.lex_state = 542}, - [6612] = {.lex_state = 271}, - [6613] = {.lex_state = 271}, - [6614] = {.lex_state = 256}, - [6615] = {.lex_state = 314, .external_lex_state = 114}, - [6616] = {.lex_state = 326}, - [6617] = {.lex_state = 271}, - [6618] = {.lex_state = 271}, - [6619] = {.lex_state = 326}, - [6620] = {.lex_state = 542}, - [6621] = {.lex_state = 271}, - [6622] = {.lex_state = 271}, - [6623] = {.lex_state = 271}, - [6624] = {.lex_state = 271}, - [6625] = {.lex_state = 271}, - [6626] = {.lex_state = 271}, - [6627] = {.lex_state = 542}, - [6628] = {.lex_state = 326}, - [6629] = {.lex_state = 271}, - [6630] = {.lex_state = 271}, - [6631] = {.lex_state = 241, .external_lex_state = 115}, - [6632] = {.lex_state = 271}, - [6633] = {.lex_state = 271}, - [6634] = {.lex_state = 326}, - [6635] = {.lex_state = 314, .external_lex_state = 117}, - [6636] = {.lex_state = 326}, - [6637] = {.lex_state = 542}, - [6638] = {.lex_state = 326}, - [6639] = {.lex_state = 271}, - [6640] = {.lex_state = 273}, - [6641] = {.lex_state = 326}, - [6642] = {.lex_state = 271}, - [6643] = {.lex_state = 271}, - [6644] = {.lex_state = 271}, - [6645] = {.lex_state = 314, .external_lex_state = 117}, - [6646] = {.lex_state = 271}, - [6647] = {.lex_state = 271}, - [6648] = {.lex_state = 271}, - [6649] = {.lex_state = 542}, - [6650] = {.lex_state = 271}, - [6651] = {.lex_state = 314, .external_lex_state = 114}, - [6652] = {.lex_state = 542}, - [6653] = {.lex_state = 271}, - [6654] = {.lex_state = 271}, - [6655] = {.lex_state = 271}, - [6656] = {.lex_state = 271}, - [6657] = {.lex_state = 271}, - [6658] = {.lex_state = 271}, - [6659] = {.lex_state = 273}, - [6660] = {.lex_state = 271}, - [6661] = {.lex_state = 271}, - [6662] = {.lex_state = 326}, - [6663] = {.lex_state = 314, .external_lex_state = 117}, - [6664] = {.lex_state = 326}, - [6665] = {.lex_state = 271}, - [6666] = {.lex_state = 542}, - [6667] = {.lex_state = 542}, - [6668] = {.lex_state = 326}, - [6669] = {.lex_state = 271}, - [6670] = {.lex_state = 271}, - [6671] = {.lex_state = 273}, - [6672] = {.lex_state = 542}, - [6673] = {.lex_state = 326}, - [6674] = {.lex_state = 256}, - [6675] = {.lex_state = 271}, - [6676] = {.lex_state = 542}, - [6677] = {.lex_state = 542, .external_lex_state = 127}, - [6678] = {.lex_state = 271}, - [6679] = {.lex_state = 273}, - [6680] = {.lex_state = 271}, - [6681] = {.lex_state = 271}, - [6682] = {.lex_state = 271}, - [6683] = {.lex_state = 271}, - [6684] = {.lex_state = 271}, - [6685] = {.lex_state = 271}, - [6686] = {.lex_state = 326}, - [6687] = {.lex_state = 271}, - [6688] = {.lex_state = 271}, - [6689] = {.lex_state = 271}, - [6690] = {.lex_state = 542}, - [6691] = {.lex_state = 271}, - [6692] = {.lex_state = 271}, - [6693] = {.lex_state = 271}, - [6694] = {.lex_state = 542}, - [6695] = {.lex_state = 542}, - [6696] = {.lex_state = 326}, - [6697] = {.lex_state = 271}, - [6698] = {.lex_state = 271}, - [6699] = {.lex_state = 271}, - [6700] = {.lex_state = 542}, - [6701] = {.lex_state = 271}, - [6702] = {.lex_state = 271}, - [6703] = {.lex_state = 542}, - [6704] = {.lex_state = 326}, - [6705] = {.lex_state = 326}, - [6706] = {.lex_state = 271}, - [6707] = {.lex_state = 542}, - [6708] = {.lex_state = 271}, - [6709] = {.lex_state = 542}, - [6710] = {.lex_state = 542}, - [6711] = {.lex_state = 542}, - [6712] = {.lex_state = 271}, - [6713] = {.lex_state = 271}, - [6714] = {.lex_state = 271}, - [6715] = {.lex_state = 271}, - [6716] = {.lex_state = 542}, - [6717] = {.lex_state = 326}, - [6718] = {.lex_state = 256}, - [6719] = {.lex_state = 542}, - [6720] = {.lex_state = 271}, - [6721] = {.lex_state = 271}, - [6722] = {.lex_state = 542}, - [6723] = {.lex_state = 271}, - [6724] = {.lex_state = 271}, - [6725] = {.lex_state = 542}, - [6726] = {.lex_state = 312}, - [6727] = {.lex_state = 312}, - [6728] = {.lex_state = 273}, - [6729] = {.lex_state = 273}, - [6730] = {.lex_state = 324}, - [6731] = {.lex_state = 312}, - [6732] = {.lex_state = 324}, - [6733] = {.lex_state = 312}, - [6734] = {.lex_state = 312}, - [6735] = {.lex_state = 271, .external_lex_state = 114}, - [6736] = {.lex_state = 312}, - [6737] = {.lex_state = 312}, - [6738] = {.lex_state = 271}, - [6739] = {.lex_state = 312}, - [6740] = {.lex_state = 314, .external_lex_state = 114}, - [6741] = {.lex_state = 271}, - [6742] = {.lex_state = 273}, - [6743] = {.lex_state = 324}, - [6744] = {.lex_state = 324}, - [6745] = {.lex_state = 324}, - [6746] = {.lex_state = 312}, - [6747] = {.lex_state = 314, .external_lex_state = 114}, - [6748] = {.lex_state = 314, .external_lex_state = 114}, - [6749] = {.lex_state = 314, .external_lex_state = 114}, - [6750] = {.lex_state = 312}, - [6751] = {.lex_state = 312}, - [6752] = {.lex_state = 273}, - [6753] = {.lex_state = 314, .external_lex_state = 114}, - [6754] = {.lex_state = 312}, - [6755] = {.lex_state = 271, .external_lex_state = 119}, - [6756] = {.lex_state = 312}, - [6757] = {.lex_state = 312}, - [6758] = {.lex_state = 312}, - [6759] = {.lex_state = 312}, - [6760] = {.lex_state = 312}, - [6761] = {.lex_state = 314, .external_lex_state = 114}, - [6762] = {.lex_state = 273}, - [6763] = {.lex_state = 324}, - [6764] = {.lex_state = 314, .external_lex_state = 114}, - [6765] = {.lex_state = 314, .external_lex_state = 114}, - [6766] = {.lex_state = 542}, - [6767] = {.lex_state = 314, .external_lex_state = 114}, - [6768] = {.lex_state = 271}, - [6769] = {.lex_state = 312}, - [6770] = {.lex_state = 324}, - [6771] = {.lex_state = 312}, - [6772] = {.lex_state = 312}, - [6773] = {.lex_state = 312}, - [6774] = {.lex_state = 312}, - [6775] = {.lex_state = 542}, - [6776] = {.lex_state = 312}, - [6777] = {.lex_state = 273}, - [6778] = {.lex_state = 312}, - [6779] = {.lex_state = 314, .external_lex_state = 114}, - [6780] = {.lex_state = 271, .external_lex_state = 114}, - [6781] = {.lex_state = 312}, - [6782] = {.lex_state = 314, .external_lex_state = 114}, - [6783] = {.lex_state = 324}, - [6784] = {.lex_state = 314, .external_lex_state = 114}, - [6785] = {.lex_state = 273}, - [6786] = {.lex_state = 312}, - [6787] = {.lex_state = 314, .external_lex_state = 114}, - [6788] = {.lex_state = 314, .external_lex_state = 114}, - [6789] = {.lex_state = 314, .external_lex_state = 114}, - [6790] = {.lex_state = 312}, - [6791] = {.lex_state = 314, .external_lex_state = 114}, - [6792] = {.lex_state = 112, .external_lex_state = 120}, - [6793] = {.lex_state = 271}, - [6794] = {.lex_state = 542}, - [6795] = {.lex_state = 542}, - [6796] = {.lex_state = 542, .external_lex_state = 128}, - [6797] = {.lex_state = 271}, - [6798] = {.lex_state = 271, .external_lex_state = 114}, - [6799] = {.lex_state = 542}, - [6800] = {.lex_state = 271, .external_lex_state = 114}, - [6801] = {.lex_state = 542}, - [6802] = {.lex_state = 271}, - [6803] = {.lex_state = 271}, - [6804] = {.lex_state = 542}, - [6805] = {.lex_state = 542}, - [6806] = {.lex_state = 112, .external_lex_state = 120}, - [6807] = {.lex_state = 271, .external_lex_state = 114}, - [6808] = {.lex_state = 542}, - [6809] = {.lex_state = 542}, - [6810] = {.lex_state = 271, .external_lex_state = 114}, - [6811] = {.lex_state = 271}, - [6812] = {.lex_state = 271}, - [6813] = {.lex_state = 542}, - [6814] = {.lex_state = 279}, - [6815] = {.lex_state = 542}, - [6816] = {.lex_state = 542}, - [6817] = {.lex_state = 279}, - [6818] = {.lex_state = 542}, - [6819] = {.lex_state = 542}, - [6820] = {.lex_state = 271}, - [6821] = {.lex_state = 542}, - [6822] = {.lex_state = 542}, - [6823] = {.lex_state = 542}, - [6824] = {.lex_state = 271, .external_lex_state = 126}, - [6825] = {.lex_state = 271, .external_lex_state = 114}, - [6826] = {.lex_state = 542, .external_lex_state = 128}, - [6827] = {.lex_state = 542}, - [6828] = {.lex_state = 279}, - [6829] = {.lex_state = 271}, - [6830] = {.lex_state = 279}, - [6831] = {.lex_state = 542}, - [6832] = {.lex_state = 271, .external_lex_state = 114}, - [6833] = {.lex_state = 257, .external_lex_state = 129}, - [6834] = {.lex_state = 257, .external_lex_state = 129}, - [6835] = {.lex_state = 112, .external_lex_state = 120}, - [6836] = {.lex_state = 112, .external_lex_state = 120}, - [6837] = {.lex_state = 112, .external_lex_state = 120}, - [6838] = {.lex_state = 271}, - [6839] = {.lex_state = 112, .external_lex_state = 120}, - [6840] = {.lex_state = 542}, - [6841] = {.lex_state = 271, .external_lex_state = 114}, - [6842] = {.lex_state = 271, .external_lex_state = 114}, - [6843] = {.lex_state = 112, .external_lex_state = 120}, - [6844] = {.lex_state = 112, .external_lex_state = 120}, - [6845] = {.lex_state = 542, .external_lex_state = 128}, - [6846] = {.lex_state = 271}, - [6847] = {.lex_state = 271}, - [6848] = {.lex_state = 542}, - [6849] = {.lex_state = 542}, - [6850] = {.lex_state = 542}, - [6851] = {.lex_state = 271, .external_lex_state = 126}, - [6852] = {.lex_state = 279}, - [6853] = {.lex_state = 112, .external_lex_state = 120}, - [6854] = {.lex_state = 542}, - [6855] = {.lex_state = 542}, - [6856] = {.lex_state = 271}, - [6857] = {.lex_state = 542}, - [6858] = {.lex_state = 279}, - [6859] = {.lex_state = 542}, - [6860] = {.lex_state = 271, .external_lex_state = 114}, - [6861] = {.lex_state = 542}, - [6862] = {.lex_state = 324}, - [6863] = {.lex_state = 542}, - [6864] = {.lex_state = 542}, - [6865] = {.lex_state = 271}, - [6866] = {.lex_state = 112, .external_lex_state = 120}, - [6867] = {.lex_state = 542}, - [6868] = {.lex_state = 112, .external_lex_state = 120}, - [6869] = {.lex_state = 279}, - [6870] = {.lex_state = 112, .external_lex_state = 120}, - [6871] = {.lex_state = 112, .external_lex_state = 120}, - [6872] = {.lex_state = 542}, - [6873] = {.lex_state = 112, .external_lex_state = 120}, - [6874] = {.lex_state = 271}, - [6875] = {.lex_state = 112, .external_lex_state = 120}, - [6876] = {.lex_state = 271, .external_lex_state = 114}, - [6877] = {.lex_state = 542}, - [6878] = {.lex_state = 542}, - [6879] = {.lex_state = 542}, - [6880] = {.lex_state = 542}, - [6881] = {.lex_state = 542}, - [6882] = {.lex_state = 271}, - [6883] = {.lex_state = 271}, - [6884] = {.lex_state = 271}, - [6885] = {.lex_state = 279}, - [6886] = {.lex_state = 256}, - [6887] = {.lex_state = 271}, - [6888] = {.lex_state = 542}, - [6889] = {.lex_state = 542}, - [6890] = {.lex_state = 542}, - [6891] = {.lex_state = 271, .external_lex_state = 114}, - [6892] = {.lex_state = 271}, - [6893] = {.lex_state = 542}, - [6894] = {.lex_state = 324}, - [6895] = {.lex_state = 271, .external_lex_state = 114}, - [6896] = {.lex_state = 542}, - [6897] = {.lex_state = 542}, - [6898] = {.lex_state = 271, .external_lex_state = 126}, - [6899] = {.lex_state = 542}, - [6900] = {.lex_state = 271, .external_lex_state = 114}, - [6901] = {.lex_state = 271}, - [6902] = {.lex_state = 542}, - [6903] = {.lex_state = 542}, - [6904] = {.lex_state = 271, .external_lex_state = 114}, - [6905] = {.lex_state = 542}, - [6906] = {.lex_state = 542}, - [6907] = {.lex_state = 542}, - [6908] = {.lex_state = 271, .external_lex_state = 114}, - [6909] = {.lex_state = 542}, - [6910] = {.lex_state = 271}, - [6911] = {.lex_state = 542}, - [6912] = {.lex_state = 279}, - [6913] = {.lex_state = 246}, - [6914] = {.lex_state = 542}, - [6915] = {.lex_state = 542}, - [6916] = {.lex_state = 279}, - [6917] = {.lex_state = 542}, - [6918] = {.lex_state = 542}, - [6919] = {.lex_state = 271}, - [6920] = {.lex_state = 246}, - [6921] = {.lex_state = 324}, - [6922] = {.lex_state = 271, .external_lex_state = 114}, - [6923] = {.lex_state = 271, .external_lex_state = 126}, - [6924] = {.lex_state = 542}, - [6925] = {.lex_state = 271, .external_lex_state = 114}, - [6926] = {.lex_state = 271}, - [6927] = {.lex_state = 542}, - [6928] = {.lex_state = 112, .external_lex_state = 120}, - [6929] = {.lex_state = 542}, - [6930] = {.lex_state = 542}, - [6931] = {.lex_state = 112, .external_lex_state = 120}, - [6932] = {.lex_state = 542}, - [6933] = {.lex_state = 271}, - [6934] = {.lex_state = 542}, - [6935] = {.lex_state = 112, .external_lex_state = 120}, - [6936] = {.lex_state = 112, .external_lex_state = 120}, - [6937] = {.lex_state = 542}, - [6938] = {.lex_state = 542}, - [6939] = {.lex_state = 112, .external_lex_state = 120}, - [6940] = {.lex_state = 271}, - [6941] = {.lex_state = 112, .external_lex_state = 120}, - [6942] = {.lex_state = 271, .external_lex_state = 126}, - [6943] = {.lex_state = 542}, - [6944] = {.lex_state = 112, .external_lex_state = 120}, - [6945] = {.lex_state = 112, .external_lex_state = 120}, - [6946] = {.lex_state = 271, .external_lex_state = 114}, - [6947] = {.lex_state = 271}, - [6948] = {.lex_state = 271}, - [6949] = {.lex_state = 279}, - [6950] = {.lex_state = 271}, - [6951] = {.lex_state = 542}, - [6952] = {.lex_state = 256}, - [6953] = {.lex_state = 271}, - [6954] = {.lex_state = 271}, - [6955] = {.lex_state = 542}, - [6956] = {.lex_state = 542}, - [6957] = {.lex_state = 271, .external_lex_state = 114}, - [6958] = {.lex_state = 271, .external_lex_state = 114}, - [6959] = {.lex_state = 271, .external_lex_state = 114}, - [6960] = {.lex_state = 271, .external_lex_state = 114}, - [6961] = {.lex_state = 271}, - [6962] = {.lex_state = 257, .external_lex_state = 129}, - [6963] = {.lex_state = 542}, - [6964] = {.lex_state = 271, .external_lex_state = 114}, - [6965] = {.lex_state = 271, .external_lex_state = 114}, - [6966] = {.lex_state = 271, .external_lex_state = 114}, - [6967] = {.lex_state = 271, .external_lex_state = 114}, - [6968] = {.lex_state = 271}, - [6969] = {.lex_state = 257, .external_lex_state = 129}, - [6970] = {.lex_state = 324}, - [6971] = {.lex_state = 279}, - [6972] = {.lex_state = 271, .external_lex_state = 114}, - [6973] = {.lex_state = 271, .external_lex_state = 114}, - [6974] = {.lex_state = 271, .external_lex_state = 114}, - [6975] = {.lex_state = 271}, - [6976] = {.lex_state = 542}, - [6977] = {.lex_state = 271, .external_lex_state = 114}, - [6978] = {.lex_state = 271, .external_lex_state = 114}, - [6979] = {.lex_state = 271, .external_lex_state = 114}, - [6980] = {.lex_state = 271, .external_lex_state = 114}, - [6981] = {.lex_state = 324}, - [6982] = {.lex_state = 271}, - [6983] = {.lex_state = 542}, - [6984] = {.lex_state = 271, .external_lex_state = 114}, - [6985] = {.lex_state = 271, .external_lex_state = 114}, - [6986] = {.lex_state = 271, .external_lex_state = 114}, - [6987] = {.lex_state = 271, .external_lex_state = 114}, - [6988] = {.lex_state = 271, .external_lex_state = 114}, - [6989] = {.lex_state = 271}, - [6990] = {.lex_state = 257, .external_lex_state = 129}, - [6991] = {.lex_state = 271, .external_lex_state = 126}, - [6992] = {.lex_state = 271, .external_lex_state = 114}, - [6993] = {.lex_state = 271, .external_lex_state = 114}, - [6994] = {.lex_state = 271, .external_lex_state = 114}, - [6995] = {.lex_state = 271, .external_lex_state = 114}, - [6996] = {.lex_state = 271}, - [6997] = {.lex_state = 271, .external_lex_state = 126}, - [6998] = {.lex_state = 112, .external_lex_state = 120}, - [6999] = {.lex_state = 271, .external_lex_state = 114}, - [7000] = {.lex_state = 271, .external_lex_state = 114}, - [7001] = {.lex_state = 271, .external_lex_state = 114}, - [7002] = {.lex_state = 271, .external_lex_state = 114}, - [7003] = {.lex_state = 271}, - [7004] = {.lex_state = 324}, - [7005] = {.lex_state = 271, .external_lex_state = 126}, - [7006] = {.lex_state = 271, .external_lex_state = 114}, - [7007] = {.lex_state = 271, .external_lex_state = 126}, - [7008] = {.lex_state = 271, .external_lex_state = 114}, - [7009] = {.lex_state = 542, .external_lex_state = 128}, - [7010] = {.lex_state = 271}, - [7011] = {.lex_state = 542, .external_lex_state = 128}, - [7012] = {.lex_state = 324}, - [7013] = {.lex_state = 271, .external_lex_state = 126}, - [7014] = {.lex_state = 271, .external_lex_state = 114}, - [7015] = {.lex_state = 279}, - [7016] = {.lex_state = 271, .external_lex_state = 126}, - [7017] = {.lex_state = 271}, - [7018] = {.lex_state = 257, .external_lex_state = 129}, - [7019] = {.lex_state = 279}, - [7020] = {.lex_state = 271, .external_lex_state = 126}, - [7021] = {.lex_state = 271, .external_lex_state = 126}, - [7022] = {.lex_state = 271, .external_lex_state = 114}, - [7023] = {.lex_state = 271, .external_lex_state = 114}, - [7024] = {.lex_state = 271}, - [7025] = {.lex_state = 271, .external_lex_state = 114}, - [7026] = {.lex_state = 271, .external_lex_state = 114}, - [7027] = {.lex_state = 271, .external_lex_state = 114}, - [7028] = {.lex_state = 112, .external_lex_state = 120}, - [7029] = {.lex_state = 271, .external_lex_state = 114}, - [7030] = {.lex_state = 112, .external_lex_state = 120}, - [7031] = {.lex_state = 271}, - [7032] = {.lex_state = 542}, - [7033] = {.lex_state = 542}, - [7034] = {.lex_state = 542}, - [7035] = {.lex_state = 271, .external_lex_state = 126}, - [7036] = {.lex_state = 112, .external_lex_state = 120}, - [7037] = {.lex_state = 246}, - [7038] = {.lex_state = 271}, - [7039] = {.lex_state = 112, .external_lex_state = 120}, - [7040] = {.lex_state = 542}, - [7041] = {.lex_state = 112, .external_lex_state = 120}, - [7042] = {.lex_state = 112, .external_lex_state = 120}, - [7043] = {.lex_state = 542}, - [7044] = {.lex_state = 271, .external_lex_state = 126}, - [7045] = {.lex_state = 271}, - [7046] = {.lex_state = 271, .external_lex_state = 114}, - [7047] = {.lex_state = 542}, - [7048] = {.lex_state = 542}, - [7049] = {.lex_state = 271, .external_lex_state = 126}, - [7050] = {.lex_state = 542}, - [7051] = {.lex_state = 271, .external_lex_state = 114}, - [7052] = {.lex_state = 271}, - [7053] = {.lex_state = 542}, - [7054] = {.lex_state = 279}, - [7055] = {.lex_state = 271}, - [7056] = {.lex_state = 271, .external_lex_state = 126}, - [7057] = {.lex_state = 271}, - [7058] = {.lex_state = 542}, - [7059] = {.lex_state = 271}, - [7060] = {.lex_state = 542}, - [7061] = {.lex_state = 256}, - [7062] = {.lex_state = 271}, - [7063] = {.lex_state = 542}, - [7064] = {.lex_state = 542}, - [7065] = {.lex_state = 271, .external_lex_state = 114}, - [7066] = {.lex_state = 271}, - [7067] = {.lex_state = 542}, - [7068] = {.lex_state = 324}, - [7069] = {.lex_state = 324}, - [7070] = {.lex_state = 542}, - [7071] = {.lex_state = 279}, - [7072] = {.lex_state = 542}, - [7073] = {.lex_state = 271}, - [7074] = {.lex_state = 279}, - [7075] = {.lex_state = 542}, - [7076] = {.lex_state = 279}, - [7077] = {.lex_state = 542}, - [7078] = {.lex_state = 542}, - [7079] = {.lex_state = 542}, - [7080] = {.lex_state = 271}, - [7081] = {.lex_state = 542}, - [7082] = {.lex_state = 271, .external_lex_state = 114}, - [7083] = {.lex_state = 542}, - [7084] = {.lex_state = 542}, - [7085] = {.lex_state = 542}, - [7086] = {.lex_state = 542}, - [7087] = {.lex_state = 271}, - [7088] = {.lex_state = 542}, - [7089] = {.lex_state = 271, .external_lex_state = 114}, - [7090] = {.lex_state = 279}, - [7091] = {.lex_state = 542}, - [7092] = {.lex_state = 542}, - [7093] = {.lex_state = 542}, - [7094] = {.lex_state = 271}, - [7095] = {.lex_state = 542}, - [7096] = {.lex_state = 542}, - [7097] = {.lex_state = 542}, - [7098] = {.lex_state = 542}, - [7099] = {.lex_state = 542}, - [7100] = {.lex_state = 542}, - [7101] = {.lex_state = 271}, - [7102] = {.lex_state = 271, .external_lex_state = 114}, - [7103] = {.lex_state = 542}, - [7104] = {.lex_state = 271, .external_lex_state = 114}, - [7105] = {.lex_state = 271, .external_lex_state = 114}, - [7106] = {.lex_state = 279}, - [7107] = {.lex_state = 542}, - [7108] = {.lex_state = 271}, - [7109] = {.lex_state = 542}, - [7110] = {.lex_state = 542}, - [7111] = {.lex_state = 542}, - [7112] = {.lex_state = 271, .external_lex_state = 114}, - [7113] = {.lex_state = 271, .external_lex_state = 114}, - [7114] = {.lex_state = 324}, - [7115] = {.lex_state = 271}, - [7116] = {.lex_state = 279}, - [7117] = {.lex_state = 542}, - [7118] = {.lex_state = 542}, - [7119] = {.lex_state = 542}, - [7120] = {.lex_state = 542}, - [7121] = {.lex_state = 246}, - [7122] = {.lex_state = 271}, - [7123] = {.lex_state = 542}, - [7124] = {.lex_state = 542}, - [7125] = {.lex_state = 542}, - [7126] = {.lex_state = 271, .external_lex_state = 114}, - [7127] = {.lex_state = 542}, - [7128] = {.lex_state = 271, .external_lex_state = 114}, - [7129] = {.lex_state = 271}, - [7130] = {.lex_state = 542}, - [7131] = {.lex_state = 271, .external_lex_state = 114}, - [7132] = {.lex_state = 542}, - [7133] = {.lex_state = 542}, - [7134] = {.lex_state = 271, .external_lex_state = 126}, - [7135] = {.lex_state = 271, .external_lex_state = 114}, - [7136] = {.lex_state = 271}, - [7137] = {.lex_state = 271, .external_lex_state = 114}, - [7138] = {.lex_state = 542}, - [7139] = {.lex_state = 542}, - [7140] = {.lex_state = 542}, - [7141] = {.lex_state = 271, .external_lex_state = 114}, - [7142] = {.lex_state = 542, .external_lex_state = 128}, - [7143] = {.lex_state = 271}, - [7144] = {.lex_state = 542}, - [7145] = {.lex_state = 279}, - [7146] = {.lex_state = 271, .external_lex_state = 114}, - [7147] = {.lex_state = 542}, - [7148] = {.lex_state = 542}, - [7149] = {.lex_state = 279}, - [7150] = {.lex_state = 271}, - [7151] = {.lex_state = 542}, - [7152] = {.lex_state = 542}, - [7153] = {.lex_state = 542}, - [7154] = {.lex_state = 542}, - [7155] = {.lex_state = 542}, - [7156] = {.lex_state = 542}, - [7157] = {.lex_state = 271}, - [7158] = {.lex_state = 542}, - [7159] = {.lex_state = 246}, - [7160] = {.lex_state = 542}, - [7161] = {.lex_state = 542}, - [7162] = {.lex_state = 271, .external_lex_state = 114}, - [7163] = {.lex_state = 271, .external_lex_state = 114}, - [7164] = {.lex_state = 271}, - [7165] = {.lex_state = 542}, - [7166] = {.lex_state = 542}, - [7167] = {.lex_state = 542}, - [7168] = {.lex_state = 542}, - [7169] = {.lex_state = 542}, - [7170] = {.lex_state = 271, .external_lex_state = 114}, - [7171] = {.lex_state = 271}, - [7172] = {.lex_state = 279}, - [7173] = {.lex_state = 542}, - [7174] = {.lex_state = 542}, - [7175] = {.lex_state = 542}, - [7176] = {.lex_state = 279}, - [7177] = {.lex_state = 257, .external_lex_state = 129}, - [7178] = {.lex_state = 271}, - [7179] = {.lex_state = 271, .external_lex_state = 114}, - [7180] = {.lex_state = 542}, - [7181] = {.lex_state = 257, .external_lex_state = 129}, - [7182] = {.lex_state = 542}, - [7183] = {.lex_state = 542}, - [7184] = {.lex_state = 271, .external_lex_state = 114}, - [7185] = {.lex_state = 271}, - [7186] = {.lex_state = 542}, - [7187] = {.lex_state = 271, .external_lex_state = 114}, - [7188] = {.lex_state = 246}, - [7189] = {.lex_state = 542}, - [7190] = {.lex_state = 542}, - [7191] = {.lex_state = 279}, - [7192] = {.lex_state = 271}, - [7193] = {.lex_state = 257, .external_lex_state = 129}, - [7194] = {.lex_state = 542}, - [7195] = {.lex_state = 542}, - [7196] = {.lex_state = 271, .external_lex_state = 114}, - [7197] = {.lex_state = 271, .external_lex_state = 114}, - [7198] = {.lex_state = 257, .external_lex_state = 129}, - [7199] = {.lex_state = 271}, - [7200] = {.lex_state = 542}, - [7201] = {.lex_state = 542}, - [7202] = {.lex_state = 542}, - [7203] = {.lex_state = 542}, - [7204] = {.lex_state = 542}, - [7205] = {.lex_state = 542, .external_lex_state = 130}, - [7206] = {.lex_state = 271}, - [7207] = {.lex_state = 271, .external_lex_state = 114}, - [7208] = {.lex_state = 542}, - [7209] = {.lex_state = 542}, - [7210] = {.lex_state = 542}, - [7211] = {.lex_state = 542}, - [7212] = {.lex_state = 542}, - [7213] = {.lex_state = 271}, - [7214] = {.lex_state = 542}, - [7215] = {.lex_state = 542}, - [7216] = {.lex_state = 542}, - [7217] = {.lex_state = 542}, - [7218] = {.lex_state = 271, .external_lex_state = 114}, - [7219] = {.lex_state = 271, .external_lex_state = 114}, - [7220] = {.lex_state = 271, .external_lex_state = 114}, - [7221] = {.lex_state = 271, .external_lex_state = 114}, - [7222] = {.lex_state = 271, .external_lex_state = 114}, - [7223] = {.lex_state = 271, .external_lex_state = 114}, - [7224] = {.lex_state = 542}, - [7225] = {.lex_state = 271}, - [7226] = {.lex_state = 279}, - [7227] = {.lex_state = 542}, - [7228] = {.lex_state = 542}, - [7229] = {.lex_state = 542}, - [7230] = {.lex_state = 542}, - [7231] = {.lex_state = 542}, - [7232] = {.lex_state = 271, .external_lex_state = 114}, - [7233] = {.lex_state = 271, .external_lex_state = 114}, - [7234] = {.lex_state = 271, .external_lex_state = 114}, - [7235] = {.lex_state = 271, .external_lex_state = 114}, - [7236] = {.lex_state = 271, .external_lex_state = 114}, - [7237] = {.lex_state = 271, .external_lex_state = 114}, - [7238] = {.lex_state = 271, .external_lex_state = 114}, - [7239] = {.lex_state = 271, .external_lex_state = 114}, - [7240] = {.lex_state = 271, .external_lex_state = 114}, - [7241] = {.lex_state = 271, .external_lex_state = 114}, - [7242] = {.lex_state = 271, .external_lex_state = 114}, - [7243] = {.lex_state = 271, .external_lex_state = 114}, - [7244] = {.lex_state = 279}, - [7245] = {.lex_state = 271, .external_lex_state = 114}, - [7246] = {.lex_state = 542}, - [7247] = {.lex_state = 279}, - [7248] = {.lex_state = 279}, - [7249] = {.lex_state = 542}, - [7250] = {.lex_state = 542}, - [7251] = {.lex_state = 271, .external_lex_state = 114}, - [7252] = {.lex_state = 542}, - [7253] = {.lex_state = 542}, - [7254] = {.lex_state = 542}, - [7255] = {.lex_state = 271, .external_lex_state = 114}, - [7256] = {.lex_state = 542}, - [7257] = {.lex_state = 271, .external_lex_state = 114}, - [7258] = {.lex_state = 271}, - [7259] = {.lex_state = 271}, - [7260] = {.lex_state = 271, .external_lex_state = 114}, - [7261] = {.lex_state = 271, .external_lex_state = 114}, - [7262] = {.lex_state = 542}, - [7263] = {.lex_state = 279}, - [7264] = {.lex_state = 542}, - [7265] = {.lex_state = 273}, - [7266] = {.lex_state = 542}, - [7267] = {.lex_state = 542}, - [7268] = {.lex_state = 324}, - [7269] = {.lex_state = 271}, - [7270] = {.lex_state = 542}, - [7271] = {.lex_state = 271, .external_lex_state = 114}, - [7272] = {.lex_state = 271, .external_lex_state = 114}, - [7273] = {.lex_state = 542}, - [7274] = {.lex_state = 542, .external_lex_state = 130}, - [7275] = {.lex_state = 271, .external_lex_state = 126}, - [7276] = {.lex_state = 279}, - [7277] = {.lex_state = 542}, - [7278] = {.lex_state = 279}, - [7279] = {.lex_state = 542}, - [7280] = {.lex_state = 542}, - [7281] = {.lex_state = 279}, - [7282] = {.lex_state = 542}, - [7283] = {.lex_state = 542}, - [7284] = {.lex_state = 271, .external_lex_state = 114}, - [7285] = {.lex_state = 271, .external_lex_state = 114}, - [7286] = {.lex_state = 542}, - [7287] = {.lex_state = 279}, - [7288] = {.lex_state = 542}, - [7289] = {.lex_state = 542}, - [7290] = {.lex_state = 542}, - [7291] = {.lex_state = 271, .external_lex_state = 126}, - [7292] = {.lex_state = 542, .external_lex_state = 130}, - [7293] = {.lex_state = 542}, - [7294] = {.lex_state = 542}, - [7295] = {.lex_state = 542}, - [7296] = {.lex_state = 271, .external_lex_state = 114}, - [7297] = {.lex_state = 279}, - [7298] = {.lex_state = 271, .external_lex_state = 114}, - [7299] = {.lex_state = 542}, - [7300] = {.lex_state = 542}, - [7301] = {.lex_state = 542}, - [7302] = {.lex_state = 271, .external_lex_state = 114}, - [7303] = {.lex_state = 271, .external_lex_state = 114}, - [7304] = {.lex_state = 542}, - [7305] = {.lex_state = 542}, - [7306] = {.lex_state = 542}, - [7307] = {.lex_state = 542}, - [7308] = {.lex_state = 271, .external_lex_state = 114}, - [7309] = {.lex_state = 279}, - [7310] = {.lex_state = 542}, - [7311] = {.lex_state = 542}, - [7312] = {.lex_state = 542}, - [7313] = {.lex_state = 271, .external_lex_state = 114}, - [7314] = {.lex_state = 542}, - [7315] = {.lex_state = 271, .external_lex_state = 126}, - [7316] = {.lex_state = 542}, - [7317] = {.lex_state = 271, .external_lex_state = 114}, - [7318] = {.lex_state = 246}, - [7319] = {.lex_state = 542}, - [7320] = {.lex_state = 324}, - [7321] = {.lex_state = 542}, - [7322] = {.lex_state = 279}, - [7323] = {.lex_state = 542}, - [7324] = {.lex_state = 279}, - [7325] = {.lex_state = 542}, - [7326] = {.lex_state = 256}, - [7327] = {.lex_state = 542}, - [7328] = {.lex_state = 542}, - [7329] = {.lex_state = 542}, - [7330] = {.lex_state = 271}, - [7331] = {.lex_state = 271, .external_lex_state = 114}, - [7332] = {.lex_state = 271, .external_lex_state = 114}, - [7333] = {.lex_state = 542}, - [7334] = {.lex_state = 542}, - [7335] = {.lex_state = 542}, - [7336] = {.lex_state = 542}, - [7337] = {.lex_state = 279}, - [7338] = {.lex_state = 542}, - [7339] = {.lex_state = 542}, - [7340] = {.lex_state = 542}, - [7341] = {.lex_state = 542}, - [7342] = {.lex_state = 542}, - [7343] = {.lex_state = 279}, - [7344] = {.lex_state = 542}, - [7345] = {.lex_state = 271, .external_lex_state = 114}, - [7346] = {.lex_state = 279}, - [7347] = {.lex_state = 542}, - [7348] = {.lex_state = 271, .external_lex_state = 114}, - [7349] = {.lex_state = 542, .external_lex_state = 130}, - [7350] = {.lex_state = 542}, - [7351] = {.lex_state = 279}, - [7352] = {.lex_state = 542}, - [7353] = {.lex_state = 542}, - [7354] = {.lex_state = 542}, - [7355] = {.lex_state = 542}, - [7356] = {.lex_state = 542}, - [7357] = {.lex_state = 542}, - [7358] = {.lex_state = 542}, - [7359] = {.lex_state = 542}, - [7360] = {.lex_state = 542}, - [7361] = {.lex_state = 271, .external_lex_state = 114}, - [7362] = {.lex_state = 257, .external_lex_state = 129}, - [7363] = {.lex_state = 257, .external_lex_state = 129}, - [7364] = {.lex_state = 542}, - [7365] = {.lex_state = 279}, - [7366] = {.lex_state = 542}, - [7367] = {.lex_state = 542}, - [7368] = {.lex_state = 542}, - [7369] = {.lex_state = 542}, - [7370] = {.lex_state = 542}, - [7371] = {.lex_state = 542}, - [7372] = {.lex_state = 542}, - [7373] = {.lex_state = 271, .external_lex_state = 114}, - [7374] = {.lex_state = 271, .external_lex_state = 114}, - [7375] = {.lex_state = 542}, - [7376] = {.lex_state = 279}, - [7377] = {.lex_state = 271, .external_lex_state = 114}, - [7378] = {.lex_state = 542}, - [7379] = {.lex_state = 542}, - [7380] = {.lex_state = 271, .external_lex_state = 114}, - [7381] = {.lex_state = 279}, - [7382] = {.lex_state = 542}, - [7383] = {.lex_state = 542}, - [7384] = {.lex_state = 542}, - [7385] = {.lex_state = 542}, - [7386] = {.lex_state = 271, .external_lex_state = 114}, - [7387] = {.lex_state = 279}, - [7388] = {.lex_state = 542}, - [7389] = {.lex_state = 273}, - [7390] = {.lex_state = 542}, - [7391] = {.lex_state = 542}, - [7392] = {.lex_state = 324}, - [7393] = {.lex_state = 271}, - [7394] = {.lex_state = 542}, - [7395] = {.lex_state = 271, .external_lex_state = 114}, - [7396] = {.lex_state = 542}, - [7397] = {.lex_state = 542, .external_lex_state = 130}, - [7398] = {.lex_state = 271, .external_lex_state = 114}, - [7399] = {.lex_state = 542}, - [7400] = {.lex_state = 542}, - [7401] = {.lex_state = 542, .external_lex_state = 130}, - [7402] = {.lex_state = 271, .external_lex_state = 126}, - [7403] = {.lex_state = 542}, - [7404] = {.lex_state = 279}, - [7405] = {.lex_state = 542}, - [7406] = {.lex_state = 279}, - [7407] = {.lex_state = 542}, - [7408] = {.lex_state = 246}, - [7409] = {.lex_state = 542}, - [7410] = {.lex_state = 542}, - [7411] = {.lex_state = 542}, - [7412] = {.lex_state = 271, .external_lex_state = 114}, - [7413] = {.lex_state = 271, .external_lex_state = 126}, - [7414] = {.lex_state = 542}, - [7415] = {.lex_state = 279}, - [7416] = {.lex_state = 324}, - [7417] = {.lex_state = 324}, - [7418] = {.lex_state = 542}, - [7419] = {.lex_state = 542}, - [7420] = {.lex_state = 542}, - [7421] = {.lex_state = 542}, - [7422] = {.lex_state = 271, .external_lex_state = 114}, - [7423] = {.lex_state = 542}, - [7424] = {.lex_state = 542}, - [7425] = {.lex_state = 279}, - [7426] = {.lex_state = 542}, - [7427] = {.lex_state = 542}, - [7428] = {.lex_state = 542}, - [7429] = {.lex_state = 542}, - [7430] = {.lex_state = 542}, - [7431] = {.lex_state = 542}, - [7432] = {.lex_state = 542}, - [7433] = {.lex_state = 271, .external_lex_state = 114}, - [7434] = {.lex_state = 542}, - [7435] = {.lex_state = 279}, - [7436] = {.lex_state = 542}, - [7437] = {.lex_state = 271, .external_lex_state = 114}, - [7438] = {.lex_state = 542}, - [7439] = {.lex_state = 271}, - [7440] = {.lex_state = 271, .external_lex_state = 126}, - [7441] = {.lex_state = 542}, - [7442] = {.lex_state = 279}, - [7443] = {.lex_state = 279}, - [7444] = {.lex_state = 246}, - [7445] = {.lex_state = 542}, - [7446] = {.lex_state = 542}, - [7447] = {.lex_state = 542}, - [7448] = {.lex_state = 542}, - [7449] = {.lex_state = 271, .external_lex_state = 114}, - [7450] = {.lex_state = 279}, - [7451] = {.lex_state = 271, .external_lex_state = 126}, - [7452] = {.lex_state = 279}, - [7453] = {.lex_state = 279}, - [7454] = {.lex_state = 542}, - [7455] = {.lex_state = 542}, - [7456] = {.lex_state = 542}, - [7457] = {.lex_state = 542}, - [7458] = {.lex_state = 542}, - [7459] = {.lex_state = 542}, - [7460] = {.lex_state = 542}, - [7461] = {.lex_state = 271, .external_lex_state = 114}, - [7462] = {.lex_state = 542}, - [7463] = {.lex_state = 542}, - [7464] = {.lex_state = 271, .external_lex_state = 114}, - [7465] = {.lex_state = 542, .external_lex_state = 128}, - [7466] = {.lex_state = 542, .external_lex_state = 128}, - [7467] = {.lex_state = 542}, - [7468] = {.lex_state = 279}, - [7469] = {.lex_state = 542}, - [7470] = {.lex_state = 542}, - [7471] = {.lex_state = 542}, - [7472] = {.lex_state = 542}, - [7473] = {.lex_state = 542}, - [7474] = {.lex_state = 542}, - [7475] = {.lex_state = 542}, - [7476] = {.lex_state = 271, .external_lex_state = 114}, - [7477] = {.lex_state = 271, .external_lex_state = 114}, - [7478] = {.lex_state = 324}, - [7479] = {.lex_state = 273}, - [7480] = {.lex_state = 324}, - [7481] = {.lex_state = 279}, - [7482] = {.lex_state = 324}, - [7483] = {.lex_state = 271}, - [7484] = {.lex_state = 542}, - [7485] = {.lex_state = 542}, - [7486] = {.lex_state = 542}, - [7487] = {.lex_state = 542, .external_lex_state = 130}, - [7488] = {.lex_state = 542}, - [7489] = {.lex_state = 271, .external_lex_state = 126}, - [7490] = {.lex_state = 279}, - [7491] = {.lex_state = 542, .external_lex_state = 130}, - [7492] = {.lex_state = 542}, - [7493] = {.lex_state = 271, .external_lex_state = 114}, - [7494] = {.lex_state = 271, .external_lex_state = 126}, - [7495] = {.lex_state = 271, .external_lex_state = 126}, - [7496] = {.lex_state = 279}, - [7497] = {.lex_state = 542}, - [7498] = {.lex_state = 542}, - [7499] = {.lex_state = 542}, - [7500] = {.lex_state = 542}, - [7501] = {.lex_state = 271, .external_lex_state = 114}, - [7502] = {.lex_state = 542}, - [7503] = {.lex_state = 271, .external_lex_state = 126}, - [7504] = {.lex_state = 271, .external_lex_state = 126}, - [7505] = {.lex_state = 279}, - [7506] = {.lex_state = 542}, - [7507] = {.lex_state = 542}, - [7508] = {.lex_state = 542}, - [7509] = {.lex_state = 542}, - [7510] = {.lex_state = 271, .external_lex_state = 114}, - [7511] = {.lex_state = 324}, - [7512] = {.lex_state = 271}, - [7513] = {.lex_state = 542}, - [7514] = {.lex_state = 542, .external_lex_state = 130}, - [7515] = {.lex_state = 542}, - [7516] = {.lex_state = 324}, - [7517] = {.lex_state = 542, .external_lex_state = 130}, - [7518] = {.lex_state = 542}, - [7519] = {.lex_state = 542, .external_lex_state = 128}, - [7520] = {.lex_state = 542}, - [7521] = {.lex_state = 271, .external_lex_state = 114}, - [7522] = {.lex_state = 542}, - [7523] = {.lex_state = 542, .external_lex_state = 128}, - [7524] = {.lex_state = 271, .external_lex_state = 114}, - [7525] = {.lex_state = 279}, - [7526] = {.lex_state = 542}, - [7527] = {.lex_state = 542}, - [7528] = {.lex_state = 271, .external_lex_state = 126}, - [7529] = {.lex_state = 542}, - [7530] = {.lex_state = 271, .external_lex_state = 114}, - [7531] = {.lex_state = 542}, - [7532] = {.lex_state = 279}, - [7533] = {.lex_state = 271, .external_lex_state = 114}, - [7534] = {.lex_state = 279}, - [7535] = {.lex_state = 542}, - [7536] = {.lex_state = 542}, - [7537] = {.lex_state = 271}, - [7538] = {.lex_state = 271}, - [7539] = {.lex_state = 271}, - [7540] = {.lex_state = 271}, - [7541] = {.lex_state = 271}, - [7542] = {.lex_state = 271}, - [7543] = {.lex_state = 271}, - [7544] = {.lex_state = 271}, - [7545] = {.lex_state = 271}, - [7546] = {.lex_state = 271}, - [7547] = {.lex_state = 271}, - [7548] = {.lex_state = 271}, - [7549] = {.lex_state = 271}, - [7550] = {.lex_state = 271}, - [7551] = {.lex_state = 271}, - [7552] = {.lex_state = 271}, - [7553] = {.lex_state = 271}, - [7554] = {.lex_state = 271}, - [7555] = {.lex_state = 271}, - [7556] = {.lex_state = 271}, - [7557] = {.lex_state = 271}, - [7558] = {.lex_state = 271}, - [7559] = {.lex_state = 271}, - [7560] = {.lex_state = 271}, - [7561] = {.lex_state = 271}, - [7562] = {.lex_state = 271}, - [7563] = {.lex_state = 271}, - [7564] = {.lex_state = 271}, - [7565] = {.lex_state = 271}, - [7566] = {.lex_state = 271}, - [7567] = {.lex_state = 271}, - [7568] = {.lex_state = 271}, - [7569] = {.lex_state = 271}, - [7570] = {.lex_state = 271}, - [7571] = {.lex_state = 271}, - [7572] = {.lex_state = 271}, - [7573] = {.lex_state = 271}, - [7574] = {.lex_state = 271}, - [7575] = {.lex_state = 271}, - [7576] = {.lex_state = 271}, - [7577] = {.lex_state = 271}, - [7578] = {.lex_state = 271}, - [7579] = {.lex_state = 271}, - [7580] = {.lex_state = 271}, - [7581] = {.lex_state = 271}, - [7582] = {.lex_state = 271}, - [7583] = {.lex_state = 271}, - [7584] = {.lex_state = 271}, - [7585] = {.lex_state = 271}, - [7586] = {.lex_state = 271}, - [7587] = {.lex_state = 271}, - [7588] = {.lex_state = 271}, - [7589] = {.lex_state = 271}, - [7590] = {.lex_state = 271}, - [7591] = {.lex_state = 271}, - [7592] = {.lex_state = 271}, - [7593] = {.lex_state = 271}, - [7594] = {.lex_state = 271}, - [7595] = {.lex_state = 271}, - [7596] = {.lex_state = 271}, - [7597] = {.lex_state = 271}, - [7598] = {.lex_state = 542}, - [7599] = {.lex_state = 542}, - [7600] = {.lex_state = 542}, - [7601] = {.lex_state = 271, .external_lex_state = 114}, - [7602] = {.lex_state = 542}, - [7603] = {.lex_state = 271, .external_lex_state = 126}, - [7604] = {.lex_state = 273}, - [7605] = {.lex_state = 271}, - [7606] = {.lex_state = 542}, - [7607] = {.lex_state = 271}, - [7608] = {.lex_state = 271}, - [7609] = {.lex_state = 271}, - [7610] = {.lex_state = 271}, - [7611] = {.lex_state = 271}, - [7612] = {.lex_state = 271}, - [7613] = {.lex_state = 271}, - [7614] = {.lex_state = 271}, - [7615] = {.lex_state = 271}, - [7616] = {.lex_state = 271}, - [7617] = {.lex_state = 271}, - [7618] = {.lex_state = 271}, - [7619] = {.lex_state = 271}, - [7620] = {.lex_state = 271}, - [7621] = {.lex_state = 271}, - [7622] = {.lex_state = 271}, - [7623] = {.lex_state = 271}, - [7624] = {.lex_state = 271}, - [7625] = {.lex_state = 271}, - [7626] = {.lex_state = 271}, - [7627] = {.lex_state = 271}, - [7628] = {.lex_state = 271}, - [7629] = {.lex_state = 271}, - [7630] = {.lex_state = 271}, - [7631] = {.lex_state = 271}, - [7632] = {.lex_state = 271}, - [7633] = {.lex_state = 271}, - [7634] = {.lex_state = 271}, - [7635] = {.lex_state = 271}, - [7636] = {.lex_state = 271}, - [7637] = {.lex_state = 271}, - [7638] = {.lex_state = 271}, - [7639] = {.lex_state = 271}, - [7640] = {.lex_state = 271}, - [7641] = {.lex_state = 271}, - [7642] = {.lex_state = 271}, - [7643] = {.lex_state = 271}, - [7644] = {.lex_state = 271}, - [7645] = {.lex_state = 271}, - [7646] = {.lex_state = 271}, - [7647] = {.lex_state = 271}, - [7648] = {.lex_state = 271}, - [7649] = {.lex_state = 271}, - [7650] = {.lex_state = 271}, - [7651] = {.lex_state = 271}, - [7652] = {.lex_state = 271}, - [7653] = {.lex_state = 271}, - [7654] = {.lex_state = 271}, - [7655] = {.lex_state = 271}, - [7656] = {.lex_state = 271}, - [7657] = {.lex_state = 271}, - [7658] = {.lex_state = 271}, - [7659] = {.lex_state = 271}, - [7660] = {.lex_state = 271}, - [7661] = {.lex_state = 271}, - [7662] = {.lex_state = 271}, - [7663] = {.lex_state = 271}, - [7664] = {.lex_state = 271}, - [7665] = {.lex_state = 271}, - [7666] = {.lex_state = 271}, - [7667] = {.lex_state = 271}, - [7668] = {.lex_state = 271}, - [7669] = {.lex_state = 271}, - [7670] = {.lex_state = 271, .external_lex_state = 114}, + [2271] = {.lex_state = 443, .external_lex_state = 53}, + [2272] = {.lex_state = 465, .external_lex_state = 52}, + [2273] = {.lex_state = 443, .external_lex_state = 53}, + [2274] = {.lex_state = 465, .external_lex_state = 52}, + [2275] = {.lex_state = 443, .external_lex_state = 53}, + [2276] = {.lex_state = 465, .external_lex_state = 52}, + [2277] = {.lex_state = 464, .external_lex_state = 23}, + [2278] = {.lex_state = 536, .external_lex_state = 22}, + [2279] = {.lex_state = 443, .external_lex_state = 53}, + [2280] = {.lex_state = 465, .external_lex_state = 52}, + [2281] = {.lex_state = 468, .external_lex_state = 54}, + [2282] = {.lex_state = 468, .external_lex_state = 54}, + [2283] = {.lex_state = 468, .external_lex_state = 54}, + [2284] = {.lex_state = 443, .external_lex_state = 53}, + [2285] = {.lex_state = 465, .external_lex_state = 52}, + [2286] = {.lex_state = 468, .external_lex_state = 54}, + [2287] = {.lex_state = 538, .external_lex_state = 22}, + [2288] = {.lex_state = 465, .external_lex_state = 52}, + [2289] = {.lex_state = 468, .external_lex_state = 54}, + [2290] = {.lex_state = 464, .external_lex_state = 23}, + [2291] = {.lex_state = 465, .external_lex_state = 52}, + [2292] = {.lex_state = 536, .external_lex_state = 20}, + [2293] = {.lex_state = 536, .external_lex_state = 20}, + [2294] = {.lex_state = 443, .external_lex_state = 53}, + [2295] = {.lex_state = 468, .external_lex_state = 54}, + [2296] = {.lex_state = 538, .external_lex_state = 22}, + [2297] = {.lex_state = 468, .external_lex_state = 54}, + [2298] = {.lex_state = 288, .external_lex_state = 42}, + [2299] = {.lex_state = 288, .external_lex_state = 42}, + [2300] = {.lex_state = 288, .external_lex_state = 42}, + [2301] = {.lex_state = 468, .external_lex_state = 54}, + [2302] = {.lex_state = 468, .external_lex_state = 54}, + [2303] = {.lex_state = 290, .external_lex_state = 42}, + [2304] = {.lex_state = 290, .external_lex_state = 42}, + [2305] = {.lex_state = 290, .external_lex_state = 42}, + [2306] = {.lex_state = 536, .external_lex_state = 20}, + [2307] = {.lex_state = 538, .external_lex_state = 22}, + [2308] = {.lex_state = 534, .external_lex_state = 22}, + [2309] = {.lex_state = 465, .external_lex_state = 52}, + [2310] = {.lex_state = 465, .external_lex_state = 52}, + [2311] = {.lex_state = 443, .external_lex_state = 53}, + [2312] = {.lex_state = 465, .external_lex_state = 52}, + [2313] = {.lex_state = 465, .external_lex_state = 52}, + [2314] = {.lex_state = 465, .external_lex_state = 52}, + [2315] = {.lex_state = 465, .external_lex_state = 52}, + [2316] = {.lex_state = 465, .external_lex_state = 52}, + [2317] = {.lex_state = 465, .external_lex_state = 52}, + [2318] = {.lex_state = 270, .external_lex_state = 22}, + [2319] = {.lex_state = 468, .external_lex_state = 54}, + [2320] = {.lex_state = 468, .external_lex_state = 54}, + [2321] = {.lex_state = 468, .external_lex_state = 54}, + [2322] = {.lex_state = 443, .external_lex_state = 53}, + [2323] = {.lex_state = 288, .external_lex_state = 42}, + [2324] = {.lex_state = 288, .external_lex_state = 42}, + [2325] = {.lex_state = 290, .external_lex_state = 42}, + [2326] = {.lex_state = 290, .external_lex_state = 42}, + [2327] = {.lex_state = 443, .external_lex_state = 53}, + [2328] = {.lex_state = 288, .external_lex_state = 42}, + [2329] = {.lex_state = 288, .external_lex_state = 42}, + [2330] = {.lex_state = 288, .external_lex_state = 42}, + [2331] = {.lex_state = 288, .external_lex_state = 42}, + [2332] = {.lex_state = 288, .external_lex_state = 42}, + [2333] = {.lex_state = 288, .external_lex_state = 42}, + [2334] = {.lex_state = 288, .external_lex_state = 42}, + [2335] = {.lex_state = 288, .external_lex_state = 42}, + [2336] = {.lex_state = 536, .external_lex_state = 22}, + [2337] = {.lex_state = 465, .external_lex_state = 52}, + [2338] = {.lex_state = 290, .external_lex_state = 42}, + [2339] = {.lex_state = 290, .external_lex_state = 42}, + [2340] = {.lex_state = 465, .external_lex_state = 52}, + [2341] = {.lex_state = 443, .external_lex_state = 53}, + [2342] = {.lex_state = 443, .external_lex_state = 53}, + [2343] = {.lex_state = 465, .external_lex_state = 52}, + [2344] = {.lex_state = 443, .external_lex_state = 53}, + [2345] = {.lex_state = 538, .external_lex_state = 22}, + [2346] = {.lex_state = 466, .external_lex_state = 55}, + [2347] = {.lex_state = 298, .external_lex_state = 56}, + [2348] = {.lex_state = 468, .external_lex_state = 57}, + [2349] = {.lex_state = 443, .external_lex_state = 53}, + [2350] = {.lex_state = 466, .external_lex_state = 55}, + [2351] = {.lex_state = 538, .external_lex_state = 22}, + [2352] = {.lex_state = 464, .external_lex_state = 23}, + [2353] = {.lex_state = 538, .external_lex_state = 22}, + [2354] = {.lex_state = 298, .external_lex_state = 56}, + [2355] = {.lex_state = 298, .external_lex_state = 56}, + [2356] = {.lex_state = 474, .external_lex_state = 55}, + [2357] = {.lex_state = 474, .external_lex_state = 55}, + [2358] = {.lex_state = 468, .external_lex_state = 54}, + [2359] = {.lex_state = 298, .external_lex_state = 56}, + [2360] = {.lex_state = 288, .external_lex_state = 44}, + [2361] = {.lex_state = 288, .external_lex_state = 44}, + [2362] = {.lex_state = 466, .external_lex_state = 55}, + [2363] = {.lex_state = 466, .external_lex_state = 55}, + [2364] = {.lex_state = 298, .external_lex_state = 56}, + [2365] = {.lex_state = 443, .external_lex_state = 53}, + [2366] = {.lex_state = 439, .external_lex_state = 53}, + [2367] = {.lex_state = 468, .external_lex_state = 54}, + [2368] = {.lex_state = 474, .external_lex_state = 55}, + [2369] = {.lex_state = 443, .external_lex_state = 53}, + [2370] = {.lex_state = 464, .external_lex_state = 27}, + [2371] = {.lex_state = 439, .external_lex_state = 53}, + [2372] = {.lex_state = 468, .external_lex_state = 57}, + [2373] = {.lex_state = 468, .external_lex_state = 57}, + [2374] = {.lex_state = 298, .external_lex_state = 56}, + [2375] = {.lex_state = 290, .external_lex_state = 44}, + [2376] = {.lex_state = 468, .external_lex_state = 54}, + [2377] = {.lex_state = 468, .external_lex_state = 54}, + [2378] = {.lex_state = 288, .external_lex_state = 44}, + [2379] = {.lex_state = 290, .external_lex_state = 44}, + [2380] = {.lex_state = 290, .external_lex_state = 44}, + [2381] = {.lex_state = 468, .external_lex_state = 57}, + [2382] = {.lex_state = 468, .external_lex_state = 54}, + [2383] = {.lex_state = 464, .external_lex_state = 27}, + [2384] = {.lex_state = 464, .external_lex_state = 27}, + [2385] = {.lex_state = 443, .external_lex_state = 53}, + [2386] = {.lex_state = 298, .external_lex_state = 56}, + [2387] = {.lex_state = 298, .external_lex_state = 56}, + [2388] = {.lex_state = 288, .external_lex_state = 44}, + [2389] = {.lex_state = 468, .external_lex_state = 54}, + [2390] = {.lex_state = 288, .external_lex_state = 44}, + [2391] = {.lex_state = 474, .external_lex_state = 55}, + [2392] = {.lex_state = 468, .external_lex_state = 54}, + [2393] = {.lex_state = 474, .external_lex_state = 55}, + [2394] = {.lex_state = 466, .external_lex_state = 55}, + [2395] = {.lex_state = 446, .external_lex_state = 46}, + [2396] = {.lex_state = 466, .external_lex_state = 55}, + [2397] = {.lex_state = 468, .external_lex_state = 54}, + [2398] = {.lex_state = 445, .external_lex_state = 53}, + [2399] = {.lex_state = 443, .external_lex_state = 53}, + [2400] = {.lex_state = 466, .external_lex_state = 55}, + [2401] = {.lex_state = 468, .external_lex_state = 54}, + [2402] = {.lex_state = 464, .external_lex_state = 23}, + [2403] = {.lex_state = 468, .external_lex_state = 54}, + [2404] = {.lex_state = 446, .external_lex_state = 46}, + [2405] = {.lex_state = 468, .external_lex_state = 57}, + [2406] = {.lex_state = 298, .external_lex_state = 56}, + [2407] = {.lex_state = 298, .external_lex_state = 56}, + [2408] = {.lex_state = 290, .external_lex_state = 44}, + [2409] = {.lex_state = 290, .external_lex_state = 44}, + [2410] = {.lex_state = 466, .external_lex_state = 55}, + [2411] = {.lex_state = 468, .external_lex_state = 54}, + [2412] = {.lex_state = 298, .external_lex_state = 56}, + [2413] = {.lex_state = 466, .external_lex_state = 55}, + [2414] = {.lex_state = 466, .external_lex_state = 55}, + [2415] = {.lex_state = 468, .external_lex_state = 54}, + [2416] = {.lex_state = 298, .external_lex_state = 56}, + [2417] = {.lex_state = 474, .external_lex_state = 55}, + [2418] = {.lex_state = 474, .external_lex_state = 55}, + [2419] = {.lex_state = 466, .external_lex_state = 55}, + [2420] = {.lex_state = 474, .external_lex_state = 55}, + [2421] = {.lex_state = 443, .external_lex_state = 53}, + [2422] = {.lex_state = 468, .external_lex_state = 57}, + [2423] = {.lex_state = 466, .external_lex_state = 55}, + [2424] = {.lex_state = 443, .external_lex_state = 53}, + [2425] = {.lex_state = 464, .external_lex_state = 27}, + [2426] = {.lex_state = 298, .external_lex_state = 56}, + [2427] = {.lex_state = 443, .external_lex_state = 53}, + [2428] = {.lex_state = 298, .external_lex_state = 56}, + [2429] = {.lex_state = 298, .external_lex_state = 56}, + [2430] = {.lex_state = 468, .external_lex_state = 54}, + [2431] = {.lex_state = 468, .external_lex_state = 54}, + [2432] = {.lex_state = 466, .external_lex_state = 55}, + [2433] = {.lex_state = 443, .external_lex_state = 53}, + [2434] = {.lex_state = 468, .external_lex_state = 54}, + [2435] = {.lex_state = 464, .external_lex_state = 27}, + [2436] = {.lex_state = 468, .external_lex_state = 54}, + [2437] = {.lex_state = 298, .external_lex_state = 56}, + [2438] = {.lex_state = 468, .external_lex_state = 54}, + [2439] = {.lex_state = 468, .external_lex_state = 54}, + [2440] = {.lex_state = 443, .external_lex_state = 53}, + [2441] = {.lex_state = 466, .external_lex_state = 55}, + [2442] = {.lex_state = 468, .external_lex_state = 54}, + [2443] = {.lex_state = 468, .external_lex_state = 57}, + [2444] = {.lex_state = 468, .external_lex_state = 57}, + [2445] = {.lex_state = 468, .external_lex_state = 57}, + [2446] = {.lex_state = 468, .external_lex_state = 57}, + [2447] = {.lex_state = 468, .external_lex_state = 57}, + [2448] = {.lex_state = 474, .external_lex_state = 55}, + [2449] = {.lex_state = 468, .external_lex_state = 57}, + [2450] = {.lex_state = 468, .external_lex_state = 57}, + [2451] = {.lex_state = 468, .external_lex_state = 57}, + [2452] = {.lex_state = 468, .external_lex_state = 57}, + [2453] = {.lex_state = 474, .external_lex_state = 55}, + [2454] = {.lex_state = 466, .external_lex_state = 58}, + [2455] = {.lex_state = 466, .external_lex_state = 58}, + [2456] = {.lex_state = 446, .external_lex_state = 46}, + [2457] = {.lex_state = 464, .external_lex_state = 27}, + [2458] = {.lex_state = 466, .external_lex_state = 58}, + [2459] = {.lex_state = 446, .external_lex_state = 46}, + [2460] = {.lex_state = 467, .external_lex_state = 30}, + [2461] = {.lex_state = 474, .external_lex_state = 55}, + [2462] = {.lex_state = 446, .external_lex_state = 46}, + [2463] = {.lex_state = 437, .external_lex_state = 46}, + [2464] = {.lex_state = 464, .external_lex_state = 27}, + [2465] = {.lex_state = 466, .external_lex_state = 58}, + [2466] = {.lex_state = 466, .external_lex_state = 55}, + [2467] = {.lex_state = 446, .external_lex_state = 46}, + [2468] = {.lex_state = 435, .external_lex_state = 59}, + [2469] = {.lex_state = 435, .external_lex_state = 59}, + [2470] = {.lex_state = 446, .external_lex_state = 46}, + [2471] = {.lex_state = 437, .external_lex_state = 46}, + [2472] = {.lex_state = 466, .external_lex_state = 55}, + [2473] = {.lex_state = 466, .external_lex_state = 55}, + [2474] = {.lex_state = 435, .external_lex_state = 59}, + [2475] = {.lex_state = 435, .external_lex_state = 59}, + [2476] = {.lex_state = 296, .external_lex_state = 44}, + [2477] = {.lex_state = 296, .external_lex_state = 44}, + [2478] = {.lex_state = 296, .external_lex_state = 44}, + [2479] = {.lex_state = 435, .external_lex_state = 59}, + [2480] = {.lex_state = 439, .external_lex_state = 53}, + [2481] = {.lex_state = 470, .external_lex_state = 57}, + [2482] = {.lex_state = 470, .external_lex_state = 57}, + [2483] = {.lex_state = 446, .external_lex_state = 46}, + [2484] = {.lex_state = 437, .external_lex_state = 46}, + [2485] = {.lex_state = 443, .external_lex_state = 53}, + [2486] = {.lex_state = 439, .external_lex_state = 53}, + [2487] = {.lex_state = 437, .external_lex_state = 46}, + [2488] = {.lex_state = 446, .external_lex_state = 46}, + [2489] = {.lex_state = 437, .external_lex_state = 46}, + [2490] = {.lex_state = 446, .external_lex_state = 46}, + [2491] = {.lex_state = 437, .external_lex_state = 46}, + [2492] = {.lex_state = 439, .external_lex_state = 53}, + [2493] = {.lex_state = 435, .external_lex_state = 59}, + [2494] = {.lex_state = 435, .external_lex_state = 59}, + [2495] = {.lex_state = 435, .external_lex_state = 59}, + [2496] = {.lex_state = 466, .external_lex_state = 55}, + [2497] = {.lex_state = 466, .external_lex_state = 55}, + [2498] = {.lex_state = 439, .external_lex_state = 53}, + [2499] = {.lex_state = 439, .external_lex_state = 53}, + [2500] = {.lex_state = 439, .external_lex_state = 53}, + [2501] = {.lex_state = 470, .external_lex_state = 57}, + [2502] = {.lex_state = 470, .external_lex_state = 57}, + [2503] = {.lex_state = 437, .external_lex_state = 46}, + [2504] = {.lex_state = 470, .external_lex_state = 57}, + [2505] = {.lex_state = 466, .external_lex_state = 55}, + [2506] = {.lex_state = 466, .external_lex_state = 55}, + [2507] = {.lex_state = 443, .external_lex_state = 53}, + [2508] = {.lex_state = 443, .external_lex_state = 53}, + [2509] = {.lex_state = 446, .external_lex_state = 46}, + [2510] = {.lex_state = 446, .external_lex_state = 46}, + [2511] = {.lex_state = 446, .external_lex_state = 46}, + [2512] = {.lex_state = 443, .external_lex_state = 53}, + [2513] = {.lex_state = 443, .external_lex_state = 53}, + [2514] = {.lex_state = 474, .external_lex_state = 58}, + [2515] = {.lex_state = 296, .external_lex_state = 44}, + [2516] = {.lex_state = 296, .external_lex_state = 44}, + [2517] = {.lex_state = 474, .external_lex_state = 58}, + [2518] = {.lex_state = 470, .external_lex_state = 57}, + [2519] = {.lex_state = 474, .external_lex_state = 55}, + [2520] = {.lex_state = 468, .external_lex_state = 57}, + [2521] = {.lex_state = 474, .external_lex_state = 55}, + [2522] = {.lex_state = 474, .external_lex_state = 55}, + [2523] = {.lex_state = 464, .external_lex_state = 27}, + [2524] = {.lex_state = 467, .external_lex_state = 30}, + [2525] = {.lex_state = 464, .external_lex_state = 27}, + [2526] = {.lex_state = 468, .external_lex_state = 57}, + [2527] = {.lex_state = 468, .external_lex_state = 57}, + [2528] = {.lex_state = 443, .external_lex_state = 53}, + [2529] = {.lex_state = 464, .external_lex_state = 27}, + [2530] = {.lex_state = 443, .external_lex_state = 53}, + [2531] = {.lex_state = 466, .external_lex_state = 58}, + [2532] = {.lex_state = 466, .external_lex_state = 58}, + [2533] = {.lex_state = 464, .external_lex_state = 27}, + [2534] = {.lex_state = 445, .external_lex_state = 43}, + [2535] = {.lex_state = 468, .external_lex_state = 57}, + [2536] = {.lex_state = 468, .external_lex_state = 57}, + [2537] = {.lex_state = 474, .external_lex_state = 55}, + [2538] = {.lex_state = 474, .external_lex_state = 55}, + [2539] = {.lex_state = 468, .external_lex_state = 57}, + [2540] = {.lex_state = 467, .external_lex_state = 30}, + [2541] = {.lex_state = 474, .external_lex_state = 55}, + [2542] = {.lex_state = 474, .external_lex_state = 55}, + [2543] = {.lex_state = 466, .external_lex_state = 55}, + [2544] = {.lex_state = 474, .external_lex_state = 55}, + [2545] = {.lex_state = 474, .external_lex_state = 55}, + [2546] = {.lex_state = 474, .external_lex_state = 58}, + [2547] = {.lex_state = 435, .external_lex_state = 59}, + [2548] = {.lex_state = 445, .external_lex_state = 43}, + [2549] = {.lex_state = 466, .external_lex_state = 55}, + [2550] = {.lex_state = 474, .external_lex_state = 58}, + [2551] = {.lex_state = 466, .external_lex_state = 55}, + [2552] = {.lex_state = 474, .external_lex_state = 58}, + [2553] = {.lex_state = 474, .external_lex_state = 55}, + [2554] = {.lex_state = 443, .external_lex_state = 53}, + [2555] = {.lex_state = 466, .external_lex_state = 55}, + [2556] = {.lex_state = 446, .external_lex_state = 46}, + [2557] = {.lex_state = 474, .external_lex_state = 55}, + [2558] = {.lex_state = 466, .external_lex_state = 55}, + [2559] = {.lex_state = 466, .external_lex_state = 55}, + [2560] = {.lex_state = 467, .external_lex_state = 30}, + [2561] = {.lex_state = 466, .external_lex_state = 55}, + [2562] = {.lex_state = 466, .external_lex_state = 55}, + [2563] = {.lex_state = 466, .external_lex_state = 55}, + [2564] = {.lex_state = 446, .external_lex_state = 46}, + [2565] = {.lex_state = 474, .external_lex_state = 58}, + [2566] = {.lex_state = 474, .external_lex_state = 55}, + [2567] = {.lex_state = 443, .external_lex_state = 53}, + [2568] = {.lex_state = 439, .external_lex_state = 53}, + [2569] = {.lex_state = 467, .external_lex_state = 30}, + [2570] = {.lex_state = 474, .external_lex_state = 55}, + [2571] = {.lex_state = 474, .external_lex_state = 55}, + [2572] = {.lex_state = 467, .external_lex_state = 30}, + [2573] = {.lex_state = 466, .external_lex_state = 55}, + [2574] = {.lex_state = 466, .external_lex_state = 55}, + [2575] = {.lex_state = 466, .external_lex_state = 55}, + [2576] = {.lex_state = 437, .external_lex_state = 46}, + [2577] = {.lex_state = 468, .external_lex_state = 57}, + [2578] = {.lex_state = 474, .external_lex_state = 55}, + [2579] = {.lex_state = 468, .external_lex_state = 57}, + [2580] = {.lex_state = 468, .external_lex_state = 57}, + [2581] = {.lex_state = 468, .external_lex_state = 57}, + [2582] = {.lex_state = 474, .external_lex_state = 55}, + [2583] = {.lex_state = 439, .external_lex_state = 43}, + [2584] = {.lex_state = 446, .external_lex_state = 46}, + [2585] = {.lex_state = 467, .external_lex_state = 30}, + [2586] = {.lex_state = 439, .external_lex_state = 53}, + [2587] = {.lex_state = 467, .external_lex_state = 30}, + [2588] = {.lex_state = 446, .external_lex_state = 46}, + [2589] = {.lex_state = 437, .external_lex_state = 60}, + [2590] = {.lex_state = 474, .external_lex_state = 58}, + [2591] = {.lex_state = 201, .external_lex_state = 61}, + [2592] = {.lex_state = 201, .external_lex_state = 61}, + [2593] = {.lex_state = 435, .external_lex_state = 43}, + [2594] = {.lex_state = 466, .external_lex_state = 58}, + [2595] = {.lex_state = 466, .external_lex_state = 58}, + [2596] = {.lex_state = 470, .external_lex_state = 57}, + [2597] = {.lex_state = 471, .external_lex_state = 58}, + [2598] = {.lex_state = 470, .external_lex_state = 57}, + [2599] = {.lex_state = 470, .external_lex_state = 57}, + [2600] = {.lex_state = 474, .external_lex_state = 58}, + [2601] = {.lex_state = 466, .external_lex_state = 58}, + [2602] = {.lex_state = 470, .external_lex_state = 57}, + [2603] = {.lex_state = 439, .external_lex_state = 53}, + [2604] = {.lex_state = 466, .external_lex_state = 58}, + [2605] = {.lex_state = 446, .external_lex_state = 46}, + [2606] = {.lex_state = 470, .external_lex_state = 57}, + [2607] = {.lex_state = 467, .external_lex_state = 32}, + [2608] = {.lex_state = 466, .external_lex_state = 58}, + [2609] = {.lex_state = 466, .external_lex_state = 58}, + [2610] = {.lex_state = 471, .external_lex_state = 58}, + [2611] = {.lex_state = 463, .external_lex_state = 29}, + [2612] = {.lex_state = 446, .external_lex_state = 46}, + [2613] = {.lex_state = 446, .external_lex_state = 46}, + [2614] = {.lex_state = 437, .external_lex_state = 60}, + [2615] = {.lex_state = 446, .external_lex_state = 46}, + [2616] = {.lex_state = 437, .external_lex_state = 60}, + [2617] = {.lex_state = 435, .external_lex_state = 43}, + [2618] = {.lex_state = 474, .external_lex_state = 58}, + [2619] = {.lex_state = 467, .external_lex_state = 30}, + [2620] = {.lex_state = 437, .external_lex_state = 60}, + [2621] = {.lex_state = 437, .external_lex_state = 60}, + [2622] = {.lex_state = 463, .external_lex_state = 29}, + [2623] = {.lex_state = 439, .external_lex_state = 43}, + [2624] = {.lex_state = 439, .external_lex_state = 53}, + [2625] = {.lex_state = 446, .external_lex_state = 46}, + [2626] = {.lex_state = 437, .external_lex_state = 60}, + [2627] = {.lex_state = 439, .external_lex_state = 53}, + [2628] = {.lex_state = 446, .external_lex_state = 46}, + [2629] = {.lex_state = 473, .external_lex_state = 29}, + [2630] = {.lex_state = 471, .external_lex_state = 58}, + [2631] = {.lex_state = 463, .external_lex_state = 29}, + [2632] = {.lex_state = 470, .external_lex_state = 57}, + [2633] = {.lex_state = 463, .external_lex_state = 29}, + [2634] = {.lex_state = 470, .external_lex_state = 57}, + [2635] = {.lex_state = 446, .external_lex_state = 46}, + [2636] = {.lex_state = 446, .external_lex_state = 46}, + [2637] = {.lex_state = 443, .external_lex_state = 53}, + [2638] = {.lex_state = 443, .external_lex_state = 53}, + [2639] = {.lex_state = 474, .external_lex_state = 58}, + [2640] = {.lex_state = 446, .external_lex_state = 46}, + [2641] = {.lex_state = 437, .external_lex_state = 60}, + [2642] = {.lex_state = 437, .external_lex_state = 60}, + [2643] = {.lex_state = 437, .external_lex_state = 60}, + [2644] = {.lex_state = 473, .external_lex_state = 29}, + [2645] = {.lex_state = 466, .external_lex_state = 58}, + [2646] = {.lex_state = 446, .external_lex_state = 46}, + [2647] = {.lex_state = 466, .external_lex_state = 58}, + [2648] = {.lex_state = 466, .external_lex_state = 58}, + [2649] = {.lex_state = 435, .external_lex_state = 43}, + [2650] = {.lex_state = 439, .external_lex_state = 53}, + [2651] = {.lex_state = 442, .external_lex_state = 62}, + [2652] = {.lex_state = 466, .external_lex_state = 58}, + [2653] = {.lex_state = 439, .external_lex_state = 53}, + [2654] = {.lex_state = 439, .external_lex_state = 53}, + [2655] = {.lex_state = 466, .external_lex_state = 58}, + [2656] = {.lex_state = 446, .external_lex_state = 46}, + [2657] = {.lex_state = 439, .external_lex_state = 53}, + [2658] = {.lex_state = 446, .external_lex_state = 46}, + [2659] = {.lex_state = 446, .external_lex_state = 46}, + [2660] = {.lex_state = 446, .external_lex_state = 46}, + [2661] = {.lex_state = 439, .external_lex_state = 53}, + [2662] = {.lex_state = 463, .external_lex_state = 29}, + [2663] = {.lex_state = 471, .external_lex_state = 58}, + [2664] = {.lex_state = 471, .external_lex_state = 58}, + [2665] = {.lex_state = 439, .external_lex_state = 53}, + [2666] = {.lex_state = 439, .external_lex_state = 53}, + [2667] = {.lex_state = 435, .external_lex_state = 63}, + [2668] = {.lex_state = 439, .external_lex_state = 53}, + [2669] = {.lex_state = 474, .external_lex_state = 58}, + [2670] = {.lex_state = 446, .external_lex_state = 46}, + [2671] = {.lex_state = 463, .external_lex_state = 29}, + [2672] = {.lex_state = 466, .external_lex_state = 58}, + [2673] = {.lex_state = 466, .external_lex_state = 58}, + [2674] = {.lex_state = 435, .external_lex_state = 43}, + [2675] = {.lex_state = 466, .external_lex_state = 58}, + [2676] = {.lex_state = 466, .external_lex_state = 58}, + [2677] = {.lex_state = 439, .external_lex_state = 53}, + [2678] = {.lex_state = 439, .external_lex_state = 53}, + [2679] = {.lex_state = 439, .external_lex_state = 53}, + [2680] = {.lex_state = 466, .external_lex_state = 58}, + [2681] = {.lex_state = 445, .external_lex_state = 43}, + [2682] = {.lex_state = 474, .external_lex_state = 58}, + [2683] = {.lex_state = 437, .external_lex_state = 48}, + [2684] = {.lex_state = 474, .external_lex_state = 58}, + [2685] = {.lex_state = 435, .external_lex_state = 43}, + [2686] = {.lex_state = 474, .external_lex_state = 58}, + [2687] = {.lex_state = 467, .external_lex_state = 30}, + [2688] = {.lex_state = 446, .external_lex_state = 46}, + [2689] = {.lex_state = 474, .external_lex_state = 58}, + [2690] = {.lex_state = 446, .external_lex_state = 46}, + [2691] = {.lex_state = 474, .external_lex_state = 58}, + [2692] = {.lex_state = 474, .external_lex_state = 58}, + [2693] = {.lex_state = 466, .external_lex_state = 58}, + [2694] = {.lex_state = 466, .external_lex_state = 58}, + [2695] = {.lex_state = 474, .external_lex_state = 58}, + [2696] = {.lex_state = 474, .external_lex_state = 58}, + [2697] = {.lex_state = 463, .external_lex_state = 29}, + [2698] = {.lex_state = 466, .external_lex_state = 58}, + [2699] = {.lex_state = 467, .external_lex_state = 32}, + [2700] = {.lex_state = 467, .external_lex_state = 30}, + [2701] = {.lex_state = 474, .external_lex_state = 58}, + [2702] = {.lex_state = 471, .external_lex_state = 58}, + [2703] = {.lex_state = 435, .external_lex_state = 63}, + [2704] = {.lex_state = 474, .external_lex_state = 58}, + [2705] = {.lex_state = 437, .external_lex_state = 48}, + [2706] = {.lex_state = 470, .external_lex_state = 57}, + [2707] = {.lex_state = 470, .external_lex_state = 57}, + [2708] = {.lex_state = 470, .external_lex_state = 57}, + [2709] = {.lex_state = 470, .external_lex_state = 57}, + [2710] = {.lex_state = 439, .external_lex_state = 53}, + [2711] = {.lex_state = 470, .external_lex_state = 57}, + [2712] = {.lex_state = 473, .external_lex_state = 29}, + [2713] = {.lex_state = 474, .external_lex_state = 58}, + [2714] = {.lex_state = 474, .external_lex_state = 58}, + [2715] = {.lex_state = 474, .external_lex_state = 58}, + [2716] = {.lex_state = 435, .external_lex_state = 43}, + [2717] = {.lex_state = 437, .external_lex_state = 46}, + [2718] = {.lex_state = 470, .external_lex_state = 57}, + [2719] = {.lex_state = 470, .external_lex_state = 57}, + [2720] = {.lex_state = 467, .external_lex_state = 30}, + [2721] = {.lex_state = 470, .external_lex_state = 57}, + [2722] = {.lex_state = 435, .external_lex_state = 43}, + [2723] = {.lex_state = 467, .external_lex_state = 30}, + [2724] = {.lex_state = 474, .external_lex_state = 58}, + [2725] = {.lex_state = 470, .external_lex_state = 57}, + [2726] = {.lex_state = 435, .external_lex_state = 43}, + [2727] = {.lex_state = 470, .external_lex_state = 57}, + [2728] = {.lex_state = 435, .external_lex_state = 43}, + [2729] = {.lex_state = 439, .external_lex_state = 53}, + [2730] = {.lex_state = 470, .external_lex_state = 57}, + [2731] = {.lex_state = 470, .external_lex_state = 57}, + [2732] = {.lex_state = 443, .external_lex_state = 53}, + [2733] = {.lex_state = 435, .external_lex_state = 63}, + [2734] = {.lex_state = 435, .external_lex_state = 63}, + [2735] = {.lex_state = 439, .external_lex_state = 53}, + [2736] = {.lex_state = 439, .external_lex_state = 53}, + [2737] = {.lex_state = 437, .external_lex_state = 46}, + [2738] = {.lex_state = 435, .external_lex_state = 62}, + [2739] = {.lex_state = 471, .external_lex_state = 58}, + [2740] = {.lex_state = 435, .external_lex_state = 62}, + [2741] = {.lex_state = 471, .external_lex_state = 58}, + [2742] = {.lex_state = 437, .external_lex_state = 59}, + [2743] = {.lex_state = 437, .external_lex_state = 46}, + [2744] = {.lex_state = 437, .external_lex_state = 59}, + [2745] = {.lex_state = 435, .external_lex_state = 62}, + [2746] = {.lex_state = 437, .external_lex_state = 59}, + [2747] = {.lex_state = 437, .external_lex_state = 59}, + [2748] = {.lex_state = 437, .external_lex_state = 59}, + [2749] = {.lex_state = 435, .external_lex_state = 62}, + [2750] = {.lex_state = 435, .external_lex_state = 62}, + [2751] = {.lex_state = 473, .external_lex_state = 29}, + [2752] = {.lex_state = 435, .external_lex_state = 62}, + [2753] = {.lex_state = 473, .external_lex_state = 35}, + [2754] = {.lex_state = 435, .external_lex_state = 62}, + [2755] = {.lex_state = 437, .external_lex_state = 46}, + [2756] = {.lex_state = 473, .external_lex_state = 29}, + [2757] = {.lex_state = 435, .external_lex_state = 62}, + [2758] = {.lex_state = 435, .external_lex_state = 62}, + [2759] = {.lex_state = 437, .external_lex_state = 46}, + [2760] = {.lex_state = 435, .external_lex_state = 62}, + [2761] = {.lex_state = 435, .external_lex_state = 62}, + [2762] = {.lex_state = 437, .external_lex_state = 46}, + [2763] = {.lex_state = 435, .external_lex_state = 62}, + [2764] = {.lex_state = 435, .external_lex_state = 62}, + [2765] = {.lex_state = 437, .external_lex_state = 64}, + [2766] = {.lex_state = 437, .external_lex_state = 46}, + [2767] = {.lex_state = 435, .external_lex_state = 62}, + [2768] = {.lex_state = 435, .external_lex_state = 62}, + [2769] = {.lex_state = 435, .external_lex_state = 62}, + [2770] = {.lex_state = 435, .external_lex_state = 62}, + [2771] = {.lex_state = 435, .external_lex_state = 62}, + [2772] = {.lex_state = 435, .external_lex_state = 62}, + [2773] = {.lex_state = 435, .external_lex_state = 62}, + [2774] = {.lex_state = 435, .external_lex_state = 62}, + [2775] = {.lex_state = 437, .external_lex_state = 64}, + [2776] = {.lex_state = 435, .external_lex_state = 62}, + [2777] = {.lex_state = 435, .external_lex_state = 62}, + [2778] = {.lex_state = 435, .external_lex_state = 62}, + [2779] = {.lex_state = 435, .external_lex_state = 62}, + [2780] = {.lex_state = 435, .external_lex_state = 62}, + [2781] = {.lex_state = 472, .external_lex_state = 32}, + [2782] = {.lex_state = 435, .external_lex_state = 62}, + [2783] = {.lex_state = 435, .external_lex_state = 62}, + [2784] = {.lex_state = 471, .external_lex_state = 58}, + [2785] = {.lex_state = 435, .external_lex_state = 62}, + [2786] = {.lex_state = 435, .external_lex_state = 62}, + [2787] = {.lex_state = 435, .external_lex_state = 62}, + [2788] = {.lex_state = 471, .external_lex_state = 58}, + [2789] = {.lex_state = 463, .external_lex_state = 29}, + [2790] = {.lex_state = 435, .external_lex_state = 62}, + [2791] = {.lex_state = 463, .external_lex_state = 29}, + [2792] = {.lex_state = 463, .external_lex_state = 29}, + [2793] = {.lex_state = 435, .external_lex_state = 62}, + [2794] = {.lex_state = 437, .external_lex_state = 64}, + [2795] = {.lex_state = 435, .external_lex_state = 62}, + [2796] = {.lex_state = 437, .external_lex_state = 64}, + [2797] = {.lex_state = 471, .external_lex_state = 58}, + [2798] = {.lex_state = 471, .external_lex_state = 58}, + [2799] = {.lex_state = 437, .external_lex_state = 59}, + [2800] = {.lex_state = 437, .external_lex_state = 59}, + [2801] = {.lex_state = 435, .external_lex_state = 62}, + [2802] = {.lex_state = 463, .external_lex_state = 29}, + [2803] = {.lex_state = 437, .external_lex_state = 59}, + [2804] = {.lex_state = 435, .external_lex_state = 62}, + [2805] = {.lex_state = 435, .external_lex_state = 62}, + [2806] = {.lex_state = 435, .external_lex_state = 62}, + [2807] = {.lex_state = 437, .external_lex_state = 64}, + [2808] = {.lex_state = 437, .external_lex_state = 46}, + [2809] = {.lex_state = 437, .external_lex_state = 46}, + [2810] = {.lex_state = 435, .external_lex_state = 62}, + [2811] = {.lex_state = 471, .external_lex_state = 58}, + [2812] = {.lex_state = 437, .external_lex_state = 46}, + [2813] = {.lex_state = 437, .external_lex_state = 46}, + [2814] = {.lex_state = 435, .external_lex_state = 62}, + [2815] = {.lex_state = 238, .external_lex_state = 61}, + [2816] = {.lex_state = 435, .external_lex_state = 62}, + [2817] = {.lex_state = 435, .external_lex_state = 62}, + [2818] = {.lex_state = 463, .external_lex_state = 35}, + [2819] = {.lex_state = 437, .external_lex_state = 59}, + [2820] = {.lex_state = 437, .external_lex_state = 46}, + [2821] = {.lex_state = 435, .external_lex_state = 62}, + [2822] = {.lex_state = 437, .external_lex_state = 46}, + [2823] = {.lex_state = 471, .external_lex_state = 58}, + [2824] = {.lex_state = 435, .external_lex_state = 62}, + [2825] = {.lex_state = 435, .external_lex_state = 62}, + [2826] = {.lex_state = 435, .external_lex_state = 62}, + [2827] = {.lex_state = 471, .external_lex_state = 58}, + [2828] = {.lex_state = 471, .external_lex_state = 58}, + [2829] = {.lex_state = 435, .external_lex_state = 62}, + [2830] = {.lex_state = 435, .external_lex_state = 62}, + [2831] = {.lex_state = 435, .external_lex_state = 62}, + [2832] = {.lex_state = 463, .external_lex_state = 29}, + [2833] = {.lex_state = 471, .external_lex_state = 58}, + [2834] = {.lex_state = 471, .external_lex_state = 58}, + [2835] = {.lex_state = 437, .external_lex_state = 46}, + [2836] = {.lex_state = 435, .external_lex_state = 62}, + [2837] = {.lex_state = 435, .external_lex_state = 62}, + [2838] = {.lex_state = 435, .external_lex_state = 62}, + [2839] = {.lex_state = 435, .external_lex_state = 62}, + [2840] = {.lex_state = 435, .external_lex_state = 62}, + [2841] = {.lex_state = 435, .external_lex_state = 62}, + [2842] = {.lex_state = 437, .external_lex_state = 46}, + [2843] = {.lex_state = 437, .external_lex_state = 46}, + [2844] = {.lex_state = 435, .external_lex_state = 62}, + [2845] = {.lex_state = 435, .external_lex_state = 62}, + [2846] = {.lex_state = 435, .external_lex_state = 62}, + [2847] = {.lex_state = 437, .external_lex_state = 48}, + [2848] = {.lex_state = 435, .external_lex_state = 62}, + [2849] = {.lex_state = 435, .external_lex_state = 62}, + [2850] = {.lex_state = 435, .external_lex_state = 62}, + [2851] = {.lex_state = 238, .external_lex_state = 61}, + [2852] = {.lex_state = 463, .external_lex_state = 35}, + [2853] = {.lex_state = 435, .external_lex_state = 62}, + [2854] = {.lex_state = 437, .external_lex_state = 64}, + [2855] = {.lex_state = 435, .external_lex_state = 62}, + [2856] = {.lex_state = 437, .external_lex_state = 64}, + [2857] = {.lex_state = 435, .external_lex_state = 62}, + [2858] = {.lex_state = 437, .external_lex_state = 46}, + [2859] = {.lex_state = 435, .external_lex_state = 62}, + [2860] = {.lex_state = 435, .external_lex_state = 62}, + [2861] = {.lex_state = 435, .external_lex_state = 62}, + [2862] = {.lex_state = 471, .external_lex_state = 58}, + [2863] = {.lex_state = 437, .external_lex_state = 64}, + [2864] = {.lex_state = 471, .external_lex_state = 58}, + [2865] = {.lex_state = 437, .external_lex_state = 64}, + [2866] = {.lex_state = 435, .external_lex_state = 62}, + [2867] = {.lex_state = 238, .external_lex_state = 61}, + [2868] = {.lex_state = 435, .external_lex_state = 62}, + [2869] = {.lex_state = 467, .external_lex_state = 32}, + [2870] = {.lex_state = 435, .external_lex_state = 62}, + [2871] = {.lex_state = 238, .external_lex_state = 61}, + [2872] = {.lex_state = 435, .external_lex_state = 62}, + [2873] = {.lex_state = 435, .external_lex_state = 62}, + [2874] = {.lex_state = 463, .external_lex_state = 29}, + [2875] = {.lex_state = 435, .external_lex_state = 62}, + [2876] = {.lex_state = 435, .external_lex_state = 62}, + [2877] = {.lex_state = 437, .external_lex_state = 46}, + [2878] = {.lex_state = 435, .external_lex_state = 62}, + [2879] = {.lex_state = 471, .external_lex_state = 58}, + [2880] = {.lex_state = 435, .external_lex_state = 62}, + [2881] = {.lex_state = 435, .external_lex_state = 62}, + [2882] = {.lex_state = 435, .external_lex_state = 62}, + [2883] = {.lex_state = 435, .external_lex_state = 62}, + [2884] = {.lex_state = 437, .external_lex_state = 46}, + [2885] = {.lex_state = 437, .external_lex_state = 46}, + [2886] = {.lex_state = 435, .external_lex_state = 62}, + [2887] = {.lex_state = 435, .external_lex_state = 62}, + [2888] = {.lex_state = 471, .external_lex_state = 58}, + [2889] = {.lex_state = 437, .external_lex_state = 46}, + [2890] = {.lex_state = 435, .external_lex_state = 62}, + [2891] = {.lex_state = 472, .external_lex_state = 32}, + [2892] = {.lex_state = 471, .external_lex_state = 58}, + [2893] = {.lex_state = 463, .external_lex_state = 29}, + [2894] = {.lex_state = 435, .external_lex_state = 62}, + [2895] = {.lex_state = 435, .external_lex_state = 62}, + [2896] = {.lex_state = 437, .external_lex_state = 46}, + [2897] = {.lex_state = 435, .external_lex_state = 62}, + [2898] = {.lex_state = 473, .external_lex_state = 29}, + [2899] = {.lex_state = 437, .external_lex_state = 46}, + [2900] = {.lex_state = 435, .external_lex_state = 62}, + [2901] = {.lex_state = 241, .external_lex_state = 65}, + [2902] = {.lex_state = 437, .external_lex_state = 46}, + [2903] = {.lex_state = 437, .external_lex_state = 46}, + [2904] = {.lex_state = 435, .external_lex_state = 62}, + [2905] = {.lex_state = 435, .external_lex_state = 62}, + [2906] = {.lex_state = 241, .external_lex_state = 65}, + [2907] = {.lex_state = 439, .external_lex_state = 43}, + [2908] = {.lex_state = 435, .external_lex_state = 62}, + [2909] = {.lex_state = 435, .external_lex_state = 62}, + [2910] = {.lex_state = 471, .external_lex_state = 58}, + [2911] = {.lex_state = 435, .external_lex_state = 62}, + [2912] = {.lex_state = 437, .external_lex_state = 46}, + [2913] = {.lex_state = 435, .external_lex_state = 62}, + [2914] = {.lex_state = 463, .external_lex_state = 29}, + [2915] = {.lex_state = 435, .external_lex_state = 62}, + [2916] = {.lex_state = 437, .external_lex_state = 46}, + [2917] = {.lex_state = 437, .external_lex_state = 46}, + [2918] = {.lex_state = 435, .external_lex_state = 62}, + [2919] = {.lex_state = 435, .external_lex_state = 62}, + [2920] = {.lex_state = 473, .external_lex_state = 35}, + [2921] = {.lex_state = 435, .external_lex_state = 62}, + [2922] = {.lex_state = 437, .external_lex_state = 46}, + [2923] = {.lex_state = 435, .external_lex_state = 62}, + [2924] = {.lex_state = 437, .external_lex_state = 46}, + [2925] = {.lex_state = 435, .external_lex_state = 62}, + [2926] = {.lex_state = 435, .external_lex_state = 62}, + [2927] = {.lex_state = 435, .external_lex_state = 62}, + [2928] = {.lex_state = 435, .external_lex_state = 43}, + [2929] = {.lex_state = 463, .external_lex_state = 29}, + [2930] = {.lex_state = 437, .external_lex_state = 46}, + [2931] = {.lex_state = 435, .external_lex_state = 62}, + [2932] = {.lex_state = 435, .external_lex_state = 62}, + [2933] = {.lex_state = 437, .external_lex_state = 46}, + [2934] = {.lex_state = 473, .external_lex_state = 29}, + [2935] = {.lex_state = 463, .external_lex_state = 29}, + [2936] = {.lex_state = 435, .external_lex_state = 62}, + [2937] = {.lex_state = 435, .external_lex_state = 62}, + [2938] = {.lex_state = 85, .external_lex_state = 66}, + [2939] = {.lex_state = 471, .external_lex_state = 58}, + [2940] = {.lex_state = 435, .external_lex_state = 62}, + [2941] = {.lex_state = 463, .external_lex_state = 29}, + [2942] = {.lex_state = 435, .external_lex_state = 43}, + [2943] = {.lex_state = 530, .external_lex_state = 65}, + [2944] = {.lex_state = 475, .external_lex_state = 67}, + [2945] = {.lex_state = 530, .external_lex_state = 65}, + [2946] = {.lex_state = 475, .external_lex_state = 67}, + [2947] = {.lex_state = 247, .external_lex_state = 65}, + [2948] = {.lex_state = 437, .external_lex_state = 48}, + [2949] = {.lex_state = 247, .external_lex_state = 65}, + [2950] = {.lex_state = 437, .external_lex_state = 43}, + [2951] = {.lex_state = 437, .external_lex_state = 43}, + [2952] = {.lex_state = 437, .external_lex_state = 48}, + [2953] = {.lex_state = 437, .external_lex_state = 48}, + [2954] = {.lex_state = 437, .external_lex_state = 48}, + [2955] = {.lex_state = 435, .external_lex_state = 43}, + [2956] = {.lex_state = 437, .external_lex_state = 48}, + [2957] = {.lex_state = 437, .external_lex_state = 48}, + [2958] = {.lex_state = 435, .external_lex_state = 43}, + [2959] = {.lex_state = 463, .external_lex_state = 35}, + [2960] = {.lex_state = 437, .external_lex_state = 48}, + [2961] = {.lex_state = 435, .external_lex_state = 43}, + [2962] = {.lex_state = 437, .external_lex_state = 48}, + [2963] = {.lex_state = 435, .external_lex_state = 43}, + [2964] = {.lex_state = 437, .external_lex_state = 43}, + [2965] = {.lex_state = 435, .external_lex_state = 43}, + [2966] = {.lex_state = 435, .external_lex_state = 43}, + [2967] = {.lex_state = 437, .external_lex_state = 48}, + [2968] = {.lex_state = 435, .external_lex_state = 43}, + [2969] = {.lex_state = 437, .external_lex_state = 48}, + [2970] = {.lex_state = 475, .external_lex_state = 67}, + [2971] = {.lex_state = 440, .external_lex_state = 62}, + [2972] = {.lex_state = 475, .external_lex_state = 67}, + [2973] = {.lex_state = 475, .external_lex_state = 67}, + [2974] = {.lex_state = 475, .external_lex_state = 67}, + [2975] = {.lex_state = 437, .external_lex_state = 48}, + [2976] = {.lex_state = 437, .external_lex_state = 43}, + [2977] = {.lex_state = 437, .external_lex_state = 48}, + [2978] = {.lex_state = 437, .external_lex_state = 48}, + [2979] = {.lex_state = 435, .external_lex_state = 43}, + [2980] = {.lex_state = 435, .external_lex_state = 43}, + [2981] = {.lex_state = 437, .external_lex_state = 48}, + [2982] = {.lex_state = 435, .external_lex_state = 43}, + [2983] = {.lex_state = 437, .external_lex_state = 43}, + [2984] = {.lex_state = 435, .external_lex_state = 43}, + [2985] = {.lex_state = 85, .external_lex_state = 66}, + [2986] = {.lex_state = 437, .external_lex_state = 48}, + [2987] = {.lex_state = 437, .external_lex_state = 43}, + [2988] = {.lex_state = 435, .external_lex_state = 43}, + [2989] = {.lex_state = 435, .external_lex_state = 43}, + [2990] = {.lex_state = 85, .external_lex_state = 66}, + [2991] = {.lex_state = 475, .external_lex_state = 67}, + [2992] = {.lex_state = 475, .external_lex_state = 67}, + [2993] = {.lex_state = 475, .external_lex_state = 67}, + [2994] = {.lex_state = 475, .external_lex_state = 67}, + [2995] = {.lex_state = 435, .external_lex_state = 43}, + [2996] = {.lex_state = 85, .external_lex_state = 66}, + [2997] = {.lex_state = 435, .external_lex_state = 43}, + [2998] = {.lex_state = 85, .external_lex_state = 66}, + [2999] = {.lex_state = 437, .external_lex_state = 48}, + [3000] = {.lex_state = 435, .external_lex_state = 43}, + [3001] = {.lex_state = 437, .external_lex_state = 48}, + [3002] = {.lex_state = 437, .external_lex_state = 48}, + [3003] = {.lex_state = 437, .external_lex_state = 43}, + [3004] = {.lex_state = 435, .external_lex_state = 43}, + [3005] = {.lex_state = 461, .external_lex_state = 36}, + [3006] = {.lex_state = 85, .external_lex_state = 66}, + [3007] = {.lex_state = 435, .external_lex_state = 43}, + [3008] = {.lex_state = 435, .external_lex_state = 43}, + [3009] = {.lex_state = 250, .external_lex_state = 65}, + [3010] = {.lex_state = 250, .external_lex_state = 65}, + [3011] = {.lex_state = 85, .external_lex_state = 66}, + [3012] = {.lex_state = 472, .external_lex_state = 32}, + [3013] = {.lex_state = 475, .external_lex_state = 67}, + [3014] = {.lex_state = 435, .external_lex_state = 43}, + [3015] = {.lex_state = 435, .external_lex_state = 43}, + [3016] = {.lex_state = 299, .external_lex_state = 68}, + [3017] = {.lex_state = 299, .external_lex_state = 68}, + [3018] = {.lex_state = 437, .external_lex_state = 48}, + [3019] = {.lex_state = 85, .external_lex_state = 66}, + [3020] = {.lex_state = 85, .external_lex_state = 66}, + [3021] = {.lex_state = 435, .external_lex_state = 43}, + [3022] = {.lex_state = 85, .external_lex_state = 66}, + [3023] = {.lex_state = 299, .external_lex_state = 68}, + [3024] = {.lex_state = 85, .external_lex_state = 66}, + [3025] = {.lex_state = 437, .external_lex_state = 48}, + [3026] = {.lex_state = 250, .external_lex_state = 65}, + [3027] = {.lex_state = 250, .external_lex_state = 65}, + [3028] = {.lex_state = 85, .external_lex_state = 66}, + [3029] = {.lex_state = 435, .external_lex_state = 43}, + [3030] = {.lex_state = 435, .external_lex_state = 62}, + [3031] = {.lex_state = 437, .external_lex_state = 63}, + [3032] = {.lex_state = 437, .external_lex_state = 63}, + [3033] = {.lex_state = 444, .external_lex_state = 62}, + [3034] = {.lex_state = 435, .external_lex_state = 43}, + [3035] = {.lex_state = 469, .external_lex_state = 35}, + [3036] = {.lex_state = 437, .external_lex_state = 48}, + [3037] = {.lex_state = 435, .external_lex_state = 43}, + [3038] = {.lex_state = 435, .external_lex_state = 43}, + [3039] = {.lex_state = 435, .external_lex_state = 43}, + [3040] = {.lex_state = 437, .external_lex_state = 43}, + [3041] = {.lex_state = 437, .external_lex_state = 43}, + [3042] = {.lex_state = 85, .external_lex_state = 66}, + [3043] = {.lex_state = 85, .external_lex_state = 66}, + [3044] = {.lex_state = 85, .external_lex_state = 66}, + [3045] = {.lex_state = 437, .external_lex_state = 43}, + [3046] = {.lex_state = 437, .external_lex_state = 43}, + [3047] = {.lex_state = 437, .external_lex_state = 43}, + [3048] = {.lex_state = 437, .external_lex_state = 43}, + [3049] = {.lex_state = 437, .external_lex_state = 43}, + [3050] = {.lex_state = 437, .external_lex_state = 43}, + [3051] = {.lex_state = 437, .external_lex_state = 43}, + [3052] = {.lex_state = 437, .external_lex_state = 43}, + [3053] = {.lex_state = 437, .external_lex_state = 43}, + [3054] = {.lex_state = 437, .external_lex_state = 43}, + [3055] = {.lex_state = 475, .external_lex_state = 67}, + [3056] = {.lex_state = 437, .external_lex_state = 43}, + [3057] = {.lex_state = 437, .external_lex_state = 43}, + [3058] = {.lex_state = 437, .external_lex_state = 43}, + [3059] = {.lex_state = 437, .external_lex_state = 43}, + [3060] = {.lex_state = 437, .external_lex_state = 63}, + [3061] = {.lex_state = 437, .external_lex_state = 63}, + [3062] = {.lex_state = 475, .external_lex_state = 67}, + [3063] = {.lex_state = 435, .external_lex_state = 43}, + [3064] = {.lex_state = 437, .external_lex_state = 48}, + [3065] = {.lex_state = 435, .external_lex_state = 43}, + [3066] = {.lex_state = 437, .external_lex_state = 48}, + [3067] = {.lex_state = 437, .external_lex_state = 48}, + [3068] = {.lex_state = 85, .external_lex_state = 66}, + [3069] = {.lex_state = 85, .external_lex_state = 66}, + [3070] = {.lex_state = 437, .external_lex_state = 69}, + [3071] = {.lex_state = 437, .external_lex_state = 69}, + [3072] = {.lex_state = 85, .external_lex_state = 66}, + [3073] = {.lex_state = 437, .external_lex_state = 48}, + [3074] = {.lex_state = 435, .external_lex_state = 43}, + [3075] = {.lex_state = 435, .external_lex_state = 43}, + [3076] = {.lex_state = 437, .external_lex_state = 43}, + [3077] = {.lex_state = 437, .external_lex_state = 48}, + [3078] = {.lex_state = 435, .external_lex_state = 43}, + [3079] = {.lex_state = 435, .external_lex_state = 43}, + [3080] = {.lex_state = 435, .external_lex_state = 43}, + [3081] = {.lex_state = 435, .external_lex_state = 43}, + [3082] = {.lex_state = 435, .external_lex_state = 43}, + [3083] = {.lex_state = 435, .external_lex_state = 43}, + [3084] = {.lex_state = 435, .external_lex_state = 43}, + [3085] = {.lex_state = 85, .external_lex_state = 66}, + [3086] = {.lex_state = 435, .external_lex_state = 43}, + [3087] = {.lex_state = 85, .external_lex_state = 66}, + [3088] = {.lex_state = 435, .external_lex_state = 43}, + [3089] = {.lex_state = 435, .external_lex_state = 43}, + [3090] = {.lex_state = 435, .external_lex_state = 43}, + [3091] = {.lex_state = 435, .external_lex_state = 43}, + [3092] = {.lex_state = 435, .external_lex_state = 43}, + [3093] = {.lex_state = 85, .external_lex_state = 66}, + [3094] = {.lex_state = 85, .external_lex_state = 66}, + [3095] = {.lex_state = 85, .external_lex_state = 66}, + [3096] = {.lex_state = 435, .external_lex_state = 43}, + [3097] = {.lex_state = 437, .external_lex_state = 69}, + [3098] = {.lex_state = 437, .external_lex_state = 69}, + [3099] = {.lex_state = 85, .external_lex_state = 66}, + [3100] = {.lex_state = 85, .external_lex_state = 66}, + [3101] = {.lex_state = 442, .external_lex_state = 70}, + [3102] = {.lex_state = 435, .external_lex_state = 43}, + [3103] = {.lex_state = 438, .external_lex_state = 62}, + [3104] = {.lex_state = 437, .external_lex_state = 48}, + [3105] = {.lex_state = 435, .external_lex_state = 43}, + [3106] = {.lex_state = 85, .external_lex_state = 66}, + [3107] = {.lex_state = 85, .external_lex_state = 66}, + [3108] = {.lex_state = 85, .external_lex_state = 66}, + [3109] = {.lex_state = 85, .external_lex_state = 66}, + [3110] = {.lex_state = 85, .external_lex_state = 66}, + [3111] = {.lex_state = 437, .external_lex_state = 48}, + [3112] = {.lex_state = 437, .external_lex_state = 48}, + [3113] = {.lex_state = 437, .external_lex_state = 43}, + [3114] = {.lex_state = 475, .external_lex_state = 67}, + [3115] = {.lex_state = 437, .external_lex_state = 48}, + [3116] = {.lex_state = 437, .external_lex_state = 48}, + [3117] = {.lex_state = 437, .external_lex_state = 48}, + [3118] = {.lex_state = 85, .external_lex_state = 66}, + [3119] = {.lex_state = 475, .external_lex_state = 67}, + [3120] = {.lex_state = 253, .external_lex_state = 65}, + [3121] = {.lex_state = 437, .external_lex_state = 43}, + [3122] = {.lex_state = 253, .external_lex_state = 65}, + [3123] = {.lex_state = 435, .external_lex_state = 43}, + [3124] = {.lex_state = 437, .external_lex_state = 43}, + [3125] = {.lex_state = 85, .external_lex_state = 66}, + [3126] = {.lex_state = 437, .external_lex_state = 43}, + [3127] = {.lex_state = 435, .external_lex_state = 43}, + [3128] = {.lex_state = 435, .external_lex_state = 43}, + [3129] = {.lex_state = 435, .external_lex_state = 43}, + [3130] = {.lex_state = 435, .external_lex_state = 43}, + [3131] = {.lex_state = 435, .external_lex_state = 43}, + [3132] = {.lex_state = 435, .external_lex_state = 43}, + [3133] = {.lex_state = 435, .external_lex_state = 43}, + [3134] = {.lex_state = 299, .external_lex_state = 68}, + [3135] = {.lex_state = 437, .external_lex_state = 48}, + [3136] = {.lex_state = 435, .external_lex_state = 43}, + [3137] = {.lex_state = 435, .external_lex_state = 43}, + [3138] = {.lex_state = 435, .external_lex_state = 43}, + [3139] = {.lex_state = 435, .external_lex_state = 43}, + [3140] = {.lex_state = 435, .external_lex_state = 43}, + [3141] = {.lex_state = 435, .external_lex_state = 43}, + [3142] = {.lex_state = 85, .external_lex_state = 66}, + [3143] = {.lex_state = 435, .external_lex_state = 43}, + [3144] = {.lex_state = 435, .external_lex_state = 43}, + [3145] = {.lex_state = 435, .external_lex_state = 43}, + [3146] = {.lex_state = 299, .external_lex_state = 68}, + [3147] = {.lex_state = 469, .external_lex_state = 35}, + [3148] = {.lex_state = 435, .external_lex_state = 43}, + [3149] = {.lex_state = 299, .external_lex_state = 68}, + [3150] = {.lex_state = 473, .external_lex_state = 35}, + [3151] = {.lex_state = 435, .external_lex_state = 43}, + [3152] = {.lex_state = 435, .external_lex_state = 43}, + [3153] = {.lex_state = 435, .external_lex_state = 43}, + [3154] = {.lex_state = 435, .external_lex_state = 43}, + [3155] = {.lex_state = 435, .external_lex_state = 43}, + [3156] = {.lex_state = 437, .external_lex_state = 43}, + [3157] = {.lex_state = 435, .external_lex_state = 43}, + [3158] = {.lex_state = 435, .external_lex_state = 43}, + [3159] = {.lex_state = 435, .external_lex_state = 43}, + [3160] = {.lex_state = 435, .external_lex_state = 43}, + [3161] = {.lex_state = 435, .external_lex_state = 43}, + [3162] = {.lex_state = 475, .external_lex_state = 67}, + [3163] = {.lex_state = 435, .external_lex_state = 43}, + [3164] = {.lex_state = 437, .external_lex_state = 43}, + [3165] = {.lex_state = 437, .external_lex_state = 62}, + [3166] = {.lex_state = 444, .external_lex_state = 62}, + [3167] = {.lex_state = 438, .external_lex_state = 62}, + [3168] = {.lex_state = 437, .external_lex_state = 70}, + [3169] = {.lex_state = 444, .external_lex_state = 62}, + [3170] = {.lex_state = 438, .external_lex_state = 62}, + [3171] = {.lex_state = 437, .external_lex_state = 70}, + [3172] = {.lex_state = 437, .external_lex_state = 70}, + [3173] = {.lex_state = 437, .external_lex_state = 70}, + [3174] = {.lex_state = 299, .external_lex_state = 68}, + [3175] = {.lex_state = 438, .external_lex_state = 62}, + [3176] = {.lex_state = 437, .external_lex_state = 70}, + [3177] = {.lex_state = 438, .external_lex_state = 62}, + [3178] = {.lex_state = 437, .external_lex_state = 70}, + [3179] = {.lex_state = 438, .external_lex_state = 62}, + [3180] = {.lex_state = 437, .external_lex_state = 70}, + [3181] = {.lex_state = 299, .external_lex_state = 68}, + [3182] = {.lex_state = 535, .external_lex_state = 65}, + [3183] = {.lex_state = 437, .external_lex_state = 70}, + [3184] = {.lex_state = 438, .external_lex_state = 62}, + [3185] = {.lex_state = 299, .external_lex_state = 68}, + [3186] = {.lex_state = 437, .external_lex_state = 70}, + [3187] = {.lex_state = 438, .external_lex_state = 62}, + [3188] = {.lex_state = 463, .external_lex_state = 47}, + [3189] = {.lex_state = 463, .external_lex_state = 47}, + [3190] = {.lex_state = 463, .external_lex_state = 47}, + [3191] = {.lex_state = 463, .external_lex_state = 47}, + [3192] = {.lex_state = 463, .external_lex_state = 47}, + [3193] = {.lex_state = 463, .external_lex_state = 47}, + [3194] = {.lex_state = 437, .external_lex_state = 70}, + [3195] = {.lex_state = 438, .external_lex_state = 62}, + [3196] = {.lex_state = 444, .external_lex_state = 62}, + [3197] = {.lex_state = 438, .external_lex_state = 62}, + [3198] = {.lex_state = 438, .external_lex_state = 62}, + [3199] = {.lex_state = 437, .external_lex_state = 70}, + [3200] = {.lex_state = 437, .external_lex_state = 70}, + [3201] = {.lex_state = 437, .external_lex_state = 62}, + [3202] = {.lex_state = 437, .external_lex_state = 70}, + [3203] = {.lex_state = 299, .external_lex_state = 68}, + [3204] = {.lex_state = 438, .external_lex_state = 62}, + [3205] = {.lex_state = 259, .external_lex_state = 65}, + [3206] = {.lex_state = 437, .external_lex_state = 70}, + [3207] = {.lex_state = 444, .external_lex_state = 62}, + [3208] = {.lex_state = 259, .external_lex_state = 65}, + [3209] = {.lex_state = 435, .external_lex_state = 62}, + [3210] = {.lex_state = 299, .external_lex_state = 68}, + [3211] = {.lex_state = 437, .external_lex_state = 70}, + [3212] = {.lex_state = 437, .external_lex_state = 70}, + [3213] = {.lex_state = 437, .external_lex_state = 70}, + [3214] = {.lex_state = 437, .external_lex_state = 70}, + [3215] = {.lex_state = 437, .external_lex_state = 62}, + [3216] = {.lex_state = 437, .external_lex_state = 70}, + [3217] = {.lex_state = 437, .external_lex_state = 70}, + [3218] = {.lex_state = 437, .external_lex_state = 70}, + [3219] = {.lex_state = 437, .external_lex_state = 70}, + [3220] = {.lex_state = 437, .external_lex_state = 70}, + [3221] = {.lex_state = 437, .external_lex_state = 70}, + [3222] = {.lex_state = 437, .external_lex_state = 70}, + [3223] = {.lex_state = 437, .external_lex_state = 70}, + [3224] = {.lex_state = 437, .external_lex_state = 70}, + [3225] = {.lex_state = 437, .external_lex_state = 62}, + [3226] = {.lex_state = 437, .external_lex_state = 70}, + [3227] = {.lex_state = 437, .external_lex_state = 70}, + [3228] = {.lex_state = 437, .external_lex_state = 70}, + [3229] = {.lex_state = 437, .external_lex_state = 70}, + [3230] = {.lex_state = 437, .external_lex_state = 62}, + [3231] = {.lex_state = 437, .external_lex_state = 70}, + [3232] = {.lex_state = 437, .external_lex_state = 70}, + [3233] = {.lex_state = 437, .external_lex_state = 70}, + [3234] = {.lex_state = 437, .external_lex_state = 70}, + [3235] = {.lex_state = 437, .external_lex_state = 70}, + [3236] = {.lex_state = 437, .external_lex_state = 70}, + [3237] = {.lex_state = 437, .external_lex_state = 70}, + [3238] = {.lex_state = 438, .external_lex_state = 62}, + [3239] = {.lex_state = 463, .external_lex_state = 47}, + [3240] = {.lex_state = 437, .external_lex_state = 70}, + [3241] = {.lex_state = 444, .external_lex_state = 62}, + [3242] = {.lex_state = 437, .external_lex_state = 62}, + [3243] = {.lex_state = 444, .external_lex_state = 62}, + [3244] = {.lex_state = 437, .external_lex_state = 70}, + [3245] = {.lex_state = 437, .external_lex_state = 70}, + [3246] = {.lex_state = 444, .external_lex_state = 62}, + [3247] = {.lex_state = 444, .external_lex_state = 62}, + [3248] = {.lex_state = 437, .external_lex_state = 70}, + [3249] = {.lex_state = 437, .external_lex_state = 70}, + [3250] = {.lex_state = 437, .external_lex_state = 70}, + [3251] = {.lex_state = 437, .external_lex_state = 62}, + [3252] = {.lex_state = 437, .external_lex_state = 62}, + [3253] = {.lex_state = 437, .external_lex_state = 70}, + [3254] = {.lex_state = 437, .external_lex_state = 62}, + [3255] = {.lex_state = 437, .external_lex_state = 70}, + [3256] = {.lex_state = 438, .external_lex_state = 62}, + [3257] = {.lex_state = 530, .external_lex_state = 65}, + [3258] = {.lex_state = 437, .external_lex_state = 70}, + [3259] = {.lex_state = 299, .external_lex_state = 68}, + [3260] = {.lex_state = 299, .external_lex_state = 68}, + [3261] = {.lex_state = 437, .external_lex_state = 70}, + [3262] = {.lex_state = 530, .external_lex_state = 65}, + [3263] = {.lex_state = 299, .external_lex_state = 68}, + [3264] = {.lex_state = 437, .external_lex_state = 70}, + [3265] = {.lex_state = 437, .external_lex_state = 70}, + [3266] = {.lex_state = 299, .external_lex_state = 68}, + [3267] = {.lex_state = 437, .external_lex_state = 62}, + [3268] = {.lex_state = 437, .external_lex_state = 70}, + [3269] = {.lex_state = 437, .external_lex_state = 70}, + [3270] = {.lex_state = 437, .external_lex_state = 70}, + [3271] = {.lex_state = 437, .external_lex_state = 62}, + [3272] = {.lex_state = 438, .external_lex_state = 62}, + [3273] = {.lex_state = 437, .external_lex_state = 70}, + [3274] = {.lex_state = 444, .external_lex_state = 62}, + [3275] = {.lex_state = 437, .external_lex_state = 70}, + [3276] = {.lex_state = 437, .external_lex_state = 62}, + [3277] = {.lex_state = 438, .external_lex_state = 62}, + [3278] = {.lex_state = 463, .external_lex_state = 47}, + [3279] = {.lex_state = 437, .external_lex_state = 62}, + [3280] = {.lex_state = 437, .external_lex_state = 62}, + [3281] = {.lex_state = 437, .external_lex_state = 62}, + [3282] = {.lex_state = 437, .external_lex_state = 62}, + [3283] = {.lex_state = 437, .external_lex_state = 62}, + [3284] = {.lex_state = 535, .external_lex_state = 65}, + [3285] = {.lex_state = 437, .external_lex_state = 70}, + [3286] = {.lex_state = 438, .external_lex_state = 62}, + [3287] = {.lex_state = 438, .external_lex_state = 62}, + [3288] = {.lex_state = 299, .external_lex_state = 68}, + [3289] = {.lex_state = 299, .external_lex_state = 68}, + [3290] = {.lex_state = 437, .external_lex_state = 70}, + [3291] = {.lex_state = 438, .external_lex_state = 62}, + [3292] = {.lex_state = 437, .external_lex_state = 70}, + [3293] = {.lex_state = 444, .external_lex_state = 62}, + [3294] = {.lex_state = 437, .external_lex_state = 70}, + [3295] = {.lex_state = 535, .external_lex_state = 65}, + [3296] = {.lex_state = 299, .external_lex_state = 68}, + [3297] = {.lex_state = 444, .external_lex_state = 62}, + [3298] = {.lex_state = 444, .external_lex_state = 62}, + [3299] = {.lex_state = 535, .external_lex_state = 65}, + [3300] = {.lex_state = 437, .external_lex_state = 70}, + [3301] = {.lex_state = 438, .external_lex_state = 62}, + [3302] = {.lex_state = 437, .external_lex_state = 70}, + [3303] = {.lex_state = 435, .external_lex_state = 62}, + [3304] = {.lex_state = 437, .external_lex_state = 70}, + [3305] = {.lex_state = 299, .external_lex_state = 68}, + [3306] = {.lex_state = 437, .external_lex_state = 70}, + [3307] = {.lex_state = 437, .external_lex_state = 70}, + [3308] = {.lex_state = 444, .external_lex_state = 62}, + [3309] = {.lex_state = 438, .external_lex_state = 62}, + [3310] = {.lex_state = 262, .external_lex_state = 65}, + [3311] = {.lex_state = 437, .external_lex_state = 62}, + [3312] = {.lex_state = 444, .external_lex_state = 62}, + [3313] = {.lex_state = 262, .external_lex_state = 65}, + [3314] = {.lex_state = 437, .external_lex_state = 70}, + [3315] = {.lex_state = 437, .external_lex_state = 62}, + [3316] = {.lex_state = 437, .external_lex_state = 70}, + [3317] = {.lex_state = 437, .external_lex_state = 62}, + [3318] = {.lex_state = 437, .external_lex_state = 62}, + [3319] = {.lex_state = 437, .external_lex_state = 62}, + [3320] = {.lex_state = 437, .external_lex_state = 62}, + [3321] = {.lex_state = 437, .external_lex_state = 70}, + [3322] = {.lex_state = 437, .external_lex_state = 62}, + [3323] = {.lex_state = 437, .external_lex_state = 62}, + [3324] = {.lex_state = 437, .external_lex_state = 62}, + [3325] = {.lex_state = 437, .external_lex_state = 62}, + [3326] = {.lex_state = 437, .external_lex_state = 62}, + [3327] = {.lex_state = 437, .external_lex_state = 62}, + [3328] = {.lex_state = 437, .external_lex_state = 62}, + [3329] = {.lex_state = 437, .external_lex_state = 62}, + [3330] = {.lex_state = 437, .external_lex_state = 70}, + [3331] = {.lex_state = 437, .external_lex_state = 70}, + [3332] = {.lex_state = 463, .external_lex_state = 47}, + [3333] = {.lex_state = 463, .external_lex_state = 47}, + [3334] = {.lex_state = 437, .external_lex_state = 70}, + [3335] = {.lex_state = 437, .external_lex_state = 70}, + [3336] = {.lex_state = 444, .external_lex_state = 62}, + [3337] = {.lex_state = 444, .external_lex_state = 62}, + [3338] = {.lex_state = 444, .external_lex_state = 62}, + [3339] = {.lex_state = 444, .external_lex_state = 62}, + [3340] = {.lex_state = 444, .external_lex_state = 62}, + [3341] = {.lex_state = 444, .external_lex_state = 62}, + [3342] = {.lex_state = 262, .external_lex_state = 65}, + [3343] = {.lex_state = 444, .external_lex_state = 62}, + [3344] = {.lex_state = 463, .external_lex_state = 47}, + [3345] = {.lex_state = 444, .external_lex_state = 62}, + [3346] = {.lex_state = 444, .external_lex_state = 62}, + [3347] = {.lex_state = 444, .external_lex_state = 62}, + [3348] = {.lex_state = 444, .external_lex_state = 62}, + [3349] = {.lex_state = 444, .external_lex_state = 62}, + [3350] = {.lex_state = 444, .external_lex_state = 62}, + [3351] = {.lex_state = 437, .external_lex_state = 70}, + [3352] = {.lex_state = 463, .external_lex_state = 47}, + [3353] = {.lex_state = 262, .external_lex_state = 65}, + [3354] = {.lex_state = 437, .external_lex_state = 70}, + [3355] = {.lex_state = 437, .external_lex_state = 70}, + [3356] = {.lex_state = 444, .external_lex_state = 62}, + [3357] = {.lex_state = 463, .external_lex_state = 47}, + [3358] = {.lex_state = 438, .external_lex_state = 62}, + [3359] = {.lex_state = 437, .external_lex_state = 70}, + [3360] = {.lex_state = 463, .external_lex_state = 47}, + [3361] = {.lex_state = 437, .external_lex_state = 70}, + [3362] = {.lex_state = 437, .external_lex_state = 62}, + [3363] = {.lex_state = 259, .external_lex_state = 65}, + [3364] = {.lex_state = 438, .external_lex_state = 62}, + [3365] = {.lex_state = 437, .external_lex_state = 70}, + [3366] = {.lex_state = 438, .external_lex_state = 62}, + [3367] = {.lex_state = 444, .external_lex_state = 62}, + [3368] = {.lex_state = 444, .external_lex_state = 62}, + [3369] = {.lex_state = 437, .external_lex_state = 70}, + [3370] = {.lex_state = 438, .external_lex_state = 62}, + [3371] = {.lex_state = 438, .external_lex_state = 62}, + [3372] = {.lex_state = 444, .external_lex_state = 62}, + [3373] = {.lex_state = 437, .external_lex_state = 70}, + [3374] = {.lex_state = 437, .external_lex_state = 62}, + [3375] = {.lex_state = 437, .external_lex_state = 62}, + [3376] = {.lex_state = 437, .external_lex_state = 70}, + [3377] = {.lex_state = 463, .external_lex_state = 47}, + [3378] = {.lex_state = 437, .external_lex_state = 62}, + [3379] = {.lex_state = 437, .external_lex_state = 62}, + [3380] = {.lex_state = 437, .external_lex_state = 70}, + [3381] = {.lex_state = 259, .external_lex_state = 65}, + [3382] = {.lex_state = 437, .external_lex_state = 70}, + [3383] = {.lex_state = 437, .external_lex_state = 62}, + [3384] = {.lex_state = 437, .external_lex_state = 70}, + [3385] = {.lex_state = 437, .external_lex_state = 70}, + [3386] = {.lex_state = 437, .external_lex_state = 62}, + [3387] = {.lex_state = 435, .external_lex_state = 43}, + [3388] = {.lex_state = 435, .external_lex_state = 43}, + [3389] = {.lex_state = 435, .external_lex_state = 43}, + [3390] = {.lex_state = 435, .external_lex_state = 43}, + [3391] = {.lex_state = 435, .external_lex_state = 43}, + [3392] = {.lex_state = 435, .external_lex_state = 43}, + [3393] = {.lex_state = 435, .external_lex_state = 43}, + [3394] = {.lex_state = 435, .external_lex_state = 43}, + [3395] = {.lex_state = 435, .external_lex_state = 43}, + [3396] = {.lex_state = 435, .external_lex_state = 43}, + [3397] = {.lex_state = 435, .external_lex_state = 43}, + [3398] = {.lex_state = 435, .external_lex_state = 43}, + [3399] = {.lex_state = 435, .external_lex_state = 43}, + [3400] = {.lex_state = 435, .external_lex_state = 43}, + [3401] = {.lex_state = 435, .external_lex_state = 43}, + [3402] = {.lex_state = 463, .external_lex_state = 47}, + [3403] = {.lex_state = 463, .external_lex_state = 47}, + [3404] = {.lex_state = 437, .external_lex_state = 70}, + [3405] = {.lex_state = 437, .external_lex_state = 70}, + [3406] = {.lex_state = 437, .external_lex_state = 70}, + [3407] = {.lex_state = 437, .external_lex_state = 62}, + [3408] = {.lex_state = 437, .external_lex_state = 70}, + [3409] = {.lex_state = 437, .external_lex_state = 62}, + [3410] = {.lex_state = 437, .external_lex_state = 62}, + [3411] = {.lex_state = 438, .external_lex_state = 62}, + [3412] = {.lex_state = 437, .external_lex_state = 62}, + [3413] = {.lex_state = 437, .external_lex_state = 70}, + [3414] = {.lex_state = 438, .external_lex_state = 62}, + [3415] = {.lex_state = 437, .external_lex_state = 70}, + [3416] = {.lex_state = 438, .external_lex_state = 62}, + [3417] = {.lex_state = 299, .external_lex_state = 68}, + [3418] = {.lex_state = 437, .external_lex_state = 70}, + [3419] = {.lex_state = 437, .external_lex_state = 70}, + [3420] = {.lex_state = 437, .external_lex_state = 70}, + [3421] = {.lex_state = 444, .external_lex_state = 62}, + [3422] = {.lex_state = 299, .external_lex_state = 68}, + [3423] = {.lex_state = 299, .external_lex_state = 68}, + [3424] = {.lex_state = 437, .external_lex_state = 70}, + [3425] = {.lex_state = 437, .external_lex_state = 70}, + [3426] = {.lex_state = 435, .external_lex_state = 43}, + [3427] = {.lex_state = 469, .external_lex_state = 35}, + [3428] = {.lex_state = 437, .external_lex_state = 70}, + [3429] = {.lex_state = 437, .external_lex_state = 70}, + [3430] = {.lex_state = 299, .external_lex_state = 68}, + [3431] = {.lex_state = 299, .external_lex_state = 68}, + [3432] = {.lex_state = 437, .external_lex_state = 70}, + [3433] = {.lex_state = 437, .external_lex_state = 70}, + [3434] = {.lex_state = 437, .external_lex_state = 70}, + [3435] = {.lex_state = 438, .external_lex_state = 62}, + [3436] = {.lex_state = 437, .external_lex_state = 70}, + [3437] = {.lex_state = 435, .external_lex_state = 62}, + [3438] = {.lex_state = 437, .external_lex_state = 70}, + [3439] = {.lex_state = 437, .external_lex_state = 70}, + [3440] = {.lex_state = 463, .external_lex_state = 47}, + [3441] = {.lex_state = 463, .external_lex_state = 47}, + [3442] = {.lex_state = 299, .external_lex_state = 68}, + [3443] = {.lex_state = 463, .external_lex_state = 47}, + [3444] = {.lex_state = 437, .external_lex_state = 70}, + [3445] = {.lex_state = 438, .external_lex_state = 62}, + [3446] = {.lex_state = 463, .external_lex_state = 47}, + [3447] = {.lex_state = 437, .external_lex_state = 70}, + [3448] = {.lex_state = 435, .external_lex_state = 43}, + [3449] = {.lex_state = 435, .external_lex_state = 43}, + [3450] = {.lex_state = 435, .external_lex_state = 43}, + [3451] = {.lex_state = 463, .external_lex_state = 47}, + [3452] = {.lex_state = 463, .external_lex_state = 47}, + [3453] = {.lex_state = 438, .external_lex_state = 62}, + [3454] = {.lex_state = 438, .external_lex_state = 62}, + [3455] = {.lex_state = 463, .external_lex_state = 47}, + [3456] = {.lex_state = 300, .external_lex_state = 71}, + [3457] = {.lex_state = 273, .external_lex_state = 26}, + [3458] = {.lex_state = 291, .external_lex_state = 72}, + [3459] = {.lex_state = 462, .external_lex_state = 73}, + [3460] = {.lex_state = 273, .external_lex_state = 26}, + [3461] = {.lex_state = 462, .external_lex_state = 73}, + [3462] = {.lex_state = 462, .external_lex_state = 73}, + [3463] = {.lex_state = 476, .external_lex_state = 74}, + [3464] = {.lex_state = 462, .external_lex_state = 73}, + [3465] = {.lex_state = 462, .external_lex_state = 73}, + [3466] = {.lex_state = 462, .external_lex_state = 73}, + [3467] = {.lex_state = 462, .external_lex_state = 73}, + [3468] = {.lex_state = 463, .external_lex_state = 47}, + [3469] = {.lex_state = 476, .external_lex_state = 74}, + [3470] = {.lex_state = 462, .external_lex_state = 73}, + [3471] = {.lex_state = 462, .external_lex_state = 73}, + [3472] = {.lex_state = 462, .external_lex_state = 73}, + [3473] = {.lex_state = 462, .external_lex_state = 73}, + [3474] = {.lex_state = 476, .external_lex_state = 74}, + [3475] = {.lex_state = 462, .external_lex_state = 73}, + [3476] = {.lex_state = 462, .external_lex_state = 73}, + [3477] = {.lex_state = 462, .external_lex_state = 73}, + [3478] = {.lex_state = 535, .external_lex_state = 65}, + [3479] = {.lex_state = 300, .external_lex_state = 71}, + [3480] = {.lex_state = 291, .external_lex_state = 72}, + [3481] = {.lex_state = 535, .external_lex_state = 65}, + [3482] = {.lex_state = 535, .external_lex_state = 65}, + [3483] = {.lex_state = 535, .external_lex_state = 65}, + [3484] = {.lex_state = 300, .external_lex_state = 71}, + [3485] = {.lex_state = 300, .external_lex_state = 71}, + [3486] = {.lex_state = 300, .external_lex_state = 71}, + [3487] = {.lex_state = 462, .external_lex_state = 73}, + [3488] = {.lex_state = 462, .external_lex_state = 73}, + [3489] = {.lex_state = 462, .external_lex_state = 73}, + [3490] = {.lex_state = 481, .external_lex_state = 75}, + [3491] = {.lex_state = 462, .external_lex_state = 73}, + [3492] = {.lex_state = 481, .external_lex_state = 75}, + [3493] = {.lex_state = 481, .external_lex_state = 75}, + [3494] = {.lex_state = 481, .external_lex_state = 75}, + [3495] = {.lex_state = 462, .external_lex_state = 73}, + [3496] = {.lex_state = 462, .external_lex_state = 73}, + [3497] = {.lex_state = 273, .external_lex_state = 26}, + [3498] = {.lex_state = 462, .external_lex_state = 73}, + [3499] = {.lex_state = 481, .external_lex_state = 75}, + [3500] = {.lex_state = 481, .external_lex_state = 75}, + [3501] = {.lex_state = 481, .external_lex_state = 75}, + [3502] = {.lex_state = 481, .external_lex_state = 75}, + [3503] = {.lex_state = 481, .external_lex_state = 75}, + [3504] = {.lex_state = 462, .external_lex_state = 73}, + [3505] = {.lex_state = 462, .external_lex_state = 73}, + [3506] = {.lex_state = 481, .external_lex_state = 75}, + [3507] = {.lex_state = 462, .external_lex_state = 73}, + [3508] = {.lex_state = 462, .external_lex_state = 73}, + [3509] = {.lex_state = 462, .external_lex_state = 73}, + [3510] = {.lex_state = 481, .external_lex_state = 75}, + [3511] = {.lex_state = 481, .external_lex_state = 75}, + [3512] = {.lex_state = 481, .external_lex_state = 75}, + [3513] = {.lex_state = 462, .external_lex_state = 73}, + [3514] = {.lex_state = 481, .external_lex_state = 75}, + [3515] = {.lex_state = 481, .external_lex_state = 75}, + [3516] = {.lex_state = 481, .external_lex_state = 75}, + [3517] = {.lex_state = 481, .external_lex_state = 75}, + [3518] = {.lex_state = 462, .external_lex_state = 73}, + [3519] = {.lex_state = 481, .external_lex_state = 75}, + [3520] = {.lex_state = 481, .external_lex_state = 75}, + [3521] = {.lex_state = 481, .external_lex_state = 75}, + [3522] = {.lex_state = 481, .external_lex_state = 75}, + [3523] = {.lex_state = 462, .external_lex_state = 73}, + [3524] = {.lex_state = 462, .external_lex_state = 73}, + [3525] = {.lex_state = 481, .external_lex_state = 75}, + [3526] = {.lex_state = 481, .external_lex_state = 75}, + [3527] = {.lex_state = 484, .external_lex_state = 76}, + [3528] = {.lex_state = 462, .external_lex_state = 73}, + [3529] = {.lex_state = 462, .external_lex_state = 73}, + [3530] = {.lex_state = 462, .external_lex_state = 73}, + [3531] = {.lex_state = 461, .external_lex_state = 36}, + [3532] = {.lex_state = 461, .external_lex_state = 36}, + [3533] = {.lex_state = 461, .external_lex_state = 36}, + [3534] = {.lex_state = 461, .external_lex_state = 36}, + [3535] = {.lex_state = 461, .external_lex_state = 36}, + [3536] = {.lex_state = 484, .external_lex_state = 76}, + [3537] = {.lex_state = 447, .external_lex_state = 77}, + [3538] = {.lex_state = 265, .external_lex_state = 65}, + [3539] = {.lex_state = 265, .external_lex_state = 65}, + [3540] = {.lex_state = 461, .external_lex_state = 36}, + [3541] = {.lex_state = 447, .external_lex_state = 77}, + [3542] = {.lex_state = 461, .external_lex_state = 36}, + [3543] = {.lex_state = 484, .external_lex_state = 76}, + [3544] = {.lex_state = 484, .external_lex_state = 76}, + [3545] = {.lex_state = 484, .external_lex_state = 76}, + [3546] = {.lex_state = 461, .external_lex_state = 36}, + [3547] = {.lex_state = 461, .external_lex_state = 36}, + [3548] = {.lex_state = 261, .external_lex_state = 71}, + [3549] = {.lex_state = 463, .external_lex_state = 78}, + [3550] = {.lex_state = 463, .external_lex_state = 78}, + [3551] = {.lex_state = 463, .external_lex_state = 78}, + [3552] = {.lex_state = 461, .external_lex_state = 36}, + [3553] = {.lex_state = 261, .external_lex_state = 71}, + [3554] = {.lex_state = 461, .external_lex_state = 36}, + [3555] = {.lex_state = 261, .external_lex_state = 71}, + [3556] = {.lex_state = 261, .external_lex_state = 71}, + [3557] = {.lex_state = 463, .external_lex_state = 78}, + [3558] = {.lex_state = 418, .external_lex_state = 79}, + [3559] = {.lex_state = 461, .external_lex_state = 36}, + [3560] = {.lex_state = 463, .external_lex_state = 78}, + [3561] = {.lex_state = 463, .external_lex_state = 78}, + [3562] = {.lex_state = 261, .external_lex_state = 71}, + [3563] = {.lex_state = 463, .external_lex_state = 78}, + [3564] = {.lex_state = 261, .external_lex_state = 71}, + [3565] = {.lex_state = 463, .external_lex_state = 78}, + [3566] = {.lex_state = 463, .external_lex_state = 78}, + [3567] = {.lex_state = 463, .external_lex_state = 78}, + [3568] = {.lex_state = 463, .external_lex_state = 78}, + [3569] = {.lex_state = 463, .external_lex_state = 80}, + [3570] = {.lex_state = 418, .external_lex_state = 79}, + [3571] = {.lex_state = 463, .external_lex_state = 78}, + [3572] = {.lex_state = 463, .external_lex_state = 78}, + [3573] = {.lex_state = 463, .external_lex_state = 80}, + [3574] = {.lex_state = 463, .external_lex_state = 78}, + [3575] = {.lex_state = 463, .external_lex_state = 78}, + [3576] = {.lex_state = 449, .external_lex_state = 77}, + [3577] = {.lex_state = 463, .external_lex_state = 78}, + [3578] = {.lex_state = 261, .external_lex_state = 71}, + [3579] = {.lex_state = 461, .external_lex_state = 36}, + [3580] = {.lex_state = 293, .external_lex_state = 72}, + [3581] = {.lex_state = 268, .external_lex_state = 65}, + [3582] = {.lex_state = 463, .external_lex_state = 78}, + [3583] = {.lex_state = 461, .external_lex_state = 36}, + [3584] = {.lex_state = 463, .external_lex_state = 78}, + [3585] = {.lex_state = 463, .external_lex_state = 78}, + [3586] = {.lex_state = 463, .external_lex_state = 78}, + [3587] = {.lex_state = 463, .external_lex_state = 78}, + [3588] = {.lex_state = 448, .external_lex_state = 81}, + [3589] = {.lex_state = 448, .external_lex_state = 81}, + [3590] = {.lex_state = 463, .external_lex_state = 78}, + [3591] = {.lex_state = 461, .external_lex_state = 36}, + [3592] = {.lex_state = 461, .external_lex_state = 36}, + [3593] = {.lex_state = 261, .external_lex_state = 71}, + [3594] = {.lex_state = 463, .external_lex_state = 78}, + [3595] = {.lex_state = 463, .external_lex_state = 78}, + [3596] = {.lex_state = 268, .external_lex_state = 65}, + [3597] = {.lex_state = 463, .external_lex_state = 78}, + [3598] = {.lex_state = 463, .external_lex_state = 78}, + [3599] = {.lex_state = 463, .external_lex_state = 78}, + [3600] = {.lex_state = 293, .external_lex_state = 72}, + [3601] = {.lex_state = 463, .external_lex_state = 80}, + [3602] = {.lex_state = 261, .external_lex_state = 71}, + [3603] = {.lex_state = 463, .external_lex_state = 78}, + [3604] = {.lex_state = 268, .external_lex_state = 65}, + [3605] = {.lex_state = 463, .external_lex_state = 78}, + [3606] = {.lex_state = 463, .external_lex_state = 78}, + [3607] = {.lex_state = 261, .external_lex_state = 71}, + [3608] = {.lex_state = 463, .external_lex_state = 78}, + [3609] = {.lex_state = 463, .external_lex_state = 78}, + [3610] = {.lex_state = 449, .external_lex_state = 77}, + [3611] = {.lex_state = 463, .external_lex_state = 78}, + [3612] = {.lex_state = 268, .external_lex_state = 65}, + [3613] = {.lex_state = 261, .external_lex_state = 71}, + [3614] = {.lex_state = 463, .external_lex_state = 78}, + [3615] = {.lex_state = 463, .external_lex_state = 78}, + [3616] = {.lex_state = 482, .external_lex_state = 82}, + [3617] = {.lex_state = 463, .external_lex_state = 83}, + [3618] = {.lex_state = 463, .external_lex_state = 78}, + [3619] = {.lex_state = 463, .external_lex_state = 78}, + [3620] = {.lex_state = 482, .external_lex_state = 82}, + [3621] = {.lex_state = 463, .external_lex_state = 78}, + [3622] = {.lex_state = 450, .external_lex_state = 81}, + [3623] = {.lex_state = 463, .external_lex_state = 83}, + [3624] = {.lex_state = 463, .external_lex_state = 78}, + [3625] = {.lex_state = 482, .external_lex_state = 82}, + [3626] = {.lex_state = 463, .external_lex_state = 78}, + [3627] = {.lex_state = 463, .external_lex_state = 78}, + [3628] = {.lex_state = 463, .external_lex_state = 78}, + [3629] = {.lex_state = 463, .external_lex_state = 78}, + [3630] = {.lex_state = 463, .external_lex_state = 78}, + [3631] = {.lex_state = 463, .external_lex_state = 78}, + [3632] = {.lex_state = 450, .external_lex_state = 81}, + [3633] = {.lex_state = 482, .external_lex_state = 82}, + [3634] = {.lex_state = 450, .external_lex_state = 81}, + [3635] = {.lex_state = 463, .external_lex_state = 78}, + [3636] = {.lex_state = 463, .external_lex_state = 78}, + [3637] = {.lex_state = 463, .external_lex_state = 78}, + [3638] = {.lex_state = 463, .external_lex_state = 78}, + [3639] = {.lex_state = 463, .external_lex_state = 78}, + [3640] = {.lex_state = 463, .external_lex_state = 78}, + [3641] = {.lex_state = 463, .external_lex_state = 78}, + [3642] = {.lex_state = 484, .external_lex_state = 84}, + [3643] = {.lex_state = 463, .external_lex_state = 78}, + [3644] = {.lex_state = 482, .external_lex_state = 82}, + [3645] = {.lex_state = 463, .external_lex_state = 78}, + [3646] = {.lex_state = 463, .external_lex_state = 83}, + [3647] = {.lex_state = 482, .external_lex_state = 82}, + [3648] = {.lex_state = 463, .external_lex_state = 78}, + [3649] = {.lex_state = 463, .external_lex_state = 78}, + [3650] = {.lex_state = 482, .external_lex_state = 82}, + [3651] = {.lex_state = 463, .external_lex_state = 78}, + [3652] = {.lex_state = 463, .external_lex_state = 78}, + [3653] = {.lex_state = 463, .external_lex_state = 78}, + [3654] = {.lex_state = 463, .external_lex_state = 78}, + [3655] = {.lex_state = 463, .external_lex_state = 78}, + [3656] = {.lex_state = 482, .external_lex_state = 82}, + [3657] = {.lex_state = 463, .external_lex_state = 78}, + [3658] = {.lex_state = 463, .external_lex_state = 78}, + [3659] = {.lex_state = 463, .external_lex_state = 78}, + [3660] = {.lex_state = 463, .external_lex_state = 78}, + [3661] = {.lex_state = 463, .external_lex_state = 78}, + [3662] = {.lex_state = 482, .external_lex_state = 82}, + [3663] = {.lex_state = 463, .external_lex_state = 78}, + [3664] = {.lex_state = 463, .external_lex_state = 78}, + [3665] = {.lex_state = 463, .external_lex_state = 78}, + [3666] = {.lex_state = 463, .external_lex_state = 83}, + [3667] = {.lex_state = 463, .external_lex_state = 78}, + [3668] = {.lex_state = 463, .external_lex_state = 83}, + [3669] = {.lex_state = 463, .external_lex_state = 78}, + [3670] = {.lex_state = 463, .external_lex_state = 78}, + [3671] = {.lex_state = 463, .external_lex_state = 78}, + [3672] = {.lex_state = 463, .external_lex_state = 78}, + [3673] = {.lex_state = 463, .external_lex_state = 78}, + [3674] = {.lex_state = 463, .external_lex_state = 78}, + [3675] = {.lex_state = 450, .external_lex_state = 81}, + [3676] = {.lex_state = 463, .external_lex_state = 78}, + [3677] = {.lex_state = 463, .external_lex_state = 78}, + [3678] = {.lex_state = 482, .external_lex_state = 82}, + [3679] = {.lex_state = 482, .external_lex_state = 82}, + [3680] = {.lex_state = 463, .external_lex_state = 78}, + [3681] = {.lex_state = 463, .external_lex_state = 78}, + [3682] = {.lex_state = 463, .external_lex_state = 78}, + [3683] = {.lex_state = 463, .external_lex_state = 78}, + [3684] = {.lex_state = 463, .external_lex_state = 78}, + [3685] = {.lex_state = 463, .external_lex_state = 78}, + [3686] = {.lex_state = 463, .external_lex_state = 78}, + [3687] = {.lex_state = 482, .external_lex_state = 82}, + [3688] = {.lex_state = 463, .external_lex_state = 83}, + [3689] = {.lex_state = 463, .external_lex_state = 78}, + [3690] = {.lex_state = 463, .external_lex_state = 78}, + [3691] = {.lex_state = 463, .external_lex_state = 78}, + [3692] = {.lex_state = 463, .external_lex_state = 78}, + [3693] = {.lex_state = 463, .external_lex_state = 78}, + [3694] = {.lex_state = 463, .external_lex_state = 78}, + [3695] = {.lex_state = 463, .external_lex_state = 78}, + [3696] = {.lex_state = 463, .external_lex_state = 83}, + [3697] = {.lex_state = 463, .external_lex_state = 78}, + [3698] = {.lex_state = 481, .external_lex_state = 85}, + [3699] = {.lex_state = 481, .external_lex_state = 85}, + [3700] = {.lex_state = 481, .external_lex_state = 85}, + [3701] = {.lex_state = 481, .external_lex_state = 85}, + [3702] = {.lex_state = 481, .external_lex_state = 85}, + [3703] = {.lex_state = 481, .external_lex_state = 85}, + [3704] = {.lex_state = 481, .external_lex_state = 85}, + [3705] = {.lex_state = 463, .external_lex_state = 78}, + [3706] = {.lex_state = 481, .external_lex_state = 85}, + [3707] = {.lex_state = 481, .external_lex_state = 85}, + [3708] = {.lex_state = 454, .external_lex_state = 86}, + [3709] = {.lex_state = 454, .external_lex_state = 86}, + [3710] = {.lex_state = 454, .external_lex_state = 86}, + [3711] = {.lex_state = 454, .external_lex_state = 86}, + [3712] = {.lex_state = 454, .external_lex_state = 86}, + [3713] = {.lex_state = 454, .external_lex_state = 86}, + [3714] = {.lex_state = 454, .external_lex_state = 86}, + [3715] = {.lex_state = 481, .external_lex_state = 85}, + [3716] = {.lex_state = 454, .external_lex_state = 86}, + [3717] = {.lex_state = 454, .external_lex_state = 86}, + [3718] = {.lex_state = 454, .external_lex_state = 86}, + [3719] = {.lex_state = 481, .external_lex_state = 85}, + [3720] = {.lex_state = 481, .external_lex_state = 85}, + [3721] = {.lex_state = 454, .external_lex_state = 86}, + [3722] = {.lex_state = 454, .external_lex_state = 86}, + [3723] = {.lex_state = 454, .external_lex_state = 86}, + [3724] = {.lex_state = 481, .external_lex_state = 85}, + [3725] = {.lex_state = 481, .external_lex_state = 85}, + [3726] = {.lex_state = 454, .external_lex_state = 86}, + [3727] = {.lex_state = 481, .external_lex_state = 85}, + [3728] = {.lex_state = 454, .external_lex_state = 86}, + [3729] = {.lex_state = 481, .external_lex_state = 85}, + [3730] = {.lex_state = 481, .external_lex_state = 85}, + [3731] = {.lex_state = 481, .external_lex_state = 85}, + [3732] = {.lex_state = 481, .external_lex_state = 85}, + [3733] = {.lex_state = 481, .external_lex_state = 85}, + [3734] = {.lex_state = 481, .external_lex_state = 85}, + [3735] = {.lex_state = 481, .external_lex_state = 85}, + [3736] = {.lex_state = 481, .external_lex_state = 85}, + [3737] = {.lex_state = 481, .external_lex_state = 85}, + [3738] = {.lex_state = 481, .external_lex_state = 85}, + [3739] = {.lex_state = 481, .external_lex_state = 85}, + [3740] = {.lex_state = 481, .external_lex_state = 85}, + [3741] = {.lex_state = 481, .external_lex_state = 85}, + [3742] = {.lex_state = 481, .external_lex_state = 85}, + [3743] = {.lex_state = 454, .external_lex_state = 86}, + [3744] = {.lex_state = 481, .external_lex_state = 85}, + [3745] = {.lex_state = 481, .external_lex_state = 85}, + [3746] = {.lex_state = 454, .external_lex_state = 86}, + [3747] = {.lex_state = 481, .external_lex_state = 85}, + [3748] = {.lex_state = 454, .external_lex_state = 86}, + [3749] = {.lex_state = 481, .external_lex_state = 85}, + [3750] = {.lex_state = 481, .external_lex_state = 85}, + [3751] = {.lex_state = 454, .external_lex_state = 86}, + [3752] = {.lex_state = 481, .external_lex_state = 85}, + [3753] = {.lex_state = 454, .external_lex_state = 86}, + [3754] = {.lex_state = 454, .external_lex_state = 86}, + [3755] = {.lex_state = 454, .external_lex_state = 86}, + [3756] = {.lex_state = 454, .external_lex_state = 86}, + [3757] = {.lex_state = 481, .external_lex_state = 85}, + [3758] = {.lex_state = 481, .external_lex_state = 85}, + [3759] = {.lex_state = 454, .external_lex_state = 86}, + [3760] = {.lex_state = 481, .external_lex_state = 85}, + [3761] = {.lex_state = 481, .external_lex_state = 85}, + [3762] = {.lex_state = 481, .external_lex_state = 85}, + [3763] = {.lex_state = 481, .external_lex_state = 85}, + [3764] = {.lex_state = 454, .external_lex_state = 86}, + [3765] = {.lex_state = 481, .external_lex_state = 85}, + [3766] = {.lex_state = 481, .external_lex_state = 85}, + [3767] = {.lex_state = 481, .external_lex_state = 85}, + [3768] = {.lex_state = 481, .external_lex_state = 85}, + [3769] = {.lex_state = 481, .external_lex_state = 85}, + [3770] = {.lex_state = 481, .external_lex_state = 85}, + [3771] = {.lex_state = 454, .external_lex_state = 86}, + [3772] = {.lex_state = 454, .external_lex_state = 86}, + [3773] = {.lex_state = 454, .external_lex_state = 86}, + [3774] = {.lex_state = 481, .external_lex_state = 85}, + [3775] = {.lex_state = 454, .external_lex_state = 86}, + [3776] = {.lex_state = 481, .external_lex_state = 85}, + [3777] = {.lex_state = 481, .external_lex_state = 85}, + [3778] = {.lex_state = 481, .external_lex_state = 85}, + [3779] = {.lex_state = 481, .external_lex_state = 85}, + [3780] = {.lex_state = 481, .external_lex_state = 85}, + [3781] = {.lex_state = 454, .external_lex_state = 86}, + [3782] = {.lex_state = 481, .external_lex_state = 85}, + [3783] = {.lex_state = 481, .external_lex_state = 85}, + [3784] = {.lex_state = 481, .external_lex_state = 85}, + [3785] = {.lex_state = 481, .external_lex_state = 85}, + [3786] = {.lex_state = 481, .external_lex_state = 85}, + [3787] = {.lex_state = 454, .external_lex_state = 86}, + [3788] = {.lex_state = 454, .external_lex_state = 86}, + [3789] = {.lex_state = 454, .external_lex_state = 86}, + [3790] = {.lex_state = 481, .external_lex_state = 85}, + [3791] = {.lex_state = 481, .external_lex_state = 85}, + [3792] = {.lex_state = 481, .external_lex_state = 85}, + [3793] = {.lex_state = 481, .external_lex_state = 85}, + [3794] = {.lex_state = 463, .external_lex_state = 78}, + [3795] = {.lex_state = 463, .external_lex_state = 78}, + [3796] = {.lex_state = 481, .external_lex_state = 85}, + [3797] = {.lex_state = 481, .external_lex_state = 85}, + [3798] = {.lex_state = 454, .external_lex_state = 86}, + [3799] = {.lex_state = 454, .external_lex_state = 86}, + [3800] = {.lex_state = 454, .external_lex_state = 86}, + [3801] = {.lex_state = 454, .external_lex_state = 86}, + [3802] = {.lex_state = 454, .external_lex_state = 86}, + [3803] = {.lex_state = 454, .external_lex_state = 86}, + [3804] = {.lex_state = 454, .external_lex_state = 86}, + [3805] = {.lex_state = 454, .external_lex_state = 86}, + [3806] = {.lex_state = 454, .external_lex_state = 86}, + [3807] = {.lex_state = 454, .external_lex_state = 86}, + [3808] = {.lex_state = 454, .external_lex_state = 86}, + [3809] = {.lex_state = 454, .external_lex_state = 86}, + [3810] = {.lex_state = 454, .external_lex_state = 86}, + [3811] = {.lex_state = 481, .external_lex_state = 85}, + [3812] = {.lex_state = 481, .external_lex_state = 85}, + [3813] = {.lex_state = 481, .external_lex_state = 85}, + [3814] = {.lex_state = 481, .external_lex_state = 85}, + [3815] = {.lex_state = 481, .external_lex_state = 85}, + [3816] = {.lex_state = 481, .external_lex_state = 85}, + [3817] = {.lex_state = 481, .external_lex_state = 85}, + [3818] = {.lex_state = 481, .external_lex_state = 85}, + [3819] = {.lex_state = 481, .external_lex_state = 85}, + [3820] = {.lex_state = 481, .external_lex_state = 85}, + [3821] = {.lex_state = 481, .external_lex_state = 85}, + [3822] = {.lex_state = 481, .external_lex_state = 85}, + [3823] = {.lex_state = 481, .external_lex_state = 85}, + [3824] = {.lex_state = 481, .external_lex_state = 85}, + [3825] = {.lex_state = 481, .external_lex_state = 85}, + [3826] = {.lex_state = 481, .external_lex_state = 85}, + [3827] = {.lex_state = 481, .external_lex_state = 85}, + [3828] = {.lex_state = 481, .external_lex_state = 85}, + [3829] = {.lex_state = 481, .external_lex_state = 85}, + [3830] = {.lex_state = 481, .external_lex_state = 85}, + [3831] = {.lex_state = 481, .external_lex_state = 85}, + [3832] = {.lex_state = 481, .external_lex_state = 85}, + [3833] = {.lex_state = 481, .external_lex_state = 85}, + [3834] = {.lex_state = 481, .external_lex_state = 85}, + [3835] = {.lex_state = 481, .external_lex_state = 85}, + [3836] = {.lex_state = 481, .external_lex_state = 85}, + [3837] = {.lex_state = 481, .external_lex_state = 85}, + [3838] = {.lex_state = 481, .external_lex_state = 85}, + [3839] = {.lex_state = 481, .external_lex_state = 85}, + [3840] = {.lex_state = 481, .external_lex_state = 85}, + [3841] = {.lex_state = 463, .external_lex_state = 78}, + [3842] = {.lex_state = 463, .external_lex_state = 78}, + [3843] = {.lex_state = 481, .external_lex_state = 85}, + [3844] = {.lex_state = 481, .external_lex_state = 85}, + [3845] = {.lex_state = 481, .external_lex_state = 85}, + [3846] = {.lex_state = 481, .external_lex_state = 85}, + [3847] = {.lex_state = 481, .external_lex_state = 85}, + [3848] = {.lex_state = 481, .external_lex_state = 85}, + [3849] = {.lex_state = 481, .external_lex_state = 85}, + [3850] = {.lex_state = 481, .external_lex_state = 85}, + [3851] = {.lex_state = 481, .external_lex_state = 85}, + [3852] = {.lex_state = 481, .external_lex_state = 85}, + [3853] = {.lex_state = 481, .external_lex_state = 85}, + [3854] = {.lex_state = 481, .external_lex_state = 85}, + [3855] = {.lex_state = 481, .external_lex_state = 85}, + [3856] = {.lex_state = 481, .external_lex_state = 85}, + [3857] = {.lex_state = 481, .external_lex_state = 85}, + [3858] = {.lex_state = 481, .external_lex_state = 85}, + [3859] = {.lex_state = 481, .external_lex_state = 85}, + [3860] = {.lex_state = 481, .external_lex_state = 85}, + [3861] = {.lex_state = 481, .external_lex_state = 85}, + [3862] = {.lex_state = 481, .external_lex_state = 85}, + [3863] = {.lex_state = 481, .external_lex_state = 85}, + [3864] = {.lex_state = 463, .external_lex_state = 78}, + [3865] = {.lex_state = 463, .external_lex_state = 78}, + [3866] = {.lex_state = 481, .external_lex_state = 85}, + [3867] = {.lex_state = 481, .external_lex_state = 85}, + [3868] = {.lex_state = 481, .external_lex_state = 85}, + [3869] = {.lex_state = 481, .external_lex_state = 85}, + [3870] = {.lex_state = 481, .external_lex_state = 85}, + [3871] = {.lex_state = 481, .external_lex_state = 85}, + [3872] = {.lex_state = 481, .external_lex_state = 85}, + [3873] = {.lex_state = 481, .external_lex_state = 85}, + [3874] = {.lex_state = 481, .external_lex_state = 85}, + [3875] = {.lex_state = 481, .external_lex_state = 85}, + [3876] = {.lex_state = 463, .external_lex_state = 78}, + [3877] = {.lex_state = 463, .external_lex_state = 78}, + [3878] = {.lex_state = 481, .external_lex_state = 85}, + [3879] = {.lex_state = 481, .external_lex_state = 85}, + [3880] = {.lex_state = 481, .external_lex_state = 85}, + [3881] = {.lex_state = 481, .external_lex_state = 85}, + [3882] = {.lex_state = 481, .external_lex_state = 85}, + [3883] = {.lex_state = 481, .external_lex_state = 85}, + [3884] = {.lex_state = 481, .external_lex_state = 85}, + [3885] = {.lex_state = 481, .external_lex_state = 85}, + [3886] = {.lex_state = 463, .external_lex_state = 78}, + [3887] = {.lex_state = 463, .external_lex_state = 78}, + [3888] = {.lex_state = 454, .external_lex_state = 86}, + [3889] = {.lex_state = 481, .external_lex_state = 85}, + [3890] = {.lex_state = 463, .external_lex_state = 78}, + [3891] = {.lex_state = 463, .external_lex_state = 78}, + [3892] = {.lex_state = 481, .external_lex_state = 85}, + [3893] = {.lex_state = 481, .external_lex_state = 85}, + [3894] = {.lex_state = 481, .external_lex_state = 85}, + [3895] = {.lex_state = 463, .external_lex_state = 78}, + [3896] = {.lex_state = 463, .external_lex_state = 78}, + [3897] = {.lex_state = 481, .external_lex_state = 85}, + [3898] = {.lex_state = 463, .external_lex_state = 78}, + [3899] = {.lex_state = 463, .external_lex_state = 78}, + [3900] = {.lex_state = 481, .external_lex_state = 85}, + [3901] = {.lex_state = 463, .external_lex_state = 78}, + [3902] = {.lex_state = 463, .external_lex_state = 78}, + [3903] = {.lex_state = 481, .external_lex_state = 85}, + [3904] = {.lex_state = 463, .external_lex_state = 78}, + [3905] = {.lex_state = 463, .external_lex_state = 78}, + [3906] = {.lex_state = 481, .external_lex_state = 85}, + [3907] = {.lex_state = 481, .external_lex_state = 85}, + [3908] = {.lex_state = 481, .external_lex_state = 85}, + [3909] = {.lex_state = 463, .external_lex_state = 78}, + [3910] = {.lex_state = 463, .external_lex_state = 78}, + [3911] = {.lex_state = 481, .external_lex_state = 85}, + [3912] = {.lex_state = 463, .external_lex_state = 78}, + [3913] = {.lex_state = 481, .external_lex_state = 85}, + [3914] = {.lex_state = 463, .external_lex_state = 78}, + [3915] = {.lex_state = 481, .external_lex_state = 85}, + [3916] = {.lex_state = 463, .external_lex_state = 78}, + [3917] = {.lex_state = 463, .external_lex_state = 78}, + [3918] = {.lex_state = 481, .external_lex_state = 85}, + [3919] = {.lex_state = 463, .external_lex_state = 78}, + [3920] = {.lex_state = 463, .external_lex_state = 78}, + [3921] = {.lex_state = 481, .external_lex_state = 85}, + [3922] = {.lex_state = 463, .external_lex_state = 78}, + [3923] = {.lex_state = 463, .external_lex_state = 78}, + [3924] = {.lex_state = 481, .external_lex_state = 85}, + [3925] = {.lex_state = 463, .external_lex_state = 78}, + [3926] = {.lex_state = 481, .external_lex_state = 85}, + [3927] = {.lex_state = 463, .external_lex_state = 78}, + [3928] = {.lex_state = 481, .external_lex_state = 85}, + [3929] = {.lex_state = 463, .external_lex_state = 78}, + [3930] = {.lex_state = 481, .external_lex_state = 85}, + [3931] = {.lex_state = 463, .external_lex_state = 78}, + [3932] = {.lex_state = 481, .external_lex_state = 85}, + [3933] = {.lex_state = 463, .external_lex_state = 78}, + [3934] = {.lex_state = 463, .external_lex_state = 78}, + [3935] = {.lex_state = 481, .external_lex_state = 85}, + [3936] = {.lex_state = 463, .external_lex_state = 78}, + [3937] = {.lex_state = 463, .external_lex_state = 78}, + [3938] = {.lex_state = 481, .external_lex_state = 85}, + [3939] = {.lex_state = 463, .external_lex_state = 78}, + [3940] = {.lex_state = 481, .external_lex_state = 85}, + [3941] = {.lex_state = 463, .external_lex_state = 78}, + [3942] = {.lex_state = 463, .external_lex_state = 78}, + [3943] = {.lex_state = 481, .external_lex_state = 85}, + [3944] = {.lex_state = 463, .external_lex_state = 78}, + [3945] = {.lex_state = 463, .external_lex_state = 78}, + [3946] = {.lex_state = 481, .external_lex_state = 85}, + [3947] = {.lex_state = 481, .external_lex_state = 85}, + [3948] = {.lex_state = 481, .external_lex_state = 85}, + [3949] = {.lex_state = 481, .external_lex_state = 85}, + [3950] = {.lex_state = 481, .external_lex_state = 85}, + [3951] = {.lex_state = 481, .external_lex_state = 85}, + [3952] = {.lex_state = 481, .external_lex_state = 85}, + [3953] = {.lex_state = 481, .external_lex_state = 85}, + [3954] = {.lex_state = 481, .external_lex_state = 85}, + [3955] = {.lex_state = 481, .external_lex_state = 85}, + [3956] = {.lex_state = 481, .external_lex_state = 85}, + [3957] = {.lex_state = 481, .external_lex_state = 85}, + [3958] = {.lex_state = 481, .external_lex_state = 85}, + [3959] = {.lex_state = 481, .external_lex_state = 85}, + [3960] = {.lex_state = 481, .external_lex_state = 85}, + [3961] = {.lex_state = 481, .external_lex_state = 85}, + [3962] = {.lex_state = 481, .external_lex_state = 85}, + [3963] = {.lex_state = 481, .external_lex_state = 85}, + [3964] = {.lex_state = 481, .external_lex_state = 85}, + [3965] = {.lex_state = 481, .external_lex_state = 85}, + [3966] = {.lex_state = 481, .external_lex_state = 85}, + [3967] = {.lex_state = 481, .external_lex_state = 85}, + [3968] = {.lex_state = 481, .external_lex_state = 85}, + [3969] = {.lex_state = 481, .external_lex_state = 85}, + [3970] = {.lex_state = 481, .external_lex_state = 85}, + [3971] = {.lex_state = 481, .external_lex_state = 85}, + [3972] = {.lex_state = 481, .external_lex_state = 85}, + [3973] = {.lex_state = 481, .external_lex_state = 85}, + [3974] = {.lex_state = 481, .external_lex_state = 85}, + [3975] = {.lex_state = 481, .external_lex_state = 85}, + [3976] = {.lex_state = 481, .external_lex_state = 85}, + [3977] = {.lex_state = 481, .external_lex_state = 85}, + [3978] = {.lex_state = 481, .external_lex_state = 85}, + [3979] = {.lex_state = 481, .external_lex_state = 85}, + [3980] = {.lex_state = 481, .external_lex_state = 85}, + [3981] = {.lex_state = 481, .external_lex_state = 85}, + [3982] = {.lex_state = 481, .external_lex_state = 85}, + [3983] = {.lex_state = 481, .external_lex_state = 85}, + [3984] = {.lex_state = 481, .external_lex_state = 85}, + [3985] = {.lex_state = 481, .external_lex_state = 85}, + [3986] = {.lex_state = 481, .external_lex_state = 85}, + [3987] = {.lex_state = 481, .external_lex_state = 85}, + [3988] = {.lex_state = 481, .external_lex_state = 85}, + [3989] = {.lex_state = 481, .external_lex_state = 85}, + [3990] = {.lex_state = 481, .external_lex_state = 85}, + [3991] = {.lex_state = 454, .external_lex_state = 86}, + [3992] = {.lex_state = 454, .external_lex_state = 86}, + [3993] = {.lex_state = 481, .external_lex_state = 85}, + [3994] = {.lex_state = 454, .external_lex_state = 86}, + [3995] = {.lex_state = 454, .external_lex_state = 86}, + [3996] = {.lex_state = 481, .external_lex_state = 85}, + [3997] = {.lex_state = 481, .external_lex_state = 85}, + [3998] = {.lex_state = 463, .external_lex_state = 78}, + [3999] = {.lex_state = 463, .external_lex_state = 78}, + [4000] = {.lex_state = 463, .external_lex_state = 78}, + [4001] = {.lex_state = 463, .external_lex_state = 78}, + [4002] = {.lex_state = 463, .external_lex_state = 78}, + [4003] = {.lex_state = 463, .external_lex_state = 78}, + [4004] = {.lex_state = 481, .external_lex_state = 85}, + [4005] = {.lex_state = 463, .external_lex_state = 78}, + [4006] = {.lex_state = 463, .external_lex_state = 78}, + [4007] = {.lex_state = 481, .external_lex_state = 85}, + [4008] = {.lex_state = 454, .external_lex_state = 86}, + [4009] = {.lex_state = 454, .external_lex_state = 86}, + [4010] = {.lex_state = 454, .external_lex_state = 86}, + [4011] = {.lex_state = 454, .external_lex_state = 86}, + [4012] = {.lex_state = 481, .external_lex_state = 85}, + [4013] = {.lex_state = 481, .external_lex_state = 85}, + [4014] = {.lex_state = 481, .external_lex_state = 85}, + [4015] = {.lex_state = 463, .external_lex_state = 78}, + [4016] = {.lex_state = 463, .external_lex_state = 78}, + [4017] = {.lex_state = 463, .external_lex_state = 78}, + [4018] = {.lex_state = 463, .external_lex_state = 78}, + [4019] = {.lex_state = 463, .external_lex_state = 78}, + [4020] = {.lex_state = 463, .external_lex_state = 78}, + [4021] = {.lex_state = 463, .external_lex_state = 78}, + [4022] = {.lex_state = 463, .external_lex_state = 78}, + [4023] = {.lex_state = 481, .external_lex_state = 85}, + [4024] = {.lex_state = 454, .external_lex_state = 86}, + [4025] = {.lex_state = 454, .external_lex_state = 86}, + [4026] = {.lex_state = 481, .external_lex_state = 85}, + [4027] = {.lex_state = 463, .external_lex_state = 78}, + [4028] = {.lex_state = 463, .external_lex_state = 78}, + [4029] = {.lex_state = 463, .external_lex_state = 78}, + [4030] = {.lex_state = 463, .external_lex_state = 78}, + [4031] = {.lex_state = 454, .external_lex_state = 86}, + [4032] = {.lex_state = 454, .external_lex_state = 86}, + [4033] = {.lex_state = 481, .external_lex_state = 85}, + [4034] = {.lex_state = 481, .external_lex_state = 85}, + [4035] = {.lex_state = 463, .external_lex_state = 78}, + [4036] = {.lex_state = 463, .external_lex_state = 78}, + [4037] = {.lex_state = 463, .external_lex_state = 78}, + [4038] = {.lex_state = 463, .external_lex_state = 78}, + [4039] = {.lex_state = 454, .external_lex_state = 86}, + [4040] = {.lex_state = 454, .external_lex_state = 86}, + [4041] = {.lex_state = 454, .external_lex_state = 86}, + [4042] = {.lex_state = 454, .external_lex_state = 86}, + [4043] = {.lex_state = 454, .external_lex_state = 86}, + [4044] = {.lex_state = 454, .external_lex_state = 86}, + [4045] = {.lex_state = 481, .external_lex_state = 85}, + [4046] = {.lex_state = 454, .external_lex_state = 86}, + [4047] = {.lex_state = 454, .external_lex_state = 86}, + [4048] = {.lex_state = 481, .external_lex_state = 85}, + [4049] = {.lex_state = 454, .external_lex_state = 86}, + [4050] = {.lex_state = 454, .external_lex_state = 86}, + [4051] = {.lex_state = 454, .external_lex_state = 86}, + [4052] = {.lex_state = 454, .external_lex_state = 86}, + [4053] = {.lex_state = 454, .external_lex_state = 86}, + [4054] = {.lex_state = 454, .external_lex_state = 86}, + [4055] = {.lex_state = 454, .external_lex_state = 86}, + [4056] = {.lex_state = 454, .external_lex_state = 86}, + [4057] = {.lex_state = 454, .external_lex_state = 86}, + [4058] = {.lex_state = 454, .external_lex_state = 86}, + [4059] = {.lex_state = 454, .external_lex_state = 86}, + [4060] = {.lex_state = 454, .external_lex_state = 86}, + [4061] = {.lex_state = 454, .external_lex_state = 86}, + [4062] = {.lex_state = 454, .external_lex_state = 86}, + [4063] = {.lex_state = 454, .external_lex_state = 86}, + [4064] = {.lex_state = 481, .external_lex_state = 85}, + [4065] = {.lex_state = 454, .external_lex_state = 86}, + [4066] = {.lex_state = 454, .external_lex_state = 86}, + [4067] = {.lex_state = 454, .external_lex_state = 86}, + [4068] = {.lex_state = 481, .external_lex_state = 85}, + [4069] = {.lex_state = 454, .external_lex_state = 86}, + [4070] = {.lex_state = 454, .external_lex_state = 86}, + [4071] = {.lex_state = 454, .external_lex_state = 86}, + [4072] = {.lex_state = 454, .external_lex_state = 86}, + [4073] = {.lex_state = 454, .external_lex_state = 86}, + [4074] = {.lex_state = 454, .external_lex_state = 86}, + [4075] = {.lex_state = 454, .external_lex_state = 86}, + [4076] = {.lex_state = 454, .external_lex_state = 86}, + [4077] = {.lex_state = 454, .external_lex_state = 86}, + [4078] = {.lex_state = 454, .external_lex_state = 86}, + [4079] = {.lex_state = 454, .external_lex_state = 86}, + [4080] = {.lex_state = 454, .external_lex_state = 86}, + [4081] = {.lex_state = 481, .external_lex_state = 85}, + [4082] = {.lex_state = 481, .external_lex_state = 85}, + [4083] = {.lex_state = 454, .external_lex_state = 86}, + [4084] = {.lex_state = 454, .external_lex_state = 86}, + [4085] = {.lex_state = 481, .external_lex_state = 85}, + [4086] = {.lex_state = 454, .external_lex_state = 86}, + [4087] = {.lex_state = 454, .external_lex_state = 86}, + [4088] = {.lex_state = 454, .external_lex_state = 86}, + [4089] = {.lex_state = 454, .external_lex_state = 86}, + [4090] = {.lex_state = 454, .external_lex_state = 86}, + [4091] = {.lex_state = 454, .external_lex_state = 86}, + [4092] = {.lex_state = 454, .external_lex_state = 86}, + [4093] = {.lex_state = 454, .external_lex_state = 86}, + [4094] = {.lex_state = 454, .external_lex_state = 86}, + [4095] = {.lex_state = 454, .external_lex_state = 86}, + [4096] = {.lex_state = 454, .external_lex_state = 86}, + [4097] = {.lex_state = 454, .external_lex_state = 86}, + [4098] = {.lex_state = 481, .external_lex_state = 85}, + [4099] = {.lex_state = 454, .external_lex_state = 86}, + [4100] = {.lex_state = 454, .external_lex_state = 86}, + [4101] = {.lex_state = 481, .external_lex_state = 85}, + [4102] = {.lex_state = 454, .external_lex_state = 86}, + [4103] = {.lex_state = 454, .external_lex_state = 86}, + [4104] = {.lex_state = 481, .external_lex_state = 85}, + [4105] = {.lex_state = 454, .external_lex_state = 86}, + [4106] = {.lex_state = 454, .external_lex_state = 86}, + [4107] = {.lex_state = 454, .external_lex_state = 86}, + [4108] = {.lex_state = 454, .external_lex_state = 86}, + [4109] = {.lex_state = 454, .external_lex_state = 86}, + [4110] = {.lex_state = 454, .external_lex_state = 86}, + [4111] = {.lex_state = 481, .external_lex_state = 85}, + [4112] = {.lex_state = 454, .external_lex_state = 86}, + [4113] = {.lex_state = 454, .external_lex_state = 86}, + [4114] = {.lex_state = 454, .external_lex_state = 86}, + [4115] = {.lex_state = 454, .external_lex_state = 86}, + [4116] = {.lex_state = 481, .external_lex_state = 85}, + [4117] = {.lex_state = 454, .external_lex_state = 86}, + [4118] = {.lex_state = 454, .external_lex_state = 86}, + [4119] = {.lex_state = 481, .external_lex_state = 85}, + [4120] = {.lex_state = 454, .external_lex_state = 86}, + [4121] = {.lex_state = 454, .external_lex_state = 86}, + [4122] = {.lex_state = 454, .external_lex_state = 86}, + [4123] = {.lex_state = 454, .external_lex_state = 86}, + [4124] = {.lex_state = 454, .external_lex_state = 86}, + [4125] = {.lex_state = 454, .external_lex_state = 86}, + [4126] = {.lex_state = 454, .external_lex_state = 86}, + [4127] = {.lex_state = 454, .external_lex_state = 86}, + [4128] = {.lex_state = 454, .external_lex_state = 86}, + [4129] = {.lex_state = 454, .external_lex_state = 86}, + [4130] = {.lex_state = 454, .external_lex_state = 86}, + [4131] = {.lex_state = 454, .external_lex_state = 86}, + [4132] = {.lex_state = 454, .external_lex_state = 86}, + [4133] = {.lex_state = 454, .external_lex_state = 86}, + [4134] = {.lex_state = 481, .external_lex_state = 85}, + [4135] = {.lex_state = 463, .external_lex_state = 78}, + [4136] = {.lex_state = 454, .external_lex_state = 86}, + [4137] = {.lex_state = 454, .external_lex_state = 86}, + [4138] = {.lex_state = 481, .external_lex_state = 85}, + [4139] = {.lex_state = 454, .external_lex_state = 86}, + [4140] = {.lex_state = 454, .external_lex_state = 86}, + [4141] = {.lex_state = 454, .external_lex_state = 86}, + [4142] = {.lex_state = 454, .external_lex_state = 86}, + [4143] = {.lex_state = 463, .external_lex_state = 78}, + [4144] = {.lex_state = 454, .external_lex_state = 86}, + [4145] = {.lex_state = 454, .external_lex_state = 86}, + [4146] = {.lex_state = 454, .external_lex_state = 86}, + [4147] = {.lex_state = 454, .external_lex_state = 86}, + [4148] = {.lex_state = 454, .external_lex_state = 86}, + [4149] = {.lex_state = 454, .external_lex_state = 86}, + [4150] = {.lex_state = 454, .external_lex_state = 86}, + [4151] = {.lex_state = 454, .external_lex_state = 86}, + [4152] = {.lex_state = 481, .external_lex_state = 85}, + [4153] = {.lex_state = 454, .external_lex_state = 86}, + [4154] = {.lex_state = 454, .external_lex_state = 86}, + [4155] = {.lex_state = 481, .external_lex_state = 85}, + [4156] = {.lex_state = 454, .external_lex_state = 86}, + [4157] = {.lex_state = 454, .external_lex_state = 86}, + [4158] = {.lex_state = 454, .external_lex_state = 86}, + [4159] = {.lex_state = 454, .external_lex_state = 86}, + [4160] = {.lex_state = 454, .external_lex_state = 86}, + [4161] = {.lex_state = 454, .external_lex_state = 86}, + [4162] = {.lex_state = 454, .external_lex_state = 86}, + [4163] = {.lex_state = 454, .external_lex_state = 86}, + [4164] = {.lex_state = 454, .external_lex_state = 86}, + [4165] = {.lex_state = 454, .external_lex_state = 86}, + [4166] = {.lex_state = 454, .external_lex_state = 86}, + [4167] = {.lex_state = 454, .external_lex_state = 86}, + [4168] = {.lex_state = 481, .external_lex_state = 85}, + [4169] = {.lex_state = 454, .external_lex_state = 86}, + [4170] = {.lex_state = 454, .external_lex_state = 86}, + [4171] = {.lex_state = 481, .external_lex_state = 85}, + [4172] = {.lex_state = 454, .external_lex_state = 86}, + [4173] = {.lex_state = 454, .external_lex_state = 86}, + [4174] = {.lex_state = 454, .external_lex_state = 86}, + [4175] = {.lex_state = 454, .external_lex_state = 86}, + [4176] = {.lex_state = 454, .external_lex_state = 86}, + [4177] = {.lex_state = 454, .external_lex_state = 86}, + [4178] = {.lex_state = 454, .external_lex_state = 86}, + [4179] = {.lex_state = 454, .external_lex_state = 86}, + [4180] = {.lex_state = 454, .external_lex_state = 86}, + [4181] = {.lex_state = 454, .external_lex_state = 86}, + [4182] = {.lex_state = 454, .external_lex_state = 86}, + [4183] = {.lex_state = 454, .external_lex_state = 86}, + [4184] = {.lex_state = 481, .external_lex_state = 85}, + [4185] = {.lex_state = 481, .external_lex_state = 85}, + [4186] = {.lex_state = 481, .external_lex_state = 85}, + [4187] = {.lex_state = 481, .external_lex_state = 85}, + [4188] = {.lex_state = 481, .external_lex_state = 85}, + [4189] = {.lex_state = 463, .external_lex_state = 78}, + [4190] = {.lex_state = 454, .external_lex_state = 86}, + [4191] = {.lex_state = 454, .external_lex_state = 86}, + [4192] = {.lex_state = 454, .external_lex_state = 86}, + [4193] = {.lex_state = 481, .external_lex_state = 85}, + [4194] = {.lex_state = 481, .external_lex_state = 85}, + [4195] = {.lex_state = 481, .external_lex_state = 85}, + [4196] = {.lex_state = 454, .external_lex_state = 86}, + [4197] = {.lex_state = 454, .external_lex_state = 86}, + [4198] = {.lex_state = 481, .external_lex_state = 85}, + [4199] = {.lex_state = 454, .external_lex_state = 86}, + [4200] = {.lex_state = 481, .external_lex_state = 85}, + [4201] = {.lex_state = 481, .external_lex_state = 85}, + [4202] = {.lex_state = 454, .external_lex_state = 86}, + [4203] = {.lex_state = 481, .external_lex_state = 85}, + [4204] = {.lex_state = 481, .external_lex_state = 85}, + [4205] = {.lex_state = 463, .external_lex_state = 78}, + [4206] = {.lex_state = 481, .external_lex_state = 85}, + [4207] = {.lex_state = 481, .external_lex_state = 85}, + [4208] = {.lex_state = 481, .external_lex_state = 85}, + [4209] = {.lex_state = 481, .external_lex_state = 85}, + [4210] = {.lex_state = 481, .external_lex_state = 85}, + [4211] = {.lex_state = 481, .external_lex_state = 85}, + [4212] = {.lex_state = 463, .external_lex_state = 78}, + [4213] = {.lex_state = 481, .external_lex_state = 85}, + [4214] = {.lex_state = 481, .external_lex_state = 85}, + [4215] = {.lex_state = 463, .external_lex_state = 78}, + [4216] = {.lex_state = 271, .external_lex_state = 87}, + [4217] = {.lex_state = 88, .external_lex_state = 88}, + [4218] = {.lex_state = 86, .external_lex_state = 89}, + [4219] = {.lex_state = 88, .external_lex_state = 88}, + [4220] = {.lex_state = 89, .external_lex_state = 90}, + [4221] = {.lex_state = 88, .external_lex_state = 88}, + [4222] = {.lex_state = 88, .external_lex_state = 91}, + [4223] = {.lex_state = 86, .external_lex_state = 89}, + [4224] = {.lex_state = 88, .external_lex_state = 88}, + [4225] = {.lex_state = 271, .external_lex_state = 87}, + [4226] = {.lex_state = 86, .external_lex_state = 89}, + [4227] = {.lex_state = 86, .external_lex_state = 89}, + [4228] = {.lex_state = 484, .external_lex_state = 92}, + [4229] = {.lex_state = 89, .external_lex_state = 91}, + [4230] = {.lex_state = 89, .external_lex_state = 61}, + [4231] = {.lex_state = 88, .external_lex_state = 93}, + [4232] = {.lex_state = 89, .external_lex_state = 61}, + [4233] = {.lex_state = 89, .external_lex_state = 90}, + [4234] = {.lex_state = 88, .external_lex_state = 91}, + [4235] = {.lex_state = 88, .external_lex_state = 93}, + [4236] = {.lex_state = 86, .external_lex_state = 89}, + [4237] = {.lex_state = 88, .external_lex_state = 91}, + [4238] = {.lex_state = 88, .external_lex_state = 91}, + [4239] = {.lex_state = 88, .external_lex_state = 91}, + [4240] = {.lex_state = 522, .external_lex_state = 94}, + [4241] = {.lex_state = 88, .external_lex_state = 91}, + [4242] = {.lex_state = 88, .external_lex_state = 91}, + [4243] = {.lex_state = 88, .external_lex_state = 91}, + [4244] = {.lex_state = 88, .external_lex_state = 91}, + [4245] = {.lex_state = 524, .external_lex_state = 95}, + [4246] = {.lex_state = 88, .external_lex_state = 91}, + [4247] = {.lex_state = 88, .external_lex_state = 91}, + [4248] = {.lex_state = 88, .external_lex_state = 91}, + [4249] = {.lex_state = 86, .external_lex_state = 89}, + [4250] = {.lex_state = 88, .external_lex_state = 88}, + [4251] = {.lex_state = 88, .external_lex_state = 93}, + [4252] = {.lex_state = 88, .external_lex_state = 93}, + [4253] = {.lex_state = 88, .external_lex_state = 94}, + [4254] = {.lex_state = 88, .external_lex_state = 88}, + [4255] = {.lex_state = 89, .external_lex_state = 95}, + [4256] = {.lex_state = 89, .external_lex_state = 90}, + [4257] = {.lex_state = 89, .external_lex_state = 90}, + [4258] = {.lex_state = 89, .external_lex_state = 90}, + [4259] = {.lex_state = 89, .external_lex_state = 90}, + [4260] = {.lex_state = 86, .external_lex_state = 89}, + [4261] = {.lex_state = 523, .external_lex_state = 93}, + [4262] = {.lex_state = 89, .external_lex_state = 90}, + [4263] = {.lex_state = 522, .external_lex_state = 93}, + [4264] = {.lex_state = 522, .external_lex_state = 94}, + [4265] = {.lex_state = 89, .external_lex_state = 88}, + [4266] = {.lex_state = 88, .external_lex_state = 88}, + [4267] = {.lex_state = 88, .external_lex_state = 94}, + [4268] = {.lex_state = 88, .external_lex_state = 94}, + [4269] = {.lex_state = 89, .external_lex_state = 90}, + [4270] = {.lex_state = 89, .external_lex_state = 90}, + [4271] = {.lex_state = 89, .external_lex_state = 65}, + [4272] = {.lex_state = 88, .external_lex_state = 88}, + [4273] = {.lex_state = 88, .external_lex_state = 91}, + [4274] = {.lex_state = 484, .external_lex_state = 96}, + [4275] = {.lex_state = 88, .external_lex_state = 94}, + [4276] = {.lex_state = 88, .external_lex_state = 94}, + [4277] = {.lex_state = 88, .external_lex_state = 91}, + [4278] = {.lex_state = 484, .external_lex_state = 96}, + [4279] = {.lex_state = 89, .external_lex_state = 90}, + [4280] = {.lex_state = 89, .external_lex_state = 90}, + [4281] = {.lex_state = 89, .external_lex_state = 90}, + [4282] = {.lex_state = 89, .external_lex_state = 90}, + [4283] = {.lex_state = 89, .external_lex_state = 94}, + [4284] = {.lex_state = 88, .external_lex_state = 94}, + [4285] = {.lex_state = 88, .external_lex_state = 94}, + [4286] = {.lex_state = 88, .external_lex_state = 94}, + [4287] = {.lex_state = 524, .external_lex_state = 94}, + [4288] = {.lex_state = 524, .external_lex_state = 95}, + [4289] = {.lex_state = 484, .external_lex_state = 96}, + [4290] = {.lex_state = 484, .external_lex_state = 96}, + [4291] = {.lex_state = 89, .external_lex_state = 90}, + [4292] = {.lex_state = 88, .external_lex_state = 88}, + [4293] = {.lex_state = 88, .external_lex_state = 88}, + [4294] = {.lex_state = 88, .external_lex_state = 94}, + [4295] = {.lex_state = 88, .external_lex_state = 94}, + [4296] = {.lex_state = 522, .external_lex_state = 93}, + [4297] = {.lex_state = 522, .external_lex_state = 94}, + [4298] = {.lex_state = 524, .external_lex_state = 95}, + [4299] = {.lex_state = 522, .external_lex_state = 94}, + [4300] = {.lex_state = 522, .external_lex_state = 94}, + [4301] = {.lex_state = 88, .external_lex_state = 91}, + [4302] = {.lex_state = 89, .external_lex_state = 90}, + [4303] = {.lex_state = 88, .external_lex_state = 91}, + [4304] = {.lex_state = 522, .external_lex_state = 94}, + [4305] = {.lex_state = 522, .external_lex_state = 94}, + [4306] = {.lex_state = 522, .external_lex_state = 94}, + [4307] = {.lex_state = 524, .external_lex_state = 95}, + [4308] = {.lex_state = 88, .external_lex_state = 94}, + [4309] = {.lex_state = 88, .external_lex_state = 88}, + [4310] = {.lex_state = 89, .external_lex_state = 90}, + [4311] = {.lex_state = 523, .external_lex_state = 93}, + [4312] = {.lex_state = 522, .external_lex_state = 93}, + [4313] = {.lex_state = 525, .external_lex_state = 65}, + [4314] = {.lex_state = 89, .external_lex_state = 90}, + [4315] = {.lex_state = 89, .external_lex_state = 90}, + [4316] = {.lex_state = 524, .external_lex_state = 95}, + [4317] = {.lex_state = 88, .external_lex_state = 88}, + [4318] = {.lex_state = 522, .external_lex_state = 94}, + [4319] = {.lex_state = 524, .external_lex_state = 95}, + [4320] = {.lex_state = 89, .external_lex_state = 95}, + [4321] = {.lex_state = 88, .external_lex_state = 88}, + [4322] = {.lex_state = 524, .external_lex_state = 95}, + [4323] = {.lex_state = 89, .external_lex_state = 95}, + [4324] = {.lex_state = 88, .external_lex_state = 91}, + [4325] = {.lex_state = 522, .external_lex_state = 94}, + [4326] = {.lex_state = 88, .external_lex_state = 94}, + [4327] = {.lex_state = 89, .external_lex_state = 91}, + [4328] = {.lex_state = 522, .external_lex_state = 94}, + [4329] = {.lex_state = 88, .external_lex_state = 91}, + [4330] = {.lex_state = 524, .external_lex_state = 95}, + [4331] = {.lex_state = 522, .external_lex_state = 93}, + [4332] = {.lex_state = 88, .external_lex_state = 91}, + [4333] = {.lex_state = 89, .external_lex_state = 91}, + [4334] = {.lex_state = 524, .external_lex_state = 95}, + [4335] = {.lex_state = 88, .external_lex_state = 93}, + [4336] = {.lex_state = 89, .external_lex_state = 91}, + [4337] = {.lex_state = 88, .external_lex_state = 88}, + [4338] = {.lex_state = 89, .external_lex_state = 90}, + [4339] = {.lex_state = 89, .external_lex_state = 91}, + [4340] = {.lex_state = 523, .external_lex_state = 93}, + [4341] = {.lex_state = 88, .external_lex_state = 91}, + [4342] = {.lex_state = 89, .external_lex_state = 95}, + [4343] = {.lex_state = 89, .external_lex_state = 91}, + [4344] = {.lex_state = 89, .external_lex_state = 95}, + [4345] = {.lex_state = 522, .external_lex_state = 94}, + [4346] = {.lex_state = 89, .external_lex_state = 91}, + [4347] = {.lex_state = 89, .external_lex_state = 90}, + [4348] = {.lex_state = 89, .external_lex_state = 95}, + [4349] = {.lex_state = 88, .external_lex_state = 91}, + [4350] = {.lex_state = 89, .external_lex_state = 88}, + [4351] = {.lex_state = 522, .external_lex_state = 94}, + [4352] = {.lex_state = 522, .external_lex_state = 94}, + [4353] = {.lex_state = 522, .external_lex_state = 94}, + [4354] = {.lex_state = 524, .external_lex_state = 95}, + [4355] = {.lex_state = 522, .external_lex_state = 94}, + [4356] = {.lex_state = 524, .external_lex_state = 95}, + [4357] = {.lex_state = 89, .external_lex_state = 91}, + [4358] = {.lex_state = 89, .external_lex_state = 91}, + [4359] = {.lex_state = 89, .external_lex_state = 90}, + [4360] = {.lex_state = 89, .external_lex_state = 90}, + [4361] = {.lex_state = 525, .external_lex_state = 65}, + [4362] = {.lex_state = 89, .external_lex_state = 61}, + [4363] = {.lex_state = 524, .external_lex_state = 95}, + [4364] = {.lex_state = 523, .external_lex_state = 93}, + [4365] = {.lex_state = 524, .external_lex_state = 95}, + [4366] = {.lex_state = 88, .external_lex_state = 91}, + [4367] = {.lex_state = 522, .external_lex_state = 94}, + [4368] = {.lex_state = 89, .external_lex_state = 90}, + [4369] = {.lex_state = 89, .external_lex_state = 65}, + [4370] = {.lex_state = 89, .external_lex_state = 90}, + [4371] = {.lex_state = 89, .external_lex_state = 91}, + [4372] = {.lex_state = 89, .external_lex_state = 91}, + [4373] = {.lex_state = 89, .external_lex_state = 88}, + [4374] = {.lex_state = 89, .external_lex_state = 88}, + [4375] = {.lex_state = 522, .external_lex_state = 93}, + [4376] = {.lex_state = 522, .external_lex_state = 94}, + [4377] = {.lex_state = 522, .external_lex_state = 94}, + [4378] = {.lex_state = 523, .external_lex_state = 93}, + [4379] = {.lex_state = 522, .external_lex_state = 94}, + [4380] = {.lex_state = 522, .external_lex_state = 93}, + [4381] = {.lex_state = 89, .external_lex_state = 88}, + [4382] = {.lex_state = 522, .external_lex_state = 94}, + [4383] = {.lex_state = 88, .external_lex_state = 91}, + [4384] = {.lex_state = 88, .external_lex_state = 91}, + [4385] = {.lex_state = 524, .external_lex_state = 95}, + [4386] = {.lex_state = 524, .external_lex_state = 95}, + [4387] = {.lex_state = 88, .external_lex_state = 91}, + [4388] = {.lex_state = 88, .external_lex_state = 91}, + [4389] = {.lex_state = 88, .external_lex_state = 93}, + [4390] = {.lex_state = 522, .external_lex_state = 93}, + [4391] = {.lex_state = 524, .external_lex_state = 95}, + [4392] = {.lex_state = 524, .external_lex_state = 95}, + [4393] = {.lex_state = 88, .external_lex_state = 91}, + [4394] = {.lex_state = 89, .external_lex_state = 90}, + [4395] = {.lex_state = 523, .external_lex_state = 93}, + [4396] = {.lex_state = 523, .external_lex_state = 93}, + [4397] = {.lex_state = 522, .external_lex_state = 94}, + [4398] = {.lex_state = 522, .external_lex_state = 93}, + [4399] = {.lex_state = 88, .external_lex_state = 91}, + [4400] = {.lex_state = 524, .external_lex_state = 95}, + [4401] = {.lex_state = 524, .external_lex_state = 95}, + [4402] = {.lex_state = 522, .external_lex_state = 94}, + [4403] = {.lex_state = 524, .external_lex_state = 95}, + [4404] = {.lex_state = 523, .external_lex_state = 93}, + [4405] = {.lex_state = 524, .external_lex_state = 95}, + [4406] = {.lex_state = 524, .external_lex_state = 95}, + [4407] = {.lex_state = 89, .external_lex_state = 88}, + [4408] = {.lex_state = 88, .external_lex_state = 91}, + [4409] = {.lex_state = 88, .external_lex_state = 91}, + [4410] = {.lex_state = 88, .external_lex_state = 91}, + [4411] = {.lex_state = 524, .external_lex_state = 95}, + [4412] = {.lex_state = 89, .external_lex_state = 61}, + [4413] = {.lex_state = 523, .external_lex_state = 93}, + [4414] = {.lex_state = 89, .external_lex_state = 91}, + [4415] = {.lex_state = 525, .external_lex_state = 93}, + [4416] = {.lex_state = 89, .external_lex_state = 95}, + [4417] = {.lex_state = 89, .external_lex_state = 94}, + [4418] = {.lex_state = 89, .external_lex_state = 94}, + [4419] = {.lex_state = 88, .external_lex_state = 94}, + [4420] = {.lex_state = 88, .external_lex_state = 94}, + [4421] = {.lex_state = 88, .external_lex_state = 94}, + [4422] = {.lex_state = 89, .external_lex_state = 88}, + [4423] = {.lex_state = 89, .external_lex_state = 95}, + [4424] = {.lex_state = 89, .external_lex_state = 95}, + [4425] = {.lex_state = 89, .external_lex_state = 95}, + [4426] = {.lex_state = 89, .external_lex_state = 94}, + [4427] = {.lex_state = 89, .external_lex_state = 94}, + [4428] = {.lex_state = 89, .external_lex_state = 91}, + [4429] = {.lex_state = 89, .external_lex_state = 88}, + [4430] = {.lex_state = 522, .external_lex_state = 93}, + [4431] = {.lex_state = 88, .external_lex_state = 93}, + [4432] = {.lex_state = 522, .external_lex_state = 93}, + [4433] = {.lex_state = 89, .external_lex_state = 93}, + [4434] = {.lex_state = 522, .external_lex_state = 93}, + [4435] = {.lex_state = 89, .external_lex_state = 88}, + [4436] = {.lex_state = 89, .external_lex_state = 93}, + [4437] = {.lex_state = 89, .external_lex_state = 94}, + [4438] = {.lex_state = 89, .external_lex_state = 91}, + [4439] = {.lex_state = 89, .external_lex_state = 91}, + [4440] = {.lex_state = 88, .external_lex_state = 93}, + [4441] = {.lex_state = 89, .external_lex_state = 94}, + [4442] = {.lex_state = 89, .external_lex_state = 94}, + [4443] = {.lex_state = 88, .external_lex_state = 93}, + [4444] = {.lex_state = 524, .external_lex_state = 94}, + [4445] = {.lex_state = 524, .external_lex_state = 94}, + [4446] = {.lex_state = 524, .external_lex_state = 94}, + [4447] = {.lex_state = 88, .external_lex_state = 93}, + [4448] = {.lex_state = 524, .external_lex_state = 94}, + [4449] = {.lex_state = 484, .external_lex_state = 76}, + [4450] = {.lex_state = 524, .external_lex_state = 94}, + [4451] = {.lex_state = 484, .external_lex_state = 76}, + [4452] = {.lex_state = 88, .external_lex_state = 93}, + [4453] = {.lex_state = 484, .external_lex_state = 76}, + [4454] = {.lex_state = 484, .external_lex_state = 76}, + [4455] = {.lex_state = 524, .external_lex_state = 94}, + [4456] = {.lex_state = 524, .external_lex_state = 94}, + [4457] = {.lex_state = 524, .external_lex_state = 94}, + [4458] = {.lex_state = 522, .external_lex_state = 94}, + [4459] = {.lex_state = 522, .external_lex_state = 94}, + [4460] = {.lex_state = 89, .external_lex_state = 65}, + [4461] = {.lex_state = 524, .external_lex_state = 94}, + [4462] = {.lex_state = 522, .external_lex_state = 94}, + [4463] = {.lex_state = 522, .external_lex_state = 94}, + [4464] = {.lex_state = 88, .external_lex_state = 94}, + [4465] = {.lex_state = 524, .external_lex_state = 95}, + [4466] = {.lex_state = 524, .external_lex_state = 95}, + [4467] = {.lex_state = 88, .external_lex_state = 94}, + [4468] = {.lex_state = 522, .external_lex_state = 93}, + [4469] = {.lex_state = 522, .external_lex_state = 93}, + [4470] = {.lex_state = 89, .external_lex_state = 91}, + [4471] = {.lex_state = 88, .external_lex_state = 94}, + [4472] = {.lex_state = 524, .external_lex_state = 94}, + [4473] = {.lex_state = 301, .external_lex_state = 97}, + [4474] = {.lex_state = 524, .external_lex_state = 94}, + [4475] = {.lex_state = 301, .external_lex_state = 97}, + [4476] = {.lex_state = 524, .external_lex_state = 94}, + [4477] = {.lex_state = 523, .external_lex_state = 93}, + [4478] = {.lex_state = 89, .external_lex_state = 91}, + [4479] = {.lex_state = 301, .external_lex_state = 97}, + [4480] = {.lex_state = 524, .external_lex_state = 94}, + [4481] = {.lex_state = 524, .external_lex_state = 94}, + [4482] = {.lex_state = 524, .external_lex_state = 94}, + [4483] = {.lex_state = 524, .external_lex_state = 94}, + [4484] = {.lex_state = 522, .external_lex_state = 94}, + [4485] = {.lex_state = 524, .external_lex_state = 95}, + [4486] = {.lex_state = 89, .external_lex_state = 95}, + [4487] = {.lex_state = 89, .external_lex_state = 95}, + [4488] = {.lex_state = 524, .external_lex_state = 94}, + [4489] = {.lex_state = 522, .external_lex_state = 94}, + [4490] = {.lex_state = 522, .external_lex_state = 94}, + [4491] = {.lex_state = 88, .external_lex_state = 94}, + [4492] = {.lex_state = 89, .external_lex_state = 93}, + [4493] = {.lex_state = 524, .external_lex_state = 94}, + [4494] = {.lex_state = 301, .external_lex_state = 97}, + [4495] = {.lex_state = 523, .external_lex_state = 93}, + [4496] = {.lex_state = 88, .external_lex_state = 94}, + [4497] = {.lex_state = 524, .external_lex_state = 94}, + [4498] = {.lex_state = 522, .external_lex_state = 94}, + [4499] = {.lex_state = 522, .external_lex_state = 94}, + [4500] = {.lex_state = 524, .external_lex_state = 95}, + [4501] = {.lex_state = 524, .external_lex_state = 95}, + [4502] = {.lex_state = 522, .external_lex_state = 93}, + [4503] = {.lex_state = 525, .external_lex_state = 93}, + [4504] = {.lex_state = 523, .external_lex_state = 93}, + [4505] = {.lex_state = 525, .external_lex_state = 93}, + [4506] = {.lex_state = 524, .external_lex_state = 94}, + [4507] = {.lex_state = 524, .external_lex_state = 94}, + [4508] = {.lex_state = 524, .external_lex_state = 94}, + [4509] = {.lex_state = 89, .external_lex_state = 93}, + [4510] = {.lex_state = 89, .external_lex_state = 95}, + [4511] = {.lex_state = 88, .external_lex_state = 94}, + [4512] = {.lex_state = 89, .external_lex_state = 93}, + [4513] = {.lex_state = 88, .external_lex_state = 88}, + [4514] = {.lex_state = 522, .external_lex_state = 93}, + [4515] = {.lex_state = 89, .external_lex_state = 95}, + [4516] = {.lex_state = 88, .external_lex_state = 94}, + [4517] = {.lex_state = 89, .external_lex_state = 95}, + [4518] = {.lex_state = 89, .external_lex_state = 91}, + [4519] = {.lex_state = 89, .external_lex_state = 91}, + [4520] = {.lex_state = 88, .external_lex_state = 93}, + [4521] = {.lex_state = 89, .external_lex_state = 95}, + [4522] = {.lex_state = 89, .external_lex_state = 91}, + [4523] = {.lex_state = 89, .external_lex_state = 91}, + [4524] = {.lex_state = 89, .external_lex_state = 94}, + [4525] = {.lex_state = 525, .external_lex_state = 93}, + [4526] = {.lex_state = 89, .external_lex_state = 94}, + [4527] = {.lex_state = 525, .external_lex_state = 93}, + [4528] = {.lex_state = 89, .external_lex_state = 91}, + [4529] = {.lex_state = 524, .external_lex_state = 95}, + [4530] = {.lex_state = 524, .external_lex_state = 95}, + [4531] = {.lex_state = 89, .external_lex_state = 88}, + [4532] = {.lex_state = 89, .external_lex_state = 94}, + [4533] = {.lex_state = 89, .external_lex_state = 94}, + [4534] = {.lex_state = 89, .external_lex_state = 95}, + [4535] = {.lex_state = 89, .external_lex_state = 91}, + [4536] = {.lex_state = 89, .external_lex_state = 88}, + [4537] = {.lex_state = 301, .external_lex_state = 97}, + [4538] = {.lex_state = 89, .external_lex_state = 65}, + [4539] = {.lex_state = 301, .external_lex_state = 97}, + [4540] = {.lex_state = 89, .external_lex_state = 93}, + [4541] = {.lex_state = 522, .external_lex_state = 93}, + [4542] = {.lex_state = 89, .external_lex_state = 91}, + [4543] = {.lex_state = 524, .external_lex_state = 65}, + [4544] = {.lex_state = 89, .external_lex_state = 91}, + [4545] = {.lex_state = 89, .external_lex_state = 91}, + [4546] = {.lex_state = 522, .external_lex_state = 93}, + [4547] = {.lex_state = 88, .external_lex_state = 93}, + [4548] = {.lex_state = 88, .external_lex_state = 94}, + [4549] = {.lex_state = 88, .external_lex_state = 93}, + [4550] = {.lex_state = 524, .external_lex_state = 95}, + [4551] = {.lex_state = 89, .external_lex_state = 91}, + [4552] = {.lex_state = 524, .external_lex_state = 95}, + [4553] = {.lex_state = 88, .external_lex_state = 94}, + [4554] = {.lex_state = 89, .external_lex_state = 91}, + [4555] = {.lex_state = 89, .external_lex_state = 91}, + [4556] = {.lex_state = 522, .external_lex_state = 94}, + [4557] = {.lex_state = 522, .external_lex_state = 93}, + [4558] = {.lex_state = 89, .external_lex_state = 91}, + [4559] = {.lex_state = 89, .external_lex_state = 61}, + [4560] = {.lex_state = 89, .external_lex_state = 95}, + [4561] = {.lex_state = 89, .external_lex_state = 95}, + [4562] = {.lex_state = 522, .external_lex_state = 94}, + [4563] = {.lex_state = 88, .external_lex_state = 94}, + [4564] = {.lex_state = 88, .external_lex_state = 94}, + [4565] = {.lex_state = 89, .external_lex_state = 95}, + [4566] = {.lex_state = 89, .external_lex_state = 95}, + [4567] = {.lex_state = 525, .external_lex_state = 65}, + [4568] = {.lex_state = 89, .external_lex_state = 91}, + [4569] = {.lex_state = 524, .external_lex_state = 65}, + [4570] = {.lex_state = 524, .external_lex_state = 65}, + [4571] = {.lex_state = 524, .external_lex_state = 65}, + [4572] = {.lex_state = 522, .external_lex_state = 94}, + [4573] = {.lex_state = 522, .external_lex_state = 94}, + [4574] = {.lex_state = 524, .external_lex_state = 95}, + [4575] = {.lex_state = 524, .external_lex_state = 95}, + [4576] = {.lex_state = 522, .external_lex_state = 94}, + [4577] = {.lex_state = 522, .external_lex_state = 94}, + [4578] = {.lex_state = 522, .external_lex_state = 94}, + [4579] = {.lex_state = 522, .external_lex_state = 94}, + [4580] = {.lex_state = 522, .external_lex_state = 94}, + [4581] = {.lex_state = 522, .external_lex_state = 94}, + [4582] = {.lex_state = 522, .external_lex_state = 94}, + [4583] = {.lex_state = 522, .external_lex_state = 94}, + [4584] = {.lex_state = 522, .external_lex_state = 94}, + [4585] = {.lex_state = 88, .external_lex_state = 94}, + [4586] = {.lex_state = 522, .external_lex_state = 94}, + [4587] = {.lex_state = 88, .external_lex_state = 94}, + [4588] = {.lex_state = 88, .external_lex_state = 94}, + [4589] = {.lex_state = 88, .external_lex_state = 94}, + [4590] = {.lex_state = 88, .external_lex_state = 94}, + [4591] = {.lex_state = 89, .external_lex_state = 95}, + [4592] = {.lex_state = 89, .external_lex_state = 95}, + [4593] = {.lex_state = 525, .external_lex_state = 65}, + [4594] = {.lex_state = 89, .external_lex_state = 95}, + [4595] = {.lex_state = 525, .external_lex_state = 65}, + [4596] = {.lex_state = 524, .external_lex_state = 95}, + [4597] = {.lex_state = 524, .external_lex_state = 95}, + [4598] = {.lex_state = 522, .external_lex_state = 94}, + [4599] = {.lex_state = 522, .external_lex_state = 94}, + [4600] = {.lex_state = 522, .external_lex_state = 94}, + [4601] = {.lex_state = 522, .external_lex_state = 94}, + [4602] = {.lex_state = 522, .external_lex_state = 94}, + [4603] = {.lex_state = 522, .external_lex_state = 94}, + [4604] = {.lex_state = 522, .external_lex_state = 94}, + [4605] = {.lex_state = 522, .external_lex_state = 94}, + [4606] = {.lex_state = 89, .external_lex_state = 95}, + [4607] = {.lex_state = 524, .external_lex_state = 94}, + [4608] = {.lex_state = 459, .external_lex_state = 98}, + [4609] = {.lex_state = 477, .external_lex_state = 99}, + [4610] = {.lex_state = 522, .external_lex_state = 93}, + [4611] = {.lex_state = 459, .external_lex_state = 98}, + [4612] = {.lex_state = 89, .external_lex_state = 94}, + [4613] = {.lex_state = 88, .external_lex_state = 88}, + [4614] = {.lex_state = 89, .external_lex_state = 94}, + [4615] = {.lex_state = 459, .external_lex_state = 98}, + [4616] = {.lex_state = 525, .external_lex_state = 93}, + [4617] = {.lex_state = 477, .external_lex_state = 99}, + [4618] = {.lex_state = 523, .external_lex_state = 93}, + [4619] = {.lex_state = 524, .external_lex_state = 94}, + [4620] = {.lex_state = 524, .external_lex_state = 94}, + [4621] = {.lex_state = 459, .external_lex_state = 98}, + [4622] = {.lex_state = 523, .external_lex_state = 93}, + [4623] = {.lex_state = 477, .external_lex_state = 99}, + [4624] = {.lex_state = 459, .external_lex_state = 98}, + [4625] = {.lex_state = 523, .external_lex_state = 93}, + [4626] = {.lex_state = 522, .external_lex_state = 93}, + [4627] = {.lex_state = 522, .external_lex_state = 93}, + [4628] = {.lex_state = 459, .external_lex_state = 98}, + [4629] = {.lex_state = 89, .external_lex_state = 94}, + [4630] = {.lex_state = 89, .external_lex_state = 94}, + [4631] = {.lex_state = 523, .external_lex_state = 93}, + [4632] = {.lex_state = 459, .external_lex_state = 98}, + [4633] = {.lex_state = 459, .external_lex_state = 98}, + [4634] = {.lex_state = 524, .external_lex_state = 93}, + [4635] = {.lex_state = 524, .external_lex_state = 93}, + [4636] = {.lex_state = 301, .external_lex_state = 97}, + [4637] = {.lex_state = 459, .external_lex_state = 98}, + [4638] = {.lex_state = 459, .external_lex_state = 98}, + [4639] = {.lex_state = 301, .external_lex_state = 97}, + [4640] = {.lex_state = 301, .external_lex_state = 97}, + [4641] = {.lex_state = 459, .external_lex_state = 98}, + [4642] = {.lex_state = 89, .external_lex_state = 88}, + [4643] = {.lex_state = 301, .external_lex_state = 97}, + [4644] = {.lex_state = 301, .external_lex_state = 97}, + [4645] = {.lex_state = 89, .external_lex_state = 93}, + [4646] = {.lex_state = 459, .external_lex_state = 98}, + [4647] = {.lex_state = 524, .external_lex_state = 94}, + [4648] = {.lex_state = 522, .external_lex_state = 94}, + [4649] = {.lex_state = 522, .external_lex_state = 94}, + [4650] = {.lex_state = 524, .external_lex_state = 95}, + [4651] = {.lex_state = 524, .external_lex_state = 95}, + [4652] = {.lex_state = 459, .external_lex_state = 98}, + [4653] = {.lex_state = 459, .external_lex_state = 98}, + [4654] = {.lex_state = 459, .external_lex_state = 98}, + [4655] = {.lex_state = 459, .external_lex_state = 98}, + [4656] = {.lex_state = 525, .external_lex_state = 93}, + [4657] = {.lex_state = 301, .external_lex_state = 97}, + [4658] = {.lex_state = 477, .external_lex_state = 99}, + [4659] = {.lex_state = 301, .external_lex_state = 97}, + [4660] = {.lex_state = 459, .external_lex_state = 98}, + [4661] = {.lex_state = 524, .external_lex_state = 94}, + [4662] = {.lex_state = 523, .external_lex_state = 93}, + [4663] = {.lex_state = 524, .external_lex_state = 94}, + [4664] = {.lex_state = 89, .external_lex_state = 93}, + [4665] = {.lex_state = 524, .external_lex_state = 94}, + [4666] = {.lex_state = 524, .external_lex_state = 94}, + [4667] = {.lex_state = 459, .external_lex_state = 98}, + [4668] = {.lex_state = 523, .external_lex_state = 93}, + [4669] = {.lex_state = 524, .external_lex_state = 93}, + [4670] = {.lex_state = 525, .external_lex_state = 93}, + [4671] = {.lex_state = 459, .external_lex_state = 98}, + [4672] = {.lex_state = 524, .external_lex_state = 94}, + [4673] = {.lex_state = 89, .external_lex_state = 88}, + [4674] = {.lex_state = 524, .external_lex_state = 94}, + [4675] = {.lex_state = 459, .external_lex_state = 98}, + [4676] = {.lex_state = 89, .external_lex_state = 88}, + [4677] = {.lex_state = 523, .external_lex_state = 93}, + [4678] = {.lex_state = 525, .external_lex_state = 93}, + [4679] = {.lex_state = 523, .external_lex_state = 93}, + [4680] = {.lex_state = 525, .external_lex_state = 93}, + [4681] = {.lex_state = 89, .external_lex_state = 88}, + [4682] = {.lex_state = 525, .external_lex_state = 93}, + [4683] = {.lex_state = 523, .external_lex_state = 93}, + [4684] = {.lex_state = 459, .external_lex_state = 98}, + [4685] = {.lex_state = 523, .external_lex_state = 93}, + [4686] = {.lex_state = 459, .external_lex_state = 98}, + [4687] = {.lex_state = 477, .external_lex_state = 99}, + [4688] = {.lex_state = 459, .external_lex_state = 98}, + [4689] = {.lex_state = 523, .external_lex_state = 93}, + [4690] = {.lex_state = 459, .external_lex_state = 98}, + [4691] = {.lex_state = 459, .external_lex_state = 98}, + [4692] = {.lex_state = 524, .external_lex_state = 93}, + [4693] = {.lex_state = 523, .external_lex_state = 93}, + [4694] = {.lex_state = 524, .external_lex_state = 94}, + [4695] = {.lex_state = 88, .external_lex_state = 93}, + [4696] = {.lex_state = 459, .external_lex_state = 98}, + [4697] = {.lex_state = 459, .external_lex_state = 98}, + [4698] = {.lex_state = 524, .external_lex_state = 94}, + [4699] = {.lex_state = 459, .external_lex_state = 98}, + [4700] = {.lex_state = 459, .external_lex_state = 98}, + [4701] = {.lex_state = 524, .external_lex_state = 94}, + [4702] = {.lex_state = 89, .external_lex_state = 94}, + [4703] = {.lex_state = 301, .external_lex_state = 97}, + [4704] = {.lex_state = 89, .external_lex_state = 94}, + [4705] = {.lex_state = 525, .external_lex_state = 65}, + [4706] = {.lex_state = 89, .external_lex_state = 93}, + [4707] = {.lex_state = 459, .external_lex_state = 98}, + [4708] = {.lex_state = 301, .external_lex_state = 97}, + [4709] = {.lex_state = 301, .external_lex_state = 97}, + [4710] = {.lex_state = 523, .external_lex_state = 93}, + [4711] = {.lex_state = 88, .external_lex_state = 88}, + [4712] = {.lex_state = 459, .external_lex_state = 98}, + [4713] = {.lex_state = 301, .external_lex_state = 97}, + [4714] = {.lex_state = 89, .external_lex_state = 93}, + [4715] = {.lex_state = 88, .external_lex_state = 88}, + [4716] = {.lex_state = 522, .external_lex_state = 93}, + [4717] = {.lex_state = 89, .external_lex_state = 88}, + [4718] = {.lex_state = 301, .external_lex_state = 97}, + [4719] = {.lex_state = 459, .external_lex_state = 98}, + [4720] = {.lex_state = 525, .external_lex_state = 93}, + [4721] = {.lex_state = 301, .external_lex_state = 97}, + [4722] = {.lex_state = 89, .external_lex_state = 65}, + [4723] = {.lex_state = 301, .external_lex_state = 97}, + [4724] = {.lex_state = 523, .external_lex_state = 93}, + [4725] = {.lex_state = 524, .external_lex_state = 93}, + [4726] = {.lex_state = 301, .external_lex_state = 97}, + [4727] = {.lex_state = 89, .external_lex_state = 94}, + [4728] = {.lex_state = 89, .external_lex_state = 61}, + [4729] = {.lex_state = 524, .external_lex_state = 93}, + [4730] = {.lex_state = 459, .external_lex_state = 98}, + [4731] = {.lex_state = 301, .external_lex_state = 97}, + [4732] = {.lex_state = 89, .external_lex_state = 94}, + [4733] = {.lex_state = 522, .external_lex_state = 93}, + [4734] = {.lex_state = 524, .external_lex_state = 93}, + [4735] = {.lex_state = 89, .external_lex_state = 88}, + [4736] = {.lex_state = 477, .external_lex_state = 99}, + [4737] = {.lex_state = 477, .external_lex_state = 99}, + [4738] = {.lex_state = 524, .external_lex_state = 93}, + [4739] = {.lex_state = 459, .external_lex_state = 98}, + [4740] = {.lex_state = 524, .external_lex_state = 93}, + [4741] = {.lex_state = 524, .external_lex_state = 93}, + [4742] = {.lex_state = 301, .external_lex_state = 97}, + [4743] = {.lex_state = 301, .external_lex_state = 97}, + [4744] = {.lex_state = 301, .external_lex_state = 97}, + [4745] = {.lex_state = 459, .external_lex_state = 98}, + [4746] = {.lex_state = 459, .external_lex_state = 98}, + [4747] = {.lex_state = 459, .external_lex_state = 98}, + [4748] = {.lex_state = 522, .external_lex_state = 93}, + [4749] = {.lex_state = 88, .external_lex_state = 88}, + [4750] = {.lex_state = 523, .external_lex_state = 93}, + [4751] = {.lex_state = 525, .external_lex_state = 65}, + [4752] = {.lex_state = 459, .external_lex_state = 98}, + [4753] = {.lex_state = 459, .external_lex_state = 98}, + [4754] = {.lex_state = 459, .external_lex_state = 98}, + [4755] = {.lex_state = 88, .external_lex_state = 88}, + [4756] = {.lex_state = 523, .external_lex_state = 93}, + [4757] = {.lex_state = 459, .external_lex_state = 98}, + [4758] = {.lex_state = 88, .external_lex_state = 88}, + [4759] = {.lex_state = 88, .external_lex_state = 88}, + [4760] = {.lex_state = 459, .external_lex_state = 98}, + [4761] = {.lex_state = 459, .external_lex_state = 98}, + [4762] = {.lex_state = 459, .external_lex_state = 98}, + [4763] = {.lex_state = 89, .external_lex_state = 94}, + [4764] = {.lex_state = 459, .external_lex_state = 98}, + [4765] = {.lex_state = 88, .external_lex_state = 88}, + [4766] = {.lex_state = 89, .external_lex_state = 94}, + [4767] = {.lex_state = 522, .external_lex_state = 93}, + [4768] = {.lex_state = 524, .external_lex_state = 94}, + [4769] = {.lex_state = 88, .external_lex_state = 88}, + [4770] = {.lex_state = 459, .external_lex_state = 98}, + [4771] = {.lex_state = 523, .external_lex_state = 93}, + [4772] = {.lex_state = 88, .external_lex_state = 88}, + [4773] = {.lex_state = 525, .external_lex_state = 65}, + [4774] = {.lex_state = 459, .external_lex_state = 98}, + [4775] = {.lex_state = 459, .external_lex_state = 98}, + [4776] = {.lex_state = 89, .external_lex_state = 93}, + [4777] = {.lex_state = 524, .external_lex_state = 94}, + [4778] = {.lex_state = 459, .external_lex_state = 98}, + [4779] = {.lex_state = 459, .external_lex_state = 98}, + [4780] = {.lex_state = 459, .external_lex_state = 98}, + [4781] = {.lex_state = 525, .external_lex_state = 93}, + [4782] = {.lex_state = 459, .external_lex_state = 98}, + [4783] = {.lex_state = 88, .external_lex_state = 88}, + [4784] = {.lex_state = 459, .external_lex_state = 98}, + [4785] = {.lex_state = 477, .external_lex_state = 99}, + [4786] = {.lex_state = 88, .external_lex_state = 88}, + [4787] = {.lex_state = 459, .external_lex_state = 98}, + [4788] = {.lex_state = 523, .external_lex_state = 93}, + [4789] = {.lex_state = 524, .external_lex_state = 93}, + [4790] = {.lex_state = 89, .external_lex_state = 94}, + [4791] = {.lex_state = 459, .external_lex_state = 98}, + [4792] = {.lex_state = 89, .external_lex_state = 94}, + [4793] = {.lex_state = 89, .external_lex_state = 94}, + [4794] = {.lex_state = 89, .external_lex_state = 94}, + [4795] = {.lex_state = 459, .external_lex_state = 98}, + [4796] = {.lex_state = 89, .external_lex_state = 61}, + [4797] = {.lex_state = 524, .external_lex_state = 94}, + [4798] = {.lex_state = 524, .external_lex_state = 94}, + [4799] = {.lex_state = 524, .external_lex_state = 94}, + [4800] = {.lex_state = 524, .external_lex_state = 94}, + [4801] = {.lex_state = 524, .external_lex_state = 94}, + [4802] = {.lex_state = 524, .external_lex_state = 94}, + [4803] = {.lex_state = 524, .external_lex_state = 94}, + [4804] = {.lex_state = 524, .external_lex_state = 94}, + [4805] = {.lex_state = 88, .external_lex_state = 88}, + [4806] = {.lex_state = 459, .external_lex_state = 98}, + [4807] = {.lex_state = 522, .external_lex_state = 93}, + [4808] = {.lex_state = 89, .external_lex_state = 94}, + [4809] = {.lex_state = 459, .external_lex_state = 98}, + [4810] = {.lex_state = 459, .external_lex_state = 98}, + [4811] = {.lex_state = 459, .external_lex_state = 98}, + [4812] = {.lex_state = 524, .external_lex_state = 93}, + [4813] = {.lex_state = 477, .external_lex_state = 99}, + [4814] = {.lex_state = 459, .external_lex_state = 98}, + [4815] = {.lex_state = 89, .external_lex_state = 61}, + [4816] = {.lex_state = 524, .external_lex_state = 65}, + [4817] = {.lex_state = 459, .external_lex_state = 98}, + [4818] = {.lex_state = 523, .external_lex_state = 93}, + [4819] = {.lex_state = 524, .external_lex_state = 65}, + [4820] = {.lex_state = 459, .external_lex_state = 98}, + [4821] = {.lex_state = 459, .external_lex_state = 98}, + [4822] = {.lex_state = 523, .external_lex_state = 93}, + [4823] = {.lex_state = 89, .external_lex_state = 94}, + [4824] = {.lex_state = 89, .external_lex_state = 94}, + [4825] = {.lex_state = 459, .external_lex_state = 98}, + [4826] = {.lex_state = 88, .external_lex_state = 88}, + [4827] = {.lex_state = 89, .external_lex_state = 94}, + [4828] = {.lex_state = 459, .external_lex_state = 98}, + [4829] = {.lex_state = 524, .external_lex_state = 95}, + [4830] = {.lex_state = 524, .external_lex_state = 95}, + [4831] = {.lex_state = 522, .external_lex_state = 94}, + [4832] = {.lex_state = 522, .external_lex_state = 94}, + [4833] = {.lex_state = 522, .external_lex_state = 94}, + [4834] = {.lex_state = 522, .external_lex_state = 94}, + [4835] = {.lex_state = 522, .external_lex_state = 94}, + [4836] = {.lex_state = 522, .external_lex_state = 94}, + [4837] = {.lex_state = 522, .external_lex_state = 94}, + [4838] = {.lex_state = 522, .external_lex_state = 94}, + [4839] = {.lex_state = 459, .external_lex_state = 98}, + [4840] = {.lex_state = 88, .external_lex_state = 88}, + [4841] = {.lex_state = 88, .external_lex_state = 88}, + [4842] = {.lex_state = 88, .external_lex_state = 88}, + [4843] = {.lex_state = 459, .external_lex_state = 98}, + [4844] = {.lex_state = 459, .external_lex_state = 98}, + [4845] = {.lex_state = 459, .external_lex_state = 98}, + [4846] = {.lex_state = 459, .external_lex_state = 98}, + [4847] = {.lex_state = 524, .external_lex_state = 94}, + [4848] = {.lex_state = 524, .external_lex_state = 94}, + [4849] = {.lex_state = 524, .external_lex_state = 94}, + [4850] = {.lex_state = 524, .external_lex_state = 94}, + [4851] = {.lex_state = 524, .external_lex_state = 94}, + [4852] = {.lex_state = 524, .external_lex_state = 94}, + [4853] = {.lex_state = 524, .external_lex_state = 94}, + [4854] = {.lex_state = 524, .external_lex_state = 94}, + [4855] = {.lex_state = 459, .external_lex_state = 98}, + [4856] = {.lex_state = 459, .external_lex_state = 98}, + [4857] = {.lex_state = 459, .external_lex_state = 98}, + [4858] = {.lex_state = 459, .external_lex_state = 98}, + [4859] = {.lex_state = 459, .external_lex_state = 98}, + [4860] = {.lex_state = 459, .external_lex_state = 98}, + [4861] = {.lex_state = 459, .external_lex_state = 98}, + [4862] = {.lex_state = 459, .external_lex_state = 98}, + [4863] = {.lex_state = 89, .external_lex_state = 94}, + [4864] = {.lex_state = 525, .external_lex_state = 93}, + [4865] = {.lex_state = 525, .external_lex_state = 93}, + [4866] = {.lex_state = 89, .external_lex_state = 88}, + [4867] = {.lex_state = 88, .external_lex_state = 93}, + [4868] = {.lex_state = 89, .external_lex_state = 65}, + [4869] = {.lex_state = 88, .external_lex_state = 93}, + [4870] = {.lex_state = 525, .external_lex_state = 93}, + [4871] = {.lex_state = 89, .external_lex_state = 65}, + [4872] = {.lex_state = 525, .external_lex_state = 93}, + [4873] = {.lex_state = 525, .external_lex_state = 93}, + [4874] = {.lex_state = 89, .external_lex_state = 88}, + [4875] = {.lex_state = 89, .external_lex_state = 88}, + [4876] = {.lex_state = 525, .external_lex_state = 93}, + [4877] = {.lex_state = 88, .external_lex_state = 93}, + [4878] = {.lex_state = 89, .external_lex_state = 88}, + [4879] = {.lex_state = 89, .external_lex_state = 88}, + [4880] = {.lex_state = 525, .external_lex_state = 93}, + [4881] = {.lex_state = 477, .external_lex_state = 99}, + [4882] = {.lex_state = 89, .external_lex_state = 88}, + [4883] = {.lex_state = 89, .external_lex_state = 88}, + [4884] = {.lex_state = 89, .external_lex_state = 88}, + [4885] = {.lex_state = 89, .external_lex_state = 88}, + [4886] = {.lex_state = 525, .external_lex_state = 93}, + [4887] = {.lex_state = 89, .external_lex_state = 88}, + [4888] = {.lex_state = 89, .external_lex_state = 88}, + [4889] = {.lex_state = 89, .external_lex_state = 88}, + [4890] = {.lex_state = 525, .external_lex_state = 93}, + [4891] = {.lex_state = 477, .external_lex_state = 99}, + [4892] = {.lex_state = 89, .external_lex_state = 88}, + [4893] = {.lex_state = 525, .external_lex_state = 93}, + [4894] = {.lex_state = 525, .external_lex_state = 93}, + [4895] = {.lex_state = 89, .external_lex_state = 88}, + [4896] = {.lex_state = 88, .external_lex_state = 93}, + [4897] = {.lex_state = 89, .external_lex_state = 88}, + [4898] = {.lex_state = 89, .external_lex_state = 88}, + [4899] = {.lex_state = 89, .external_lex_state = 65}, + [4900] = {.lex_state = 89, .external_lex_state = 93}, + [4901] = {.lex_state = 88, .external_lex_state = 93}, + [4902] = {.lex_state = 88, .external_lex_state = 93}, + [4903] = {.lex_state = 525, .external_lex_state = 93}, + [4904] = {.lex_state = 525, .external_lex_state = 93}, + [4905] = {.lex_state = 525, .external_lex_state = 93}, + [4906] = {.lex_state = 525, .external_lex_state = 93}, + [4907] = {.lex_state = 89, .external_lex_state = 88}, + [4908] = {.lex_state = 89, .external_lex_state = 88}, + [4909] = {.lex_state = 89, .external_lex_state = 88}, + [4910] = {.lex_state = 525, .external_lex_state = 93}, + [4911] = {.lex_state = 89, .external_lex_state = 88}, + [4912] = {.lex_state = 89, .external_lex_state = 88}, + [4913] = {.lex_state = 525, .external_lex_state = 93}, + [4914] = {.lex_state = 525, .external_lex_state = 93}, + [4915] = {.lex_state = 525, .external_lex_state = 93}, + [4916] = {.lex_state = 525, .external_lex_state = 93}, + [4917] = {.lex_state = 89, .external_lex_state = 88}, + [4918] = {.lex_state = 89, .external_lex_state = 88}, + [4919] = {.lex_state = 88, .external_lex_state = 93}, + [4920] = {.lex_state = 300, .external_lex_state = 71}, + [4921] = {.lex_state = 88, .external_lex_state = 93}, + [4922] = {.lex_state = 89, .external_lex_state = 88}, + [4923] = {.lex_state = 524, .external_lex_state = 94}, + [4924] = {.lex_state = 524, .external_lex_state = 94}, + [4925] = {.lex_state = 89, .external_lex_state = 88}, + [4926] = {.lex_state = 88, .external_lex_state = 93}, + [4927] = {.lex_state = 524, .external_lex_state = 93}, + [4928] = {.lex_state = 525, .external_lex_state = 93}, + [4929] = {.lex_state = 88, .external_lex_state = 93}, + [4930] = {.lex_state = 525, .external_lex_state = 93}, + [4931] = {.lex_state = 89, .external_lex_state = 88}, + [4932] = {.lex_state = 525, .external_lex_state = 93}, + [4933] = {.lex_state = 89, .external_lex_state = 88}, + [4934] = {.lex_state = 89, .external_lex_state = 88}, + [4935] = {.lex_state = 525, .external_lex_state = 93}, + [4936] = {.lex_state = 89, .external_lex_state = 88}, + [4937] = {.lex_state = 525, .external_lex_state = 93}, + [4938] = {.lex_state = 525, .external_lex_state = 93}, + [4939] = {.lex_state = 88, .external_lex_state = 93}, + [4940] = {.lex_state = 477, .external_lex_state = 99}, + [4941] = {.lex_state = 525, .external_lex_state = 93}, + [4942] = {.lex_state = 89, .external_lex_state = 88}, + [4943] = {.lex_state = 89, .external_lex_state = 88}, + [4944] = {.lex_state = 89, .external_lex_state = 88}, + [4945] = {.lex_state = 524, .external_lex_state = 93}, + [4946] = {.lex_state = 525, .external_lex_state = 93}, + [4947] = {.lex_state = 89, .external_lex_state = 88}, + [4948] = {.lex_state = 89, .external_lex_state = 88}, + [4949] = {.lex_state = 89, .external_lex_state = 88}, + [4950] = {.lex_state = 525, .external_lex_state = 93}, + [4951] = {.lex_state = 525, .external_lex_state = 93}, + [4952] = {.lex_state = 89, .external_lex_state = 88}, + [4953] = {.lex_state = 88, .external_lex_state = 93}, + [4954] = {.lex_state = 525, .external_lex_state = 93}, + [4955] = {.lex_state = 89, .external_lex_state = 88}, + [4956] = {.lex_state = 522, .external_lex_state = 93}, + [4957] = {.lex_state = 89, .external_lex_state = 88}, + [4958] = {.lex_state = 88, .external_lex_state = 93}, + [4959] = {.lex_state = 477, .external_lex_state = 99}, + [4960] = {.lex_state = 89, .external_lex_state = 88}, + [4961] = {.lex_state = 89, .external_lex_state = 88}, + [4962] = {.lex_state = 89, .external_lex_state = 88}, + [4963] = {.lex_state = 89, .external_lex_state = 88}, + [4964] = {.lex_state = 89, .external_lex_state = 93}, + [4965] = {.lex_state = 477, .external_lex_state = 99}, + [4966] = {.lex_state = 89, .external_lex_state = 88}, + [4967] = {.lex_state = 89, .external_lex_state = 88}, + [4968] = {.lex_state = 525, .external_lex_state = 93}, + [4969] = {.lex_state = 89, .external_lex_state = 88}, + [4970] = {.lex_state = 525, .external_lex_state = 93}, + [4971] = {.lex_state = 524, .external_lex_state = 93}, + [4972] = {.lex_state = 89, .external_lex_state = 88}, + [4973] = {.lex_state = 89, .external_lex_state = 88}, + [4974] = {.lex_state = 525, .external_lex_state = 93}, + [4975] = {.lex_state = 89, .external_lex_state = 88}, + [4976] = {.lex_state = 525, .external_lex_state = 93}, + [4977] = {.lex_state = 89, .external_lex_state = 88}, + [4978] = {.lex_state = 524, .external_lex_state = 93}, + [4979] = {.lex_state = 88, .external_lex_state = 93}, + [4980] = {.lex_state = 88, .external_lex_state = 93}, + [4981] = {.lex_state = 525, .external_lex_state = 93}, + [4982] = {.lex_state = 525, .external_lex_state = 93}, + [4983] = {.lex_state = 525, .external_lex_state = 93}, + [4984] = {.lex_state = 525, .external_lex_state = 93}, + [4985] = {.lex_state = 89, .external_lex_state = 88}, + [4986] = {.lex_state = 525, .external_lex_state = 93}, + [4987] = {.lex_state = 525, .external_lex_state = 93}, + [4988] = {.lex_state = 525, .external_lex_state = 93}, + [4989] = {.lex_state = 477, .external_lex_state = 99}, + [4990] = {.lex_state = 300, .external_lex_state = 71}, + [4991] = {.lex_state = 89, .external_lex_state = 88}, + [4992] = {.lex_state = 477, .external_lex_state = 99}, + [4993] = {.lex_state = 477, .external_lex_state = 99}, + [4994] = {.lex_state = 477, .external_lex_state = 99}, + [4995] = {.lex_state = 89, .external_lex_state = 93}, + [4996] = {.lex_state = 525, .external_lex_state = 93}, + [4997] = {.lex_state = 525, .external_lex_state = 93}, + [4998] = {.lex_state = 525, .external_lex_state = 93}, + [4999] = {.lex_state = 89, .external_lex_state = 93}, + [5000] = {.lex_state = 525, .external_lex_state = 93}, + [5001] = {.lex_state = 525, .external_lex_state = 93}, + [5002] = {.lex_state = 525, .external_lex_state = 93}, + [5003] = {.lex_state = 89, .external_lex_state = 88}, + [5004] = {.lex_state = 524, .external_lex_state = 94}, + [5005] = {.lex_state = 524, .external_lex_state = 94}, + [5006] = {.lex_state = 524, .external_lex_state = 94}, + [5007] = {.lex_state = 524, .external_lex_state = 94}, + [5008] = {.lex_state = 524, .external_lex_state = 94}, + [5009] = {.lex_state = 524, .external_lex_state = 94}, + [5010] = {.lex_state = 524, .external_lex_state = 94}, + [5011] = {.lex_state = 524, .external_lex_state = 94}, + [5012] = {.lex_state = 525, .external_lex_state = 93}, + [5013] = {.lex_state = 89, .external_lex_state = 88}, + [5014] = {.lex_state = 89, .external_lex_state = 88}, + [5015] = {.lex_state = 525, .external_lex_state = 93}, + [5016] = {.lex_state = 524, .external_lex_state = 93}, + [5017] = {.lex_state = 525, .external_lex_state = 93}, + [5018] = {.lex_state = 89, .external_lex_state = 88}, + [5019] = {.lex_state = 522, .external_lex_state = 93}, + [5020] = {.lex_state = 525, .external_lex_state = 93}, + [5021] = {.lex_state = 524, .external_lex_state = 93}, + [5022] = {.lex_state = 88, .external_lex_state = 93}, + [5023] = {.lex_state = 89, .external_lex_state = 93}, + [5024] = {.lex_state = 524, .external_lex_state = 93}, + [5025] = {.lex_state = 525, .external_lex_state = 93}, + [5026] = {.lex_state = 88, .external_lex_state = 93}, + [5027] = {.lex_state = 524, .external_lex_state = 93}, + [5028] = {.lex_state = 525, .external_lex_state = 93}, + [5029] = {.lex_state = 525, .external_lex_state = 93}, + [5030] = {.lex_state = 525, .external_lex_state = 93}, + [5031] = {.lex_state = 89, .external_lex_state = 93}, + [5032] = {.lex_state = 522, .external_lex_state = 93}, + [5033] = {.lex_state = 89, .external_lex_state = 88}, + [5034] = {.lex_state = 89, .external_lex_state = 93}, + [5035] = {.lex_state = 89, .external_lex_state = 93}, + [5036] = {.lex_state = 89, .external_lex_state = 93}, + [5037] = {.lex_state = 525, .external_lex_state = 93}, + [5038] = {.lex_state = 89, .external_lex_state = 93}, + [5039] = {.lex_state = 288, .external_lex_state = 97}, + [5040] = {.lex_state = 89, .external_lex_state = 93}, + [5041] = {.lex_state = 466, .external_lex_state = 100}, + [5042] = {.lex_state = 89, .external_lex_state = 93}, + [5043] = {.lex_state = 89, .external_lex_state = 93}, + [5044] = {.lex_state = 89, .external_lex_state = 93}, + [5045] = {.lex_state = 89, .external_lex_state = 93}, + [5046] = {.lex_state = 89, .external_lex_state = 93}, + [5047] = {.lex_state = 89, .external_lex_state = 93}, + [5048] = {.lex_state = 89, .external_lex_state = 93}, + [5049] = {.lex_state = 89, .external_lex_state = 93}, + [5050] = {.lex_state = 466, .external_lex_state = 100}, + [5051] = {.lex_state = 89, .external_lex_state = 93}, + [5052] = {.lex_state = 89, .external_lex_state = 93}, + [5053] = {.lex_state = 89, .external_lex_state = 93}, + [5054] = {.lex_state = 89, .external_lex_state = 93}, + [5055] = {.lex_state = 89, .external_lex_state = 93}, + [5056] = {.lex_state = 89, .external_lex_state = 93}, + [5057] = {.lex_state = 89, .external_lex_state = 93}, + [5058] = {.lex_state = 89, .external_lex_state = 93}, + [5059] = {.lex_state = 89, .external_lex_state = 93}, + [5060] = {.lex_state = 89, .external_lex_state = 93}, + [5061] = {.lex_state = 89, .external_lex_state = 93}, + [5062] = {.lex_state = 89, .external_lex_state = 93}, + [5063] = {.lex_state = 89, .external_lex_state = 93}, + [5064] = {.lex_state = 89, .external_lex_state = 93}, + [5065] = {.lex_state = 89, .external_lex_state = 93}, + [5066] = {.lex_state = 89, .external_lex_state = 93}, + [5067] = {.lex_state = 89, .external_lex_state = 93}, + [5068] = {.lex_state = 525, .external_lex_state = 93}, + [5069] = {.lex_state = 524, .external_lex_state = 93}, + [5070] = {.lex_state = 89, .external_lex_state = 93}, + [5071] = {.lex_state = 524, .external_lex_state = 93}, + [5072] = {.lex_state = 89, .external_lex_state = 93}, + [5073] = {.lex_state = 89, .external_lex_state = 93}, + [5074] = {.lex_state = 89, .external_lex_state = 93}, + [5075] = {.lex_state = 524, .external_lex_state = 93}, + [5076] = {.lex_state = 300, .external_lex_state = 71}, + [5077] = {.lex_state = 524, .external_lex_state = 93}, + [5078] = {.lex_state = 524, .external_lex_state = 93}, + [5079] = {.lex_state = 524, .external_lex_state = 93}, + [5080] = {.lex_state = 88, .external_lex_state = 93}, + [5081] = {.lex_state = 89, .external_lex_state = 93}, + [5082] = {.lex_state = 288, .external_lex_state = 97}, + [5083] = {.lex_state = 288, .external_lex_state = 97}, + [5084] = {.lex_state = 89, .external_lex_state = 93}, + [5085] = {.lex_state = 288, .external_lex_state = 97}, + [5086] = {.lex_state = 525, .external_lex_state = 93}, + [5087] = {.lex_state = 466, .external_lex_state = 100}, + [5088] = {.lex_state = 89, .external_lex_state = 93}, + [5089] = {.lex_state = 89, .external_lex_state = 93}, + [5090] = {.lex_state = 89, .external_lex_state = 93}, + [5091] = {.lex_state = 88, .external_lex_state = 94}, + [5092] = {.lex_state = 89, .external_lex_state = 95}, + [5093] = {.lex_state = 88, .external_lex_state = 93}, + [5094] = {.lex_state = 524, .external_lex_state = 93}, + [5095] = {.lex_state = 89, .external_lex_state = 93}, + [5096] = {.lex_state = 525, .external_lex_state = 93}, + [5097] = {.lex_state = 89, .external_lex_state = 93}, + [5098] = {.lex_state = 88, .external_lex_state = 93}, + [5099] = {.lex_state = 89, .external_lex_state = 93}, + [5100] = {.lex_state = 88, .external_lex_state = 93}, + [5101] = {.lex_state = 89, .external_lex_state = 93}, + [5102] = {.lex_state = 89, .external_lex_state = 93}, + [5103] = {.lex_state = 89, .external_lex_state = 93}, + [5104] = {.lex_state = 89, .external_lex_state = 93}, + [5105] = {.lex_state = 89, .external_lex_state = 93}, + [5106] = {.lex_state = 524, .external_lex_state = 93}, + [5107] = {.lex_state = 89, .external_lex_state = 93}, + [5108] = {.lex_state = 466, .external_lex_state = 100}, + [5109] = {.lex_state = 288, .external_lex_state = 97}, + [5110] = {.lex_state = 89, .external_lex_state = 93}, + [5111] = {.lex_state = 89, .external_lex_state = 93}, + [5112] = {.lex_state = 89, .external_lex_state = 93}, + [5113] = {.lex_state = 89, .external_lex_state = 93}, + [5114] = {.lex_state = 89, .external_lex_state = 93}, + [5115] = {.lex_state = 466, .external_lex_state = 100}, + [5116] = {.lex_state = 89, .external_lex_state = 93}, + [5117] = {.lex_state = 489, .external_lex_state = 101}, + [5118] = {.lex_state = 89, .external_lex_state = 93}, + [5119] = {.lex_state = 466, .external_lex_state = 100}, + [5120] = {.lex_state = 89, .external_lex_state = 93}, + [5121] = {.lex_state = 88, .external_lex_state = 94}, + [5122] = {.lex_state = 475, .external_lex_state = 67}, + [5123] = {.lex_state = 466, .external_lex_state = 100}, + [5124] = {.lex_state = 489, .external_lex_state = 101}, + [5125] = {.lex_state = 477, .external_lex_state = 99}, + [5126] = {.lex_state = 466, .external_lex_state = 100}, + [5127] = {.lex_state = 475, .external_lex_state = 67}, + [5128] = {.lex_state = 475, .external_lex_state = 67}, + [5129] = {.lex_state = 477, .external_lex_state = 99}, + [5130] = {.lex_state = 489, .external_lex_state = 101}, + [5131] = {.lex_state = 475, .external_lex_state = 67}, + [5132] = {.lex_state = 524, .external_lex_state = 93}, + [5133] = {.lex_state = 454, .external_lex_state = 102}, + [5134] = {.lex_state = 88, .external_lex_state = 93}, + [5135] = {.lex_state = 524, .external_lex_state = 93}, + [5136] = {.lex_state = 475, .external_lex_state = 67}, + [5137] = {.lex_state = 475, .external_lex_state = 67}, + [5138] = {.lex_state = 475, .external_lex_state = 67}, + [5139] = {.lex_state = 454, .external_lex_state = 102}, + [5140] = {.lex_state = 477, .external_lex_state = 99}, + [5141] = {.lex_state = 477, .external_lex_state = 99}, + [5142] = {.lex_state = 486, .external_lex_state = 103}, + [5143] = {.lex_state = 477, .external_lex_state = 99}, + [5144] = {.lex_state = 475, .external_lex_state = 67}, + [5145] = {.lex_state = 466, .external_lex_state = 100}, + [5146] = {.lex_state = 489, .external_lex_state = 101}, + [5147] = {.lex_state = 454, .external_lex_state = 102}, + [5148] = {.lex_state = 475, .external_lex_state = 67}, + [5149] = {.lex_state = 89, .external_lex_state = 94}, + [5150] = {.lex_state = 475, .external_lex_state = 67}, + [5151] = {.lex_state = 88, .external_lex_state = 94}, + [5152] = {.lex_state = 524, .external_lex_state = 93}, + [5153] = {.lex_state = 88, .external_lex_state = 94}, + [5154] = {.lex_state = 477, .external_lex_state = 99}, + [5155] = {.lex_state = 475, .external_lex_state = 67}, + [5156] = {.lex_state = 89, .external_lex_state = 95}, + [5157] = {.lex_state = 89, .external_lex_state = 95}, + [5158] = {.lex_state = 466, .external_lex_state = 100}, + [5159] = {.lex_state = 477, .external_lex_state = 99}, + [5160] = {.lex_state = 477, .external_lex_state = 99}, + [5161] = {.lex_state = 477, .external_lex_state = 99}, + [5162] = {.lex_state = 477, .external_lex_state = 99}, + [5163] = {.lex_state = 477, .external_lex_state = 99}, + [5164] = {.lex_state = 466, .external_lex_state = 100}, + [5165] = {.lex_state = 489, .external_lex_state = 101}, + [5166] = {.lex_state = 477, .external_lex_state = 99}, + [5167] = {.lex_state = 477, .external_lex_state = 99}, + [5168] = {.lex_state = 477, .external_lex_state = 99}, + [5169] = {.lex_state = 477, .external_lex_state = 99}, + [5170] = {.lex_state = 489, .external_lex_state = 101}, + [5171] = {.lex_state = 454, .external_lex_state = 104}, + [5172] = {.lex_state = 466, .external_lex_state = 100}, + [5173] = {.lex_state = 477, .external_lex_state = 99}, + [5174] = {.lex_state = 477, .external_lex_state = 99}, + [5175] = {.lex_state = 477, .external_lex_state = 99}, + [5176] = {.lex_state = 477, .external_lex_state = 99}, + [5177] = {.lex_state = 466, .external_lex_state = 100}, + [5178] = {.lex_state = 466, .external_lex_state = 100}, + [5179] = {.lex_state = 477, .external_lex_state = 99}, + [5180] = {.lex_state = 477, .external_lex_state = 99}, + [5181] = {.lex_state = 477, .external_lex_state = 99}, + [5182] = {.lex_state = 489, .external_lex_state = 101}, + [5183] = {.lex_state = 477, .external_lex_state = 99}, + [5184] = {.lex_state = 478, .external_lex_state = 105}, + [5185] = {.lex_state = 88, .external_lex_state = 93}, + [5186] = {.lex_state = 475, .external_lex_state = 67}, + [5187] = {.lex_state = 489, .external_lex_state = 101}, + [5188] = {.lex_state = 477, .external_lex_state = 99}, + [5189] = {.lex_state = 477, .external_lex_state = 99}, + [5190] = {.lex_state = 466, .external_lex_state = 100}, + [5191] = {.lex_state = 477, .external_lex_state = 99}, + [5192] = {.lex_state = 477, .external_lex_state = 99}, + [5193] = {.lex_state = 466, .external_lex_state = 100}, + [5194] = {.lex_state = 475, .external_lex_state = 67}, + [5195] = {.lex_state = 477, .external_lex_state = 99}, + [5196] = {.lex_state = 466, .external_lex_state = 100}, + [5197] = {.lex_state = 466, .external_lex_state = 100}, + [5198] = {.lex_state = 475, .external_lex_state = 67}, + [5199] = {.lex_state = 87, .external_lex_state = 106}, + [5200] = {.lex_state = 475, .external_lex_state = 67}, + [5201] = {.lex_state = 487, .external_lex_state = 107}, + [5202] = {.lex_state = 466, .external_lex_state = 100}, + [5203] = {.lex_state = 475, .external_lex_state = 67}, + [5204] = {.lex_state = 466, .external_lex_state = 100}, + [5205] = {.lex_state = 477, .external_lex_state = 99}, + [5206] = {.lex_state = 477, .external_lex_state = 99}, + [5207] = {.lex_state = 466, .external_lex_state = 100}, + [5208] = {.lex_state = 477, .external_lex_state = 99}, + [5209] = {.lex_state = 466, .external_lex_state = 100}, + [5210] = {.lex_state = 524, .external_lex_state = 93}, + [5211] = {.lex_state = 490, .external_lex_state = 101}, + [5212] = {.lex_state = 475, .external_lex_state = 67}, + [5213] = {.lex_state = 489, .external_lex_state = 101}, + [5214] = {.lex_state = 466, .external_lex_state = 100}, + [5215] = {.lex_state = 466, .external_lex_state = 100}, + [5216] = {.lex_state = 475, .external_lex_state = 67}, + [5217] = {.lex_state = 524, .external_lex_state = 93}, + [5218] = {.lex_state = 477, .external_lex_state = 99}, + [5219] = {.lex_state = 87, .external_lex_state = 106}, + [5220] = {.lex_state = 524, .external_lex_state = 93}, + [5221] = {.lex_state = 477, .external_lex_state = 99}, + [5222] = {.lex_state = 87, .external_lex_state = 106}, + [5223] = {.lex_state = 477, .external_lex_state = 99}, + [5224] = {.lex_state = 466, .external_lex_state = 100}, + [5225] = {.lex_state = 475, .external_lex_state = 67}, + [5226] = {.lex_state = 489, .external_lex_state = 101}, + [5227] = {.lex_state = 475, .external_lex_state = 67}, + [5228] = {.lex_state = 475, .external_lex_state = 67}, + [5229] = {.lex_state = 454, .external_lex_state = 104}, + [5230] = {.lex_state = 89, .external_lex_state = 65}, + [5231] = {.lex_state = 475, .external_lex_state = 67}, + [5232] = {.lex_state = 89, .external_lex_state = 65}, + [5233] = {.lex_state = 89, .external_lex_state = 95}, + [5234] = {.lex_state = 89, .external_lex_state = 95}, + [5235] = {.lex_state = 477, .external_lex_state = 99}, + [5236] = {.lex_state = 88, .external_lex_state = 94}, + [5237] = {.lex_state = 88, .external_lex_state = 94}, + [5238] = {.lex_state = 88, .external_lex_state = 94}, + [5239] = {.lex_state = 88, .external_lex_state = 94}, + [5240] = {.lex_state = 88, .external_lex_state = 94}, + [5241] = {.lex_state = 88, .external_lex_state = 94}, + [5242] = {.lex_state = 88, .external_lex_state = 94}, + [5243] = {.lex_state = 475, .external_lex_state = 67}, + [5244] = {.lex_state = 477, .external_lex_state = 99}, + [5245] = {.lex_state = 477, .external_lex_state = 99}, + [5246] = {.lex_state = 489, .external_lex_state = 101}, + [5247] = {.lex_state = 475, .external_lex_state = 67}, + [5248] = {.lex_state = 477, .external_lex_state = 99}, + [5249] = {.lex_state = 489, .external_lex_state = 101}, + [5250] = {.lex_state = 477, .external_lex_state = 99}, + [5251] = {.lex_state = 463, .external_lex_state = 47}, + [5252] = {.lex_state = 463, .external_lex_state = 47}, + [5253] = {.lex_state = 463, .external_lex_state = 47}, + [5254] = {.lex_state = 463, .external_lex_state = 47}, + [5255] = {.lex_state = 454, .external_lex_state = 102}, + [5256] = {.lex_state = 490, .external_lex_state = 101}, + [5257] = {.lex_state = 490, .external_lex_state = 101}, + [5258] = {.lex_state = 490, .external_lex_state = 101}, + [5259] = {.lex_state = 489, .external_lex_state = 107}, + [5260] = {.lex_state = 463, .external_lex_state = 47}, + [5261] = {.lex_state = 489, .external_lex_state = 107}, + [5262] = {.lex_state = 486, .external_lex_state = 103}, + [5263] = {.lex_state = 490, .external_lex_state = 101}, + [5264] = {.lex_state = 486, .external_lex_state = 103}, + [5265] = {.lex_state = 477, .external_lex_state = 104}, + [5266] = {.lex_state = 463, .external_lex_state = 47}, + [5267] = {.lex_state = 463, .external_lex_state = 47}, + [5268] = {.lex_state = 454, .external_lex_state = 104}, + [5269] = {.lex_state = 489, .external_lex_state = 107}, + [5270] = {.lex_state = 489, .external_lex_state = 107}, + [5271] = {.lex_state = 463, .external_lex_state = 47}, + [5272] = {.lex_state = 463, .external_lex_state = 47}, + [5273] = {.lex_state = 463, .external_lex_state = 47}, + [5274] = {.lex_state = 463, .external_lex_state = 47}, + [5275] = {.lex_state = 463, .external_lex_state = 47}, + [5276] = {.lex_state = 463, .external_lex_state = 47}, + [5277] = {.lex_state = 463, .external_lex_state = 47}, + [5278] = {.lex_state = 463, .external_lex_state = 47}, + [5279] = {.lex_state = 477, .external_lex_state = 104}, + [5280] = {.lex_state = 261, .external_lex_state = 71}, + [5281] = {.lex_state = 463, .external_lex_state = 47}, + [5282] = {.lex_state = 463, .external_lex_state = 47}, + [5283] = {.lex_state = 463, .external_lex_state = 47}, + [5284] = {.lex_state = 477, .external_lex_state = 104}, + [5285] = {.lex_state = 477, .external_lex_state = 104}, + [5286] = {.lex_state = 477, .external_lex_state = 81}, + [5287] = {.lex_state = 463, .external_lex_state = 47}, + [5288] = {.lex_state = 477, .external_lex_state = 104}, + [5289] = {.lex_state = 463, .external_lex_state = 47}, + [5290] = {.lex_state = 463, .external_lex_state = 47}, + [5291] = {.lex_state = 463, .external_lex_state = 47}, + [5292] = {.lex_state = 463, .external_lex_state = 47}, + [5293] = {.lex_state = 463, .external_lex_state = 47}, + [5294] = {.lex_state = 463, .external_lex_state = 47}, + [5295] = {.lex_state = 454, .external_lex_state = 102}, + [5296] = {.lex_state = 463, .external_lex_state = 47}, + [5297] = {.lex_state = 89, .external_lex_state = 93}, + [5298] = {.lex_state = 88, .external_lex_state = 93}, + [5299] = {.lex_state = 89, .external_lex_state = 93}, + [5300] = {.lex_state = 89, .external_lex_state = 93}, + [5301] = {.lex_state = 89, .external_lex_state = 93}, + [5302] = {.lex_state = 88, .external_lex_state = 93}, + [5303] = {.lex_state = 88, .external_lex_state = 93}, + [5304] = {.lex_state = 89, .external_lex_state = 93}, + [5305] = {.lex_state = 477, .external_lex_state = 104}, + [5306] = {.lex_state = 463, .external_lex_state = 78}, + [5307] = {.lex_state = 463, .external_lex_state = 47}, + [5308] = {.lex_state = 463, .external_lex_state = 47}, + [5309] = {.lex_state = 454, .external_lex_state = 104}, + [5310] = {.lex_state = 463, .external_lex_state = 47}, + [5311] = {.lex_state = 463, .external_lex_state = 47}, + [5312] = {.lex_state = 463, .external_lex_state = 47}, + [5313] = {.lex_state = 463, .external_lex_state = 47}, + [5314] = {.lex_state = 463, .external_lex_state = 47}, + [5315] = {.lex_state = 463, .external_lex_state = 47}, + [5316] = {.lex_state = 463, .external_lex_state = 47}, + [5317] = {.lex_state = 463, .external_lex_state = 47}, + [5318] = {.lex_state = 89, .external_lex_state = 93}, + [5319] = {.lex_state = 463, .external_lex_state = 47}, + [5320] = {.lex_state = 463, .external_lex_state = 47}, + [5321] = {.lex_state = 477, .external_lex_state = 104}, + [5322] = {.lex_state = 89, .external_lex_state = 94}, + [5323] = {.lex_state = 89, .external_lex_state = 94}, + [5324] = {.lex_state = 463, .external_lex_state = 78}, + [5325] = {.lex_state = 477, .external_lex_state = 104}, + [5326] = {.lex_state = 463, .external_lex_state = 47}, + [5327] = {.lex_state = 463, .external_lex_state = 47}, + [5328] = {.lex_state = 490, .external_lex_state = 101}, + [5329] = {.lex_state = 490, .external_lex_state = 101}, + [5330] = {.lex_state = 463, .external_lex_state = 47}, + [5331] = {.lex_state = 463, .external_lex_state = 47}, + [5332] = {.lex_state = 463, .external_lex_state = 47}, + [5333] = {.lex_state = 463, .external_lex_state = 47}, + [5334] = {.lex_state = 463, .external_lex_state = 47}, + [5335] = {.lex_state = 490, .external_lex_state = 101}, + [5336] = {.lex_state = 463, .external_lex_state = 47}, + [5337] = {.lex_state = 490, .external_lex_state = 101}, + [5338] = {.lex_state = 463, .external_lex_state = 47}, + [5339] = {.lex_state = 490, .external_lex_state = 101}, + [5340] = {.lex_state = 454, .external_lex_state = 104}, + [5341] = {.lex_state = 463, .external_lex_state = 47}, + [5342] = {.lex_state = 463, .external_lex_state = 47}, + [5343] = {.lex_state = 477, .external_lex_state = 104}, + [5344] = {.lex_state = 489, .external_lex_state = 101}, + [5345] = {.lex_state = 463, .external_lex_state = 47}, + [5346] = {.lex_state = 489, .external_lex_state = 101}, + [5347] = {.lex_state = 489, .external_lex_state = 101}, + [5348] = {.lex_state = 489, .external_lex_state = 101}, + [5349] = {.lex_state = 489, .external_lex_state = 101}, + [5350] = {.lex_state = 87, .external_lex_state = 106}, + [5351] = {.lex_state = 489, .external_lex_state = 101}, + [5352] = {.lex_state = 489, .external_lex_state = 101}, + [5353] = {.lex_state = 486, .external_lex_state = 103}, + [5354] = {.lex_state = 486, .external_lex_state = 103}, + [5355] = {.lex_state = 454, .external_lex_state = 104}, + [5356] = {.lex_state = 486, .external_lex_state = 103}, + [5357] = {.lex_state = 489, .external_lex_state = 107}, + [5358] = {.lex_state = 489, .external_lex_state = 107}, + [5359] = {.lex_state = 454, .external_lex_state = 104}, + [5360] = {.lex_state = 489, .external_lex_state = 101}, + [5361] = {.lex_state = 489, .external_lex_state = 101}, + [5362] = {.lex_state = 489, .external_lex_state = 101}, + [5363] = {.lex_state = 489, .external_lex_state = 101}, + [5364] = {.lex_state = 489, .external_lex_state = 101}, + [5365] = {.lex_state = 489, .external_lex_state = 101}, + [5366] = {.lex_state = 489, .external_lex_state = 101}, + [5367] = {.lex_state = 489, .external_lex_state = 101}, + [5368] = {.lex_state = 489, .external_lex_state = 101}, + [5369] = {.lex_state = 477, .external_lex_state = 104}, + [5370] = {.lex_state = 489, .external_lex_state = 101}, + [5371] = {.lex_state = 489, .external_lex_state = 101}, + [5372] = {.lex_state = 489, .external_lex_state = 101}, + [5373] = {.lex_state = 463, .external_lex_state = 47}, + [5374] = {.lex_state = 463, .external_lex_state = 47}, + [5375] = {.lex_state = 489, .external_lex_state = 107}, + [5376] = {.lex_state = 489, .external_lex_state = 107}, + [5377] = {.lex_state = 477, .external_lex_state = 81}, + [5378] = {.lex_state = 463, .external_lex_state = 47}, + [5379] = {.lex_state = 463, .external_lex_state = 47}, + [5380] = {.lex_state = 486, .external_lex_state = 107}, + [5381] = {.lex_state = 489, .external_lex_state = 107}, + [5382] = {.lex_state = 489, .external_lex_state = 107}, + [5383] = {.lex_state = 463, .external_lex_state = 47}, + [5384] = {.lex_state = 489, .external_lex_state = 107}, + [5385] = {.lex_state = 463, .external_lex_state = 47}, + [5386] = {.lex_state = 463, .external_lex_state = 47}, + [5387] = {.lex_state = 463, .external_lex_state = 47}, + [5388] = {.lex_state = 463, .external_lex_state = 47}, + [5389] = {.lex_state = 463, .external_lex_state = 47}, + [5390] = {.lex_state = 463, .external_lex_state = 47}, + [5391] = {.lex_state = 89, .external_lex_state = 94}, + [5392] = {.lex_state = 89, .external_lex_state = 94}, + [5393] = {.lex_state = 89, .external_lex_state = 94}, + [5394] = {.lex_state = 89, .external_lex_state = 94}, + [5395] = {.lex_state = 89, .external_lex_state = 94}, + [5396] = {.lex_state = 89, .external_lex_state = 94}, + [5397] = {.lex_state = 89, .external_lex_state = 94}, + [5398] = {.lex_state = 89, .external_lex_state = 94}, + [5399] = {.lex_state = 463, .external_lex_state = 47}, + [5400] = {.lex_state = 463, .external_lex_state = 47}, + [5401] = {.lex_state = 490, .external_lex_state = 101}, + [5402] = {.lex_state = 463, .external_lex_state = 47}, + [5403] = {.lex_state = 490, .external_lex_state = 101}, + [5404] = {.lex_state = 489, .external_lex_state = 107}, + [5405] = {.lex_state = 486, .external_lex_state = 103}, + [5406] = {.lex_state = 477, .external_lex_state = 102}, + [5407] = {.lex_state = 477, .external_lex_state = 104}, + [5408] = {.lex_state = 487, .external_lex_state = 102}, + [5409] = {.lex_state = 454, .external_lex_state = 102}, + [5410] = {.lex_state = 477, .external_lex_state = 102}, + [5411] = {.lex_state = 261, .external_lex_state = 71}, + [5412] = {.lex_state = 489, .external_lex_state = 107}, + [5413] = {.lex_state = 489, .external_lex_state = 107}, + [5414] = {.lex_state = 486, .external_lex_state = 103}, + [5415] = {.lex_state = 486, .external_lex_state = 103}, + [5416] = {.lex_state = 489, .external_lex_state = 107}, + [5417] = {.lex_state = 487, .external_lex_state = 102}, + [5418] = {.lex_state = 489, .external_lex_state = 107}, + [5419] = {.lex_state = 87, .external_lex_state = 106}, + [5420] = {.lex_state = 489, .external_lex_state = 107}, + [5421] = {.lex_state = 486, .external_lex_state = 107}, + [5422] = {.lex_state = 489, .external_lex_state = 107}, + [5423] = {.lex_state = 486, .external_lex_state = 107}, + [5424] = {.lex_state = 486, .external_lex_state = 107}, + [5425] = {.lex_state = 486, .external_lex_state = 107}, + [5426] = {.lex_state = 486, .external_lex_state = 103}, + [5427] = {.lex_state = 489, .external_lex_state = 107}, + [5428] = {.lex_state = 486, .external_lex_state = 107}, + [5429] = {.lex_state = 87, .external_lex_state = 106}, + [5430] = {.lex_state = 490, .external_lex_state = 101}, + [5431] = {.lex_state = 486, .external_lex_state = 107}, + [5432] = {.lex_state = 490, .external_lex_state = 101}, + [5433] = {.lex_state = 490, .external_lex_state = 101}, + [5434] = {.lex_state = 489, .external_lex_state = 107}, + [5435] = {.lex_state = 477, .external_lex_state = 104}, + [5436] = {.lex_state = 490, .external_lex_state = 101}, + [5437] = {.lex_state = 490, .external_lex_state = 101}, + [5438] = {.lex_state = 490, .external_lex_state = 101}, + [5439] = {.lex_state = 477, .external_lex_state = 102}, + [5440] = {.lex_state = 490, .external_lex_state = 101}, + [5441] = {.lex_state = 489, .external_lex_state = 107}, + [5442] = {.lex_state = 489, .external_lex_state = 107}, + [5443] = {.lex_state = 477, .external_lex_state = 104}, + [5444] = {.lex_state = 489, .external_lex_state = 107}, + [5445] = {.lex_state = 486, .external_lex_state = 103}, + [5446] = {.lex_state = 454, .external_lex_state = 102}, + [5447] = {.lex_state = 486, .external_lex_state = 103}, + [5448] = {.lex_state = 454, .external_lex_state = 104}, + [5449] = {.lex_state = 486, .external_lex_state = 103}, + [5450] = {.lex_state = 486, .external_lex_state = 103}, + [5451] = {.lex_state = 486, .external_lex_state = 103}, + [5452] = {.lex_state = 489, .external_lex_state = 107}, + [5453] = {.lex_state = 486, .external_lex_state = 107}, + [5454] = {.lex_state = 486, .external_lex_state = 103}, + [5455] = {.lex_state = 490, .external_lex_state = 101}, + [5456] = {.lex_state = 490, .external_lex_state = 101}, + [5457] = {.lex_state = 486, .external_lex_state = 103}, + [5458] = {.lex_state = 490, .external_lex_state = 101}, + [5459] = {.lex_state = 487, .external_lex_state = 102}, + [5460] = {.lex_state = 490, .external_lex_state = 101}, + [5461] = {.lex_state = 490, .external_lex_state = 101}, + [5462] = {.lex_state = 490, .external_lex_state = 101}, + [5463] = {.lex_state = 490, .external_lex_state = 101}, + [5464] = {.lex_state = 490, .external_lex_state = 101}, + [5465] = {.lex_state = 486, .external_lex_state = 81}, + [5466] = {.lex_state = 486, .external_lex_state = 103}, + [5467] = {.lex_state = 490, .external_lex_state = 101}, + [5468] = {.lex_state = 486, .external_lex_state = 103}, + [5469] = {.lex_state = 87, .external_lex_state = 106}, + [5470] = {.lex_state = 490, .external_lex_state = 101}, + [5471] = {.lex_state = 490, .external_lex_state = 101}, + [5472] = {.lex_state = 490, .external_lex_state = 101}, + [5473] = {.lex_state = 477, .external_lex_state = 102}, + [5474] = {.lex_state = 486, .external_lex_state = 81}, + [5475] = {.lex_state = 486, .external_lex_state = 107}, + [5476] = {.lex_state = 486, .external_lex_state = 107}, + [5477] = {.lex_state = 486, .external_lex_state = 107}, + [5478] = {.lex_state = 478, .external_lex_state = 108}, + [5479] = {.lex_state = 489, .external_lex_state = 107}, + [5480] = {.lex_state = 486, .external_lex_state = 103}, + [5481] = {.lex_state = 487, .external_lex_state = 102}, + [5482] = {.lex_state = 477, .external_lex_state = 104}, + [5483] = {.lex_state = 486, .external_lex_state = 103}, + [5484] = {.lex_state = 486, .external_lex_state = 103}, + [5485] = {.lex_state = 486, .external_lex_state = 103}, + [5486] = {.lex_state = 489, .external_lex_state = 107}, + [5487] = {.lex_state = 489, .external_lex_state = 107}, + [5488] = {.lex_state = 454, .external_lex_state = 102}, + [5489] = {.lex_state = 489, .external_lex_state = 107}, + [5490] = {.lex_state = 489, .external_lex_state = 107}, + [5491] = {.lex_state = 486, .external_lex_state = 103}, + [5492] = {.lex_state = 486, .external_lex_state = 103}, + [5493] = {.lex_state = 489, .external_lex_state = 107}, + [5494] = {.lex_state = 477, .external_lex_state = 102}, + [5495] = {.lex_state = 463, .external_lex_state = 78}, + [5496] = {.lex_state = 477, .external_lex_state = 104}, + [5497] = {.lex_state = 487, .external_lex_state = 102}, + [5498] = {.lex_state = 486, .external_lex_state = 107}, + [5499] = {.lex_state = 486, .external_lex_state = 107}, + [5500] = {.lex_state = 89, .external_lex_state = 93}, + [5501] = {.lex_state = 486, .external_lex_state = 107}, + [5502] = {.lex_state = 87, .external_lex_state = 109}, + [5503] = {.lex_state = 87, .external_lex_state = 109}, + [5504] = {.lex_state = 486, .external_lex_state = 107}, + [5505] = {.lex_state = 486, .external_lex_state = 102}, + [5506] = {.lex_state = 454, .external_lex_state = 104}, + [5507] = {.lex_state = 87, .external_lex_state = 109}, + [5508] = {.lex_state = 87, .external_lex_state = 109}, + [5509] = {.lex_state = 87, .external_lex_state = 109}, + [5510] = {.lex_state = 477, .external_lex_state = 104}, + [5511] = {.lex_state = 486, .external_lex_state = 107}, + [5512] = {.lex_state = 486, .external_lex_state = 107}, + [5513] = {.lex_state = 486, .external_lex_state = 107}, + [5514] = {.lex_state = 486, .external_lex_state = 107}, + [5515] = {.lex_state = 487, .external_lex_state = 102}, + [5516] = {.lex_state = 274, .external_lex_state = 110}, + [5517] = {.lex_state = 274, .external_lex_state = 110}, + [5518] = {.lex_state = 486, .external_lex_state = 102}, + [5519] = {.lex_state = 486, .external_lex_state = 102}, + [5520] = {.lex_state = 454, .external_lex_state = 104}, + [5521] = {.lex_state = 486, .external_lex_state = 81}, + [5522] = {.lex_state = 486, .external_lex_state = 107}, + [5523] = {.lex_state = 90, .external_lex_state = 111}, + [5524] = {.lex_state = 87, .external_lex_state = 109}, + [5525] = {.lex_state = 486, .external_lex_state = 107}, + [5526] = {.lex_state = 486, .external_lex_state = 107}, + [5527] = {.lex_state = 87, .external_lex_state = 109}, + [5528] = {.lex_state = 87, .external_lex_state = 109}, + [5529] = {.lex_state = 486, .external_lex_state = 107}, + [5530] = {.lex_state = 486, .external_lex_state = 107}, + [5531] = {.lex_state = 486, .external_lex_state = 107}, + [5532] = {.lex_state = 486, .external_lex_state = 107}, + [5533] = {.lex_state = 486, .external_lex_state = 102}, + [5534] = {.lex_state = 89, .external_lex_state = 93}, + [5535] = {.lex_state = 89, .external_lex_state = 93}, + [5536] = {.lex_state = 486, .external_lex_state = 107}, + [5537] = {.lex_state = 454, .external_lex_state = 104}, + [5538] = {.lex_state = 486, .external_lex_state = 107}, + [5539] = {.lex_state = 486, .external_lex_state = 107}, + [5540] = {.lex_state = 486, .external_lex_state = 107}, + [5541] = {.lex_state = 454, .external_lex_state = 104}, + [5542] = {.lex_state = 486, .external_lex_state = 102}, + [5543] = {.lex_state = 486, .external_lex_state = 107}, + [5544] = {.lex_state = 87, .external_lex_state = 109}, + [5545] = {.lex_state = 89, .external_lex_state = 93}, + [5546] = {.lex_state = 87, .external_lex_state = 109}, + [5547] = {.lex_state = 477, .external_lex_state = 104}, + [5548] = {.lex_state = 477, .external_lex_state = 104}, + [5549] = {.lex_state = 477, .external_lex_state = 104}, + [5550] = {.lex_state = 477, .external_lex_state = 104}, + [5551] = {.lex_state = 90, .external_lex_state = 111}, + [5552] = {.lex_state = 90, .external_lex_state = 111}, + [5553] = {.lex_state = 477, .external_lex_state = 104}, + [5554] = {.lex_state = 477, .external_lex_state = 81}, + [5555] = {.lex_state = 477, .external_lex_state = 104}, + [5556] = {.lex_state = 477, .external_lex_state = 104}, + [5557] = {.lex_state = 477, .external_lex_state = 102}, + [5558] = {.lex_state = 477, .external_lex_state = 102}, + [5559] = {.lex_state = 454, .external_lex_state = 102}, + [5560] = {.lex_state = 454, .external_lex_state = 102}, + [5561] = {.lex_state = 454, .external_lex_state = 102}, + [5562] = {.lex_state = 90, .external_lex_state = 111}, + [5563] = {.lex_state = 90, .external_lex_state = 111}, + [5564] = {.lex_state = 87, .external_lex_state = 109}, + [5565] = {.lex_state = 454, .external_lex_state = 102}, + [5566] = {.lex_state = 90, .external_lex_state = 111}, + [5567] = {.lex_state = 477, .external_lex_state = 102}, + [5568] = {.lex_state = 477, .external_lex_state = 104}, + [5569] = {.lex_state = 90, .external_lex_state = 111}, + [5570] = {.lex_state = 90, .external_lex_state = 111}, + [5571] = {.lex_state = 477, .external_lex_state = 104}, + [5572] = {.lex_state = 477, .external_lex_state = 104}, + [5573] = {.lex_state = 477, .external_lex_state = 102}, + [5574] = {.lex_state = 477, .external_lex_state = 104}, + [5575] = {.lex_state = 477, .external_lex_state = 104}, + [5576] = {.lex_state = 477, .external_lex_state = 81}, + [5577] = {.lex_state = 454, .external_lex_state = 102}, + [5578] = {.lex_state = 477, .external_lex_state = 102}, + [5579] = {.lex_state = 454, .external_lex_state = 102}, + [5580] = {.lex_state = 477, .external_lex_state = 104}, + [5581] = {.lex_state = 477, .external_lex_state = 104}, + [5582] = {.lex_state = 454, .external_lex_state = 102}, + [5583] = {.lex_state = 477, .external_lex_state = 102}, + [5584] = {.lex_state = 477, .external_lex_state = 81}, + [5585] = {.lex_state = 454, .external_lex_state = 102}, + [5586] = {.lex_state = 477, .external_lex_state = 102}, + [5587] = {.lex_state = 477, .external_lex_state = 104}, + [5588] = {.lex_state = 454, .external_lex_state = 102}, + [5589] = {.lex_state = 90, .external_lex_state = 111}, + [5590] = {.lex_state = 454, .external_lex_state = 102}, + [5591] = {.lex_state = 90, .external_lex_state = 111}, + [5592] = {.lex_state = 477, .external_lex_state = 104}, + [5593] = {.lex_state = 477, .external_lex_state = 102}, + [5594] = {.lex_state = 477, .external_lex_state = 102}, + [5595] = {.lex_state = 454, .external_lex_state = 102}, + [5596] = {.lex_state = 90, .external_lex_state = 111}, + [5597] = {.lex_state = 477, .external_lex_state = 104}, + [5598] = {.lex_state = 477, .external_lex_state = 102}, + [5599] = {.lex_state = 477, .external_lex_state = 104}, + [5600] = {.lex_state = 477, .external_lex_state = 104}, + [5601] = {.lex_state = 477, .external_lex_state = 104}, + [5602] = {.lex_state = 454, .external_lex_state = 102}, + [5603] = {.lex_state = 454, .external_lex_state = 102}, + [5604] = {.lex_state = 454, .external_lex_state = 102}, + [5605] = {.lex_state = 477, .external_lex_state = 104}, + [5606] = {.lex_state = 477, .external_lex_state = 102}, + [5607] = {.lex_state = 477, .external_lex_state = 104}, + [5608] = {.lex_state = 454, .external_lex_state = 102}, + [5609] = {.lex_state = 90, .external_lex_state = 111}, + [5610] = {.lex_state = 477, .external_lex_state = 104}, + [5611] = {.lex_state = 454, .external_lex_state = 102}, + [5612] = {.lex_state = 454, .external_lex_state = 102}, + [5613] = {.lex_state = 477, .external_lex_state = 102}, + [5614] = {.lex_state = 486, .external_lex_state = 102}, + [5615] = {.lex_state = 477, .external_lex_state = 104}, + [5616] = {.lex_state = 477, .external_lex_state = 104}, + [5617] = {.lex_state = 90, .external_lex_state = 109}, + [5618] = {.lex_state = 90, .external_lex_state = 111}, + [5619] = {.lex_state = 90, .external_lex_state = 111}, + [5620] = {.lex_state = 477, .external_lex_state = 102}, + [5621] = {.lex_state = 477, .external_lex_state = 102}, + [5622] = {.lex_state = 477, .external_lex_state = 102}, + [5623] = {.lex_state = 90, .external_lex_state = 111}, + [5624] = {.lex_state = 477, .external_lex_state = 102}, + [5625] = {.lex_state = 90, .external_lex_state = 111}, + [5626] = {.lex_state = 477, .external_lex_state = 102}, + [5627] = {.lex_state = 90, .external_lex_state = 111}, + [5628] = {.lex_state = 477, .external_lex_state = 102}, + [5629] = {.lex_state = 90, .external_lex_state = 111}, + [5630] = {.lex_state = 477, .external_lex_state = 102}, + [5631] = {.lex_state = 90, .external_lex_state = 109}, + [5632] = {.lex_state = 477, .external_lex_state = 102}, + [5633] = {.lex_state = 477, .external_lex_state = 102}, + [5634] = {.lex_state = 477, .external_lex_state = 102}, + [5635] = {.lex_state = 477, .external_lex_state = 102}, + [5636] = {.lex_state = 90, .external_lex_state = 111}, + [5637] = {.lex_state = 477, .external_lex_state = 102}, + [5638] = {.lex_state = 90, .external_lex_state = 109}, + [5639] = {.lex_state = 477, .external_lex_state = 102}, + [5640] = {.lex_state = 477, .external_lex_state = 102}, + [5641] = {.lex_state = 477, .external_lex_state = 102}, + [5642] = {.lex_state = 477, .external_lex_state = 102}, + [5643] = {.lex_state = 90, .external_lex_state = 111}, + [5644] = {.lex_state = 477, .external_lex_state = 102}, + [5645] = {.lex_state = 477, .external_lex_state = 102}, + [5646] = {.lex_state = 477, .external_lex_state = 102}, + [5647] = {.lex_state = 477, .external_lex_state = 102}, + [5648] = {.lex_state = 477, .external_lex_state = 102}, + [5649] = {.lex_state = 477, .external_lex_state = 102}, + [5650] = {.lex_state = 477, .external_lex_state = 102}, + [5651] = {.lex_state = 90, .external_lex_state = 111}, + [5652] = {.lex_state = 477, .external_lex_state = 102}, + [5653] = {.lex_state = 90, .external_lex_state = 109}, + [5654] = {.lex_state = 477, .external_lex_state = 102}, + [5655] = {.lex_state = 477, .external_lex_state = 102}, + [5656] = {.lex_state = 477, .external_lex_state = 102}, + [5657] = {.lex_state = 90, .external_lex_state = 111}, + [5658] = {.lex_state = 90, .external_lex_state = 111}, + [5659] = {.lex_state = 477, .external_lex_state = 102}, + [5660] = {.lex_state = 90, .external_lex_state = 111}, + [5661] = {.lex_state = 477, .external_lex_state = 102}, + [5662] = {.lex_state = 477, .external_lex_state = 102}, + [5663] = {.lex_state = 477, .external_lex_state = 102}, + [5664] = {.lex_state = 477, .external_lex_state = 102}, + [5665] = {.lex_state = 477, .external_lex_state = 102}, + [5666] = {.lex_state = 477, .external_lex_state = 102}, + [5667] = {.lex_state = 477, .external_lex_state = 102}, + [5668] = {.lex_state = 477, .external_lex_state = 102}, + [5669] = {.lex_state = 477, .external_lex_state = 102}, + [5670] = {.lex_state = 90, .external_lex_state = 109}, + [5671] = {.lex_state = 90, .external_lex_state = 111}, + [5672] = {.lex_state = 477, .external_lex_state = 102}, + [5673] = {.lex_state = 477, .external_lex_state = 102}, + [5674] = {.lex_state = 477, .external_lex_state = 102}, + [5675] = {.lex_state = 477, .external_lex_state = 102}, + [5676] = {.lex_state = 477, .external_lex_state = 102}, + [5677] = {.lex_state = 477, .external_lex_state = 102}, + [5678] = {.lex_state = 90, .external_lex_state = 111}, + [5679] = {.lex_state = 477, .external_lex_state = 102}, + [5680] = {.lex_state = 477, .external_lex_state = 102}, + [5681] = {.lex_state = 477, .external_lex_state = 102}, + [5682] = {.lex_state = 477, .external_lex_state = 102}, + [5683] = {.lex_state = 477, .external_lex_state = 102}, + [5684] = {.lex_state = 477, .external_lex_state = 102}, + [5685] = {.lex_state = 477, .external_lex_state = 102}, + [5686] = {.lex_state = 90, .external_lex_state = 111}, + [5687] = {.lex_state = 90, .external_lex_state = 111}, + [5688] = {.lex_state = 90, .external_lex_state = 111}, + [5689] = {.lex_state = 477, .external_lex_state = 102}, + [5690] = {.lex_state = 477, .external_lex_state = 102}, + [5691] = {.lex_state = 90, .external_lex_state = 111}, + [5692] = {.lex_state = 477, .external_lex_state = 102}, + [5693] = {.lex_state = 90, .external_lex_state = 111}, + [5694] = {.lex_state = 477, .external_lex_state = 102}, + [5695] = {.lex_state = 477, .external_lex_state = 102}, + [5696] = {.lex_state = 477, .external_lex_state = 102}, + [5697] = {.lex_state = 458, .external_lex_state = 112}, + [5698] = {.lex_state = 451, .external_lex_state = 112}, + [5699] = {.lex_state = 90, .external_lex_state = 109}, + [5700] = {.lex_state = 451, .external_lex_state = 112}, + [5701] = {.lex_state = 458, .external_lex_state = 112}, + [5702] = {.lex_state = 483}, + [5703] = {.lex_state = 483}, + [5704] = {.lex_state = 87, .external_lex_state = 109}, + [5705] = {.lex_state = 483}, + [5706] = {.lex_state = 483}, + [5707] = {.lex_state = 483}, + [5708] = {.lex_state = 483}, + [5709] = {.lex_state = 87, .external_lex_state = 109}, + [5710] = {.lex_state = 483}, + [5711] = {.lex_state = 483}, + [5712] = {.lex_state = 483}, + [5713] = {.lex_state = 87, .external_lex_state = 109}, + [5714] = {.lex_state = 483}, + [5715] = {.lex_state = 483}, + [5716] = {.lex_state = 483}, + [5717] = {.lex_state = 483}, + [5718] = {.lex_state = 483}, + [5719] = {.lex_state = 483}, + [5720] = {.lex_state = 483}, + [5721] = {.lex_state = 483}, + [5722] = {.lex_state = 483}, + [5723] = {.lex_state = 483}, + [5724] = {.lex_state = 483}, + [5725] = {.lex_state = 483}, + [5726] = {.lex_state = 483}, + [5727] = {.lex_state = 483}, + [5728] = {.lex_state = 483}, + [5729] = {.lex_state = 483}, + [5730] = {.lex_state = 483}, + [5731] = {.lex_state = 483}, + [5732] = {.lex_state = 483}, + [5733] = {.lex_state = 483}, + [5734] = {.lex_state = 483}, + [5735] = {.lex_state = 483}, + [5736] = {.lex_state = 483}, + [5737] = {.lex_state = 483}, + [5738] = {.lex_state = 483}, + [5739] = {.lex_state = 483}, + [5740] = {.lex_state = 483}, + [5741] = {.lex_state = 483}, + [5742] = {.lex_state = 483}, + [5743] = {.lex_state = 483}, + [5744] = {.lex_state = 483}, + [5745] = {.lex_state = 483}, + [5746] = {.lex_state = 483}, + [5747] = {.lex_state = 483}, + [5748] = {.lex_state = 483}, + [5749] = {.lex_state = 483}, + [5750] = {.lex_state = 483}, + [5751] = {.lex_state = 483}, + [5752] = {.lex_state = 483}, + [5753] = {.lex_state = 483}, + [5754] = {.lex_state = 483}, + [5755] = {.lex_state = 483}, + [5756] = {.lex_state = 483}, + [5757] = {.lex_state = 483}, + [5758] = {.lex_state = 483}, + [5759] = {.lex_state = 483}, + [5760] = {.lex_state = 483}, + [5761] = {.lex_state = 483}, + [5762] = {.lex_state = 483}, + [5763] = {.lex_state = 483}, + [5764] = {.lex_state = 483}, + [5765] = {.lex_state = 483}, + [5766] = {.lex_state = 483}, + [5767] = {.lex_state = 483}, + [5768] = {.lex_state = 483}, + [5769] = {.lex_state = 483}, + [5770] = {.lex_state = 483}, + [5771] = {.lex_state = 483}, + [5772] = {.lex_state = 483}, + [5773] = {.lex_state = 483}, + [5774] = {.lex_state = 483}, + [5775] = {.lex_state = 483}, + [5776] = {.lex_state = 483}, + [5777] = {.lex_state = 483}, + [5778] = {.lex_state = 483}, + [5779] = {.lex_state = 483}, + [5780] = {.lex_state = 483}, + [5781] = {.lex_state = 483}, + [5782] = {.lex_state = 483}, + [5783] = {.lex_state = 483}, + [5784] = {.lex_state = 483}, + [5785] = {.lex_state = 483}, + [5786] = {.lex_state = 483}, + [5787] = {.lex_state = 483}, + [5788] = {.lex_state = 483}, + [5789] = {.lex_state = 483}, + [5790] = {.lex_state = 483}, + [5791] = {.lex_state = 483}, + [5792] = {.lex_state = 483}, + [5793] = {.lex_state = 483}, + [5794] = {.lex_state = 483}, + [5795] = {.lex_state = 483}, + [5796] = {.lex_state = 483}, + [5797] = {.lex_state = 483}, + [5798] = {.lex_state = 483}, + [5799] = {.lex_state = 483}, + [5800] = {.lex_state = 483}, + [5801] = {.lex_state = 483}, + [5802] = {.lex_state = 483}, + [5803] = {.lex_state = 483}, + [5804] = {.lex_state = 483}, + [5805] = {.lex_state = 483}, + [5806] = {.lex_state = 483}, + [5807] = {.lex_state = 483}, + [5808] = {.lex_state = 483}, + [5809] = {.lex_state = 483}, + [5810] = {.lex_state = 483}, + [5811] = {.lex_state = 483}, + [5812] = {.lex_state = 483}, + [5813] = {.lex_state = 483}, + [5814] = {.lex_state = 483}, + [5815] = {.lex_state = 483}, + [5816] = {.lex_state = 483}, + [5817] = {.lex_state = 483}, + [5818] = {.lex_state = 483}, + [5819] = {.lex_state = 483}, + [5820] = {.lex_state = 483}, + [5821] = {.lex_state = 483}, + [5822] = {.lex_state = 483}, + [5823] = {.lex_state = 483}, + [5824] = {.lex_state = 483}, + [5825] = {.lex_state = 483}, + [5826] = {.lex_state = 483}, + [5827] = {.lex_state = 483}, + [5828] = {.lex_state = 483}, + [5829] = {.lex_state = 483}, + [5830] = {.lex_state = 483}, + [5831] = {.lex_state = 483}, + [5832] = {.lex_state = 483}, + [5833] = {.lex_state = 483}, + [5834] = {.lex_state = 483}, + [5835] = {.lex_state = 483}, + [5836] = {.lex_state = 87, .external_lex_state = 109}, + [5837] = {.lex_state = 483}, + [5838] = {.lex_state = 483}, + [5839] = {.lex_state = 483}, + [5840] = {.lex_state = 483}, + [5841] = {.lex_state = 483}, + [5842] = {.lex_state = 483}, + [5843] = {.lex_state = 483}, + [5844] = {.lex_state = 483}, + [5845] = {.lex_state = 483}, + [5846] = {.lex_state = 483}, + [5847] = {.lex_state = 483}, + [5848] = {.lex_state = 483}, + [5849] = {.lex_state = 483}, + [5850] = {.lex_state = 483}, + [5851] = {.lex_state = 483}, + [5852] = {.lex_state = 483}, + [5853] = {.lex_state = 483}, + [5854] = {.lex_state = 483}, + [5855] = {.lex_state = 483}, + [5856] = {.lex_state = 483}, + [5857] = {.lex_state = 483}, + [5858] = {.lex_state = 483}, + [5859] = {.lex_state = 483}, + [5860] = {.lex_state = 483}, + [5861] = {.lex_state = 483}, + [5862] = {.lex_state = 483}, + [5863] = {.lex_state = 483}, + [5864] = {.lex_state = 483}, + [5865] = {.lex_state = 453, .external_lex_state = 112}, + [5866] = {.lex_state = 453, .external_lex_state = 112}, + [5867] = {.lex_state = 453, .external_lex_state = 112}, + [5868] = {.lex_state = 453, .external_lex_state = 112}, + [5869] = {.lex_state = 452, .external_lex_state = 112}, + [5870] = {.lex_state = 453, .external_lex_state = 112}, + [5871] = {.lex_state = 452, .external_lex_state = 112}, + [5872] = {.lex_state = 453, .external_lex_state = 112}, + [5873] = {.lex_state = 452, .external_lex_state = 112}, + [5874] = {.lex_state = 452, .external_lex_state = 112}, + [5875] = {.lex_state = 452, .external_lex_state = 112}, + [5876] = {.lex_state = 452, .external_lex_state = 112}, + [5877] = {.lex_state = 452, .external_lex_state = 112}, + [5878] = {.lex_state = 453, .external_lex_state = 112}, + [5879] = {.lex_state = 453, .external_lex_state = 112}, + [5880] = {.lex_state = 452, .external_lex_state = 112}, + [5881] = {.lex_state = 452, .external_lex_state = 112}, + [5882] = {.lex_state = 452, .external_lex_state = 112}, + [5883] = {.lex_state = 453, .external_lex_state = 112}, + [5884] = {.lex_state = 452, .external_lex_state = 112}, + [5885] = {.lex_state = 452, .external_lex_state = 112}, + [5886] = {.lex_state = 453, .external_lex_state = 112}, + [5887] = {.lex_state = 453, .external_lex_state = 112}, + [5888] = {.lex_state = 452, .external_lex_state = 112}, + [5889] = {.lex_state = 452, .external_lex_state = 112}, + [5890] = {.lex_state = 452, .external_lex_state = 112}, + [5891] = {.lex_state = 452, .external_lex_state = 112}, + [5892] = {.lex_state = 452, .external_lex_state = 112}, + [5893] = {.lex_state = 453, .external_lex_state = 112}, + [5894] = {.lex_state = 453, .external_lex_state = 112}, + [5895] = {.lex_state = 452, .external_lex_state = 112}, + [5896] = {.lex_state = 452, .external_lex_state = 112}, + [5897] = {.lex_state = 452, .external_lex_state = 112}, + [5898] = {.lex_state = 452, .external_lex_state = 112}, + [5899] = {.lex_state = 452, .external_lex_state = 112}, + [5900] = {.lex_state = 452, .external_lex_state = 112}, + [5901] = {.lex_state = 452, .external_lex_state = 112}, + [5902] = {.lex_state = 453, .external_lex_state = 112}, + [5903] = {.lex_state = 453, .external_lex_state = 112}, + [5904] = {.lex_state = 452, .external_lex_state = 112}, + [5905] = {.lex_state = 452, .external_lex_state = 112}, + [5906] = {.lex_state = 452, .external_lex_state = 112}, + [5907] = {.lex_state = 452, .external_lex_state = 112}, + [5908] = {.lex_state = 452, .external_lex_state = 112}, + [5909] = {.lex_state = 452, .external_lex_state = 112}, + [5910] = {.lex_state = 453, .external_lex_state = 112}, + [5911] = {.lex_state = 453, .external_lex_state = 112}, + [5912] = {.lex_state = 452, .external_lex_state = 112}, + [5913] = {.lex_state = 452, .external_lex_state = 112}, + [5914] = {.lex_state = 452, .external_lex_state = 112}, + [5915] = {.lex_state = 452, .external_lex_state = 112}, + [5916] = {.lex_state = 453, .external_lex_state = 112}, + [5917] = {.lex_state = 452, .external_lex_state = 112}, + [5918] = {.lex_state = 453, .external_lex_state = 112}, + [5919] = {.lex_state = 452, .external_lex_state = 112}, + [5920] = {.lex_state = 452, .external_lex_state = 112}, + [5921] = {.lex_state = 452, .external_lex_state = 112}, + [5922] = {.lex_state = 452, .external_lex_state = 112}, + [5923] = {.lex_state = 452, .external_lex_state = 112}, + [5924] = {.lex_state = 452, .external_lex_state = 112}, + [5925] = {.lex_state = 453, .external_lex_state = 112}, + [5926] = {.lex_state = 452, .external_lex_state = 112}, + [5927] = {.lex_state = 452, .external_lex_state = 112}, + [5928] = {.lex_state = 452, .external_lex_state = 112}, + [5929] = {.lex_state = 453, .external_lex_state = 112}, + [5930] = {.lex_state = 453, .external_lex_state = 112}, + [5931] = {.lex_state = 452, .external_lex_state = 112}, + [5932] = {.lex_state = 452, .external_lex_state = 112}, + [5933] = {.lex_state = 452, .external_lex_state = 112}, + [5934] = {.lex_state = 452, .external_lex_state = 112}, + [5935] = {.lex_state = 452, .external_lex_state = 112}, + [5936] = {.lex_state = 452, .external_lex_state = 112}, + [5937] = {.lex_state = 452, .external_lex_state = 112}, + [5938] = {.lex_state = 452, .external_lex_state = 112}, + [5939] = {.lex_state = 452, .external_lex_state = 112}, + [5940] = {.lex_state = 452, .external_lex_state = 112}, + [5941] = {.lex_state = 452, .external_lex_state = 112}, + [5942] = {.lex_state = 453, .external_lex_state = 112}, + [5943] = {.lex_state = 452, .external_lex_state = 112}, + [5944] = {.lex_state = 453, .external_lex_state = 112}, + [5945] = {.lex_state = 452, .external_lex_state = 112}, + [5946] = {.lex_state = 452, .external_lex_state = 112}, + [5947] = {.lex_state = 452, .external_lex_state = 112}, + [5948] = {.lex_state = 452, .external_lex_state = 112}, + [5949] = {.lex_state = 452, .external_lex_state = 112}, + [5950] = {.lex_state = 452, .external_lex_state = 112}, + [5951] = {.lex_state = 452, .external_lex_state = 112}, + [5952] = {.lex_state = 452, .external_lex_state = 112}, + [5953] = {.lex_state = 452, .external_lex_state = 112}, + [5954] = {.lex_state = 452, .external_lex_state = 112}, + [5955] = {.lex_state = 452, .external_lex_state = 112}, + [5956] = {.lex_state = 453, .external_lex_state = 112}, + [5957] = {.lex_state = 452, .external_lex_state = 112}, + [5958] = {.lex_state = 452, .external_lex_state = 112}, + [5959] = {.lex_state = 453, .external_lex_state = 112}, + [5960] = {.lex_state = 453, .external_lex_state = 112}, + [5961] = {.lex_state = 453, .external_lex_state = 112}, + [5962] = {.lex_state = 452, .external_lex_state = 112}, + [5963] = {.lex_state = 452, .external_lex_state = 112}, + [5964] = {.lex_state = 452, .external_lex_state = 112}, + [5965] = {.lex_state = 453, .external_lex_state = 112}, + [5966] = {.lex_state = 452, .external_lex_state = 112}, + [5967] = {.lex_state = 452, .external_lex_state = 112}, + [5968] = {.lex_state = 453, .external_lex_state = 112}, + [5969] = {.lex_state = 452, .external_lex_state = 112}, + [5970] = {.lex_state = 452, .external_lex_state = 112}, + [5971] = {.lex_state = 453, .external_lex_state = 112}, + [5972] = {.lex_state = 452, .external_lex_state = 112}, + [5973] = {.lex_state = 452, .external_lex_state = 112}, + [5974] = {.lex_state = 453, .external_lex_state = 112}, + [5975] = {.lex_state = 452, .external_lex_state = 112}, + [5976] = {.lex_state = 452, .external_lex_state = 112}, + [5977] = {.lex_state = 452, .external_lex_state = 112}, + [5978] = {.lex_state = 452, .external_lex_state = 112}, + [5979] = {.lex_state = 452, .external_lex_state = 112}, + [5980] = {.lex_state = 452, .external_lex_state = 112}, + [5981] = {.lex_state = 452, .external_lex_state = 112}, + [5982] = {.lex_state = 452, .external_lex_state = 112}, + [5983] = {.lex_state = 452, .external_lex_state = 112}, + [5984] = {.lex_state = 452, .external_lex_state = 112}, + [5985] = {.lex_state = 453, .external_lex_state = 112}, + [5986] = {.lex_state = 453, .external_lex_state = 112}, + [5987] = {.lex_state = 453, .external_lex_state = 112}, + [5988] = {.lex_state = 452, .external_lex_state = 112}, + [5989] = {.lex_state = 452, .external_lex_state = 112}, + [5990] = {.lex_state = 452, .external_lex_state = 112}, + [5991] = {.lex_state = 452, .external_lex_state = 112}, + [5992] = {.lex_state = 452, .external_lex_state = 112}, + [5993] = {.lex_state = 452, .external_lex_state = 112}, + [5994] = {.lex_state = 452, .external_lex_state = 112}, + [5995] = {.lex_state = 453, .external_lex_state = 112}, + [5996] = {.lex_state = 452, .external_lex_state = 112}, + [5997] = {.lex_state = 452, .external_lex_state = 112}, + [5998] = {.lex_state = 452, .external_lex_state = 112}, + [5999] = {.lex_state = 452, .external_lex_state = 112}, + [6000] = {.lex_state = 452, .external_lex_state = 112}, + [6001] = {.lex_state = 452, .external_lex_state = 112}, + [6002] = {.lex_state = 452, .external_lex_state = 112}, + [6003] = {.lex_state = 453, .external_lex_state = 112}, + [6004] = {.lex_state = 452, .external_lex_state = 112}, + [6005] = {.lex_state = 453, .external_lex_state = 112}, + [6006] = {.lex_state = 453, .external_lex_state = 112}, + [6007] = {.lex_state = 452, .external_lex_state = 112}, + [6008] = {.lex_state = 452, .external_lex_state = 112}, + [6009] = {.lex_state = 453, .external_lex_state = 112}, + [6010] = {.lex_state = 452, .external_lex_state = 112}, + [6011] = {.lex_state = 452, .external_lex_state = 112}, + [6012] = {.lex_state = 453, .external_lex_state = 112}, + [6013] = {.lex_state = 453, .external_lex_state = 112}, + [6014] = {.lex_state = 452, .external_lex_state = 112}, + [6015] = {.lex_state = 453, .external_lex_state = 112}, + [6016] = {.lex_state = 452, .external_lex_state = 112}, + [6017] = {.lex_state = 453, .external_lex_state = 112}, + [6018] = {.lex_state = 453, .external_lex_state = 112}, + [6019] = {.lex_state = 452, .external_lex_state = 112}, + [6020] = {.lex_state = 453, .external_lex_state = 112}, + [6021] = {.lex_state = 452, .external_lex_state = 112}, + [6022] = {.lex_state = 453, .external_lex_state = 112}, + [6023] = {.lex_state = 452, .external_lex_state = 112}, + [6024] = {.lex_state = 452, .external_lex_state = 112}, + [6025] = {.lex_state = 452, .external_lex_state = 112}, + [6026] = {.lex_state = 452, .external_lex_state = 112}, + [6027] = {.lex_state = 453, .external_lex_state = 112}, + [6028] = {.lex_state = 452, .external_lex_state = 112}, + [6029] = {.lex_state = 452, .external_lex_state = 112}, + [6030] = {.lex_state = 453, .external_lex_state = 112}, + [6031] = {.lex_state = 452, .external_lex_state = 112}, + [6032] = {.lex_state = 453, .external_lex_state = 112}, + [6033] = {.lex_state = 453, .external_lex_state = 112}, + [6034] = {.lex_state = 452, .external_lex_state = 112}, + [6035] = {.lex_state = 452, .external_lex_state = 112}, + [6036] = {.lex_state = 452, .external_lex_state = 112}, + [6037] = {.lex_state = 453, .external_lex_state = 112}, + [6038] = {.lex_state = 452, .external_lex_state = 112}, + [6039] = {.lex_state = 453, .external_lex_state = 112}, + [6040] = {.lex_state = 452, .external_lex_state = 112}, + [6041] = {.lex_state = 452, .external_lex_state = 112}, + [6042] = {.lex_state = 452, .external_lex_state = 112}, + [6043] = {.lex_state = 452, .external_lex_state = 112}, + [6044] = {.lex_state = 452, .external_lex_state = 112}, + [6045] = {.lex_state = 453, .external_lex_state = 112}, + [6046] = {.lex_state = 452, .external_lex_state = 112}, + [6047] = {.lex_state = 452, .external_lex_state = 112}, + [6048] = {.lex_state = 452, .external_lex_state = 112}, + [6049] = {.lex_state = 452, .external_lex_state = 112}, + [6050] = {.lex_state = 452, .external_lex_state = 112}, + [6051] = {.lex_state = 453, .external_lex_state = 112}, + [6052] = {.lex_state = 452, .external_lex_state = 112}, + [6053] = {.lex_state = 453, .external_lex_state = 112}, + [6054] = {.lex_state = 452, .external_lex_state = 112}, + [6055] = {.lex_state = 452, .external_lex_state = 112}, + [6056] = {.lex_state = 453, .external_lex_state = 112}, + [6057] = {.lex_state = 452, .external_lex_state = 112}, + [6058] = {.lex_state = 452, .external_lex_state = 112}, + [6059] = {.lex_state = 453, .external_lex_state = 112}, + [6060] = {.lex_state = 452, .external_lex_state = 112}, + [6061] = {.lex_state = 453, .external_lex_state = 112}, + [6062] = {.lex_state = 452, .external_lex_state = 112}, + [6063] = {.lex_state = 452, .external_lex_state = 112}, + [6064] = {.lex_state = 452, .external_lex_state = 112}, + [6065] = {.lex_state = 453, .external_lex_state = 112}, + [6066] = {.lex_state = 453, .external_lex_state = 112}, + [6067] = {.lex_state = 453, .external_lex_state = 112}, + [6068] = {.lex_state = 452, .external_lex_state = 112}, + [6069] = {.lex_state = 452, .external_lex_state = 112}, + [6070] = {.lex_state = 452, .external_lex_state = 112}, + [6071] = {.lex_state = 453, .external_lex_state = 112}, + [6072] = {.lex_state = 452, .external_lex_state = 112}, + [6073] = {.lex_state = 452, .external_lex_state = 112}, + [6074] = {.lex_state = 452, .external_lex_state = 112}, + [6075] = {.lex_state = 452, .external_lex_state = 112}, + [6076] = {.lex_state = 453, .external_lex_state = 112}, + [6077] = {.lex_state = 452, .external_lex_state = 112}, + [6078] = {.lex_state = 452, .external_lex_state = 112}, + [6079] = {.lex_state = 452, .external_lex_state = 112}, + [6080] = {.lex_state = 452, .external_lex_state = 112}, + [6081] = {.lex_state = 452, .external_lex_state = 112}, + [6082] = {.lex_state = 452, .external_lex_state = 112}, + [6083] = {.lex_state = 453, .external_lex_state = 112}, + [6084] = {.lex_state = 452, .external_lex_state = 112}, + [6085] = {.lex_state = 452, .external_lex_state = 112}, + [6086] = {.lex_state = 452, .external_lex_state = 112}, + [6087] = {.lex_state = 452, .external_lex_state = 112}, + [6088] = {.lex_state = 454, .external_lex_state = 113}, + [6089] = {.lex_state = 87, .external_lex_state = 106}, + [6090] = {.lex_state = 454, .external_lex_state = 113}, + [6091] = {.lex_state = 454, .external_lex_state = 113}, + [6092] = {.lex_state = 454, .external_lex_state = 113}, + [6093] = {.lex_state = 454, .external_lex_state = 113}, + [6094] = {.lex_state = 454, .external_lex_state = 113}, + [6095] = {.lex_state = 454, .external_lex_state = 113}, + [6096] = {.lex_state = 87, .external_lex_state = 106}, + [6097] = {.lex_state = 454, .external_lex_state = 113}, + [6098] = {.lex_state = 455, .external_lex_state = 112}, + [6099] = {.lex_state = 477, .external_lex_state = 113}, + [6100] = {.lex_state = 456, .external_lex_state = 112}, + [6101] = {.lex_state = 477, .external_lex_state = 113}, + [6102] = {.lex_state = 456, .external_lex_state = 112}, + [6103] = {.lex_state = 456, .external_lex_state = 112}, + [6104] = {.lex_state = 477, .external_lex_state = 113}, + [6105] = {.lex_state = 477, .external_lex_state = 113}, + [6106] = {.lex_state = 477, .external_lex_state = 113}, + [6107] = {.lex_state = 456, .external_lex_state = 112}, + [6108] = {.lex_state = 456, .external_lex_state = 112}, + [6109] = {.lex_state = 456, .external_lex_state = 112}, + [6110] = {.lex_state = 477, .external_lex_state = 113}, + [6111] = {.lex_state = 456, .external_lex_state = 112}, + [6112] = {.lex_state = 477, .external_lex_state = 113}, + [6113] = {.lex_state = 477, .external_lex_state = 113}, + [6114] = {.lex_state = 477, .external_lex_state = 113}, + [6115] = {.lex_state = 456, .external_lex_state = 112}, + [6116] = {.lex_state = 456, .external_lex_state = 112}, + [6117] = {.lex_state = 435, .external_lex_state = 114}, + [6118] = {.lex_state = 488}, + [6119] = {.lex_state = 488}, + [6120] = {.lex_state = 488}, + [6121] = {.lex_state = 488}, + [6122] = {.lex_state = 435, .external_lex_state = 114}, + [6123] = {.lex_state = 483, .external_lex_state = 115}, + [6124] = {.lex_state = 488}, + [6125] = {.lex_state = 488}, + [6126] = {.lex_state = 483, .external_lex_state = 115}, + [6127] = {.lex_state = 488}, + [6128] = {.lex_state = 488}, + [6129] = {.lex_state = 488}, + [6130] = {.lex_state = 488}, + [6131] = {.lex_state = 488}, + [6132] = {.lex_state = 488}, + [6133] = {.lex_state = 488}, + [6134] = {.lex_state = 488}, + [6135] = {.lex_state = 488}, + [6136] = {.lex_state = 488}, + [6137] = {.lex_state = 488}, + [6138] = {.lex_state = 488}, + [6139] = {.lex_state = 483, .external_lex_state = 115}, + [6140] = {.lex_state = 488}, + [6141] = {.lex_state = 488}, + [6142] = {.lex_state = 488}, + [6143] = {.lex_state = 488}, + [6144] = {.lex_state = 488}, + [6145] = {.lex_state = 488}, + [6146] = {.lex_state = 435, .external_lex_state = 114}, + [6147] = {.lex_state = 478, .external_lex_state = 116}, + [6148] = {.lex_state = 488}, + [6149] = {.lex_state = 483, .external_lex_state = 115}, + [6150] = {.lex_state = 488}, + [6151] = {.lex_state = 488}, + [6152] = {.lex_state = 483, .external_lex_state = 115}, + [6153] = {.lex_state = 483, .external_lex_state = 115}, + [6154] = {.lex_state = 483, .external_lex_state = 115}, + [6155] = {.lex_state = 483, .external_lex_state = 115}, + [6156] = {.lex_state = 483, .external_lex_state = 115}, + [6157] = {.lex_state = 483, .external_lex_state = 115}, + [6158] = {.lex_state = 483, .external_lex_state = 115}, + [6159] = {.lex_state = 488, .external_lex_state = 99}, + [6160] = {.lex_state = 488, .external_lex_state = 99}, + [6161] = {.lex_state = 488, .external_lex_state = 99}, + [6162] = {.lex_state = 483}, + [6163] = {.lex_state = 488, .external_lex_state = 99}, + [6164] = {.lex_state = 488, .external_lex_state = 99}, + [6165] = {.lex_state = 488, .external_lex_state = 99}, + [6166] = {.lex_state = 488, .external_lex_state = 99}, + [6167] = {.lex_state = 488, .external_lex_state = 99}, + [6168] = {.lex_state = 488, .external_lex_state = 99}, + [6169] = {.lex_state = 488, .external_lex_state = 99}, + [6170] = {.lex_state = 488, .external_lex_state = 99}, + [6171] = {.lex_state = 488, .external_lex_state = 99}, + [6172] = {.lex_state = 488, .external_lex_state = 99}, + [6173] = {.lex_state = 488, .external_lex_state = 99}, + [6174] = {.lex_state = 488, .external_lex_state = 99}, + [6175] = {.lex_state = 488, .external_lex_state = 99}, + [6176] = {.lex_state = 483}, + [6177] = {.lex_state = 488, .external_lex_state = 99}, + [6178] = {.lex_state = 488, .external_lex_state = 99}, + [6179] = {.lex_state = 488, .external_lex_state = 99}, + [6180] = {.lex_state = 489}, + [6181] = {.lex_state = 488, .external_lex_state = 99}, + [6182] = {.lex_state = 478}, + [6183] = {.lex_state = 488, .external_lex_state = 99}, + [6184] = {.lex_state = 488, .external_lex_state = 99}, + [6185] = {.lex_state = 488, .external_lex_state = 99}, + [6186] = {.lex_state = 488, .external_lex_state = 99}, + [6187] = {.lex_state = 91, .external_lex_state = 117}, + [6188] = {.lex_state = 479, .external_lex_state = 118}, + [6189] = {.lex_state = 480, .external_lex_state = 119}, + [6190] = {.lex_state = 91, .external_lex_state = 117}, + [6191] = {.lex_state = 91, .external_lex_state = 117}, + [6192] = {.lex_state = 91, .external_lex_state = 117}, + [6193] = {.lex_state = 91, .external_lex_state = 117}, + [6194] = {.lex_state = 486}, + [6195] = {.lex_state = 91, .external_lex_state = 117}, + [6196] = {.lex_state = 486}, + [6197] = {.lex_state = 480, .external_lex_state = 119}, + [6198] = {.lex_state = 91, .external_lex_state = 117}, + [6199] = {.lex_state = 91, .external_lex_state = 117}, + [6200] = {.lex_state = 91, .external_lex_state = 117}, + [6201] = {.lex_state = 91, .external_lex_state = 117}, + [6202] = {.lex_state = 91, .external_lex_state = 117}, + [6203] = {.lex_state = 480, .external_lex_state = 119}, + [6204] = {.lex_state = 91, .external_lex_state = 117}, + [6205] = {.lex_state = 91, .external_lex_state = 117}, + [6206] = {.lex_state = 479, .external_lex_state = 116}, + [6207] = {.lex_state = 91, .external_lex_state = 117}, + [6208] = {.lex_state = 91, .external_lex_state = 120}, + [6209] = {.lex_state = 479, .external_lex_state = 116}, + [6210] = {.lex_state = 479, .external_lex_state = 116}, + [6211] = {.lex_state = 479, .external_lex_state = 116}, + [6212] = {.lex_state = 91, .external_lex_state = 117}, + [6213] = {.lex_state = 91, .external_lex_state = 120}, + [6214] = {.lex_state = 479, .external_lex_state = 116}, + [6215] = {.lex_state = 479, .external_lex_state = 116}, + [6216] = {.lex_state = 435, .external_lex_state = 114}, + [6217] = {.lex_state = 91, .external_lex_state = 117}, + [6218] = {.lex_state = 479, .external_lex_state = 116}, + [6219] = {.lex_state = 91, .external_lex_state = 117}, + [6220] = {.lex_state = 91, .external_lex_state = 120}, + [6221] = {.lex_state = 91, .external_lex_state = 117}, + [6222] = {.lex_state = 479, .external_lex_state = 116}, + [6223] = {.lex_state = 91, .external_lex_state = 117}, + [6224] = {.lex_state = 91, .external_lex_state = 117}, + [6225] = {.lex_state = 435, .external_lex_state = 114}, + [6226] = {.lex_state = 91, .external_lex_state = 120}, + [6227] = {.lex_state = 91, .external_lex_state = 117}, + [6228] = {.lex_state = 91, .external_lex_state = 117}, + [6229] = {.lex_state = 91, .external_lex_state = 117}, + [6230] = {.lex_state = 435, .external_lex_state = 114}, + [6231] = {.lex_state = 91, .external_lex_state = 117}, + [6232] = {.lex_state = 91, .external_lex_state = 117}, + [6233] = {.lex_state = 91, .external_lex_state = 117}, + [6234] = {.lex_state = 479, .external_lex_state = 116}, + [6235] = {.lex_state = 91, .external_lex_state = 117}, + [6236] = {.lex_state = 91, .external_lex_state = 117}, + [6237] = {.lex_state = 91, .external_lex_state = 117}, + [6238] = {.lex_state = 435, .external_lex_state = 114}, + [6239] = {.lex_state = 479, .external_lex_state = 116}, + [6240] = {.lex_state = 435, .external_lex_state = 114}, + [6241] = {.lex_state = 91, .external_lex_state = 120}, + [6242] = {.lex_state = 435, .external_lex_state = 114}, + [6243] = {.lex_state = 435, .external_lex_state = 114}, + [6244] = {.lex_state = 91, .external_lex_state = 117}, + [6245] = {.lex_state = 479, .external_lex_state = 116}, + [6246] = {.lex_state = 91, .external_lex_state = 117}, + [6247] = {.lex_state = 479, .external_lex_state = 116}, + [6248] = {.lex_state = 491, .external_lex_state = 121}, + [6249] = {.lex_state = 435}, + [6250] = {.lex_state = 435}, + [6251] = {.lex_state = 480, .external_lex_state = 119}, + [6252] = {.lex_state = 435}, + [6253] = {.lex_state = 435}, + [6254] = {.lex_state = 435}, + [6255] = {.lex_state = 86, .external_lex_state = 120}, + [6256] = {.lex_state = 435}, + [6257] = {.lex_state = 435}, + [6258] = {.lex_state = 480, .external_lex_state = 119}, + [6259] = {.lex_state = 435}, + [6260] = {.lex_state = 435}, + [6261] = {.lex_state = 479, .external_lex_state = 116}, + [6262] = {.lex_state = 435}, + [6263] = {.lex_state = 435}, + [6264] = {.lex_state = 491, .external_lex_state = 121}, + [6265] = {.lex_state = 435}, + [6266] = {.lex_state = 489}, + [6267] = {.lex_state = 435}, + [6268] = {.lex_state = 435}, + [6269] = {.lex_state = 435}, + [6270] = {.lex_state = 435}, + [6271] = {.lex_state = 435}, + [6272] = {.lex_state = 86, .external_lex_state = 120}, + [6273] = {.lex_state = 479, .external_lex_state = 116}, + [6274] = {.lex_state = 435}, + [6275] = {.lex_state = 435}, + [6276] = {.lex_state = 462, .external_lex_state = 115}, + [6277] = {.lex_state = 435}, + [6278] = {.lex_state = 491, .external_lex_state = 121}, + [6279] = {.lex_state = 435}, + [6280] = {.lex_state = 86, .external_lex_state = 120}, + [6281] = {.lex_state = 479, .external_lex_state = 116}, + [6282] = {.lex_state = 435}, + [6283] = {.lex_state = 435}, + [6284] = {.lex_state = 91, .external_lex_state = 120}, + [6285] = {.lex_state = 435}, + [6286] = {.lex_state = 435}, + [6287] = {.lex_state = 479, .external_lex_state = 116}, + [6288] = {.lex_state = 462, .external_lex_state = 115}, + [6289] = {.lex_state = 435}, + [6290] = {.lex_state = 479, .external_lex_state = 116}, + [6291] = {.lex_state = 489}, + [6292] = {.lex_state = 435}, + [6293] = {.lex_state = 435}, + [6294] = {.lex_state = 479, .external_lex_state = 116}, + [6295] = {.lex_state = 480, .external_lex_state = 119}, + [6296] = {.lex_state = 435}, + [6297] = {.lex_state = 435}, + [6298] = {.lex_state = 489}, + [6299] = {.lex_state = 435}, + [6300] = {.lex_state = 479, .external_lex_state = 116}, + [6301] = {.lex_state = 435}, + [6302] = {.lex_state = 435}, + [6303] = {.lex_state = 479, .external_lex_state = 116}, + [6304] = {.lex_state = 435}, + [6305] = {.lex_state = 435}, + [6306] = {.lex_state = 435}, + [6307] = {.lex_state = 435}, + [6308] = {.lex_state = 435}, + [6309] = {.lex_state = 479, .external_lex_state = 116}, + [6310] = {.lex_state = 435}, + [6311] = {.lex_state = 435}, + [6312] = {.lex_state = 462, .external_lex_state = 115}, + [6313] = {.lex_state = 435}, + [6314] = {.lex_state = 435}, + [6315] = {.lex_state = 435}, + [6316] = {.lex_state = 435}, + [6317] = {.lex_state = 435}, + [6318] = {.lex_state = 462, .external_lex_state = 115}, + [6319] = {.lex_state = 86, .external_lex_state = 120}, + [6320] = {.lex_state = 435}, + [6321] = {.lex_state = 435}, + [6322] = {.lex_state = 479, .external_lex_state = 116}, + [6323] = {.lex_state = 435}, + [6324] = {.lex_state = 462, .external_lex_state = 115}, + [6325] = {.lex_state = 435}, + [6326] = {.lex_state = 462, .external_lex_state = 115}, + [6327] = {.lex_state = 489}, + [6328] = {.lex_state = 435}, + [6329] = {.lex_state = 435}, + [6330] = {.lex_state = 435}, + [6331] = {.lex_state = 435}, + [6332] = {.lex_state = 462, .external_lex_state = 115}, + [6333] = {.lex_state = 435}, + [6334] = {.lex_state = 86, .external_lex_state = 120}, + [6335] = {.lex_state = 435}, + [6336] = {.lex_state = 435}, + [6337] = {.lex_state = 462, .external_lex_state = 115}, + [6338] = {.lex_state = 479, .external_lex_state = 116}, + [6339] = {.lex_state = 435}, + [6340] = {.lex_state = 435}, + [6341] = {.lex_state = 435}, + [6342] = {.lex_state = 435}, + [6343] = {.lex_state = 435}, + [6344] = {.lex_state = 435}, + [6345] = {.lex_state = 489}, + [6346] = {.lex_state = 489}, + [6347] = {.lex_state = 479, .external_lex_state = 116}, + [6348] = {.lex_state = 86, .external_lex_state = 120}, + [6349] = {.lex_state = 86, .external_lex_state = 120}, + [6350] = {.lex_state = 435}, + [6351] = {.lex_state = 435}, + [6352] = {.lex_state = 479, .external_lex_state = 116}, + [6353] = {.lex_state = 435}, + [6354] = {.lex_state = 479, .external_lex_state = 116}, + [6355] = {.lex_state = 435}, + [6356] = {.lex_state = 435}, + [6357] = {.lex_state = 489}, + [6358] = {.lex_state = 489}, + [6359] = {.lex_state = 86, .external_lex_state = 120}, + [6360] = {.lex_state = 479, .external_lex_state = 116}, + [6361] = {.lex_state = 480, .external_lex_state = 119}, + [6362] = {.lex_state = 435}, + [6363] = {.lex_state = 435}, + [6364] = {.lex_state = 435}, + [6365] = {.lex_state = 479, .external_lex_state = 116}, + [6366] = {.lex_state = 462, .external_lex_state = 115}, + [6367] = {.lex_state = 435}, + [6368] = {.lex_state = 549, .external_lex_state = 122}, + [6369] = {.lex_state = 91, .external_lex_state = 120}, + [6370] = {.lex_state = 461}, + [6371] = {.lex_state = 442, .external_lex_state = 123}, + [6372] = {.lex_state = 549, .external_lex_state = 122}, + [6373] = {.lex_state = 462, .external_lex_state = 115}, + [6374] = {.lex_state = 442, .external_lex_state = 124}, + [6375] = {.lex_state = 549, .external_lex_state = 122}, + [6376] = {.lex_state = 549, .external_lex_state = 122}, + [6377] = {.lex_state = 549, .external_lex_state = 122}, + [6378] = {.lex_state = 549, .external_lex_state = 122}, + [6379] = {.lex_state = 549, .external_lex_state = 122}, + [6380] = {.lex_state = 462, .external_lex_state = 115}, + [6381] = {.lex_state = 442, .external_lex_state = 123}, + [6382] = {.lex_state = 549, .external_lex_state = 122}, + [6383] = {.lex_state = 91, .external_lex_state = 120}, + [6384] = {.lex_state = 549, .external_lex_state = 122}, + [6385] = {.lex_state = 549, .external_lex_state = 122}, + [6386] = {.lex_state = 442, .external_lex_state = 124}, + [6387] = {.lex_state = 549, .external_lex_state = 122}, + [6388] = {.lex_state = 462, .external_lex_state = 115}, + [6389] = {.lex_state = 549, .external_lex_state = 122}, + [6390] = {.lex_state = 91, .external_lex_state = 120}, + [6391] = {.lex_state = 461}, + [6392] = {.lex_state = 549, .external_lex_state = 122}, + [6393] = {.lex_state = 86, .external_lex_state = 120}, + [6394] = {.lex_state = 549, .external_lex_state = 122}, + [6395] = {.lex_state = 549, .external_lex_state = 122}, + [6396] = {.lex_state = 491, .external_lex_state = 125}, + [6397] = {.lex_state = 91, .external_lex_state = 120}, + [6398] = {.lex_state = 491, .external_lex_state = 125}, + [6399] = {.lex_state = 491, .external_lex_state = 121}, + [6400] = {.lex_state = 442, .external_lex_state = 124}, + [6401] = {.lex_state = 442, .external_lex_state = 124}, + [6402] = {.lex_state = 549, .external_lex_state = 122}, + [6403] = {.lex_state = 549, .external_lex_state = 122}, + [6404] = {.lex_state = 549, .external_lex_state = 122}, + [6405] = {.lex_state = 442, .external_lex_state = 124}, + [6406] = {.lex_state = 549, .external_lex_state = 122}, + [6407] = {.lex_state = 549, .external_lex_state = 122}, + [6408] = {.lex_state = 549, .external_lex_state = 122}, + [6409] = {.lex_state = 549, .external_lex_state = 122}, + [6410] = {.lex_state = 549, .external_lex_state = 122}, + [6411] = {.lex_state = 442, .external_lex_state = 124}, + [6412] = {.lex_state = 549, .external_lex_state = 122}, + [6413] = {.lex_state = 549, .external_lex_state = 122}, + [6414] = {.lex_state = 491, .external_lex_state = 125}, + [6415] = {.lex_state = 549, .external_lex_state = 122}, + [6416] = {.lex_state = 549, .external_lex_state = 122}, + [6417] = {.lex_state = 549, .external_lex_state = 122}, + [6418] = {.lex_state = 549, .external_lex_state = 122}, + [6419] = {.lex_state = 549, .external_lex_state = 122}, + [6420] = {.lex_state = 491, .external_lex_state = 125}, + [6421] = {.lex_state = 442, .external_lex_state = 124}, + [6422] = {.lex_state = 489}, + [6423] = {.lex_state = 549, .external_lex_state = 122}, + [6424] = {.lex_state = 442, .external_lex_state = 123}, + [6425] = {.lex_state = 442, .external_lex_state = 124}, + [6426] = {.lex_state = 491, .external_lex_state = 121}, + [6427] = {.lex_state = 549, .external_lex_state = 122}, + [6428] = {.lex_state = 442, .external_lex_state = 124}, + [6429] = {.lex_state = 549, .external_lex_state = 122}, + [6430] = {.lex_state = 549, .external_lex_state = 122}, + [6431] = {.lex_state = 442, .external_lex_state = 124}, + [6432] = {.lex_state = 442, .external_lex_state = 124}, + [6433] = {.lex_state = 549, .external_lex_state = 122}, + [6434] = {.lex_state = 461}, + [6435] = {.lex_state = 549, .external_lex_state = 122}, + [6436] = {.lex_state = 491, .external_lex_state = 121}, + [6437] = {.lex_state = 549, .external_lex_state = 122}, + [6438] = {.lex_state = 549, .external_lex_state = 122}, + [6439] = {.lex_state = 478}, + [6440] = {.lex_state = 549, .external_lex_state = 122}, + [6441] = {.lex_state = 549, .external_lex_state = 122}, + [6442] = {.lex_state = 491, .external_lex_state = 125}, + [6443] = {.lex_state = 549, .external_lex_state = 122}, + [6444] = {.lex_state = 442, .external_lex_state = 124}, + [6445] = {.lex_state = 549, .external_lex_state = 122}, + [6446] = {.lex_state = 491, .external_lex_state = 125}, + [6447] = {.lex_state = 549, .external_lex_state = 122}, + [6448] = {.lex_state = 549, .external_lex_state = 122}, + [6449] = {.lex_state = 478}, + [6450] = {.lex_state = 491, .external_lex_state = 125}, + [6451] = {.lex_state = 478}, + [6452] = {.lex_state = 487}, + [6453] = {.lex_state = 91, .external_lex_state = 120}, + [6454] = {.lex_state = 549, .external_lex_state = 122}, + [6455] = {.lex_state = 478}, + [6456] = {.lex_state = 549, .external_lex_state = 122}, + [6457] = {.lex_state = 462, .external_lex_state = 115}, + [6458] = {.lex_state = 491, .external_lex_state = 125}, + [6459] = {.lex_state = 461}, + [6460] = {.lex_state = 442, .external_lex_state = 124}, + [6461] = {.lex_state = 549, .external_lex_state = 122}, + [6462] = {.lex_state = 549, .external_lex_state = 122}, + [6463] = {.lex_state = 462, .external_lex_state = 115}, + [6464] = {.lex_state = 549, .external_lex_state = 122}, + [6465] = {.lex_state = 91, .external_lex_state = 120}, + [6466] = {.lex_state = 549, .external_lex_state = 122}, + [6467] = {.lex_state = 549, .external_lex_state = 122}, + [6468] = {.lex_state = 91, .external_lex_state = 120}, + [6469] = {.lex_state = 549, .external_lex_state = 122}, + [6470] = {.lex_state = 549, .external_lex_state = 122}, + [6471] = {.lex_state = 549, .external_lex_state = 122}, + [6472] = {.lex_state = 549, .external_lex_state = 122}, + [6473] = {.lex_state = 549, .external_lex_state = 122}, + [6474] = {.lex_state = 549, .external_lex_state = 122}, + [6475] = {.lex_state = 91, .external_lex_state = 120}, + [6476] = {.lex_state = 549, .external_lex_state = 122}, + [6477] = {.lex_state = 549, .external_lex_state = 122}, + [6478] = {.lex_state = 442, .external_lex_state = 123}, + [6479] = {.lex_state = 549, .external_lex_state = 122}, + [6480] = {.lex_state = 491, .external_lex_state = 125}, + [6481] = {.lex_state = 435, .external_lex_state = 126}, + [6482] = {.lex_state = 462, .external_lex_state = 115}, + [6483] = {.lex_state = 491, .external_lex_state = 125}, + [6484] = {.lex_state = 442, .external_lex_state = 124}, + [6485] = {.lex_state = 442, .external_lex_state = 125}, + [6486] = {.lex_state = 479, .external_lex_state = 116}, + [6487] = {.lex_state = 462, .external_lex_state = 115}, + [6488] = {.lex_state = 435, .external_lex_state = 126}, + [6489] = {.lex_state = 462, .external_lex_state = 115}, + [6490] = {.lex_state = 462, .external_lex_state = 115}, + [6491] = {.lex_state = 462, .external_lex_state = 115}, + [6492] = {.lex_state = 442, .external_lex_state = 124}, + [6493] = {.lex_state = 491, .external_lex_state = 125}, + [6494] = {.lex_state = 479, .external_lex_state = 116}, + [6495] = {.lex_state = 442, .external_lex_state = 124}, + [6496] = {.lex_state = 479, .external_lex_state = 116}, + [6497] = {.lex_state = 435, .external_lex_state = 126}, + [6498] = {.lex_state = 462, .external_lex_state = 115}, + [6499] = {.lex_state = 479, .external_lex_state = 116}, + [6500] = {.lex_state = 462, .external_lex_state = 115}, + [6501] = {.lex_state = 462, .external_lex_state = 115}, + [6502] = {.lex_state = 435, .external_lex_state = 126}, + [6503] = {.lex_state = 86, .external_lex_state = 120}, + [6504] = {.lex_state = 462, .external_lex_state = 115}, + [6505] = {.lex_state = 462, .external_lex_state = 115}, + [6506] = {.lex_state = 462, .external_lex_state = 115}, + [6507] = {.lex_state = 491, .external_lex_state = 125}, + [6508] = {.lex_state = 478}, + [6509] = {.lex_state = 442, .external_lex_state = 124}, + [6510] = {.lex_state = 491, .external_lex_state = 125}, + [6511] = {.lex_state = 435, .external_lex_state = 126}, + [6512] = {.lex_state = 462, .external_lex_state = 115}, + [6513] = {.lex_state = 442, .external_lex_state = 124}, + [6514] = {.lex_state = 435, .external_lex_state = 126}, + [6515] = {.lex_state = 435, .external_lex_state = 126}, + [6516] = {.lex_state = 442, .external_lex_state = 124}, + [6517] = {.lex_state = 462, .external_lex_state = 115}, + [6518] = {.lex_state = 491, .external_lex_state = 125}, + [6519] = {.lex_state = 491, .external_lex_state = 125}, + [6520] = {.lex_state = 491, .external_lex_state = 125}, + [6521] = {.lex_state = 86, .external_lex_state = 120}, + [6522] = {.lex_state = 435, .external_lex_state = 126}, + [6523] = {.lex_state = 478}, + [6524] = {.lex_state = 461}, + [6525] = {.lex_state = 462, .external_lex_state = 115}, + [6526] = {.lex_state = 435, .external_lex_state = 126}, + [6527] = {.lex_state = 435, .external_lex_state = 126}, + [6528] = {.lex_state = 461}, + [6529] = {.lex_state = 491, .external_lex_state = 125}, + [6530] = {.lex_state = 478}, + [6531] = {.lex_state = 491, .external_lex_state = 125}, + [6532] = {.lex_state = 491, .external_lex_state = 125}, + [6533] = {.lex_state = 491, .external_lex_state = 125}, + [6534] = {.lex_state = 86, .external_lex_state = 120}, + [6535] = {.lex_state = 491, .external_lex_state = 125}, + [6536] = {.lex_state = 462, .external_lex_state = 115}, + [6537] = {.lex_state = 435, .external_lex_state = 126}, + [6538] = {.lex_state = 491, .external_lex_state = 125}, + [6539] = {.lex_state = 442, .external_lex_state = 124}, + [6540] = {.lex_state = 462, .external_lex_state = 115}, + [6541] = {.lex_state = 435, .external_lex_state = 126}, + [6542] = {.lex_state = 462, .external_lex_state = 115}, + [6543] = {.lex_state = 442, .external_lex_state = 124}, + [6544] = {.lex_state = 478}, + [6545] = {.lex_state = 462, .external_lex_state = 115}, + [6546] = {.lex_state = 462, .external_lex_state = 115}, + [6547] = {.lex_state = 435}, + [6548] = {.lex_state = 435}, + [6549] = {.lex_state = 549}, + [6550] = {.lex_state = 549}, + [6551] = {.lex_state = 435}, + [6552] = {.lex_state = 549}, + [6553] = {.lex_state = 435}, + [6554] = {.lex_state = 549}, + [6555] = {.lex_state = 435}, + [6556] = {.lex_state = 549}, + [6557] = {.lex_state = 435}, + [6558] = {.lex_state = 435}, + [6559] = {.lex_state = 435}, + [6560] = {.lex_state = 435}, + [6561] = {.lex_state = 435}, + [6562] = {.lex_state = 549}, + [6563] = {.lex_state = 549}, + [6564] = {.lex_state = 549}, + [6565] = {.lex_state = 549}, + [6566] = {.lex_state = 435}, + [6567] = {.lex_state = 437}, + [6568] = {.lex_state = 435}, + [6569] = {.lex_state = 549}, + [6570] = {.lex_state = 491}, + [6571] = {.lex_state = 435}, + [6572] = {.lex_state = 549}, + [6573] = {.lex_state = 549}, + [6574] = {.lex_state = 549}, + [6575] = {.lex_state = 549}, + [6576] = {.lex_state = 549}, + [6577] = {.lex_state = 435}, + [6578] = {.lex_state = 435}, + [6579] = {.lex_state = 435}, + [6580] = {.lex_state = 491}, + [6581] = {.lex_state = 437}, + [6582] = {.lex_state = 549}, + [6583] = {.lex_state = 435}, + [6584] = {.lex_state = 435}, + [6585] = {.lex_state = 549}, + [6586] = {.lex_state = 549, .external_lex_state = 127}, + [6587] = {.lex_state = 435}, + [6588] = {.lex_state = 420}, + [6589] = {.lex_state = 491}, + [6590] = {.lex_state = 435}, + [6591] = {.lex_state = 491}, + [6592] = {.lex_state = 435}, + [6593] = {.lex_state = 435}, + [6594] = {.lex_state = 435}, + [6595] = {.lex_state = 491}, + [6596] = {.lex_state = 549}, + [6597] = {.lex_state = 491}, + [6598] = {.lex_state = 435}, + [6599] = {.lex_state = 435}, + [6600] = {.lex_state = 491}, + [6601] = {.lex_state = 491}, + [6602] = {.lex_state = 491}, + [6603] = {.lex_state = 435}, + [6604] = {.lex_state = 491}, + [6605] = {.lex_state = 435}, + [6606] = {.lex_state = 491}, + [6607] = {.lex_state = 491}, + [6608] = {.lex_state = 491}, + [6609] = {.lex_state = 435}, + [6610] = {.lex_state = 491}, + [6611] = {.lex_state = 491}, + [6612] = {.lex_state = 491}, + [6613] = {.lex_state = 435}, + [6614] = {.lex_state = 435}, + [6615] = {.lex_state = 435}, + [6616] = {.lex_state = 491}, + [6617] = {.lex_state = 437}, + [6618] = {.lex_state = 491}, + [6619] = {.lex_state = 491}, + [6620] = {.lex_state = 435}, + [6621] = {.lex_state = 461}, + [6622] = {.lex_state = 435}, + [6623] = {.lex_state = 491}, + [6624] = {.lex_state = 549}, + [6625] = {.lex_state = 477, .external_lex_state = 115}, + [6626] = {.lex_state = 435}, + [6627] = {.lex_state = 435}, + [6628] = {.lex_state = 435}, + [6629] = {.lex_state = 549, .external_lex_state = 127}, + [6630] = {.lex_state = 549, .external_lex_state = 127}, + [6631] = {.lex_state = 549}, + [6632] = {.lex_state = 420}, + [6633] = {.lex_state = 435}, + [6634] = {.lex_state = 477, .external_lex_state = 115}, + [6635] = {.lex_state = 549}, + [6636] = {.lex_state = 435}, + [6637] = {.lex_state = 435}, + [6638] = {.lex_state = 549}, + [6639] = {.lex_state = 491}, + [6640] = {.lex_state = 435}, + [6641] = {.lex_state = 435}, + [6642] = {.lex_state = 549, .external_lex_state = 127}, + [6643] = {.lex_state = 435}, + [6644] = {.lex_state = 435}, + [6645] = {.lex_state = 435}, + [6646] = {.lex_state = 435}, + [6647] = {.lex_state = 437}, + [6648] = {.lex_state = 479, .external_lex_state = 118}, + [6649] = {.lex_state = 435}, + [6650] = {.lex_state = 435}, + [6651] = {.lex_state = 435}, + [6652] = {.lex_state = 549}, + [6653] = {.lex_state = 549, .external_lex_state = 127}, + [6654] = {.lex_state = 420}, + [6655] = {.lex_state = 435}, + [6656] = {.lex_state = 549}, + [6657] = {.lex_state = 549, .external_lex_state = 127}, + [6658] = {.lex_state = 477, .external_lex_state = 115}, + [6659] = {.lex_state = 435}, + [6660] = {.lex_state = 435}, + [6661] = {.lex_state = 477, .external_lex_state = 115}, + [6662] = {.lex_state = 435}, + [6663] = {.lex_state = 549, .external_lex_state = 127}, + [6664] = {.lex_state = 435}, + [6665] = {.lex_state = 435}, + [6666] = {.lex_state = 437}, + [6667] = {.lex_state = 435}, + [6668] = {.lex_state = 549}, + [6669] = {.lex_state = 435}, + [6670] = {.lex_state = 435}, + [6671] = {.lex_state = 435}, + [6672] = {.lex_state = 479, .external_lex_state = 116}, + [6673] = {.lex_state = 479, .external_lex_state = 116}, + [6674] = {.lex_state = 435}, + [6675] = {.lex_state = 549, .external_lex_state = 127}, + [6676] = {.lex_state = 435}, + [6677] = {.lex_state = 435}, + [6678] = {.lex_state = 435}, + [6679] = {.lex_state = 435}, + [6680] = {.lex_state = 479, .external_lex_state = 116}, + [6681] = {.lex_state = 435}, + [6682] = {.lex_state = 549}, + [6683] = {.lex_state = 549}, + [6684] = {.lex_state = 420}, + [6685] = {.lex_state = 435}, + [6686] = {.lex_state = 435}, + [6687] = {.lex_state = 435}, + [6688] = {.lex_state = 435}, + [6689] = {.lex_state = 435}, + [6690] = {.lex_state = 435}, + [6691] = {.lex_state = 549}, + [6692] = {.lex_state = 549, .external_lex_state = 127}, + [6693] = {.lex_state = 549}, + [6694] = {.lex_state = 435}, + [6695] = {.lex_state = 435}, + [6696] = {.lex_state = 435}, + [6697] = {.lex_state = 479, .external_lex_state = 118}, + [6698] = {.lex_state = 435}, + [6699] = {.lex_state = 479, .external_lex_state = 118}, + [6700] = {.lex_state = 435}, + [6701] = {.lex_state = 491}, + [6702] = {.lex_state = 479, .external_lex_state = 118}, + [6703] = {.lex_state = 435}, + [6704] = {.lex_state = 549}, + [6705] = {.lex_state = 420}, + [6706] = {.lex_state = 435}, + [6707] = {.lex_state = 435}, + [6708] = {.lex_state = 435}, + [6709] = {.lex_state = 420}, + [6710] = {.lex_state = 435}, + [6711] = {.lex_state = 435}, + [6712] = {.lex_state = 435}, + [6713] = {.lex_state = 420}, + [6714] = {.lex_state = 437}, + [6715] = {.lex_state = 549}, + [6716] = {.lex_state = 420}, + [6717] = {.lex_state = 549}, + [6718] = {.lex_state = 435}, + [6719] = {.lex_state = 405, .external_lex_state = 115}, + [6720] = {.lex_state = 435}, + [6721] = {.lex_state = 491}, + [6722] = {.lex_state = 549}, + [6723] = {.lex_state = 435}, + [6724] = {.lex_state = 435}, + [6725] = {.lex_state = 437}, + [6726] = {.lex_state = 437}, + [6727] = {.lex_state = 479, .external_lex_state = 116}, + [6728] = {.lex_state = 477}, + [6729] = {.lex_state = 437}, + [6730] = {.lex_state = 477}, + [6731] = {.lex_state = 477}, + [6732] = {.lex_state = 442, .external_lex_state = 119}, + [6733] = {.lex_state = 477}, + [6734] = {.lex_state = 479, .external_lex_state = 116}, + [6735] = {.lex_state = 479, .external_lex_state = 116}, + [6736] = {.lex_state = 477}, + [6737] = {.lex_state = 477}, + [6738] = {.lex_state = 479, .external_lex_state = 116}, + [6739] = {.lex_state = 437}, + [6740] = {.lex_state = 437}, + [6741] = {.lex_state = 489}, + [6742] = {.lex_state = 489}, + [6743] = {.lex_state = 479, .external_lex_state = 116}, + [6744] = {.lex_state = 477}, + [6745] = {.lex_state = 435}, + [6746] = {.lex_state = 477}, + [6747] = {.lex_state = 489}, + [6748] = {.lex_state = 477}, + [6749] = {.lex_state = 479, .external_lex_state = 116}, + [6750] = {.lex_state = 442, .external_lex_state = 116}, + [6751] = {.lex_state = 437}, + [6752] = {.lex_state = 477}, + [6753] = {.lex_state = 479, .external_lex_state = 116}, + [6754] = {.lex_state = 489}, + [6755] = {.lex_state = 442, .external_lex_state = 116}, + [6756] = {.lex_state = 477}, + [6757] = {.lex_state = 477}, + [6758] = {.lex_state = 477}, + [6759] = {.lex_state = 477}, + [6760] = {.lex_state = 477}, + [6761] = {.lex_state = 479, .external_lex_state = 116}, + [6762] = {.lex_state = 549}, + [6763] = {.lex_state = 549}, + [6764] = {.lex_state = 489}, + [6765] = {.lex_state = 477}, + [6766] = {.lex_state = 477}, + [6767] = {.lex_state = 479, .external_lex_state = 116}, + [6768] = {.lex_state = 489}, + [6769] = {.lex_state = 477}, + [6770] = {.lex_state = 477}, + [6771] = {.lex_state = 477}, + [6772] = {.lex_state = 437}, + [6773] = {.lex_state = 437}, + [6774] = {.lex_state = 477}, + [6775] = {.lex_state = 479, .external_lex_state = 116}, + [6776] = {.lex_state = 489}, + [6777] = {.lex_state = 479, .external_lex_state = 116}, + [6778] = {.lex_state = 477}, + [6779] = {.lex_state = 477}, + [6780] = {.lex_state = 489}, + [6781] = {.lex_state = 479, .external_lex_state = 116}, + [6782] = {.lex_state = 479, .external_lex_state = 116}, + [6783] = {.lex_state = 435}, + [6784] = {.lex_state = 477}, + [6785] = {.lex_state = 477}, + [6786] = {.lex_state = 479, .external_lex_state = 116}, + [6787] = {.lex_state = 477}, + [6788] = {.lex_state = 479, .external_lex_state = 116}, + [6789] = {.lex_state = 435}, + [6790] = {.lex_state = 479, .external_lex_state = 116}, + [6791] = {.lex_state = 477}, + [6792] = {.lex_state = 442, .external_lex_state = 116}, + [6793] = {.lex_state = 549}, + [6794] = {.lex_state = 440}, + [6795] = {.lex_state = 489}, + [6796] = {.lex_state = 435, .external_lex_state = 126}, + [6797] = {.lex_state = 442, .external_lex_state = 116}, + [6798] = {.lex_state = 549}, + [6799] = {.lex_state = 442, .external_lex_state = 116}, + [6800] = {.lex_state = 146, .external_lex_state = 120}, + [6801] = {.lex_state = 435}, + [6802] = {.lex_state = 440}, + [6803] = {.lex_state = 442}, + [6804] = {.lex_state = 549}, + [6805] = {.lex_state = 549}, + [6806] = {.lex_state = 442, .external_lex_state = 116}, + [6807] = {.lex_state = 442, .external_lex_state = 116}, + [6808] = {.lex_state = 549}, + [6809] = {.lex_state = 440}, + [6810] = {.lex_state = 435}, + [6811] = {.lex_state = 549}, + [6812] = {.lex_state = 442, .external_lex_state = 116}, + [6813] = {.lex_state = 549}, + [6814] = {.lex_state = 442, .external_lex_state = 116}, + [6815] = {.lex_state = 549}, + [6816] = {.lex_state = 549}, + [6817] = {.lex_state = 549}, + [6818] = {.lex_state = 549}, + [6819] = {.lex_state = 435}, + [6820] = {.lex_state = 549, .external_lex_state = 128}, + [6821] = {.lex_state = 549}, + [6822] = {.lex_state = 435, .external_lex_state = 126}, + [6823] = {.lex_state = 440}, + [6824] = {.lex_state = 440}, + [6825] = {.lex_state = 442, .external_lex_state = 116}, + [6826] = {.lex_state = 549}, + [6827] = {.lex_state = 549}, + [6828] = {.lex_state = 435}, + [6829] = {.lex_state = 549}, + [6830] = {.lex_state = 549, .external_lex_state = 128}, + [6831] = {.lex_state = 549}, + [6832] = {.lex_state = 549}, + [6833] = {.lex_state = 549}, + [6834] = {.lex_state = 410}, + [6835] = {.lex_state = 442, .external_lex_state = 116}, + [6836] = {.lex_state = 442, .external_lex_state = 116}, + [6837] = {.lex_state = 435}, + [6838] = {.lex_state = 549}, + [6839] = {.lex_state = 442, .external_lex_state = 116}, + [6840] = {.lex_state = 549}, + [6841] = {.lex_state = 435, .external_lex_state = 126}, + [6842] = {.lex_state = 549}, + [6843] = {.lex_state = 549}, + [6844] = {.lex_state = 549}, + [6845] = {.lex_state = 442, .external_lex_state = 116}, + [6846] = {.lex_state = 435}, + [6847] = {.lex_state = 549}, + [6848] = {.lex_state = 442, .external_lex_state = 116}, + [6849] = {.lex_state = 435, .external_lex_state = 126}, + [6850] = {.lex_state = 440}, + [6851] = {.lex_state = 442, .external_lex_state = 116}, + [6852] = {.lex_state = 435, .external_lex_state = 126}, + [6853] = {.lex_state = 435, .external_lex_state = 126}, + [6854] = {.lex_state = 549}, + [6855] = {.lex_state = 435}, + [6856] = {.lex_state = 549}, + [6857] = {.lex_state = 442, .external_lex_state = 116}, + [6858] = {.lex_state = 442, .external_lex_state = 116}, + [6859] = {.lex_state = 549}, + [6860] = {.lex_state = 442, .external_lex_state = 116}, + [6861] = {.lex_state = 549}, + [6862] = {.lex_state = 549}, + [6863] = {.lex_state = 489}, + [6864] = {.lex_state = 435}, + [6865] = {.lex_state = 549}, + [6866] = {.lex_state = 442, .external_lex_state = 116}, + [6867] = {.lex_state = 549}, + [6868] = {.lex_state = 549}, + [6869] = {.lex_state = 549}, + [6870] = {.lex_state = 549}, + [6871] = {.lex_state = 549}, + [6872] = {.lex_state = 549}, + [6873] = {.lex_state = 435}, + [6874] = {.lex_state = 549}, + [6875] = {.lex_state = 435, .external_lex_state = 126}, + [6876] = {.lex_state = 440}, + [6877] = {.lex_state = 440}, + [6878] = {.lex_state = 440}, + [6879] = {.lex_state = 440}, + [6880] = {.lex_state = 489}, + [6881] = {.lex_state = 146, .external_lex_state = 120}, + [6882] = {.lex_state = 435}, + [6883] = {.lex_state = 549}, + [6884] = {.lex_state = 442, .external_lex_state = 116}, + [6885] = {.lex_state = 549}, + [6886] = {.lex_state = 442, .external_lex_state = 116}, + [6887] = {.lex_state = 435, .external_lex_state = 126}, + [6888] = {.lex_state = 421, .external_lex_state = 129}, + [6889] = {.lex_state = 421, .external_lex_state = 129}, + [6890] = {.lex_state = 442, .external_lex_state = 116}, + [6891] = {.lex_state = 435}, + [6892] = {.lex_state = 489}, + [6893] = {.lex_state = 442, .external_lex_state = 116}, + [6894] = {.lex_state = 549}, + [6895] = {.lex_state = 440}, + [6896] = {.lex_state = 549}, + [6897] = {.lex_state = 549}, + [6898] = {.lex_state = 549}, + [6899] = {.lex_state = 549}, + [6900] = {.lex_state = 435}, + [6901] = {.lex_state = 549}, + [6902] = {.lex_state = 442, .external_lex_state = 116}, + [6903] = {.lex_state = 442, .external_lex_state = 116}, + [6904] = {.lex_state = 440}, + [6905] = {.lex_state = 435, .external_lex_state = 126}, + [6906] = {.lex_state = 435}, + [6907] = {.lex_state = 442, .external_lex_state = 116}, + [6908] = {.lex_state = 549}, + [6909] = {.lex_state = 435}, + [6910] = {.lex_state = 549}, + [6911] = {.lex_state = 442, .external_lex_state = 116}, + [6912] = {.lex_state = 435}, + [6913] = {.lex_state = 420}, + [6914] = {.lex_state = 442, .external_lex_state = 116}, + [6915] = {.lex_state = 549}, + [6916] = {.lex_state = 435}, + [6917] = {.lex_state = 435}, + [6918] = {.lex_state = 435}, + [6919] = {.lex_state = 549}, + [6920] = {.lex_state = 442, .external_lex_state = 116}, + [6921] = {.lex_state = 549}, + [6922] = {.lex_state = 549}, + [6923] = {.lex_state = 549}, + [6924] = {.lex_state = 549}, + [6925] = {.lex_state = 435}, + [6926] = {.lex_state = 549}, + [6927] = {.lex_state = 435}, + [6928] = {.lex_state = 549}, + [6929] = {.lex_state = 440}, + [6930] = {.lex_state = 549}, + [6931] = {.lex_state = 435, .external_lex_state = 126}, + [6932] = {.lex_state = 435}, + [6933] = {.lex_state = 440}, + [6934] = {.lex_state = 549}, + [6935] = {.lex_state = 442, .external_lex_state = 116}, + [6936] = {.lex_state = 549}, + [6937] = {.lex_state = 549}, + [6938] = {.lex_state = 442, .external_lex_state = 116}, + [6939] = {.lex_state = 435}, + [6940] = {.lex_state = 442, .external_lex_state = 116}, + [6941] = {.lex_state = 549}, + [6942] = {.lex_state = 442, .external_lex_state = 116}, + [6943] = {.lex_state = 549}, + [6944] = {.lex_state = 549}, + [6945] = {.lex_state = 549}, + [6946] = {.lex_state = 435}, + [6947] = {.lex_state = 549}, + [6948] = {.lex_state = 549}, + [6949] = {.lex_state = 440}, + [6950] = {.lex_state = 442, .external_lex_state = 116}, + [6951] = {.lex_state = 549, .external_lex_state = 130}, + [6952] = {.lex_state = 440}, + [6953] = {.lex_state = 435}, + [6954] = {.lex_state = 442, .external_lex_state = 116}, + [6955] = {.lex_state = 146, .external_lex_state = 120}, + [6956] = {.lex_state = 442, .external_lex_state = 116}, + [6957] = {.lex_state = 549}, + [6958] = {.lex_state = 146, .external_lex_state = 120}, + [6959] = {.lex_state = 442, .external_lex_state = 116}, + [6960] = {.lex_state = 435}, + [6961] = {.lex_state = 442, .external_lex_state = 116}, + [6962] = {.lex_state = 440}, + [6963] = {.lex_state = 442, .external_lex_state = 116}, + [6964] = {.lex_state = 442, .external_lex_state = 116}, + [6965] = {.lex_state = 549}, + [6966] = {.lex_state = 442, .external_lex_state = 116}, + [6967] = {.lex_state = 435}, + [6968] = {.lex_state = 549}, + [6969] = {.lex_state = 549}, + [6970] = {.lex_state = 549}, + [6971] = {.lex_state = 435, .external_lex_state = 126}, + [6972] = {.lex_state = 549}, + [6973] = {.lex_state = 440}, + [6974] = {.lex_state = 435}, + [6975] = {.lex_state = 442, .external_lex_state = 116}, + [6976] = {.lex_state = 549}, + [6977] = {.lex_state = 549}, + [6978] = {.lex_state = 435, .external_lex_state = 126}, + [6979] = {.lex_state = 549}, + [6980] = {.lex_state = 146, .external_lex_state = 120}, + [6981] = {.lex_state = 435}, + [6982] = {.lex_state = 146, .external_lex_state = 120}, + [6983] = {.lex_state = 435, .external_lex_state = 126}, + [6984] = {.lex_state = 440}, + [6985] = {.lex_state = 410}, + [6986] = {.lex_state = 442, .external_lex_state = 116}, + [6987] = {.lex_state = 549}, + [6988] = {.lex_state = 435}, + [6989] = {.lex_state = 549}, + [6990] = {.lex_state = 549}, + [6991] = {.lex_state = 549}, + [6992] = {.lex_state = 410}, + [6993] = {.lex_state = 549}, + [6994] = {.lex_state = 146, .external_lex_state = 120}, + [6995] = {.lex_state = 435}, + [6996] = {.lex_state = 549}, + [6997] = {.lex_state = 440}, + [6998] = {.lex_state = 146, .external_lex_state = 120}, + [6999] = {.lex_state = 442, .external_lex_state = 116}, + [7000] = {.lex_state = 549}, + [7001] = {.lex_state = 442, .external_lex_state = 116}, + [7002] = {.lex_state = 435}, + [7003] = {.lex_state = 549}, + [7004] = {.lex_state = 146, .external_lex_state = 120}, + [7005] = {.lex_state = 549}, + [7006] = {.lex_state = 442, .external_lex_state = 116}, + [7007] = {.lex_state = 549}, + [7008] = {.lex_state = 442, .external_lex_state = 116}, + [7009] = {.lex_state = 435}, + [7010] = {.lex_state = 549}, + [7011] = {.lex_state = 442, .external_lex_state = 116}, + [7012] = {.lex_state = 549}, + [7013] = {.lex_state = 549}, + [7014] = {.lex_state = 549}, + [7015] = {.lex_state = 442, .external_lex_state = 116}, + [7016] = {.lex_state = 435}, + [7017] = {.lex_state = 549}, + [7018] = {.lex_state = 440}, + [7019] = {.lex_state = 435}, + [7020] = {.lex_state = 549}, + [7021] = {.lex_state = 549}, + [7022] = {.lex_state = 489}, + [7023] = {.lex_state = 435}, + [7024] = {.lex_state = 442, .external_lex_state = 116}, + [7025] = {.lex_state = 549}, + [7026] = {.lex_state = 549}, + [7027] = {.lex_state = 549}, + [7028] = {.lex_state = 549}, + [7029] = {.lex_state = 442, .external_lex_state = 116}, + [7030] = {.lex_state = 435}, + [7031] = {.lex_state = 549}, + [7032] = {.lex_state = 549}, + [7033] = {.lex_state = 549}, + [7034] = {.lex_state = 549}, + [7035] = {.lex_state = 549}, + [7036] = {.lex_state = 549}, + [7037] = {.lex_state = 435}, + [7038] = {.lex_state = 549}, + [7039] = {.lex_state = 440}, + [7040] = {.lex_state = 549}, + [7041] = {.lex_state = 440}, + [7042] = {.lex_state = 442, .external_lex_state = 116}, + [7043] = {.lex_state = 146, .external_lex_state = 120}, + [7044] = {.lex_state = 435}, + [7045] = {.lex_state = 549}, + [7046] = {.lex_state = 440}, + [7047] = {.lex_state = 440}, + [7048] = {.lex_state = 549}, + [7049] = {.lex_state = 442, .external_lex_state = 116}, + [7050] = {.lex_state = 442, .external_lex_state = 116}, + [7051] = {.lex_state = 435}, + [7052] = {.lex_state = 549}, + [7053] = {.lex_state = 146, .external_lex_state = 120}, + [7054] = {.lex_state = 549}, + [7055] = {.lex_state = 549}, + [7056] = {.lex_state = 549}, + [7057] = {.lex_state = 442, .external_lex_state = 116}, + [7058] = {.lex_state = 435}, + [7059] = {.lex_state = 146, .external_lex_state = 120}, + [7060] = {.lex_state = 442, .external_lex_state = 116}, + [7061] = {.lex_state = 440}, + [7062] = {.lex_state = 549, .external_lex_state = 128}, + [7063] = {.lex_state = 435}, + [7064] = {.lex_state = 549}, + [7065] = {.lex_state = 435}, + [7066] = {.lex_state = 489}, + [7067] = {.lex_state = 549}, + [7068] = {.lex_state = 549, .external_lex_state = 130}, + [7069] = {.lex_state = 442, .external_lex_state = 116}, + [7070] = {.lex_state = 549}, + [7071] = {.lex_state = 442, .external_lex_state = 116}, + [7072] = {.lex_state = 435}, + [7073] = {.lex_state = 549}, + [7074] = {.lex_state = 442, .external_lex_state = 116}, + [7075] = {.lex_state = 549}, + [7076] = {.lex_state = 437}, + [7077] = {.lex_state = 549}, + [7078] = {.lex_state = 440}, + [7079] = {.lex_state = 435}, + [7080] = {.lex_state = 549}, + [7081] = {.lex_state = 549}, + [7082] = {.lex_state = 549, .external_lex_state = 128}, + [7083] = {.lex_state = 549}, + [7084] = {.lex_state = 440}, + [7085] = {.lex_state = 549}, + [7086] = {.lex_state = 435}, + [7087] = {.lex_state = 549}, + [7088] = {.lex_state = 440}, + [7089] = {.lex_state = 549}, + [7090] = {.lex_state = 440}, + [7091] = {.lex_state = 442, .external_lex_state = 116}, + [7092] = {.lex_state = 442, .external_lex_state = 116}, + [7093] = {.lex_state = 435}, + [7094] = {.lex_state = 410}, + [7095] = {.lex_state = 442, .external_lex_state = 116}, + [7096] = {.lex_state = 421, .external_lex_state = 129}, + [7097] = {.lex_state = 442, .external_lex_state = 116}, + [7098] = {.lex_state = 549}, + [7099] = {.lex_state = 549}, + [7100] = {.lex_state = 435}, + [7101] = {.lex_state = 549}, + [7102] = {.lex_state = 549}, + [7103] = {.lex_state = 549}, + [7104] = {.lex_state = 421, .external_lex_state = 129}, + [7105] = {.lex_state = 549}, + [7106] = {.lex_state = 410}, + [7107] = {.lex_state = 435}, + [7108] = {.lex_state = 440}, + [7109] = {.lex_state = 442, .external_lex_state = 116}, + [7110] = {.lex_state = 440}, + [7111] = {.lex_state = 440}, + [7112] = {.lex_state = 410}, + [7113] = {.lex_state = 442, .external_lex_state = 116}, + [7114] = {.lex_state = 435}, + [7115] = {.lex_state = 549}, + [7116] = {.lex_state = 442, .external_lex_state = 116}, + [7117] = {.lex_state = 549}, + [7118] = {.lex_state = 442, .external_lex_state = 116}, + [7119] = {.lex_state = 442, .external_lex_state = 116}, + [7120] = {.lex_state = 549}, + [7121] = {.lex_state = 435}, + [7122] = {.lex_state = 549}, + [7123] = {.lex_state = 549}, + [7124] = {.lex_state = 549}, + [7125] = {.lex_state = 549}, + [7126] = {.lex_state = 549}, + [7127] = {.lex_state = 549}, + [7128] = {.lex_state = 435}, + [7129] = {.lex_state = 440}, + [7130] = {.lex_state = 549}, + [7131] = {.lex_state = 549}, + [7132] = {.lex_state = 549}, + [7133] = {.lex_state = 440}, + [7134] = {.lex_state = 549}, + [7135] = {.lex_state = 435}, + [7136] = {.lex_state = 442, .external_lex_state = 116}, + [7137] = {.lex_state = 549}, + [7138] = {.lex_state = 549}, + [7139] = {.lex_state = 549}, + [7140] = {.lex_state = 442, .external_lex_state = 116}, + [7141] = {.lex_state = 549}, + [7142] = {.lex_state = 435}, + [7143] = {.lex_state = 549}, + [7144] = {.lex_state = 549}, + [7145] = {.lex_state = 549}, + [7146] = {.lex_state = 549}, + [7147] = {.lex_state = 549}, + [7148] = {.lex_state = 549}, + [7149] = {.lex_state = 435}, + [7150] = {.lex_state = 440}, + [7151] = {.lex_state = 549}, + [7152] = {.lex_state = 489}, + [7153] = {.lex_state = 549}, + [7154] = {.lex_state = 442, .external_lex_state = 116}, + [7155] = {.lex_state = 442, .external_lex_state = 116}, + [7156] = {.lex_state = 435}, + [7157] = {.lex_state = 442, .external_lex_state = 116}, + [7158] = {.lex_state = 549}, + [7159] = {.lex_state = 549}, + [7160] = {.lex_state = 442, .external_lex_state = 116}, + [7161] = {.lex_state = 549}, + [7162] = {.lex_state = 549}, + [7163] = {.lex_state = 435}, + [7164] = {.lex_state = 549}, + [7165] = {.lex_state = 549}, + [7166] = {.lex_state = 549}, + [7167] = {.lex_state = 435}, + [7168] = {.lex_state = 549}, + [7169] = {.lex_state = 440}, + [7170] = {.lex_state = 435}, + [7171] = {.lex_state = 549}, + [7172] = {.lex_state = 549}, + [7173] = {.lex_state = 440}, + [7174] = {.lex_state = 440}, + [7175] = {.lex_state = 440}, + [7176] = {.lex_state = 442, .external_lex_state = 116}, + [7177] = {.lex_state = 435}, + [7178] = {.lex_state = 549}, + [7179] = {.lex_state = 549}, + [7180] = {.lex_state = 549}, + [7181] = {.lex_state = 442, .external_lex_state = 116}, + [7182] = {.lex_state = 549}, + [7183] = {.lex_state = 442, .external_lex_state = 116}, + [7184] = {.lex_state = 435}, + [7185] = {.lex_state = 549}, + [7186] = {.lex_state = 549}, + [7187] = {.lex_state = 549}, + [7188] = {.lex_state = 549}, + [7189] = {.lex_state = 489}, + [7190] = {.lex_state = 146, .external_lex_state = 120}, + [7191] = {.lex_state = 435}, + [7192] = {.lex_state = 440}, + [7193] = {.lex_state = 146, .external_lex_state = 120}, + [7194] = {.lex_state = 442, .external_lex_state = 116}, + [7195] = {.lex_state = 442, .external_lex_state = 116}, + [7196] = {.lex_state = 442, .external_lex_state = 116}, + [7197] = {.lex_state = 442, .external_lex_state = 116}, + [7198] = {.lex_state = 435}, + [7199] = {.lex_state = 442, .external_lex_state = 116}, + [7200] = {.lex_state = 549}, + [7201] = {.lex_state = 442, .external_lex_state = 116}, + [7202] = {.lex_state = 549}, + [7203] = {.lex_state = 435, .external_lex_state = 126}, + [7204] = {.lex_state = 146, .external_lex_state = 120}, + [7205] = {.lex_state = 435}, + [7206] = {.lex_state = 549}, + [7207] = {.lex_state = 549}, + [7208] = {.lex_state = 146, .external_lex_state = 120}, + [7209] = {.lex_state = 549}, + [7210] = {.lex_state = 549}, + [7211] = {.lex_state = 442, .external_lex_state = 116}, + [7212] = {.lex_state = 435}, + [7213] = {.lex_state = 549}, + [7214] = {.lex_state = 435, .external_lex_state = 126}, + [7215] = {.lex_state = 146, .external_lex_state = 120}, + [7216] = {.lex_state = 440}, + [7217] = {.lex_state = 442, .external_lex_state = 116}, + [7218] = {.lex_state = 549}, + [7219] = {.lex_state = 146, .external_lex_state = 120}, + [7220] = {.lex_state = 549}, + [7221] = {.lex_state = 549}, + [7222] = {.lex_state = 442, .external_lex_state = 116}, + [7223] = {.lex_state = 442, .external_lex_state = 116}, + [7224] = {.lex_state = 442, .external_lex_state = 116}, + [7225] = {.lex_state = 549}, + [7226] = {.lex_state = 435, .external_lex_state = 126}, + [7227] = {.lex_state = 549, .external_lex_state = 128}, + [7228] = {.lex_state = 442, .external_lex_state = 116}, + [7229] = {.lex_state = 549}, + [7230] = {.lex_state = 442, .external_lex_state = 116}, + [7231] = {.lex_state = 549}, + [7232] = {.lex_state = 442, .external_lex_state = 116}, + [7233] = {.lex_state = 549}, + [7234] = {.lex_state = 549}, + [7235] = {.lex_state = 442, .external_lex_state = 116}, + [7236] = {.lex_state = 549}, + [7237] = {.lex_state = 421, .external_lex_state = 129}, + [7238] = {.lex_state = 549}, + [7239] = {.lex_state = 549}, + [7240] = {.lex_state = 442, .external_lex_state = 116}, + [7241] = {.lex_state = 549}, + [7242] = {.lex_state = 549}, + [7243] = {.lex_state = 549}, + [7244] = {.lex_state = 549}, + [7245] = {.lex_state = 549}, + [7246] = {.lex_state = 549}, + [7247] = {.lex_state = 440}, + [7248] = {.lex_state = 549}, + [7249] = {.lex_state = 549}, + [7250] = {.lex_state = 421, .external_lex_state = 129}, + [7251] = {.lex_state = 442, .external_lex_state = 116}, + [7252] = {.lex_state = 549}, + [7253] = {.lex_state = 549}, + [7254] = {.lex_state = 549}, + [7255] = {.lex_state = 549}, + [7256] = {.lex_state = 440}, + [7257] = {.lex_state = 549}, + [7258] = {.lex_state = 549}, + [7259] = {.lex_state = 549}, + [7260] = {.lex_state = 440}, + [7261] = {.lex_state = 442, .external_lex_state = 116}, + [7262] = {.lex_state = 442, .external_lex_state = 116}, + [7263] = {.lex_state = 549}, + [7264] = {.lex_state = 437}, + [7265] = {.lex_state = 549}, + [7266] = {.lex_state = 549}, + [7267] = {.lex_state = 489}, + [7268] = {.lex_state = 435}, + [7269] = {.lex_state = 549}, + [7270] = {.lex_state = 549}, + [7271] = {.lex_state = 442, .external_lex_state = 116}, + [7272] = {.lex_state = 549}, + [7273] = {.lex_state = 549, .external_lex_state = 130}, + [7274] = {.lex_state = 549}, + [7275] = {.lex_state = 549}, + [7276] = {.lex_state = 549}, + [7277] = {.lex_state = 549}, + [7278] = {.lex_state = 442, .external_lex_state = 116}, + [7279] = {.lex_state = 549}, + [7280] = {.lex_state = 549, .external_lex_state = 128}, + [7281] = {.lex_state = 549}, + [7282] = {.lex_state = 549}, + [7283] = {.lex_state = 440}, + [7284] = {.lex_state = 435, .external_lex_state = 126}, + [7285] = {.lex_state = 489}, + [7286] = {.lex_state = 440}, + [7287] = {.lex_state = 442, .external_lex_state = 116}, + [7288] = {.lex_state = 442, .external_lex_state = 116}, + [7289] = {.lex_state = 549}, + [7290] = {.lex_state = 435, .external_lex_state = 126}, + [7291] = {.lex_state = 549, .external_lex_state = 130}, + [7292] = {.lex_state = 549}, + [7293] = {.lex_state = 549}, + [7294] = {.lex_state = 442, .external_lex_state = 116}, + [7295] = {.lex_state = 549}, + [7296] = {.lex_state = 435, .external_lex_state = 126}, + [7297] = {.lex_state = 489}, + [7298] = {.lex_state = 549}, + [7299] = {.lex_state = 442, .external_lex_state = 116}, + [7300] = {.lex_state = 442, .external_lex_state = 116}, + [7301] = {.lex_state = 549}, + [7302] = {.lex_state = 549}, + [7303] = {.lex_state = 549}, + [7304] = {.lex_state = 549}, + [7305] = {.lex_state = 442, .external_lex_state = 116}, + [7306] = {.lex_state = 549}, + [7307] = {.lex_state = 549}, + [7308] = {.lex_state = 549}, + [7309] = {.lex_state = 146, .external_lex_state = 120}, + [7310] = {.lex_state = 442, .external_lex_state = 116}, + [7311] = {.lex_state = 549}, + [7312] = {.lex_state = 442, .external_lex_state = 116}, + [7313] = {.lex_state = 549}, + [7314] = {.lex_state = 549}, + [7315] = {.lex_state = 440}, + [7316] = {.lex_state = 435, .external_lex_state = 126}, + [7317] = {.lex_state = 435}, + [7318] = {.lex_state = 549}, + [7319] = {.lex_state = 442, .external_lex_state = 116}, + [7320] = {.lex_state = 549}, + [7321] = {.lex_state = 442, .external_lex_state = 116}, + [7322] = {.lex_state = 549}, + [7323] = {.lex_state = 489}, + [7324] = {.lex_state = 549}, + [7325] = {.lex_state = 549}, + [7326] = {.lex_state = 549}, + [7327] = {.lex_state = 549}, + [7328] = {.lex_state = 549}, + [7329] = {.lex_state = 549}, + [7330] = {.lex_state = 442, .external_lex_state = 116}, + [7331] = {.lex_state = 442, .external_lex_state = 116}, + [7332] = {.lex_state = 549}, + [7333] = {.lex_state = 549}, + [7334] = {.lex_state = 549}, + [7335] = {.lex_state = 549}, + [7336] = {.lex_state = 549}, + [7337] = {.lex_state = 420}, + [7338] = {.lex_state = 440}, + [7339] = {.lex_state = 549}, + [7340] = {.lex_state = 549}, + [7341] = {.lex_state = 549}, + [7342] = {.lex_state = 489}, + [7343] = {.lex_state = 442, .external_lex_state = 116}, + [7344] = {.lex_state = 549}, + [7345] = {.lex_state = 435, .external_lex_state = 126}, + [7346] = {.lex_state = 549}, + [7347] = {.lex_state = 549}, + [7348] = {.lex_state = 440}, + [7349] = {.lex_state = 549}, + [7350] = {.lex_state = 440}, + [7351] = {.lex_state = 440}, + [7352] = {.lex_state = 435, .external_lex_state = 126}, + [7353] = {.lex_state = 442, .external_lex_state = 116}, + [7354] = {.lex_state = 442, .external_lex_state = 116}, + [7355] = {.lex_state = 549}, + [7356] = {.lex_state = 549}, + [7357] = {.lex_state = 549}, + [7358] = {.lex_state = 549}, + [7359] = {.lex_state = 549, .external_lex_state = 128}, + [7360] = {.lex_state = 549}, + [7361] = {.lex_state = 549, .external_lex_state = 128}, + [7362] = {.lex_state = 549}, + [7363] = {.lex_state = 549}, + [7364] = {.lex_state = 549}, + [7365] = {.lex_state = 442, .external_lex_state = 116}, + [7366] = {.lex_state = 549}, + [7367] = {.lex_state = 549}, + [7368] = {.lex_state = 146, .external_lex_state = 120}, + [7369] = {.lex_state = 442, .external_lex_state = 116}, + [7370] = {.lex_state = 442, .external_lex_state = 116}, + [7371] = {.lex_state = 549}, + [7372] = {.lex_state = 489}, + [7373] = {.lex_state = 435, .external_lex_state = 126}, + [7374] = {.lex_state = 549}, + [7375] = {.lex_state = 549}, + [7376] = {.lex_state = 549}, + [7377] = {.lex_state = 549, .external_lex_state = 128}, + [7378] = {.lex_state = 549}, + [7379] = {.lex_state = 442, .external_lex_state = 116}, + [7380] = {.lex_state = 440}, + [7381] = {.lex_state = 435}, + [7382] = {.lex_state = 549}, + [7383] = {.lex_state = 489}, + [7384] = {.lex_state = 549}, + [7385] = {.lex_state = 435, .external_lex_state = 126}, + [7386] = {.lex_state = 421, .external_lex_state = 129}, + [7387] = {.lex_state = 549}, + [7388] = {.lex_state = 437}, + [7389] = {.lex_state = 435, .external_lex_state = 126}, + [7390] = {.lex_state = 442, .external_lex_state = 116}, + [7391] = {.lex_state = 489}, + [7392] = {.lex_state = 435}, + [7393] = {.lex_state = 410}, + [7394] = {.lex_state = 442, .external_lex_state = 116}, + [7395] = {.lex_state = 549}, + [7396] = {.lex_state = 549, .external_lex_state = 130}, + [7397] = {.lex_state = 549}, + [7398] = {.lex_state = 435, .external_lex_state = 126}, + [7399] = {.lex_state = 442, .external_lex_state = 116}, + [7400] = {.lex_state = 549, .external_lex_state = 130}, + [7401] = {.lex_state = 549}, + [7402] = {.lex_state = 549}, + [7403] = {.lex_state = 435}, + [7404] = {.lex_state = 549}, + [7405] = {.lex_state = 420}, + [7406] = {.lex_state = 549}, + [7407] = {.lex_state = 549}, + [7408] = {.lex_state = 435}, + [7409] = {.lex_state = 435}, + [7410] = {.lex_state = 549}, + [7411] = {.lex_state = 549}, + [7412] = {.lex_state = 549}, + [7413] = {.lex_state = 549}, + [7414] = {.lex_state = 440}, + [7415] = {.lex_state = 549}, + [7416] = {.lex_state = 442, .external_lex_state = 116}, + [7417] = {.lex_state = 421, .external_lex_state = 129}, + [7418] = {.lex_state = 146, .external_lex_state = 120}, + [7419] = {.lex_state = 146, .external_lex_state = 120}, + [7420] = {.lex_state = 440}, + [7421] = {.lex_state = 549}, + [7422] = {.lex_state = 442, .external_lex_state = 116}, + [7423] = {.lex_state = 440}, + [7424] = {.lex_state = 442, .external_lex_state = 116}, + [7425] = {.lex_state = 146, .external_lex_state = 120}, + [7426] = {.lex_state = 146, .external_lex_state = 120}, + [7427] = {.lex_state = 435, .external_lex_state = 126}, + [7428] = {.lex_state = 435, .external_lex_state = 126}, + [7429] = {.lex_state = 146, .external_lex_state = 120}, + [7430] = {.lex_state = 442, .external_lex_state = 116}, + [7431] = {.lex_state = 549}, + [7432] = {.lex_state = 146, .external_lex_state = 120}, + [7433] = {.lex_state = 442, .external_lex_state = 116}, + [7434] = {.lex_state = 549}, + [7435] = {.lex_state = 549}, + [7436] = {.lex_state = 549}, + [7437] = {.lex_state = 440}, + [7438] = {.lex_state = 442, .external_lex_state = 116}, + [7439] = {.lex_state = 440}, + [7440] = {.lex_state = 442, .external_lex_state = 116}, + [7441] = {.lex_state = 549}, + [7442] = {.lex_state = 442, .external_lex_state = 116}, + [7443] = {.lex_state = 442, .external_lex_state = 116}, + [7444] = {.lex_state = 549}, + [7445] = {.lex_state = 549}, + [7446] = {.lex_state = 549}, + [7447] = {.lex_state = 442, .external_lex_state = 116}, + [7448] = {.lex_state = 549}, + [7449] = {.lex_state = 442, .external_lex_state = 116}, + [7450] = {.lex_state = 549}, + [7451] = {.lex_state = 421, .external_lex_state = 129}, + [7452] = {.lex_state = 549}, + [7453] = {.lex_state = 549}, + [7454] = {.lex_state = 549}, + [7455] = {.lex_state = 549}, + [7456] = {.lex_state = 442, .external_lex_state = 116}, + [7457] = {.lex_state = 440}, + [7458] = {.lex_state = 549}, + [7459] = {.lex_state = 435, .external_lex_state = 126}, + [7460] = {.lex_state = 549}, + [7461] = {.lex_state = 549}, + [7462] = {.lex_state = 549}, + [7463] = {.lex_state = 442, .external_lex_state = 116}, + [7464] = {.lex_state = 146, .external_lex_state = 120}, + [7465] = {.lex_state = 421, .external_lex_state = 129}, + [7466] = {.lex_state = 421, .external_lex_state = 129}, + [7467] = {.lex_state = 442, .external_lex_state = 116}, + [7468] = {.lex_state = 549}, + [7469] = {.lex_state = 440}, + [7470] = {.lex_state = 549}, + [7471] = {.lex_state = 549}, + [7472] = {.lex_state = 435}, + [7473] = {.lex_state = 549}, + [7474] = {.lex_state = 549}, + [7475] = {.lex_state = 440}, + [7476] = {.lex_state = 435}, + [7477] = {.lex_state = 421, .external_lex_state = 129}, + [7478] = {.lex_state = 437}, + [7479] = {.lex_state = 440}, + [7480] = {.lex_state = 442, .external_lex_state = 116}, + [7481] = {.lex_state = 489}, + [7482] = {.lex_state = 435}, + [7483] = {.lex_state = 442, .external_lex_state = 116}, + [7484] = {.lex_state = 549, .external_lex_state = 128}, + [7485] = {.lex_state = 549}, + [7486] = {.lex_state = 549, .external_lex_state = 130}, + [7487] = {.lex_state = 442, .external_lex_state = 116}, + [7488] = {.lex_state = 442, .external_lex_state = 116}, + [7489] = {.lex_state = 435, .external_lex_state = 126}, + [7490] = {.lex_state = 549, .external_lex_state = 130}, + [7491] = {.lex_state = 146, .external_lex_state = 120}, + [7492] = {.lex_state = 549}, + [7493] = {.lex_state = 146, .external_lex_state = 120}, + [7494] = {.lex_state = 435, .external_lex_state = 126}, + [7495] = {.lex_state = 410}, + [7496] = {.lex_state = 442, .external_lex_state = 116}, + [7497] = {.lex_state = 549}, + [7498] = {.lex_state = 549}, + [7499] = {.lex_state = 549}, + [7500] = {.lex_state = 549}, + [7501] = {.lex_state = 549}, + [7502] = {.lex_state = 442, .external_lex_state = 116}, + [7503] = {.lex_state = 489}, + [7504] = {.lex_state = 440}, + [7505] = {.lex_state = 549}, + [7506] = {.lex_state = 442, .external_lex_state = 116}, + [7507] = {.lex_state = 435}, + [7508] = {.lex_state = 442, .external_lex_state = 116}, + [7509] = {.lex_state = 549}, + [7510] = {.lex_state = 489}, + [7511] = {.lex_state = 435}, + [7512] = {.lex_state = 549}, + [7513] = {.lex_state = 549, .external_lex_state = 130}, + [7514] = {.lex_state = 410}, + [7515] = {.lex_state = 549}, + [7516] = {.lex_state = 549, .external_lex_state = 130}, + [7517] = {.lex_state = 549}, + [7518] = {.lex_state = 549}, + [7519] = {.lex_state = 549}, + [7520] = {.lex_state = 442, .external_lex_state = 116}, + [7521] = {.lex_state = 549}, + [7522] = {.lex_state = 489}, + [7523] = {.lex_state = 435, .external_lex_state = 126}, + [7524] = {.lex_state = 549}, + [7525] = {.lex_state = 549}, + [7526] = {.lex_state = 442, .external_lex_state = 116}, + [7527] = {.lex_state = 442, .external_lex_state = 116}, + [7528] = {.lex_state = 549}, + [7529] = {.lex_state = 442, .external_lex_state = 116}, + [7530] = {.lex_state = 549}, + [7531] = {.lex_state = 549}, + [7532] = {.lex_state = 549}, + [7533] = {.lex_state = 440}, + [7534] = {.lex_state = 549}, + [7535] = {.lex_state = 549}, + [7536] = {.lex_state = 435}, + [7537] = {.lex_state = 435}, + [7538] = {.lex_state = 435}, + [7539] = {.lex_state = 435}, + [7540] = {.lex_state = 435}, + [7541] = {.lex_state = 435}, + [7542] = {.lex_state = 435}, + [7543] = {.lex_state = 435}, + [7544] = {.lex_state = 435}, + [7545] = {.lex_state = 435}, + [7546] = {.lex_state = 435}, + [7547] = {.lex_state = 435}, + [7548] = {.lex_state = 435}, + [7549] = {.lex_state = 435}, + [7550] = {.lex_state = 435}, + [7551] = {.lex_state = 435}, + [7552] = {.lex_state = 435}, + [7553] = {.lex_state = 435}, + [7554] = {.lex_state = 435}, + [7555] = {.lex_state = 435}, + [7556] = {.lex_state = 435}, + [7557] = {.lex_state = 435}, + [7558] = {.lex_state = 435}, + [7559] = {.lex_state = 435}, + [7560] = {.lex_state = 435}, + [7561] = {.lex_state = 435}, + [7562] = {.lex_state = 435}, + [7563] = {.lex_state = 435}, + [7564] = {.lex_state = 435}, + [7565] = {.lex_state = 435}, + [7566] = {.lex_state = 435}, + [7567] = {.lex_state = 435}, + [7568] = {.lex_state = 435}, + [7569] = {.lex_state = 435}, + [7570] = {.lex_state = 435}, + [7571] = {.lex_state = 435}, + [7572] = {.lex_state = 435}, + [7573] = {.lex_state = 435}, + [7574] = {.lex_state = 435}, + [7575] = {.lex_state = 435}, + [7576] = {.lex_state = 435}, + [7577] = {.lex_state = 435}, + [7578] = {.lex_state = 435}, + [7579] = {.lex_state = 435}, + [7580] = {.lex_state = 435}, + [7581] = {.lex_state = 435}, + [7582] = {.lex_state = 435}, + [7583] = {.lex_state = 435}, + [7584] = {.lex_state = 435}, + [7585] = {.lex_state = 435}, + [7586] = {.lex_state = 435}, + [7587] = {.lex_state = 435}, + [7588] = {.lex_state = 435}, + [7589] = {.lex_state = 435}, + [7590] = {.lex_state = 435}, + [7591] = {.lex_state = 435}, + [7592] = {.lex_state = 435}, + [7593] = {.lex_state = 435}, + [7594] = {.lex_state = 435}, + [7595] = {.lex_state = 435}, + [7596] = {.lex_state = 435}, + [7597] = {.lex_state = 440}, + [7598] = {.lex_state = 435}, + [7599] = {.lex_state = 549}, + [7600] = {.lex_state = 435}, + [7601] = {.lex_state = 442, .external_lex_state = 116}, + [7602] = {.lex_state = 549}, + [7603] = {.lex_state = 549}, + [7604] = {.lex_state = 435}, + [7605] = {.lex_state = 435}, + [7606] = {.lex_state = 549}, + [7607] = {.lex_state = 435}, + [7608] = {.lex_state = 435}, + [7609] = {.lex_state = 435}, + [7610] = {.lex_state = 435}, + [7611] = {.lex_state = 435}, + [7612] = {.lex_state = 435}, + [7613] = {.lex_state = 435}, + [7614] = {.lex_state = 435}, + [7615] = {.lex_state = 435}, + [7616] = {.lex_state = 435}, + [7617] = {.lex_state = 435}, + [7618] = {.lex_state = 435}, + [7619] = {.lex_state = 435}, + [7620] = {.lex_state = 435}, + [7621] = {.lex_state = 435}, + [7622] = {.lex_state = 435}, + [7623] = {.lex_state = 435}, + [7624] = {.lex_state = 435}, + [7625] = {.lex_state = 435}, + [7626] = {.lex_state = 435}, + [7627] = {.lex_state = 435}, + [7628] = {.lex_state = 435}, + [7629] = {.lex_state = 435}, + [7630] = {.lex_state = 435}, + [7631] = {.lex_state = 435}, + [7632] = {.lex_state = 435}, + [7633] = {.lex_state = 435}, + [7634] = {.lex_state = 435}, + [7635] = {.lex_state = 435}, + [7636] = {.lex_state = 435}, + [7637] = {.lex_state = 435}, + [7638] = {.lex_state = 435}, + [7639] = {.lex_state = 435}, + [7640] = {.lex_state = 435}, + [7641] = {.lex_state = 435}, + [7642] = {.lex_state = 435}, + [7643] = {.lex_state = 435}, + [7644] = {.lex_state = 435}, + [7645] = {.lex_state = 435}, + [7646] = {.lex_state = 435}, + [7647] = {.lex_state = 435}, + [7648] = {.lex_state = 435}, + [7649] = {.lex_state = 435}, + [7650] = {.lex_state = 435}, + [7651] = {.lex_state = 435}, + [7652] = {.lex_state = 435}, + [7653] = {.lex_state = 435}, + [7654] = {.lex_state = 435}, + [7655] = {.lex_state = 435}, + [7656] = {.lex_state = 435}, + [7657] = {.lex_state = 435}, + [7658] = {.lex_state = 435}, + [7659] = {.lex_state = 435}, + [7660] = {.lex_state = 435}, + [7661] = {.lex_state = 435}, + [7662] = {.lex_state = 435}, + [7663] = {.lex_state = 435}, + [7664] = {.lex_state = 435}, + [7665] = {.lex_state = 435}, + [7666] = {.lex_state = 435}, + [7667] = {.lex_state = 435}, + [7668] = {.lex_state = 435}, + [7669] = {.lex_state = 420}, + [7670] = {.lex_state = 146, .external_lex_state = 120}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -29028,45 +29329,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___error_recovery] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(7470), - [sym__statements] = STATE(7469), - [sym__statement_not_pipeline] = STATE(6572), - [sym_redirected_statement] = STATE(4860), - [sym_for_statement] = STATE(4860), - [sym_c_style_for_statement] = STATE(4860), - [sym_while_statement] = STATE(4321), - [sym_if_statement] = STATE(4321), - [sym_case_statement] = STATE(4860), - [sym_function_definition] = STATE(4860), - [sym_compound_statement] = STATE(4860), - [sym_subshell] = STATE(4860), - [sym_pipeline] = STATE(5079), - [sym_list] = STATE(4860), - [sym_negated_command] = STATE(4860), - [sym_test_command] = STATE(4860), - [sym_declaration_command] = STATE(4860), - [sym_unset_command] = STATE(4860), - [sym_command] = STATE(4860), + [sym_program] = STATE(7382), + [sym__statements] = STATE(7421), + [sym__statement_not_pipeline] = STATE(6709), + [sym_redirected_statement] = STATE(4692), + [sym_for_statement] = STATE(4692), + [sym_c_style_for_statement] = STATE(4692), + [sym_while_statement] = STATE(4380), + [sym_if_statement] = STATE(4380), + [sym_case_statement] = STATE(4692), + [sym_function_definition] = STATE(4692), + [sym_compound_statement] = STATE(4692), + [sym_subshell] = STATE(4692), + [sym_pipeline] = STATE(5106), + [sym_list] = STATE(4692), + [sym_negated_command] = STATE(4692), + [sym_test_command] = STATE(4692), + [sym_declaration_command] = STATE(4692), + [sym_unset_command] = STATE(4692), + [sym_command] = STATE(4692), [sym_command_name] = STATE(534), - [sym_variable_assignment] = STATE(913), - [sym_variable_assignments] = STATE(4860), - [sym_subscript] = STATE(6774), - [sym_file_redirect] = STATE(2055), - [sym_herestring_redirect] = STATE(2156), - [sym_arithmetic_expansion] = STATE(957), - [sym_brace_expression] = STATE(957), - [sym_concatenation] = STATE(1386), - [sym_string] = STATE(957), - [sym_translated_string] = STATE(957), - [sym_number] = STATE(957), - [sym_simple_expansion] = STATE(957), - [sym_expansion] = STATE(957), - [sym_command_substitution] = STATE(957), - [sym_process_substitution] = STATE(957), - [aux_sym__statements_repeat1] = STATE(427), - [aux_sym_redirected_statement_repeat2] = STATE(4571), - [aux_sym_command_repeat1] = STATE(937), - [aux_sym__literal_repeat1] = STATE(1212), + [sym_variable_assignment] = STATE(955), + [sym_variable_assignments] = STATE(4692), + [sym_subscript] = STATE(6771), + [sym_file_redirect] = STATE(2203), + [sym_herestring_redirect] = STATE(2204), + [sym_arithmetic_expansion] = STATE(954), + [sym_brace_expression] = STATE(954), + [sym_concatenation] = STATE(1432), + [sym_string] = STATE(954), + [sym_translated_string] = STATE(954), + [sym_number] = STATE(954), + [sym_simple_expansion] = STATE(954), + [sym_expansion] = STATE(954), + [sym_command_substitution] = STATE(954), + [sym_process_substitution] = STATE(954), + [aux_sym__statements_repeat1] = STATE(428), + [aux_sym_redirected_statement_repeat2] = STATE(4541), + [aux_sym_command_repeat1] = STATE(972), + [aux_sym__literal_repeat1] = STATE(1257), [ts_builtin_sym_end] = ACTIONS(5), [sym_word] = ACTIONS(7), [anon_sym_for] = ACTIONS(9), @@ -29122,50 +29423,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(79), }, [2] = { - [sym__statements] = STATE(7427), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym__expression] = STATE(3126), - [sym_binary_expression] = STATE(3053), - [sym_ternary_expression] = STATE(3053), - [sym_unary_expression] = STATE(3053), - [sym_postfix_expression] = STATE(3053), - [sym_parenthesized_expression] = STATE(3053), - [sym_arithmetic_expansion] = STATE(472), - [sym_brace_expression] = STATE(472), - [sym_concatenation] = STATE(502), - [sym_string] = STATE(472), - [sym_translated_string] = STATE(472), - [sym_number] = STATE(472), - [sym_simple_expansion] = STATE(472), - [sym_expansion] = STATE(472), - [sym_command_substitution] = STATE(472), - [sym_process_substitution] = STATE(472), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(493), + [sym__statements] = STATE(7077), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym__expression] = STATE(2983), + [sym_binary_expression] = STATE(2976), + [sym_ternary_expression] = STATE(2976), + [sym_unary_expression] = STATE(2976), + [sym_postfix_expression] = STATE(2976), + [sym_parenthesized_expression] = STATE(2976), + [sym_arithmetic_expansion] = STATE(468), + [sym_brace_expression] = STATE(468), + [sym_concatenation] = STATE(495), + [sym_string] = STATE(468), + [sym_translated_string] = STATE(468), + [sym_number] = STATE(468), + [sym_simple_expansion] = STATE(468), + [sym_expansion] = STATE(468), + [sym_command_substitution] = STATE(468), + [sym_process_substitution] = STATE(468), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(494), [sym_word] = ACTIONS(81), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -29225,50 +29526,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(141), }, [3] = { - [sym__statements] = STATE(6914), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym__expression] = STATE(3042), - [sym_binary_expression] = STATE(3053), - [sym_ternary_expression] = STATE(3053), - [sym_unary_expression] = STATE(3053), - [sym_postfix_expression] = STATE(3053), - [sym_parenthesized_expression] = STATE(3053), - [sym_arithmetic_expansion] = STATE(472), - [sym_brace_expression] = STATE(472), - [sym_concatenation] = STATE(502), - [sym_string] = STATE(472), - [sym_translated_string] = STATE(472), - [sym_number] = STATE(472), - [sym_simple_expansion] = STATE(472), - [sym_expansion] = STATE(472), - [sym_command_substitution] = STATE(472), - [sym_process_substitution] = STATE(472), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(493), + [sym__statements] = STATE(7000), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym__expression] = STATE(3124), + [sym_binary_expression] = STATE(2976), + [sym_ternary_expression] = STATE(2976), + [sym_unary_expression] = STATE(2976), + [sym_postfix_expression] = STATE(2976), + [sym_parenthesized_expression] = STATE(2976), + [sym_arithmetic_expansion] = STATE(468), + [sym_brace_expression] = STATE(468), + [sym_concatenation] = STATE(495), + [sym_string] = STATE(468), + [sym_translated_string] = STATE(468), + [sym_number] = STATE(468), + [sym_simple_expansion] = STATE(468), + [sym_expansion] = STATE(468), + [sym_command_substitution] = STATE(468), + [sym_process_substitution] = STATE(468), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(494), [sym_word] = ACTIONS(81), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -29328,48 +29629,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(141), }, [4] = { - [sym__statement_not_pipeline] = STATE(6568), - [sym_redirected_statement] = STATE(5394), - [sym_for_statement] = STATE(5406), - [sym_c_style_for_statement] = STATE(5406), - [sym_while_statement] = STATE(5195), - [sym_if_statement] = STATE(5195), - [sym_case_statement] = STATE(5406), - [sym_function_definition] = STATE(5406), - [sym_compound_statement] = STATE(5406), - [sym_subshell] = STATE(5406), - [sym_pipeline] = STATE(5569), - [sym_list] = STATE(5406), - [sym_negated_command] = STATE(5406), - [sym_test_command] = STATE(5406), - [sym_declaration_command] = STATE(5406), - [sym_unset_command] = STATE(5406), - [sym_command] = STATE(5406), - [sym_command_name] = STATE(620), - [sym_variable_assignment] = STATE(1811), - [sym_variable_assignments] = STATE(5406), - [sym_subscript] = STATE(6756), - [sym_file_redirect] = STATE(2693), - [sym_herestring_redirect] = STATE(2691), - [sym__expression] = STATE(3131), - [sym_binary_expression] = STATE(3071), - [sym_ternary_expression] = STATE(3071), - [sym_unary_expression] = STATE(3071), - [sym_postfix_expression] = STATE(3071), - [sym_parenthesized_expression] = STATE(3071), - [sym_arithmetic_expansion] = STATE(496), - [sym_brace_expression] = STATE(496), - [sym_concatenation] = STATE(524), - [sym_string] = STATE(496), - [sym_translated_string] = STATE(496), - [sym_number] = STATE(496), - [sym_simple_expansion] = STATE(496), - [sym_expansion] = STATE(496), - [sym_command_substitution] = STATE(496), - [sym_process_substitution] = STATE(496), - [aux_sym_redirected_statement_repeat2] = STATE(5167), - [aux_sym_command_repeat1] = STATE(955), - [aux_sym__literal_repeat1] = STATE(522), + [sym__statement_not_pipeline] = STATE(6684), + [sym_redirected_statement] = STATE(5285), + [sym_for_statement] = STATE(5439), + [sym_c_style_for_statement] = STATE(5439), + [sym_while_statement] = STATE(5133), + [sym_if_statement] = STATE(5133), + [sym_case_statement] = STATE(5439), + [sym_function_definition] = STATE(5439), + [sym_compound_statement] = STATE(5439), + [sym_subshell] = STATE(5439), + [sym_pipeline] = STATE(5593), + [sym_list] = STATE(5439), + [sym_negated_command] = STATE(5439), + [sym_test_command] = STATE(5439), + [sym_declaration_command] = STATE(5439), + [sym_unset_command] = STATE(5439), + [sym_command] = STATE(5439), + [sym_command_name] = STATE(634), + [sym_variable_assignment] = STATE(1791), + [sym_variable_assignments] = STATE(5439), + [sym_subscript] = STATE(6766), + [sym_file_redirect] = STATE(2585), + [sym_herestring_redirect] = STATE(2587), + [sym__expression] = STATE(3077), + [sym_binary_expression] = STATE(2952), + [sym_ternary_expression] = STATE(2952), + [sym_unary_expression] = STATE(2952), + [sym_postfix_expression] = STATE(2952), + [sym_parenthesized_expression] = STATE(2952), + [sym_arithmetic_expansion] = STATE(501), + [sym_brace_expression] = STATE(501), + [sym_concatenation] = STATE(525), + [sym_string] = STATE(501), + [sym_translated_string] = STATE(501), + [sym_number] = STATE(501), + [sym_simple_expansion] = STATE(501), + [sym_expansion] = STATE(501), + [sym_command_substitution] = STATE(501), + [sym_process_substitution] = STATE(501), + [aux_sym_redirected_statement_repeat2] = STATE(5229), + [aux_sym_command_repeat1] = STATE(950), + [aux_sym__literal_repeat1] = STATE(523), [sym_word] = ACTIONS(143), [anon_sym_for] = ACTIONS(145), [anon_sym_select] = ACTIONS(147), @@ -29430,48 +29731,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(221), }, [5] = { - [sym__statement_not_pipeline] = STATE(6568), - [sym_redirected_statement] = STATE(5266), - [sym_for_statement] = STATE(5406), - [sym_c_style_for_statement] = STATE(5406), - [sym_while_statement] = STATE(5195), - [sym_if_statement] = STATE(5195), - [sym_case_statement] = STATE(5406), - [sym_function_definition] = STATE(5406), - [sym_compound_statement] = STATE(5406), - [sym_subshell] = STATE(5406), - [sym_pipeline] = STATE(5569), - [sym_list] = STATE(5406), - [sym_negated_command] = STATE(5406), - [sym_test_command] = STATE(5406), - [sym_declaration_command] = STATE(5406), - [sym_unset_command] = STATE(5406), - [sym_command] = STATE(5406), - [sym_command_name] = STATE(620), - [sym_variable_assignment] = STATE(1811), - [sym_variable_assignments] = STATE(5406), - [sym_subscript] = STATE(6756), - [sym_file_redirect] = STATE(2693), - [sym_herestring_redirect] = STATE(2691), - [sym__expression] = STATE(3124), - [sym_binary_expression] = STATE(3071), - [sym_ternary_expression] = STATE(3071), - [sym_unary_expression] = STATE(3071), - [sym_postfix_expression] = STATE(3071), - [sym_parenthesized_expression] = STATE(3071), - [sym_arithmetic_expansion] = STATE(496), - [sym_brace_expression] = STATE(496), - [sym_concatenation] = STATE(524), - [sym_string] = STATE(496), - [sym_translated_string] = STATE(496), - [sym_number] = STATE(496), - [sym_simple_expansion] = STATE(496), - [sym_expansion] = STATE(496), - [sym_command_substitution] = STATE(496), - [sym_process_substitution] = STATE(496), - [aux_sym_redirected_statement_repeat2] = STATE(5167), - [aux_sym_command_repeat1] = STATE(955), - [aux_sym__literal_repeat1] = STATE(522), + [sym__statement_not_pipeline] = STATE(6684), + [sym_redirected_statement] = STATE(5305), + [sym_for_statement] = STATE(5439), + [sym_c_style_for_statement] = STATE(5439), + [sym_while_statement] = STATE(5133), + [sym_if_statement] = STATE(5133), + [sym_case_statement] = STATE(5439), + [sym_function_definition] = STATE(5439), + [sym_compound_statement] = STATE(5439), + [sym_subshell] = STATE(5439), + [sym_pipeline] = STATE(5593), + [sym_list] = STATE(5439), + [sym_negated_command] = STATE(5439), + [sym_test_command] = STATE(5439), + [sym_declaration_command] = STATE(5439), + [sym_unset_command] = STATE(5439), + [sym_command] = STATE(5439), + [sym_command_name] = STATE(634), + [sym_variable_assignment] = STATE(1791), + [sym_variable_assignments] = STATE(5439), + [sym_subscript] = STATE(6766), + [sym_file_redirect] = STATE(2585), + [sym_herestring_redirect] = STATE(2587), + [sym__expression] = STATE(3018), + [sym_binary_expression] = STATE(2952), + [sym_ternary_expression] = STATE(2952), + [sym_unary_expression] = STATE(2952), + [sym_postfix_expression] = STATE(2952), + [sym_parenthesized_expression] = STATE(2952), + [sym_arithmetic_expansion] = STATE(501), + [sym_brace_expression] = STATE(501), + [sym_concatenation] = STATE(525), + [sym_string] = STATE(501), + [sym_translated_string] = STATE(501), + [sym_number] = STATE(501), + [sym_simple_expansion] = STATE(501), + [sym_expansion] = STATE(501), + [sym_command_substitution] = STATE(501), + [sym_process_substitution] = STATE(501), + [aux_sym_redirected_statement_repeat2] = STATE(5229), + [aux_sym_command_repeat1] = STATE(950), + [aux_sym__literal_repeat1] = STATE(523), [sym_word] = ACTIONS(143), [anon_sym_for] = ACTIONS(145), [anon_sym_select] = ACTIONS(147), @@ -29532,48 +29833,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(221), }, [6] = { - [sym__statement_not_pipeline] = STATE(6568), - [sym_redirected_statement] = STATE(5317), - [sym_for_statement] = STATE(5406), - [sym_c_style_for_statement] = STATE(5406), - [sym_while_statement] = STATE(5195), - [sym_if_statement] = STATE(5195), - [sym_case_statement] = STATE(5406), - [sym_function_definition] = STATE(5406), - [sym_compound_statement] = STATE(5406), - [sym_subshell] = STATE(5406), - [sym_pipeline] = STATE(5569), - [sym_list] = STATE(5406), - [sym_negated_command] = STATE(5406), - [sym_test_command] = STATE(5406), - [sym_declaration_command] = STATE(5406), - [sym_unset_command] = STATE(5406), - [sym_command] = STATE(5406), - [sym_command_name] = STATE(620), - [sym_variable_assignment] = STATE(1811), - [sym_variable_assignments] = STATE(5406), - [sym_subscript] = STATE(6756), - [sym_file_redirect] = STATE(2693), - [sym_herestring_redirect] = STATE(2691), - [sym__expression] = STATE(3145), - [sym_binary_expression] = STATE(3071), - [sym_ternary_expression] = STATE(3071), - [sym_unary_expression] = STATE(3071), - [sym_postfix_expression] = STATE(3071), - [sym_parenthesized_expression] = STATE(3071), - [sym_arithmetic_expansion] = STATE(496), - [sym_brace_expression] = STATE(496), - [sym_concatenation] = STATE(524), - [sym_string] = STATE(496), - [sym_translated_string] = STATE(496), - [sym_number] = STATE(496), - [sym_simple_expansion] = STATE(496), - [sym_expansion] = STATE(496), - [sym_command_substitution] = STATE(496), - [sym_process_substitution] = STATE(496), - [aux_sym_redirected_statement_repeat2] = STATE(5167), - [aux_sym_command_repeat1] = STATE(955), - [aux_sym__literal_repeat1] = STATE(522), + [sym__statement_not_pipeline] = STATE(6684), + [sym_redirected_statement] = STATE(5343), + [sym_for_statement] = STATE(5439), + [sym_c_style_for_statement] = STATE(5439), + [sym_while_statement] = STATE(5133), + [sym_if_statement] = STATE(5133), + [sym_case_statement] = STATE(5439), + [sym_function_definition] = STATE(5439), + [sym_compound_statement] = STATE(5439), + [sym_subshell] = STATE(5439), + [sym_pipeline] = STATE(5593), + [sym_list] = STATE(5439), + [sym_negated_command] = STATE(5439), + [sym_test_command] = STATE(5439), + [sym_declaration_command] = STATE(5439), + [sym_unset_command] = STATE(5439), + [sym_command] = STATE(5439), + [sym_command_name] = STATE(634), + [sym_variable_assignment] = STATE(1791), + [sym_variable_assignments] = STATE(5439), + [sym_subscript] = STATE(6766), + [sym_file_redirect] = STATE(2585), + [sym_herestring_redirect] = STATE(2587), + [sym__expression] = STATE(3067), + [sym_binary_expression] = STATE(2952), + [sym_ternary_expression] = STATE(2952), + [sym_unary_expression] = STATE(2952), + [sym_postfix_expression] = STATE(2952), + [sym_parenthesized_expression] = STATE(2952), + [sym_arithmetic_expansion] = STATE(501), + [sym_brace_expression] = STATE(501), + [sym_concatenation] = STATE(525), + [sym_string] = STATE(501), + [sym_translated_string] = STATE(501), + [sym_number] = STATE(501), + [sym_simple_expansion] = STATE(501), + [sym_expansion] = STATE(501), + [sym_command_substitution] = STATE(501), + [sym_process_substitution] = STATE(501), + [aux_sym_redirected_statement_repeat2] = STATE(5229), + [aux_sym_command_repeat1] = STATE(950), + [aux_sym__literal_repeat1] = STATE(523), [sym_word] = ACTIONS(143), [anon_sym_for] = ACTIONS(145), [anon_sym_select] = ACTIONS(147), @@ -29634,48 +29935,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(221), }, [7] = { - [sym__statement_not_pipeline] = STATE(6568), - [sym_redirected_statement] = STATE(5361), - [sym_for_statement] = STATE(5406), - [sym_c_style_for_statement] = STATE(5406), - [sym_while_statement] = STATE(5195), - [sym_if_statement] = STATE(5195), - [sym_case_statement] = STATE(5406), - [sym_function_definition] = STATE(5406), - [sym_compound_statement] = STATE(5406), - [sym_subshell] = STATE(5406), - [sym_pipeline] = STATE(5569), - [sym_list] = STATE(5406), - [sym_negated_command] = STATE(5406), - [sym_test_command] = STATE(5406), - [sym_declaration_command] = STATE(5406), - [sym_unset_command] = STATE(5406), - [sym_command] = STATE(5406), - [sym_command_name] = STATE(620), - [sym_variable_assignment] = STATE(1811), - [sym_variable_assignments] = STATE(5406), - [sym_subscript] = STATE(6756), - [sym_file_redirect] = STATE(2693), - [sym_herestring_redirect] = STATE(2691), - [sym__expression] = STATE(3155), - [sym_binary_expression] = STATE(3071), - [sym_ternary_expression] = STATE(3071), - [sym_unary_expression] = STATE(3071), - [sym_postfix_expression] = STATE(3071), - [sym_parenthesized_expression] = STATE(3071), - [sym_arithmetic_expansion] = STATE(496), - [sym_brace_expression] = STATE(496), - [sym_concatenation] = STATE(524), - [sym_string] = STATE(496), - [sym_translated_string] = STATE(496), - [sym_number] = STATE(496), - [sym_simple_expansion] = STATE(496), - [sym_expansion] = STATE(496), - [sym_command_substitution] = STATE(496), - [sym_process_substitution] = STATE(496), - [aux_sym_redirected_statement_repeat2] = STATE(5167), - [aux_sym_command_repeat1] = STATE(955), - [aux_sym__literal_repeat1] = STATE(522), + [sym__statement_not_pipeline] = STATE(6684), + [sym_redirected_statement] = STATE(5265), + [sym_for_statement] = STATE(5439), + [sym_c_style_for_statement] = STATE(5439), + [sym_while_statement] = STATE(5133), + [sym_if_statement] = STATE(5133), + [sym_case_statement] = STATE(5439), + [sym_function_definition] = STATE(5439), + [sym_compound_statement] = STATE(5439), + [sym_subshell] = STATE(5439), + [sym_pipeline] = STATE(5593), + [sym_list] = STATE(5439), + [sym_negated_command] = STATE(5439), + [sym_test_command] = STATE(5439), + [sym_declaration_command] = STATE(5439), + [sym_unset_command] = STATE(5439), + [sym_command] = STATE(5439), + [sym_command_name] = STATE(634), + [sym_variable_assignment] = STATE(1791), + [sym_variable_assignments] = STATE(5439), + [sym_subscript] = STATE(6766), + [sym_file_redirect] = STATE(2585), + [sym_herestring_redirect] = STATE(2587), + [sym__expression] = STATE(2960), + [sym_binary_expression] = STATE(2952), + [sym_ternary_expression] = STATE(2952), + [sym_unary_expression] = STATE(2952), + [sym_postfix_expression] = STATE(2952), + [sym_parenthesized_expression] = STATE(2952), + [sym_arithmetic_expansion] = STATE(501), + [sym_brace_expression] = STATE(501), + [sym_concatenation] = STATE(525), + [sym_string] = STATE(501), + [sym_translated_string] = STATE(501), + [sym_number] = STATE(501), + [sym_simple_expansion] = STATE(501), + [sym_expansion] = STATE(501), + [sym_command_substitution] = STATE(501), + [sym_process_substitution] = STATE(501), + [aux_sym_redirected_statement_repeat2] = STATE(5229), + [aux_sym_command_repeat1] = STATE(950), + [aux_sym__literal_repeat1] = STATE(523), [sym_word] = ACTIONS(143), [anon_sym_for] = ACTIONS(145), [anon_sym_select] = ACTIONS(147), @@ -29736,48 +30037,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(221), }, [8] = { - [sym__statement_not_pipeline] = STATE(6568), - [sym_redirected_statement] = STATE(5358), - [sym_for_statement] = STATE(5406), - [sym_c_style_for_statement] = STATE(5406), - [sym_while_statement] = STATE(5195), - [sym_if_statement] = STATE(5195), - [sym_case_statement] = STATE(5406), - [sym_function_definition] = STATE(5406), - [sym_compound_statement] = STATE(5406), - [sym_subshell] = STATE(5406), - [sym_pipeline] = STATE(5569), - [sym_list] = STATE(5406), - [sym_negated_command] = STATE(5406), - [sym_test_command] = STATE(5406), - [sym_declaration_command] = STATE(5406), - [sym_unset_command] = STATE(5406), - [sym_command] = STATE(5406), - [sym_command_name] = STATE(620), - [sym_variable_assignment] = STATE(1811), - [sym_variable_assignments] = STATE(5406), - [sym_subscript] = STATE(6756), - [sym_file_redirect] = STATE(2693), - [sym_herestring_redirect] = STATE(2691), - [sym__expression] = STATE(3052), - [sym_binary_expression] = STATE(3071), - [sym_ternary_expression] = STATE(3071), - [sym_unary_expression] = STATE(3071), - [sym_postfix_expression] = STATE(3071), - [sym_parenthesized_expression] = STATE(3071), - [sym_arithmetic_expansion] = STATE(496), - [sym_brace_expression] = STATE(496), - [sym_concatenation] = STATE(524), - [sym_string] = STATE(496), - [sym_translated_string] = STATE(496), - [sym_number] = STATE(496), - [sym_simple_expansion] = STATE(496), - [sym_expansion] = STATE(496), - [sym_command_substitution] = STATE(496), - [sym_process_substitution] = STATE(496), - [aux_sym_redirected_statement_repeat2] = STATE(5167), - [aux_sym_command_repeat1] = STATE(955), - [aux_sym__literal_repeat1] = STATE(522), + [sym__statement_not_pipeline] = STATE(6684), + [sym_redirected_statement] = STATE(5284), + [sym_for_statement] = STATE(5439), + [sym_c_style_for_statement] = STATE(5439), + [sym_while_statement] = STATE(5133), + [sym_if_statement] = STATE(5133), + [sym_case_statement] = STATE(5439), + [sym_function_definition] = STATE(5439), + [sym_compound_statement] = STATE(5439), + [sym_subshell] = STATE(5439), + [sym_pipeline] = STATE(5593), + [sym_list] = STATE(5439), + [sym_negated_command] = STATE(5439), + [sym_test_command] = STATE(5439), + [sym_declaration_command] = STATE(5439), + [sym_unset_command] = STATE(5439), + [sym_command] = STATE(5439), + [sym_command_name] = STATE(634), + [sym_variable_assignment] = STATE(1791), + [sym_variable_assignments] = STATE(5439), + [sym_subscript] = STATE(6766), + [sym_file_redirect] = STATE(2585), + [sym_herestring_redirect] = STATE(2587), + [sym__expression] = STATE(2981), + [sym_binary_expression] = STATE(2952), + [sym_ternary_expression] = STATE(2952), + [sym_unary_expression] = STATE(2952), + [sym_postfix_expression] = STATE(2952), + [sym_parenthesized_expression] = STATE(2952), + [sym_arithmetic_expansion] = STATE(501), + [sym_brace_expression] = STATE(501), + [sym_concatenation] = STATE(525), + [sym_string] = STATE(501), + [sym_translated_string] = STATE(501), + [sym_number] = STATE(501), + [sym_simple_expansion] = STATE(501), + [sym_expansion] = STATE(501), + [sym_command_substitution] = STATE(501), + [sym_process_substitution] = STATE(501), + [aux_sym_redirected_statement_repeat2] = STATE(5229), + [aux_sym_command_repeat1] = STATE(950), + [aux_sym__literal_repeat1] = STATE(523), [sym_word] = ACTIONS(143), [anon_sym_for] = ACTIONS(145), [anon_sym_select] = ACTIONS(147), @@ -29838,48 +30139,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(221), }, [9] = { - [sym__statement_not_pipeline] = STATE(6568), - [sym_redirected_statement] = STATE(5356), - [sym_for_statement] = STATE(5406), - [sym_c_style_for_statement] = STATE(5406), - [sym_while_statement] = STATE(5195), - [sym_if_statement] = STATE(5195), - [sym_case_statement] = STATE(5406), - [sym_function_definition] = STATE(5406), - [sym_compound_statement] = STATE(5406), - [sym_subshell] = STATE(5406), - [sym_pipeline] = STATE(5569), - [sym_list] = STATE(5406), - [sym_negated_command] = STATE(5406), - [sym_test_command] = STATE(5406), - [sym_declaration_command] = STATE(5406), - [sym_unset_command] = STATE(5406), - [sym_command] = STATE(5406), - [sym_command_name] = STATE(620), - [sym_variable_assignment] = STATE(1811), - [sym_variable_assignments] = STATE(5406), - [sym_subscript] = STATE(6756), - [sym_file_redirect] = STATE(2693), - [sym_herestring_redirect] = STATE(2691), - [sym__expression] = STATE(3140), - [sym_binary_expression] = STATE(3071), - [sym_ternary_expression] = STATE(3071), - [sym_unary_expression] = STATE(3071), - [sym_postfix_expression] = STATE(3071), - [sym_parenthesized_expression] = STATE(3071), - [sym_arithmetic_expansion] = STATE(496), - [sym_brace_expression] = STATE(496), - [sym_concatenation] = STATE(524), - [sym_string] = STATE(496), - [sym_translated_string] = STATE(496), - [sym_number] = STATE(496), - [sym_simple_expansion] = STATE(496), - [sym_expansion] = STATE(496), - [sym_command_substitution] = STATE(496), - [sym_process_substitution] = STATE(496), - [aux_sym_redirected_statement_repeat2] = STATE(5167), - [aux_sym_command_repeat1] = STATE(955), - [aux_sym__literal_repeat1] = STATE(522), + [sym__statement_not_pipeline] = STATE(6684), + [sym_redirected_statement] = STATE(5288), + [sym_for_statement] = STATE(5439), + [sym_c_style_for_statement] = STATE(5439), + [sym_while_statement] = STATE(5133), + [sym_if_statement] = STATE(5133), + [sym_case_statement] = STATE(5439), + [sym_function_definition] = STATE(5439), + [sym_compound_statement] = STATE(5439), + [sym_subshell] = STATE(5439), + [sym_pipeline] = STATE(5593), + [sym_list] = STATE(5439), + [sym_negated_command] = STATE(5439), + [sym_test_command] = STATE(5439), + [sym_declaration_command] = STATE(5439), + [sym_unset_command] = STATE(5439), + [sym_command] = STATE(5439), + [sym_command_name] = STATE(634), + [sym_variable_assignment] = STATE(1791), + [sym_variable_assignments] = STATE(5439), + [sym_subscript] = STATE(6766), + [sym_file_redirect] = STATE(2585), + [sym_herestring_redirect] = STATE(2587), + [sym__expression] = STATE(2999), + [sym_binary_expression] = STATE(2952), + [sym_ternary_expression] = STATE(2952), + [sym_unary_expression] = STATE(2952), + [sym_postfix_expression] = STATE(2952), + [sym_parenthesized_expression] = STATE(2952), + [sym_arithmetic_expansion] = STATE(501), + [sym_brace_expression] = STATE(501), + [sym_concatenation] = STATE(525), + [sym_string] = STATE(501), + [sym_translated_string] = STATE(501), + [sym_number] = STATE(501), + [sym_simple_expansion] = STATE(501), + [sym_expansion] = STATE(501), + [sym_command_substitution] = STATE(501), + [sym_process_substitution] = STATE(501), + [aux_sym_redirected_statement_repeat2] = STATE(5229), + [aux_sym_command_repeat1] = STATE(950), + [aux_sym__literal_repeat1] = STATE(523), [sym_word] = ACTIONS(143), [anon_sym_for] = ACTIONS(145), [anon_sym_select] = ACTIONS(147), @@ -29940,48 +30241,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(221), }, [10] = { - [sym__statement_not_pipeline] = STATE(6568), - [sym_redirected_statement] = STATE(5315), - [sym_for_statement] = STATE(5406), - [sym_c_style_for_statement] = STATE(5406), - [sym_while_statement] = STATE(5195), - [sym_if_statement] = STATE(5195), - [sym_case_statement] = STATE(5406), - [sym_function_definition] = STATE(5406), - [sym_compound_statement] = STATE(5406), - [sym_subshell] = STATE(5406), - [sym_pipeline] = STATE(5569), - [sym_list] = STATE(5406), - [sym_negated_command] = STATE(5406), - [sym_test_command] = STATE(5406), - [sym_declaration_command] = STATE(5406), - [sym_unset_command] = STATE(5406), - [sym_command] = STATE(5406), - [sym_command_name] = STATE(620), - [sym_variable_assignment] = STATE(1811), - [sym_variable_assignments] = STATE(5406), - [sym_subscript] = STATE(6756), - [sym_file_redirect] = STATE(2693), - [sym_herestring_redirect] = STATE(2691), - [sym__expression] = STATE(3085), - [sym_binary_expression] = STATE(3071), - [sym_ternary_expression] = STATE(3071), - [sym_unary_expression] = STATE(3071), - [sym_postfix_expression] = STATE(3071), - [sym_parenthesized_expression] = STATE(3071), - [sym_arithmetic_expansion] = STATE(496), - [sym_brace_expression] = STATE(496), - [sym_concatenation] = STATE(524), - [sym_string] = STATE(496), - [sym_translated_string] = STATE(496), - [sym_number] = STATE(496), - [sym_simple_expansion] = STATE(496), - [sym_expansion] = STATE(496), - [sym_command_substitution] = STATE(496), - [sym_process_substitution] = STATE(496), - [aux_sym_redirected_statement_repeat2] = STATE(5167), - [aux_sym_command_repeat1] = STATE(955), - [aux_sym__literal_repeat1] = STATE(522), + [sym__statement_not_pipeline] = STATE(6684), + [sym_redirected_statement] = STATE(5321), + [sym_for_statement] = STATE(5439), + [sym_c_style_for_statement] = STATE(5439), + [sym_while_statement] = STATE(5133), + [sym_if_statement] = STATE(5133), + [sym_case_statement] = STATE(5439), + [sym_function_definition] = STATE(5439), + [sym_compound_statement] = STATE(5439), + [sym_subshell] = STATE(5439), + [sym_pipeline] = STATE(5593), + [sym_list] = STATE(5439), + [sym_negated_command] = STATE(5439), + [sym_test_command] = STATE(5439), + [sym_declaration_command] = STATE(5439), + [sym_unset_command] = STATE(5439), + [sym_command] = STATE(5439), + [sym_command_name] = STATE(634), + [sym_variable_assignment] = STATE(1791), + [sym_variable_assignments] = STATE(5439), + [sym_subscript] = STATE(6766), + [sym_file_redirect] = STATE(2585), + [sym_herestring_redirect] = STATE(2587), + [sym__expression] = STATE(3036), + [sym_binary_expression] = STATE(2952), + [sym_ternary_expression] = STATE(2952), + [sym_unary_expression] = STATE(2952), + [sym_postfix_expression] = STATE(2952), + [sym_parenthesized_expression] = STATE(2952), + [sym_arithmetic_expansion] = STATE(501), + [sym_brace_expression] = STATE(501), + [sym_concatenation] = STATE(525), + [sym_string] = STATE(501), + [sym_translated_string] = STATE(501), + [sym_number] = STATE(501), + [sym_simple_expansion] = STATE(501), + [sym_expansion] = STATE(501), + [sym_command_substitution] = STATE(501), + [sym_process_substitution] = STATE(501), + [aux_sym_redirected_statement_repeat2] = STATE(5229), + [aux_sym_command_repeat1] = STATE(950), + [aux_sym__literal_repeat1] = STATE(523), [sym_word] = ACTIONS(143), [anon_sym_for] = ACTIONS(145), [anon_sym_select] = ACTIONS(147), @@ -30042,48 +30343,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(221), }, [11] = { - [sym__statement_not_pipeline] = STATE(6568), - [sym_redirected_statement] = STATE(5289), - [sym_for_statement] = STATE(5406), - [sym_c_style_for_statement] = STATE(5406), - [sym_while_statement] = STATE(5195), - [sym_if_statement] = STATE(5195), - [sym_case_statement] = STATE(5406), - [sym_function_definition] = STATE(5406), - [sym_compound_statement] = STATE(5406), - [sym_subshell] = STATE(5406), - [sym_pipeline] = STATE(5569), - [sym_list] = STATE(5406), - [sym_negated_command] = STATE(5406), - [sym_test_command] = STATE(5406), - [sym_declaration_command] = STATE(5406), - [sym_unset_command] = STATE(5406), - [sym_command] = STATE(5406), - [sym_command_name] = STATE(620), - [sym_variable_assignment] = STATE(1811), - [sym_variable_assignments] = STATE(5406), - [sym_subscript] = STATE(6756), - [sym_file_redirect] = STATE(2693), - [sym_herestring_redirect] = STATE(2691), - [sym__expression] = STATE(3152), - [sym_binary_expression] = STATE(3071), - [sym_ternary_expression] = STATE(3071), - [sym_unary_expression] = STATE(3071), - [sym_postfix_expression] = STATE(3071), - [sym_parenthesized_expression] = STATE(3071), - [sym_arithmetic_expansion] = STATE(496), - [sym_brace_expression] = STATE(496), - [sym_concatenation] = STATE(524), - [sym_string] = STATE(496), - [sym_translated_string] = STATE(496), - [sym_number] = STATE(496), - [sym_simple_expansion] = STATE(496), - [sym_expansion] = STATE(496), - [sym_command_substitution] = STATE(496), - [sym_process_substitution] = STATE(496), - [aux_sym_redirected_statement_repeat2] = STATE(5167), - [aux_sym_command_repeat1] = STATE(955), - [aux_sym__literal_repeat1] = STATE(522), + [sym__statement_not_pipeline] = STATE(6684), + [sym_redirected_statement] = STATE(5325), + [sym_for_statement] = STATE(5439), + [sym_c_style_for_statement] = STATE(5439), + [sym_while_statement] = STATE(5133), + [sym_if_statement] = STATE(5133), + [sym_case_statement] = STATE(5439), + [sym_function_definition] = STATE(5439), + [sym_compound_statement] = STATE(5439), + [sym_subshell] = STATE(5439), + [sym_pipeline] = STATE(5593), + [sym_list] = STATE(5439), + [sym_negated_command] = STATE(5439), + [sym_test_command] = STATE(5439), + [sym_declaration_command] = STATE(5439), + [sym_unset_command] = STATE(5439), + [sym_command] = STATE(5439), + [sym_command_name] = STATE(634), + [sym_variable_assignment] = STATE(1791), + [sym_variable_assignments] = STATE(5439), + [sym_subscript] = STATE(6766), + [sym_file_redirect] = STATE(2585), + [sym_herestring_redirect] = STATE(2587), + [sym__expression] = STATE(3064), + [sym_binary_expression] = STATE(2952), + [sym_ternary_expression] = STATE(2952), + [sym_unary_expression] = STATE(2952), + [sym_postfix_expression] = STATE(2952), + [sym_parenthesized_expression] = STATE(2952), + [sym_arithmetic_expansion] = STATE(501), + [sym_brace_expression] = STATE(501), + [sym_concatenation] = STATE(525), + [sym_string] = STATE(501), + [sym_translated_string] = STATE(501), + [sym_number] = STATE(501), + [sym_simple_expansion] = STATE(501), + [sym_expansion] = STATE(501), + [sym_command_substitution] = STATE(501), + [sym_process_substitution] = STATE(501), + [aux_sym_redirected_statement_repeat2] = STATE(5229), + [aux_sym_command_repeat1] = STATE(950), + [aux_sym__literal_repeat1] = STATE(523), [sym_word] = ACTIONS(143), [anon_sym_for] = ACTIONS(145), [anon_sym_select] = ACTIONS(147), @@ -30144,23 +30445,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(221), }, [12] = { - [sym__expression] = STATE(3098), - [sym_binary_expression] = STATE(3053), - [sym_ternary_expression] = STATE(3053), - [sym_unary_expression] = STATE(3053), - [sym_postfix_expression] = STATE(3053), - [sym_parenthesized_expression] = STATE(3053), - [sym_arithmetic_expansion] = STATE(2500), - [sym_brace_expression] = STATE(2500), - [sym_concatenation] = STATE(3053), - [sym_string] = STATE(2500), - [sym_translated_string] = STATE(2500), - [sym_number] = STATE(2500), - [sym_simple_expansion] = STATE(2500), - [sym_expansion] = STATE(2500), - [sym_command_substitution] = STATE(2500), - [sym_process_substitution] = STATE(2500), - [aux_sym__literal_repeat1] = STATE(2690), + [sym__expression] = STATE(2950), + [sym_binary_expression] = STATE(2976), + [sym_ternary_expression] = STATE(2976), + [sym_unary_expression] = STATE(2976), + [sym_postfix_expression] = STATE(2976), + [sym_parenthesized_expression] = STATE(2976), + [sym_arithmetic_expansion] = STATE(2498), + [sym_brace_expression] = STATE(2498), + [sym_concatenation] = STATE(2976), + [sym_string] = STATE(2498), + [sym_translated_string] = STATE(2498), + [sym_number] = STATE(2498), + [sym_simple_expansion] = STATE(2498), + [sym_expansion] = STATE(2498), + [sym_command_substitution] = STATE(2498), + [sym_process_substitution] = STATE(2498), + [aux_sym__literal_repeat1] = STATE(2623), [aux_sym_concatenation_repeat1] = STATE(470), [sym_word] = ACTIONS(237), [anon_sym_LPAREN_LPAREN] = ACTIONS(239), @@ -30244,317 +30545,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(284), }, [13] = { - [aux_sym__terminated_statement] = STATE(34), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(5007), - [sym_for_statement] = STATE(5007), - [sym_c_style_for_statement] = STATE(5007), - [sym_while_statement] = STATE(4551), - [sym_if_statement] = STATE(4551), - [sym_elif_clause] = STATE(6289), - [sym_else_clause] = STATE(7417), - [sym_case_statement] = STATE(5007), - [sym_function_definition] = STATE(5007), - [sym_compound_statement] = STATE(5007), - [sym_subshell] = STATE(5007), - [sym_pipeline] = STATE(5189), - [sym_list] = STATE(5007), - [sym_negated_command] = STATE(5007), - [sym_test_command] = STATE(5007), - [sym_declaration_command] = STATE(5007), - [sym_unset_command] = STATE(5007), - [sym_command] = STATE(5007), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1151), - [sym_variable_assignments] = STATE(5007), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_if_statement_repeat1] = STATE(6289), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(294), - [anon_sym_elif] = ACTIONS(296), - [anon_sym_else] = ACTIONS(298), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), - }, - [14] = { - [aux_sym__terminated_statement] = STATE(34), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(5007), - [sym_for_statement] = STATE(5007), - [sym_c_style_for_statement] = STATE(5007), - [sym_while_statement] = STATE(4551), - [sym_if_statement] = STATE(4551), - [sym_elif_clause] = STATE(6327), - [sym_else_clause] = STATE(7004), - [sym_case_statement] = STATE(5007), - [sym_function_definition] = STATE(5007), - [sym_compound_statement] = STATE(5007), - [sym_subshell] = STATE(5007), - [sym_pipeline] = STATE(5189), - [sym_list] = STATE(5007), - [sym_negated_command] = STATE(5007), - [sym_test_command] = STATE(5007), - [sym_declaration_command] = STATE(5007), - [sym_unset_command] = STATE(5007), - [sym_command] = STATE(5007), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1151), - [sym_variable_assignments] = STATE(5007), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_if_statement_repeat1] = STATE(6327), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), + [sym__expression] = STATE(3111), + [sym_binary_expression] = STATE(2952), + [sym_ternary_expression] = STATE(2952), + [sym_unary_expression] = STATE(2952), + [sym_postfix_expression] = STATE(2952), + [sym_parenthesized_expression] = STATE(2952), + [sym_arithmetic_expansion] = STATE(2509), + [sym_brace_expression] = STATE(2509), + [sym_concatenation] = STATE(2952), + [sym_string] = STATE(2509), + [sym_translated_string] = STATE(2509), + [sym_number] = STATE(2509), + [sym_simple_expansion] = STATE(2509), + [sym_expansion] = STATE(2509), + [sym_command_substitution] = STATE(2509), + [sym_process_substitution] = STATE(2509), + [aux_sym__literal_repeat1] = STATE(2705), + [aux_sym_concatenation_repeat1] = STATE(496), [sym_word] = ACTIONS(286), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(346), - [anon_sym_elif] = ACTIONS(296), - [anon_sym_else] = ACTIONS(298), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), - }, - [15] = { - [aux_sym__terminated_statement] = STATE(34), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(5007), - [sym_for_statement] = STATE(5007), - [sym_c_style_for_statement] = STATE(5007), - [sym_while_statement] = STATE(4551), - [sym_if_statement] = STATE(4551), - [sym_elif_clause] = STATE(6265), - [sym_else_clause] = STATE(7416), - [sym_case_statement] = STATE(5007), - [sym_function_definition] = STATE(5007), - [sym_compound_statement] = STATE(5007), - [sym_subshell] = STATE(5007), - [sym_pipeline] = STATE(5189), - [sym_list] = STATE(5007), - [sym_negated_command] = STATE(5007), - [sym_test_command] = STATE(5007), - [sym_declaration_command] = STATE(5007), - [sym_unset_command] = STATE(5007), - [sym_command] = STATE(5007), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1151), - [sym_variable_assignments] = STATE(5007), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_if_statement_repeat1] = STATE(6265), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(348), - [anon_sym_elif] = ACTIONS(296), - [anon_sym_else] = ACTIONS(298), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), - }, - [16] = { - [sym__expression] = STATE(3012), - [sym_binary_expression] = STATE(3071), - [sym_ternary_expression] = STATE(3071), - [sym_unary_expression] = STATE(3071), - [sym_postfix_expression] = STATE(3071), - [sym_parenthesized_expression] = STATE(3071), - [sym_arithmetic_expansion] = STATE(2521), - [sym_brace_expression] = STATE(2521), - [sym_concatenation] = STATE(3071), - [sym_string] = STATE(2521), - [sym_translated_string] = STATE(2521), - [sym_number] = STATE(2521), - [sym_simple_expansion] = STATE(2521), - [sym_expansion] = STATE(2521), - [sym_command_substitution] = STATE(2521), - [sym_process_substitution] = STATE(2521), - [aux_sym__literal_repeat1] = STATE(2641), - [aux_sym_concatenation_repeat1] = STATE(499), - [sym_word] = ACTIONS(350), - [anon_sym_LPAREN_LPAREN] = ACTIONS(352), [anon_sym_EQ] = ACTIONS(243), [anon_sym_PLUS_PLUS] = ACTIONS(243), [anon_sym_DASH_DASH] = ACTIONS(243), @@ -30564,13 +30574,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_EQ] = ACTIONS(243), [anon_sym_PERCENT_EQ] = ACTIONS(243), [anon_sym_STAR_STAR_EQ] = ACTIONS(243), - [anon_sym_LT_LT_EQ] = ACTIONS(354), - [anon_sym_GT_GT_EQ] = ACTIONS(354), - [anon_sym_AMP_EQ] = ACTIONS(354), + [anon_sym_LT_LT_EQ] = ACTIONS(290), + [anon_sym_GT_GT_EQ] = ACTIONS(290), + [anon_sym_AMP_EQ] = ACTIONS(290), [anon_sym_CARET_EQ] = ACTIONS(243), - [anon_sym_PIPE_EQ] = ACTIONS(354), - [anon_sym_PIPE_PIPE] = ACTIONS(356), - [anon_sym_AMP_AMP] = ACTIONS(356), + [anon_sym_PIPE_EQ] = ACTIONS(290), + [anon_sym_PIPE_PIPE] = ACTIONS(292), + [anon_sym_AMP_AMP] = ACTIONS(292), [anon_sym_PIPE] = ACTIONS(245), [anon_sym_CARET] = ACTIONS(243), [anon_sym_AMP] = ACTIONS(243), @@ -30578,8 +30588,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(243), [anon_sym_LT] = ACTIONS(245), [anon_sym_GT] = ACTIONS(245), - [anon_sym_LT_EQ] = ACTIONS(354), - [anon_sym_GT_EQ] = ACTIONS(354), + [anon_sym_LT_EQ] = ACTIONS(290), + [anon_sym_GT_EQ] = ACTIONS(290), [anon_sym_LT_LT] = ACTIONS(245), [anon_sym_GT_GT] = ACTIONS(245), [anon_sym_PLUS] = ACTIONS(243), @@ -30588,10 +30598,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(243), [anon_sym_PERCENT] = ACTIONS(243), [anon_sym_STAR_STAR] = ACTIONS(243), - [anon_sym_LPAREN] = ACTIONS(359), + [anon_sym_LPAREN] = ACTIONS(295), [anon_sym_PIPE_AMP] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_RBRACK] = ACTIONS(354), + [anon_sym_BANG] = ACTIONS(297), + [anon_sym_RBRACK] = ACTIONS(290), [anon_sym_EQ_TILDE] = ACTIONS(245), [anon_sym_AMP_GT] = ACTIONS(241), [anon_sym_AMP_GT_GT] = ACTIONS(278), @@ -30608,553 +30618,844 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(185), [anon_sym_PLUS2] = ACTIONS(185), [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(352), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(363), - [aux_sym_concatenation_token1] = ACTIONS(365), - [anon_sym_DOLLAR] = ACTIONS(367), - [sym__special_character] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [sym_raw_string] = ACTIONS(373), - [sym_ansi_c_string] = ACTIONS(373), - [aux_sym_number_token1] = ACTIONS(375), - [aux_sym_number_token2] = ACTIONS(377), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(379), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(381), - [anon_sym_BQUOTE] = ACTIONS(383), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(385), - [anon_sym_LT_LPAREN] = ACTIONS(387), - [anon_sym_GT_LPAREN] = ACTIONS(387), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(299), + [aux_sym_concatenation_token1] = ACTIONS(301), + [anon_sym_DOLLAR] = ACTIONS(303), + [sym__special_character] = ACTIONS(305), + [anon_sym_DQUOTE] = ACTIONS(307), + [sym_raw_string] = ACTIONS(309), + [sym_ansi_c_string] = ACTIONS(309), + [aux_sym_number_token1] = ACTIONS(311), + [aux_sym_number_token2] = ACTIONS(313), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(315), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(317), + [anon_sym_BQUOTE] = ACTIONS(319), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(321), + [anon_sym_LT_LPAREN] = ACTIONS(323), + [anon_sym_GT_LPAREN] = ACTIONS(323), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(278), - [sym__concat] = ACTIONS(365), - [sym_test_operator] = ACTIONS(389), + [sym__concat] = ACTIONS(301), + [sym_test_operator] = ACTIONS(325), [sym__bare_dollar] = ACTIONS(278), - [sym__brace_start] = ACTIONS(391), + [sym__brace_start] = ACTIONS(327), + }, + [14] = { + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4945), + [sym_for_statement] = STATE(4945), + [sym_c_style_for_statement] = STATE(4945), + [sym_while_statement] = STATE(4557), + [sym_if_statement] = STATE(4557), + [sym_elif_clause] = STATE(6266), + [sym_else_clause] = STATE(6880), + [sym_case_statement] = STATE(4945), + [sym_function_definition] = STATE(4945), + [sym_compound_statement] = STATE(4945), + [sym_subshell] = STATE(4945), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4945), + [sym_negated_command] = STATE(4945), + [sym_test_command] = STATE(4945), + [sym_declaration_command] = STATE(4945), + [sym_unset_command] = STATE(4945), + [sym_command] = STATE(4945), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1034), + [sym_variable_assignments] = STATE(4945), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_if_statement_repeat1] = STATE(6266), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_fi] = ACTIONS(337), + [anon_sym_elif] = ACTIONS(339), + [anon_sym_else] = ACTIONS(341), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(345), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [15] = { + [aux_sym__terminated_statement] = STATE(20), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4945), + [sym_for_statement] = STATE(4945), + [sym_c_style_for_statement] = STATE(4945), + [sym_while_statement] = STATE(4557), + [sym_if_statement] = STATE(4557), + [sym_elif_clause] = STATE(6291), + [sym_else_clause] = STATE(7503), + [sym_case_statement] = STATE(4945), + [sym_function_definition] = STATE(4945), + [sym_compound_statement] = STATE(4945), + [sym_subshell] = STATE(4945), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4945), + [sym_negated_command] = STATE(4945), + [sym_test_command] = STATE(4945), + [sym_declaration_command] = STATE(4945), + [sym_unset_command] = STATE(4945), + [sym_command] = STATE(4945), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1034), + [sym_variable_assignments] = STATE(4945), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_if_statement_repeat1] = STATE(6291), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_fi] = ACTIONS(389), + [anon_sym_elif] = ACTIONS(339), + [anon_sym_else] = ACTIONS(341), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(345), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [16] = { + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4945), + [sym_for_statement] = STATE(4945), + [sym_c_style_for_statement] = STATE(4945), + [sym_while_statement] = STATE(4557), + [sym_if_statement] = STATE(4557), + [sym_elif_clause] = STATE(6298), + [sym_else_clause] = STATE(7189), + [sym_case_statement] = STATE(4945), + [sym_function_definition] = STATE(4945), + [sym_compound_statement] = STATE(4945), + [sym_subshell] = STATE(4945), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4945), + [sym_negated_command] = STATE(4945), + [sym_test_command] = STATE(4945), + [sym_declaration_command] = STATE(4945), + [sym_unset_command] = STATE(4945), + [sym_command] = STATE(4945), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1034), + [sym_variable_assignments] = STATE(4945), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_if_statement_repeat1] = STATE(6298), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_fi] = ACTIONS(391), + [anon_sym_elif] = ACTIONS(339), + [anon_sym_else] = ACTIONS(341), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(345), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [17] = { - [aux_sym__terminated_statement] = STATE(15), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(5007), - [sym_for_statement] = STATE(5007), - [sym_c_style_for_statement] = STATE(5007), - [sym_while_statement] = STATE(4551), - [sym_if_statement] = STATE(4551), - [sym_elif_clause] = STATE(6340), - [sym_else_clause] = STATE(7114), - [sym_case_statement] = STATE(5007), - [sym_function_definition] = STATE(5007), - [sym_compound_statement] = STATE(5007), - [sym_subshell] = STATE(5007), - [sym_pipeline] = STATE(5189), - [sym_list] = STATE(5007), - [sym_negated_command] = STATE(5007), - [sym_test_command] = STATE(5007), - [sym_declaration_command] = STATE(5007), - [sym_unset_command] = STATE(5007), - [sym_command] = STATE(5007), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1151), - [sym_variable_assignments] = STATE(5007), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_if_statement_repeat1] = STATE(6340), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [aux_sym__terminated_statement] = STATE(16), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4945), + [sym_for_statement] = STATE(4945), + [sym_c_style_for_statement] = STATE(4945), + [sym_while_statement] = STATE(4557), + [sym_if_statement] = STATE(4557), + [sym_elif_clause] = STATE(6345), + [sym_else_clause] = STATE(6892), + [sym_case_statement] = STATE(4945), + [sym_function_definition] = STATE(4945), + [sym_compound_statement] = STATE(4945), + [sym_subshell] = STATE(4945), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4945), + [sym_negated_command] = STATE(4945), + [sym_test_command] = STATE(4945), + [sym_declaration_command] = STATE(4945), + [sym_unset_command] = STATE(4945), + [sym_command] = STATE(4945), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1034), + [sym_variable_assignments] = STATE(4945), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_if_statement_repeat1] = STATE(6345), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_fi] = ACTIONS(393), - [anon_sym_elif] = ACTIONS(296), - [anon_sym_else] = ACTIONS(298), + [anon_sym_elif] = ACTIONS(339), + [anon_sym_else] = ACTIONS(341), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [18] = { - [aux_sym__terminated_statement] = STATE(13), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(5007), - [sym_for_statement] = STATE(5007), - [sym_c_style_for_statement] = STATE(5007), - [sym_while_statement] = STATE(4551), - [sym_if_statement] = STATE(4551), - [sym_elif_clause] = STATE(6363), - [sym_else_clause] = STATE(7478), - [sym_case_statement] = STATE(5007), - [sym_function_definition] = STATE(5007), - [sym_compound_statement] = STATE(5007), - [sym_subshell] = STATE(5007), - [sym_pipeline] = STATE(5189), - [sym_list] = STATE(5007), - [sym_negated_command] = STATE(5007), - [sym_test_command] = STATE(5007), - [sym_declaration_command] = STATE(5007), - [sym_unset_command] = STATE(5007), - [sym_command] = STATE(5007), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1151), - [sym_variable_assignments] = STATE(5007), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_if_statement_repeat1] = STATE(6363), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [aux_sym__terminated_statement] = STATE(19), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4945), + [sym_for_statement] = STATE(4945), + [sym_c_style_for_statement] = STATE(4945), + [sym_while_statement] = STATE(4557), + [sym_if_statement] = STATE(4557), + [sym_elif_clause] = STATE(6346), + [sym_else_clause] = STATE(7285), + [sym_case_statement] = STATE(4945), + [sym_function_definition] = STATE(4945), + [sym_compound_statement] = STATE(4945), + [sym_subshell] = STATE(4945), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4945), + [sym_negated_command] = STATE(4945), + [sym_test_command] = STATE(4945), + [sym_declaration_command] = STATE(4945), + [sym_unset_command] = STATE(4945), + [sym_command] = STATE(4945), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1034), + [sym_variable_assignments] = STATE(4945), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_if_statement_repeat1] = STATE(6346), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_fi] = ACTIONS(395), - [anon_sym_elif] = ACTIONS(296), - [anon_sym_else] = ACTIONS(298), + [anon_sym_elif] = ACTIONS(339), + [anon_sym_else] = ACTIONS(341), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [19] = { - [aux_sym__terminated_statement] = STATE(20), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(5007), - [sym_for_statement] = STATE(5007), - [sym_c_style_for_statement] = STATE(5007), - [sym_while_statement] = STATE(4551), - [sym_if_statement] = STATE(4551), - [sym_elif_clause] = STATE(6339), - [sym_else_clause] = STATE(7069), - [sym_case_statement] = STATE(5007), - [sym_function_definition] = STATE(5007), - [sym_compound_statement] = STATE(5007), - [sym_subshell] = STATE(5007), - [sym_pipeline] = STATE(5189), - [sym_list] = STATE(5007), - [sym_negated_command] = STATE(5007), - [sym_test_command] = STATE(5007), - [sym_declaration_command] = STATE(5007), - [sym_unset_command] = STATE(5007), - [sym_command] = STATE(5007), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1151), - [sym_variable_assignments] = STATE(5007), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_if_statement_repeat1] = STATE(6339), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4945), + [sym_for_statement] = STATE(4945), + [sym_c_style_for_statement] = STATE(4945), + [sym_while_statement] = STATE(4557), + [sym_if_statement] = STATE(4557), + [sym_elif_clause] = STATE(6357), + [sym_else_clause] = STATE(7323), + [sym_case_statement] = STATE(4945), + [sym_function_definition] = STATE(4945), + [sym_compound_statement] = STATE(4945), + [sym_subshell] = STATE(4945), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4945), + [sym_negated_command] = STATE(4945), + [sym_test_command] = STATE(4945), + [sym_declaration_command] = STATE(4945), + [sym_unset_command] = STATE(4945), + [sym_command] = STATE(4945), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1034), + [sym_variable_assignments] = STATE(4945), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_if_statement_repeat1] = STATE(6357), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_fi] = ACTIONS(397), - [anon_sym_elif] = ACTIONS(296), - [anon_sym_else] = ACTIONS(298), + [anon_sym_elif] = ACTIONS(339), + [anon_sym_else] = ACTIONS(341), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [20] = { [aux_sym__terminated_statement] = STATE(34), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(5007), - [sym_for_statement] = STATE(5007), - [sym_c_style_for_statement] = STATE(5007), - [sym_while_statement] = STATE(4551), - [sym_if_statement] = STATE(4551), - [sym_elif_clause] = STATE(6331), - [sym_else_clause] = STATE(6862), - [sym_case_statement] = STATE(5007), - [sym_function_definition] = STATE(5007), - [sym_compound_statement] = STATE(5007), - [sym_subshell] = STATE(5007), - [sym_pipeline] = STATE(5189), - [sym_list] = STATE(5007), - [sym_negated_command] = STATE(5007), - [sym_test_command] = STATE(5007), - [sym_declaration_command] = STATE(5007), - [sym_unset_command] = STATE(5007), - [sym_command] = STATE(5007), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1151), - [sym_variable_assignments] = STATE(5007), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_if_statement_repeat1] = STATE(6331), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4945), + [sym_for_statement] = STATE(4945), + [sym_c_style_for_statement] = STATE(4945), + [sym_while_statement] = STATE(4557), + [sym_if_statement] = STATE(4557), + [sym_elif_clause] = STATE(6327), + [sym_else_clause] = STATE(7152), + [sym_case_statement] = STATE(4945), + [sym_function_definition] = STATE(4945), + [sym_compound_statement] = STATE(4945), + [sym_subshell] = STATE(4945), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4945), + [sym_negated_command] = STATE(4945), + [sym_test_command] = STATE(4945), + [sym_declaration_command] = STATE(4945), + [sym_unset_command] = STATE(4945), + [sym_command] = STATE(4945), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1034), + [sym_variable_assignments] = STATE(4945), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_if_statement_repeat1] = STATE(6327), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_fi] = ACTIONS(399), - [anon_sym_elif] = ACTIONS(296), - [anon_sym_else] = ACTIONS(298), + [anon_sym_elif] = ACTIONS(339), + [anon_sym_else] = ACTIONS(341), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [21] = { [aux_sym__terminated_statement] = STATE(14), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(5007), - [sym_for_statement] = STATE(5007), - [sym_c_style_for_statement] = STATE(5007), - [sym_while_statement] = STATE(4551), - [sym_if_statement] = STATE(4551), - [sym_elif_clause] = STATE(6337), - [sym_else_clause] = STATE(6981), - [sym_case_statement] = STATE(5007), - [sym_function_definition] = STATE(5007), - [sym_compound_statement] = STATE(5007), - [sym_subshell] = STATE(5007), - [sym_pipeline] = STATE(5189), - [sym_list] = STATE(5007), - [sym_negated_command] = STATE(5007), - [sym_test_command] = STATE(5007), - [sym_declaration_command] = STATE(5007), - [sym_unset_command] = STATE(5007), - [sym_command] = STATE(5007), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1151), - [sym_variable_assignments] = STATE(5007), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_if_statement_repeat1] = STATE(6337), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4945), + [sym_for_statement] = STATE(4945), + [sym_c_style_for_statement] = STATE(4945), + [sym_while_statement] = STATE(4557), + [sym_if_statement] = STATE(4557), + [sym_elif_clause] = STATE(6358), + [sym_else_clause] = STATE(7022), + [sym_case_statement] = STATE(4945), + [sym_function_definition] = STATE(4945), + [sym_compound_statement] = STATE(4945), + [sym_subshell] = STATE(4945), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4945), + [sym_negated_command] = STATE(4945), + [sym_test_command] = STATE(4945), + [sym_declaration_command] = STATE(4945), + [sym_unset_command] = STATE(4945), + [sym_command] = STATE(4945), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1034), + [sym_variable_assignments] = STATE(4945), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_if_statement_repeat1] = STATE(6358), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_fi] = ACTIONS(401), - [anon_sym_elif] = ACTIONS(296), - [anon_sym_else] = ACTIONS(298), + [anon_sym_elif] = ACTIONS(339), + [anon_sym_else] = ACTIONS(341), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [22] = { - [sym__statements] = STATE(6501), - [sym__statement_not_pipeline] = STATE(6584), - [sym_redirected_statement] = STATE(4349), - [sym_for_statement] = STATE(4349), - [sym_c_style_for_statement] = STATE(4349), - [sym_while_statement] = STATE(4225), - [sym_if_statement] = STATE(4225), - [sym_case_statement] = STATE(4349), - [sym_function_definition] = STATE(4349), - [sym_compound_statement] = STATE(4349), - [sym_subshell] = STATE(4349), - [sym_pipeline] = STATE(4620), - [sym_list] = STATE(4349), - [sym_negated_command] = STATE(4349), - [sym_test_command] = STATE(4349), - [sym_declaration_command] = STATE(4349), - [sym_unset_command] = STATE(4349), - [sym_command] = STATE(4349), + [sym__statements] = STATE(6527), + [sym__statement_not_pipeline] = STATE(6716), + [sym_redirected_statement] = STATE(4350), + [sym_for_statement] = STATE(4350), + [sym_c_style_for_statement] = STATE(4350), + [sym_while_statement] = STATE(4219), + [sym_if_statement] = STATE(4219), + [sym_case_statement] = STATE(4350), + [sym_function_definition] = STATE(4350), + [sym_compound_statement] = STATE(4350), + [sym_subshell] = STATE(4350), + [sym_pipeline] = STATE(4717), + [sym_list] = STATE(4350), + [sym_negated_command] = STATE(4350), + [sym_test_command] = STATE(4350), + [sym_declaration_command] = STATE(4350), + [sym_unset_command] = STATE(4350), + [sym_command] = STATE(4350), [sym_command_name] = STATE(528), - [sym_variable_assignment] = STATE(807), - [sym_variable_assignments] = STATE(4349), - [sym_subscript] = STATE(6736), - [sym_file_redirect] = STATE(1635), - [sym_herestring_redirect] = STATE(1634), - [sym_arithmetic_expansion] = STATE(815), - [sym_brace_expression] = STATE(815), - [sym_concatenation] = STATE(1082), - [sym_string] = STATE(815), - [sym_translated_string] = STATE(815), - [sym_number] = STATE(815), - [sym_simple_expansion] = STATE(815), - [sym_expansion] = STATE(815), - [sym_command_substitution] = STATE(815), - [sym_process_substitution] = STATE(815), - [aux_sym__statements_repeat1] = STATE(431), + [sym_variable_assignment] = STATE(808), + [sym_variable_assignments] = STATE(4350), + [sym_subscript] = STATE(6784), + [sym_file_redirect] = STATE(1556), + [sym_herestring_redirect] = STATE(1718), + [sym_arithmetic_expansion] = STATE(813), + [sym_brace_expression] = STATE(813), + [sym_concatenation] = STATE(1073), + [sym_string] = STATE(813), + [sym_translated_string] = STATE(813), + [sym_number] = STATE(813), + [sym_simple_expansion] = STATE(813), + [sym_expansion] = STATE(813), + [sym_command_substitution] = STATE(813), + [sym_process_substitution] = STATE(813), + [aux_sym__statements_repeat1] = STATE(429), [aux_sym_redirected_statement_repeat2] = STATE(4250), - [aux_sym_command_repeat1] = STATE(925), - [aux_sym__literal_repeat1] = STATE(926), + [aux_sym_command_repeat1] = STATE(977), + [aux_sym__literal_repeat1] = STATE(978), [sym_word] = ACTIONS(403), [anon_sym_for] = ACTIONS(405), [anon_sym_select] = ACTIONS(407), @@ -31170,87 +31471,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_esac] = ACTIONS(423), [anon_sym_SEMI_SEMI] = ACTIONS(425), [anon_sym_SEMI_AMP] = ACTIONS(427), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(429), - [anon_sym_function] = ACTIONS(431), - [anon_sym_LBRACE] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_LBRACK_LBRACK] = ACTIONS(439), - [anon_sym_declare] = ACTIONS(441), - [anon_sym_typeset] = ACTIONS(441), - [anon_sym_export] = ACTIONS(441), - [anon_sym_readonly] = ACTIONS(441), - [anon_sym_local] = ACTIONS(441), - [anon_sym_unset] = ACTIONS(443), - [anon_sym_unsetenv] = ACTIONS(443), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(427), + [anon_sym_function] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LBRACK_LBRACK] = ACTIONS(437), + [anon_sym_declare] = ACTIONS(439), + [anon_sym_typeset] = ACTIONS(439), + [anon_sym_export] = ACTIONS(439), + [anon_sym_readonly] = ACTIONS(439), + [anon_sym_local] = ACTIONS(439), + [anon_sym_unset] = ACTIONS(441), + [anon_sym_unsetenv] = ACTIONS(441), [anon_sym_AMP_GT] = ACTIONS(411), [anon_sym_AMP_GT_GT] = ACTIONS(413), [anon_sym_LT_AMP] = ACTIONS(411), [anon_sym_GT_AMP] = ACTIONS(411), [anon_sym_GT_PIPE] = ACTIONS(413), - [anon_sym_LT_AMP_DASH] = ACTIONS(445), - [anon_sym_GT_AMP_DASH] = ACTIONS(445), - [anon_sym_LT_LT_LT] = ACTIONS(447), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(451), - [anon_sym_DOLLAR] = ACTIONS(453), - [sym__special_character] = ACTIONS(455), - [anon_sym_DQUOTE] = ACTIONS(457), - [sym_raw_string] = ACTIONS(459), - [sym_ansi_c_string] = ACTIONS(459), - [aux_sym_number_token1] = ACTIONS(461), - [aux_sym_number_token2] = ACTIONS(463), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(465), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(467), - [anon_sym_BQUOTE] = ACTIONS(469), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(471), - [anon_sym_LT_LPAREN] = ACTIONS(473), - [anon_sym_GT_LPAREN] = ACTIONS(473), + [anon_sym_LT_AMP_DASH] = ACTIONS(443), + [anon_sym_GT_AMP_DASH] = ACTIONS(443), + [anon_sym_LT_LT_LT] = ACTIONS(445), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(449), + [anon_sym_DOLLAR] = ACTIONS(451), + [sym__special_character] = ACTIONS(453), + [anon_sym_DQUOTE] = ACTIONS(455), + [sym_raw_string] = ACTIONS(457), + [sym_ansi_c_string] = ACTIONS(457), + [aux_sym_number_token1] = ACTIONS(459), + [aux_sym_number_token2] = ACTIONS(461), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(463), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(465), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(469), + [anon_sym_LT_LPAREN] = ACTIONS(471), + [anon_sym_GT_LPAREN] = ACTIONS(471), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(475), - [sym_variable_name] = ACTIONS(477), - [sym_test_operator] = ACTIONS(479), - [sym__brace_start] = ACTIONS(481), + [sym_file_descriptor] = ACTIONS(473), + [sym_variable_name] = ACTIONS(475), + [sym_test_operator] = ACTIONS(477), + [sym__brace_start] = ACTIONS(479), }, [23] = { - [sym__statements] = STATE(6539), - [sym__statement_not_pipeline] = STATE(6584), - [sym_redirected_statement] = STATE(4349), - [sym_for_statement] = STATE(4349), - [sym_c_style_for_statement] = STATE(4349), - [sym_while_statement] = STATE(4225), - [sym_if_statement] = STATE(4225), - [sym_case_statement] = STATE(4349), - [sym_function_definition] = STATE(4349), - [sym_compound_statement] = STATE(4349), - [sym_subshell] = STATE(4349), - [sym_pipeline] = STATE(4620), - [sym_list] = STATE(4349), - [sym_negated_command] = STATE(4349), - [sym_test_command] = STATE(4349), - [sym_declaration_command] = STATE(4349), - [sym_unset_command] = STATE(4349), - [sym_command] = STATE(4349), + [sym__statements] = STATE(6537), + [sym__statement_not_pipeline] = STATE(6716), + [sym_redirected_statement] = STATE(4350), + [sym_for_statement] = STATE(4350), + [sym_c_style_for_statement] = STATE(4350), + [sym_while_statement] = STATE(4219), + [sym_if_statement] = STATE(4219), + [sym_case_statement] = STATE(4350), + [sym_function_definition] = STATE(4350), + [sym_compound_statement] = STATE(4350), + [sym_subshell] = STATE(4350), + [sym_pipeline] = STATE(4717), + [sym_list] = STATE(4350), + [sym_negated_command] = STATE(4350), + [sym_test_command] = STATE(4350), + [sym_declaration_command] = STATE(4350), + [sym_unset_command] = STATE(4350), + [sym_command] = STATE(4350), [sym_command_name] = STATE(528), - [sym_variable_assignment] = STATE(807), - [sym_variable_assignments] = STATE(4349), - [sym_subscript] = STATE(6736), - [sym_file_redirect] = STATE(1635), - [sym_herestring_redirect] = STATE(1634), - [sym_arithmetic_expansion] = STATE(815), - [sym_brace_expression] = STATE(815), - [sym_concatenation] = STATE(1082), - [sym_string] = STATE(815), - [sym_translated_string] = STATE(815), - [sym_number] = STATE(815), - [sym_simple_expansion] = STATE(815), - [sym_expansion] = STATE(815), - [sym_command_substitution] = STATE(815), - [sym_process_substitution] = STATE(815), - [aux_sym__statements_repeat1] = STATE(431), + [sym_variable_assignment] = STATE(808), + [sym_variable_assignments] = STATE(4350), + [sym_subscript] = STATE(6784), + [sym_file_redirect] = STATE(1556), + [sym_herestring_redirect] = STATE(1718), + [sym_arithmetic_expansion] = STATE(813), + [sym_brace_expression] = STATE(813), + [sym_concatenation] = STATE(1073), + [sym_string] = STATE(813), + [sym_translated_string] = STATE(813), + [sym_number] = STATE(813), + [sym_simple_expansion] = STATE(813), + [sym_expansion] = STATE(813), + [sym_command_substitution] = STATE(813), + [sym_process_substitution] = STATE(813), + [aux_sym__statements_repeat1] = STATE(429), [aux_sym_redirected_statement_repeat2] = STATE(4250), - [aux_sym_command_repeat1] = STATE(925), - [aux_sym__literal_repeat1] = STATE(926), + [aux_sym_command_repeat1] = STATE(977), + [aux_sym__literal_repeat1] = STATE(978), [sym_word] = ACTIONS(403), [anon_sym_for] = ACTIONS(405), [anon_sym_select] = ACTIONS(407), @@ -31263,90 +31564,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(417), [anon_sym_if] = ACTIONS(419), [anon_sym_case] = ACTIONS(421), - [anon_sym_esac] = ACTIONS(483), - [anon_sym_SEMI_SEMI] = ACTIONS(485), - [anon_sym_SEMI_AMP] = ACTIONS(487), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(487), - [anon_sym_function] = ACTIONS(431), - [anon_sym_LBRACE] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_LBRACK_LBRACK] = ACTIONS(439), - [anon_sym_declare] = ACTIONS(441), - [anon_sym_typeset] = ACTIONS(441), - [anon_sym_export] = ACTIONS(441), - [anon_sym_readonly] = ACTIONS(441), - [anon_sym_local] = ACTIONS(441), - [anon_sym_unset] = ACTIONS(443), - [anon_sym_unsetenv] = ACTIONS(443), + [anon_sym_esac] = ACTIONS(481), + [anon_sym_SEMI_SEMI] = ACTIONS(483), + [anon_sym_SEMI_AMP] = ACTIONS(485), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(485), + [anon_sym_function] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LBRACK_LBRACK] = ACTIONS(437), + [anon_sym_declare] = ACTIONS(439), + [anon_sym_typeset] = ACTIONS(439), + [anon_sym_export] = ACTIONS(439), + [anon_sym_readonly] = ACTIONS(439), + [anon_sym_local] = ACTIONS(439), + [anon_sym_unset] = ACTIONS(441), + [anon_sym_unsetenv] = ACTIONS(441), [anon_sym_AMP_GT] = ACTIONS(411), [anon_sym_AMP_GT_GT] = ACTIONS(413), [anon_sym_LT_AMP] = ACTIONS(411), [anon_sym_GT_AMP] = ACTIONS(411), [anon_sym_GT_PIPE] = ACTIONS(413), - [anon_sym_LT_AMP_DASH] = ACTIONS(445), - [anon_sym_GT_AMP_DASH] = ACTIONS(445), - [anon_sym_LT_LT_LT] = ACTIONS(447), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(451), - [anon_sym_DOLLAR] = ACTIONS(453), - [sym__special_character] = ACTIONS(455), - [anon_sym_DQUOTE] = ACTIONS(457), - [sym_raw_string] = ACTIONS(459), - [sym_ansi_c_string] = ACTIONS(459), - [aux_sym_number_token1] = ACTIONS(461), - [aux_sym_number_token2] = ACTIONS(463), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(465), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(467), - [anon_sym_BQUOTE] = ACTIONS(469), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(471), - [anon_sym_LT_LPAREN] = ACTIONS(473), - [anon_sym_GT_LPAREN] = ACTIONS(473), + [anon_sym_LT_AMP_DASH] = ACTIONS(443), + [anon_sym_GT_AMP_DASH] = ACTIONS(443), + [anon_sym_LT_LT_LT] = ACTIONS(445), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(449), + [anon_sym_DOLLAR] = ACTIONS(451), + [sym__special_character] = ACTIONS(453), + [anon_sym_DQUOTE] = ACTIONS(455), + [sym_raw_string] = ACTIONS(457), + [sym_ansi_c_string] = ACTIONS(457), + [aux_sym_number_token1] = ACTIONS(459), + [aux_sym_number_token2] = ACTIONS(461), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(463), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(465), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(469), + [anon_sym_LT_LPAREN] = ACTIONS(471), + [anon_sym_GT_LPAREN] = ACTIONS(471), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(475), - [sym_variable_name] = ACTIONS(477), - [sym_test_operator] = ACTIONS(479), - [sym__brace_start] = ACTIONS(481), + [sym_file_descriptor] = ACTIONS(473), + [sym_variable_name] = ACTIONS(475), + [sym_test_operator] = ACTIONS(477), + [sym__brace_start] = ACTIONS(479), }, [24] = { - [sym__statements] = STATE(6511), - [sym__statement_not_pipeline] = STATE(6584), - [sym_redirected_statement] = STATE(4349), - [sym_for_statement] = STATE(4349), - [sym_c_style_for_statement] = STATE(4349), - [sym_while_statement] = STATE(4225), - [sym_if_statement] = STATE(4225), - [sym_case_statement] = STATE(4349), - [sym_function_definition] = STATE(4349), - [sym_compound_statement] = STATE(4349), - [sym_subshell] = STATE(4349), - [sym_pipeline] = STATE(4620), - [sym_list] = STATE(4349), - [sym_negated_command] = STATE(4349), - [sym_test_command] = STATE(4349), - [sym_declaration_command] = STATE(4349), - [sym_unset_command] = STATE(4349), - [sym_command] = STATE(4349), + [sym__statements] = STATE(6526), + [sym__statement_not_pipeline] = STATE(6716), + [sym_redirected_statement] = STATE(4350), + [sym_for_statement] = STATE(4350), + [sym_c_style_for_statement] = STATE(4350), + [sym_while_statement] = STATE(4219), + [sym_if_statement] = STATE(4219), + [sym_case_statement] = STATE(4350), + [sym_function_definition] = STATE(4350), + [sym_compound_statement] = STATE(4350), + [sym_subshell] = STATE(4350), + [sym_pipeline] = STATE(4717), + [sym_list] = STATE(4350), + [sym_negated_command] = STATE(4350), + [sym_test_command] = STATE(4350), + [sym_declaration_command] = STATE(4350), + [sym_unset_command] = STATE(4350), + [sym_command] = STATE(4350), [sym_command_name] = STATE(528), - [sym_variable_assignment] = STATE(807), - [sym_variable_assignments] = STATE(4349), - [sym_subscript] = STATE(6736), - [sym_file_redirect] = STATE(1635), - [sym_herestring_redirect] = STATE(1634), - [sym_arithmetic_expansion] = STATE(815), - [sym_brace_expression] = STATE(815), - [sym_concatenation] = STATE(1082), - [sym_string] = STATE(815), - [sym_translated_string] = STATE(815), - [sym_number] = STATE(815), - [sym_simple_expansion] = STATE(815), - [sym_expansion] = STATE(815), - [sym_command_substitution] = STATE(815), - [sym_process_substitution] = STATE(815), - [aux_sym__statements_repeat1] = STATE(431), + [sym_variable_assignment] = STATE(808), + [sym_variable_assignments] = STATE(4350), + [sym_subscript] = STATE(6784), + [sym_file_redirect] = STATE(1556), + [sym_herestring_redirect] = STATE(1718), + [sym_arithmetic_expansion] = STATE(813), + [sym_brace_expression] = STATE(813), + [sym_concatenation] = STATE(1073), + [sym_string] = STATE(813), + [sym_translated_string] = STATE(813), + [sym_number] = STATE(813), + [sym_simple_expansion] = STATE(813), + [sym_expansion] = STATE(813), + [sym_command_substitution] = STATE(813), + [sym_process_substitution] = STATE(813), + [aux_sym__statements_repeat1] = STATE(429), [aux_sym_redirected_statement_repeat2] = STATE(4250), - [aux_sym_command_repeat1] = STATE(925), - [aux_sym__literal_repeat1] = STATE(926), + [aux_sym_command_repeat1] = STATE(977), + [aux_sym__literal_repeat1] = STATE(978), [sym_word] = ACTIONS(403), [anon_sym_for] = ACTIONS(405), [anon_sym_select] = ACTIONS(407), @@ -31359,90 +31660,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(417), [anon_sym_if] = ACTIONS(419), [anon_sym_case] = ACTIONS(421), - [anon_sym_esac] = ACTIONS(489), - [anon_sym_SEMI_SEMI] = ACTIONS(491), - [anon_sym_SEMI_AMP] = ACTIONS(493), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(495), - [anon_sym_function] = ACTIONS(431), - [anon_sym_LBRACE] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_LBRACK_LBRACK] = ACTIONS(439), - [anon_sym_declare] = ACTIONS(441), - [anon_sym_typeset] = ACTIONS(441), - [anon_sym_export] = ACTIONS(441), - [anon_sym_readonly] = ACTIONS(441), - [anon_sym_local] = ACTIONS(441), - [anon_sym_unset] = ACTIONS(443), - [anon_sym_unsetenv] = ACTIONS(443), + [anon_sym_esac] = ACTIONS(487), + [anon_sym_SEMI_SEMI] = ACTIONS(489), + [anon_sym_SEMI_AMP] = ACTIONS(491), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(493), + [anon_sym_function] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LBRACK_LBRACK] = ACTIONS(437), + [anon_sym_declare] = ACTIONS(439), + [anon_sym_typeset] = ACTIONS(439), + [anon_sym_export] = ACTIONS(439), + [anon_sym_readonly] = ACTIONS(439), + [anon_sym_local] = ACTIONS(439), + [anon_sym_unset] = ACTIONS(441), + [anon_sym_unsetenv] = ACTIONS(441), [anon_sym_AMP_GT] = ACTIONS(411), [anon_sym_AMP_GT_GT] = ACTIONS(413), [anon_sym_LT_AMP] = ACTIONS(411), [anon_sym_GT_AMP] = ACTIONS(411), [anon_sym_GT_PIPE] = ACTIONS(413), - [anon_sym_LT_AMP_DASH] = ACTIONS(445), - [anon_sym_GT_AMP_DASH] = ACTIONS(445), - [anon_sym_LT_LT_LT] = ACTIONS(447), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(451), - [anon_sym_DOLLAR] = ACTIONS(453), - [sym__special_character] = ACTIONS(455), - [anon_sym_DQUOTE] = ACTIONS(457), - [sym_raw_string] = ACTIONS(459), - [sym_ansi_c_string] = ACTIONS(459), - [aux_sym_number_token1] = ACTIONS(461), - [aux_sym_number_token2] = ACTIONS(463), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(465), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(467), - [anon_sym_BQUOTE] = ACTIONS(469), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(471), - [anon_sym_LT_LPAREN] = ACTIONS(473), - [anon_sym_GT_LPAREN] = ACTIONS(473), + [anon_sym_LT_AMP_DASH] = ACTIONS(443), + [anon_sym_GT_AMP_DASH] = ACTIONS(443), + [anon_sym_LT_LT_LT] = ACTIONS(445), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(449), + [anon_sym_DOLLAR] = ACTIONS(451), + [sym__special_character] = ACTIONS(453), + [anon_sym_DQUOTE] = ACTIONS(455), + [sym_raw_string] = ACTIONS(457), + [sym_ansi_c_string] = ACTIONS(457), + [aux_sym_number_token1] = ACTIONS(459), + [aux_sym_number_token2] = ACTIONS(461), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(463), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(465), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(469), + [anon_sym_LT_LPAREN] = ACTIONS(471), + [anon_sym_GT_LPAREN] = ACTIONS(471), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(475), - [sym_variable_name] = ACTIONS(477), - [sym_test_operator] = ACTIONS(479), - [sym__brace_start] = ACTIONS(481), + [sym_file_descriptor] = ACTIONS(473), + [sym_variable_name] = ACTIONS(475), + [sym_test_operator] = ACTIONS(477), + [sym__brace_start] = ACTIONS(479), }, [25] = { - [sym__statements] = STATE(6492), - [sym__statement_not_pipeline] = STATE(6584), - [sym_redirected_statement] = STATE(4349), - [sym_for_statement] = STATE(4349), - [sym_c_style_for_statement] = STATE(4349), - [sym_while_statement] = STATE(4225), - [sym_if_statement] = STATE(4225), - [sym_case_statement] = STATE(4349), - [sym_function_definition] = STATE(4349), - [sym_compound_statement] = STATE(4349), - [sym_subshell] = STATE(4349), - [sym_pipeline] = STATE(4620), - [sym_list] = STATE(4349), - [sym_negated_command] = STATE(4349), - [sym_test_command] = STATE(4349), - [sym_declaration_command] = STATE(4349), - [sym_unset_command] = STATE(4349), - [sym_command] = STATE(4349), + [sym__statements] = STATE(6541), + [sym__statement_not_pipeline] = STATE(6716), + [sym_redirected_statement] = STATE(4350), + [sym_for_statement] = STATE(4350), + [sym_c_style_for_statement] = STATE(4350), + [sym_while_statement] = STATE(4219), + [sym_if_statement] = STATE(4219), + [sym_case_statement] = STATE(4350), + [sym_function_definition] = STATE(4350), + [sym_compound_statement] = STATE(4350), + [sym_subshell] = STATE(4350), + [sym_pipeline] = STATE(4717), + [sym_list] = STATE(4350), + [sym_negated_command] = STATE(4350), + [sym_test_command] = STATE(4350), + [sym_declaration_command] = STATE(4350), + [sym_unset_command] = STATE(4350), + [sym_command] = STATE(4350), [sym_command_name] = STATE(528), - [sym_variable_assignment] = STATE(807), - [sym_variable_assignments] = STATE(4349), - [sym_subscript] = STATE(6736), - [sym_file_redirect] = STATE(1635), - [sym_herestring_redirect] = STATE(1634), - [sym_arithmetic_expansion] = STATE(815), - [sym_brace_expression] = STATE(815), - [sym_concatenation] = STATE(1082), - [sym_string] = STATE(815), - [sym_translated_string] = STATE(815), - [sym_number] = STATE(815), - [sym_simple_expansion] = STATE(815), - [sym_expansion] = STATE(815), - [sym_command_substitution] = STATE(815), - [sym_process_substitution] = STATE(815), - [aux_sym__statements_repeat1] = STATE(431), + [sym_variable_assignment] = STATE(808), + [sym_variable_assignments] = STATE(4350), + [sym_subscript] = STATE(6784), + [sym_file_redirect] = STATE(1556), + [sym_herestring_redirect] = STATE(1718), + [sym_arithmetic_expansion] = STATE(813), + [sym_brace_expression] = STATE(813), + [sym_concatenation] = STATE(1073), + [sym_string] = STATE(813), + [sym_translated_string] = STATE(813), + [sym_number] = STATE(813), + [sym_simple_expansion] = STATE(813), + [sym_expansion] = STATE(813), + [sym_command_substitution] = STATE(813), + [sym_process_substitution] = STATE(813), + [aux_sym__statements_repeat1] = STATE(429), [aux_sym_redirected_statement_repeat2] = STATE(4250), - [aux_sym_command_repeat1] = STATE(925), - [aux_sym__literal_repeat1] = STATE(926), + [aux_sym_command_repeat1] = STATE(977), + [aux_sym__literal_repeat1] = STATE(978), [sym_word] = ACTIONS(403), [anon_sym_for] = ACTIONS(405), [anon_sym_select] = ACTIONS(407), @@ -31455,90 +31756,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(417), [anon_sym_if] = ACTIONS(419), [anon_sym_case] = ACTIONS(421), - [anon_sym_esac] = ACTIONS(489), + [anon_sym_esac] = ACTIONS(495), [anon_sym_SEMI_SEMI] = ACTIONS(497), [anon_sym_SEMI_AMP] = ACTIONS(499), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(501), - [anon_sym_function] = ACTIONS(431), - [anon_sym_LBRACE] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_LBRACK_LBRACK] = ACTIONS(439), - [anon_sym_declare] = ACTIONS(441), - [anon_sym_typeset] = ACTIONS(441), - [anon_sym_export] = ACTIONS(441), - [anon_sym_readonly] = ACTIONS(441), - [anon_sym_local] = ACTIONS(441), - [anon_sym_unset] = ACTIONS(443), - [anon_sym_unsetenv] = ACTIONS(443), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(499), + [anon_sym_function] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LBRACK_LBRACK] = ACTIONS(437), + [anon_sym_declare] = ACTIONS(439), + [anon_sym_typeset] = ACTIONS(439), + [anon_sym_export] = ACTIONS(439), + [anon_sym_readonly] = ACTIONS(439), + [anon_sym_local] = ACTIONS(439), + [anon_sym_unset] = ACTIONS(441), + [anon_sym_unsetenv] = ACTIONS(441), [anon_sym_AMP_GT] = ACTIONS(411), [anon_sym_AMP_GT_GT] = ACTIONS(413), [anon_sym_LT_AMP] = ACTIONS(411), [anon_sym_GT_AMP] = ACTIONS(411), [anon_sym_GT_PIPE] = ACTIONS(413), - [anon_sym_LT_AMP_DASH] = ACTIONS(445), - [anon_sym_GT_AMP_DASH] = ACTIONS(445), - [anon_sym_LT_LT_LT] = ACTIONS(447), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(451), - [anon_sym_DOLLAR] = ACTIONS(453), - [sym__special_character] = ACTIONS(455), - [anon_sym_DQUOTE] = ACTIONS(457), - [sym_raw_string] = ACTIONS(459), - [sym_ansi_c_string] = ACTIONS(459), - [aux_sym_number_token1] = ACTIONS(461), - [aux_sym_number_token2] = ACTIONS(463), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(465), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(467), - [anon_sym_BQUOTE] = ACTIONS(469), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(471), - [anon_sym_LT_LPAREN] = ACTIONS(473), - [anon_sym_GT_LPAREN] = ACTIONS(473), + [anon_sym_LT_AMP_DASH] = ACTIONS(443), + [anon_sym_GT_AMP_DASH] = ACTIONS(443), + [anon_sym_LT_LT_LT] = ACTIONS(445), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(449), + [anon_sym_DOLLAR] = ACTIONS(451), + [sym__special_character] = ACTIONS(453), + [anon_sym_DQUOTE] = ACTIONS(455), + [sym_raw_string] = ACTIONS(457), + [sym_ansi_c_string] = ACTIONS(457), + [aux_sym_number_token1] = ACTIONS(459), + [aux_sym_number_token2] = ACTIONS(461), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(463), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(465), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(469), + [anon_sym_LT_LPAREN] = ACTIONS(471), + [anon_sym_GT_LPAREN] = ACTIONS(471), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(475), - [sym_variable_name] = ACTIONS(477), - [sym_test_operator] = ACTIONS(479), - [sym__brace_start] = ACTIONS(481), + [sym_file_descriptor] = ACTIONS(473), + [sym_variable_name] = ACTIONS(475), + [sym_test_operator] = ACTIONS(477), + [sym__brace_start] = ACTIONS(479), }, [26] = { - [sym__statements] = STATE(6524), - [sym__statement_not_pipeline] = STATE(6584), - [sym_redirected_statement] = STATE(4349), - [sym_for_statement] = STATE(4349), - [sym_c_style_for_statement] = STATE(4349), - [sym_while_statement] = STATE(4225), - [sym_if_statement] = STATE(4225), - [sym_case_statement] = STATE(4349), - [sym_function_definition] = STATE(4349), - [sym_compound_statement] = STATE(4349), - [sym_subshell] = STATE(4349), - [sym_pipeline] = STATE(4620), - [sym_list] = STATE(4349), - [sym_negated_command] = STATE(4349), - [sym_test_command] = STATE(4349), - [sym_declaration_command] = STATE(4349), - [sym_unset_command] = STATE(4349), - [sym_command] = STATE(4349), + [sym__statements] = STATE(6502), + [sym__statement_not_pipeline] = STATE(6716), + [sym_redirected_statement] = STATE(4350), + [sym_for_statement] = STATE(4350), + [sym_c_style_for_statement] = STATE(4350), + [sym_while_statement] = STATE(4219), + [sym_if_statement] = STATE(4219), + [sym_case_statement] = STATE(4350), + [sym_function_definition] = STATE(4350), + [sym_compound_statement] = STATE(4350), + [sym_subshell] = STATE(4350), + [sym_pipeline] = STATE(4717), + [sym_list] = STATE(4350), + [sym_negated_command] = STATE(4350), + [sym_test_command] = STATE(4350), + [sym_declaration_command] = STATE(4350), + [sym_unset_command] = STATE(4350), + [sym_command] = STATE(4350), [sym_command_name] = STATE(528), - [sym_variable_assignment] = STATE(807), - [sym_variable_assignments] = STATE(4349), - [sym_subscript] = STATE(6736), - [sym_file_redirect] = STATE(1635), - [sym_herestring_redirect] = STATE(1634), - [sym_arithmetic_expansion] = STATE(815), - [sym_brace_expression] = STATE(815), - [sym_concatenation] = STATE(1082), - [sym_string] = STATE(815), - [sym_translated_string] = STATE(815), - [sym_number] = STATE(815), - [sym_simple_expansion] = STATE(815), - [sym_expansion] = STATE(815), - [sym_command_substitution] = STATE(815), - [sym_process_substitution] = STATE(815), - [aux_sym__statements_repeat1] = STATE(431), + [sym_variable_assignment] = STATE(808), + [sym_variable_assignments] = STATE(4350), + [sym_subscript] = STATE(6784), + [sym_file_redirect] = STATE(1556), + [sym_herestring_redirect] = STATE(1718), + [sym_arithmetic_expansion] = STATE(813), + [sym_brace_expression] = STATE(813), + [sym_concatenation] = STATE(1073), + [sym_string] = STATE(813), + [sym_translated_string] = STATE(813), + [sym_number] = STATE(813), + [sym_simple_expansion] = STATE(813), + [sym_expansion] = STATE(813), + [sym_command_substitution] = STATE(813), + [sym_process_substitution] = STATE(813), + [aux_sym__statements_repeat1] = STATE(429), [aux_sym_redirected_statement_repeat2] = STATE(4250), - [aux_sym_command_repeat1] = STATE(925), - [aux_sym__literal_repeat1] = STATE(926), + [aux_sym_command_repeat1] = STATE(977), + [aux_sym__literal_repeat1] = STATE(978), [sym_word] = ACTIONS(403), [anon_sym_for] = ACTIONS(405), [anon_sym_select] = ACTIONS(407), @@ -31551,90 +31852,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(417), [anon_sym_if] = ACTIONS(419), [anon_sym_case] = ACTIONS(421), - [anon_sym_esac] = ACTIONS(503), - [anon_sym_SEMI_SEMI] = ACTIONS(505), - [anon_sym_SEMI_AMP] = ACTIONS(507), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(509), - [anon_sym_function] = ACTIONS(431), - [anon_sym_LBRACE] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_LBRACK_LBRACK] = ACTIONS(439), - [anon_sym_declare] = ACTIONS(441), - [anon_sym_typeset] = ACTIONS(441), - [anon_sym_export] = ACTIONS(441), - [anon_sym_readonly] = ACTIONS(441), - [anon_sym_local] = ACTIONS(441), - [anon_sym_unset] = ACTIONS(443), - [anon_sym_unsetenv] = ACTIONS(443), + [anon_sym_esac] = ACTIONS(501), + [anon_sym_SEMI_SEMI] = ACTIONS(503), + [anon_sym_SEMI_AMP] = ACTIONS(505), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(505), + [anon_sym_function] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LBRACK_LBRACK] = ACTIONS(437), + [anon_sym_declare] = ACTIONS(439), + [anon_sym_typeset] = ACTIONS(439), + [anon_sym_export] = ACTIONS(439), + [anon_sym_readonly] = ACTIONS(439), + [anon_sym_local] = ACTIONS(439), + [anon_sym_unset] = ACTIONS(441), + [anon_sym_unsetenv] = ACTIONS(441), [anon_sym_AMP_GT] = ACTIONS(411), [anon_sym_AMP_GT_GT] = ACTIONS(413), [anon_sym_LT_AMP] = ACTIONS(411), [anon_sym_GT_AMP] = ACTIONS(411), [anon_sym_GT_PIPE] = ACTIONS(413), - [anon_sym_LT_AMP_DASH] = ACTIONS(445), - [anon_sym_GT_AMP_DASH] = ACTIONS(445), - [anon_sym_LT_LT_LT] = ACTIONS(447), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(451), - [anon_sym_DOLLAR] = ACTIONS(453), - [sym__special_character] = ACTIONS(455), - [anon_sym_DQUOTE] = ACTIONS(457), - [sym_raw_string] = ACTIONS(459), - [sym_ansi_c_string] = ACTIONS(459), - [aux_sym_number_token1] = ACTIONS(461), - [aux_sym_number_token2] = ACTIONS(463), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(465), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(467), - [anon_sym_BQUOTE] = ACTIONS(469), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(471), - [anon_sym_LT_LPAREN] = ACTIONS(473), - [anon_sym_GT_LPAREN] = ACTIONS(473), + [anon_sym_LT_AMP_DASH] = ACTIONS(443), + [anon_sym_GT_AMP_DASH] = ACTIONS(443), + [anon_sym_LT_LT_LT] = ACTIONS(445), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(449), + [anon_sym_DOLLAR] = ACTIONS(451), + [sym__special_character] = ACTIONS(453), + [anon_sym_DQUOTE] = ACTIONS(455), + [sym_raw_string] = ACTIONS(457), + [sym_ansi_c_string] = ACTIONS(457), + [aux_sym_number_token1] = ACTIONS(459), + [aux_sym_number_token2] = ACTIONS(461), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(463), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(465), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(469), + [anon_sym_LT_LPAREN] = ACTIONS(471), + [anon_sym_GT_LPAREN] = ACTIONS(471), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(475), - [sym_variable_name] = ACTIONS(477), - [sym_test_operator] = ACTIONS(479), - [sym__brace_start] = ACTIONS(481), + [sym_file_descriptor] = ACTIONS(473), + [sym_variable_name] = ACTIONS(475), + [sym_test_operator] = ACTIONS(477), + [sym__brace_start] = ACTIONS(479), }, [27] = { - [sym__statements] = STATE(6496), - [sym__statement_not_pipeline] = STATE(6584), - [sym_redirected_statement] = STATE(4349), - [sym_for_statement] = STATE(4349), - [sym_c_style_for_statement] = STATE(4349), - [sym_while_statement] = STATE(4225), - [sym_if_statement] = STATE(4225), - [sym_case_statement] = STATE(4349), - [sym_function_definition] = STATE(4349), - [sym_compound_statement] = STATE(4349), - [sym_subshell] = STATE(4349), - [sym_pipeline] = STATE(4620), - [sym_list] = STATE(4349), - [sym_negated_command] = STATE(4349), - [sym_test_command] = STATE(4349), - [sym_declaration_command] = STATE(4349), - [sym_unset_command] = STATE(4349), - [sym_command] = STATE(4349), + [sym__statements] = STATE(6514), + [sym__statement_not_pipeline] = STATE(6716), + [sym_redirected_statement] = STATE(4350), + [sym_for_statement] = STATE(4350), + [sym_c_style_for_statement] = STATE(4350), + [sym_while_statement] = STATE(4219), + [sym_if_statement] = STATE(4219), + [sym_case_statement] = STATE(4350), + [sym_function_definition] = STATE(4350), + [sym_compound_statement] = STATE(4350), + [sym_subshell] = STATE(4350), + [sym_pipeline] = STATE(4717), + [sym_list] = STATE(4350), + [sym_negated_command] = STATE(4350), + [sym_test_command] = STATE(4350), + [sym_declaration_command] = STATE(4350), + [sym_unset_command] = STATE(4350), + [sym_command] = STATE(4350), [sym_command_name] = STATE(528), - [sym_variable_assignment] = STATE(807), - [sym_variable_assignments] = STATE(4349), - [sym_subscript] = STATE(6736), - [sym_file_redirect] = STATE(1635), - [sym_herestring_redirect] = STATE(1634), - [sym_arithmetic_expansion] = STATE(815), - [sym_brace_expression] = STATE(815), - [sym_concatenation] = STATE(1082), - [sym_string] = STATE(815), - [sym_translated_string] = STATE(815), - [sym_number] = STATE(815), - [sym_simple_expansion] = STATE(815), - [sym_expansion] = STATE(815), - [sym_command_substitution] = STATE(815), - [sym_process_substitution] = STATE(815), - [aux_sym__statements_repeat1] = STATE(431), + [sym_variable_assignment] = STATE(808), + [sym_variable_assignments] = STATE(4350), + [sym_subscript] = STATE(6784), + [sym_file_redirect] = STATE(1556), + [sym_herestring_redirect] = STATE(1718), + [sym_arithmetic_expansion] = STATE(813), + [sym_brace_expression] = STATE(813), + [sym_concatenation] = STATE(1073), + [sym_string] = STATE(813), + [sym_translated_string] = STATE(813), + [sym_number] = STATE(813), + [sym_simple_expansion] = STATE(813), + [sym_expansion] = STATE(813), + [sym_command_substitution] = STATE(813), + [sym_process_substitution] = STATE(813), + [aux_sym__statements_repeat1] = STATE(429), [aux_sym_redirected_statement_repeat2] = STATE(4250), - [aux_sym_command_repeat1] = STATE(925), - [aux_sym__literal_repeat1] = STATE(926), + [aux_sym_command_repeat1] = STATE(977), + [aux_sym__literal_repeat1] = STATE(978), [sym_word] = ACTIONS(403), [anon_sym_for] = ACTIONS(405), [anon_sym_select] = ACTIONS(407), @@ -31647,90 +31948,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(417), [anon_sym_if] = ACTIONS(419), [anon_sym_case] = ACTIONS(421), - [anon_sym_esac] = ACTIONS(511), - [anon_sym_SEMI_SEMI] = ACTIONS(513), - [anon_sym_SEMI_AMP] = ACTIONS(515), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(517), - [anon_sym_function] = ACTIONS(431), - [anon_sym_LBRACE] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_LBRACK_LBRACK] = ACTIONS(439), - [anon_sym_declare] = ACTIONS(441), - [anon_sym_typeset] = ACTIONS(441), - [anon_sym_export] = ACTIONS(441), - [anon_sym_readonly] = ACTIONS(441), - [anon_sym_local] = ACTIONS(441), - [anon_sym_unset] = ACTIONS(443), - [anon_sym_unsetenv] = ACTIONS(443), + [anon_sym_esac] = ACTIONS(507), + [anon_sym_SEMI_SEMI] = ACTIONS(509), + [anon_sym_SEMI_AMP] = ACTIONS(511), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(513), + [anon_sym_function] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LBRACK_LBRACK] = ACTIONS(437), + [anon_sym_declare] = ACTIONS(439), + [anon_sym_typeset] = ACTIONS(439), + [anon_sym_export] = ACTIONS(439), + [anon_sym_readonly] = ACTIONS(439), + [anon_sym_local] = ACTIONS(439), + [anon_sym_unset] = ACTIONS(441), + [anon_sym_unsetenv] = ACTIONS(441), [anon_sym_AMP_GT] = ACTIONS(411), [anon_sym_AMP_GT_GT] = ACTIONS(413), [anon_sym_LT_AMP] = ACTIONS(411), [anon_sym_GT_AMP] = ACTIONS(411), [anon_sym_GT_PIPE] = ACTIONS(413), - [anon_sym_LT_AMP_DASH] = ACTIONS(445), - [anon_sym_GT_AMP_DASH] = ACTIONS(445), - [anon_sym_LT_LT_LT] = ACTIONS(447), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(451), - [anon_sym_DOLLAR] = ACTIONS(453), - [sym__special_character] = ACTIONS(455), - [anon_sym_DQUOTE] = ACTIONS(457), - [sym_raw_string] = ACTIONS(459), - [sym_ansi_c_string] = ACTIONS(459), - [aux_sym_number_token1] = ACTIONS(461), - [aux_sym_number_token2] = ACTIONS(463), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(465), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(467), - [anon_sym_BQUOTE] = ACTIONS(469), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(471), - [anon_sym_LT_LPAREN] = ACTIONS(473), - [anon_sym_GT_LPAREN] = ACTIONS(473), + [anon_sym_LT_AMP_DASH] = ACTIONS(443), + [anon_sym_GT_AMP_DASH] = ACTIONS(443), + [anon_sym_LT_LT_LT] = ACTIONS(445), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(449), + [anon_sym_DOLLAR] = ACTIONS(451), + [sym__special_character] = ACTIONS(453), + [anon_sym_DQUOTE] = ACTIONS(455), + [sym_raw_string] = ACTIONS(457), + [sym_ansi_c_string] = ACTIONS(457), + [aux_sym_number_token1] = ACTIONS(459), + [aux_sym_number_token2] = ACTIONS(461), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(463), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(465), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(469), + [anon_sym_LT_LPAREN] = ACTIONS(471), + [anon_sym_GT_LPAREN] = ACTIONS(471), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(475), - [sym_variable_name] = ACTIONS(477), - [sym_test_operator] = ACTIONS(479), - [sym__brace_start] = ACTIONS(481), + [sym_file_descriptor] = ACTIONS(473), + [sym_variable_name] = ACTIONS(475), + [sym_test_operator] = ACTIONS(477), + [sym__brace_start] = ACTIONS(479), }, [28] = { - [sym__statements] = STATE(6491), - [sym__statement_not_pipeline] = STATE(6584), - [sym_redirected_statement] = STATE(4349), - [sym_for_statement] = STATE(4349), - [sym_c_style_for_statement] = STATE(4349), - [sym_while_statement] = STATE(4225), - [sym_if_statement] = STATE(4225), - [sym_case_statement] = STATE(4349), - [sym_function_definition] = STATE(4349), - [sym_compound_statement] = STATE(4349), - [sym_subshell] = STATE(4349), - [sym_pipeline] = STATE(4620), - [sym_list] = STATE(4349), - [sym_negated_command] = STATE(4349), - [sym_test_command] = STATE(4349), - [sym_declaration_command] = STATE(4349), - [sym_unset_command] = STATE(4349), - [sym_command] = STATE(4349), + [sym__statements] = STATE(6481), + [sym__statement_not_pipeline] = STATE(6716), + [sym_redirected_statement] = STATE(4350), + [sym_for_statement] = STATE(4350), + [sym_c_style_for_statement] = STATE(4350), + [sym_while_statement] = STATE(4219), + [sym_if_statement] = STATE(4219), + [sym_case_statement] = STATE(4350), + [sym_function_definition] = STATE(4350), + [sym_compound_statement] = STATE(4350), + [sym_subshell] = STATE(4350), + [sym_pipeline] = STATE(4717), + [sym_list] = STATE(4350), + [sym_negated_command] = STATE(4350), + [sym_test_command] = STATE(4350), + [sym_declaration_command] = STATE(4350), + [sym_unset_command] = STATE(4350), + [sym_command] = STATE(4350), [sym_command_name] = STATE(528), - [sym_variable_assignment] = STATE(807), - [sym_variable_assignments] = STATE(4349), - [sym_subscript] = STATE(6736), - [sym_file_redirect] = STATE(1635), - [sym_herestring_redirect] = STATE(1634), - [sym_arithmetic_expansion] = STATE(815), - [sym_brace_expression] = STATE(815), - [sym_concatenation] = STATE(1082), - [sym_string] = STATE(815), - [sym_translated_string] = STATE(815), - [sym_number] = STATE(815), - [sym_simple_expansion] = STATE(815), - [sym_expansion] = STATE(815), - [sym_command_substitution] = STATE(815), - [sym_process_substitution] = STATE(815), - [aux_sym__statements_repeat1] = STATE(431), + [sym_variable_assignment] = STATE(808), + [sym_variable_assignments] = STATE(4350), + [sym_subscript] = STATE(6784), + [sym_file_redirect] = STATE(1556), + [sym_herestring_redirect] = STATE(1718), + [sym_arithmetic_expansion] = STATE(813), + [sym_brace_expression] = STATE(813), + [sym_concatenation] = STATE(1073), + [sym_string] = STATE(813), + [sym_translated_string] = STATE(813), + [sym_number] = STATE(813), + [sym_simple_expansion] = STATE(813), + [sym_expansion] = STATE(813), + [sym_command_substitution] = STATE(813), + [sym_process_substitution] = STATE(813), + [aux_sym__statements_repeat1] = STATE(429), [aux_sym_redirected_statement_repeat2] = STATE(4250), - [aux_sym_command_repeat1] = STATE(925), - [aux_sym__literal_repeat1] = STATE(926), + [aux_sym_command_repeat1] = STATE(977), + [aux_sym__literal_repeat1] = STATE(978), [sym_word] = ACTIONS(403), [anon_sym_for] = ACTIONS(405), [anon_sym_select] = ACTIONS(407), @@ -31743,90 +32044,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(417), [anon_sym_if] = ACTIONS(419), [anon_sym_case] = ACTIONS(421), - [anon_sym_esac] = ACTIONS(511), - [anon_sym_SEMI_SEMI] = ACTIONS(519), - [anon_sym_SEMI_AMP] = ACTIONS(521), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(523), - [anon_sym_function] = ACTIONS(431), - [anon_sym_LBRACE] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_LBRACK_LBRACK] = ACTIONS(439), - [anon_sym_declare] = ACTIONS(441), - [anon_sym_typeset] = ACTIONS(441), - [anon_sym_export] = ACTIONS(441), - [anon_sym_readonly] = ACTIONS(441), - [anon_sym_local] = ACTIONS(441), - [anon_sym_unset] = ACTIONS(443), - [anon_sym_unsetenv] = ACTIONS(443), + [anon_sym_esac] = ACTIONS(507), + [anon_sym_SEMI_SEMI] = ACTIONS(515), + [anon_sym_SEMI_AMP] = ACTIONS(517), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(519), + [anon_sym_function] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LBRACK_LBRACK] = ACTIONS(437), + [anon_sym_declare] = ACTIONS(439), + [anon_sym_typeset] = ACTIONS(439), + [anon_sym_export] = ACTIONS(439), + [anon_sym_readonly] = ACTIONS(439), + [anon_sym_local] = ACTIONS(439), + [anon_sym_unset] = ACTIONS(441), + [anon_sym_unsetenv] = ACTIONS(441), [anon_sym_AMP_GT] = ACTIONS(411), [anon_sym_AMP_GT_GT] = ACTIONS(413), [anon_sym_LT_AMP] = ACTIONS(411), [anon_sym_GT_AMP] = ACTIONS(411), [anon_sym_GT_PIPE] = ACTIONS(413), - [anon_sym_LT_AMP_DASH] = ACTIONS(445), - [anon_sym_GT_AMP_DASH] = ACTIONS(445), - [anon_sym_LT_LT_LT] = ACTIONS(447), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(451), - [anon_sym_DOLLAR] = ACTIONS(453), - [sym__special_character] = ACTIONS(455), - [anon_sym_DQUOTE] = ACTIONS(457), - [sym_raw_string] = ACTIONS(459), - [sym_ansi_c_string] = ACTIONS(459), - [aux_sym_number_token1] = ACTIONS(461), - [aux_sym_number_token2] = ACTIONS(463), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(465), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(467), - [anon_sym_BQUOTE] = ACTIONS(469), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(471), - [anon_sym_LT_LPAREN] = ACTIONS(473), - [anon_sym_GT_LPAREN] = ACTIONS(473), + [anon_sym_LT_AMP_DASH] = ACTIONS(443), + [anon_sym_GT_AMP_DASH] = ACTIONS(443), + [anon_sym_LT_LT_LT] = ACTIONS(445), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(449), + [anon_sym_DOLLAR] = ACTIONS(451), + [sym__special_character] = ACTIONS(453), + [anon_sym_DQUOTE] = ACTIONS(455), + [sym_raw_string] = ACTIONS(457), + [sym_ansi_c_string] = ACTIONS(457), + [aux_sym_number_token1] = ACTIONS(459), + [aux_sym_number_token2] = ACTIONS(461), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(463), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(465), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(469), + [anon_sym_LT_LPAREN] = ACTIONS(471), + [anon_sym_GT_LPAREN] = ACTIONS(471), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(475), - [sym_variable_name] = ACTIONS(477), - [sym_test_operator] = ACTIONS(479), - [sym__brace_start] = ACTIONS(481), + [sym_file_descriptor] = ACTIONS(473), + [sym_variable_name] = ACTIONS(475), + [sym_test_operator] = ACTIONS(477), + [sym__brace_start] = ACTIONS(479), }, [29] = { - [sym__statements] = STATE(6542), - [sym__statement_not_pipeline] = STATE(6584), - [sym_redirected_statement] = STATE(4349), - [sym_for_statement] = STATE(4349), - [sym_c_style_for_statement] = STATE(4349), - [sym_while_statement] = STATE(4225), - [sym_if_statement] = STATE(4225), - [sym_case_statement] = STATE(4349), - [sym_function_definition] = STATE(4349), - [sym_compound_statement] = STATE(4349), - [sym_subshell] = STATE(4349), - [sym_pipeline] = STATE(4620), - [sym_list] = STATE(4349), - [sym_negated_command] = STATE(4349), - [sym_test_command] = STATE(4349), - [sym_declaration_command] = STATE(4349), - [sym_unset_command] = STATE(4349), - [sym_command] = STATE(4349), + [sym__statements] = STATE(6488), + [sym__statement_not_pipeline] = STATE(6716), + [sym_redirected_statement] = STATE(4350), + [sym_for_statement] = STATE(4350), + [sym_c_style_for_statement] = STATE(4350), + [sym_while_statement] = STATE(4219), + [sym_if_statement] = STATE(4219), + [sym_case_statement] = STATE(4350), + [sym_function_definition] = STATE(4350), + [sym_compound_statement] = STATE(4350), + [sym_subshell] = STATE(4350), + [sym_pipeline] = STATE(4717), + [sym_list] = STATE(4350), + [sym_negated_command] = STATE(4350), + [sym_test_command] = STATE(4350), + [sym_declaration_command] = STATE(4350), + [sym_unset_command] = STATE(4350), + [sym_command] = STATE(4350), [sym_command_name] = STATE(528), - [sym_variable_assignment] = STATE(807), - [sym_variable_assignments] = STATE(4349), - [sym_subscript] = STATE(6736), - [sym_file_redirect] = STATE(1635), - [sym_herestring_redirect] = STATE(1634), - [sym_arithmetic_expansion] = STATE(815), - [sym_brace_expression] = STATE(815), - [sym_concatenation] = STATE(1082), - [sym_string] = STATE(815), - [sym_translated_string] = STATE(815), - [sym_number] = STATE(815), - [sym_simple_expansion] = STATE(815), - [sym_expansion] = STATE(815), - [sym_command_substitution] = STATE(815), - [sym_process_substitution] = STATE(815), - [aux_sym__statements_repeat1] = STATE(431), + [sym_variable_assignment] = STATE(808), + [sym_variable_assignments] = STATE(4350), + [sym_subscript] = STATE(6784), + [sym_file_redirect] = STATE(1556), + [sym_herestring_redirect] = STATE(1718), + [sym_arithmetic_expansion] = STATE(813), + [sym_brace_expression] = STATE(813), + [sym_concatenation] = STATE(1073), + [sym_string] = STATE(813), + [sym_translated_string] = STATE(813), + [sym_number] = STATE(813), + [sym_simple_expansion] = STATE(813), + [sym_expansion] = STATE(813), + [sym_command_substitution] = STATE(813), + [sym_process_substitution] = STATE(813), + [aux_sym__statements_repeat1] = STATE(429), [aux_sym_redirected_statement_repeat2] = STATE(4250), - [aux_sym_command_repeat1] = STATE(925), - [aux_sym__literal_repeat1] = STATE(926), + [aux_sym_command_repeat1] = STATE(977), + [aux_sym__literal_repeat1] = STATE(978), [sym_word] = ACTIONS(403), [anon_sym_for] = ACTIONS(405), [anon_sym_select] = ACTIONS(407), @@ -31839,90 +32140,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(417), [anon_sym_if] = ACTIONS(419), [anon_sym_case] = ACTIONS(421), - [anon_sym_esac] = ACTIONS(503), - [anon_sym_SEMI_SEMI] = ACTIONS(525), - [anon_sym_SEMI_AMP] = ACTIONS(527), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(529), - [anon_sym_function] = ACTIONS(431), - [anon_sym_LBRACE] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_LBRACK_LBRACK] = ACTIONS(439), - [anon_sym_declare] = ACTIONS(441), - [anon_sym_typeset] = ACTIONS(441), - [anon_sym_export] = ACTIONS(441), - [anon_sym_readonly] = ACTIONS(441), - [anon_sym_local] = ACTIONS(441), - [anon_sym_unset] = ACTIONS(443), - [anon_sym_unsetenv] = ACTIONS(443), + [anon_sym_esac] = ACTIONS(487), + [anon_sym_SEMI_SEMI] = ACTIONS(521), + [anon_sym_SEMI_AMP] = ACTIONS(523), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(525), + [anon_sym_function] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LBRACK_LBRACK] = ACTIONS(437), + [anon_sym_declare] = ACTIONS(439), + [anon_sym_typeset] = ACTIONS(439), + [anon_sym_export] = ACTIONS(439), + [anon_sym_readonly] = ACTIONS(439), + [anon_sym_local] = ACTIONS(439), + [anon_sym_unset] = ACTIONS(441), + [anon_sym_unsetenv] = ACTIONS(441), [anon_sym_AMP_GT] = ACTIONS(411), [anon_sym_AMP_GT_GT] = ACTIONS(413), [anon_sym_LT_AMP] = ACTIONS(411), [anon_sym_GT_AMP] = ACTIONS(411), [anon_sym_GT_PIPE] = ACTIONS(413), - [anon_sym_LT_AMP_DASH] = ACTIONS(445), - [anon_sym_GT_AMP_DASH] = ACTIONS(445), - [anon_sym_LT_LT_LT] = ACTIONS(447), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(451), - [anon_sym_DOLLAR] = ACTIONS(453), - [sym__special_character] = ACTIONS(455), - [anon_sym_DQUOTE] = ACTIONS(457), - [sym_raw_string] = ACTIONS(459), - [sym_ansi_c_string] = ACTIONS(459), - [aux_sym_number_token1] = ACTIONS(461), - [aux_sym_number_token2] = ACTIONS(463), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(465), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(467), - [anon_sym_BQUOTE] = ACTIONS(469), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(471), - [anon_sym_LT_LPAREN] = ACTIONS(473), - [anon_sym_GT_LPAREN] = ACTIONS(473), + [anon_sym_LT_AMP_DASH] = ACTIONS(443), + [anon_sym_GT_AMP_DASH] = ACTIONS(443), + [anon_sym_LT_LT_LT] = ACTIONS(445), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(449), + [anon_sym_DOLLAR] = ACTIONS(451), + [sym__special_character] = ACTIONS(453), + [anon_sym_DQUOTE] = ACTIONS(455), + [sym_raw_string] = ACTIONS(457), + [sym_ansi_c_string] = ACTIONS(457), + [aux_sym_number_token1] = ACTIONS(459), + [aux_sym_number_token2] = ACTIONS(461), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(463), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(465), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(469), + [anon_sym_LT_LPAREN] = ACTIONS(471), + [anon_sym_GT_LPAREN] = ACTIONS(471), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(475), - [sym_variable_name] = ACTIONS(477), - [sym_test_operator] = ACTIONS(479), - [sym__brace_start] = ACTIONS(481), + [sym_file_descriptor] = ACTIONS(473), + [sym_variable_name] = ACTIONS(475), + [sym_test_operator] = ACTIONS(477), + [sym__brace_start] = ACTIONS(479), }, [30] = { - [sym__statements] = STATE(6541), - [sym__statement_not_pipeline] = STATE(6584), - [sym_redirected_statement] = STATE(4349), - [sym_for_statement] = STATE(4349), - [sym_c_style_for_statement] = STATE(4349), - [sym_while_statement] = STATE(4225), - [sym_if_statement] = STATE(4225), - [sym_case_statement] = STATE(4349), - [sym_function_definition] = STATE(4349), - [sym_compound_statement] = STATE(4349), - [sym_subshell] = STATE(4349), - [sym_pipeline] = STATE(4620), - [sym_list] = STATE(4349), - [sym_negated_command] = STATE(4349), - [sym_test_command] = STATE(4349), - [sym_declaration_command] = STATE(4349), - [sym_unset_command] = STATE(4349), - [sym_command] = STATE(4349), + [sym__statements] = STATE(6522), + [sym__statement_not_pipeline] = STATE(6716), + [sym_redirected_statement] = STATE(4350), + [sym_for_statement] = STATE(4350), + [sym_c_style_for_statement] = STATE(4350), + [sym_while_statement] = STATE(4219), + [sym_if_statement] = STATE(4219), + [sym_case_statement] = STATE(4350), + [sym_function_definition] = STATE(4350), + [sym_compound_statement] = STATE(4350), + [sym_subshell] = STATE(4350), + [sym_pipeline] = STATE(4717), + [sym_list] = STATE(4350), + [sym_negated_command] = STATE(4350), + [sym_test_command] = STATE(4350), + [sym_declaration_command] = STATE(4350), + [sym_unset_command] = STATE(4350), + [sym_command] = STATE(4350), [sym_command_name] = STATE(528), - [sym_variable_assignment] = STATE(807), - [sym_variable_assignments] = STATE(4349), - [sym_subscript] = STATE(6736), - [sym_file_redirect] = STATE(1635), - [sym_herestring_redirect] = STATE(1634), - [sym_arithmetic_expansion] = STATE(815), - [sym_brace_expression] = STATE(815), - [sym_concatenation] = STATE(1082), - [sym_string] = STATE(815), - [sym_translated_string] = STATE(815), - [sym_number] = STATE(815), - [sym_simple_expansion] = STATE(815), - [sym_expansion] = STATE(815), - [sym_command_substitution] = STATE(815), - [sym_process_substitution] = STATE(815), - [aux_sym__statements_repeat1] = STATE(431), + [sym_variable_assignment] = STATE(808), + [sym_variable_assignments] = STATE(4350), + [sym_subscript] = STATE(6784), + [sym_file_redirect] = STATE(1556), + [sym_herestring_redirect] = STATE(1718), + [sym_arithmetic_expansion] = STATE(813), + [sym_brace_expression] = STATE(813), + [sym_concatenation] = STATE(1073), + [sym_string] = STATE(813), + [sym_translated_string] = STATE(813), + [sym_number] = STATE(813), + [sym_simple_expansion] = STATE(813), + [sym_expansion] = STATE(813), + [sym_command_substitution] = STATE(813), + [sym_process_substitution] = STATE(813), + [aux_sym__statements_repeat1] = STATE(429), [aux_sym_redirected_statement_repeat2] = STATE(4250), - [aux_sym_command_repeat1] = STATE(925), - [aux_sym__literal_repeat1] = STATE(926), + [aux_sym_command_repeat1] = STATE(977), + [aux_sym__literal_repeat1] = STATE(978), [sym_word] = ACTIONS(403), [anon_sym_for] = ACTIONS(405), [anon_sym_select] = ACTIONS(407), @@ -31935,90 +32236,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(417), [anon_sym_if] = ACTIONS(419), [anon_sym_case] = ACTIONS(421), - [anon_sym_esac] = ACTIONS(531), - [anon_sym_SEMI_SEMI] = ACTIONS(533), - [anon_sym_SEMI_AMP] = ACTIONS(535), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(535), - [anon_sym_function] = ACTIONS(431), - [anon_sym_LBRACE] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_LBRACK_LBRACK] = ACTIONS(439), - [anon_sym_declare] = ACTIONS(441), - [anon_sym_typeset] = ACTIONS(441), - [anon_sym_export] = ACTIONS(441), - [anon_sym_readonly] = ACTIONS(441), - [anon_sym_local] = ACTIONS(441), - [anon_sym_unset] = ACTIONS(443), - [anon_sym_unsetenv] = ACTIONS(443), + [anon_sym_esac] = ACTIONS(527), + [anon_sym_SEMI_SEMI] = ACTIONS(529), + [anon_sym_SEMI_AMP] = ACTIONS(531), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(533), + [anon_sym_function] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LBRACK_LBRACK] = ACTIONS(437), + [anon_sym_declare] = ACTIONS(439), + [anon_sym_typeset] = ACTIONS(439), + [anon_sym_export] = ACTIONS(439), + [anon_sym_readonly] = ACTIONS(439), + [anon_sym_local] = ACTIONS(439), + [anon_sym_unset] = ACTIONS(441), + [anon_sym_unsetenv] = ACTIONS(441), [anon_sym_AMP_GT] = ACTIONS(411), [anon_sym_AMP_GT_GT] = ACTIONS(413), [anon_sym_LT_AMP] = ACTIONS(411), [anon_sym_GT_AMP] = ACTIONS(411), [anon_sym_GT_PIPE] = ACTIONS(413), - [anon_sym_LT_AMP_DASH] = ACTIONS(445), - [anon_sym_GT_AMP_DASH] = ACTIONS(445), - [anon_sym_LT_LT_LT] = ACTIONS(447), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(451), - [anon_sym_DOLLAR] = ACTIONS(453), - [sym__special_character] = ACTIONS(455), - [anon_sym_DQUOTE] = ACTIONS(457), - [sym_raw_string] = ACTIONS(459), - [sym_ansi_c_string] = ACTIONS(459), - [aux_sym_number_token1] = ACTIONS(461), - [aux_sym_number_token2] = ACTIONS(463), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(465), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(467), - [anon_sym_BQUOTE] = ACTIONS(469), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(471), - [anon_sym_LT_LPAREN] = ACTIONS(473), - [anon_sym_GT_LPAREN] = ACTIONS(473), + [anon_sym_LT_AMP_DASH] = ACTIONS(443), + [anon_sym_GT_AMP_DASH] = ACTIONS(443), + [anon_sym_LT_LT_LT] = ACTIONS(445), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(449), + [anon_sym_DOLLAR] = ACTIONS(451), + [sym__special_character] = ACTIONS(453), + [anon_sym_DQUOTE] = ACTIONS(455), + [sym_raw_string] = ACTIONS(457), + [sym_ansi_c_string] = ACTIONS(457), + [aux_sym_number_token1] = ACTIONS(459), + [aux_sym_number_token2] = ACTIONS(461), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(463), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(465), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(469), + [anon_sym_LT_LPAREN] = ACTIONS(471), + [anon_sym_GT_LPAREN] = ACTIONS(471), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(475), - [sym_variable_name] = ACTIONS(477), - [sym_test_operator] = ACTIONS(479), - [sym__brace_start] = ACTIONS(481), + [sym_file_descriptor] = ACTIONS(473), + [sym_variable_name] = ACTIONS(475), + [sym_test_operator] = ACTIONS(477), + [sym__brace_start] = ACTIONS(479), }, [31] = { - [sym__statements] = STATE(6536), - [sym__statement_not_pipeline] = STATE(6584), - [sym_redirected_statement] = STATE(4349), - [sym_for_statement] = STATE(4349), - [sym_c_style_for_statement] = STATE(4349), - [sym_while_statement] = STATE(4225), - [sym_if_statement] = STATE(4225), - [sym_case_statement] = STATE(4349), - [sym_function_definition] = STATE(4349), - [sym_compound_statement] = STATE(4349), - [sym_subshell] = STATE(4349), - [sym_pipeline] = STATE(4620), - [sym_list] = STATE(4349), - [sym_negated_command] = STATE(4349), - [sym_test_command] = STATE(4349), - [sym_declaration_command] = STATE(4349), - [sym_unset_command] = STATE(4349), - [sym_command] = STATE(4349), + [sym__statements] = STATE(6515), + [sym__statement_not_pipeline] = STATE(6716), + [sym_redirected_statement] = STATE(4350), + [sym_for_statement] = STATE(4350), + [sym_c_style_for_statement] = STATE(4350), + [sym_while_statement] = STATE(4219), + [sym_if_statement] = STATE(4219), + [sym_case_statement] = STATE(4350), + [sym_function_definition] = STATE(4350), + [sym_compound_statement] = STATE(4350), + [sym_subshell] = STATE(4350), + [sym_pipeline] = STATE(4717), + [sym_list] = STATE(4350), + [sym_negated_command] = STATE(4350), + [sym_test_command] = STATE(4350), + [sym_declaration_command] = STATE(4350), + [sym_unset_command] = STATE(4350), + [sym_command] = STATE(4350), [sym_command_name] = STATE(528), - [sym_variable_assignment] = STATE(807), - [sym_variable_assignments] = STATE(4349), - [sym_subscript] = STATE(6736), - [sym_file_redirect] = STATE(1635), - [sym_herestring_redirect] = STATE(1634), - [sym_arithmetic_expansion] = STATE(815), - [sym_brace_expression] = STATE(815), - [sym_concatenation] = STATE(1082), - [sym_string] = STATE(815), - [sym_translated_string] = STATE(815), - [sym_number] = STATE(815), - [sym_simple_expansion] = STATE(815), - [sym_expansion] = STATE(815), - [sym_command_substitution] = STATE(815), - [sym_process_substitution] = STATE(815), - [aux_sym__statements_repeat1] = STATE(431), + [sym_variable_assignment] = STATE(808), + [sym_variable_assignments] = STATE(4350), + [sym_subscript] = STATE(6784), + [sym_file_redirect] = STATE(1556), + [sym_herestring_redirect] = STATE(1718), + [sym_arithmetic_expansion] = STATE(813), + [sym_brace_expression] = STATE(813), + [sym_concatenation] = STATE(1073), + [sym_string] = STATE(813), + [sym_translated_string] = STATE(813), + [sym_number] = STATE(813), + [sym_simple_expansion] = STATE(813), + [sym_expansion] = STATE(813), + [sym_command_substitution] = STATE(813), + [sym_process_substitution] = STATE(813), + [aux_sym__statements_repeat1] = STATE(429), [aux_sym_redirected_statement_repeat2] = STATE(4250), - [aux_sym_command_repeat1] = STATE(925), - [aux_sym__literal_repeat1] = STATE(926), + [aux_sym_command_repeat1] = STATE(977), + [aux_sym__literal_repeat1] = STATE(978), [sym_word] = ACTIONS(403), [anon_sym_for] = ACTIONS(405), [anon_sym_select] = ACTIONS(407), @@ -32031,90 +32332,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(417), [anon_sym_if] = ACTIONS(419), [anon_sym_case] = ACTIONS(421), - [anon_sym_esac] = ACTIONS(537), - [anon_sym_SEMI_SEMI] = ACTIONS(539), - [anon_sym_SEMI_AMP] = ACTIONS(541), + [anon_sym_esac] = ACTIONS(535), + [anon_sym_SEMI_SEMI] = ACTIONS(537), + [anon_sym_SEMI_AMP] = ACTIONS(539), [anon_sym_SEMI_SEMI_AMP] = ACTIONS(541), - [anon_sym_function] = ACTIONS(431), - [anon_sym_LBRACE] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_LBRACK_LBRACK] = ACTIONS(439), - [anon_sym_declare] = ACTIONS(441), - [anon_sym_typeset] = ACTIONS(441), - [anon_sym_export] = ACTIONS(441), - [anon_sym_readonly] = ACTIONS(441), - [anon_sym_local] = ACTIONS(441), - [anon_sym_unset] = ACTIONS(443), - [anon_sym_unsetenv] = ACTIONS(443), + [anon_sym_function] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LBRACK_LBRACK] = ACTIONS(437), + [anon_sym_declare] = ACTIONS(439), + [anon_sym_typeset] = ACTIONS(439), + [anon_sym_export] = ACTIONS(439), + [anon_sym_readonly] = ACTIONS(439), + [anon_sym_local] = ACTIONS(439), + [anon_sym_unset] = ACTIONS(441), + [anon_sym_unsetenv] = ACTIONS(441), [anon_sym_AMP_GT] = ACTIONS(411), [anon_sym_AMP_GT_GT] = ACTIONS(413), [anon_sym_LT_AMP] = ACTIONS(411), [anon_sym_GT_AMP] = ACTIONS(411), [anon_sym_GT_PIPE] = ACTIONS(413), - [anon_sym_LT_AMP_DASH] = ACTIONS(445), - [anon_sym_GT_AMP_DASH] = ACTIONS(445), - [anon_sym_LT_LT_LT] = ACTIONS(447), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(451), - [anon_sym_DOLLAR] = ACTIONS(453), - [sym__special_character] = ACTIONS(455), - [anon_sym_DQUOTE] = ACTIONS(457), - [sym_raw_string] = ACTIONS(459), - [sym_ansi_c_string] = ACTIONS(459), - [aux_sym_number_token1] = ACTIONS(461), - [aux_sym_number_token2] = ACTIONS(463), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(465), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(467), - [anon_sym_BQUOTE] = ACTIONS(469), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(471), - [anon_sym_LT_LPAREN] = ACTIONS(473), - [anon_sym_GT_LPAREN] = ACTIONS(473), + [anon_sym_LT_AMP_DASH] = ACTIONS(443), + [anon_sym_GT_AMP_DASH] = ACTIONS(443), + [anon_sym_LT_LT_LT] = ACTIONS(445), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(449), + [anon_sym_DOLLAR] = ACTIONS(451), + [sym__special_character] = ACTIONS(453), + [anon_sym_DQUOTE] = ACTIONS(455), + [sym_raw_string] = ACTIONS(457), + [sym_ansi_c_string] = ACTIONS(457), + [aux_sym_number_token1] = ACTIONS(459), + [aux_sym_number_token2] = ACTIONS(461), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(463), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(465), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(469), + [anon_sym_LT_LPAREN] = ACTIONS(471), + [anon_sym_GT_LPAREN] = ACTIONS(471), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(475), - [sym_variable_name] = ACTIONS(477), - [sym_test_operator] = ACTIONS(479), - [sym__brace_start] = ACTIONS(481), + [sym_file_descriptor] = ACTIONS(473), + [sym_variable_name] = ACTIONS(475), + [sym_test_operator] = ACTIONS(477), + [sym__brace_start] = ACTIONS(479), }, [32] = { - [sym__statements] = STATE(6533), - [sym__statement_not_pipeline] = STATE(6584), - [sym_redirected_statement] = STATE(4349), - [sym_for_statement] = STATE(4349), - [sym_c_style_for_statement] = STATE(4349), - [sym_while_statement] = STATE(4225), - [sym_if_statement] = STATE(4225), - [sym_case_statement] = STATE(4349), - [sym_function_definition] = STATE(4349), - [sym_compound_statement] = STATE(4349), - [sym_subshell] = STATE(4349), - [sym_pipeline] = STATE(4620), - [sym_list] = STATE(4349), - [sym_negated_command] = STATE(4349), - [sym_test_command] = STATE(4349), - [sym_declaration_command] = STATE(4349), - [sym_unset_command] = STATE(4349), - [sym_command] = STATE(4349), + [sym__statements] = STATE(6497), + [sym__statement_not_pipeline] = STATE(6716), + [sym_redirected_statement] = STATE(4350), + [sym_for_statement] = STATE(4350), + [sym_c_style_for_statement] = STATE(4350), + [sym_while_statement] = STATE(4219), + [sym_if_statement] = STATE(4219), + [sym_case_statement] = STATE(4350), + [sym_function_definition] = STATE(4350), + [sym_compound_statement] = STATE(4350), + [sym_subshell] = STATE(4350), + [sym_pipeline] = STATE(4717), + [sym_list] = STATE(4350), + [sym_negated_command] = STATE(4350), + [sym_test_command] = STATE(4350), + [sym_declaration_command] = STATE(4350), + [sym_unset_command] = STATE(4350), + [sym_command] = STATE(4350), [sym_command_name] = STATE(528), - [sym_variable_assignment] = STATE(807), - [sym_variable_assignments] = STATE(4349), - [sym_subscript] = STATE(6736), - [sym_file_redirect] = STATE(1635), - [sym_herestring_redirect] = STATE(1634), - [sym_arithmetic_expansion] = STATE(815), - [sym_brace_expression] = STATE(815), - [sym_concatenation] = STATE(1082), - [sym_string] = STATE(815), - [sym_translated_string] = STATE(815), - [sym_number] = STATE(815), - [sym_simple_expansion] = STATE(815), - [sym_expansion] = STATE(815), - [sym_command_substitution] = STATE(815), - [sym_process_substitution] = STATE(815), - [aux_sym__statements_repeat1] = STATE(431), + [sym_variable_assignment] = STATE(808), + [sym_variable_assignments] = STATE(4350), + [sym_subscript] = STATE(6784), + [sym_file_redirect] = STATE(1556), + [sym_herestring_redirect] = STATE(1718), + [sym_arithmetic_expansion] = STATE(813), + [sym_brace_expression] = STATE(813), + [sym_concatenation] = STATE(1073), + [sym_string] = STATE(813), + [sym_translated_string] = STATE(813), + [sym_number] = STATE(813), + [sym_simple_expansion] = STATE(813), + [sym_expansion] = STATE(813), + [sym_command_substitution] = STATE(813), + [sym_process_substitution] = STATE(813), + [aux_sym__statements_repeat1] = STATE(429), [aux_sym_redirected_statement_repeat2] = STATE(4250), - [aux_sym_command_repeat1] = STATE(925), - [aux_sym__literal_repeat1] = STATE(926), + [aux_sym_command_repeat1] = STATE(977), + [aux_sym__literal_repeat1] = STATE(978), [sym_word] = ACTIONS(403), [anon_sym_for] = ACTIONS(405), [anon_sym_select] = ACTIONS(407), @@ -32127,90 +32428,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(417), [anon_sym_if] = ACTIONS(419), [anon_sym_case] = ACTIONS(421), - [anon_sym_esac] = ACTIONS(543), - [anon_sym_SEMI_SEMI] = ACTIONS(545), - [anon_sym_SEMI_AMP] = ACTIONS(547), + [anon_sym_esac] = ACTIONS(535), + [anon_sym_SEMI_SEMI] = ACTIONS(543), + [anon_sym_SEMI_AMP] = ACTIONS(545), [anon_sym_SEMI_SEMI_AMP] = ACTIONS(547), - [anon_sym_function] = ACTIONS(431), - [anon_sym_LBRACE] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_LBRACK_LBRACK] = ACTIONS(439), - [anon_sym_declare] = ACTIONS(441), - [anon_sym_typeset] = ACTIONS(441), - [anon_sym_export] = ACTIONS(441), - [anon_sym_readonly] = ACTIONS(441), - [anon_sym_local] = ACTIONS(441), - [anon_sym_unset] = ACTIONS(443), - [anon_sym_unsetenv] = ACTIONS(443), + [anon_sym_function] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LBRACK_LBRACK] = ACTIONS(437), + [anon_sym_declare] = ACTIONS(439), + [anon_sym_typeset] = ACTIONS(439), + [anon_sym_export] = ACTIONS(439), + [anon_sym_readonly] = ACTIONS(439), + [anon_sym_local] = ACTIONS(439), + [anon_sym_unset] = ACTIONS(441), + [anon_sym_unsetenv] = ACTIONS(441), [anon_sym_AMP_GT] = ACTIONS(411), [anon_sym_AMP_GT_GT] = ACTIONS(413), [anon_sym_LT_AMP] = ACTIONS(411), [anon_sym_GT_AMP] = ACTIONS(411), [anon_sym_GT_PIPE] = ACTIONS(413), - [anon_sym_LT_AMP_DASH] = ACTIONS(445), - [anon_sym_GT_AMP_DASH] = ACTIONS(445), - [anon_sym_LT_LT_LT] = ACTIONS(447), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(451), - [anon_sym_DOLLAR] = ACTIONS(453), - [sym__special_character] = ACTIONS(455), - [anon_sym_DQUOTE] = ACTIONS(457), - [sym_raw_string] = ACTIONS(459), - [sym_ansi_c_string] = ACTIONS(459), - [aux_sym_number_token1] = ACTIONS(461), - [aux_sym_number_token2] = ACTIONS(463), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(465), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(467), - [anon_sym_BQUOTE] = ACTIONS(469), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(471), - [anon_sym_LT_LPAREN] = ACTIONS(473), - [anon_sym_GT_LPAREN] = ACTIONS(473), + [anon_sym_LT_AMP_DASH] = ACTIONS(443), + [anon_sym_GT_AMP_DASH] = ACTIONS(443), + [anon_sym_LT_LT_LT] = ACTIONS(445), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(449), + [anon_sym_DOLLAR] = ACTIONS(451), + [sym__special_character] = ACTIONS(453), + [anon_sym_DQUOTE] = ACTIONS(455), + [sym_raw_string] = ACTIONS(457), + [sym_ansi_c_string] = ACTIONS(457), + [aux_sym_number_token1] = ACTIONS(459), + [aux_sym_number_token2] = ACTIONS(461), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(463), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(465), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(469), + [anon_sym_LT_LPAREN] = ACTIONS(471), + [anon_sym_GT_LPAREN] = ACTIONS(471), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(475), - [sym_variable_name] = ACTIONS(477), - [sym_test_operator] = ACTIONS(479), - [sym__brace_start] = ACTIONS(481), + [sym_file_descriptor] = ACTIONS(473), + [sym_variable_name] = ACTIONS(475), + [sym_test_operator] = ACTIONS(477), + [sym__brace_start] = ACTIONS(479), }, [33] = { - [sym__statements] = STATE(6521), - [sym__statement_not_pipeline] = STATE(6584), - [sym_redirected_statement] = STATE(4349), - [sym_for_statement] = STATE(4349), - [sym_c_style_for_statement] = STATE(4349), - [sym_while_statement] = STATE(4225), - [sym_if_statement] = STATE(4225), - [sym_case_statement] = STATE(4349), - [sym_function_definition] = STATE(4349), - [sym_compound_statement] = STATE(4349), - [sym_subshell] = STATE(4349), - [sym_pipeline] = STATE(4620), - [sym_list] = STATE(4349), - [sym_negated_command] = STATE(4349), - [sym_test_command] = STATE(4349), - [sym_declaration_command] = STATE(4349), - [sym_unset_command] = STATE(4349), - [sym_command] = STATE(4349), + [sym__statements] = STATE(6511), + [sym__statement_not_pipeline] = STATE(6716), + [sym_redirected_statement] = STATE(4350), + [sym_for_statement] = STATE(4350), + [sym_c_style_for_statement] = STATE(4350), + [sym_while_statement] = STATE(4219), + [sym_if_statement] = STATE(4219), + [sym_case_statement] = STATE(4350), + [sym_function_definition] = STATE(4350), + [sym_compound_statement] = STATE(4350), + [sym_subshell] = STATE(4350), + [sym_pipeline] = STATE(4717), + [sym_list] = STATE(4350), + [sym_negated_command] = STATE(4350), + [sym_test_command] = STATE(4350), + [sym_declaration_command] = STATE(4350), + [sym_unset_command] = STATE(4350), + [sym_command] = STATE(4350), [sym_command_name] = STATE(528), - [sym_variable_assignment] = STATE(807), - [sym_variable_assignments] = STATE(4349), - [sym_subscript] = STATE(6736), - [sym_file_redirect] = STATE(1635), - [sym_herestring_redirect] = STATE(1634), - [sym_arithmetic_expansion] = STATE(815), - [sym_brace_expression] = STATE(815), - [sym_concatenation] = STATE(1082), - [sym_string] = STATE(815), - [sym_translated_string] = STATE(815), - [sym_number] = STATE(815), - [sym_simple_expansion] = STATE(815), - [sym_expansion] = STATE(815), - [sym_command_substitution] = STATE(815), - [sym_process_substitution] = STATE(815), - [aux_sym__statements_repeat1] = STATE(431), + [sym_variable_assignment] = STATE(808), + [sym_variable_assignments] = STATE(4350), + [sym_subscript] = STATE(6784), + [sym_file_redirect] = STATE(1556), + [sym_herestring_redirect] = STATE(1718), + [sym_arithmetic_expansion] = STATE(813), + [sym_brace_expression] = STATE(813), + [sym_concatenation] = STATE(1073), + [sym_string] = STATE(813), + [sym_translated_string] = STATE(813), + [sym_number] = STATE(813), + [sym_simple_expansion] = STATE(813), + [sym_expansion] = STATE(813), + [sym_command_substitution] = STATE(813), + [sym_process_substitution] = STATE(813), + [aux_sym__statements_repeat1] = STATE(429), [aux_sym_redirected_statement_repeat2] = STATE(4250), - [aux_sym_command_repeat1] = STATE(925), - [aux_sym__literal_repeat1] = STATE(926), + [aux_sym_command_repeat1] = STATE(977), + [aux_sym__literal_repeat1] = STATE(978), [sym_word] = ACTIONS(403), [anon_sym_for] = ACTIONS(405), [anon_sym_select] = ACTIONS(407), @@ -32223,89 +32524,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(417), [anon_sym_if] = ACTIONS(419), [anon_sym_case] = ACTIONS(421), - [anon_sym_esac] = ACTIONS(423), + [anon_sym_esac] = ACTIONS(527), [anon_sym_SEMI_SEMI] = ACTIONS(549), [anon_sym_SEMI_AMP] = ACTIONS(551), [anon_sym_SEMI_SEMI_AMP] = ACTIONS(553), - [anon_sym_function] = ACTIONS(431), - [anon_sym_LBRACE] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_LBRACK_LBRACK] = ACTIONS(439), - [anon_sym_declare] = ACTIONS(441), - [anon_sym_typeset] = ACTIONS(441), - [anon_sym_export] = ACTIONS(441), - [anon_sym_readonly] = ACTIONS(441), - [anon_sym_local] = ACTIONS(441), - [anon_sym_unset] = ACTIONS(443), - [anon_sym_unsetenv] = ACTIONS(443), + [anon_sym_function] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LBRACK_LBRACK] = ACTIONS(437), + [anon_sym_declare] = ACTIONS(439), + [anon_sym_typeset] = ACTIONS(439), + [anon_sym_export] = ACTIONS(439), + [anon_sym_readonly] = ACTIONS(439), + [anon_sym_local] = ACTIONS(439), + [anon_sym_unset] = ACTIONS(441), + [anon_sym_unsetenv] = ACTIONS(441), [anon_sym_AMP_GT] = ACTIONS(411), [anon_sym_AMP_GT_GT] = ACTIONS(413), [anon_sym_LT_AMP] = ACTIONS(411), [anon_sym_GT_AMP] = ACTIONS(411), [anon_sym_GT_PIPE] = ACTIONS(413), - [anon_sym_LT_AMP_DASH] = ACTIONS(445), - [anon_sym_GT_AMP_DASH] = ACTIONS(445), - [anon_sym_LT_LT_LT] = ACTIONS(447), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(451), - [anon_sym_DOLLAR] = ACTIONS(453), - [sym__special_character] = ACTIONS(455), - [anon_sym_DQUOTE] = ACTIONS(457), - [sym_raw_string] = ACTIONS(459), - [sym_ansi_c_string] = ACTIONS(459), - [aux_sym_number_token1] = ACTIONS(461), - [aux_sym_number_token2] = ACTIONS(463), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(465), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(467), - [anon_sym_BQUOTE] = ACTIONS(469), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(471), - [anon_sym_LT_LPAREN] = ACTIONS(473), - [anon_sym_GT_LPAREN] = ACTIONS(473), + [anon_sym_LT_AMP_DASH] = ACTIONS(443), + [anon_sym_GT_AMP_DASH] = ACTIONS(443), + [anon_sym_LT_LT_LT] = ACTIONS(445), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(449), + [anon_sym_DOLLAR] = ACTIONS(451), + [sym__special_character] = ACTIONS(453), + [anon_sym_DQUOTE] = ACTIONS(455), + [sym_raw_string] = ACTIONS(457), + [sym_ansi_c_string] = ACTIONS(457), + [aux_sym_number_token1] = ACTIONS(459), + [aux_sym_number_token2] = ACTIONS(461), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(463), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(465), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(469), + [anon_sym_LT_LPAREN] = ACTIONS(471), + [anon_sym_GT_LPAREN] = ACTIONS(471), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(475), - [sym_variable_name] = ACTIONS(477), - [sym_test_operator] = ACTIONS(479), - [sym__brace_start] = ACTIONS(481), + [sym_file_descriptor] = ACTIONS(473), + [sym_variable_name] = ACTIONS(475), + [sym_test_operator] = ACTIONS(477), + [sym__brace_start] = ACTIONS(479), }, [34] = { [aux_sym__terminated_statement] = STATE(34), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(5007), - [sym_for_statement] = STATE(5007), - [sym_c_style_for_statement] = STATE(5007), - [sym_while_statement] = STATE(4551), - [sym_if_statement] = STATE(4551), - [sym_case_statement] = STATE(5007), - [sym_function_definition] = STATE(5007), - [sym_compound_statement] = STATE(5007), - [sym_subshell] = STATE(5007), - [sym_pipeline] = STATE(5189), - [sym_list] = STATE(5007), - [sym_negated_command] = STATE(5007), - [sym_test_command] = STATE(5007), - [sym_declaration_command] = STATE(5007), - [sym_unset_command] = STATE(5007), - [sym_command] = STATE(5007), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1151), - [sym_variable_assignments] = STATE(5007), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4945), + [sym_for_statement] = STATE(4945), + [sym_c_style_for_statement] = STATE(4945), + [sym_while_statement] = STATE(4557), + [sym_if_statement] = STATE(4557), + [sym_case_statement] = STATE(4945), + [sym_function_definition] = STATE(4945), + [sym_compound_statement] = STATE(4945), + [sym_subshell] = STATE(4945), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4945), + [sym_negated_command] = STATE(4945), + [sym_test_command] = STATE(4945), + [sym_declaration_command] = STATE(4945), + [sym_unset_command] = STATE(4945), + [sym_command] = STATE(4945), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1034), + [sym_variable_assignments] = STATE(4945), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), [sym_word] = ACTIONS(555), [anon_sym_for] = ACTIONS(558), [anon_sym_select] = ACTIONS(561), @@ -32365,44 +32666,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(662), }, [35] = { - [sym__statements] = STATE(6649), - [sym__statement_not_pipeline] = STATE(6674), - [sym_redirected_statement] = STATE(4416), - [sym_for_statement] = STATE(4416), - [sym_c_style_for_statement] = STATE(4416), - [sym_while_statement] = STATE(4239), - [sym_if_statement] = STATE(4239), - [sym_case_statement] = STATE(4416), - [sym_function_definition] = STATE(4416), - [sym_compound_statement] = STATE(4416), - [sym_subshell] = STATE(4416), - [sym_pipeline] = STATE(4910), - [sym_list] = STATE(4416), - [sym_negated_command] = STATE(4416), - [sym_test_command] = STATE(4416), - [sym_declaration_command] = STATE(4416), - [sym_unset_command] = STATE(4416), - [sym_command] = STATE(4416), - [sym_command_name] = STATE(530), - [sym_variable_assignment] = STATE(849), - [sym_variable_assignments] = STATE(4416), - [sym_subscript] = STATE(6760), - [sym_file_redirect] = STATE(1893), - [sym_herestring_redirect] = STATE(1892), - [sym_arithmetic_expansion] = STATE(852), - [sym_brace_expression] = STATE(852), - [sym_concatenation] = STATE(1169), - [sym_string] = STATE(852), - [sym_translated_string] = STATE(852), - [sym_number] = STATE(852), - [sym_simple_expansion] = STATE(852), - [sym_expansion] = STATE(852), - [sym_command_substitution] = STATE(852), - [sym_process_substitution] = STATE(852), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4371), - [aux_sym_command_repeat1] = STATE(989), - [aux_sym__literal_repeat1] = STATE(1026), + [sym__statements] = STATE(6549), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4492), + [sym_for_statement] = STATE(4492), + [sym_c_style_for_statement] = STATE(4492), + [sym_while_statement] = STATE(4252), + [sym_if_statement] = STATE(4252), + [sym_case_statement] = STATE(4492), + [sym_function_definition] = STATE(4492), + [sym_compound_statement] = STATE(4492), + [sym_subshell] = STATE(4492), + [sym_pipeline] = STATE(4964), + [sym_list] = STATE(4492), + [sym_negated_command] = STATE(4492), + [sym_test_command] = STATE(4492), + [sym_declaration_command] = STATE(4492), + [sym_unset_command] = STATE(4492), + [sym_command] = STATE(4492), + [sym_command_name] = STATE(531), + [sym_variable_assignment] = STATE(880), + [sym_variable_assignments] = STATE(4492), + [sym_subscript] = STATE(6746), + [sym_file_redirect] = STATE(1807), + [sym_herestring_redirect] = STATE(1808), + [sym_arithmetic_expansion] = STATE(859), + [sym_brace_expression] = STATE(859), + [sym_concatenation] = STATE(1231), + [sym_string] = STATE(859), + [sym_translated_string] = STATE(859), + [sym_number] = STATE(859), + [sym_simple_expansion] = STATE(859), + [sym_expansion] = STATE(859), + [sym_command_substitution] = STATE(859), + [sym_process_substitution] = STATE(859), + [aux_sym__statements_repeat1] = STATE(419), + [aux_sym_redirected_statement_repeat2] = STATE(4335), + [aux_sym_command_repeat1] = STATE(992), + [aux_sym__literal_repeat1] = STATE(1127), [sym_word] = ACTIONS(665), [anon_sym_for] = ACTIONS(667), [anon_sym_select] = ACTIONS(669), @@ -32416,8 +32717,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(681), [anon_sym_case] = ACTIONS(683), [anon_sym_SEMI_SEMI] = ACTIONS(685), - [anon_sym_SEMI_AMP] = ACTIONS(535), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(535), + [anon_sym_SEMI_AMP] = ACTIONS(511), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(513), [anon_sym_function] = ACTIONS(687), [anon_sym_LBRACE] = ACTIONS(689), [anon_sym_BANG] = ACTIONS(691), @@ -32460,44 +32761,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(737), }, [36] = { - [sym__statements] = STATE(6620), - [sym__statement_not_pipeline] = STATE(6674), - [sym_redirected_statement] = STATE(4416), - [sym_for_statement] = STATE(4416), - [sym_c_style_for_statement] = STATE(4416), - [sym_while_statement] = STATE(4239), - [sym_if_statement] = STATE(4239), - [sym_case_statement] = STATE(4416), - [sym_function_definition] = STATE(4416), - [sym_compound_statement] = STATE(4416), - [sym_subshell] = STATE(4416), - [sym_pipeline] = STATE(4910), - [sym_list] = STATE(4416), - [sym_negated_command] = STATE(4416), - [sym_test_command] = STATE(4416), - [sym_declaration_command] = STATE(4416), - [sym_unset_command] = STATE(4416), - [sym_command] = STATE(4416), - [sym_command_name] = STATE(530), - [sym_variable_assignment] = STATE(849), - [sym_variable_assignments] = STATE(4416), - [sym_subscript] = STATE(6760), - [sym_file_redirect] = STATE(1893), - [sym_herestring_redirect] = STATE(1892), - [sym_arithmetic_expansion] = STATE(852), - [sym_brace_expression] = STATE(852), - [sym_concatenation] = STATE(1169), - [sym_string] = STATE(852), - [sym_translated_string] = STATE(852), - [sym_number] = STATE(852), - [sym_simple_expansion] = STATE(852), - [sym_expansion] = STATE(852), - [sym_command_substitution] = STATE(852), - [sym_process_substitution] = STATE(852), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4371), - [aux_sym_command_repeat1] = STATE(989), - [aux_sym__literal_repeat1] = STATE(1026), + [sym__statements] = STATE(6596), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4492), + [sym_for_statement] = STATE(4492), + [sym_c_style_for_statement] = STATE(4492), + [sym_while_statement] = STATE(4252), + [sym_if_statement] = STATE(4252), + [sym_case_statement] = STATE(4492), + [sym_function_definition] = STATE(4492), + [sym_compound_statement] = STATE(4492), + [sym_subshell] = STATE(4492), + [sym_pipeline] = STATE(4964), + [sym_list] = STATE(4492), + [sym_negated_command] = STATE(4492), + [sym_test_command] = STATE(4492), + [sym_declaration_command] = STATE(4492), + [sym_unset_command] = STATE(4492), + [sym_command] = STATE(4492), + [sym_command_name] = STATE(531), + [sym_variable_assignment] = STATE(880), + [sym_variable_assignments] = STATE(4492), + [sym_subscript] = STATE(6746), + [sym_file_redirect] = STATE(1807), + [sym_herestring_redirect] = STATE(1808), + [sym_arithmetic_expansion] = STATE(859), + [sym_brace_expression] = STATE(859), + [sym_concatenation] = STATE(1231), + [sym_string] = STATE(859), + [sym_translated_string] = STATE(859), + [sym_number] = STATE(859), + [sym_simple_expansion] = STATE(859), + [sym_expansion] = STATE(859), + [sym_command_substitution] = STATE(859), + [sym_process_substitution] = STATE(859), + [aux_sym__statements_repeat1] = STATE(419), + [aux_sym_redirected_statement_repeat2] = STATE(4335), + [aux_sym_command_repeat1] = STATE(992), + [aux_sym__literal_repeat1] = STATE(1127), [sym_word] = ACTIONS(665), [anon_sym_for] = ACTIONS(667), [anon_sym_select] = ACTIONS(669), @@ -32511,8 +32812,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(681), [anon_sym_case] = ACTIONS(683), [anon_sym_SEMI_SEMI] = ACTIONS(739), - [anon_sym_SEMI_AMP] = ACTIONS(499), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(501), + [anon_sym_SEMI_AMP] = ACTIONS(485), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(485), [anon_sym_function] = ACTIONS(687), [anon_sym_LBRACE] = ACTIONS(689), [anon_sym_BANG] = ACTIONS(691), @@ -32555,44 +32856,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(737), }, [37] = { - [sym__statements] = STATE(6722), - [sym__statement_not_pipeline] = STATE(6674), - [sym_redirected_statement] = STATE(4416), - [sym_for_statement] = STATE(4416), - [sym_c_style_for_statement] = STATE(4416), - [sym_while_statement] = STATE(4239), - [sym_if_statement] = STATE(4239), - [sym_case_statement] = STATE(4416), - [sym_function_definition] = STATE(4416), - [sym_compound_statement] = STATE(4416), - [sym_subshell] = STATE(4416), - [sym_pipeline] = STATE(4910), - [sym_list] = STATE(4416), - [sym_negated_command] = STATE(4416), - [sym_test_command] = STATE(4416), - [sym_declaration_command] = STATE(4416), - [sym_unset_command] = STATE(4416), - [sym_command] = STATE(4416), - [sym_command_name] = STATE(530), - [sym_variable_assignment] = STATE(849), - [sym_variable_assignments] = STATE(4416), - [sym_subscript] = STATE(6760), - [sym_file_redirect] = STATE(1893), - [sym_herestring_redirect] = STATE(1892), - [sym_arithmetic_expansion] = STATE(852), - [sym_brace_expression] = STATE(852), - [sym_concatenation] = STATE(1169), - [sym_string] = STATE(852), - [sym_translated_string] = STATE(852), - [sym_number] = STATE(852), - [sym_simple_expansion] = STATE(852), - [sym_expansion] = STATE(852), - [sym_command_substitution] = STATE(852), - [sym_process_substitution] = STATE(852), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4371), - [aux_sym_command_repeat1] = STATE(989), - [aux_sym__literal_repeat1] = STATE(1026), + [sym__statements] = STATE(6715), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4492), + [sym_for_statement] = STATE(4492), + [sym_c_style_for_statement] = STATE(4492), + [sym_while_statement] = STATE(4252), + [sym_if_statement] = STATE(4252), + [sym_case_statement] = STATE(4492), + [sym_function_definition] = STATE(4492), + [sym_compound_statement] = STATE(4492), + [sym_subshell] = STATE(4492), + [sym_pipeline] = STATE(4964), + [sym_list] = STATE(4492), + [sym_negated_command] = STATE(4492), + [sym_test_command] = STATE(4492), + [sym_declaration_command] = STATE(4492), + [sym_unset_command] = STATE(4492), + [sym_command] = STATE(4492), + [sym_command_name] = STATE(531), + [sym_variable_assignment] = STATE(880), + [sym_variable_assignments] = STATE(4492), + [sym_subscript] = STATE(6746), + [sym_file_redirect] = STATE(1807), + [sym_herestring_redirect] = STATE(1808), + [sym_arithmetic_expansion] = STATE(859), + [sym_brace_expression] = STATE(859), + [sym_concatenation] = STATE(1231), + [sym_string] = STATE(859), + [sym_translated_string] = STATE(859), + [sym_number] = STATE(859), + [sym_simple_expansion] = STATE(859), + [sym_expansion] = STATE(859), + [sym_command_substitution] = STATE(859), + [sym_process_substitution] = STATE(859), + [aux_sym__statements_repeat1] = STATE(419), + [aux_sym_redirected_statement_repeat2] = STATE(4335), + [aux_sym_command_repeat1] = STATE(992), + [aux_sym__literal_repeat1] = STATE(1127), [sym_word] = ACTIONS(665), [anon_sym_for] = ACTIONS(667), [anon_sym_select] = ACTIONS(669), @@ -32606,8 +32907,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(681), [anon_sym_case] = ACTIONS(683), [anon_sym_SEMI_SEMI] = ACTIONS(741), - [anon_sym_SEMI_AMP] = ACTIONS(515), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(517), + [anon_sym_SEMI_AMP] = ACTIONS(499), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(499), [anon_sym_function] = ACTIONS(687), [anon_sym_LBRACE] = ACTIONS(689), [anon_sym_BANG] = ACTIONS(691), @@ -32650,44 +32951,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(737), }, [38] = { - [sym__statements] = STATE(6719), - [sym__statement_not_pipeline] = STATE(6674), - [sym_redirected_statement] = STATE(4416), - [sym_for_statement] = STATE(4416), - [sym_c_style_for_statement] = STATE(4416), - [sym_while_statement] = STATE(4239), - [sym_if_statement] = STATE(4239), - [sym_case_statement] = STATE(4416), - [sym_function_definition] = STATE(4416), - [sym_compound_statement] = STATE(4416), - [sym_subshell] = STATE(4416), - [sym_pipeline] = STATE(4910), - [sym_list] = STATE(4416), - [sym_negated_command] = STATE(4416), - [sym_test_command] = STATE(4416), - [sym_declaration_command] = STATE(4416), - [sym_unset_command] = STATE(4416), - [sym_command] = STATE(4416), - [sym_command_name] = STATE(530), - [sym_variable_assignment] = STATE(849), - [sym_variable_assignments] = STATE(4416), - [sym_subscript] = STATE(6760), - [sym_file_redirect] = STATE(1893), - [sym_herestring_redirect] = STATE(1892), - [sym_arithmetic_expansion] = STATE(852), - [sym_brace_expression] = STATE(852), - [sym_concatenation] = STATE(1169), - [sym_string] = STATE(852), - [sym_translated_string] = STATE(852), - [sym_number] = STATE(852), - [sym_simple_expansion] = STATE(852), - [sym_expansion] = STATE(852), - [sym_command_substitution] = STATE(852), - [sym_process_substitution] = STATE(852), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4371), - [aux_sym_command_repeat1] = STATE(989), - [aux_sym__literal_repeat1] = STATE(1026), + [sym__statements] = STATE(6563), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4492), + [sym_for_statement] = STATE(4492), + [sym_c_style_for_statement] = STATE(4492), + [sym_while_statement] = STATE(4252), + [sym_if_statement] = STATE(4252), + [sym_case_statement] = STATE(4492), + [sym_function_definition] = STATE(4492), + [sym_compound_statement] = STATE(4492), + [sym_subshell] = STATE(4492), + [sym_pipeline] = STATE(4964), + [sym_list] = STATE(4492), + [sym_negated_command] = STATE(4492), + [sym_test_command] = STATE(4492), + [sym_declaration_command] = STATE(4492), + [sym_unset_command] = STATE(4492), + [sym_command] = STATE(4492), + [sym_command_name] = STATE(531), + [sym_variable_assignment] = STATE(880), + [sym_variable_assignments] = STATE(4492), + [sym_subscript] = STATE(6746), + [sym_file_redirect] = STATE(1807), + [sym_herestring_redirect] = STATE(1808), + [sym_arithmetic_expansion] = STATE(859), + [sym_brace_expression] = STATE(859), + [sym_concatenation] = STATE(1231), + [sym_string] = STATE(859), + [sym_translated_string] = STATE(859), + [sym_number] = STATE(859), + [sym_simple_expansion] = STATE(859), + [sym_expansion] = STATE(859), + [sym_command_substitution] = STATE(859), + [sym_process_substitution] = STATE(859), + [aux_sym__statements_repeat1] = STATE(419), + [aux_sym_redirected_statement_repeat2] = STATE(4335), + [aux_sym_command_repeat1] = STATE(992), + [aux_sym__literal_repeat1] = STATE(1127), [sym_word] = ACTIONS(665), [anon_sym_for] = ACTIONS(667), [anon_sym_select] = ACTIONS(669), @@ -32702,7 +33003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(683), [anon_sym_SEMI_SEMI] = ACTIONS(743), [anon_sym_SEMI_AMP] = ACTIONS(427), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(429), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(427), [anon_sym_function] = ACTIONS(687), [anon_sym_LBRACE] = ACTIONS(689), [anon_sym_BANG] = ACTIONS(691), @@ -32745,44 +33046,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(737), }, [39] = { - [sym__statements] = STATE(6716), - [sym__statement_not_pipeline] = STATE(6674), - [sym_redirected_statement] = STATE(4416), - [sym_for_statement] = STATE(4416), - [sym_c_style_for_statement] = STATE(4416), - [sym_while_statement] = STATE(4239), - [sym_if_statement] = STATE(4239), - [sym_case_statement] = STATE(4416), - [sym_function_definition] = STATE(4416), - [sym_compound_statement] = STATE(4416), - [sym_subshell] = STATE(4416), - [sym_pipeline] = STATE(4910), - [sym_list] = STATE(4416), - [sym_negated_command] = STATE(4416), - [sym_test_command] = STATE(4416), - [sym_declaration_command] = STATE(4416), - [sym_unset_command] = STATE(4416), - [sym_command] = STATE(4416), - [sym_command_name] = STATE(530), - [sym_variable_assignment] = STATE(849), - [sym_variable_assignments] = STATE(4416), - [sym_subscript] = STATE(6760), - [sym_file_redirect] = STATE(1893), - [sym_herestring_redirect] = STATE(1892), - [sym_arithmetic_expansion] = STATE(852), - [sym_brace_expression] = STATE(852), - [sym_concatenation] = STATE(1169), - [sym_string] = STATE(852), - [sym_translated_string] = STATE(852), - [sym_number] = STATE(852), - [sym_simple_expansion] = STATE(852), - [sym_expansion] = STATE(852), - [sym_command_substitution] = STATE(852), - [sym_process_substitution] = STATE(852), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4371), - [aux_sym_command_repeat1] = STATE(989), - [aux_sym__literal_repeat1] = STATE(1026), + [sym__statements] = STATE(6704), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4492), + [sym_for_statement] = STATE(4492), + [sym_c_style_for_statement] = STATE(4492), + [sym_while_statement] = STATE(4252), + [sym_if_statement] = STATE(4252), + [sym_case_statement] = STATE(4492), + [sym_function_definition] = STATE(4492), + [sym_compound_statement] = STATE(4492), + [sym_subshell] = STATE(4492), + [sym_pipeline] = STATE(4964), + [sym_list] = STATE(4492), + [sym_negated_command] = STATE(4492), + [sym_test_command] = STATE(4492), + [sym_declaration_command] = STATE(4492), + [sym_unset_command] = STATE(4492), + [sym_command] = STATE(4492), + [sym_command_name] = STATE(531), + [sym_variable_assignment] = STATE(880), + [sym_variable_assignments] = STATE(4492), + [sym_subscript] = STATE(6746), + [sym_file_redirect] = STATE(1807), + [sym_herestring_redirect] = STATE(1808), + [sym_arithmetic_expansion] = STATE(859), + [sym_brace_expression] = STATE(859), + [sym_concatenation] = STATE(1231), + [sym_string] = STATE(859), + [sym_translated_string] = STATE(859), + [sym_number] = STATE(859), + [sym_simple_expansion] = STATE(859), + [sym_expansion] = STATE(859), + [sym_command_substitution] = STATE(859), + [sym_process_substitution] = STATE(859), + [aux_sym__statements_repeat1] = STATE(419), + [aux_sym_redirected_statement_repeat2] = STATE(4335), + [aux_sym_command_repeat1] = STATE(992), + [aux_sym__literal_repeat1] = STATE(1127), [sym_word] = ACTIONS(665), [anon_sym_for] = ACTIONS(667), [anon_sym_select] = ACTIONS(669), @@ -32796,8 +33097,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(681), [anon_sym_case] = ACTIONS(683), [anon_sym_SEMI_SEMI] = ACTIONS(745), - [anon_sym_SEMI_AMP] = ACTIONS(551), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(553), + [anon_sym_SEMI_AMP] = ACTIONS(491), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(493), [anon_sym_function] = ACTIONS(687), [anon_sym_LBRACE] = ACTIONS(689), [anon_sym_BANG] = ACTIONS(691), @@ -32840,44 +33141,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(737), }, [40] = { - [sym__statements] = STATE(6700), - [sym__statement_not_pipeline] = STATE(6674), - [sym_redirected_statement] = STATE(4416), - [sym_for_statement] = STATE(4416), - [sym_c_style_for_statement] = STATE(4416), - [sym_while_statement] = STATE(4239), - [sym_if_statement] = STATE(4239), - [sym_case_statement] = STATE(4416), - [sym_function_definition] = STATE(4416), - [sym_compound_statement] = STATE(4416), - [sym_subshell] = STATE(4416), - [sym_pipeline] = STATE(4910), - [sym_list] = STATE(4416), - [sym_negated_command] = STATE(4416), - [sym_test_command] = STATE(4416), - [sym_declaration_command] = STATE(4416), - [sym_unset_command] = STATE(4416), - [sym_command] = STATE(4416), - [sym_command_name] = STATE(530), - [sym_variable_assignment] = STATE(849), - [sym_variable_assignments] = STATE(4416), - [sym_subscript] = STATE(6760), - [sym_file_redirect] = STATE(1893), - [sym_herestring_redirect] = STATE(1892), - [sym_arithmetic_expansion] = STATE(852), - [sym_brace_expression] = STATE(852), - [sym_concatenation] = STATE(1169), - [sym_string] = STATE(852), - [sym_translated_string] = STATE(852), - [sym_number] = STATE(852), - [sym_simple_expansion] = STATE(852), - [sym_expansion] = STATE(852), - [sym_command_substitution] = STATE(852), - [sym_process_substitution] = STATE(852), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4371), - [aux_sym_command_repeat1] = STATE(989), - [aux_sym__literal_repeat1] = STATE(1026), + [sym__statements] = STATE(6722), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4492), + [sym_for_statement] = STATE(4492), + [sym_c_style_for_statement] = STATE(4492), + [sym_while_statement] = STATE(4252), + [sym_if_statement] = STATE(4252), + [sym_case_statement] = STATE(4492), + [sym_function_definition] = STATE(4492), + [sym_compound_statement] = STATE(4492), + [sym_subshell] = STATE(4492), + [sym_pipeline] = STATE(4964), + [sym_list] = STATE(4492), + [sym_negated_command] = STATE(4492), + [sym_test_command] = STATE(4492), + [sym_declaration_command] = STATE(4492), + [sym_unset_command] = STATE(4492), + [sym_command] = STATE(4492), + [sym_command_name] = STATE(531), + [sym_variable_assignment] = STATE(880), + [sym_variable_assignments] = STATE(4492), + [sym_subscript] = STATE(6746), + [sym_file_redirect] = STATE(1807), + [sym_herestring_redirect] = STATE(1808), + [sym_arithmetic_expansion] = STATE(859), + [sym_brace_expression] = STATE(859), + [sym_concatenation] = STATE(1231), + [sym_string] = STATE(859), + [sym_translated_string] = STATE(859), + [sym_number] = STATE(859), + [sym_simple_expansion] = STATE(859), + [sym_expansion] = STATE(859), + [sym_command_substitution] = STATE(859), + [sym_process_substitution] = STATE(859), + [aux_sym__statements_repeat1] = STATE(419), + [aux_sym_redirected_statement_repeat2] = STATE(4335), + [aux_sym_command_repeat1] = STATE(992), + [aux_sym__literal_repeat1] = STATE(1127), [sym_word] = ACTIONS(665), [anon_sym_for] = ACTIONS(667), [anon_sym_select] = ACTIONS(669), @@ -32891,8 +33192,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(681), [anon_sym_case] = ACTIONS(683), [anon_sym_SEMI_SEMI] = ACTIONS(747), - [anon_sym_SEMI_AMP] = ACTIONS(521), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(523), + [anon_sym_SEMI_AMP] = ACTIONS(505), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(505), [anon_sym_function] = ACTIONS(687), [anon_sym_LBRACE] = ACTIONS(689), [anon_sym_BANG] = ACTIONS(691), @@ -32935,44 +33236,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(737), }, [41] = { - [sym__statements] = STATE(6611), - [sym__statement_not_pipeline] = STATE(6674), - [sym_redirected_statement] = STATE(4416), - [sym_for_statement] = STATE(4416), - [sym_c_style_for_statement] = STATE(4416), - [sym_while_statement] = STATE(4239), - [sym_if_statement] = STATE(4239), - [sym_case_statement] = STATE(4416), - [sym_function_definition] = STATE(4416), - [sym_compound_statement] = STATE(4416), - [sym_subshell] = STATE(4416), - [sym_pipeline] = STATE(4910), - [sym_list] = STATE(4416), - [sym_negated_command] = STATE(4416), - [sym_test_command] = STATE(4416), - [sym_declaration_command] = STATE(4416), - [sym_unset_command] = STATE(4416), - [sym_command] = STATE(4416), - [sym_command_name] = STATE(530), - [sym_variable_assignment] = STATE(849), - [sym_variable_assignments] = STATE(4416), - [sym_subscript] = STATE(6760), - [sym_file_redirect] = STATE(1893), - [sym_herestring_redirect] = STATE(1892), - [sym_arithmetic_expansion] = STATE(852), - [sym_brace_expression] = STATE(852), - [sym_concatenation] = STATE(1169), - [sym_string] = STATE(852), - [sym_translated_string] = STATE(852), - [sym_number] = STATE(852), - [sym_simple_expansion] = STATE(852), - [sym_expansion] = STATE(852), - [sym_command_substitution] = STATE(852), - [sym_process_substitution] = STATE(852), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4371), - [aux_sym_command_repeat1] = STATE(989), - [aux_sym__literal_repeat1] = STATE(1026), + [sym__statements] = STATE(6552), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4492), + [sym_for_statement] = STATE(4492), + [sym_c_style_for_statement] = STATE(4492), + [sym_while_statement] = STATE(4252), + [sym_if_statement] = STATE(4252), + [sym_case_statement] = STATE(4492), + [sym_function_definition] = STATE(4492), + [sym_compound_statement] = STATE(4492), + [sym_subshell] = STATE(4492), + [sym_pipeline] = STATE(4964), + [sym_list] = STATE(4492), + [sym_negated_command] = STATE(4492), + [sym_test_command] = STATE(4492), + [sym_declaration_command] = STATE(4492), + [sym_unset_command] = STATE(4492), + [sym_command] = STATE(4492), + [sym_command_name] = STATE(531), + [sym_variable_assignment] = STATE(880), + [sym_variable_assignments] = STATE(4492), + [sym_subscript] = STATE(6746), + [sym_file_redirect] = STATE(1807), + [sym_herestring_redirect] = STATE(1808), + [sym_arithmetic_expansion] = STATE(859), + [sym_brace_expression] = STATE(859), + [sym_concatenation] = STATE(1231), + [sym_string] = STATE(859), + [sym_translated_string] = STATE(859), + [sym_number] = STATE(859), + [sym_simple_expansion] = STATE(859), + [sym_expansion] = STATE(859), + [sym_command_substitution] = STATE(859), + [sym_process_substitution] = STATE(859), + [aux_sym__statements_repeat1] = STATE(419), + [aux_sym_redirected_statement_repeat2] = STATE(4335), + [aux_sym_command_repeat1] = STATE(992), + [aux_sym__literal_repeat1] = STATE(1127), [sym_word] = ACTIONS(665), [anon_sym_for] = ACTIONS(667), [anon_sym_select] = ACTIONS(669), @@ -32986,8 +33287,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(681), [anon_sym_case] = ACTIONS(683), [anon_sym_SEMI_SEMI] = ACTIONS(749), - [anon_sym_SEMI_AMP] = ACTIONS(487), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(487), + [anon_sym_SEMI_AMP] = ACTIONS(517), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(519), [anon_sym_function] = ACTIONS(687), [anon_sym_LBRACE] = ACTIONS(689), [anon_sym_BANG] = ACTIONS(691), @@ -33030,44 +33331,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(737), }, [42] = { - [sym__statements] = STATE(6672), - [sym__statement_not_pipeline] = STATE(6674), - [sym_redirected_statement] = STATE(4416), - [sym_for_statement] = STATE(4416), - [sym_c_style_for_statement] = STATE(4416), - [sym_while_statement] = STATE(4239), - [sym_if_statement] = STATE(4239), - [sym_case_statement] = STATE(4416), - [sym_function_definition] = STATE(4416), - [sym_compound_statement] = STATE(4416), - [sym_subshell] = STATE(4416), - [sym_pipeline] = STATE(4910), - [sym_list] = STATE(4416), - [sym_negated_command] = STATE(4416), - [sym_test_command] = STATE(4416), - [sym_declaration_command] = STATE(4416), - [sym_unset_command] = STATE(4416), - [sym_command] = STATE(4416), - [sym_command_name] = STATE(530), - [sym_variable_assignment] = STATE(849), - [sym_variable_assignments] = STATE(4416), - [sym_subscript] = STATE(6760), - [sym_file_redirect] = STATE(1893), - [sym_herestring_redirect] = STATE(1892), - [sym_arithmetic_expansion] = STATE(852), - [sym_brace_expression] = STATE(852), - [sym_concatenation] = STATE(1169), - [sym_string] = STATE(852), - [sym_translated_string] = STATE(852), - [sym_number] = STATE(852), - [sym_simple_expansion] = STATE(852), - [sym_expansion] = STATE(852), - [sym_command_substitution] = STATE(852), - [sym_process_substitution] = STATE(852), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4371), - [aux_sym_command_repeat1] = STATE(989), - [aux_sym__literal_repeat1] = STATE(1026), + [sym__statements] = STATE(6574), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4492), + [sym_for_statement] = STATE(4492), + [sym_c_style_for_statement] = STATE(4492), + [sym_while_statement] = STATE(4252), + [sym_if_statement] = STATE(4252), + [sym_case_statement] = STATE(4492), + [sym_function_definition] = STATE(4492), + [sym_compound_statement] = STATE(4492), + [sym_subshell] = STATE(4492), + [sym_pipeline] = STATE(4964), + [sym_list] = STATE(4492), + [sym_negated_command] = STATE(4492), + [sym_test_command] = STATE(4492), + [sym_declaration_command] = STATE(4492), + [sym_unset_command] = STATE(4492), + [sym_command] = STATE(4492), + [sym_command_name] = STATE(531), + [sym_variable_assignment] = STATE(880), + [sym_variable_assignments] = STATE(4492), + [sym_subscript] = STATE(6746), + [sym_file_redirect] = STATE(1807), + [sym_herestring_redirect] = STATE(1808), + [sym_arithmetic_expansion] = STATE(859), + [sym_brace_expression] = STATE(859), + [sym_concatenation] = STATE(1231), + [sym_string] = STATE(859), + [sym_translated_string] = STATE(859), + [sym_number] = STATE(859), + [sym_simple_expansion] = STATE(859), + [sym_expansion] = STATE(859), + [sym_command_substitution] = STATE(859), + [sym_process_substitution] = STATE(859), + [aux_sym__statements_repeat1] = STATE(419), + [aux_sym_redirected_statement_repeat2] = STATE(4335), + [aux_sym_command_repeat1] = STATE(992), + [aux_sym__literal_repeat1] = STATE(1127), [sym_word] = ACTIONS(665), [anon_sym_for] = ACTIONS(667), [anon_sym_select] = ACTIONS(669), @@ -33081,7 +33382,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(681), [anon_sym_case] = ACTIONS(683), [anon_sym_SEMI_SEMI] = ACTIONS(751), - [anon_sym_SEMI_AMP] = ACTIONS(547), + [anon_sym_SEMI_AMP] = ACTIONS(545), [anon_sym_SEMI_SEMI_AMP] = ACTIONS(547), [anon_sym_function] = ACTIONS(687), [anon_sym_LBRACE] = ACTIONS(689), @@ -33125,44 +33426,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(737), }, [43] = { - [sym__statements] = STATE(6667), - [sym__statement_not_pipeline] = STATE(6674), - [sym_redirected_statement] = STATE(4416), - [sym_for_statement] = STATE(4416), - [sym_c_style_for_statement] = STATE(4416), - [sym_while_statement] = STATE(4239), - [sym_if_statement] = STATE(4239), - [sym_case_statement] = STATE(4416), - [sym_function_definition] = STATE(4416), - [sym_compound_statement] = STATE(4416), - [sym_subshell] = STATE(4416), - [sym_pipeline] = STATE(4910), - [sym_list] = STATE(4416), - [sym_negated_command] = STATE(4416), - [sym_test_command] = STATE(4416), - [sym_declaration_command] = STATE(4416), - [sym_unset_command] = STATE(4416), - [sym_command] = STATE(4416), - [sym_command_name] = STATE(530), - [sym_variable_assignment] = STATE(849), - [sym_variable_assignments] = STATE(4416), - [sym_subscript] = STATE(6760), - [sym_file_redirect] = STATE(1893), - [sym_herestring_redirect] = STATE(1892), - [sym_arithmetic_expansion] = STATE(852), - [sym_brace_expression] = STATE(852), - [sym_concatenation] = STATE(1169), - [sym_string] = STATE(852), - [sym_translated_string] = STATE(852), - [sym_number] = STATE(852), - [sym_simple_expansion] = STATE(852), - [sym_expansion] = STATE(852), - [sym_command_substitution] = STATE(852), - [sym_process_substitution] = STATE(852), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4371), - [aux_sym_command_repeat1] = STATE(989), - [aux_sym__literal_repeat1] = STATE(1026), + [sym__statements] = STATE(6554), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4492), + [sym_for_statement] = STATE(4492), + [sym_c_style_for_statement] = STATE(4492), + [sym_while_statement] = STATE(4252), + [sym_if_statement] = STATE(4252), + [sym_case_statement] = STATE(4492), + [sym_function_definition] = STATE(4492), + [sym_compound_statement] = STATE(4492), + [sym_subshell] = STATE(4492), + [sym_pipeline] = STATE(4964), + [sym_list] = STATE(4492), + [sym_negated_command] = STATE(4492), + [sym_test_command] = STATE(4492), + [sym_declaration_command] = STATE(4492), + [sym_unset_command] = STATE(4492), + [sym_command] = STATE(4492), + [sym_command_name] = STATE(531), + [sym_variable_assignment] = STATE(880), + [sym_variable_assignments] = STATE(4492), + [sym_subscript] = STATE(6746), + [sym_file_redirect] = STATE(1807), + [sym_herestring_redirect] = STATE(1808), + [sym_arithmetic_expansion] = STATE(859), + [sym_brace_expression] = STATE(859), + [sym_concatenation] = STATE(1231), + [sym_string] = STATE(859), + [sym_translated_string] = STATE(859), + [sym_number] = STATE(859), + [sym_simple_expansion] = STATE(859), + [sym_expansion] = STATE(859), + [sym_command_substitution] = STATE(859), + [sym_process_substitution] = STATE(859), + [aux_sym__statements_repeat1] = STATE(419), + [aux_sym_redirected_statement_repeat2] = STATE(4335), + [aux_sym_command_repeat1] = STATE(992), + [aux_sym__literal_repeat1] = STATE(1127), [sym_word] = ACTIONS(665), [anon_sym_for] = ACTIONS(667), [anon_sym_select] = ACTIONS(669), @@ -33176,8 +33477,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(681), [anon_sym_case] = ACTIONS(683), [anon_sym_SEMI_SEMI] = ACTIONS(753), - [anon_sym_SEMI_AMP] = ACTIONS(493), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(495), + [anon_sym_SEMI_AMP] = ACTIONS(523), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(525), [anon_sym_function] = ACTIONS(687), [anon_sym_LBRACE] = ACTIONS(689), [anon_sym_BANG] = ACTIONS(691), @@ -33220,44 +33521,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(737), }, [44] = { - [sym__statements] = STATE(6637), - [sym__statement_not_pipeline] = STATE(6674), - [sym_redirected_statement] = STATE(4416), - [sym_for_statement] = STATE(4416), - [sym_c_style_for_statement] = STATE(4416), - [sym_while_statement] = STATE(4239), - [sym_if_statement] = STATE(4239), - [sym_case_statement] = STATE(4416), - [sym_function_definition] = STATE(4416), - [sym_compound_statement] = STATE(4416), - [sym_subshell] = STATE(4416), - [sym_pipeline] = STATE(4910), - [sym_list] = STATE(4416), - [sym_negated_command] = STATE(4416), - [sym_test_command] = STATE(4416), - [sym_declaration_command] = STATE(4416), - [sym_unset_command] = STATE(4416), - [sym_command] = STATE(4416), - [sym_command_name] = STATE(530), - [sym_variable_assignment] = STATE(849), - [sym_variable_assignments] = STATE(4416), - [sym_subscript] = STATE(6760), - [sym_file_redirect] = STATE(1893), - [sym_herestring_redirect] = STATE(1892), - [sym_arithmetic_expansion] = STATE(852), - [sym_brace_expression] = STATE(852), - [sym_concatenation] = STATE(1169), - [sym_string] = STATE(852), - [sym_translated_string] = STATE(852), - [sym_number] = STATE(852), - [sym_simple_expansion] = STATE(852), - [sym_expansion] = STATE(852), - [sym_command_substitution] = STATE(852), - [sym_process_substitution] = STATE(852), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4371), - [aux_sym_command_repeat1] = STATE(989), - [aux_sym__literal_repeat1] = STATE(1026), + [sym__statements] = STATE(6569), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4492), + [sym_for_statement] = STATE(4492), + [sym_c_style_for_statement] = STATE(4492), + [sym_while_statement] = STATE(4252), + [sym_if_statement] = STATE(4252), + [sym_case_statement] = STATE(4492), + [sym_function_definition] = STATE(4492), + [sym_compound_statement] = STATE(4492), + [sym_subshell] = STATE(4492), + [sym_pipeline] = STATE(4964), + [sym_list] = STATE(4492), + [sym_negated_command] = STATE(4492), + [sym_test_command] = STATE(4492), + [sym_declaration_command] = STATE(4492), + [sym_unset_command] = STATE(4492), + [sym_command] = STATE(4492), + [sym_command_name] = STATE(531), + [sym_variable_assignment] = STATE(880), + [sym_variable_assignments] = STATE(4492), + [sym_subscript] = STATE(6746), + [sym_file_redirect] = STATE(1807), + [sym_herestring_redirect] = STATE(1808), + [sym_arithmetic_expansion] = STATE(859), + [sym_brace_expression] = STATE(859), + [sym_concatenation] = STATE(1231), + [sym_string] = STATE(859), + [sym_translated_string] = STATE(859), + [sym_number] = STATE(859), + [sym_simple_expansion] = STATE(859), + [sym_expansion] = STATE(859), + [sym_command_substitution] = STATE(859), + [sym_process_substitution] = STATE(859), + [aux_sym__statements_repeat1] = STATE(419), + [aux_sym_redirected_statement_repeat2] = STATE(4335), + [aux_sym_command_repeat1] = STATE(992), + [aux_sym__literal_repeat1] = STATE(1127), [sym_word] = ACTIONS(665), [anon_sym_for] = ACTIONS(667), [anon_sym_select] = ACTIONS(669), @@ -33271,8 +33572,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(681), [anon_sym_case] = ACTIONS(683), [anon_sym_SEMI_SEMI] = ACTIONS(755), - [anon_sym_SEMI_AMP] = ACTIONS(507), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(509), + [anon_sym_SEMI_AMP] = ACTIONS(531), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(533), [anon_sym_function] = ACTIONS(687), [anon_sym_LBRACE] = ACTIONS(689), [anon_sym_BANG] = ACTIONS(691), @@ -33315,44 +33616,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(737), }, [45] = { - [sym__statements] = STATE(6666), - [sym__statement_not_pipeline] = STATE(6674), - [sym_redirected_statement] = STATE(4416), - [sym_for_statement] = STATE(4416), - [sym_c_style_for_statement] = STATE(4416), - [sym_while_statement] = STATE(4239), - [sym_if_statement] = STATE(4239), - [sym_case_statement] = STATE(4416), - [sym_function_definition] = STATE(4416), - [sym_compound_statement] = STATE(4416), - [sym_subshell] = STATE(4416), - [sym_pipeline] = STATE(4910), - [sym_list] = STATE(4416), - [sym_negated_command] = STATE(4416), - [sym_test_command] = STATE(4416), - [sym_declaration_command] = STATE(4416), - [sym_unset_command] = STATE(4416), - [sym_command] = STATE(4416), - [sym_command_name] = STATE(530), - [sym_variable_assignment] = STATE(849), - [sym_variable_assignments] = STATE(4416), - [sym_subscript] = STATE(6760), - [sym_file_redirect] = STATE(1893), - [sym_herestring_redirect] = STATE(1892), - [sym_arithmetic_expansion] = STATE(852), - [sym_brace_expression] = STATE(852), - [sym_concatenation] = STATE(1169), - [sym_string] = STATE(852), - [sym_translated_string] = STATE(852), - [sym_number] = STATE(852), - [sym_simple_expansion] = STATE(852), - [sym_expansion] = STATE(852), - [sym_command_substitution] = STATE(852), - [sym_process_substitution] = STATE(852), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4371), - [aux_sym_command_repeat1] = STATE(989), - [aux_sym__literal_repeat1] = STATE(1026), + [sym__statements] = STATE(6572), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4492), + [sym_for_statement] = STATE(4492), + [sym_c_style_for_statement] = STATE(4492), + [sym_while_statement] = STATE(4252), + [sym_if_statement] = STATE(4252), + [sym_case_statement] = STATE(4492), + [sym_function_definition] = STATE(4492), + [sym_compound_statement] = STATE(4492), + [sym_subshell] = STATE(4492), + [sym_pipeline] = STATE(4964), + [sym_list] = STATE(4492), + [sym_negated_command] = STATE(4492), + [sym_test_command] = STATE(4492), + [sym_declaration_command] = STATE(4492), + [sym_unset_command] = STATE(4492), + [sym_command] = STATE(4492), + [sym_command_name] = STATE(531), + [sym_variable_assignment] = STATE(880), + [sym_variable_assignments] = STATE(4492), + [sym_subscript] = STATE(6746), + [sym_file_redirect] = STATE(1807), + [sym_herestring_redirect] = STATE(1808), + [sym_arithmetic_expansion] = STATE(859), + [sym_brace_expression] = STATE(859), + [sym_concatenation] = STATE(1231), + [sym_string] = STATE(859), + [sym_translated_string] = STATE(859), + [sym_number] = STATE(859), + [sym_simple_expansion] = STATE(859), + [sym_expansion] = STATE(859), + [sym_command_substitution] = STATE(859), + [sym_process_substitution] = STATE(859), + [aux_sym__statements_repeat1] = STATE(419), + [aux_sym_redirected_statement_repeat2] = STATE(4335), + [aux_sym_command_repeat1] = STATE(992), + [aux_sym__literal_repeat1] = STATE(1127), [sym_word] = ACTIONS(665), [anon_sym_for] = ACTIONS(667), [anon_sym_select] = ACTIONS(669), @@ -33366,7 +33667,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(681), [anon_sym_case] = ACTIONS(683), [anon_sym_SEMI_SEMI] = ACTIONS(757), - [anon_sym_SEMI_AMP] = ACTIONS(541), + [anon_sym_SEMI_AMP] = ACTIONS(539), [anon_sym_SEMI_SEMI_AMP] = ACTIONS(541), [anon_sym_function] = ACTIONS(687), [anon_sym_LBRACE] = ACTIONS(689), @@ -33410,44 +33711,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(737), }, [46] = { - [sym__statements] = STATE(6690), - [sym__statement_not_pipeline] = STATE(6674), - [sym_redirected_statement] = STATE(4416), - [sym_for_statement] = STATE(4416), - [sym_c_style_for_statement] = STATE(4416), - [sym_while_statement] = STATE(4239), - [sym_if_statement] = STATE(4239), - [sym_case_statement] = STATE(4416), - [sym_function_definition] = STATE(4416), - [sym_compound_statement] = STATE(4416), - [sym_subshell] = STATE(4416), - [sym_pipeline] = STATE(4910), - [sym_list] = STATE(4416), - [sym_negated_command] = STATE(4416), - [sym_test_command] = STATE(4416), - [sym_declaration_command] = STATE(4416), - [sym_unset_command] = STATE(4416), - [sym_command] = STATE(4416), - [sym_command_name] = STATE(530), - [sym_variable_assignment] = STATE(849), - [sym_variable_assignments] = STATE(4416), - [sym_subscript] = STATE(6760), - [sym_file_redirect] = STATE(1893), - [sym_herestring_redirect] = STATE(1892), - [sym_arithmetic_expansion] = STATE(852), - [sym_brace_expression] = STATE(852), - [sym_concatenation] = STATE(1169), - [sym_string] = STATE(852), - [sym_translated_string] = STATE(852), - [sym_number] = STATE(852), - [sym_simple_expansion] = STATE(852), - [sym_expansion] = STATE(852), - [sym_command_substitution] = STATE(852), - [sym_process_substitution] = STATE(852), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4371), - [aux_sym_command_repeat1] = STATE(989), - [aux_sym__literal_repeat1] = STATE(1026), + [sym__statements] = STATE(6576), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4492), + [sym_for_statement] = STATE(4492), + [sym_c_style_for_statement] = STATE(4492), + [sym_while_statement] = STATE(4252), + [sym_if_statement] = STATE(4252), + [sym_case_statement] = STATE(4492), + [sym_function_definition] = STATE(4492), + [sym_compound_statement] = STATE(4492), + [sym_subshell] = STATE(4492), + [sym_pipeline] = STATE(4964), + [sym_list] = STATE(4492), + [sym_negated_command] = STATE(4492), + [sym_test_command] = STATE(4492), + [sym_declaration_command] = STATE(4492), + [sym_unset_command] = STATE(4492), + [sym_command] = STATE(4492), + [sym_command_name] = STATE(531), + [sym_variable_assignment] = STATE(880), + [sym_variable_assignments] = STATE(4492), + [sym_subscript] = STATE(6746), + [sym_file_redirect] = STATE(1807), + [sym_herestring_redirect] = STATE(1808), + [sym_arithmetic_expansion] = STATE(859), + [sym_brace_expression] = STATE(859), + [sym_concatenation] = STATE(1231), + [sym_string] = STATE(859), + [sym_translated_string] = STATE(859), + [sym_number] = STATE(859), + [sym_simple_expansion] = STATE(859), + [sym_expansion] = STATE(859), + [sym_command_substitution] = STATE(859), + [sym_process_substitution] = STATE(859), + [aux_sym__statements_repeat1] = STATE(419), + [aux_sym_redirected_statement_repeat2] = STATE(4335), + [aux_sym_command_repeat1] = STATE(992), + [aux_sym__literal_repeat1] = STATE(1127), [sym_word] = ACTIONS(665), [anon_sym_for] = ACTIONS(667), [anon_sym_select] = ACTIONS(669), @@ -33461,8 +33762,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(681), [anon_sym_case] = ACTIONS(683), [anon_sym_SEMI_SEMI] = ACTIONS(759), - [anon_sym_SEMI_AMP] = ACTIONS(527), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(529), + [anon_sym_SEMI_AMP] = ACTIONS(551), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(553), [anon_sym_function] = ACTIONS(687), [anon_sym_LBRACE] = ACTIONS(689), [anon_sym_BANG] = ACTIONS(691), @@ -33505,50 +33806,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(737), }, [47] = { - [aux_sym__terminated_statement] = STATE(34), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(5007), - [sym_for_statement] = STATE(5007), - [sym_c_style_for_statement] = STATE(5007), - [sym_while_statement] = STATE(4551), - [sym_if_statement] = STATE(4551), - [sym_case_statement] = STATE(5007), - [sym_function_definition] = STATE(5007), - [sym_compound_statement] = STATE(5007), - [sym_subshell] = STATE(5007), - [sym_pipeline] = STATE(5189), - [sym_list] = STATE(5007), - [sym_negated_command] = STATE(5007), - [sym_test_command] = STATE(5007), - [sym_declaration_command] = STATE(5007), - [sym_unset_command] = STATE(5007), - [sym_command] = STATE(5007), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1151), - [sym_variable_assignments] = STATE(5007), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [aux_sym__terminated_statement] = STATE(48), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4945), + [sym_for_statement] = STATE(4945), + [sym_c_style_for_statement] = STATE(4945), + [sym_while_statement] = STATE(4557), + [sym_if_statement] = STATE(4557), + [sym_case_statement] = STATE(4945), + [sym_function_definition] = STATE(4945), + [sym_compound_statement] = STATE(4945), + [sym_subshell] = STATE(4945), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4945), + [sym_negated_command] = STATE(4945), + [sym_test_command] = STATE(4945), + [sym_declaration_command] = STATE(4945), + [sym_unset_command] = STATE(4945), + [sym_command] = STATE(4945), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1034), + [sym_variable_assignments] = STATE(4945), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), @@ -33557,92 +33858,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_elif] = ACTIONS(761), [anon_sym_else] = ACTIONS(761), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [48] = { - [aux_sym__terminated_statement] = STATE(47), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(5007), - [sym_for_statement] = STATE(5007), - [sym_c_style_for_statement] = STATE(5007), - [sym_while_statement] = STATE(4551), - [sym_if_statement] = STATE(4551), - [sym_case_statement] = STATE(5007), - [sym_function_definition] = STATE(5007), - [sym_compound_statement] = STATE(5007), - [sym_subshell] = STATE(5007), - [sym_pipeline] = STATE(5189), - [sym_list] = STATE(5007), - [sym_negated_command] = STATE(5007), - [sym_test_command] = STATE(5007), - [sym_declaration_command] = STATE(5007), - [sym_unset_command] = STATE(5007), - [sym_command] = STATE(5007), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1151), - [sym_variable_assignments] = STATE(5007), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4945), + [sym_for_statement] = STATE(4945), + [sym_c_style_for_statement] = STATE(4945), + [sym_while_statement] = STATE(4557), + [sym_if_statement] = STATE(4557), + [sym_case_statement] = STATE(4945), + [sym_function_definition] = STATE(4945), + [sym_compound_statement] = STATE(4945), + [sym_subshell] = STATE(4945), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4945), + [sym_negated_command] = STATE(4945), + [sym_test_command] = STATE(4945), + [sym_declaration_command] = STATE(4945), + [sym_unset_command] = STATE(4945), + [sym_command] = STATE(4945), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1034), + [sym_variable_assignments] = STATE(4945), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), @@ -33651,381 +33952,381 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_elif] = ACTIONS(763), [anon_sym_else] = ACTIONS(763), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [49] = { - [sym__statements] = STATE(7117), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4945), + [sym_for_statement] = STATE(4945), + [sym_c_style_for_statement] = STATE(4945), + [sym_while_statement] = STATE(4557), + [sym_do_group] = STATE(5577), + [sym_if_statement] = STATE(4557), + [sym_case_statement] = STATE(4945), + [sym_function_definition] = STATE(4945), + [sym_compound_statement] = STATE(4945), + [sym_subshell] = STATE(4945), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4945), + [sym_negated_command] = STATE(4945), + [sym_test_command] = STATE(4945), + [sym_declaration_command] = STATE(4945), + [sym_unset_command] = STATE(4945), + [sym_command] = STATE(4945), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1034), + [sym_variable_assignments] = STATE(4945), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(767), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_do] = ACTIONS(765), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [50] = { [aux_sym__terminated_statement] = STATE(34), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(5007), - [sym_for_statement] = STATE(5007), - [sym_c_style_for_statement] = STATE(5007), - [sym_while_statement] = STATE(4551), - [sym_do_group] = STATE(4946), - [sym_if_statement] = STATE(4551), - [sym_case_statement] = STATE(5007), - [sym_function_definition] = STATE(5007), - [sym_compound_statement] = STATE(5007), - [sym_subshell] = STATE(5007), - [sym_pipeline] = STATE(5189), - [sym_list] = STATE(5007), - [sym_negated_command] = STATE(5007), - [sym_test_command] = STATE(5007), - [sym_declaration_command] = STATE(5007), - [sym_unset_command] = STATE(5007), - [sym_command] = STATE(5007), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1151), - [sym_variable_assignments] = STATE(5007), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4945), + [sym_for_statement] = STATE(4945), + [sym_c_style_for_statement] = STATE(4945), + [sym_while_statement] = STATE(4557), + [sym_do_group] = STATE(4662), + [sym_if_statement] = STATE(4557), + [sym_case_statement] = STATE(4945), + [sym_function_definition] = STATE(4945), + [sym_compound_statement] = STATE(4945), + [sym_subshell] = STATE(4945), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4945), + [sym_negated_command] = STATE(4945), + [sym_test_command] = STATE(4945), + [sym_declaration_command] = STATE(4945), + [sym_unset_command] = STATE(4945), + [sym_command] = STATE(4945), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1034), + [sym_variable_assignments] = STATE(4945), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_do] = ACTIONS(777), + [anon_sym_do] = ACTIONS(767), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [51] = { [aux_sym__terminated_statement] = STATE(34), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(5007), - [sym_for_statement] = STATE(5007), - [sym_c_style_for_statement] = STATE(5007), - [sym_while_statement] = STATE(4551), - [sym_do_group] = STATE(4632), - [sym_if_statement] = STATE(4551), - [sym_case_statement] = STATE(5007), - [sym_function_definition] = STATE(5007), - [sym_compound_statement] = STATE(5007), - [sym_subshell] = STATE(5007), - [sym_pipeline] = STATE(5189), - [sym_list] = STATE(5007), - [sym_negated_command] = STATE(5007), - [sym_test_command] = STATE(5007), - [sym_declaration_command] = STATE(5007), - [sym_unset_command] = STATE(5007), - [sym_command] = STATE(5007), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1151), - [sym_variable_assignments] = STATE(5007), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4945), + [sym_for_statement] = STATE(4945), + [sym_c_style_for_statement] = STATE(4945), + [sym_while_statement] = STATE(4557), + [sym_do_group] = STATE(4805), + [sym_if_statement] = STATE(4557), + [sym_case_statement] = STATE(4945), + [sym_function_definition] = STATE(4945), + [sym_compound_statement] = STATE(4945), + [sym_subshell] = STATE(4945), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4945), + [sym_negated_command] = STATE(4945), + [sym_test_command] = STATE(4945), + [sym_declaration_command] = STATE(4945), + [sym_unset_command] = STATE(4945), + [sym_command] = STATE(4945), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1034), + [sym_variable_assignments] = STATE(4945), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_do] = ACTIONS(779), + [anon_sym_do] = ACTIONS(769), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [52] = { - [sym__statements] = STATE(7117), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7298), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(781), + [anon_sym_RPAREN] = ACTIONS(773), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -34043,82 +34344,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [53] = { - [sym__statements] = STATE(7053), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4945), + [sym_for_statement] = STATE(4945), + [sym_c_style_for_statement] = STATE(4945), + [sym_while_statement] = STATE(4557), + [sym_do_group] = STATE(4953), + [sym_if_statement] = STATE(4557), + [sym_case_statement] = STATE(4945), + [sym_function_definition] = STATE(4945), + [sym_compound_statement] = STATE(4945), + [sym_subshell] = STATE(4945), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4945), + [sym_negated_command] = STATE(4945), + [sym_test_command] = STATE(4945), + [sym_declaration_command] = STATE(4945), + [sym_unset_command] = STATE(4945), + [sym_command] = STATE(4945), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1034), + [sym_variable_assignments] = STATE(4945), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_do] = ACTIONS(783), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(345), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [54] = { + [sym__statements] = STATE(7298), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(783), + [anon_sym_RPAREN] = ACTIONS(785), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -34136,163 +34530,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), - }, - [54] = { - [aux_sym__terminated_statement] = STATE(34), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(5007), - [sym_for_statement] = STATE(5007), - [sym_c_style_for_statement] = STATE(5007), - [sym_while_statement] = STATE(4551), - [sym_do_group] = STATE(4666), - [sym_if_statement] = STATE(4551), - [sym_case_statement] = STATE(5007), - [sym_function_definition] = STATE(5007), - [sym_compound_statement] = STATE(5007), - [sym_subshell] = STATE(5007), - [sym_pipeline] = STATE(5189), - [sym_list] = STATE(5007), - [sym_negated_command] = STATE(5007), - [sym_test_command] = STATE(5007), - [sym_declaration_command] = STATE(5007), - [sym_unset_command] = STATE(5007), - [sym_command] = STATE(5007), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1151), - [sym_variable_assignments] = STATE(5007), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_do] = ACTIONS(785), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [55] = { - [sym__statements] = STATE(7441), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7064), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -34304,7 +34605,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -34322,70 +34623,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [56] = { - [sym__statements] = STATE(7117), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7455), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -34397,7 +34698,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -34415,70 +34716,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [57] = { - [sym__statements] = STATE(7117), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7105), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -34490,7 +34791,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -34508,70 +34809,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [58] = { - [sym__statements] = STATE(7350), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7298), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -34583,7 +34884,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -34601,163 +34902,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [59] = { - [aux_sym__terminated_statement] = STATE(34), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(5007), - [sym_for_statement] = STATE(5007), - [sym_c_style_for_statement] = STATE(5007), - [sym_while_statement] = STATE(4551), - [sym_do_group] = STATE(5560), - [sym_if_statement] = STATE(4551), - [sym_case_statement] = STATE(5007), - [sym_function_definition] = STATE(5007), - [sym_compound_statement] = STATE(5007), - [sym_subshell] = STATE(5007), - [sym_pipeline] = STATE(5189), - [sym_list] = STATE(5007), - [sym_negated_command] = STATE(5007), - [sym_test_command] = STATE(5007), - [sym_declaration_command] = STATE(5007), - [sym_unset_command] = STATE(5007), - [sym_command] = STATE(5007), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1151), - [sym_variable_assignments] = STATE(5007), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [sym__statements] = STATE(7298), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(795), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_do] = ACTIONS(795), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [60] = { - [sym__statements] = STATE(7117), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7298), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -34769,7 +35070,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -34787,346 +35088,346 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [61] = { - [sym__statements] = STATE(7328), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [sym__statements] = STATE(7159), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2012), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [62] = { - [aux_sym__terminated_statement] = STATE(62), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(4993), - [sym_for_statement] = STATE(4993), - [sym_c_style_for_statement] = STATE(4993), - [sym_while_statement] = STATE(4489), - [sym_if_statement] = STATE(4489), - [sym_case_statement] = STATE(4993), - [sym_function_definition] = STATE(4993), - [sym_compound_statement] = STATE(4993), - [sym_subshell] = STATE(4993), - [sym_pipeline] = STATE(5122), - [sym_list] = STATE(4993), - [sym_negated_command] = STATE(4993), - [sym_test_command] = STATE(4993), - [sym_declaration_command] = STATE(4993), - [sym_unset_command] = STATE(4993), - [sym_command] = STATE(4993), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1030), - [sym_variable_assignments] = STATE(4993), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(555), - [anon_sym_for] = ACTIONS(558), - [anon_sym_select] = ACTIONS(561), - [anon_sym_LPAREN_LPAREN] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_GT_GT] = ACTIONS(570), - [anon_sym_LPAREN] = ACTIONS(573), - [anon_sym_while] = ACTIONS(576), - [anon_sym_until] = ACTIONS(576), - [anon_sym_if] = ACTIONS(581), - [anon_sym_case] = ACTIONS(584), - [anon_sym_function] = ACTIONS(587), - [anon_sym_LBRACE] = ACTIONS(590), - [anon_sym_RBRACE] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_LBRACK_LBRACK] = ACTIONS(599), - [anon_sym_declare] = ACTIONS(602), - [anon_sym_typeset] = ACTIONS(602), - [anon_sym_export] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_local] = ACTIONS(602), - [anon_sym_unset] = ACTIONS(605), - [anon_sym_unsetenv] = ACTIONS(605), - [anon_sym_AMP_GT] = ACTIONS(567), - [anon_sym_AMP_GT_GT] = ACTIONS(570), - [anon_sym_LT_AMP] = ACTIONS(567), - [anon_sym_GT_AMP] = ACTIONS(567), - [anon_sym_GT_PIPE] = ACTIONS(570), - [anon_sym_LT_AMP_DASH] = ACTIONS(608), - [anon_sym_GT_AMP_DASH] = ACTIONS(608), - [anon_sym_LT_LT_LT] = ACTIONS(611), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(614), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(617), - [anon_sym_DOLLAR] = ACTIONS(620), - [sym__special_character] = ACTIONS(623), - [anon_sym_DQUOTE] = ACTIONS(626), - [sym_raw_string] = ACTIONS(629), - [sym_ansi_c_string] = ACTIONS(629), - [aux_sym_number_token1] = ACTIONS(632), - [aux_sym_number_token2] = ACTIONS(635), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(638), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(641), - [anon_sym_BQUOTE] = ACTIONS(644), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(647), - [anon_sym_LT_LPAREN] = ACTIONS(650), - [anon_sym_GT_LPAREN] = ACTIONS(650), + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4945), + [sym_for_statement] = STATE(4945), + [sym_c_style_for_statement] = STATE(4945), + [sym_while_statement] = STATE(4557), + [sym_if_statement] = STATE(4557), + [sym_case_statement] = STATE(4945), + [sym_function_definition] = STATE(4945), + [sym_compound_statement] = STATE(4945), + [sym_subshell] = STATE(4945), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4945), + [sym_negated_command] = STATE(4945), + [sym_test_command] = STATE(4945), + [sym_declaration_command] = STATE(4945), + [sym_unset_command] = STATE(4945), + [sym_command] = STATE(4945), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1034), + [sym_variable_assignments] = STATE(4945), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_then] = ACTIONS(799), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(345), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(653), - [sym_variable_name] = ACTIONS(656), - [sym_test_operator] = ACTIONS(659), - [sym__brace_start] = ACTIONS(662), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [63] = { - [aux_sym__terminated_statement] = STATE(68), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(4993), - [sym_for_statement] = STATE(4993), - [sym_c_style_for_statement] = STATE(4993), - [sym_while_statement] = STATE(4489), - [sym_if_statement] = STATE(4489), - [sym_case_statement] = STATE(4993), - [sym_function_definition] = STATE(4993), - [sym_compound_statement] = STATE(4993), - [sym_subshell] = STATE(4993), - [sym_pipeline] = STATE(5122), - [sym_list] = STATE(4993), - [sym_negated_command] = STATE(4993), - [sym_test_command] = STATE(4993), - [sym_declaration_command] = STATE(4993), - [sym_unset_command] = STATE(4993), - [sym_command] = STATE(4993), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1030), - [sym_variable_assignments] = STATE(4993), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4945), + [sym_for_statement] = STATE(4945), + [sym_c_style_for_statement] = STATE(4945), + [sym_while_statement] = STATE(4557), + [sym_if_statement] = STATE(4557), + [sym_case_statement] = STATE(4945), + [sym_function_definition] = STATE(4945), + [sym_compound_statement] = STATE(4945), + [sym_subshell] = STATE(4945), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4945), + [sym_negated_command] = STATE(4945), + [sym_test_command] = STATE(4945), + [sym_declaration_command] = STATE(4945), + [sym_unset_command] = STATE(4945), + [sym_command] = STATE(4945), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1034), + [sym_variable_assignments] = STATE(4945), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), + [anon_sym_fi] = ACTIONS(801), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [64] = { - [sym__statements] = STATE(7356), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2191), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7448), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(1932), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -35137,7 +35438,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -35155,254 +35456,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [65] = { - [sym__statements] = STATE(7355), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [sym__statements] = STATE(7349), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [66] = { - [sym__statements] = STATE(7354), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [sym__statements] = STATE(7172), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [67] = { - [sym__statements] = STATE(7353), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7067), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -35413,7 +35714,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -35431,3106 +35732,3290 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [68] = { - [aux_sym__terminated_statement] = STATE(62), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(4993), - [sym_for_statement] = STATE(4993), - [sym_c_style_for_statement] = STATE(4993), - [sym_while_statement] = STATE(4489), - [sym_if_statement] = STATE(4489), - [sym_case_statement] = STATE(4993), - [sym_function_definition] = STATE(4993), - [sym_compound_statement] = STATE(4993), - [sym_subshell] = STATE(4993), - [sym_pipeline] = STATE(5122), - [sym_list] = STATE(4993), - [sym_negated_command] = STATE(4993), - [sym_test_command] = STATE(4993), - [sym_declaration_command] = STATE(4993), - [sym_unset_command] = STATE(4993), - [sym_command] = STATE(4993), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1030), - [sym_variable_assignments] = STATE(4993), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4945), + [sym_for_statement] = STATE(4945), + [sym_c_style_for_statement] = STATE(4945), + [sym_while_statement] = STATE(4557), + [sym_if_statement] = STATE(4557), + [sym_case_statement] = STATE(4945), + [sym_function_definition] = STATE(4945), + [sym_compound_statement] = STATE(4945), + [sym_subshell] = STATE(4945), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4945), + [sym_negated_command] = STATE(4945), + [sym_test_command] = STATE(4945), + [sym_declaration_command] = STATE(4945), + [sym_unset_command] = STATE(4945), + [sym_command] = STATE(4945), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1034), + [sym_variable_assignments] = STATE(4945), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), + [anon_sym_then] = ACTIONS(813), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(813), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [69] = { - [sym__statements] = STATE(7127), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2186), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [aux_sym__terminated_statement] = STATE(71), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4971), + [sym_for_statement] = STATE(4971), + [sym_c_style_for_statement] = STATE(4971), + [sym_while_statement] = STATE(4432), + [sym_if_statement] = STATE(4432), + [sym_case_statement] = STATE(4971), + [sym_function_definition] = STATE(4971), + [sym_compound_statement] = STATE(4971), + [sym_subshell] = STATE(4971), + [sym_pipeline] = STATE(5217), + [sym_list] = STATE(4971), + [sym_negated_command] = STATE(4971), + [sym_test_command] = STATE(4971), + [sym_declaration_command] = STATE(4971), + [sym_unset_command] = STATE(4971), + [sym_command] = STATE(4971), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1032), + [sym_variable_assignments] = STATE(4971), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_RBRACE] = ACTIONS(815), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [70] = { - [aux_sym__terminated_statement] = STATE(71), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(4951), - [sym_for_statement] = STATE(4951), - [sym_c_style_for_statement] = STATE(4951), - [sym_while_statement] = STATE(4567), - [sym_if_statement] = STATE(4567), - [sym_case_statement] = STATE(4951), - [sym_function_definition] = STATE(4951), - [sym_compound_statement] = STATE(4951), - [sym_subshell] = STATE(4951), - [sym_pipeline] = STATE(5163), - [sym_list] = STATE(4951), - [sym_negated_command] = STATE(4951), - [sym_test_command] = STATE(4951), - [sym_declaration_command] = STATE(4951), - [sym_unset_command] = STATE(4951), - [sym_command] = STATE(4951), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1153), - [sym_variable_assignments] = STATE(4951), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [aux_sym__terminated_statement] = STATE(69), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4971), + [sym_for_statement] = STATE(4971), + [sym_c_style_for_statement] = STATE(4971), + [sym_while_statement] = STATE(4432), + [sym_if_statement] = STATE(4432), + [sym_case_statement] = STATE(4971), + [sym_function_definition] = STATE(4971), + [sym_compound_statement] = STATE(4971), + [sym_subshell] = STATE(4971), + [sym_pipeline] = STATE(5217), + [sym_list] = STATE(4971), + [sym_negated_command] = STATE(4971), + [sym_test_command] = STATE(4971), + [sym_declaration_command] = STATE(4971), + [sym_unset_command] = STATE(4971), + [sym_command] = STATE(4971), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1032), + [sym_variable_assignments] = STATE(4971), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(815), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_RBRACE] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [71] = { - [aux_sym__terminated_statement] = STATE(105), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(4951), - [sym_for_statement] = STATE(4951), - [sym_c_style_for_statement] = STATE(4951), - [sym_while_statement] = STATE(4567), - [sym_if_statement] = STATE(4567), - [sym_case_statement] = STATE(4951), - [sym_function_definition] = STATE(4951), - [sym_compound_statement] = STATE(4951), - [sym_subshell] = STATE(4951), - [sym_pipeline] = STATE(5163), - [sym_list] = STATE(4951), - [sym_negated_command] = STATE(4951), - [sym_test_command] = STATE(4951), - [sym_declaration_command] = STATE(4951), - [sym_unset_command] = STATE(4951), - [sym_command] = STATE(4951), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1153), - [sym_variable_assignments] = STATE(4951), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(817), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [aux_sym__terminated_statement] = STATE(71), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4971), + [sym_for_statement] = STATE(4971), + [sym_c_style_for_statement] = STATE(4971), + [sym_while_statement] = STATE(4432), + [sym_if_statement] = STATE(4432), + [sym_case_statement] = STATE(4971), + [sym_function_definition] = STATE(4971), + [sym_compound_statement] = STATE(4971), + [sym_subshell] = STATE(4971), + [sym_pipeline] = STATE(5217), + [sym_list] = STATE(4971), + [sym_negated_command] = STATE(4971), + [sym_test_command] = STATE(4971), + [sym_declaration_command] = STATE(4971), + [sym_unset_command] = STATE(4971), + [sym_command] = STATE(4971), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1032), + [sym_variable_assignments] = STATE(4971), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(555), + [anon_sym_for] = ACTIONS(558), + [anon_sym_select] = ACTIONS(561), + [anon_sym_LPAREN_LPAREN] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(567), + [anon_sym_GT_GT] = ACTIONS(570), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_while] = ACTIONS(576), + [anon_sym_until] = ACTIONS(576), + [anon_sym_if] = ACTIONS(581), + [anon_sym_case] = ACTIONS(584), + [anon_sym_function] = ACTIONS(587), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_RBRACE] = ACTIONS(819), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_LBRACK] = ACTIONS(596), + [anon_sym_LBRACK_LBRACK] = ACTIONS(599), + [anon_sym_declare] = ACTIONS(602), + [anon_sym_typeset] = ACTIONS(602), + [anon_sym_export] = ACTIONS(602), + [anon_sym_readonly] = ACTIONS(602), + [anon_sym_local] = ACTIONS(602), + [anon_sym_unset] = ACTIONS(605), + [anon_sym_unsetenv] = ACTIONS(605), + [anon_sym_AMP_GT] = ACTIONS(567), + [anon_sym_AMP_GT_GT] = ACTIONS(570), + [anon_sym_LT_AMP] = ACTIONS(567), + [anon_sym_GT_AMP] = ACTIONS(567), + [anon_sym_GT_PIPE] = ACTIONS(570), + [anon_sym_LT_AMP_DASH] = ACTIONS(608), + [anon_sym_GT_AMP_DASH] = ACTIONS(608), + [anon_sym_LT_LT_LT] = ACTIONS(611), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(614), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(620), + [sym__special_character] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(626), + [sym_raw_string] = ACTIONS(629), + [sym_ansi_c_string] = ACTIONS(629), + [aux_sym_number_token1] = ACTIONS(632), + [aux_sym_number_token2] = ACTIONS(635), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(638), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(641), + [anon_sym_BQUOTE] = ACTIONS(644), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(647), + [anon_sym_LT_LPAREN] = ACTIONS(650), + [anon_sym_GT_LPAREN] = ACTIONS(650), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(653), + [sym_variable_name] = ACTIONS(656), + [sym_test_operator] = ACTIONS(659), + [sym__brace_start] = ACTIONS(662), }, [72] = { - [aux_sym__terminated_statement] = STATE(74), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(4993), - [sym_for_statement] = STATE(4993), - [sym_c_style_for_statement] = STATE(4993), - [sym_while_statement] = STATE(4489), - [sym_if_statement] = STATE(4489), - [sym_case_statement] = STATE(4993), - [sym_function_definition] = STATE(4993), - [sym_compound_statement] = STATE(4993), - [sym_subshell] = STATE(4993), - [sym_pipeline] = STATE(5122), - [sym_list] = STATE(4993), - [sym_negated_command] = STATE(4993), - [sym_test_command] = STATE(4993), - [sym_declaration_command] = STATE(4993), - [sym_unset_command] = STATE(4993), - [sym_command] = STATE(4993), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1030), - [sym_variable_assignments] = STATE(4993), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [aux_sym__terminated_statement] = STATE(72), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4978), + [sym_for_statement] = STATE(4978), + [sym_c_style_for_statement] = STATE(4978), + [sym_while_statement] = STATE(4502), + [sym_if_statement] = STATE(4502), + [sym_case_statement] = STATE(4978), + [sym_function_definition] = STATE(4978), + [sym_compound_statement] = STATE(4978), + [sym_subshell] = STATE(4978), + [sym_pipeline] = STATE(5220), + [sym_list] = STATE(4978), + [sym_negated_command] = STATE(4978), + [sym_test_command] = STATE(4978), + [sym_declaration_command] = STATE(4978), + [sym_unset_command] = STATE(4978), + [sym_command] = STATE(4978), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1036), + [sym_variable_assignments] = STATE(4978), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(555), + [anon_sym_for] = ACTIONS(558), + [anon_sym_select] = ACTIONS(561), + [anon_sym_LPAREN_LPAREN] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(567), + [anon_sym_GT_GT] = ACTIONS(570), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_while] = ACTIONS(576), + [anon_sym_until] = ACTIONS(576), + [anon_sym_done] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_case] = ACTIONS(584), + [anon_sym_function] = ACTIONS(587), + [anon_sym_LBRACE] = ACTIONS(590), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_LBRACK] = ACTIONS(596), + [anon_sym_LBRACK_LBRACK] = ACTIONS(599), + [anon_sym_declare] = ACTIONS(602), + [anon_sym_typeset] = ACTIONS(602), + [anon_sym_export] = ACTIONS(602), + [anon_sym_readonly] = ACTIONS(602), + [anon_sym_local] = ACTIONS(602), + [anon_sym_unset] = ACTIONS(605), + [anon_sym_unsetenv] = ACTIONS(605), + [anon_sym_AMP_GT] = ACTIONS(567), + [anon_sym_AMP_GT_GT] = ACTIONS(570), + [anon_sym_LT_AMP] = ACTIONS(567), + [anon_sym_GT_AMP] = ACTIONS(567), + [anon_sym_GT_PIPE] = ACTIONS(570), + [anon_sym_LT_AMP_DASH] = ACTIONS(608), + [anon_sym_GT_AMP_DASH] = ACTIONS(608), + [anon_sym_LT_LT_LT] = ACTIONS(611), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(614), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(620), + [sym__special_character] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(626), + [sym_raw_string] = ACTIONS(629), + [sym_ansi_c_string] = ACTIONS(629), + [aux_sym_number_token1] = ACTIONS(632), + [aux_sym_number_token2] = ACTIONS(635), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(638), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(641), + [anon_sym_BQUOTE] = ACTIONS(644), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(647), + [anon_sym_LT_LPAREN] = ACTIONS(650), + [anon_sym_GT_LPAREN] = ACTIONS(650), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(653), + [sym_variable_name] = ACTIONS(656), + [sym_test_operator] = ACTIONS(659), + [sym__brace_start] = ACTIONS(662), }, [73] = { - [sym__statements] = STATE(7124), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [aux_sym__terminated_statement] = STATE(74), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4971), + [sym_for_statement] = STATE(4971), + [sym_c_style_for_statement] = STATE(4971), + [sym_while_statement] = STATE(4432), + [sym_if_statement] = STATE(4432), + [sym_case_statement] = STATE(4971), + [sym_function_definition] = STATE(4971), + [sym_compound_statement] = STATE(4971), + [sym_subshell] = STATE(4971), + [sym_pipeline] = STATE(5217), + [sym_list] = STATE(4971), + [sym_negated_command] = STATE(4971), + [sym_test_command] = STATE(4971), + [sym_declaration_command] = STATE(4971), + [sym_unset_command] = STATE(4971), + [sym_command] = STATE(4971), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1032), + [sym_variable_assignments] = STATE(4971), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_RBRACE] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [74] = { - [aux_sym__terminated_statement] = STATE(62), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(4993), - [sym_for_statement] = STATE(4993), - [sym_c_style_for_statement] = STATE(4993), - [sym_while_statement] = STATE(4489), - [sym_if_statement] = STATE(4489), - [sym_case_statement] = STATE(4993), - [sym_function_definition] = STATE(4993), - [sym_compound_statement] = STATE(4993), - [sym_subshell] = STATE(4993), - [sym_pipeline] = STATE(5122), - [sym_list] = STATE(4993), - [sym_negated_command] = STATE(4993), - [sym_test_command] = STATE(4993), - [sym_declaration_command] = STATE(4993), - [sym_unset_command] = STATE(4993), - [sym_command] = STATE(4993), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1030), - [sym_variable_assignments] = STATE(4993), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [aux_sym__terminated_statement] = STATE(71), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4971), + [sym_for_statement] = STATE(4971), + [sym_c_style_for_statement] = STATE(4971), + [sym_while_statement] = STATE(4432), + [sym_if_statement] = STATE(4432), + [sym_case_statement] = STATE(4971), + [sym_function_definition] = STATE(4971), + [sym_compound_statement] = STATE(4971), + [sym_subshell] = STATE(4971), + [sym_pipeline] = STATE(5217), + [sym_list] = STATE(4971), + [sym_negated_command] = STATE(4971), + [sym_test_command] = STATE(4971), + [sym_declaration_command] = STATE(4971), + [sym_unset_command] = STATE(4971), + [sym_command] = STATE(4971), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1032), + [sym_variable_assignments] = STATE(4971), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_RBRACE] = ACTIONS(823), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [75] = { - [sym__statements] = STATE(7123), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [aux_sym__terminated_statement] = STATE(76), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4978), + [sym_for_statement] = STATE(4978), + [sym_c_style_for_statement] = STATE(4978), + [sym_while_statement] = STATE(4502), + [sym_if_statement] = STATE(4502), + [sym_case_statement] = STATE(4978), + [sym_function_definition] = STATE(4978), + [sym_compound_statement] = STATE(4978), + [sym_subshell] = STATE(4978), + [sym_pipeline] = STATE(5220), + [sym_list] = STATE(4978), + [sym_negated_command] = STATE(4978), + [sym_test_command] = STATE(4978), + [sym_declaration_command] = STATE(4978), + [sym_unset_command] = STATE(4978), + [sym_command] = STATE(4978), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1036), + [sym_variable_assignments] = STATE(4978), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(825), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [76] = { - [aux_sym__terminated_statement] = STATE(78), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(4951), - [sym_for_statement] = STATE(4951), - [sym_c_style_for_statement] = STATE(4951), - [sym_while_statement] = STATE(4567), - [sym_if_statement] = STATE(4567), - [sym_case_statement] = STATE(4951), - [sym_function_definition] = STATE(4951), - [sym_compound_statement] = STATE(4951), - [sym_subshell] = STATE(4951), - [sym_pipeline] = STATE(5163), - [sym_list] = STATE(4951), - [sym_negated_command] = STATE(4951), - [sym_test_command] = STATE(4951), - [sym_declaration_command] = STATE(4951), - [sym_unset_command] = STATE(4951), - [sym_command] = STATE(4951), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1153), - [sym_variable_assignments] = STATE(4951), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [aux_sym__terminated_statement] = STATE(72), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4978), + [sym_for_statement] = STATE(4978), + [sym_c_style_for_statement] = STATE(4978), + [sym_while_statement] = STATE(4502), + [sym_if_statement] = STATE(4502), + [sym_case_statement] = STATE(4978), + [sym_function_definition] = STATE(4978), + [sym_compound_statement] = STATE(4978), + [sym_subshell] = STATE(4978), + [sym_pipeline] = STATE(5220), + [sym_list] = STATE(4978), + [sym_negated_command] = STATE(4978), + [sym_test_command] = STATE(4978), + [sym_declaration_command] = STATE(4978), + [sym_unset_command] = STATE(4978), + [sym_command] = STATE(4978), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1036), + [sym_variable_assignments] = STATE(4978), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(823), + [anon_sym_done] = ACTIONS(827), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [77] = { - [sym__statements] = STATE(7120), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [aux_sym__terminated_statement] = STATE(79), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4971), + [sym_for_statement] = STATE(4971), + [sym_c_style_for_statement] = STATE(4971), + [sym_while_statement] = STATE(4432), + [sym_if_statement] = STATE(4432), + [sym_case_statement] = STATE(4971), + [sym_function_definition] = STATE(4971), + [sym_compound_statement] = STATE(4971), + [sym_subshell] = STATE(4971), + [sym_pipeline] = STATE(5217), + [sym_list] = STATE(4971), + [sym_negated_command] = STATE(4971), + [sym_test_command] = STATE(4971), + [sym_declaration_command] = STATE(4971), + [sym_unset_command] = STATE(4971), + [sym_command] = STATE(4971), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1032), + [sym_variable_assignments] = STATE(4971), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_RBRACE] = ACTIONS(829), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [78] = { - [aux_sym__terminated_statement] = STATE(105), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(4951), - [sym_for_statement] = STATE(4951), - [sym_c_style_for_statement] = STATE(4951), - [sym_while_statement] = STATE(4567), - [sym_if_statement] = STATE(4567), - [sym_case_statement] = STATE(4951), - [sym_function_definition] = STATE(4951), - [sym_compound_statement] = STATE(4951), - [sym_subshell] = STATE(4951), - [sym_pipeline] = STATE(5163), - [sym_list] = STATE(4951), - [sym_negated_command] = STATE(4951), - [sym_test_command] = STATE(4951), - [sym_declaration_command] = STATE(4951), - [sym_unset_command] = STATE(4951), - [sym_command] = STATE(4951), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1153), - [sym_variable_assignments] = STATE(4951), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [aux_sym__terminated_statement] = STATE(108), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4978), + [sym_for_statement] = STATE(4978), + [sym_c_style_for_statement] = STATE(4978), + [sym_while_statement] = STATE(4502), + [sym_if_statement] = STATE(4502), + [sym_case_statement] = STATE(4978), + [sym_function_definition] = STATE(4978), + [sym_compound_statement] = STATE(4978), + [sym_subshell] = STATE(4978), + [sym_pipeline] = STATE(5220), + [sym_list] = STATE(4978), + [sym_negated_command] = STATE(4978), + [sym_test_command] = STATE(4978), + [sym_declaration_command] = STATE(4978), + [sym_unset_command] = STATE(4978), + [sym_command] = STATE(4978), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1036), + [sym_variable_assignments] = STATE(4978), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(825), + [anon_sym_done] = ACTIONS(831), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [79] = { - [sym__statements] = STATE(7103), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2183), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [aux_sym__terminated_statement] = STATE(71), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4971), + [sym_for_statement] = STATE(4971), + [sym_c_style_for_statement] = STATE(4971), + [sym_while_statement] = STATE(4432), + [sym_if_statement] = STATE(4432), + [sym_case_statement] = STATE(4971), + [sym_function_definition] = STATE(4971), + [sym_compound_statement] = STATE(4971), + [sym_subshell] = STATE(4971), + [sym_pipeline] = STATE(5217), + [sym_list] = STATE(4971), + [sym_negated_command] = STATE(4971), + [sym_test_command] = STATE(4971), + [sym_declaration_command] = STATE(4971), + [sym_unset_command] = STATE(4971), + [sym_command] = STATE(4971), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1032), + [sym_variable_assignments] = STATE(4971), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_RBRACE] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [80] = { - [sym__statements] = STATE(7100), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [aux_sym__terminated_statement] = STATE(81), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4978), + [sym_for_statement] = STATE(4978), + [sym_c_style_for_statement] = STATE(4978), + [sym_while_statement] = STATE(4502), + [sym_if_statement] = STATE(4502), + [sym_case_statement] = STATE(4978), + [sym_function_definition] = STATE(4978), + [sym_compound_statement] = STATE(4978), + [sym_subshell] = STATE(4978), + [sym_pipeline] = STATE(5220), + [sym_list] = STATE(4978), + [sym_negated_command] = STATE(4978), + [sym_test_command] = STATE(4978), + [sym_declaration_command] = STATE(4978), + [sym_unset_command] = STATE(4978), + [sym_command] = STATE(4978), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1036), + [sym_variable_assignments] = STATE(4978), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(835), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [81] = { - [aux_sym__terminated_statement] = STATE(82), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(4993), - [sym_for_statement] = STATE(4993), - [sym_c_style_for_statement] = STATE(4993), - [sym_while_statement] = STATE(4489), - [sym_if_statement] = STATE(4489), - [sym_case_statement] = STATE(4993), - [sym_function_definition] = STATE(4993), - [sym_compound_statement] = STATE(4993), - [sym_subshell] = STATE(4993), - [sym_pipeline] = STATE(5122), - [sym_list] = STATE(4993), - [sym_negated_command] = STATE(4993), - [sym_test_command] = STATE(4993), - [sym_declaration_command] = STATE(4993), - [sym_unset_command] = STATE(4993), - [sym_command] = STATE(4993), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1030), - [sym_variable_assignments] = STATE(4993), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [aux_sym__terminated_statement] = STATE(72), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4978), + [sym_for_statement] = STATE(4978), + [sym_c_style_for_statement] = STATE(4978), + [sym_while_statement] = STATE(4502), + [sym_if_statement] = STATE(4502), + [sym_case_statement] = STATE(4978), + [sym_function_definition] = STATE(4978), + [sym_compound_statement] = STATE(4978), + [sym_subshell] = STATE(4978), + [sym_pipeline] = STATE(5220), + [sym_list] = STATE(4978), + [sym_negated_command] = STATE(4978), + [sym_test_command] = STATE(4978), + [sym_declaration_command] = STATE(4978), + [sym_unset_command] = STATE(4978), + [sym_command] = STATE(4978), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1036), + [sym_variable_assignments] = STATE(4978), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(837), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(827), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [82] = { - [aux_sym__terminated_statement] = STATE(62), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(4993), - [sym_for_statement] = STATE(4993), - [sym_c_style_for_statement] = STATE(4993), - [sym_while_statement] = STATE(4489), - [sym_if_statement] = STATE(4489), - [sym_case_statement] = STATE(4993), - [sym_function_definition] = STATE(4993), - [sym_compound_statement] = STATE(4993), - [sym_subshell] = STATE(4993), - [sym_pipeline] = STATE(5122), - [sym_list] = STATE(4993), - [sym_negated_command] = STATE(4993), - [sym_test_command] = STATE(4993), - [sym_declaration_command] = STATE(4993), - [sym_unset_command] = STATE(4993), - [sym_command] = STATE(4993), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1030), - [sym_variable_assignments] = STATE(4993), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [aux_sym__terminated_statement] = STATE(83), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4971), + [sym_for_statement] = STATE(4971), + [sym_c_style_for_statement] = STATE(4971), + [sym_while_statement] = STATE(4432), + [sym_if_statement] = STATE(4432), + [sym_case_statement] = STATE(4971), + [sym_function_definition] = STATE(4971), + [sym_compound_statement] = STATE(4971), + [sym_subshell] = STATE(4971), + [sym_pipeline] = STATE(5217), + [sym_list] = STATE(4971), + [sym_negated_command] = STATE(4971), + [sym_test_command] = STATE(4971), + [sym_declaration_command] = STATE(4971), + [sym_unset_command] = STATE(4971), + [sym_command] = STATE(4971), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1032), + [sym_variable_assignments] = STATE(4971), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(829), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_RBRACE] = ACTIONS(839), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [83] = { - [sym__statements] = STATE(7099), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [aux_sym__terminated_statement] = STATE(71), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4971), + [sym_for_statement] = STATE(4971), + [sym_c_style_for_statement] = STATE(4971), + [sym_while_statement] = STATE(4432), + [sym_if_statement] = STATE(4432), + [sym_case_statement] = STATE(4971), + [sym_function_definition] = STATE(4971), + [sym_compound_statement] = STATE(4971), + [sym_subshell] = STATE(4971), + [sym_pipeline] = STATE(5217), + [sym_list] = STATE(4971), + [sym_negated_command] = STATE(4971), + [sym_test_command] = STATE(4971), + [sym_declaration_command] = STATE(4971), + [sym_unset_command] = STATE(4971), + [sym_command] = STATE(4971), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1032), + [sym_variable_assignments] = STATE(4971), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_RBRACE] = ACTIONS(841), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [84] = { - [aux_sym__terminated_statement] = STATE(85), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(4951), - [sym_for_statement] = STATE(4951), - [sym_c_style_for_statement] = STATE(4951), - [sym_while_statement] = STATE(4567), - [sym_if_statement] = STATE(4567), - [sym_case_statement] = STATE(4951), - [sym_function_definition] = STATE(4951), - [sym_compound_statement] = STATE(4951), - [sym_subshell] = STATE(4951), - [sym_pipeline] = STATE(5163), - [sym_list] = STATE(4951), - [sym_negated_command] = STATE(4951), - [sym_test_command] = STATE(4951), - [sym_declaration_command] = STATE(4951), - [sym_unset_command] = STATE(4951), - [sym_command] = STATE(4951), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1153), - [sym_variable_assignments] = STATE(4951), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [sym__statements] = STATE(7077), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(831), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [85] = { - [aux_sym__terminated_statement] = STATE(105), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(4951), - [sym_for_statement] = STATE(4951), - [sym_c_style_for_statement] = STATE(4951), - [sym_while_statement] = STATE(4567), - [sym_if_statement] = STATE(4567), - [sym_case_statement] = STATE(4951), - [sym_function_definition] = STATE(4951), - [sym_compound_statement] = STATE(4951), - [sym_subshell] = STATE(4951), - [sym_pipeline] = STATE(5163), - [sym_list] = STATE(4951), - [sym_negated_command] = STATE(4951), - [sym_test_command] = STATE(4951), - [sym_declaration_command] = STATE(4951), - [sym_unset_command] = STATE(4951), - [sym_command] = STATE(4951), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1153), - [sym_variable_assignments] = STATE(4951), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [aux_sym__terminated_statement] = STATE(86), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4978), + [sym_for_statement] = STATE(4978), + [sym_c_style_for_statement] = STATE(4978), + [sym_while_statement] = STATE(4502), + [sym_if_statement] = STATE(4502), + [sym_case_statement] = STATE(4978), + [sym_function_definition] = STATE(4978), + [sym_compound_statement] = STATE(4978), + [sym_subshell] = STATE(4978), + [sym_pipeline] = STATE(5220), + [sym_list] = STATE(4978), + [sym_negated_command] = STATE(4978), + [sym_test_command] = STATE(4978), + [sym_declaration_command] = STATE(4978), + [sym_unset_command] = STATE(4978), + [sym_command] = STATE(4978), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1036), + [sym_variable_assignments] = STATE(4978), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(833), + [anon_sym_done] = ACTIONS(843), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [86] = { - [aux_sym__terminated_statement] = STATE(87), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(4993), - [sym_for_statement] = STATE(4993), - [sym_c_style_for_statement] = STATE(4993), - [sym_while_statement] = STATE(4489), - [sym_if_statement] = STATE(4489), - [sym_case_statement] = STATE(4993), - [sym_function_definition] = STATE(4993), - [sym_compound_statement] = STATE(4993), - [sym_subshell] = STATE(4993), - [sym_pipeline] = STATE(5122), - [sym_list] = STATE(4993), - [sym_negated_command] = STATE(4993), - [sym_test_command] = STATE(4993), - [sym_declaration_command] = STATE(4993), - [sym_unset_command] = STATE(4993), - [sym_command] = STATE(4993), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1030), - [sym_variable_assignments] = STATE(4993), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [aux_sym__terminated_statement] = STATE(72), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4978), + [sym_for_statement] = STATE(4978), + [sym_c_style_for_statement] = STATE(4978), + [sym_while_statement] = STATE(4502), + [sym_if_statement] = STATE(4502), + [sym_case_statement] = STATE(4978), + [sym_function_definition] = STATE(4978), + [sym_compound_statement] = STATE(4978), + [sym_subshell] = STATE(4978), + [sym_pipeline] = STATE(5220), + [sym_list] = STATE(4978), + [sym_negated_command] = STATE(4978), + [sym_test_command] = STATE(4978), + [sym_declaration_command] = STATE(4978), + [sym_unset_command] = STATE(4978), + [sym_command] = STATE(4978), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1036), + [sym_variable_assignments] = STATE(4978), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(845), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(835), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [87] = { - [aux_sym__terminated_statement] = STATE(62), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(4993), - [sym_for_statement] = STATE(4993), - [sym_c_style_for_statement] = STATE(4993), - [sym_while_statement] = STATE(4489), - [sym_if_statement] = STATE(4489), - [sym_case_statement] = STATE(4993), - [sym_function_definition] = STATE(4993), - [sym_compound_statement] = STATE(4993), - [sym_subshell] = STATE(4993), - [sym_pipeline] = STATE(5122), - [sym_list] = STATE(4993), - [sym_negated_command] = STATE(4993), - [sym_test_command] = STATE(4993), - [sym_declaration_command] = STATE(4993), - [sym_unset_command] = STATE(4993), - [sym_command] = STATE(4993), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1030), - [sym_variable_assignments] = STATE(4993), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [aux_sym__terminated_statement] = STATE(88), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4971), + [sym_for_statement] = STATE(4971), + [sym_c_style_for_statement] = STATE(4971), + [sym_while_statement] = STATE(4432), + [sym_if_statement] = STATE(4432), + [sym_case_statement] = STATE(4971), + [sym_function_definition] = STATE(4971), + [sym_compound_statement] = STATE(4971), + [sym_subshell] = STATE(4971), + [sym_pipeline] = STATE(5217), + [sym_list] = STATE(4971), + [sym_negated_command] = STATE(4971), + [sym_test_command] = STATE(4971), + [sym_declaration_command] = STATE(4971), + [sym_unset_command] = STATE(4971), + [sym_command] = STATE(4971), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1032), + [sym_variable_assignments] = STATE(4971), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(837), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_RBRACE] = ACTIONS(847), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [88] = { - [sym__statements] = STATE(7098), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [aux_sym__terminated_statement] = STATE(71), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4971), + [sym_for_statement] = STATE(4971), + [sym_c_style_for_statement] = STATE(4971), + [sym_while_statement] = STATE(4432), + [sym_if_statement] = STATE(4432), + [sym_case_statement] = STATE(4971), + [sym_function_definition] = STATE(4971), + [sym_compound_statement] = STATE(4971), + [sym_subshell] = STATE(4971), + [sym_pipeline] = STATE(5217), + [sym_list] = STATE(4971), + [sym_negated_command] = STATE(4971), + [sym_test_command] = STATE(4971), + [sym_declaration_command] = STATE(4971), + [sym_unset_command] = STATE(4971), + [sym_command] = STATE(4971), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1032), + [sym_variable_assignments] = STATE(4971), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_RBRACE] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [89] = { - [sym__statements] = STATE(7047), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2181), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [aux_sym__terminated_statement] = STATE(90), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4978), + [sym_for_statement] = STATE(4978), + [sym_c_style_for_statement] = STATE(4978), + [sym_while_statement] = STATE(4502), + [sym_if_statement] = STATE(4502), + [sym_case_statement] = STATE(4978), + [sym_function_definition] = STATE(4978), + [sym_compound_statement] = STATE(4978), + [sym_subshell] = STATE(4978), + [sym_pipeline] = STATE(5220), + [sym_list] = STATE(4978), + [sym_negated_command] = STATE(4978), + [sym_test_command] = STATE(4978), + [sym_declaration_command] = STATE(4978), + [sym_unset_command] = STATE(4978), + [sym_command] = STATE(4978), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1036), + [sym_variable_assignments] = STATE(4978), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(851), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [90] = { - [aux_sym__terminated_statement] = STATE(91), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(4951), - [sym_for_statement] = STATE(4951), - [sym_c_style_for_statement] = STATE(4951), - [sym_while_statement] = STATE(4567), - [sym_if_statement] = STATE(4567), - [sym_case_statement] = STATE(4951), - [sym_function_definition] = STATE(4951), - [sym_compound_statement] = STATE(4951), - [sym_subshell] = STATE(4951), - [sym_pipeline] = STATE(5163), - [sym_list] = STATE(4951), - [sym_negated_command] = STATE(4951), - [sym_test_command] = STATE(4951), - [sym_declaration_command] = STATE(4951), - [sym_unset_command] = STATE(4951), - [sym_command] = STATE(4951), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1153), - [sym_variable_assignments] = STATE(4951), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [aux_sym__terminated_statement] = STATE(72), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4978), + [sym_for_statement] = STATE(4978), + [sym_c_style_for_statement] = STATE(4978), + [sym_while_statement] = STATE(4502), + [sym_if_statement] = STATE(4502), + [sym_case_statement] = STATE(4978), + [sym_function_definition] = STATE(4978), + [sym_compound_statement] = STATE(4978), + [sym_subshell] = STATE(4978), + [sym_pipeline] = STATE(5220), + [sym_list] = STATE(4978), + [sym_negated_command] = STATE(4978), + [sym_test_command] = STATE(4978), + [sym_declaration_command] = STATE(4978), + [sym_unset_command] = STATE(4978), + [sym_command] = STATE(4978), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1036), + [sym_variable_assignments] = STATE(4978), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(839), + [anon_sym_done] = ACTIONS(853), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [91] = { - [aux_sym__terminated_statement] = STATE(105), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(4951), - [sym_for_statement] = STATE(4951), - [sym_c_style_for_statement] = STATE(4951), - [sym_while_statement] = STATE(4567), - [sym_if_statement] = STATE(4567), - [sym_case_statement] = STATE(4951), - [sym_function_definition] = STATE(4951), - [sym_compound_statement] = STATE(4951), - [sym_subshell] = STATE(4951), - [sym_pipeline] = STATE(5163), - [sym_list] = STATE(4951), - [sym_negated_command] = STATE(4951), - [sym_test_command] = STATE(4951), - [sym_declaration_command] = STATE(4951), - [sym_unset_command] = STATE(4951), - [sym_command] = STATE(4951), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1153), - [sym_variable_assignments] = STATE(4951), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [aux_sym__terminated_statement] = STATE(92), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4971), + [sym_for_statement] = STATE(4971), + [sym_c_style_for_statement] = STATE(4971), + [sym_while_statement] = STATE(4432), + [sym_if_statement] = STATE(4432), + [sym_case_statement] = STATE(4971), + [sym_function_definition] = STATE(4971), + [sym_compound_statement] = STATE(4971), + [sym_subshell] = STATE(4971), + [sym_pipeline] = STATE(5217), + [sym_list] = STATE(4971), + [sym_negated_command] = STATE(4971), + [sym_test_command] = STATE(4971), + [sym_declaration_command] = STATE(4971), + [sym_unset_command] = STATE(4971), + [sym_command] = STATE(4971), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1032), + [sym_variable_assignments] = STATE(4971), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(841), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_RBRACE] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [92] = { - [aux_sym__terminated_statement] = STATE(93), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(4993), - [sym_for_statement] = STATE(4993), - [sym_c_style_for_statement] = STATE(4993), - [sym_while_statement] = STATE(4489), - [sym_if_statement] = STATE(4489), - [sym_case_statement] = STATE(4993), - [sym_function_definition] = STATE(4993), - [sym_compound_statement] = STATE(4993), - [sym_subshell] = STATE(4993), - [sym_pipeline] = STATE(5122), - [sym_list] = STATE(4993), - [sym_negated_command] = STATE(4993), - [sym_test_command] = STATE(4993), - [sym_declaration_command] = STATE(4993), - [sym_unset_command] = STATE(4993), - [sym_command] = STATE(4993), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1030), - [sym_variable_assignments] = STATE(4993), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [aux_sym__terminated_statement] = STATE(71), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4971), + [sym_for_statement] = STATE(4971), + [sym_c_style_for_statement] = STATE(4971), + [sym_while_statement] = STATE(4432), + [sym_if_statement] = STATE(4432), + [sym_case_statement] = STATE(4971), + [sym_function_definition] = STATE(4971), + [sym_compound_statement] = STATE(4971), + [sym_subshell] = STATE(4971), + [sym_pipeline] = STATE(5217), + [sym_list] = STATE(4971), + [sym_negated_command] = STATE(4971), + [sym_test_command] = STATE(4971), + [sym_declaration_command] = STATE(4971), + [sym_unset_command] = STATE(4971), + [sym_command] = STATE(4971), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1032), + [sym_variable_assignments] = STATE(4971), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(843), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_RBRACE] = ACTIONS(857), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [93] = { - [aux_sym__terminated_statement] = STATE(62), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(4993), - [sym_for_statement] = STATE(4993), - [sym_c_style_for_statement] = STATE(4993), - [sym_while_statement] = STATE(4489), - [sym_if_statement] = STATE(4489), - [sym_case_statement] = STATE(4993), - [sym_function_definition] = STATE(4993), - [sym_compound_statement] = STATE(4993), - [sym_subshell] = STATE(4993), - [sym_pipeline] = STATE(5122), - [sym_list] = STATE(4993), - [sym_negated_command] = STATE(4993), - [sym_test_command] = STATE(4993), - [sym_declaration_command] = STATE(4993), - [sym_unset_command] = STATE(4993), - [sym_command] = STATE(4993), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1030), - [sym_variable_assignments] = STATE(4993), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [aux_sym__terminated_statement] = STATE(94), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4978), + [sym_for_statement] = STATE(4978), + [sym_c_style_for_statement] = STATE(4978), + [sym_while_statement] = STATE(4502), + [sym_if_statement] = STATE(4502), + [sym_case_statement] = STATE(4978), + [sym_function_definition] = STATE(4978), + [sym_compound_statement] = STATE(4978), + [sym_subshell] = STATE(4978), + [sym_pipeline] = STATE(5220), + [sym_list] = STATE(4978), + [sym_negated_command] = STATE(4978), + [sym_test_command] = STATE(4978), + [sym_declaration_command] = STATE(4978), + [sym_unset_command] = STATE(4978), + [sym_command] = STATE(4978), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1036), + [sym_variable_assignments] = STATE(4978), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(859), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(845), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [94] = { - [aux_sym__terminated_statement] = STATE(95), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(4951), - [sym_for_statement] = STATE(4951), - [sym_c_style_for_statement] = STATE(4951), - [sym_while_statement] = STATE(4567), - [sym_if_statement] = STATE(4567), - [sym_case_statement] = STATE(4951), - [sym_function_definition] = STATE(4951), - [sym_compound_statement] = STATE(4951), - [sym_subshell] = STATE(4951), - [sym_pipeline] = STATE(5163), - [sym_list] = STATE(4951), - [sym_negated_command] = STATE(4951), - [sym_test_command] = STATE(4951), - [sym_declaration_command] = STATE(4951), - [sym_unset_command] = STATE(4951), - [sym_command] = STATE(4951), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1153), - [sym_variable_assignments] = STATE(4951), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [aux_sym__terminated_statement] = STATE(72), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4978), + [sym_for_statement] = STATE(4978), + [sym_c_style_for_statement] = STATE(4978), + [sym_while_statement] = STATE(4502), + [sym_if_statement] = STATE(4502), + [sym_case_statement] = STATE(4978), + [sym_function_definition] = STATE(4978), + [sym_compound_statement] = STATE(4978), + [sym_subshell] = STATE(4978), + [sym_pipeline] = STATE(5220), + [sym_list] = STATE(4978), + [sym_negated_command] = STATE(4978), + [sym_test_command] = STATE(4978), + [sym_declaration_command] = STATE(4978), + [sym_unset_command] = STATE(4978), + [sym_command] = STATE(4978), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1036), + [sym_variable_assignments] = STATE(4978), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(847), + [anon_sym_done] = ACTIONS(861), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [95] = { - [aux_sym__terminated_statement] = STATE(105), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(4951), - [sym_for_statement] = STATE(4951), - [sym_c_style_for_statement] = STATE(4951), - [sym_while_statement] = STATE(4567), - [sym_if_statement] = STATE(4567), - [sym_case_statement] = STATE(4951), - [sym_function_definition] = STATE(4951), - [sym_compound_statement] = STATE(4951), - [sym_subshell] = STATE(4951), - [sym_pipeline] = STATE(5163), - [sym_list] = STATE(4951), - [sym_negated_command] = STATE(4951), - [sym_test_command] = STATE(4951), - [sym_declaration_command] = STATE(4951), - [sym_unset_command] = STATE(4951), - [sym_command] = STATE(4951), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1153), - [sym_variable_assignments] = STATE(4951), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [aux_sym__terminated_statement] = STATE(96), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4971), + [sym_for_statement] = STATE(4971), + [sym_c_style_for_statement] = STATE(4971), + [sym_while_statement] = STATE(4432), + [sym_if_statement] = STATE(4432), + [sym_case_statement] = STATE(4971), + [sym_function_definition] = STATE(4971), + [sym_compound_statement] = STATE(4971), + [sym_subshell] = STATE(4971), + [sym_pipeline] = STATE(5217), + [sym_list] = STATE(4971), + [sym_negated_command] = STATE(4971), + [sym_test_command] = STATE(4971), + [sym_declaration_command] = STATE(4971), + [sym_unset_command] = STATE(4971), + [sym_command] = STATE(4971), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1032), + [sym_variable_assignments] = STATE(4971), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(849), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_RBRACE] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [96] = { - [aux_sym__terminated_statement] = STATE(99), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(4993), - [sym_for_statement] = STATE(4993), - [sym_c_style_for_statement] = STATE(4993), - [sym_while_statement] = STATE(4489), - [sym_if_statement] = STATE(4489), - [sym_case_statement] = STATE(4993), - [sym_function_definition] = STATE(4993), - [sym_compound_statement] = STATE(4993), - [sym_subshell] = STATE(4993), - [sym_pipeline] = STATE(5122), - [sym_list] = STATE(4993), - [sym_negated_command] = STATE(4993), - [sym_test_command] = STATE(4993), - [sym_declaration_command] = STATE(4993), - [sym_unset_command] = STATE(4993), - [sym_command] = STATE(4993), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1030), - [sym_variable_assignments] = STATE(4993), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [aux_sym__terminated_statement] = STATE(71), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4971), + [sym_for_statement] = STATE(4971), + [sym_c_style_for_statement] = STATE(4971), + [sym_while_statement] = STATE(4432), + [sym_if_statement] = STATE(4432), + [sym_case_statement] = STATE(4971), + [sym_function_definition] = STATE(4971), + [sym_compound_statement] = STATE(4971), + [sym_subshell] = STATE(4971), + [sym_pipeline] = STATE(5217), + [sym_list] = STATE(4971), + [sym_negated_command] = STATE(4971), + [sym_test_command] = STATE(4971), + [sym_declaration_command] = STATE(4971), + [sym_unset_command] = STATE(4971), + [sym_command] = STATE(4971), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1032), + [sym_variable_assignments] = STATE(4971), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(851), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_RBRACE] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [97] = { - [sym__statements] = STATE(7043), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [aux_sym__terminated_statement] = STATE(98), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4978), + [sym_for_statement] = STATE(4978), + [sym_c_style_for_statement] = STATE(4978), + [sym_while_statement] = STATE(4502), + [sym_if_statement] = STATE(4502), + [sym_case_statement] = STATE(4978), + [sym_function_definition] = STATE(4978), + [sym_compound_statement] = STATE(4978), + [sym_subshell] = STATE(4978), + [sym_pipeline] = STATE(5220), + [sym_list] = STATE(4978), + [sym_negated_command] = STATE(4978), + [sym_test_command] = STATE(4978), + [sym_declaration_command] = STATE(4978), + [sym_unset_command] = STATE(4978), + [sym_command] = STATE(4978), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1036), + [sym_variable_assignments] = STATE(4978), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(867), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [98] = { - [sym__statements] = STATE(7034), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [aux_sym__terminated_statement] = STATE(72), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4978), + [sym_for_statement] = STATE(4978), + [sym_c_style_for_statement] = STATE(4978), + [sym_while_statement] = STATE(4502), + [sym_if_statement] = STATE(4502), + [sym_case_statement] = STATE(4978), + [sym_function_definition] = STATE(4978), + [sym_compound_statement] = STATE(4978), + [sym_subshell] = STATE(4978), + [sym_pipeline] = STATE(5220), + [sym_list] = STATE(4978), + [sym_negated_command] = STATE(4978), + [sym_test_command] = STATE(4978), + [sym_declaration_command] = STATE(4978), + [sym_unset_command] = STATE(4978), + [sym_command] = STATE(4978), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1036), + [sym_variable_assignments] = STATE(4978), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(869), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [99] = { - [aux_sym__terminated_statement] = STATE(62), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(4993), - [sym_for_statement] = STATE(4993), - [sym_c_style_for_statement] = STATE(4993), - [sym_while_statement] = STATE(4489), - [sym_if_statement] = STATE(4489), - [sym_case_statement] = STATE(4993), - [sym_function_definition] = STATE(4993), - [sym_compound_statement] = STATE(4993), - [sym_subshell] = STATE(4993), - [sym_pipeline] = STATE(5122), - [sym_list] = STATE(4993), - [sym_negated_command] = STATE(4993), - [sym_test_command] = STATE(4993), - [sym_declaration_command] = STATE(4993), - [sym_unset_command] = STATE(4993), - [sym_command] = STATE(4993), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1030), - [sym_variable_assignments] = STATE(4993), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [aux_sym__terminated_statement] = STATE(100), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4971), + [sym_for_statement] = STATE(4971), + [sym_c_style_for_statement] = STATE(4971), + [sym_while_statement] = STATE(4432), + [sym_if_statement] = STATE(4432), + [sym_case_statement] = STATE(4971), + [sym_function_definition] = STATE(4971), + [sym_compound_statement] = STATE(4971), + [sym_subshell] = STATE(4971), + [sym_pipeline] = STATE(5217), + [sym_list] = STATE(4971), + [sym_negated_command] = STATE(4971), + [sym_test_command] = STATE(4971), + [sym_declaration_command] = STATE(4971), + [sym_unset_command] = STATE(4971), + [sym_command] = STATE(4971), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1032), + [sym_variable_assignments] = STATE(4971), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_RBRACE] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [100] = { - [sym__statements] = STATE(7032), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [aux_sym__terminated_statement] = STATE(71), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4971), + [sym_for_statement] = STATE(4971), + [sym_c_style_for_statement] = STATE(4971), + [sym_while_statement] = STATE(4432), + [sym_if_statement] = STATE(4432), + [sym_case_statement] = STATE(4971), + [sym_function_definition] = STATE(4971), + [sym_compound_statement] = STATE(4971), + [sym_subshell] = STATE(4971), + [sym_pipeline] = STATE(5217), + [sym_list] = STATE(4971), + [sym_negated_command] = STATE(4971), + [sym_test_command] = STATE(4971), + [sym_declaration_command] = STATE(4971), + [sym_unset_command] = STATE(4971), + [sym_command] = STATE(4971), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1032), + [sym_variable_assignments] = STATE(4971), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_RBRACE] = ACTIONS(873), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [101] = { - [sym__statements] = STATE(6888), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2180), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [aux_sym__terminated_statement] = STATE(102), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4978), + [sym_for_statement] = STATE(4978), + [sym_c_style_for_statement] = STATE(4978), + [sym_while_statement] = STATE(4502), + [sym_if_statement] = STATE(4502), + [sym_case_statement] = STATE(4978), + [sym_function_definition] = STATE(4978), + [sym_compound_statement] = STATE(4978), + [sym_subshell] = STATE(4978), + [sym_pipeline] = STATE(5220), + [sym_list] = STATE(4978), + [sym_negated_command] = STATE(4978), + [sym_test_command] = STATE(4978), + [sym_declaration_command] = STATE(4978), + [sym_unset_command] = STATE(4978), + [sym_command] = STATE(4978), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1036), + [sym_variable_assignments] = STATE(4978), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(875), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(345), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [102] = { + [aux_sym__terminated_statement] = STATE(72), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4978), + [sym_for_statement] = STATE(4978), + [sym_c_style_for_statement] = STATE(4978), + [sym_while_statement] = STATE(4502), + [sym_if_statement] = STATE(4502), + [sym_case_statement] = STATE(4978), + [sym_function_definition] = STATE(4978), + [sym_compound_statement] = STATE(4978), + [sym_subshell] = STATE(4978), + [sym_pipeline] = STATE(5220), + [sym_list] = STATE(4978), + [sym_negated_command] = STATE(4978), + [sym_test_command] = STATE(4978), + [sym_declaration_command] = STATE(4978), + [sym_unset_command] = STATE(4978), + [sym_command] = STATE(4978), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1036), + [sym_variable_assignments] = STATE(4978), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(877), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(345), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [103] = { + [sym__statements] = STATE(7000), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -38541,7 +39026,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -38559,714 +39044,530 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), - }, - [102] = { - [aux_sym__terminated_statement] = STATE(34), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(5007), - [sym_for_statement] = STATE(5007), - [sym_c_style_for_statement] = STATE(5007), - [sym_while_statement] = STATE(4551), - [sym_if_statement] = STATE(4551), - [sym_case_statement] = STATE(5007), - [sym_function_definition] = STATE(5007), - [sym_compound_statement] = STATE(5007), - [sym_subshell] = STATE(5007), - [sym_pipeline] = STATE(5189), - [sym_list] = STATE(5007), - [sym_negated_command] = STATE(5007), - [sym_test_command] = STATE(5007), - [sym_declaration_command] = STATE(5007), - [sym_unset_command] = STATE(5007), - [sym_command] = STATE(5007), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1151), - [sym_variable_assignments] = STATE(5007), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_then] = ACTIONS(855), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [103] = { - [aux_sym__terminated_statement] = STATE(104), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(4951), - [sym_for_statement] = STATE(4951), - [sym_c_style_for_statement] = STATE(4951), - [sym_while_statement] = STATE(4567), - [sym_if_statement] = STATE(4567), - [sym_case_statement] = STATE(4951), - [sym_function_definition] = STATE(4951), - [sym_compound_statement] = STATE(4951), - [sym_subshell] = STATE(4951), - [sym_pipeline] = STATE(5163), - [sym_list] = STATE(4951), - [sym_negated_command] = STATE(4951), - [sym_test_command] = STATE(4951), - [sym_declaration_command] = STATE(4951), - [sym_unset_command] = STATE(4951), - [sym_command] = STATE(4951), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1153), - [sym_variable_assignments] = STATE(4951), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [104] = { + [sym__statements] = STATE(7178), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(857), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [104] = { - [aux_sym__terminated_statement] = STATE(105), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(4951), - [sym_for_statement] = STATE(4951), - [sym_c_style_for_statement] = STATE(4951), - [sym_while_statement] = STATE(4567), - [sym_if_statement] = STATE(4567), - [sym_case_statement] = STATE(4951), - [sym_function_definition] = STATE(4951), - [sym_compound_statement] = STATE(4951), - [sym_subshell] = STATE(4951), - [sym_pipeline] = STATE(5163), - [sym_list] = STATE(4951), - [sym_negated_command] = STATE(4951), - [sym_test_command] = STATE(4951), - [sym_declaration_command] = STATE(4951), - [sym_unset_command] = STATE(4951), - [sym_command] = STATE(4951), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1153), - [sym_variable_assignments] = STATE(4951), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [105] = { + [sym__statements] = STATE(7179), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(859), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), - }, - [105] = { - [aux_sym__terminated_statement] = STATE(105), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(4951), - [sym_for_statement] = STATE(4951), - [sym_c_style_for_statement] = STATE(4951), - [sym_while_statement] = STATE(4567), - [sym_if_statement] = STATE(4567), - [sym_case_statement] = STATE(4951), - [sym_function_definition] = STATE(4951), - [sym_compound_statement] = STATE(4951), - [sym_subshell] = STATE(4951), - [sym_pipeline] = STATE(5163), - [sym_list] = STATE(4951), - [sym_negated_command] = STATE(4951), - [sym_test_command] = STATE(4951), - [sym_declaration_command] = STATE(4951), - [sym_unset_command] = STATE(4951), - [sym_command] = STATE(4951), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1153), - [sym_variable_assignments] = STATE(4951), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(555), - [anon_sym_for] = ACTIONS(558), - [anon_sym_select] = ACTIONS(561), - [anon_sym_LPAREN_LPAREN] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_GT_GT] = ACTIONS(570), - [anon_sym_LPAREN] = ACTIONS(573), - [anon_sym_while] = ACTIONS(576), - [anon_sym_until] = ACTIONS(576), - [anon_sym_done] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), - [anon_sym_case] = ACTIONS(584), - [anon_sym_function] = ACTIONS(587), - [anon_sym_LBRACE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_LBRACK_LBRACK] = ACTIONS(599), - [anon_sym_declare] = ACTIONS(602), - [anon_sym_typeset] = ACTIONS(602), - [anon_sym_export] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_local] = ACTIONS(602), - [anon_sym_unset] = ACTIONS(605), - [anon_sym_unsetenv] = ACTIONS(605), - [anon_sym_AMP_GT] = ACTIONS(567), - [anon_sym_AMP_GT_GT] = ACTIONS(570), - [anon_sym_LT_AMP] = ACTIONS(567), - [anon_sym_GT_AMP] = ACTIONS(567), - [anon_sym_GT_PIPE] = ACTIONS(570), - [anon_sym_LT_AMP_DASH] = ACTIONS(608), - [anon_sym_GT_AMP_DASH] = ACTIONS(608), - [anon_sym_LT_LT_LT] = ACTIONS(611), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(614), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(617), - [anon_sym_DOLLAR] = ACTIONS(620), - [sym__special_character] = ACTIONS(623), - [anon_sym_DQUOTE] = ACTIONS(626), - [sym_raw_string] = ACTIONS(629), - [sym_ansi_c_string] = ACTIONS(629), - [aux_sym_number_token1] = ACTIONS(632), - [aux_sym_number_token2] = ACTIONS(635), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(638), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(641), - [anon_sym_BQUOTE] = ACTIONS(644), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(647), - [anon_sym_LT_LPAREN] = ACTIONS(650), - [anon_sym_GT_LPAREN] = ACTIONS(650), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(653), - [sym_variable_name] = ACTIONS(656), - [sym_test_operator] = ACTIONS(659), - [sym__brace_start] = ACTIONS(662), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [106] = { - [sym__statements] = STATE(7083), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [sym__statements] = STATE(7180), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [107] = { - [sym__statements] = STATE(6881), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4945), + [sym_for_statement] = STATE(4945), + [sym_c_style_for_statement] = STATE(4945), + [sym_while_statement] = STATE(4557), + [sym_if_statement] = STATE(4557), + [sym_case_statement] = STATE(4945), + [sym_function_definition] = STATE(4945), + [sym_compound_statement] = STATE(4945), + [sym_subshell] = STATE(4945), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4945), + [sym_negated_command] = STATE(4945), + [sym_test_command] = STATE(4945), + [sym_declaration_command] = STATE(4945), + [sym_unset_command] = STATE(4945), + [sym_command] = STATE(4945), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1034), + [sym_variable_assignments] = STATE(4945), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), + [anon_sym_then] = ACTIONS(879), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [108] = { - [sym__statements] = STATE(6880), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [aux_sym__terminated_statement] = STATE(72), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4978), + [sym_for_statement] = STATE(4978), + [sym_c_style_for_statement] = STATE(4978), + [sym_while_statement] = STATE(4502), + [sym_if_statement] = STATE(4502), + [sym_case_statement] = STATE(4978), + [sym_function_definition] = STATE(4978), + [sym_compound_statement] = STATE(4978), + [sym_subshell] = STATE(4978), + [sym_pipeline] = STATE(5220), + [sym_list] = STATE(4978), + [sym_negated_command] = STATE(4978), + [sym_test_command] = STATE(4978), + [sym_declaration_command] = STATE(4978), + [sym_unset_command] = STATE(4978), + [sym_command] = STATE(4978), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1036), + [sym_variable_assignments] = STATE(4978), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(881), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [109] = { - [sym__statements] = STATE(6859), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7298), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -39277,7 +39578,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -39295,70 +39596,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [110] = { - [sym__statements] = STATE(6831), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2179), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7441), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2040), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -39369,7 +39670,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -39387,162 +39688,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [111] = { - [sym__statements] = STATE(6823), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [sym__statements] = STATE(7444), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [112] = { - [sym__statements] = STATE(6914), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7445), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [113] = { + [sym__statements] = STATE(7446), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -39553,7 +39946,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -39571,162 +39964,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [113] = { - [sym__statements] = STATE(6822), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [114] = { + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4945), + [sym_for_statement] = STATE(4945), + [sym_c_style_for_statement] = STATE(4945), + [sym_while_statement] = STATE(4557), + [sym_if_statement] = STATE(4557), + [sym_case_statement] = STATE(4945), + [sym_function_definition] = STATE(4945), + [sym_compound_statement] = STATE(4945), + [sym_subshell] = STATE(4945), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4945), + [sym_negated_command] = STATE(4945), + [sym_test_command] = STATE(4945), + [sym_declaration_command] = STATE(4945), + [sym_unset_command] = STATE(4945), + [sym_command] = STATE(4945), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1034), + [sym_variable_assignments] = STATE(4945), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), + [anon_sym_then] = ACTIONS(883), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [114] = { - [sym__statements] = STATE(6927), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(1939), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [115] = { + [sym__statements] = STATE(7064), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -39737,7 +40130,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -39755,70 +40148,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [115] = { - [sym__statements] = STATE(6818), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [116] = { + [sym__statements] = STATE(7115), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2043), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -39829,7 +40222,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -39847,70 +40240,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [116] = { - [sym__statements] = STATE(6799), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2178), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [117] = { + [sym__statements] = STATE(7132), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [118] = { + [sym__statements] = STATE(7134), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [119] = { + [sym__statements] = STATE(7138), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -39921,7 +40498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -39939,346 +40516,346 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [117] = { - [sym__statements] = STATE(6930), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [120] = { + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4945), + [sym_for_statement] = STATE(4945), + [sym_c_style_for_statement] = STATE(4945), + [sym_while_statement] = STATE(4557), + [sym_if_statement] = STATE(4557), + [sym_case_statement] = STATE(4945), + [sym_function_definition] = STATE(4945), + [sym_compound_statement] = STATE(4945), + [sym_subshell] = STATE(4945), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4945), + [sym_negated_command] = STATE(4945), + [sym_test_command] = STATE(4945), + [sym_declaration_command] = STATE(4945), + [sym_unset_command] = STATE(4945), + [sym_command] = STATE(4945), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1034), + [sym_variable_assignments] = STATE(4945), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), + [anon_sym_then] = ACTIONS(885), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [118] = { - [sym__statements] = STATE(6934), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [121] = { + [aux_sym__terminated_statement] = STATE(63), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4945), + [sym_for_statement] = STATE(4945), + [sym_c_style_for_statement] = STATE(4945), + [sym_while_statement] = STATE(4557), + [sym_if_statement] = STATE(4557), + [sym_case_statement] = STATE(4945), + [sym_function_definition] = STATE(4945), + [sym_compound_statement] = STATE(4945), + [sym_subshell] = STATE(4945), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4945), + [sym_negated_command] = STATE(4945), + [sym_test_command] = STATE(4945), + [sym_declaration_command] = STATE(4945), + [sym_unset_command] = STATE(4945), + [sym_command] = STATE(4945), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1034), + [sym_variable_assignments] = STATE(4945), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), + [anon_sym_fi] = ACTIONS(887), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [119] = { - [sym__statements] = STATE(6794), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [122] = { + [sym__statements] = STATE(7498), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [120] = { - [sym__statements] = STATE(6937), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [123] = { + [sym__statements] = STATE(7606), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2045), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -40289,7 +40866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -40307,254 +40884,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [121] = { - [sym__statements] = STATE(6808), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [124] = { + [sym__statements] = STATE(7534), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [122] = { - [aux_sym__terminated_statement] = STATE(34), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(5007), - [sym_for_statement] = STATE(5007), - [sym_c_style_for_statement] = STATE(5007), - [sym_while_statement] = STATE(4551), - [sym_if_statement] = STATE(4551), - [sym_case_statement] = STATE(5007), - [sym_function_definition] = STATE(5007), - [sym_compound_statement] = STATE(5007), - [sym_subshell] = STATE(5007), - [sym_pipeline] = STATE(5189), - [sym_list] = STATE(5007), - [sym_negated_command] = STATE(5007), - [sym_test_command] = STATE(5007), - [sym_declaration_command] = STATE(5007), - [sym_unset_command] = STATE(5007), - [sym_command] = STATE(5007), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1151), - [sym_variable_assignments] = STATE(5007), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [125] = { + [sym__statements] = STATE(6937), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_then] = ACTIONS(861), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [123] = { - [sym__statements] = STATE(6801), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [126] = { + [sym__statements] = STATE(7131), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -40565,7 +41142,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -40583,70 +41160,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [124] = { - [sym__statements] = STATE(6849), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2177), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [127] = { + [sym__statements] = STATE(6957), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -40657,7 +41234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -40675,70 +41252,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [125] = { - [sym__statements] = STATE(7117), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [128] = { + [sym__statements] = STATE(6826), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2047), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -40749,7 +41326,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -40767,254 +41344,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [126] = { - [sym__statements] = STATE(6854), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [129] = { + [sym__statements] = STATE(6831), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [127] = { - [sym__statements] = STATE(6855), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [130] = { + [sym__statements] = STATE(6832), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [128] = { - [sym__statements] = STATE(7262), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2060), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [131] = { + [sym__statements] = STATE(6833), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -41025,7 +41602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -41043,254 +41620,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), - }, - [129] = { - [sym__statements] = STATE(7277), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), - }, - [130] = { - [sym__statements] = STATE(7321), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [131] = { - [sym__statements] = STATE(6857), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [132] = { + [sym__statements] = STATE(7455), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -41301,7 +41694,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -41319,70 +41712,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [132] = { - [sym__statements] = STATE(7286), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [133] = { + [sym__statements] = STATE(7003), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2048), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -41393,7 +41786,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -41411,162 +41804,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [133] = { - [aux_sym__terminated_statement] = STATE(34), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(5007), - [sym_for_statement] = STATE(5007), - [sym_c_style_for_statement] = STATE(5007), - [sym_while_statement] = STATE(4551), - [sym_if_statement] = STATE(4551), - [sym_case_statement] = STATE(5007), - [sym_function_definition] = STATE(5007), - [sym_compound_statement] = STATE(5007), - [sym_subshell] = STATE(5007), - [sym_pipeline] = STATE(5189), - [sym_list] = STATE(5007), - [sym_negated_command] = STATE(5007), - [sym_test_command] = STATE(5007), - [sym_declaration_command] = STATE(5007), - [sym_unset_command] = STATE(5007), - [sym_command] = STATE(5007), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1151), - [sym_variable_assignments] = STATE(5007), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [134] = { + [sym__statements] = STATE(7007), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_then] = ACTIONS(863), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [134] = { - [sym__statements] = STATE(6809), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2176), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [135] = { + [sym__statements] = STATE(7017), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [136] = { + [sym__statements] = STATE(7020), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -41577,7 +42062,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -41595,438 +42080,438 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [135] = { - [sym__statements] = STATE(6897), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [137] = { + [sym__statements] = STATE(7105), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [136] = { - [sym__statements] = STATE(7203), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [138] = { + [sym__statements] = STATE(7137), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2049), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [137] = { - [aux_sym__terminated_statement] = STATE(105), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(4951), - [sym_for_statement] = STATE(4951), - [sym_c_style_for_statement] = STATE(4951), - [sym_while_statement] = STATE(4567), - [sym_if_statement] = STATE(4567), - [sym_case_statement] = STATE(4951), - [sym_function_definition] = STATE(4951), - [sym_compound_statement] = STATE(4951), - [sym_subshell] = STATE(4951), - [sym_pipeline] = STATE(5163), - [sym_list] = STATE(4951), - [sym_negated_command] = STATE(4951), - [sym_test_command] = STATE(4951), - [sym_declaration_command] = STATE(4951), - [sym_unset_command] = STATE(4951), - [sym_command] = STATE(4951), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1153), - [sym_variable_assignments] = STATE(4951), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [139] = { + [sym__statements] = STATE(7143), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(865), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [138] = { - [sym__statements] = STATE(6911), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [140] = { + [sym__statements] = STATE(7148), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [139] = { - [sym__statements] = STATE(6915), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [141] = { + [sym__statements] = STATE(7151), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -42037,7 +42522,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -42055,70 +42540,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [140] = { - [sym__statements] = STATE(7147), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2175), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [142] = { + [sym__statements] = STATE(7234), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2050), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -42129,7 +42614,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -42147,346 +42632,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), - }, - [141] = { - [sym__statements] = STATE(7040), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [142] = { - [sym__statements] = STATE(7033), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [143] = { + [sym__statements] = STATE(7246), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [143] = { - [aux_sym__terminated_statement] = STATE(137), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(4951), - [sym_for_statement] = STATE(4951), - [sym_c_style_for_statement] = STATE(4951), - [sym_while_statement] = STATE(4567), - [sym_if_statement] = STATE(4567), - [sym_case_statement] = STATE(4951), - [sym_function_definition] = STATE(4951), - [sym_compound_statement] = STATE(4951), - [sym_subshell] = STATE(4951), - [sym_pipeline] = STATE(5163), - [sym_list] = STATE(4951), - [sym_negated_command] = STATE(4951), - [sym_test_command] = STATE(4951), - [sym_declaration_command] = STATE(4951), - [sym_unset_command] = STATE(4951), - [sym_command] = STATE(4951), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1153), - [sym_variable_assignments] = STATE(4951), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [144] = { + [sym__statements] = STATE(7248), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(867), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [144] = { - [sym__statements] = STATE(7092), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [145] = { + [sym__statements] = STATE(7249), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -42497,7 +42890,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -42515,70 +42908,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [145] = { - [sym__statements] = STATE(7350), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [146] = { + [sym__statements] = STATE(7320), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2051), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -42589,7 +42982,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -42607,162 +43000,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [146] = { - [sym__statements] = STATE(7093), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [147] = { + [sym__statements] = STATE(7326), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [147] = { - [sym__statements] = STATE(7144), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), + [148] = { + [sym__statements] = STATE(7327), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [149] = { + [sym__statements] = STATE(7328), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -42773,7 +43258,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -42791,70 +43276,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [148] = { - [sym__statements] = STATE(6951), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2120), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [150] = { + [sym__statements] = STATE(7397), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2052), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -42865,7 +43350,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -42883,346 +43368,346 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [149] = { - [sym__statements] = STATE(7250), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [151] = { + [sym__statements] = STATE(7406), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [150] = { - [sym__statements] = STATE(6943), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [152] = { + [sym__statements] = STATE(7413), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [151] = { - [sym__statements] = STATE(6850), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [153] = { + [sym__statements] = STATE(7415), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [152] = { - [sym__statements] = STATE(6893), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [154] = { + [sym__statements] = STATE(7458), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2053), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -43233,7 +43718,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -43251,254 +43736,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [153] = { - [aux_sym__terminated_statement] = STATE(34), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(5007), - [sym_for_statement] = STATE(5007), - [sym_c_style_for_statement] = STATE(5007), - [sym_while_statement] = STATE(4551), - [sym_if_statement] = STATE(4551), - [sym_case_statement] = STATE(5007), - [sym_function_definition] = STATE(5007), - [sym_compound_statement] = STATE(5007), - [sym_subshell] = STATE(5007), - [sym_pipeline] = STATE(5189), - [sym_list] = STATE(5007), - [sym_negated_command] = STATE(5007), - [sym_test_command] = STATE(5007), - [sym_declaration_command] = STATE(5007), - [sym_unset_command] = STATE(5007), - [sym_command] = STATE(5007), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1151), - [sym_variable_assignments] = STATE(5007), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [155] = { + [sym__statements] = STATE(7460), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_then] = ACTIONS(869), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [154] = { - [aux_sym__terminated_statement] = STATE(282), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(4993), - [sym_for_statement] = STATE(4993), - [sym_c_style_for_statement] = STATE(4993), - [sym_while_statement] = STATE(4489), - [sym_if_statement] = STATE(4489), - [sym_case_statement] = STATE(4993), - [sym_function_definition] = STATE(4993), - [sym_compound_statement] = STATE(4993), - [sym_subshell] = STATE(4993), - [sym_pipeline] = STATE(5122), - [sym_list] = STATE(4993), - [sym_negated_command] = STATE(4993), - [sym_test_command] = STATE(4993), - [sym_declaration_command] = STATE(4993), - [sym_unset_command] = STATE(4993), - [sym_command] = STATE(4993), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1030), - [sym_variable_assignments] = STATE(4993), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [156] = { + [sym__statements] = STATE(7461), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(871), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [155] = { - [sym__statements] = STATE(6917), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [157] = { + [sym__statements] = STATE(7462), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -43509,7 +43994,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -43527,254 +44012,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), - }, - [156] = { - [sym__statements] = STATE(7208), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), - }, - [157] = { - [sym__statements] = STATE(7091), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [158] = { - [sym__statements] = STATE(6879), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2164), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7509), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2054), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -43785,7 +44086,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -43803,254 +44104,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [159] = { - [sym__statements] = STATE(6878), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [sym__statements] = STATE(7515), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [160] = { - [sym__statements] = STATE(6877), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [sym__statements] = STATE(7517), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [161] = { - [sym__statements] = STATE(6872), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7519), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -44061,7 +44362,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -44079,70 +44380,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [162] = { - [sym__statements] = STATE(7165), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6838), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2055), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -44153,7 +44454,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -44171,254 +44472,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [163] = { - [sym__statements] = STATE(7293), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6934), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [164] = { - [sym__statements] = STATE(7200), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2171), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6989), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [165] = { - [sym__statements] = STATE(7256), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2187), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6996), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -44429,7 +44730,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -44447,70 +44748,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [166] = { - [sym__statements] = STATE(7148), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2185), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6818), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2056), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -44521,7 +44822,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -44539,438 +44840,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [167] = { - [sym__statements] = STATE(7153), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [sym__statements] = STATE(6821), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [168] = { - [sym__statements] = STATE(7209), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [sym__statements] = STATE(6827), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [169] = { - [sym__statements] = STATE(7211), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), - }, - [170] = { - [sym__statements] = STATE(7158), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), - }, - [171] = { - [sym__statements] = STATE(7167), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6829), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -44981,7 +45098,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -44999,70 +45116,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [172] = { - [sym__statements] = STATE(7224), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [170] = { + [sym__statements] = STATE(7005), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2057), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -45073,7 +45190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -45091,70 +45208,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), + }, + [171] = { + [sym__statements] = STATE(7026), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [172] = { + [sym__statements] = STATE(7045), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [173] = { - [sym__statements] = STATE(7053), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7048), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -45165,7 +45466,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -45183,70 +45484,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [174] = { - [sym__statements] = STATE(7336), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2200), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7295), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(1930), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -45257,7 +45558,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -45275,254 +45576,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [175] = { - [sym__statements] = STATE(7342), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [sym__statements] = STATE(7318), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [176] = { - [sym__statements] = STATE(7347), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [sym__statements] = STATE(7329), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [177] = { - [sym__statements] = STATE(7364), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7336), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -45533,7 +45834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -45551,70 +45852,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [178] = { - [sym__statements] = STATE(7299), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2170), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6798), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2059), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -45625,7 +45926,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -45643,162 +45944,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [179] = { - [sym__statements] = STATE(7441), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6804), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [180] = { - [sym__statements] = STATE(7599), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2228), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6805), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [181] = { + [sym__statements] = STATE(6808), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -45809,7 +46202,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -45827,162 +46220,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), - }, - [181] = { - [sym__statements] = STATE(7598), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [182] = { - [sym__statements] = STATE(7294), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6859), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2060), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -45993,7 +46294,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -46011,254 +46312,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [183] = { - [sym__statements] = STATE(7319), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [sym__statements] = STATE(6861), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [184] = { - [sym__statements] = STATE(7536), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [sym__statements] = STATE(6862), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [185] = { - [sym__statements] = STATE(7535), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6868), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -46269,7 +46570,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -46287,70 +46588,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [186] = { - [sym__statements] = STATE(7520), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2236), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6915), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2061), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -46361,7 +46662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -46379,254 +46680,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [187] = { - [sym__statements] = STATE(7518), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [sym__statements] = STATE(6919), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [188] = { - [sym__statements] = STATE(7515), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [sym__statements] = STATE(6922), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [189] = { - [sym__statements] = STATE(7502), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6928), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -46637,7 +46938,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -46655,70 +46956,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [190] = { - [sym__statements] = STATE(7460), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2262), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6972), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2062), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -46729,7 +47030,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -46747,438 +47048,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [191] = { - [sym__statements] = STATE(7323), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [sym__statements] = STATE(6976), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [192] = { - [sym__statements] = STATE(7458), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [sym__statements] = STATE(6977), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [193] = { - [sym__statements] = STATE(7457), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), - }, - [194] = { - [sym__statements] = STATE(7456), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), - }, - [195] = { - [sym__statements] = STATE(7334), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(6979), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -47189,7 +47306,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -47207,70 +47324,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [196] = { - [sym__statements] = STATE(7432), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2265), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [194] = { + [sym__statements] = STATE(7025), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2063), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -47281,7 +47398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -47299,254 +47416,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [197] = { - [sym__statements] = STATE(7430), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [195] = { + [sym__statements] = STATE(7027), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [198] = { - [sym__statements] = STATE(7429), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [196] = { + [sym__statements] = STATE(7028), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [199] = { - [sym__statements] = STATE(7403), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2169), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [197] = { + [sym__statements] = STATE(7032), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -47557,7 +47674,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -47575,70 +47692,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [200] = { - [sym__statements] = STATE(7426), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [198] = { + [sym__statements] = STATE(7070), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2064), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -47649,7 +47766,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -47667,70 +47784,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), + }, + [199] = { + [sym__statements] = STATE(7083), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [200] = { + [sym__statements] = STATE(7085), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [201] = { - [sym__statements] = STATE(7375), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2264), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7087), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -47741,7 +48042,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -47759,254 +48060,346 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [202] = { - [sym__statements] = STATE(7371), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [sym__statements] = STATE(7117), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2065), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [203] = { - [sym__statements] = STATE(7370), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [sym__statements] = STATE(7122), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [204] = { - [sym__statements] = STATE(7369), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7127), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [205] = { + [sym__statements] = STATE(7130), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -48017,7 +48410,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -48035,70 +48428,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [205] = { - [sym__statements] = STATE(7312), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2259), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [206] = { + [sym__statements] = STATE(7158), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2066), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -48109,7 +48502,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -48127,438 +48520,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), - }, - [206] = { - [sym__statements] = STATE(7307), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [207] = { - [sym__statements] = STATE(7305), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [sym__statements] = STATE(7162), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [208] = { - [sym__statements] = STATE(7414), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [sym__statements] = STATE(7168), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [209] = { - [sym__statements] = STATE(7423), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), - }, - [210] = { - [sym__statements] = STATE(7424), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7171), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -48569,7 +48778,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -48587,70 +48796,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [211] = { - [sym__statements] = STATE(7600), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2168), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [210] = { + [sym__statements] = STATE(7200), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2067), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -48661,7 +48870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -48679,254 +48888,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [212] = { - [sym__statements] = STATE(7606), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [211] = { + [sym__statements] = STATE(7209), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [213] = { - [sym__statements] = STATE(7602), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [212] = { + [sym__statements] = STATE(7210), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [214] = { - [sym__statements] = STATE(7304), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [213] = { + [sym__statements] = STATE(7213), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -48937,7 +49146,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -48955,70 +49164,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [215] = { - [sym__statements] = STATE(7246), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(1931), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [214] = { + [sym__statements] = STATE(7236), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2068), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -49029,7 +49238,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -49047,346 +49256,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [216] = { - [sym__statements] = STATE(7110), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), - }, - [217] = { - [sym__statements] = STATE(7438), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [215] = { + [sym__statements] = STATE(7238), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [218] = { - [sym__statements] = STATE(7215), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [216] = { + [sym__statements] = STATE(7239), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [219] = { - [sym__statements] = STATE(7210), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [217] = { + [sym__statements] = STATE(7242), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -49397,7 +49514,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -49415,70 +49532,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [220] = { - [sym__statements] = STATE(7161), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2255), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [218] = { + [sym__statements] = STATE(7266), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2069), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -49489,7 +49606,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -49507,254 +49624,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [221] = { - [sym__statements] = STATE(7156), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [219] = { + [sym__statements] = STATE(7274), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [222] = { - [sym__statements] = STATE(7155), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [220] = { + [sym__statements] = STATE(7275), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [223] = { - [sym__statements] = STATE(7154), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [221] = { + [sym__statements] = STATE(7276), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -49765,7 +49882,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -49783,70 +49900,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [224] = { - [sym__statements] = STATE(7081), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2223), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [222] = { + [sym__statements] = STATE(7302), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2070), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -49857,7 +49974,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -49875,346 +49992,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [225] = { - [sym__statements] = STATE(7075), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), - }, - [226] = { - [aux_sym__terminated_statement] = STATE(232), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(5007), - [sym_for_statement] = STATE(5007), - [sym_c_style_for_statement] = STATE(5007), - [sym_while_statement] = STATE(4551), - [sym_if_statement] = STATE(4551), - [sym_case_statement] = STATE(5007), - [sym_function_definition] = STATE(5007), - [sym_compound_statement] = STATE(5007), - [sym_subshell] = STATE(5007), - [sym_pipeline] = STATE(5189), - [sym_list] = STATE(5007), - [sym_negated_command] = STATE(5007), - [sym_test_command] = STATE(5007), - [sym_declaration_command] = STATE(5007), - [sym_unset_command] = STATE(5007), - [sym_command] = STATE(5007), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1151), - [sym_variable_assignments] = STATE(5007), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [223] = { + [sym__statements] = STATE(7306), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(873), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [227] = { - [sym__statements] = STATE(7070), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [224] = { + [sym__statements] = STATE(7307), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [228] = { - [sym__statements] = STATE(7067), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [225] = { + [sym__statements] = STATE(7308), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -50225,7 +50250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -50243,70 +50268,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [229] = { - [sym__statements] = STATE(6983), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2221), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [226] = { + [sym__statements] = STATE(7333), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2071), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -50317,7 +50342,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -50335,346 +50360,346 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [230] = { - [sym__statements] = STATE(6976), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [227] = { + [sym__statements] = STATE(7339), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [231] = { - [sym__statements] = STATE(6840), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [228] = { + [sym__statements] = STATE(7340), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [232] = { - [aux_sym__terminated_statement] = STATE(34), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(5007), - [sym_for_statement] = STATE(5007), - [sym_c_style_for_statement] = STATE(5007), - [sym_while_statement] = STATE(4551), - [sym_if_statement] = STATE(4551), - [sym_case_statement] = STATE(5007), - [sym_function_definition] = STATE(5007), - [sym_compound_statement] = STATE(5007), - [sym_subshell] = STATE(5007), - [sym_pipeline] = STATE(5189), - [sym_list] = STATE(5007), - [sym_negated_command] = STATE(5007), - [sym_test_command] = STATE(5007), - [sym_declaration_command] = STATE(5007), - [sym_unset_command] = STATE(5007), - [sym_command] = STATE(5007), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1151), - [sym_variable_assignments] = STATE(5007), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [229] = { + [sym__statements] = STATE(7341), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(875), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [233] = { - [sym__statements] = STATE(7531), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2167), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [230] = { + [sym__statements] = STATE(7371), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2072), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -50685,7 +50710,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -50703,162 +50728,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [234] = { - [aux_sym__terminated_statement] = STATE(34), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(5007), - [sym_for_statement] = STATE(5007), - [sym_c_style_for_statement] = STATE(5007), - [sym_while_statement] = STATE(4551), - [sym_if_statement] = STATE(4551), - [sym_case_statement] = STATE(5007), - [sym_function_definition] = STATE(5007), - [sym_compound_statement] = STATE(5007), - [sym_subshell] = STATE(5007), - [sym_pipeline] = STATE(5189), - [sym_list] = STATE(5007), - [sym_negated_command] = STATE(5007), - [sym_test_command] = STATE(5007), - [sym_declaration_command] = STATE(5007), - [sym_unset_command] = STATE(5007), - [sym_command] = STATE(5007), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1151), - [sym_variable_assignments] = STATE(5007), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [231] = { + [sym__statements] = STATE(7374), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_then] = ACTIONS(877), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [235] = { - [sym__statements] = STATE(6963), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [232] = { + [sym__statements] = STATE(7375), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [233] = { + [sym__statements] = STATE(7376), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -50869,7 +50986,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -50887,70 +51004,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [236] = { - [sym__statements] = STATE(6906), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2220), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [234] = { + [sym__statements] = STATE(7404), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2073), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -50961,7 +51078,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -50979,346 +51096,346 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [237] = { - [aux_sym__terminated_statement] = STATE(105), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(4951), - [sym_for_statement] = STATE(4951), - [sym_c_style_for_statement] = STATE(4951), - [sym_while_statement] = STATE(4567), - [sym_if_statement] = STATE(4567), - [sym_case_statement] = STATE(4951), - [sym_function_definition] = STATE(4951), - [sym_compound_statement] = STATE(4951), - [sym_subshell] = STATE(4951), - [sym_pipeline] = STATE(5163), - [sym_list] = STATE(4951), - [sym_negated_command] = STATE(4951), - [sym_test_command] = STATE(4951), - [sym_declaration_command] = STATE(4951), - [sym_unset_command] = STATE(4951), - [sym_command] = STATE(4951), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1153), - [sym_variable_assignments] = STATE(4951), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [235] = { + [sym__statements] = STATE(7407), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(879), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [238] = { - [sym__statements] = STATE(6903), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [236] = { + [sym__statements] = STATE(7410), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [239] = { - [sym__statements] = STATE(7529), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [237] = { + [sym__statements] = STATE(7411), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [240] = { - [sym__statements] = STATE(7427), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [238] = { + [sym__statements] = STATE(7431), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2074), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -51329,7 +51446,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -51347,162 +51464,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [241] = { - [sym__statements] = STATE(6899), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [239] = { + [sym__statements] = STATE(7434), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [242] = { - [sym__statements] = STATE(6896), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [240] = { + [sym__statements] = STATE(7435), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [241] = { + [sym__statements] = STATE(7436), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -51513,7 +51722,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -51531,70 +51740,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [243] = { - [sym__statements] = STATE(6815), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2219), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [242] = { + [sym__statements] = STATE(7450), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2075), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -51605,7 +51814,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -51623,438 +51832,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), - }, - [244] = { - [sym__statements] = STATE(6816), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), - }, - [245] = { - [sym__statements] = STATE(6819), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [246] = { - [sym__statements] = STATE(7527), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [243] = { + [sym__statements] = STATE(7452), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [247] = { - [sym__statements] = STATE(7300), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [244] = { + [sym__statements] = STATE(7453), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [248] = { - [sym__statements] = STATE(6821), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [245] = { + [sym__statements] = STATE(7454), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -52065,7 +52090,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -52083,70 +52108,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [249] = { - [sym__statements] = STATE(6861), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2217), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [246] = { + [sym__statements] = STATE(7468), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2076), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -52157,7 +52182,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -52175,70 +52200,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [250] = { - [sym__statements] = STATE(7526), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [247] = { + [sym__statements] = STATE(7470), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [248] = { + [sym__statements] = STATE(7471), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [249] = { + [sym__statements] = STATE(7473), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -52249,7 +52458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -52267,162 +52476,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [251] = { - [sym__statements] = STATE(6863), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), - }, - [252] = { - [sym__statements] = STATE(7509), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2165), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [250] = { + [sym__statements] = STATE(7497), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2077), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -52433,7 +52550,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -52451,254 +52568,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [253] = { - [sym__statements] = STATE(6864), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [251] = { + [sym__statements] = STATE(7499), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [254] = { - [sym__statements] = STATE(6867), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [252] = { + [sym__statements] = STATE(7500), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [255] = { - [sym__statements] = STATE(6902), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2133), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [253] = { + [sym__statements] = STATE(7521), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2078), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -52709,7 +52826,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -52727,254 +52844,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [256] = { - [sym__statements] = STATE(6905), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [254] = { + [sym__statements] = STATE(7524), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [257] = { - [sym__statements] = STATE(6907), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [255] = { + [sym__statements] = STATE(7525), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [258] = { - [sym__statements] = STATE(6909), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [256] = { + [sym__statements] = STATE(7528), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -52985,7 +53102,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -53003,254 +53120,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), - }, - [259] = { - [sym__statements] = STATE(7508), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), - }, - [260] = { - [sym__statements] = STATE(7507), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [261] = { - [sym__statements] = STATE(6924), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2207), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [257] = { + [sym__statements] = STATE(7492), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2079), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -53261,7 +53194,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -53279,254 +53212,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [262] = { - [sym__statements] = STATE(6929), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [258] = { + [sym__statements] = STATE(6811), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [263] = { - [sym__statements] = STATE(6932), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [259] = { + [sym__statements] = STATE(6874), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [264] = { - [sym__statements] = STATE(7506), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [260] = { + [sym__statements] = STATE(6901), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -53537,7 +53470,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -53555,70 +53488,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [265] = { - [sym__statements] = STATE(6938), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [261] = { + [sym__statements] = STATE(6854), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2080), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -53629,7 +53562,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -53647,254 +53580,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [266] = { - [sym__statements] = STATE(7048), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2206), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [262] = { + [sym__statements] = STATE(6883), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [267] = { - [sym__statements] = STATE(7050), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [263] = { + [sym__statements] = STATE(6885), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [268] = { - [sym__statements] = STATE(7500), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2163), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [264] = { + [sym__statements] = STATE(6899), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -53905,7 +53838,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -53923,346 +53856,346 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [269] = { - [sym__statements] = STATE(7499), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [265] = { + [sym__statements] = STATE(7188), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2081), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [270] = { - [sym__statements] = STATE(7498), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [266] = { + [sym__statements] = STATE(7225), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [271] = { - [sym__statements] = STATE(7058), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [267] = { + [sym__statements] = STATE(7253), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [272] = { - [sym__statements] = STATE(7060), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [268] = { + [sym__statements] = STATE(7277), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -54273,7 +54206,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -54291,70 +54224,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [273] = { - [sym__statements] = STATE(7497), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [269] = { + [sym__statements] = STATE(7518), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2082), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -54365,7 +54298,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -54383,70 +54316,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [274] = { - [sym__statements] = STATE(7492), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2159), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [270] = { + [sym__statements] = STATE(7535), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [271] = { + [sym__statements] = STATE(7599), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [272] = { + [sym__statements] = STATE(6793), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -54457,7 +54574,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -54475,254 +54592,346 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [275] = { - [sym__statements] = STATE(7072), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [273] = { + [sym__statements] = STATE(6847), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2083), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [276] = { - [sym__statements] = STATE(7077), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [274] = { + [sym__statements] = STATE(6856), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [277] = { - [sym__statements] = STATE(7078), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2076), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [275] = { + [sym__statements] = STATE(6865), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [276] = { + [sym__statements] = STATE(6872), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -54733,7 +54942,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -54751,70 +54960,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [278] = { - [sym__statements] = STATE(7194), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2153), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [277] = { + [sym__statements] = STATE(6930), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2084), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -54825,7 +55034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -54843,622 +55052,622 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [279] = { - [sym__statements] = STATE(7079), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [278] = { + [sym__statements] = STATE(6936), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [280] = { - [aux_sym__terminated_statement] = STATE(237), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(4951), - [sym_for_statement] = STATE(4951), - [sym_c_style_for_statement] = STATE(4951), - [sym_while_statement] = STATE(4567), - [sym_if_statement] = STATE(4567), - [sym_case_statement] = STATE(4951), - [sym_function_definition] = STATE(4951), - [sym_compound_statement] = STATE(4951), - [sym_subshell] = STATE(4951), - [sym_pipeline] = STATE(5163), - [sym_list] = STATE(4951), - [sym_negated_command] = STATE(4951), - [sym_test_command] = STATE(4951), - [sym_declaration_command] = STATE(4951), - [sym_unset_command] = STATE(4951), - [sym_command] = STATE(4951), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1153), - [sym_variable_assignments] = STATE(4951), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [279] = { + [sym__statements] = STATE(6941), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(881), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [281] = { - [sym__statements] = STATE(7488), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [280] = { + [sym__statements] = STATE(6944), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [282] = { - [aux_sym__terminated_statement] = STATE(62), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(4993), - [sym_for_statement] = STATE(4993), - [sym_c_style_for_statement] = STATE(4993), - [sym_while_statement] = STATE(4489), - [sym_if_statement] = STATE(4489), - [sym_case_statement] = STATE(4993), - [sym_function_definition] = STATE(4993), - [sym_compound_statement] = STATE(4993), - [sym_subshell] = STATE(4993), - [sym_pipeline] = STATE(5122), - [sym_list] = STATE(4993), - [sym_negated_command] = STATE(4993), - [sym_test_command] = STATE(4993), - [sym_declaration_command] = STATE(4993), - [sym_unset_command] = STATE(4993), - [sym_command] = STATE(4993), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1030), - [sym_variable_assignments] = STATE(4993), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [281] = { + [sym__statements] = STATE(7021), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2085), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(883), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [283] = { - [sym__statements] = STATE(7485), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [282] = { + [sym__statements] = STATE(7036), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [284] = { - [aux_sym__terminated_statement] = STATE(290), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(4993), - [sym_for_statement] = STATE(4993), - [sym_c_style_for_statement] = STATE(4993), - [sym_while_statement] = STATE(4489), - [sym_if_statement] = STATE(4489), - [sym_case_statement] = STATE(4993), - [sym_function_definition] = STATE(4993), - [sym_compound_statement] = STATE(4993), - [sym_subshell] = STATE(4993), - [sym_pipeline] = STATE(5122), - [sym_list] = STATE(4993), - [sym_negated_command] = STATE(4993), - [sym_test_command] = STATE(4993), - [sym_declaration_command] = STATE(4993), - [sym_unset_command] = STATE(4993), - [sym_command] = STATE(4993), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1030), - [sym_variable_assignments] = STATE(4993), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [283] = { + [sym__statements] = STATE(7038), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(885), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [285] = { - [sym__statements] = STATE(7484), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [284] = { + [sym__statements] = STATE(7040), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -55469,7 +55678,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -55487,70 +55696,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [286] = { - [sym__statements] = STATE(7084), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2078), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [285] = { + [sym__statements] = STATE(7099), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2086), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -55561,7 +55770,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -55579,70 +55788,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), + }, + [286] = { + [sym__statements] = STATE(7126), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [287] = { - [sym__statements] = STATE(7475), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2157), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7139), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [288] = { + [sym__statements] = STATE(7147), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -55653,7 +56046,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -55671,438 +56064,438 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [288] = { - [sym__statements] = STATE(7085), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [289] = { + [sym__statements] = STATE(7245), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2087), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [289] = { - [sym__statements] = STATE(7216), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [290] = { + [sym__statements] = STATE(7257), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [290] = { - [aux_sym__terminated_statement] = STATE(62), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(4993), - [sym_for_statement] = STATE(4993), - [sym_c_style_for_statement] = STATE(4993), - [sym_while_statement] = STATE(4489), - [sym_if_statement] = STATE(4489), - [sym_case_statement] = STATE(4993), - [sym_function_definition] = STATE(4993), - [sym_compound_statement] = STATE(4993), - [sym_subshell] = STATE(4993), - [sym_pipeline] = STATE(5122), - [sym_list] = STATE(4993), - [sym_negated_command] = STATE(4993), - [sym_test_command] = STATE(4993), - [sym_declaration_command] = STATE(4993), - [sym_unset_command] = STATE(4993), - [sym_command] = STATE(4993), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1030), - [sym_variable_assignments] = STATE(4993), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [291] = { + [sym__statements] = STATE(7258), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(887), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [291] = { - [sym__statements] = STATE(7086), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [292] = { + [sym__statements] = STATE(7263), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [292] = { - [sym__statements] = STATE(7088), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2079), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [293] = { + [sym__statements] = STATE(7356), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2088), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -56113,7 +56506,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -56131,162 +56524,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [293] = { - [sym__statements] = STATE(7095), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [294] = { + [sym__statements] = STATE(7384), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [294] = { - [sym__statements] = STATE(7230), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [295] = { + [sym__statements] = STATE(7387), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [296] = { + [sym__statements] = STATE(7412), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -56297,7 +56782,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -56315,162 +56800,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [295] = { - [sym__statements] = STATE(7474), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), - }, - [296] = { - [sym__statements] = STATE(7378), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2196), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [297] = { + [sym__statements] = STATE(7505), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2089), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -56481,7 +56874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -56499,254 +56892,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [297] = { - [sym__statements] = STATE(7399), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [298] = { + [sym__statements] = STATE(7530), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [298] = { - [sym__statements] = STATE(7096), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [299] = { + [sym__statements] = STATE(7531), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [299] = { - [sym__statements] = STATE(7097), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2082), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [300] = { + [sym__statements] = STATE(7532), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -56757,7 +57150,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -56775,254 +57168,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), - }, - [300] = { - [sym__statements] = STATE(7107), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [301] = { - [sym__statements] = STATE(7109), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [sym__statements] = STATE(6813), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2090), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), - }, - [302] = { - [sym__statements] = STATE(7111), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2083), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -57033,7 +57242,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -57051,254 +57260,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [303] = { - [sym__statements] = STATE(7118), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [302] = { + [sym__statements] = STATE(6815), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [304] = { - [sym__statements] = STATE(7119), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [303] = { + [sym__statements] = STATE(6816), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [305] = { - [sym__statements] = STATE(7125), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2084), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [304] = { + [sym__statements] = STATE(6817), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -57309,7 +57518,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -57327,254 +57536,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [306] = { - [sym__statements] = STATE(7130), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), - }, - [307] = { - [sym__statements] = STATE(7132), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), - }, - [308] = { - [sym__statements] = STATE(7133), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2085), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [305] = { + [sym__statements] = STATE(6840), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2091), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -57585,7 +57610,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -57603,254 +57628,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [309] = { - [sym__statements] = STATE(7138), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [306] = { + [sym__statements] = STATE(6842), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [310] = { - [sym__statements] = STATE(7139), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [307] = { + [sym__statements] = STATE(6843), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [311] = { - [sym__statements] = STATE(7140), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2088), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [308] = { + [sym__statements] = STATE(6844), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -57861,7 +57886,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -57879,254 +57904,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), - }, - [312] = { - [sym__statements] = STATE(7151), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), - }, - [313] = { - [sym__statements] = STATE(7152), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [314] = { - [sym__statements] = STATE(7160), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2096), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [309] = { + [sym__statements] = STATE(6867), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2092), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -58137,7 +57978,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -58155,254 +57996,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [315] = { - [sym__statements] = STATE(7166), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [310] = { + [sym__statements] = STATE(6869), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [316] = { - [sym__statements] = STATE(7168), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [311] = { + [sym__statements] = STATE(6870), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [317] = { - [sym__statements] = STATE(7169), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2097), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [312] = { + [sym__statements] = STATE(6871), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -58413,7 +58254,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -58431,254 +58272,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), - }, - [318] = { - [sym__statements] = STATE(7173), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), - }, - [319] = { - [sym__statements] = STATE(7174), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [320] = { - [sym__statements] = STATE(7175), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2098), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [313] = { + [sym__statements] = STATE(6894), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2093), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -58689,7 +58346,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -58707,254 +58364,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [321] = { - [sym__statements] = STATE(7180), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [314] = { + [sym__statements] = STATE(6896), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [322] = { - [sym__statements] = STATE(7182), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [315] = { + [sym__statements] = STATE(6897), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [323] = { - [sym__statements] = STATE(7186), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2099), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [316] = { + [sym__statements] = STATE(6898), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -58965,7 +58622,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -58983,254 +58640,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [324] = { - [sym__statements] = STATE(7189), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), - }, - [325] = { - [sym__statements] = STATE(7190), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), - }, - [326] = { - [sym__statements] = STATE(7195), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2101), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [317] = { + [sym__statements] = STATE(6921), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2094), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -59241,7 +58714,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -59259,254 +58732,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [327] = { - [sym__statements] = STATE(7201), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [318] = { + [sym__statements] = STATE(6923), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [328] = { - [sym__statements] = STATE(7202), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [319] = { + [sym__statements] = STATE(6924), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [329] = { - [sym__statements] = STATE(7204), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2102), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [320] = { + [sym__statements] = STATE(6926), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -59517,7 +58990,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -59535,254 +59008,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), - }, - [330] = { - [sym__statements] = STATE(7212), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [331] = { - [sym__statements] = STATE(7214), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), - }, - [332] = { - [sym__statements] = STATE(7217), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2104), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [321] = { + [sym__statements] = STATE(6943), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2095), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -59793,7 +59082,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -59811,254 +59100,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [333] = { - [sym__statements] = STATE(7228), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [322] = { + [sym__statements] = STATE(6945), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [334] = { - [sym__statements] = STATE(7229), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [323] = { + [sym__statements] = STATE(6947), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [335] = { - [sym__statements] = STATE(7231), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2110), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [324] = { + [sym__statements] = STATE(6948), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -60069,7 +59358,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -60087,162 +59376,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [336] = { - [sym__statements] = STATE(7400), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), - }, - [337] = { - [sym__statements] = STATE(7249), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [325] = { + [sym__statements] = STATE(6965), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2096), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -60253,7 +59450,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -60271,162 +59468,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [338] = { - [sym__statements] = STATE(7252), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [326] = { + [sym__statements] = STATE(6968), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [339] = { - [sym__statements] = STATE(7405), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [327] = { + [sym__statements] = STATE(6969), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [328] = { + [sym__statements] = STATE(6970), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -60437,7 +59726,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -60455,70 +59744,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [340] = { - [sym__statements] = STATE(6918), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2195), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [329] = { + [sym__statements] = STATE(6987), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2097), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -60529,7 +59818,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -60547,346 +59836,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), - }, - [341] = { - [sym__statements] = STATE(6827), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [342] = { - [sym__statements] = STATE(6795), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [330] = { + [sym__statements] = STATE(6990), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [343] = { - [sym__statements] = STATE(7253), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [331] = { + [sym__statements] = STATE(6991), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [344] = { - [sym__statements] = STATE(7254), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2112), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [332] = { + [sym__statements] = STATE(6993), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -60897,7 +60094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -60915,70 +60112,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [345] = { - [sym__statements] = STATE(7264), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [333] = { + [sym__statements] = STATE(7010), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2098), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -60989,7 +60186,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -61007,254 +60204,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [346] = { - [sym__statements] = STATE(7266), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [334] = { + [sym__statements] = STATE(7012), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [347] = { - [sym__statements] = STATE(7267), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [335] = { + [sym__statements] = STATE(7013), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [348] = { - [sym__statements] = STATE(7270), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2128), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [336] = { + [sym__statements] = STATE(7014), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -61265,7 +60462,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -61283,70 +60480,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [349] = { - [sym__statements] = STATE(7279), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [337] = { + [sym__statements] = STATE(7031), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2099), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -61357,7 +60554,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -61375,70 +60572,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [350] = { - [sym__statements] = STATE(6804), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [338] = { + [sym__statements] = STATE(7033), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [339] = { + [sym__statements] = STATE(7034), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [340] = { + [sym__statements] = STATE(7035), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -61449,7 +60830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -61467,70 +60848,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [351] = { - [sym__statements] = STATE(7522), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2194), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [341] = { + [sym__statements] = STATE(7052), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2100), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -61541,7 +60922,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -61559,346 +60940,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [352] = { - [sym__statements] = STATE(7280), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), - }, - [353] = { - [sym__statements] = STATE(7473), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [342] = { + [sym__statements] = STATE(7054), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [354] = { - [sym__statements] = STATE(7467), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [343] = { + [sym__statements] = STATE(7055), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [355] = { - [sym__statements] = STATE(7462), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [344] = { + [sym__statements] = STATE(7056), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -61909,7 +61198,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -61927,162 +61216,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [356] = { - [sym__statements] = STATE(7472), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), - }, - [357] = { - [sym__statements] = STATE(7471), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [345] = { + [sym__statements] = STATE(7073), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2101), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -62093,7 +61290,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -62111,254 +61308,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [358] = { - [sym__statements] = STATE(7282), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [346] = { + [sym__statements] = STATE(7075), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [359] = { - [sym__statements] = STATE(7379), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2193), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [347] = { + [sym__statements] = STATE(7080), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [360] = { - [sym__statements] = STATE(7283), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2141), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [348] = { + [sym__statements] = STATE(7081), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -62369,7 +61566,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -62387,70 +61584,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [361] = { - [sym__statements] = STATE(7288), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [349] = { + [sym__statements] = STATE(7098), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2102), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -62461,7 +61658,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -62479,438 +61676,346 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), - }, - [362] = { - [sym__statements] = STATE(7289), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [363] = { - [sym__statements] = STATE(7227), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [350] = { + [sym__statements] = STATE(7101), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [364] = { - [sym__statements] = STATE(7290), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [351] = { + [sym__statements] = STATE(7102), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [365] = { - [sym__statements] = STATE(7335), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [352] = { + [sym__statements] = STATE(7103), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [366] = { - [sym__statements] = STATE(7333), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [353] = { + [sym__statements] = STATE(7120), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2103), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -62921,7 +62026,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -62939,70 +62044,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [367] = { - [sym__statements] = STATE(7295), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2136), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [354] = { + [sym__statements] = STATE(7123), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [355] = { + [sym__statements] = STATE(7124), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [356] = { + [sym__statements] = STATE(7125), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -63013,7 +62302,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -63031,70 +62320,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [368] = { - [sym__statements] = STATE(7310), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [357] = { + [sym__statements] = STATE(7141), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2104), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -63105,7 +62394,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -63123,254 +62412,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [369] = { - [sym__statements] = STATE(7311), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [358] = { + [sym__statements] = STATE(7144), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [370] = { - [sym__statements] = STATE(7314), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [359] = { + [sym__statements] = STATE(7145), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [371] = { - [sym__statements] = STATE(7316), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2140), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [360] = { + [sym__statements] = STATE(7146), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -63381,7 +62670,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -63399,70 +62688,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [372] = { - [sym__statements] = STATE(7325), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [361] = { + [sym__statements] = STATE(7161), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2105), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -63473,7 +62762,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -63491,162 +62780,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [373] = { - [sym__statements] = STATE(7327), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [362] = { + [sym__statements] = STATE(7164), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [374] = { - [sym__statements] = STATE(7306), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2189), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [363] = { + [sym__statements] = STATE(7165), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [364] = { + [sym__statements] = STATE(7166), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -63657,7 +63038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -63675,70 +63056,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [375] = { - [sym__statements] = STATE(7183), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [365] = { + [sym__statements] = STATE(7182), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2106), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -63749,7 +63130,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -63767,70 +63148,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [376] = { - [sym__statements] = STATE(7329), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2212), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [366] = { + [sym__statements] = STATE(7185), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [367] = { + [sym__statements] = STATE(7186), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [368] = { + [sym__statements] = STATE(7187), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -63841,7 +63406,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -63859,70 +63424,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [377] = { - [sym__statements] = STATE(7338), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [369] = { + [sym__statements] = STATE(7202), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2107), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -63933,7 +63498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -63951,346 +63516,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [378] = { - [sym__statements] = STATE(7339), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), - }, - [379] = { - [sym__statements] = STATE(7340), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [370] = { + [sym__statements] = STATE(7206), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [380] = { - [sym__statements] = STATE(7341), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2142), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [371] = { + [sym__statements] = STATE(7207), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [381] = { - [sym__statements] = STATE(7357), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [372] = { + [sym__statements] = STATE(7218), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2108), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -64301,7 +63774,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -64319,254 +63792,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [382] = { - [sym__statements] = STATE(7358), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [373] = { + [sym__statements] = STATE(7220), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [383] = { - [sym__statements] = STATE(7359), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [374] = { + [sym__statements] = STATE(7221), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [384] = { - [sym__statements] = STATE(7360), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2143), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [375] = { + [sym__statements] = STATE(7229), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2109), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -64577,7 +64050,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -64595,70 +64068,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [385] = { - [sym__statements] = STATE(7366), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [376] = { + [sym__statements] = STATE(7231), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [377] = { + [sym__statements] = STATE(7233), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [378] = { + [sym__statements] = STATE(7241), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2110), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -64669,7 +64326,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -64687,254 +64344,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [386] = { - [sym__statements] = STATE(7367), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [379] = { + [sym__statements] = STATE(7243), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [387] = { - [sym__statements] = STATE(7368), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [380] = { + [sym__statements] = STATE(7244), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [388] = { - [sym__statements] = STATE(7372), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2144), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [381] = { + [sym__statements] = STATE(7252), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2111), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -64945,7 +64602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -64963,70 +64620,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [389] = { - [sym__statements] = STATE(7382), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [382] = { + [sym__statements] = STATE(7254), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [383] = { + [sym__statements] = STATE(7255), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [384] = { + [sym__statements] = STATE(7265), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2112), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -65037,7 +64878,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -65055,254 +64896,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [390] = { - [sym__statements] = STATE(7383), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [385] = { + [sym__statements] = STATE(7269), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [391] = { - [sym__statements] = STATE(7384), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [386] = { + [sym__statements] = STATE(7270), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [392] = { - [sym__statements] = STATE(7385), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2146), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [387] = { + [sym__statements] = STATE(7279), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2113), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -65313,7 +65154,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -65331,70 +65172,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [393] = { - [sym__statements] = STATE(7388), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [388] = { + [sym__statements] = STATE(7281), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [389] = { + [sym__statements] = STATE(7282), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [390] = { + [sym__statements] = STATE(7289), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2114), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -65405,7 +65430,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -65423,254 +65448,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [394] = { - [sym__statements] = STATE(7390), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [391] = { + [sym__statements] = STATE(7292), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [395] = { - [sym__statements] = STATE(7391), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [392] = { + [sym__statements] = STATE(7293), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [396] = { - [sym__statements] = STATE(7394), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2148), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [393] = { + [sym__statements] = STATE(7301), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2115), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -65681,7 +65706,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -65699,70 +65724,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [397] = { - [sym__statements] = STATE(7407), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [394] = { + [sym__statements] = STATE(7303), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [395] = { + [sym__statements] = STATE(7304), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [396] = { + [sym__statements] = STATE(7311), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2116), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -65773,7 +65982,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -65791,254 +66000,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [398] = { - [sym__statements] = STATE(7409), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [397] = { + [sym__statements] = STATE(7313), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [399] = { - [sym__statements] = STATE(7410), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [398] = { + [sym__statements] = STATE(7314), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [400] = { - [sym__statements] = STATE(7411), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2149), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [399] = { + [sym__statements] = STATE(7322), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2117), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -66049,7 +66258,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -66067,70 +66276,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), + }, + [400] = { + [sym__statements] = STATE(7324), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [401] = { - [sym__statements] = STATE(7418), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7325), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [402] = { + [sym__statements] = STATE(7332), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2118), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -66141,7 +66534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -66159,346 +66552,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), - }, - [402] = { - [sym__statements] = STATE(7419), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [403] = { - [sym__statements] = STATE(7420), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [sym__statements] = STATE(7334), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [404] = { - [sym__statements] = STATE(7421), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2150), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7335), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [405] = { - [sym__statements] = STATE(7428), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7344), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2119), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -66509,7 +66810,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -66527,254 +66828,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [406] = { - [sym__statements] = STATE(7431), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [sym__statements] = STATE(7346), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [407] = { - [sym__statements] = STATE(7434), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [sym__statements] = STATE(7347), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [408] = { - [sym__statements] = STATE(7436), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2151), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7355), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2120), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -66785,7 +67086,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -66803,530 +67104,530 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [409] = { - [sym__statements] = STATE(7445), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7357), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [410] = { - [sym__statements] = STATE(7301), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [sym__statements] = STATE(7358), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [411] = { - [sym__statements] = STATE(7446), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [sym__statements] = STATE(7360), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2121), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [412] = { - [sym__statements] = STATE(7447), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [sym__statements] = STATE(7362), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [413] = { - [sym__statements] = STATE(7448), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2070), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7363), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [414] = { - [sym__statements] = STATE(7454), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7364), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2122), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -67337,7 +67638,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -67355,254 +67656,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [415] = { - [sym__statements] = STATE(7455), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [sym__statements] = STATE(7366), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [416] = { - [sym__statements] = STATE(7459), - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4662), - [sym_for_statement] = STATE(4662), - [sym_c_style_for_statement] = STATE(4662), - [sym_while_statement] = STATE(4314), - [sym_if_statement] = STATE(4314), - [sym_case_statement] = STATE(4662), - [sym_function_definition] = STATE(4662), - [sym_compound_statement] = STATE(4662), - [sym_subshell] = STATE(4662), - [sym_pipeline] = STATE(5070), - [sym_list] = STATE(4662), - [sym_negated_command] = STATE(4662), - [sym_test_command] = STATE(4662), - [sym_declaration_command] = STATE(4662), - [sym_unset_command] = STATE(4662), - [sym_command] = STATE(4662), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4662), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [sym__statements] = STATE(7367), + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4656), + [sym_for_statement] = STATE(4656), + [sym_c_style_for_statement] = STATE(4656), + [sym_while_statement] = STATE(4396), + [sym_if_statement] = STATE(4396), + [sym_case_statement] = STATE(4656), + [sym_function_definition] = STATE(4656), + [sym_compound_statement] = STATE(4656), + [sym_subshell] = STATE(4656), + [sym_pipeline] = STATE(5037), + [sym_list] = STATE(4656), + [sym_negated_command] = STATE(4656), + [sym_test_command] = STATE(4656), + [sym_declaration_command] = STATE(4656), + [sym_unset_command] = STATE(4656), + [sym_command] = STATE(4656), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1025), + [sym_variable_assignments] = STATE(4656), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [417] = { - [sym__statements] = STATE(7463), - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4797), - [sym_for_statement] = STATE(4797), - [sym_c_style_for_statement] = STATE(4797), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4797), - [sym_function_definition] = STATE(4797), - [sym_compound_statement] = STATE(4797), - [sym_subshell] = STATE(4797), - [sym_pipeline] = STATE(5054), - [sym_list] = STATE(4797), - [sym_negated_command] = STATE(4797), - [sym_test_command] = STATE(4797), - [sym_declaration_command] = STATE(4797), - [sym_unset_command] = STATE(4797), - [sym_command] = STATE(4797), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(945), - [sym_variable_assignments] = STATE(4797), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(1930), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(423), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statements] = STATE(7501), + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4635), + [sym_for_statement] = STATE(4635), + [sym_c_style_for_statement] = STATE(4635), + [sym_while_statement] = STATE(4398), + [sym_if_statement] = STATE(4398), + [sym_case_statement] = STATE(4635), + [sym_function_definition] = STATE(4635), + [sym_compound_statement] = STATE(4635), + [sym_subshell] = STATE(4635), + [sym_pipeline] = STATE(5071), + [sym_list] = STATE(4635), + [sym_negated_command] = STATE(4635), + [sym_test_command] = STATE(4635), + [sym_declaration_command] = STATE(4635), + [sym_unset_command] = STATE(4635), + [sym_command] = STATE(4635), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(983), + [sym_variable_assignments] = STATE(4635), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(85), [anon_sym_GT] = ACTIONS(85), [anon_sym_GT_GT] = ACTIONS(87), @@ -67613,7 +67914,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(25), [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym_declare] = ACTIONS(95), @@ -67631,156 +67932,338 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(99), [anon_sym_GT_AMP_DASH] = ACTIONS(99), [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(135), [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, [418] = { - [aux_sym__terminated_statement] = STATE(234), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(5007), - [sym_for_statement] = STATE(5007), - [sym_c_style_for_statement] = STATE(5007), - [sym_while_statement] = STATE(4551), - [sym_if_statement] = STATE(4551), - [sym_case_statement] = STATE(5007), - [sym_function_definition] = STATE(5007), - [sym_compound_statement] = STATE(5007), - [sym_subshell] = STATE(5007), - [sym_pipeline] = STATE(5189), - [sym_list] = STATE(5007), - [sym_negated_command] = STATE(5007), - [sym_test_command] = STATE(5007), - [sym_declaration_command] = STATE(5007), - [sym_unset_command] = STATE(5007), - [sym_command] = STATE(5007), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1151), - [sym_variable_assignments] = STATE(5007), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [aux_sym__terminated_statement] = STATE(49), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4945), + [sym_for_statement] = STATE(4945), + [sym_c_style_for_statement] = STATE(4945), + [sym_while_statement] = STATE(4557), + [sym_if_statement] = STATE(4557), + [sym_case_statement] = STATE(4945), + [sym_function_definition] = STATE(4945), + [sym_compound_statement] = STATE(4945), + [sym_subshell] = STATE(4945), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4945), + [sym_negated_command] = STATE(4945), + [sym_test_command] = STATE(4945), + [sym_declaration_command] = STATE(4945), + [sym_unset_command] = STATE(4945), + [sym_command] = STATE(4945), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1034), + [sym_variable_assignments] = STATE(4945), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, [419] = { - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(4928), - [sym_for_statement] = STATE(4928), - [sym_c_style_for_statement] = STATE(4928), - [sym_while_statement] = STATE(4415), - [sym_if_statement] = STATE(4415), - [sym_case_statement] = STATE(4928), - [sym_function_definition] = STATE(4928), - [sym_compound_statement] = STATE(4928), - [sym_subshell] = STATE(4928), - [sym_pipeline] = STATE(5248), - [sym_list] = STATE(4928), - [sym_negated_command] = STATE(4928), - [sym_test_command] = STATE(4928), - [sym_declaration_command] = STATE(4928), - [sym_unset_command] = STATE(4928), - [sym_command] = STATE(4928), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1036), - [sym_variable_assignments] = STATE(4928), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(419), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4512), + [sym_for_statement] = STATE(4512), + [sym_c_style_for_statement] = STATE(4512), + [sym_while_statement] = STATE(4231), + [sym_if_statement] = STATE(4231), + [sym_case_statement] = STATE(4512), + [sym_function_definition] = STATE(4512), + [sym_compound_statement] = STATE(4512), + [sym_subshell] = STATE(4512), + [sym_pipeline] = STATE(5023), + [sym_list] = STATE(4512), + [sym_negated_command] = STATE(4512), + [sym_test_command] = STATE(4512), + [sym_declaration_command] = STATE(4512), + [sym_unset_command] = STATE(4512), + [sym_command] = STATE(4512), + [sym_command_name] = STATE(531), + [sym_variable_assignment] = STATE(846), + [sym_variable_assignments] = STATE(4512), + [sym_subscript] = STATE(6746), + [sym_file_redirect] = STATE(1807), + [sym_herestring_redirect] = STATE(1808), + [sym_arithmetic_expansion] = STATE(859), + [sym_brace_expression] = STATE(859), + [sym_concatenation] = STATE(1231), + [sym_string] = STATE(859), + [sym_translated_string] = STATE(859), + [sym_number] = STATE(859), + [sym_simple_expansion] = STATE(859), + [sym_expansion] = STATE(859), + [sym_command_substitution] = STATE(859), + [sym_process_substitution] = STATE(859), + [aux_sym__statements_repeat1] = STATE(421), + [aux_sym_redirected_statement_repeat2] = STATE(4335), + [aux_sym_command_repeat1] = STATE(992), + [aux_sym__literal_repeat1] = STATE(1127), + [sym_word] = ACTIONS(665), + [anon_sym_for] = ACTIONS(667), + [anon_sym_select] = ACTIONS(669), + [anon_sym_LPAREN_LPAREN] = ACTIONS(671), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_while] = ACTIONS(679), + [anon_sym_until] = ACTIONS(679), + [anon_sym_if] = ACTIONS(681), + [anon_sym_case] = ACTIONS(683), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), + [anon_sym_declare] = ACTIONS(697), + [anon_sym_typeset] = ACTIONS(697), + [anon_sym_export] = ACTIONS(697), + [anon_sym_readonly] = ACTIONS(697), + [anon_sym_local] = ACTIONS(697), + [anon_sym_unset] = ACTIONS(699), + [anon_sym_unsetenv] = ACTIONS(699), + [anon_sym_AMP_GT] = ACTIONS(673), + [anon_sym_AMP_GT_GT] = ACTIONS(675), + [anon_sym_LT_AMP] = ACTIONS(673), + [anon_sym_GT_AMP] = ACTIONS(673), + [anon_sym_GT_PIPE] = ACTIONS(675), + [anon_sym_LT_AMP_DASH] = ACTIONS(701), + [anon_sym_GT_AMP_DASH] = ACTIONS(701), + [anon_sym_LT_LT_LT] = ACTIONS(703), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(705), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(709), + [sym__special_character] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(713), + [sym_raw_string] = ACTIONS(715), + [sym_ansi_c_string] = ACTIONS(715), + [aux_sym_number_token1] = ACTIONS(717), + [aux_sym_number_token2] = ACTIONS(719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(721), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(723), + [anon_sym_BQUOTE] = ACTIONS(725), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(727), + [anon_sym_LT_LPAREN] = ACTIONS(729), + [anon_sym_GT_LPAREN] = ACTIONS(729), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(731), + [sym_variable_name] = ACTIONS(733), + [sym_test_operator] = ACTIONS(735), + [sym__brace_start] = ACTIONS(737), + }, + [420] = { + [aux_sym__terminated_statement] = STATE(51), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4945), + [sym_for_statement] = STATE(4945), + [sym_c_style_for_statement] = STATE(4945), + [sym_while_statement] = STATE(4557), + [sym_if_statement] = STATE(4557), + [sym_case_statement] = STATE(4945), + [sym_function_definition] = STATE(4945), + [sym_compound_statement] = STATE(4945), + [sym_subshell] = STATE(4945), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4945), + [sym_negated_command] = STATE(4945), + [sym_test_command] = STATE(4945), + [sym_declaration_command] = STATE(4945), + [sym_unset_command] = STATE(4945), + [sym_command] = STATE(4945), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1034), + [sym_variable_assignments] = STATE(4945), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(345), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [421] = { + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4927), + [sym_for_statement] = STATE(4927), + [sym_c_style_for_statement] = STATE(4927), + [sym_while_statement] = STATE(4546), + [sym_if_statement] = STATE(4546), + [sym_case_statement] = STATE(4927), + [sym_function_definition] = STATE(4927), + [sym_compound_statement] = STATE(4927), + [sym_subshell] = STATE(4927), + [sym_pipeline] = STATE(5152), + [sym_list] = STATE(4927), + [sym_negated_command] = STATE(4927), + [sym_test_command] = STATE(4927), + [sym_declaration_command] = STATE(4927), + [sym_unset_command] = STATE(4927), + [sym_command] = STATE(4927), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1118), + [sym_variable_assignments] = STATE(4927), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(421), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), [sym_word] = ACTIONS(889), [anon_sym_for] = ACTIONS(892), [anon_sym_select] = ACTIONS(895), @@ -67834,681 +68317,590 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(991), [sym__brace_start] = ACTIONS(994), }, - [420] = { - [aux_sym__terminated_statement] = STATE(59), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(5007), - [sym_for_statement] = STATE(5007), - [sym_c_style_for_statement] = STATE(5007), - [sym_while_statement] = STATE(4551), - [sym_if_statement] = STATE(4551), - [sym_case_statement] = STATE(5007), - [sym_function_definition] = STATE(5007), - [sym_compound_statement] = STATE(5007), - [sym_subshell] = STATE(5007), - [sym_pipeline] = STATE(5189), - [sym_list] = STATE(5007), - [sym_negated_command] = STATE(5007), - [sym_test_command] = STATE(5007), - [sym_declaration_command] = STATE(5007), - [sym_unset_command] = STATE(5007), - [sym_command] = STATE(5007), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1151), - [sym_variable_assignments] = STATE(5007), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [422] = { + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4812), + [sym_for_statement] = STATE(4812), + [sym_c_style_for_statement] = STATE(4812), + [sym_while_statement] = STATE(4390), + [sym_if_statement] = STATE(4390), + [sym_case_statement] = STATE(4812), + [sym_function_definition] = STATE(4812), + [sym_compound_statement] = STATE(4812), + [sym_subshell] = STATE(4812), + [sym_pipeline] = STATE(5094), + [sym_list] = STATE(4812), + [sym_negated_command] = STATE(4812), + [sym_test_command] = STATE(4812), + [sym_declaration_command] = STATE(4812), + [sym_unset_command] = STATE(4812), + [sym_command] = STATE(4812), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(1003), + [sym_variable_assignments] = STATE(4812), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym__statements_repeat1] = STATE(421), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [421] = { - [aux_sym__terminated_statement] = STATE(153), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(5007), - [sym_for_statement] = STATE(5007), - [sym_c_style_for_statement] = STATE(5007), - [sym_while_statement] = STATE(4551), - [sym_if_statement] = STATE(4551), - [sym_case_statement] = STATE(5007), - [sym_function_definition] = STATE(5007), - [sym_compound_statement] = STATE(5007), - [sym_subshell] = STATE(5007), - [sym_pipeline] = STATE(5189), - [sym_list] = STATE(5007), - [sym_negated_command] = STATE(5007), - [sym_test_command] = STATE(5007), - [sym_declaration_command] = STATE(5007), - [sym_unset_command] = STATE(5007), - [sym_command] = STATE(5007), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1151), - [sym_variable_assignments] = STATE(5007), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [423] = { + [aux_sym__terminated_statement] = STATE(62), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4945), + [sym_for_statement] = STATE(4945), + [sym_c_style_for_statement] = STATE(4945), + [sym_while_statement] = STATE(4557), + [sym_if_statement] = STATE(4557), + [sym_case_statement] = STATE(4945), + [sym_function_definition] = STATE(4945), + [sym_compound_statement] = STATE(4945), + [sym_subshell] = STATE(4945), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4945), + [sym_negated_command] = STATE(4945), + [sym_test_command] = STATE(4945), + [sym_declaration_command] = STATE(4945), + [sym_unset_command] = STATE(4945), + [sym_command] = STATE(4945), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1034), + [sym_variable_assignments] = STATE(4945), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [422] = { - [aux_sym__terminated_statement] = STATE(133), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(5007), - [sym_for_statement] = STATE(5007), - [sym_c_style_for_statement] = STATE(5007), - [sym_while_statement] = STATE(4551), - [sym_if_statement] = STATE(4551), - [sym_case_statement] = STATE(5007), - [sym_function_definition] = STATE(5007), - [sym_compound_statement] = STATE(5007), - [sym_subshell] = STATE(5007), - [sym_pipeline] = STATE(5189), - [sym_list] = STATE(5007), - [sym_negated_command] = STATE(5007), - [sym_test_command] = STATE(5007), - [sym_declaration_command] = STATE(5007), - [sym_unset_command] = STATE(5007), - [sym_command] = STATE(5007), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1151), - [sym_variable_assignments] = STATE(5007), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [424] = { + [aux_sym__terminated_statement] = STATE(53), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4945), + [sym_for_statement] = STATE(4945), + [sym_c_style_for_statement] = STATE(4945), + [sym_while_statement] = STATE(4557), + [sym_if_statement] = STATE(4557), + [sym_case_statement] = STATE(4945), + [sym_function_definition] = STATE(4945), + [sym_compound_statement] = STATE(4945), + [sym_subshell] = STATE(4945), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4945), + [sym_negated_command] = STATE(4945), + [sym_test_command] = STATE(4945), + [sym_declaration_command] = STATE(4945), + [sym_unset_command] = STATE(4945), + [sym_command] = STATE(4945), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1034), + [sym_variable_assignments] = STATE(4945), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [423] = { - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4778), - [sym_for_statement] = STATE(4778), - [sym_c_style_for_statement] = STATE(4778), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4778), - [sym_function_definition] = STATE(4778), - [sym_compound_statement] = STATE(4778), - [sym_subshell] = STATE(4778), - [sym_pipeline] = STATE(5051), - [sym_list] = STATE(4778), - [sym_negated_command] = STATE(4778), - [sym_test_command] = STATE(4778), - [sym_declaration_command] = STATE(4778), - [sym_unset_command] = STATE(4778), - [sym_command] = STATE(4778), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(1002), - [sym_variable_assignments] = STATE(4778), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym__statements_repeat1] = STATE(419), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [425] = { + [aux_sym__terminated_statement] = STATE(68), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4945), + [sym_for_statement] = STATE(4945), + [sym_c_style_for_statement] = STATE(4945), + [sym_while_statement] = STATE(4557), + [sym_if_statement] = STATE(4557), + [sym_case_statement] = STATE(4945), + [sym_function_definition] = STATE(4945), + [sym_compound_statement] = STATE(4945), + [sym_subshell] = STATE(4945), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4945), + [sym_negated_command] = STATE(4945), + [sym_test_command] = STATE(4945), + [sym_declaration_command] = STATE(4945), + [sym_unset_command] = STATE(4945), + [sym_command] = STATE(4945), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1034), + [sym_variable_assignments] = STATE(4945), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [424] = { - [aux_sym__terminated_statement] = STATE(50), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(5007), - [sym_for_statement] = STATE(5007), - [sym_c_style_for_statement] = STATE(5007), - [sym_while_statement] = STATE(4551), - [sym_if_statement] = STATE(4551), - [sym_case_statement] = STATE(5007), - [sym_function_definition] = STATE(5007), - [sym_compound_statement] = STATE(5007), - [sym_subshell] = STATE(5007), - [sym_pipeline] = STATE(5189), - [sym_list] = STATE(5007), - [sym_negated_command] = STATE(5007), - [sym_test_command] = STATE(5007), - [sym_declaration_command] = STATE(5007), - [sym_unset_command] = STATE(5007), - [sym_command] = STATE(5007), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1151), - [sym_variable_assignments] = STATE(5007), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [426] = { + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4781), + [sym_for_statement] = STATE(4781), + [sym_c_style_for_statement] = STATE(4781), + [sym_while_statement] = STATE(4311), + [sym_if_statement] = STATE(4311), + [sym_case_statement] = STATE(4781), + [sym_function_definition] = STATE(4781), + [sym_compound_statement] = STATE(4781), + [sym_subshell] = STATE(4781), + [sym_pipeline] = STATE(5068), + [sym_list] = STATE(4781), + [sym_negated_command] = STATE(4781), + [sym_test_command] = STATE(4781), + [sym_declaration_command] = STATE(4781), + [sym_unset_command] = STATE(4781), + [sym_command] = STATE(4781), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1035), + [sym_variable_assignments] = STATE(4781), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym__statements_repeat1] = STATE(421), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [425] = { - [aux_sym__terminated_statement] = STATE(122), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(5007), - [sym_for_statement] = STATE(5007), - [sym_c_style_for_statement] = STATE(5007), - [sym_while_statement] = STATE(4551), - [sym_if_statement] = STATE(4551), - [sym_case_statement] = STATE(5007), - [sym_function_definition] = STATE(5007), - [sym_compound_statement] = STATE(5007), - [sym_subshell] = STATE(5007), - [sym_pipeline] = STATE(5189), - [sym_list] = STATE(5007), - [sym_negated_command] = STATE(5007), - [sym_test_command] = STATE(5007), - [sym_declaration_command] = STATE(5007), - [sym_unset_command] = STATE(5007), - [sym_command] = STATE(5007), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1151), - [sym_variable_assignments] = STATE(5007), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [427] = { + [aux_sym__terminated_statement] = STATE(50), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4945), + [sym_for_statement] = STATE(4945), + [sym_c_style_for_statement] = STATE(4945), + [sym_while_statement] = STATE(4557), + [sym_if_statement] = STATE(4557), + [sym_case_statement] = STATE(4945), + [sym_function_definition] = STATE(4945), + [sym_compound_statement] = STATE(4945), + [sym_subshell] = STATE(4945), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4945), + [sym_negated_command] = STATE(4945), + [sym_test_command] = STATE(4945), + [sym_declaration_command] = STATE(4945), + [sym_unset_command] = STATE(4945), + [sym_command] = STATE(4945), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1034), + [sym_variable_assignments] = STATE(4945), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), - }, - [426] = { - [sym__statement_not_pipeline] = STATE(6674), - [sym_redirected_statement] = STATE(4433), - [sym_for_statement] = STATE(4433), - [sym_c_style_for_statement] = STATE(4433), - [sym_while_statement] = STATE(4249), - [sym_if_statement] = STATE(4249), - [sym_case_statement] = STATE(4433), - [sym_function_definition] = STATE(4433), - [sym_compound_statement] = STATE(4433), - [sym_subshell] = STATE(4433), - [sym_pipeline] = STATE(4939), - [sym_list] = STATE(4433), - [sym_negated_command] = STATE(4433), - [sym_test_command] = STATE(4433), - [sym_declaration_command] = STATE(4433), - [sym_unset_command] = STATE(4433), - [sym_command] = STATE(4433), - [sym_command_name] = STATE(530), - [sym_variable_assignment] = STATE(835), - [sym_variable_assignments] = STATE(4433), - [sym_subscript] = STATE(6760), - [sym_file_redirect] = STATE(1893), - [sym_herestring_redirect] = STATE(1892), - [sym_arithmetic_expansion] = STATE(852), - [sym_brace_expression] = STATE(852), - [sym_concatenation] = STATE(1169), - [sym_string] = STATE(852), - [sym_translated_string] = STATE(852), - [sym_number] = STATE(852), - [sym_simple_expansion] = STATE(852), - [sym_expansion] = STATE(852), - [sym_command_substitution] = STATE(852), - [sym_process_substitution] = STATE(852), - [aux_sym__statements_repeat1] = STATE(419), - [aux_sym_redirected_statement_repeat2] = STATE(4371), - [aux_sym_command_repeat1] = STATE(989), - [aux_sym__literal_repeat1] = STATE(1026), - [sym_word] = ACTIONS(665), - [anon_sym_for] = ACTIONS(667), - [anon_sym_select] = ACTIONS(669), - [anon_sym_LPAREN_LPAREN] = ACTIONS(671), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(675), - [anon_sym_LPAREN] = ACTIONS(677), - [anon_sym_while] = ACTIONS(679), - [anon_sym_until] = ACTIONS(679), - [anon_sym_if] = ACTIONS(681), - [anon_sym_case] = ACTIONS(683), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(697), - [anon_sym_typeset] = ACTIONS(697), - [anon_sym_export] = ACTIONS(697), - [anon_sym_readonly] = ACTIONS(697), - [anon_sym_local] = ACTIONS(697), - [anon_sym_unset] = ACTIONS(699), - [anon_sym_unsetenv] = ACTIONS(699), - [anon_sym_AMP_GT] = ACTIONS(673), - [anon_sym_AMP_GT_GT] = ACTIONS(675), - [anon_sym_LT_AMP] = ACTIONS(673), - [anon_sym_GT_AMP] = ACTIONS(673), - [anon_sym_GT_PIPE] = ACTIONS(675), - [anon_sym_LT_AMP_DASH] = ACTIONS(701), - [anon_sym_GT_AMP_DASH] = ACTIONS(701), - [anon_sym_LT_LT_LT] = ACTIONS(703), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(705), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(707), - [anon_sym_DOLLAR] = ACTIONS(709), - [sym__special_character] = ACTIONS(711), - [anon_sym_DQUOTE] = ACTIONS(713), - [sym_raw_string] = ACTIONS(715), - [sym_ansi_c_string] = ACTIONS(715), - [aux_sym_number_token1] = ACTIONS(717), - [aux_sym_number_token2] = ACTIONS(719), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(721), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(723), - [anon_sym_BQUOTE] = ACTIONS(725), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(727), - [anon_sym_LT_LPAREN] = ACTIONS(729), - [anon_sym_GT_LPAREN] = ACTIONS(729), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(731), - [sym_variable_name] = ACTIONS(733), - [sym_test_operator] = ACTIONS(735), - [sym__brace_start] = ACTIONS(737), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [427] = { - [sym__statement_not_pipeline] = STATE(6572), - [sym_redirected_statement] = STATE(4663), - [sym_for_statement] = STATE(4663), - [sym_c_style_for_statement] = STATE(4663), - [sym_while_statement] = STATE(4312), - [sym_if_statement] = STATE(4312), - [sym_case_statement] = STATE(4663), - [sym_function_definition] = STATE(4663), - [sym_compound_statement] = STATE(4663), - [sym_subshell] = STATE(4663), - [sym_pipeline] = STATE(5108), - [sym_list] = STATE(4663), - [sym_negated_command] = STATE(4663), - [sym_test_command] = STATE(4663), - [sym_declaration_command] = STATE(4663), - [sym_unset_command] = STATE(4663), - [sym_command] = STATE(4663), + [428] = { + [sym__statement_not_pipeline] = STATE(6709), + [sym_redirected_statement] = STATE(4789), + [sym_for_statement] = STATE(4789), + [sym_c_style_for_statement] = STATE(4789), + [sym_while_statement] = STATE(4375), + [sym_if_statement] = STATE(4375), + [sym_case_statement] = STATE(4789), + [sym_function_definition] = STATE(4789), + [sym_compound_statement] = STATE(4789), + [sym_subshell] = STATE(4789), + [sym_pipeline] = STATE(5069), + [sym_list] = STATE(4789), + [sym_negated_command] = STATE(4789), + [sym_test_command] = STATE(4789), + [sym_declaration_command] = STATE(4789), + [sym_unset_command] = STATE(4789), + [sym_command] = STATE(4789), [sym_command_name] = STATE(534), - [sym_variable_assignment] = STATE(991), - [sym_variable_assignments] = STATE(4663), - [sym_subscript] = STATE(6774), - [sym_file_redirect] = STATE(2055), - [sym_herestring_redirect] = STATE(2156), - [sym_arithmetic_expansion] = STATE(957), - [sym_brace_expression] = STATE(957), - [sym_concatenation] = STATE(1386), - [sym_string] = STATE(957), - [sym_translated_string] = STATE(957), - [sym_number] = STATE(957), - [sym_simple_expansion] = STATE(957), - [sym_expansion] = STATE(957), - [sym_command_substitution] = STATE(957), - [sym_process_substitution] = STATE(957), - [aux_sym__statements_repeat1] = STATE(419), - [aux_sym_redirected_statement_repeat2] = STATE(4571), - [aux_sym_command_repeat1] = STATE(937), - [aux_sym__literal_repeat1] = STATE(1212), + [sym_variable_assignment] = STATE(952), + [sym_variable_assignments] = STATE(4789), + [sym_subscript] = STATE(6771), + [sym_file_redirect] = STATE(2203), + [sym_herestring_redirect] = STATE(2204), + [sym_arithmetic_expansion] = STATE(954), + [sym_brace_expression] = STATE(954), + [sym_concatenation] = STATE(1432), + [sym_string] = STATE(954), + [sym_translated_string] = STATE(954), + [sym_number] = STATE(954), + [sym_simple_expansion] = STATE(954), + [sym_expansion] = STATE(954), + [sym_command_substitution] = STATE(954), + [sym_process_substitution] = STATE(954), + [aux_sym__statements_repeat1] = STATE(421), + [aux_sym_redirected_statement_repeat2] = STATE(4541), + [aux_sym_command_repeat1] = STATE(972), + [aux_sym__literal_repeat1] = STATE(1257), [sym_word] = ACTIONS(7), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -68562,498 +68954,767 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(77), [sym__brace_start] = ACTIONS(79), }, - [428] = { - [aux_sym__terminated_statement] = STATE(102), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(5007), - [sym_for_statement] = STATE(5007), - [sym_c_style_for_statement] = STATE(5007), - [sym_while_statement] = STATE(4551), - [sym_if_statement] = STATE(4551), - [sym_case_statement] = STATE(5007), - [sym_function_definition] = STATE(5007), - [sym_compound_statement] = STATE(5007), - [sym_subshell] = STATE(5007), - [sym_pipeline] = STATE(5189), - [sym_list] = STATE(5007), - [sym_negated_command] = STATE(5007), - [sym_test_command] = STATE(5007), - [sym_declaration_command] = STATE(5007), - [sym_unset_command] = STATE(5007), - [sym_command] = STATE(5007), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1151), - [sym_variable_assignments] = STATE(5007), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [429] = { + [sym__statement_not_pipeline] = STATE(6716), + [sym_redirected_statement] = STATE(4374), + [sym_for_statement] = STATE(4374), + [sym_c_style_for_statement] = STATE(4374), + [sym_while_statement] = STATE(4217), + [sym_if_statement] = STATE(4217), + [sym_case_statement] = STATE(4374), + [sym_function_definition] = STATE(4374), + [sym_compound_statement] = STATE(4374), + [sym_subshell] = STATE(4374), + [sym_pipeline] = STATE(4676), + [sym_list] = STATE(4374), + [sym_negated_command] = STATE(4374), + [sym_test_command] = STATE(4374), + [sym_declaration_command] = STATE(4374), + [sym_unset_command] = STATE(4374), + [sym_command] = STATE(4374), + [sym_command_name] = STATE(528), + [sym_variable_assignment] = STATE(819), + [sym_variable_assignments] = STATE(4374), + [sym_subscript] = STATE(6784), + [sym_file_redirect] = STATE(1556), + [sym_herestring_redirect] = STATE(1718), + [sym_arithmetic_expansion] = STATE(813), + [sym_brace_expression] = STATE(813), + [sym_concatenation] = STATE(1073), + [sym_string] = STATE(813), + [sym_translated_string] = STATE(813), + [sym_number] = STATE(813), + [sym_simple_expansion] = STATE(813), + [sym_expansion] = STATE(813), + [sym_command_substitution] = STATE(813), + [sym_process_substitution] = STATE(813), + [aux_sym__statements_repeat1] = STATE(421), + [aux_sym_redirected_statement_repeat2] = STATE(4250), + [aux_sym_command_repeat1] = STATE(977), + [aux_sym__literal_repeat1] = STATE(978), + [sym_word] = ACTIONS(403), + [anon_sym_for] = ACTIONS(405), + [anon_sym_select] = ACTIONS(407), + [anon_sym_LPAREN_LPAREN] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(411), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_while] = ACTIONS(417), + [anon_sym_until] = ACTIONS(417), + [anon_sym_if] = ACTIONS(419), + [anon_sym_case] = ACTIONS(421), + [anon_sym_function] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LBRACK_LBRACK] = ACTIONS(437), + [anon_sym_declare] = ACTIONS(439), + [anon_sym_typeset] = ACTIONS(439), + [anon_sym_export] = ACTIONS(439), + [anon_sym_readonly] = ACTIONS(439), + [anon_sym_local] = ACTIONS(439), + [anon_sym_unset] = ACTIONS(441), + [anon_sym_unsetenv] = ACTIONS(441), + [anon_sym_AMP_GT] = ACTIONS(411), + [anon_sym_AMP_GT_GT] = ACTIONS(413), + [anon_sym_LT_AMP] = ACTIONS(411), + [anon_sym_GT_AMP] = ACTIONS(411), + [anon_sym_GT_PIPE] = ACTIONS(413), + [anon_sym_LT_AMP_DASH] = ACTIONS(443), + [anon_sym_GT_AMP_DASH] = ACTIONS(443), + [anon_sym_LT_LT_LT] = ACTIONS(445), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(449), + [anon_sym_DOLLAR] = ACTIONS(451), + [sym__special_character] = ACTIONS(453), + [anon_sym_DQUOTE] = ACTIONS(455), + [sym_raw_string] = ACTIONS(457), + [sym_ansi_c_string] = ACTIONS(457), + [aux_sym_number_token1] = ACTIONS(459), + [aux_sym_number_token2] = ACTIONS(461), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(463), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(465), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(469), + [anon_sym_LT_LPAREN] = ACTIONS(471), + [anon_sym_GT_LPAREN] = ACTIONS(471), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(473), + [sym_variable_name] = ACTIONS(475), + [sym_test_operator] = ACTIONS(477), + [sym__brace_start] = ACTIONS(479), + }, + [430] = { + [aux_sym__terminated_statement] = STATE(107), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4945), + [sym_for_statement] = STATE(4945), + [sym_c_style_for_statement] = STATE(4945), + [sym_while_statement] = STATE(4557), + [sym_if_statement] = STATE(4557), + [sym_case_statement] = STATE(4945), + [sym_function_definition] = STATE(4945), + [sym_compound_statement] = STATE(4945), + [sym_subshell] = STATE(4945), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4945), + [sym_negated_command] = STATE(4945), + [sym_test_command] = STATE(4945), + [sym_declaration_command] = STATE(4945), + [sym_unset_command] = STATE(4945), + [sym_command] = STATE(4945), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1034), + [sym_variable_assignments] = STATE(4945), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [429] = { - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4793), - [sym_for_statement] = STATE(4793), - [sym_c_style_for_statement] = STATE(4793), - [sym_while_statement] = STATE(4397), - [sym_if_statement] = STATE(4397), - [sym_case_statement] = STATE(4793), - [sym_function_definition] = STATE(4793), - [sym_compound_statement] = STATE(4793), - [sym_subshell] = STATE(4793), - [sym_pipeline] = STATE(5040), - [sym_list] = STATE(4793), - [sym_negated_command] = STATE(4793), - [sym_test_command] = STATE(4793), - [sym_declaration_command] = STATE(4793), - [sym_unset_command] = STATE(4793), - [sym_command] = STATE(4793), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1132), - [sym_variable_assignments] = STATE(4793), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym__statements_repeat1] = STATE(419), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [431] = { + [aux_sym__terminated_statement] = STATE(114), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4945), + [sym_for_statement] = STATE(4945), + [sym_c_style_for_statement] = STATE(4945), + [sym_while_statement] = STATE(4557), + [sym_if_statement] = STATE(4557), + [sym_case_statement] = STATE(4945), + [sym_function_definition] = STATE(4945), + [sym_compound_statement] = STATE(4945), + [sym_subshell] = STATE(4945), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4945), + [sym_negated_command] = STATE(4945), + [sym_test_command] = STATE(4945), + [sym_declaration_command] = STATE(4945), + [sym_unset_command] = STATE(4945), + [sym_command] = STATE(4945), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1034), + [sym_variable_assignments] = STATE(4945), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [430] = { - [aux_sym__terminated_statement] = STATE(51), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(5007), - [sym_for_statement] = STATE(5007), - [sym_c_style_for_statement] = STATE(5007), - [sym_while_statement] = STATE(4551), - [sym_if_statement] = STATE(4551), - [sym_case_statement] = STATE(5007), - [sym_function_definition] = STATE(5007), - [sym_compound_statement] = STATE(5007), - [sym_subshell] = STATE(5007), - [sym_pipeline] = STATE(5189), - [sym_list] = STATE(5007), - [sym_negated_command] = STATE(5007), - [sym_test_command] = STATE(5007), - [sym_declaration_command] = STATE(5007), - [sym_unset_command] = STATE(5007), - [sym_command] = STATE(5007), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1151), - [sym_variable_assignments] = STATE(5007), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [432] = { + [aux_sym__terminated_statement] = STATE(120), + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(4945), + [sym_for_statement] = STATE(4945), + [sym_c_style_for_statement] = STATE(4945), + [sym_while_statement] = STATE(4557), + [sym_if_statement] = STATE(4557), + [sym_case_statement] = STATE(4945), + [sym_function_definition] = STATE(4945), + [sym_compound_statement] = STATE(4945), + [sym_subshell] = STATE(4945), + [sym_pipeline] = STATE(5210), + [sym_list] = STATE(4945), + [sym_negated_command] = STATE(4945), + [sym_test_command] = STATE(4945), + [sym_declaration_command] = STATE(4945), + [sym_unset_command] = STATE(4945), + [sym_command] = STATE(4945), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1034), + [sym_variable_assignments] = STATE(4945), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [431] = { - [sym__statement_not_pipeline] = STATE(6584), - [sym_redirected_statement] = STATE(4341), - [sym_for_statement] = STATE(4341), - [sym_c_style_for_statement] = STATE(4341), - [sym_while_statement] = STATE(4223), - [sym_if_statement] = STATE(4223), - [sym_case_statement] = STATE(4341), - [sym_function_definition] = STATE(4341), - [sym_compound_statement] = STATE(4341), - [sym_subshell] = STATE(4341), - [sym_pipeline] = STATE(4792), - [sym_list] = STATE(4341), - [sym_negated_command] = STATE(4341), - [sym_test_command] = STATE(4341), - [sym_declaration_command] = STATE(4341), - [sym_unset_command] = STATE(4341), - [sym_command] = STATE(4341), - [sym_command_name] = STATE(528), - [sym_variable_assignment] = STATE(818), - [sym_variable_assignments] = STATE(4341), - [sym_subscript] = STATE(6736), - [sym_file_redirect] = STATE(1635), - [sym_herestring_redirect] = STATE(1634), - [sym_arithmetic_expansion] = STATE(815), - [sym_brace_expression] = STATE(815), - [sym_concatenation] = STATE(1082), - [sym_string] = STATE(815), - [sym_translated_string] = STATE(815), - [sym_number] = STATE(815), - [sym_simple_expansion] = STATE(815), - [sym_expansion] = STATE(815), - [sym_command_substitution] = STATE(815), - [sym_process_substitution] = STATE(815), - [aux_sym__statements_repeat1] = STATE(419), - [aux_sym_redirected_statement_repeat2] = STATE(4250), - [aux_sym_command_repeat1] = STATE(925), - [aux_sym__literal_repeat1] = STATE(926), - [sym_word] = ACTIONS(403), - [anon_sym_for] = ACTIONS(405), - [anon_sym_select] = ACTIONS(407), - [anon_sym_LPAREN_LPAREN] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [anon_sym_GT_GT] = ACTIONS(413), - [anon_sym_LPAREN] = ACTIONS(415), - [anon_sym_while] = ACTIONS(417), - [anon_sym_until] = ACTIONS(417), - [anon_sym_if] = ACTIONS(419), - [anon_sym_case] = ACTIONS(421), - [anon_sym_function] = ACTIONS(431), - [anon_sym_LBRACE] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_LBRACK_LBRACK] = ACTIONS(439), - [anon_sym_declare] = ACTIONS(441), - [anon_sym_typeset] = ACTIONS(441), - [anon_sym_export] = ACTIONS(441), - [anon_sym_readonly] = ACTIONS(441), - [anon_sym_local] = ACTIONS(441), - [anon_sym_unset] = ACTIONS(443), - [anon_sym_unsetenv] = ACTIONS(443), - [anon_sym_AMP_GT] = ACTIONS(411), - [anon_sym_AMP_GT_GT] = ACTIONS(413), - [anon_sym_LT_AMP] = ACTIONS(411), - [anon_sym_GT_AMP] = ACTIONS(411), - [anon_sym_GT_PIPE] = ACTIONS(413), - [anon_sym_LT_AMP_DASH] = ACTIONS(445), - [anon_sym_GT_AMP_DASH] = ACTIONS(445), - [anon_sym_LT_LT_LT] = ACTIONS(447), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(451), - [anon_sym_DOLLAR] = ACTIONS(453), - [sym__special_character] = ACTIONS(455), - [anon_sym_DQUOTE] = ACTIONS(457), - [sym_raw_string] = ACTIONS(459), - [sym_ansi_c_string] = ACTIONS(459), - [aux_sym_number_token1] = ACTIONS(461), - [aux_sym_number_token2] = ACTIONS(463), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(465), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(467), - [anon_sym_BQUOTE] = ACTIONS(469), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(471), - [anon_sym_LT_LPAREN] = ACTIONS(473), - [anon_sym_GT_LPAREN] = ACTIONS(473), + [433] = { + [sym__statement_not_pipeline] = STATE(6632), + [sym_redirected_statement] = STATE(4738), + [sym_for_statement] = STATE(4738), + [sym_c_style_for_statement] = STATE(4738), + [sym_while_statement] = STATE(4296), + [sym_if_statement] = STATE(4296), + [sym_case_statement] = STATE(4738), + [sym_function_definition] = STATE(4738), + [sym_compound_statement] = STATE(4738), + [sym_subshell] = STATE(4738), + [sym_pipeline] = STATE(4740), + [sym_list] = STATE(4738), + [sym_negated_command] = STATE(4738), + [sym_test_command] = STATE(4738), + [sym_declaration_command] = STATE(4738), + [sym_unset_command] = STATE(4738), + [sym_command] = STATE(4738), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(913), + [sym_variable_assignments] = STATE(4738), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(91), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(775), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(475), - [sym_variable_name] = ACTIONS(477), - [sym_test_operator] = ACTIONS(479), - [sym__brace_start] = ACTIONS(481), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [432] = { - [aux_sym__terminated_statement] = STATE(54), - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(5007), - [sym_for_statement] = STATE(5007), - [sym_c_style_for_statement] = STATE(5007), - [sym_while_statement] = STATE(4551), - [sym_if_statement] = STATE(4551), - [sym_case_statement] = STATE(5007), - [sym_function_definition] = STATE(5007), - [sym_compound_statement] = STATE(5007), - [sym_subshell] = STATE(5007), - [sym_pipeline] = STATE(5189), - [sym_list] = STATE(5007), - [sym_negated_command] = STATE(5007), - [sym_test_command] = STATE(5007), - [sym_declaration_command] = STATE(5007), - [sym_unset_command] = STATE(5007), - [sym_command] = STATE(5007), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1151), - [sym_variable_assignments] = STATE(5007), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [434] = { + [sym__statement_not_pipeline] = STATE(4720), + [sym_redirected_statement] = STATE(4720), + [sym_for_statement] = STATE(4720), + [sym_c_style_for_statement] = STATE(4720), + [sym_while_statement] = STATE(4413), + [sym_if_statement] = STATE(4413), + [sym_case_statement] = STATE(4720), + [sym_function_definition] = STATE(4720), + [sym_compound_statement] = STATE(4720), + [sym_subshell] = STATE(4720), + [sym_pipeline] = STATE(5578), + [sym_list] = STATE(4720), + [sym_negated_command] = STATE(4720), + [sym_test_command] = STATE(4720), + [sym_declaration_command] = STATE(4720), + [sym_unset_command] = STATE(4720), + [sym_command] = STATE(4720), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1132), + [sym_variable_assignments] = STATE(4720), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(805), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [433] = { - [sym__statement_not_pipeline] = STATE(6572), - [sym_redirected_statement] = STATE(4745), - [sym_for_statement] = STATE(4745), - [sym_c_style_for_statement] = STATE(4745), - [sym_while_statement] = STATE(4281), - [sym_if_statement] = STATE(4281), - [sym_case_statement] = STATE(4745), - [sym_function_definition] = STATE(4745), - [sym_compound_statement] = STATE(4745), - [sym_subshell] = STATE(4745), - [sym_pipeline] = STATE(4608), - [sym_list] = STATE(4745), - [sym_negated_command] = STATE(4745), - [sym_test_command] = STATE(4745), - [sym_declaration_command] = STATE(4745), - [sym_unset_command] = STATE(4745), - [sym_command] = STATE(4745), + [435] = { + [sym__statement_not_pipeline] = STATE(6588), + [sym_redirected_statement] = STATE(4433), + [sym_for_statement] = STATE(4433), + [sym_c_style_for_statement] = STATE(4433), + [sym_while_statement] = STATE(4235), + [sym_if_statement] = STATE(4235), + [sym_case_statement] = STATE(4433), + [sym_function_definition] = STATE(4433), + [sym_compound_statement] = STATE(4433), + [sym_subshell] = STATE(4433), + [sym_pipeline] = STATE(4436), + [sym_list] = STATE(4433), + [sym_negated_command] = STATE(4433), + [sym_test_command] = STATE(4433), + [sym_declaration_command] = STATE(4433), + [sym_unset_command] = STATE(4433), + [sym_command] = STATE(4433), + [sym_command_name] = STATE(531), + [sym_variable_assignment] = STATE(861), + [sym_variable_assignments] = STATE(4433), + [sym_subscript] = STATE(6746), + [sym_file_redirect] = STATE(1807), + [sym_herestring_redirect] = STATE(1808), + [sym_arithmetic_expansion] = STATE(859), + [sym_brace_expression] = STATE(859), + [sym_concatenation] = STATE(1231), + [sym_string] = STATE(859), + [sym_translated_string] = STATE(859), + [sym_number] = STATE(859), + [sym_simple_expansion] = STATE(859), + [sym_expansion] = STATE(859), + [sym_command_substitution] = STATE(859), + [sym_process_substitution] = STATE(859), + [aux_sym_redirected_statement_repeat2] = STATE(4335), + [aux_sym_command_repeat1] = STATE(992), + [aux_sym__literal_repeat1] = STATE(1127), + [sym_word] = ACTIONS(665), + [anon_sym_for] = ACTIONS(667), + [anon_sym_select] = ACTIONS(669), + [anon_sym_LPAREN_LPAREN] = ACTIONS(671), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_while] = ACTIONS(679), + [anon_sym_until] = ACTIONS(679), + [anon_sym_if] = ACTIONS(681), + [anon_sym_case] = ACTIONS(683), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), + [anon_sym_declare] = ACTIONS(697), + [anon_sym_typeset] = ACTIONS(697), + [anon_sym_export] = ACTIONS(697), + [anon_sym_readonly] = ACTIONS(697), + [anon_sym_local] = ACTIONS(697), + [anon_sym_unset] = ACTIONS(699), + [anon_sym_unsetenv] = ACTIONS(699), + [anon_sym_AMP_GT] = ACTIONS(673), + [anon_sym_AMP_GT_GT] = ACTIONS(675), + [anon_sym_LT_AMP] = ACTIONS(673), + [anon_sym_GT_AMP] = ACTIONS(673), + [anon_sym_GT_PIPE] = ACTIONS(675), + [anon_sym_LT_AMP_DASH] = ACTIONS(701), + [anon_sym_GT_AMP_DASH] = ACTIONS(701), + [anon_sym_LT_LT_LT] = ACTIONS(703), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(705), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(709), + [sym__special_character] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(713), + [sym_raw_string] = ACTIONS(715), + [sym_ansi_c_string] = ACTIONS(715), + [aux_sym_number_token1] = ACTIONS(717), + [aux_sym_number_token2] = ACTIONS(719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(721), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(723), + [anon_sym_BQUOTE] = ACTIONS(725), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(727), + [anon_sym_LT_LPAREN] = ACTIONS(729), + [anon_sym_GT_LPAREN] = ACTIONS(729), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(731), + [sym_variable_name] = ACTIONS(733), + [sym_test_operator] = ACTIONS(735), + [sym__brace_start] = ACTIONS(737), + }, + [436] = { + [sym__statement_not_pipeline] = STATE(6654), + [sym_redirected_statement] = STATE(4678), + [sym_for_statement] = STATE(4678), + [sym_c_style_for_statement] = STATE(4678), + [sym_while_statement] = STATE(4404), + [sym_if_statement] = STATE(4404), + [sym_case_statement] = STATE(4678), + [sym_function_definition] = STATE(4678), + [sym_compound_statement] = STATE(4678), + [sym_subshell] = STATE(4678), + [sym_pipeline] = STATE(4680), + [sym_list] = STATE(4678), + [sym_negated_command] = STATE(4678), + [sym_test_command] = STATE(4678), + [sym_declaration_command] = STATE(4678), + [sym_unset_command] = STATE(4678), + [sym_command] = STATE(4678), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1047), + [sym_variable_assignments] = STATE(4678), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2292), + [sym_herestring_redirect] = STATE(2293), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4495), + [aux_sym_command_repeat1] = STATE(1009), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(803), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_if] = ACTIONS(23), + [anon_sym_case] = ACTIONS(25), + [anon_sym_function] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(809), + [anon_sym_typeset] = ACTIONS(809), + [anon_sym_export] = ACTIONS(809), + [anon_sym_readonly] = ACTIONS(809), + [anon_sym_local] = ACTIONS(809), + [anon_sym_unset] = ACTIONS(811), + [anon_sym_unsetenv] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), + }, + [437] = { + [sym__statement_not_pipeline] = STATE(6709), + [sym_redirected_statement] = STATE(4725), + [sym_for_statement] = STATE(4725), + [sym_c_style_for_statement] = STATE(4725), + [sym_while_statement] = STATE(4263), + [sym_if_statement] = STATE(4263), + [sym_case_statement] = STATE(4725), + [sym_function_definition] = STATE(4725), + [sym_compound_statement] = STATE(4725), + [sym_subshell] = STATE(4725), + [sym_pipeline] = STATE(4729), + [sym_list] = STATE(4725), + [sym_negated_command] = STATE(4725), + [sym_test_command] = STATE(4725), + [sym_declaration_command] = STATE(4725), + [sym_unset_command] = STATE(4725), + [sym_command] = STATE(4725), [sym_command_name] = STATE(534), - [sym_variable_assignment] = STATE(1006), - [sym_variable_assignments] = STATE(4745), - [sym_subscript] = STATE(6774), - [sym_file_redirect] = STATE(2055), - [sym_herestring_redirect] = STATE(2156), - [sym_arithmetic_expansion] = STATE(957), - [sym_brace_expression] = STATE(957), - [sym_concatenation] = STATE(1386), - [sym_string] = STATE(957), - [sym_translated_string] = STATE(957), - [sym_number] = STATE(957), - [sym_simple_expansion] = STATE(957), - [sym_expansion] = STATE(957), - [sym_command_substitution] = STATE(957), - [sym_process_substitution] = STATE(957), - [aux_sym_redirected_statement_repeat2] = STATE(4571), - [aux_sym_command_repeat1] = STATE(937), - [aux_sym__literal_repeat1] = STATE(1212), + [sym_variable_assignment] = STATE(986), + [sym_variable_assignments] = STATE(4725), + [sym_subscript] = STATE(6771), + [sym_file_redirect] = STATE(2203), + [sym_herestring_redirect] = STATE(2204), + [sym_arithmetic_expansion] = STATE(954), + [sym_brace_expression] = STATE(954), + [sym_concatenation] = STATE(1432), + [sym_string] = STATE(954), + [sym_translated_string] = STATE(954), + [sym_number] = STATE(954), + [sym_simple_expansion] = STATE(954), + [sym_expansion] = STATE(954), + [sym_command_substitution] = STATE(954), + [sym_process_substitution] = STATE(954), + [aux_sym_redirected_statement_repeat2] = STATE(4541), + [aux_sym_command_repeat1] = STATE(972), + [aux_sym__literal_repeat1] = STATE(1257), [sym_word] = ACTIONS(7), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -69107,47 +69768,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(77), [sym__brace_start] = ACTIONS(79), }, - [434] = { - [sym__statement_not_pipeline] = STATE(6566), - [sym_redirected_statement] = STATE(5381), - [sym_for_statement] = STATE(5381), - [sym_c_style_for_statement] = STATE(5381), - [sym_while_statement] = STATE(5118), - [sym_if_statement] = STATE(5118), - [sym_case_statement] = STATE(5381), - [sym_function_definition] = STATE(5381), - [sym_compound_statement] = STATE(5381), - [sym_subshell] = STATE(5381), - [sym_pipeline] = STATE(5533), - [sym_list] = STATE(5381), - [sym_negated_command] = STATE(5381), - [sym_test_command] = STATE(5381), - [sym_declaration_command] = STATE(5381), - [sym_unset_command] = STATE(5381), - [sym_command] = STATE(5381), - [sym_command_name] = STATE(596), - [sym_variable_assignment] = STATE(1706), - [sym_variable_assignments] = STATE(5381), - [sym_subscript] = STATE(6759), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1717), - [sym_brace_expression] = STATE(1717), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1717), - [sym_translated_string] = STATE(1717), - [sym_number] = STATE(1717), - [sym_simple_expansion] = STATE(1717), - [sym_expansion] = STATE(1717), - [sym_command_substitution] = STATE(1717), - [sym_process_substitution] = STATE(1717), - [aux_sym_redirected_statement_repeat2] = STATE(5176), - [aux_sym_command_repeat1] = STATE(933), - [aux_sym__literal_repeat1] = STATE(1267), + [438] = { + [sym__statement_not_pipeline] = STATE(6713), + [sym_redirected_statement] = STATE(5318), + [sym_for_statement] = STATE(5318), + [sym_c_style_for_statement] = STATE(5318), + [sym_while_statement] = STATE(5093), + [sym_if_statement] = STATE(5093), + [sym_case_statement] = STATE(5318), + [sym_function_definition] = STATE(5318), + [sym_compound_statement] = STATE(5318), + [sym_subshell] = STATE(5318), + [sym_pipeline] = STATE(5545), + [sym_list] = STATE(5318), + [sym_negated_command] = STATE(5318), + [sym_test_command] = STATE(5318), + [sym_declaration_command] = STATE(5318), + [sym_unset_command] = STATE(5318), + [sym_command] = STATE(5318), + [sym_command_name] = STATE(611), + [sym_variable_assignment] = STATE(1550), + [sym_variable_assignments] = STATE(5318), + [sym_subscript] = STATE(6779), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1693), + [sym_brace_expression] = STATE(1693), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1693), + [sym_translated_string] = STATE(1693), + [sym_number] = STATE(1693), + [sym_simple_expansion] = STATE(1693), + [sym_expansion] = STATE(1693), + [sym_command_substitution] = STATE(1693), + [sym_process_substitution] = STATE(1693), + [aux_sym_redirected_statement_repeat2] = STATE(5134), + [aux_sym_command_repeat1] = STATE(1004), + [aux_sym__literal_repeat1] = STATE(1179), [sym_word] = ACTIONS(997), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(999), [anon_sym_GT] = ACTIONS(999), [anon_sym_GT_GT] = ACTIONS(1001), @@ -69176,424 +69837,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(1011), [anon_sym_GT_AMP_DASH] = ACTIONS(1011), [anon_sym_LT_LT_LT] = ACTIONS(1013), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), [sym__special_character] = ACTIONS(1015), - [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(363), [sym_raw_string] = ACTIONS(1017), [sym_ansi_c_string] = ACTIONS(1017), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(1019), [sym_variable_name] = ACTIONS(1021), [sym_test_operator] = ACTIONS(1023), - [sym__brace_start] = ACTIONS(344), - }, - [435] = { - [sym__statement_not_pipeline] = STATE(4942), - [sym_redirected_statement] = STATE(4942), - [sym_for_statement] = STATE(4942), - [sym_c_style_for_statement] = STATE(4942), - [sym_while_statement] = STATE(4234), - [sym_if_statement] = STATE(4234), - [sym_case_statement] = STATE(4942), - [sym_function_definition] = STATE(4942), - [sym_compound_statement] = STATE(4942), - [sym_subshell] = STATE(4942), - [sym_pipeline] = STATE(5593), - [sym_list] = STATE(4942), - [sym_negated_command] = STATE(4942), - [sym_test_command] = STATE(4942), - [sym_declaration_command] = STATE(4942), - [sym_unset_command] = STATE(4942), - [sym_command] = STATE(4942), - [sym_command_name] = STATE(530), - [sym_variable_assignment] = STATE(847), - [sym_variable_assignments] = STATE(4942), - [sym_subscript] = STATE(6760), - [sym_file_redirect] = STATE(1893), - [sym_herestring_redirect] = STATE(1892), - [sym_arithmetic_expansion] = STATE(852), - [sym_brace_expression] = STATE(852), - [sym_concatenation] = STATE(1169), - [sym_string] = STATE(852), - [sym_translated_string] = STATE(852), - [sym_number] = STATE(852), - [sym_simple_expansion] = STATE(852), - [sym_expansion] = STATE(852), - [sym_command_substitution] = STATE(852), - [sym_process_substitution] = STATE(852), - [aux_sym_redirected_statement_repeat2] = STATE(4371), - [aux_sym_command_repeat1] = STATE(989), - [aux_sym__literal_repeat1] = STATE(1026), - [sym_word] = ACTIONS(665), - [anon_sym_for] = ACTIONS(667), - [anon_sym_select] = ACTIONS(669), - [anon_sym_LPAREN_LPAREN] = ACTIONS(671), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(675), - [anon_sym_LPAREN] = ACTIONS(677), - [anon_sym_while] = ACTIONS(679), - [anon_sym_until] = ACTIONS(679), - [anon_sym_if] = ACTIONS(681), - [anon_sym_case] = ACTIONS(683), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(697), - [anon_sym_typeset] = ACTIONS(697), - [anon_sym_export] = ACTIONS(697), - [anon_sym_readonly] = ACTIONS(697), - [anon_sym_local] = ACTIONS(697), - [anon_sym_unset] = ACTIONS(699), - [anon_sym_unsetenv] = ACTIONS(699), - [anon_sym_AMP_GT] = ACTIONS(673), - [anon_sym_AMP_GT_GT] = ACTIONS(675), - [anon_sym_LT_AMP] = ACTIONS(673), - [anon_sym_GT_AMP] = ACTIONS(673), - [anon_sym_GT_PIPE] = ACTIONS(675), - [anon_sym_LT_AMP_DASH] = ACTIONS(701), - [anon_sym_GT_AMP_DASH] = ACTIONS(701), - [anon_sym_LT_LT_LT] = ACTIONS(703), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(705), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(707), - [anon_sym_DOLLAR] = ACTIONS(709), - [sym__special_character] = ACTIONS(711), - [anon_sym_DQUOTE] = ACTIONS(713), - [sym_raw_string] = ACTIONS(715), - [sym_ansi_c_string] = ACTIONS(715), - [aux_sym_number_token1] = ACTIONS(717), - [aux_sym_number_token2] = ACTIONS(719), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(721), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(723), - [anon_sym_BQUOTE] = ACTIONS(725), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(727), - [anon_sym_LT_LPAREN] = ACTIONS(729), - [anon_sym_GT_LPAREN] = ACTIONS(729), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(731), - [sym_variable_name] = ACTIONS(733), - [sym_test_operator] = ACTIONS(735), - [sym__brace_start] = ACTIONS(737), - }, - [436] = { - [sym__statement_not_pipeline] = STATE(6674), - [sym_redirected_statement] = STATE(4528), - [sym_for_statement] = STATE(4528), - [sym_c_style_for_statement] = STATE(4528), - [sym_while_statement] = STATE(4254), - [sym_if_statement] = STATE(4254), - [sym_case_statement] = STATE(4528), - [sym_function_definition] = STATE(4528), - [sym_compound_statement] = STATE(4528), - [sym_subshell] = STATE(4528), - [sym_pipeline] = STATE(4428), - [sym_list] = STATE(4528), - [sym_negated_command] = STATE(4528), - [sym_test_command] = STATE(4528), - [sym_declaration_command] = STATE(4528), - [sym_unset_command] = STATE(4528), - [sym_command] = STATE(4528), - [sym_command_name] = STATE(530), - [sym_variable_assignment] = STATE(839), - [sym_variable_assignments] = STATE(4528), - [sym_subscript] = STATE(6760), - [sym_file_redirect] = STATE(1893), - [sym_herestring_redirect] = STATE(1892), - [sym_arithmetic_expansion] = STATE(852), - [sym_brace_expression] = STATE(852), - [sym_concatenation] = STATE(1169), - [sym_string] = STATE(852), - [sym_translated_string] = STATE(852), - [sym_number] = STATE(852), - [sym_simple_expansion] = STATE(852), - [sym_expansion] = STATE(852), - [sym_command_substitution] = STATE(852), - [sym_process_substitution] = STATE(852), - [aux_sym_redirected_statement_repeat2] = STATE(4371), - [aux_sym_command_repeat1] = STATE(989), - [aux_sym__literal_repeat1] = STATE(1026), - [sym_word] = ACTIONS(665), - [anon_sym_for] = ACTIONS(667), - [anon_sym_select] = ACTIONS(669), - [anon_sym_LPAREN_LPAREN] = ACTIONS(671), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(675), - [anon_sym_LPAREN] = ACTIONS(677), - [anon_sym_while] = ACTIONS(679), - [anon_sym_until] = ACTIONS(679), - [anon_sym_if] = ACTIONS(681), - [anon_sym_case] = ACTIONS(683), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(697), - [anon_sym_typeset] = ACTIONS(697), - [anon_sym_export] = ACTIONS(697), - [anon_sym_readonly] = ACTIONS(697), - [anon_sym_local] = ACTIONS(697), - [anon_sym_unset] = ACTIONS(699), - [anon_sym_unsetenv] = ACTIONS(699), - [anon_sym_AMP_GT] = ACTIONS(673), - [anon_sym_AMP_GT_GT] = ACTIONS(675), - [anon_sym_LT_AMP] = ACTIONS(673), - [anon_sym_GT_AMP] = ACTIONS(673), - [anon_sym_GT_PIPE] = ACTIONS(675), - [anon_sym_LT_AMP_DASH] = ACTIONS(701), - [anon_sym_GT_AMP_DASH] = ACTIONS(701), - [anon_sym_LT_LT_LT] = ACTIONS(703), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(705), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(707), - [anon_sym_DOLLAR] = ACTIONS(709), - [sym__special_character] = ACTIONS(711), - [anon_sym_DQUOTE] = ACTIONS(713), - [sym_raw_string] = ACTIONS(715), - [sym_ansi_c_string] = ACTIONS(715), - [aux_sym_number_token1] = ACTIONS(717), - [aux_sym_number_token2] = ACTIONS(719), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(721), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(723), - [anon_sym_BQUOTE] = ACTIONS(725), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(727), - [anon_sym_LT_LPAREN] = ACTIONS(729), - [anon_sym_GT_LPAREN] = ACTIONS(729), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(731), - [sym_variable_name] = ACTIONS(733), - [sym_test_operator] = ACTIONS(735), - [sym__brace_start] = ACTIONS(737), - }, - [437] = { - [sym__statement_not_pipeline] = STATE(4794), - [sym_redirected_statement] = STATE(4794), - [sym_for_statement] = STATE(4794), - [sym_c_style_for_statement] = STATE(4794), - [sym_while_statement] = STATE(4269), - [sym_if_statement] = STATE(4269), - [sym_case_statement] = STATE(4794), - [sym_function_definition] = STATE(4794), - [sym_compound_statement] = STATE(4794), - [sym_subshell] = STATE(4794), - [sym_pipeline] = STATE(5558), - [sym_list] = STATE(4794), - [sym_negated_command] = STATE(4794), - [sym_test_command] = STATE(4794), - [sym_declaration_command] = STATE(4794), - [sym_unset_command] = STATE(4794), - [sym_command] = STATE(4794), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1028), - [sym_variable_assignments] = STATE(4794), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), - }, - [438] = { - [sym__statement_not_pipeline] = STATE(4616), - [sym_redirected_statement] = STATE(4616), - [sym_for_statement] = STATE(4616), - [sym_c_style_for_statement] = STATE(4616), - [sym_while_statement] = STATE(4227), - [sym_if_statement] = STATE(4227), - [sym_case_statement] = STATE(4616), - [sym_function_definition] = STATE(4616), - [sym_compound_statement] = STATE(4616), - [sym_subshell] = STATE(4616), - [sym_pipeline] = STATE(5614), - [sym_list] = STATE(4616), - [sym_negated_command] = STATE(4616), - [sym_test_command] = STATE(4616), - [sym_declaration_command] = STATE(4616), - [sym_unset_command] = STATE(4616), - [sym_command] = STATE(4616), - [sym_command_name] = STATE(528), - [sym_variable_assignment] = STATE(822), - [sym_variable_assignments] = STATE(4616), - [sym_subscript] = STATE(6736), - [sym_file_redirect] = STATE(1635), - [sym_herestring_redirect] = STATE(1634), - [sym_arithmetic_expansion] = STATE(815), - [sym_brace_expression] = STATE(815), - [sym_concatenation] = STATE(1082), - [sym_string] = STATE(815), - [sym_translated_string] = STATE(815), - [sym_number] = STATE(815), - [sym_simple_expansion] = STATE(815), - [sym_expansion] = STATE(815), - [sym_command_substitution] = STATE(815), - [sym_process_substitution] = STATE(815), - [aux_sym_redirected_statement_repeat2] = STATE(4250), - [aux_sym_command_repeat1] = STATE(925), - [aux_sym__literal_repeat1] = STATE(926), - [sym_word] = ACTIONS(403), - [anon_sym_for] = ACTIONS(405), - [anon_sym_select] = ACTIONS(407), - [anon_sym_LPAREN_LPAREN] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [anon_sym_GT_GT] = ACTIONS(413), - [anon_sym_LPAREN] = ACTIONS(415), - [anon_sym_while] = ACTIONS(417), - [anon_sym_until] = ACTIONS(417), - [anon_sym_if] = ACTIONS(419), - [anon_sym_case] = ACTIONS(421), - [anon_sym_function] = ACTIONS(431), - [anon_sym_LBRACE] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_LBRACK_LBRACK] = ACTIONS(439), - [anon_sym_declare] = ACTIONS(441), - [anon_sym_typeset] = ACTIONS(441), - [anon_sym_export] = ACTIONS(441), - [anon_sym_readonly] = ACTIONS(441), - [anon_sym_local] = ACTIONS(441), - [anon_sym_unset] = ACTIONS(443), - [anon_sym_unsetenv] = ACTIONS(443), - [anon_sym_AMP_GT] = ACTIONS(411), - [anon_sym_AMP_GT_GT] = ACTIONS(413), - [anon_sym_LT_AMP] = ACTIONS(411), - [anon_sym_GT_AMP] = ACTIONS(411), - [anon_sym_GT_PIPE] = ACTIONS(413), - [anon_sym_LT_AMP_DASH] = ACTIONS(445), - [anon_sym_GT_AMP_DASH] = ACTIONS(445), - [anon_sym_LT_LT_LT] = ACTIONS(447), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(451), - [anon_sym_DOLLAR] = ACTIONS(453), - [sym__special_character] = ACTIONS(455), - [anon_sym_DQUOTE] = ACTIONS(457), - [sym_raw_string] = ACTIONS(459), - [sym_ansi_c_string] = ACTIONS(459), - [aux_sym_number_token1] = ACTIONS(461), - [aux_sym_number_token2] = ACTIONS(463), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(465), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(467), - [anon_sym_BQUOTE] = ACTIONS(469), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(471), - [anon_sym_LT_LPAREN] = ACTIONS(473), - [anon_sym_GT_LPAREN] = ACTIONS(473), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(475), - [sym_variable_name] = ACTIONS(477), - [sym_test_operator] = ACTIONS(479), - [sym__brace_start] = ACTIONS(481), + [sym__brace_start] = ACTIONS(387), }, [439] = { - [sym__statement_not_pipeline] = STATE(5561), - [sym_redirected_statement] = STATE(5561), - [sym_for_statement] = STATE(5561), - [sym_c_style_for_statement] = STATE(5561), - [sym_while_statement] = STATE(5213), - [sym_if_statement] = STATE(5213), - [sym_case_statement] = STATE(5561), - [sym_function_definition] = STATE(5561), - [sym_compound_statement] = STATE(5561), - [sym_subshell] = STATE(5561), - [sym_pipeline] = STATE(5551), - [sym_list] = STATE(5561), - [sym_negated_command] = STATE(5561), - [sym_test_command] = STATE(5561), - [sym_declaration_command] = STATE(5561), - [sym_unset_command] = STATE(5561), - [sym_command] = STATE(5561), - [sym_command_name] = STATE(620), - [sym_variable_assignment] = STATE(1907), - [sym_variable_assignments] = STATE(5561), - [sym_subscript] = STATE(6756), - [sym_file_redirect] = STATE(2780), - [sym_herestring_redirect] = STATE(2886), - [sym_arithmetic_expansion] = STATE(1799), - [sym_brace_expression] = STATE(1799), - [sym_concatenation] = STATE(2368), - [sym_string] = STATE(1799), - [sym_translated_string] = STATE(1799), - [sym_number] = STATE(1799), - [sym_simple_expansion] = STATE(1799), - [sym_expansion] = STATE(1799), - [sym_command_substitution] = STATE(1799), - [sym_process_substitution] = STATE(1799), - [aux_sym_redirected_statement_repeat2] = STATE(5362), - [aux_sym_command_repeat1] = STATE(955), - [aux_sym__literal_repeat1] = STATE(2332), + [sym__statement_not_pipeline] = STATE(5598), + [sym_redirected_statement] = STATE(5598), + [sym_for_statement] = STATE(5598), + [sym_c_style_for_statement] = STATE(5598), + [sym_while_statement] = STATE(5139), + [sym_if_statement] = STATE(5139), + [sym_case_statement] = STATE(5598), + [sym_function_definition] = STATE(5598), + [sym_compound_statement] = STATE(5598), + [sym_subshell] = STATE(5598), + [sym_pipeline] = STATE(5606), + [sym_list] = STATE(5598), + [sym_negated_command] = STATE(5598), + [sym_test_command] = STATE(5598), + [sym_declaration_command] = STATE(5598), + [sym_unset_command] = STATE(5598), + [sym_command] = STATE(5598), + [sym_command_name] = STATE(634), + [sym_variable_assignment] = STATE(1916), + [sym_variable_assignments] = STATE(5598), + [sym_subscript] = STATE(6766), + [sym_file_redirect] = STATE(2791), + [sym_herestring_redirect] = STATE(2802), + [sym_arithmetic_expansion] = STATE(1853), + [sym_brace_expression] = STATE(1853), + [sym_concatenation] = STATE(2352), + [sym_string] = STATE(1853), + [sym_translated_string] = STATE(1853), + [sym_number] = STATE(1853), + [sym_simple_expansion] = STATE(1853), + [sym_expansion] = STATE(1853), + [sym_command_substitution] = STATE(1853), + [sym_process_substitution] = STATE(1853), + [aux_sym_redirected_statement_repeat2] = STATE(5255), + [aux_sym_command_repeat1] = STATE(950), + [aux_sym__literal_repeat1] = STATE(2277), [sym_word] = ACTIONS(1025), [anon_sym_for] = ACTIONS(145), [anon_sym_select] = ACTIONS(147), @@ -69648,496 +69949,676 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(1071), }, [440] = { - [sym__statement_not_pipeline] = STATE(6566), - [sym_redirected_statement] = STATE(5383), - [sym_for_statement] = STATE(5383), - [sym_c_style_for_statement] = STATE(5383), - [sym_while_statement] = STATE(5117), - [sym_if_statement] = STATE(5117), - [sym_case_statement] = STATE(5383), - [sym_function_definition] = STATE(5383), - [sym_compound_statement] = STATE(5383), - [sym_subshell] = STATE(5383), - [sym_pipeline] = STATE(5535), - [sym_list] = STATE(5383), - [sym_negated_command] = STATE(5383), - [sym_test_command] = STATE(5383), - [sym_declaration_command] = STATE(5383), - [sym_unset_command] = STATE(5383), - [sym_command] = STATE(5383), - [sym_command_name] = STATE(596), - [sym_variable_assignment] = STATE(1707), - [sym_variable_assignments] = STATE(5383), - [sym_subscript] = STATE(6759), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1717), - [sym_brace_expression] = STATE(1717), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1717), - [sym_translated_string] = STATE(1717), - [sym_number] = STATE(1717), - [sym_simple_expansion] = STATE(1717), - [sym_expansion] = STATE(1717), - [sym_command_substitution] = STATE(1717), - [sym_process_substitution] = STATE(1717), - [aux_sym_redirected_statement_repeat2] = STATE(5176), - [aux_sym_command_repeat1] = STATE(933), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(997), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_GT_GT] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(1003), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(1007), - [anon_sym_typeset] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(1007), - [anon_sym_readonly] = ACTIONS(1007), - [anon_sym_local] = ACTIONS(1007), - [anon_sym_unset] = ACTIONS(1009), - [anon_sym_unsetenv] = ACTIONS(1009), - [anon_sym_AMP_GT] = ACTIONS(999), - [anon_sym_AMP_GT_GT] = ACTIONS(1001), - [anon_sym_LT_AMP] = ACTIONS(999), - [anon_sym_GT_AMP] = ACTIONS(999), - [anon_sym_GT_PIPE] = ACTIONS(1001), - [anon_sym_LT_AMP_DASH] = ACTIONS(1011), - [anon_sym_GT_AMP_DASH] = ACTIONS(1011), - [anon_sym_LT_LT_LT] = ACTIONS(1013), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(1015), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(1017), - [sym_ansi_c_string] = ACTIONS(1017), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [sym__statement_not_pipeline] = STATE(6684), + [sym_redirected_statement] = STATE(5406), + [sym_for_statement] = STATE(5406), + [sym_c_style_for_statement] = STATE(5406), + [sym_while_statement] = STATE(5147), + [sym_if_statement] = STATE(5147), + [sym_case_statement] = STATE(5406), + [sym_function_definition] = STATE(5406), + [sym_compound_statement] = STATE(5406), + [sym_subshell] = STATE(5406), + [sym_pipeline] = STATE(5410), + [sym_list] = STATE(5406), + [sym_negated_command] = STATE(5406), + [sym_test_command] = STATE(5406), + [sym_declaration_command] = STATE(5406), + [sym_unset_command] = STATE(5406), + [sym_command] = STATE(5406), + [sym_command_name] = STATE(634), + [sym_variable_assignment] = STATE(1896), + [sym_variable_assignments] = STATE(5406), + [sym_subscript] = STATE(6766), + [sym_file_redirect] = STATE(2791), + [sym_herestring_redirect] = STATE(2802), + [sym_arithmetic_expansion] = STATE(1853), + [sym_brace_expression] = STATE(1853), + [sym_concatenation] = STATE(2352), + [sym_string] = STATE(1853), + [sym_translated_string] = STATE(1853), + [sym_number] = STATE(1853), + [sym_simple_expansion] = STATE(1853), + [sym_expansion] = STATE(1853), + [sym_command_substitution] = STATE(1853), + [sym_process_substitution] = STATE(1853), + [aux_sym_redirected_statement_repeat2] = STATE(5255), + [aux_sym_command_repeat1] = STATE(950), + [aux_sym__literal_repeat1] = STATE(2277), + [sym_word] = ACTIONS(1025), + [anon_sym_for] = ACTIONS(145), + [anon_sym_select] = ACTIONS(147), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1027), + [anon_sym_LT] = ACTIONS(1029), + [anon_sym_GT] = ACTIONS(1029), + [anon_sym_GT_GT] = ACTIONS(1031), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(157), + [anon_sym_until] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), + [anon_sym_case] = ACTIONS(161), + [anon_sym_function] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(1035), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_LBRACK_LBRACK] = ACTIONS(173), + [anon_sym_declare] = ACTIONS(175), + [anon_sym_typeset] = ACTIONS(175), + [anon_sym_export] = ACTIONS(175), + [anon_sym_readonly] = ACTIONS(175), + [anon_sym_local] = ACTIONS(175), + [anon_sym_unset] = ACTIONS(177), + [anon_sym_unsetenv] = ACTIONS(177), + [anon_sym_AMP_GT] = ACTIONS(1029), + [anon_sym_AMP_GT_GT] = ACTIONS(1031), + [anon_sym_LT_AMP] = ACTIONS(1029), + [anon_sym_GT_AMP] = ACTIONS(1029), + [anon_sym_GT_PIPE] = ACTIONS(1031), + [anon_sym_LT_AMP_DASH] = ACTIONS(1037), + [anon_sym_GT_AMP_DASH] = ACTIONS(1037), + [anon_sym_LT_LT_LT] = ACTIONS(1039), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1041), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1045), + [sym__special_character] = ACTIONS(1047), + [anon_sym_DQUOTE] = ACTIONS(1049), + [sym_raw_string] = ACTIONS(1051), + [sym_ansi_c_string] = ACTIONS(1051), + [aux_sym_number_token1] = ACTIONS(1053), + [aux_sym_number_token2] = ACTIONS(1055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1057), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1059), + [anon_sym_BQUOTE] = ACTIONS(1061), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1063), + [anon_sym_LT_LPAREN] = ACTIONS(1065), + [anon_sym_GT_LPAREN] = ACTIONS(1065), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1019), - [sym_variable_name] = ACTIONS(1021), - [sym_test_operator] = ACTIONS(1023), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(1067), + [sym_variable_name] = ACTIONS(217), + [sym_test_operator] = ACTIONS(1069), + [sym__brace_start] = ACTIONS(1071), }, [441] = { - [sym__statement_not_pipeline] = STATE(6614), - [sym_redirected_statement] = STATE(4717), - [sym_for_statement] = STATE(4717), - [sym_c_style_for_statement] = STATE(4717), - [sym_while_statement] = STATE(4376), - [sym_if_statement] = STATE(4376), - [sym_case_statement] = STATE(4717), - [sym_function_definition] = STATE(4717), - [sym_compound_statement] = STATE(4717), - [sym_subshell] = STATE(4717), - [sym_pipeline] = STATE(4716), - [sym_list] = STATE(4717), - [sym_negated_command] = STATE(4717), - [sym_test_command] = STATE(4717), - [sym_declaration_command] = STATE(4717), - [sym_unset_command] = STATE(4717), - [sym_command] = STATE(4717), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(948), - [sym_variable_assignments] = STATE(4717), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statement_not_pipeline] = STATE(4720), + [sym_redirected_statement] = STATE(4720), + [sym_for_statement] = STATE(4720), + [sym_c_style_for_statement] = STATE(4720), + [sym_while_statement] = STATE(4331), + [sym_if_statement] = STATE(4331), + [sym_case_statement] = STATE(4720), + [sym_function_definition] = STATE(4720), + [sym_compound_statement] = STATE(4720), + [sym_subshell] = STATE(4720), + [sym_pipeline] = STATE(5594), + [sym_list] = STATE(4720), + [sym_negated_command] = STATE(4720), + [sym_test_command] = STATE(4720), + [sym_declaration_command] = STATE(4720), + [sym_unset_command] = STATE(4720), + [sym_command] = STATE(4720), + [sym_command_name] = STATE(534), + [sym_variable_assignment] = STATE(989), + [sym_variable_assignments] = STATE(4720), + [sym_subscript] = STATE(6771), + [sym_file_redirect] = STATE(2203), + [sym_herestring_redirect] = STATE(2204), + [sym_arithmetic_expansion] = STATE(954), + [sym_brace_expression] = STATE(954), + [sym_concatenation] = STATE(1432), + [sym_string] = STATE(954), + [sym_translated_string] = STATE(954), + [sym_number] = STATE(954), + [sym_simple_expansion] = STATE(954), + [sym_expansion] = STATE(954), + [sym_command_substitution] = STATE(954), + [sym_process_substitution] = STATE(954), + [aux_sym_redirected_statement_repeat2] = STATE(4541), + [aux_sym_command_repeat1] = STATE(972), + [aux_sym__literal_repeat1] = STATE(1257), + [sym_word] = ACTIONS(7), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(17), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(31), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(37), + [anon_sym_typeset] = ACTIONS(37), + [anon_sym_export] = ACTIONS(37), + [anon_sym_readonly] = ACTIONS(37), + [anon_sym_local] = ACTIONS(37), + [anon_sym_unset] = ACTIONS(39), + [anon_sym_unsetenv] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym__special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(73), + [sym_variable_name] = ACTIONS(75), + [sym_test_operator] = ACTIONS(77), + [sym__brace_start] = ACTIONS(79), }, [442] = { - [sym__statement_not_pipeline] = STATE(4794), - [sym_redirected_statement] = STATE(4794), - [sym_for_statement] = STATE(4794), - [sym_c_style_for_statement] = STATE(4794), - [sym_while_statement] = STATE(4353), - [sym_if_statement] = STATE(4353), - [sym_case_statement] = STATE(4794), - [sym_function_definition] = STATE(4794), - [sym_compound_statement] = STATE(4794), - [sym_subshell] = STATE(4794), - [sym_pipeline] = STATE(5550), - [sym_list] = STATE(4794), - [sym_negated_command] = STATE(4794), - [sym_test_command] = STATE(4794), - [sym_declaration_command] = STATE(4794), - [sym_unset_command] = STATE(4794), - [sym_command] = STATE(4794), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(961), - [sym_variable_assignments] = STATE(4794), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(938), - [sym_brace_expression] = STATE(938), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(938), - [sym_translated_string] = STATE(938), - [sym_number] = STATE(938), - [sym_simple_expansion] = STATE(938), - [sym_expansion] = STATE(938), - [sym_command_substitution] = STATE(938), - [sym_process_substitution] = STATE(938), - [aux_sym_redirected_statement_repeat2] = STATE(4480), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(765), + [sym__statement_not_pipeline] = STATE(4642), + [sym_redirected_statement] = STATE(4642), + [sym_for_statement] = STATE(4642), + [sym_c_style_for_statement] = STATE(4642), + [sym_while_statement] = STATE(4221), + [sym_if_statement] = STATE(4221), + [sym_case_statement] = STATE(4642), + [sym_function_definition] = STATE(4642), + [sym_compound_statement] = STATE(4642), + [sym_subshell] = STATE(4642), + [sym_pipeline] = STATE(5567), + [sym_list] = STATE(4642), + [sym_negated_command] = STATE(4642), + [sym_test_command] = STATE(4642), + [sym_declaration_command] = STATE(4642), + [sym_unset_command] = STATE(4642), + [sym_command] = STATE(4642), + [sym_command_name] = STATE(528), + [sym_variable_assignment] = STATE(809), + [sym_variable_assignments] = STATE(4642), + [sym_subscript] = STATE(6784), + [sym_file_redirect] = STATE(1556), + [sym_herestring_redirect] = STATE(1718), + [sym_arithmetic_expansion] = STATE(813), + [sym_brace_expression] = STATE(813), + [sym_concatenation] = STATE(1073), + [sym_string] = STATE(813), + [sym_translated_string] = STATE(813), + [sym_number] = STATE(813), + [sym_simple_expansion] = STATE(813), + [sym_expansion] = STATE(813), + [sym_command_substitution] = STATE(813), + [sym_process_substitution] = STATE(813), + [aux_sym_redirected_statement_repeat2] = STATE(4250), + [aux_sym_command_repeat1] = STATE(977), + [aux_sym__literal_repeat1] = STATE(978), + [sym_word] = ACTIONS(403), + [anon_sym_for] = ACTIONS(405), + [anon_sym_select] = ACTIONS(407), + [anon_sym_LPAREN_LPAREN] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(411), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_while] = ACTIONS(417), + [anon_sym_until] = ACTIONS(417), + [anon_sym_if] = ACTIONS(419), + [anon_sym_case] = ACTIONS(421), + [anon_sym_function] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LBRACK_LBRACK] = ACTIONS(437), + [anon_sym_declare] = ACTIONS(439), + [anon_sym_typeset] = ACTIONS(439), + [anon_sym_export] = ACTIONS(439), + [anon_sym_readonly] = ACTIONS(439), + [anon_sym_local] = ACTIONS(439), + [anon_sym_unset] = ACTIONS(441), + [anon_sym_unsetenv] = ACTIONS(441), + [anon_sym_AMP_GT] = ACTIONS(411), + [anon_sym_AMP_GT_GT] = ACTIONS(413), + [anon_sym_LT_AMP] = ACTIONS(411), + [anon_sym_GT_AMP] = ACTIONS(411), + [anon_sym_GT_PIPE] = ACTIONS(413), + [anon_sym_LT_AMP_DASH] = ACTIONS(443), + [anon_sym_GT_AMP_DASH] = ACTIONS(443), + [anon_sym_LT_LT_LT] = ACTIONS(445), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(449), + [anon_sym_DOLLAR] = ACTIONS(451), + [sym__special_character] = ACTIONS(453), + [anon_sym_DQUOTE] = ACTIONS(455), + [sym_raw_string] = ACTIONS(457), + [sym_ansi_c_string] = ACTIONS(457), + [aux_sym_number_token1] = ACTIONS(459), + [aux_sym_number_token2] = ACTIONS(461), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(463), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(465), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(469), + [anon_sym_LT_LPAREN] = ACTIONS(471), + [anon_sym_GT_LPAREN] = ACTIONS(471), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(473), + [sym_variable_name] = ACTIONS(475), + [sym_test_operator] = ACTIONS(477), + [sym__brace_start] = ACTIONS(479), + }, + [443] = { + [sym__statement_not_pipeline] = STATE(6716), + [sym_redirected_statement] = STATE(4373), + [sym_for_statement] = STATE(4373), + [sym_c_style_for_statement] = STATE(4373), + [sym_while_statement] = STATE(4224), + [sym_if_statement] = STATE(4224), + [sym_case_statement] = STATE(4373), + [sym_function_definition] = STATE(4373), + [sym_compound_statement] = STATE(4373), + [sym_subshell] = STATE(4373), + [sym_pipeline] = STATE(4381), + [sym_list] = STATE(4373), + [sym_negated_command] = STATE(4373), + [sym_test_command] = STATE(4373), + [sym_declaration_command] = STATE(4373), + [sym_unset_command] = STATE(4373), + [sym_command] = STATE(4373), + [sym_command_name] = STATE(528), + [sym_variable_assignment] = STATE(810), + [sym_variable_assignments] = STATE(4373), + [sym_subscript] = STATE(6784), + [sym_file_redirect] = STATE(1556), + [sym_herestring_redirect] = STATE(1718), + [sym_arithmetic_expansion] = STATE(813), + [sym_brace_expression] = STATE(813), + [sym_concatenation] = STATE(1073), + [sym_string] = STATE(813), + [sym_translated_string] = STATE(813), + [sym_number] = STATE(813), + [sym_simple_expansion] = STATE(813), + [sym_expansion] = STATE(813), + [sym_command_substitution] = STATE(813), + [sym_process_substitution] = STATE(813), + [aux_sym_redirected_statement_repeat2] = STATE(4250), + [aux_sym_command_repeat1] = STATE(977), + [aux_sym__literal_repeat1] = STATE(978), + [sym_word] = ACTIONS(403), + [anon_sym_for] = ACTIONS(405), + [anon_sym_select] = ACTIONS(407), + [anon_sym_LPAREN_LPAREN] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(411), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_while] = ACTIONS(417), + [anon_sym_until] = ACTIONS(417), + [anon_sym_if] = ACTIONS(419), + [anon_sym_case] = ACTIONS(421), + [anon_sym_function] = ACTIONS(429), + [anon_sym_LBRACE] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_LBRACK_LBRACK] = ACTIONS(437), + [anon_sym_declare] = ACTIONS(439), + [anon_sym_typeset] = ACTIONS(439), + [anon_sym_export] = ACTIONS(439), + [anon_sym_readonly] = ACTIONS(439), + [anon_sym_local] = ACTIONS(439), + [anon_sym_unset] = ACTIONS(441), + [anon_sym_unsetenv] = ACTIONS(441), + [anon_sym_AMP_GT] = ACTIONS(411), + [anon_sym_AMP_GT_GT] = ACTIONS(413), + [anon_sym_LT_AMP] = ACTIONS(411), + [anon_sym_GT_AMP] = ACTIONS(411), + [anon_sym_GT_PIPE] = ACTIONS(413), + [anon_sym_LT_AMP_DASH] = ACTIONS(443), + [anon_sym_GT_AMP_DASH] = ACTIONS(443), + [anon_sym_LT_LT_LT] = ACTIONS(445), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(447), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(449), + [anon_sym_DOLLAR] = ACTIONS(451), + [sym__special_character] = ACTIONS(453), + [anon_sym_DQUOTE] = ACTIONS(455), + [sym_raw_string] = ACTIONS(457), + [sym_ansi_c_string] = ACTIONS(457), + [aux_sym_number_token1] = ACTIONS(459), + [aux_sym_number_token2] = ACTIONS(461), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(463), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(465), + [anon_sym_BQUOTE] = ACTIONS(467), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(469), + [anon_sym_LT_LPAREN] = ACTIONS(471), + [anon_sym_GT_LPAREN] = ACTIONS(471), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(473), + [sym_variable_name] = ACTIONS(475), + [sym_test_operator] = ACTIONS(477), + [sym__brace_start] = ACTIONS(479), + }, + [444] = { + [sym__statement_not_pipeline] = STATE(4720), + [sym_redirected_statement] = STATE(4720), + [sym_for_statement] = STATE(4720), + [sym_c_style_for_statement] = STATE(4720), + [sym_while_statement] = STATE(4469), + [sym_if_statement] = STATE(4469), + [sym_case_statement] = STATE(4720), + [sym_function_definition] = STATE(4720), + [sym_compound_statement] = STATE(4720), + [sym_subshell] = STATE(4720), + [sym_pipeline] = STATE(5558), + [sym_list] = STATE(4720), + [sym_negated_command] = STATE(4720), + [sym_test_command] = STATE(4720), + [sym_declaration_command] = STATE(4720), + [sym_unset_command] = STATE(4720), + [sym_command] = STATE(4720), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1150), + [sym_variable_assignments] = STATE(4720), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(771), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(773), - [sym_ansi_c_string] = ACTIONS(773), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(775), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [443] = { - [sym__statement_not_pipeline] = STATE(4794), - [sym_redirected_statement] = STATE(4794), - [sym_for_statement] = STATE(4794), - [sym_c_style_for_statement] = STATE(4794), - [sym_while_statement] = STATE(4565), - [sym_if_statement] = STATE(4565), - [sym_case_statement] = STATE(4794), - [sym_function_definition] = STATE(4794), - [sym_compound_statement] = STATE(4794), - [sym_subshell] = STATE(4794), - [sym_pipeline] = STATE(5554), - [sym_list] = STATE(4794), - [sym_negated_command] = STATE(4794), - [sym_test_command] = STATE(4794), - [sym_declaration_command] = STATE(4794), - [sym_unset_command] = STATE(4794), - [sym_command] = STATE(4794), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1098), - [sym_variable_assignments] = STATE(4794), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [445] = { + [sym__statement_not_pipeline] = STATE(6705), + [sym_redirected_statement] = STATE(5021), + [sym_for_statement] = STATE(5021), + [sym_c_style_for_statement] = STATE(5021), + [sym_while_statement] = STATE(4468), + [sym_if_statement] = STATE(4468), + [sym_case_statement] = STATE(5021), + [sym_function_definition] = STATE(5021), + [sym_compound_statement] = STATE(5021), + [sym_subshell] = STATE(5021), + [sym_pipeline] = STATE(5024), + [sym_list] = STATE(5021), + [sym_negated_command] = STATE(5021), + [sym_test_command] = STATE(5021), + [sym_declaration_command] = STATE(5021), + [sym_unset_command] = STATE(5021), + [sym_command] = STATE(5021), + [sym_command_name] = STATE(552), + [sym_variable_assignment] = STATE(1148), + [sym_variable_assignments] = STATE(5021), + [sym_subscript] = STATE(6785), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1010), + [sym_brace_expression] = STATE(1010), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1010), + [sym_translated_string] = STATE(1010), + [sym_number] = STATE(1010), + [sym_simple_expansion] = STATE(1010), + [sym_expansion] = STATE(1010), + [sym_command_substitution] = STATE(1010), + [sym_process_substitution] = STATE(1010), + [aux_sym_redirected_statement_repeat2] = STATE(4626), + [aux_sym_command_repeat1] = STATE(1001), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(329), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(335), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(345), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(347), + [anon_sym_typeset] = ACTIONS(347), + [anon_sym_export] = ACTIONS(347), + [anon_sym_readonly] = ACTIONS(347), + [anon_sym_local] = ACTIONS(347), + [anon_sym_unset] = ACTIONS(349), + [anon_sym_unsetenv] = ACTIONS(349), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [anon_sym_GT_PIPE] = ACTIONS(335), + [anon_sym_LT_AMP_DASH] = ACTIONS(351), + [anon_sym_GT_AMP_DASH] = ACTIONS(351), + [anon_sym_LT_LT_LT] = ACTIONS(353), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(361), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(365), + [sym_ansi_c_string] = ACTIONS(365), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(381), + [sym_variable_name] = ACTIONS(383), + [sym_test_operator] = ACTIONS(385), + [sym__brace_start] = ACTIONS(387), }, - [444] = { - [sym__statement_not_pipeline] = STATE(6718), - [sym_redirected_statement] = STATE(4996), - [sym_for_statement] = STATE(4996), - [sym_c_style_for_statement] = STATE(4996), - [sym_while_statement] = STATE(4570), - [sym_if_statement] = STATE(4570), - [sym_case_statement] = STATE(4996), - [sym_function_definition] = STATE(4996), - [sym_compound_statement] = STATE(4996), - [sym_subshell] = STATE(4996), - [sym_pipeline] = STATE(4997), - [sym_list] = STATE(4996), - [sym_negated_command] = STATE(4996), - [sym_test_command] = STATE(4996), - [sym_declaration_command] = STATE(4996), - [sym_unset_command] = STATE(4996), - [sym_command] = STATE(4996), - [sym_command_name] = STATE(544), - [sym_variable_assignment] = STATE(1096), - [sym_variable_assignments] = STATE(4996), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4644), - [aux_sym_command_repeat1] = STATE(997), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(286), + [446] = { + [sym__statement_not_pipeline] = STATE(4720), + [sym_redirected_statement] = STATE(4720), + [sym_for_statement] = STATE(4720), + [sym_c_style_for_statement] = STATE(4720), + [sym_while_statement] = STATE(4312), + [sym_if_statement] = STATE(4312), + [sym_case_statement] = STATE(4720), + [sym_function_definition] = STATE(4720), + [sym_compound_statement] = STATE(4720), + [sym_subshell] = STATE(4720), + [sym_pipeline] = STATE(5586), + [sym_list] = STATE(4720), + [sym_negated_command] = STATE(4720), + [sym_test_command] = STATE(4720), + [sym_declaration_command] = STATE(4720), + [sym_unset_command] = STATE(4720), + [sym_command] = STATE(4720), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(951), + [sym_variable_assignments] = STATE(4720), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(980), + [sym_brace_expression] = STATE(980), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(980), + [sym_translated_string] = STATE(980), + [sym_number] = STATE(980), + [sym_simple_expansion] = STATE(980), + [sym_expansion] = STATE(980), + [sym_command_substitution] = STATE(980), + [sym_process_substitution] = STATE(980), + [aux_sym_redirected_statement_repeat2] = STATE(4430), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(771), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(300), + [anon_sym_function] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(302), + [anon_sym_BANG] = ACTIONS(775), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [anon_sym_declare] = ACTIONS(95), + [anon_sym_typeset] = ACTIONS(95), + [anon_sym_export] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_local] = ACTIONS(95), + [anon_sym_unset] = ACTIONS(97), + [anon_sym_unsetenv] = ACTIONS(97), + [anon_sym_AMP_GT] = ACTIONS(85), + [anon_sym_AMP_GT_GT] = ACTIONS(87), + [anon_sym_LT_AMP] = ACTIONS(85), + [anon_sym_GT_AMP] = ACTIONS(85), + [anon_sym_GT_PIPE] = ACTIONS(87), + [anon_sym_LT_AMP_DASH] = ACTIONS(99), + [anon_sym_GT_AMP_DASH] = ACTIONS(99), + [anon_sym_LT_LT_LT] = ACTIONS(101), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(779), + [sym_ansi_c_string] = ACTIONS(779), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), + [sym_file_descriptor] = ACTIONS(135), + [sym_variable_name] = ACTIONS(137), + [sym_test_operator] = ACTIONS(781), + [sym__brace_start] = ACTIONS(387), }, - [445] = { - [sym__statement_not_pipeline] = STATE(6566), - [sym_redirected_statement] = STATE(5368), - [sym_for_statement] = STATE(5368), - [sym_c_style_for_statement] = STATE(5368), - [sym_while_statement] = STATE(5056), - [sym_if_statement] = STATE(5056), - [sym_case_statement] = STATE(5368), - [sym_function_definition] = STATE(5368), - [sym_compound_statement] = STATE(5368), - [sym_subshell] = STATE(5368), - [sym_pipeline] = STATE(5369), - [sym_list] = STATE(5368), - [sym_negated_command] = STATE(5368), - [sym_test_command] = STATE(5368), - [sym_declaration_command] = STATE(5368), - [sym_unset_command] = STATE(5368), - [sym_command] = STATE(5368), - [sym_command_name] = STATE(596), - [sym_variable_assignment] = STATE(1562), - [sym_variable_assignments] = STATE(5368), - [sym_subscript] = STATE(6759), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1717), - [sym_brace_expression] = STATE(1717), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1717), - [sym_translated_string] = STATE(1717), - [sym_number] = STATE(1717), - [sym_simple_expansion] = STATE(1717), - [sym_expansion] = STATE(1717), - [sym_command_substitution] = STATE(1717), - [sym_process_substitution] = STATE(1717), - [aux_sym_redirected_statement_repeat2] = STATE(5176), - [aux_sym_command_repeat1] = STATE(933), - [aux_sym__literal_repeat1] = STATE(1267), + [447] = { + [sym__statement_not_pipeline] = STATE(4720), + [sym_redirected_statement] = STATE(4720), + [sym_for_statement] = STATE(4720), + [sym_c_style_for_statement] = STATE(4720), + [sym_while_statement] = STATE(5100), + [sym_if_statement] = STATE(5100), + [sym_case_statement] = STATE(4720), + [sym_function_definition] = STATE(4720), + [sym_compound_statement] = STATE(4720), + [sym_subshell] = STATE(4720), + [sym_pipeline] = STATE(5613), + [sym_list] = STATE(4720), + [sym_negated_command] = STATE(4720), + [sym_test_command] = STATE(4720), + [sym_declaration_command] = STATE(4720), + [sym_unset_command] = STATE(4720), + [sym_command] = STATE(4720), + [sym_command_name] = STATE(611), + [sym_variable_assignment] = STATE(1711), + [sym_variable_assignments] = STATE(4720), + [sym_subscript] = STATE(6779), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1693), + [sym_brace_expression] = STATE(1693), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1693), + [sym_translated_string] = STATE(1693), + [sym_number] = STATE(1693), + [sym_simple_expansion] = STATE(1693), + [sym_expansion] = STATE(1693), + [sym_command_substitution] = STATE(1693), + [sym_process_substitution] = STATE(1693), + [aux_sym_redirected_statement_repeat2] = STATE(5134), + [aux_sym_command_repeat1] = STATE(1004), + [aux_sym__literal_repeat1] = STATE(1179), [sym_word] = ACTIONS(997), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(999), [anon_sym_GT] = ACTIONS(999), [anon_sym_GT_GT] = ACTIONS(1001), @@ -70166,68 +70647,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(1011), [anon_sym_GT_AMP_DASH] = ACTIONS(1011), [anon_sym_LT_LT_LT] = ACTIONS(1013), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), [sym__special_character] = ACTIONS(1015), - [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(363), [sym_raw_string] = ACTIONS(1017), [sym_ansi_c_string] = ACTIONS(1017), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(1019), [sym_variable_name] = ACTIONS(1021), [sym_test_operator] = ACTIONS(1023), - [sym__brace_start] = ACTIONS(344), + [sym__brace_start] = ACTIONS(387), }, - [446] = { - [sym__statement_not_pipeline] = STATE(4794), - [sym_redirected_statement] = STATE(4794), - [sym_for_statement] = STATE(4794), - [sym_c_style_for_statement] = STATE(4794), - [sym_while_statement] = STATE(5058), - [sym_if_statement] = STATE(5058), - [sym_case_statement] = STATE(4794), - [sym_function_definition] = STATE(4794), - [sym_compound_statement] = STATE(4794), - [sym_subshell] = STATE(4794), - [sym_pipeline] = STATE(5559), - [sym_list] = STATE(4794), - [sym_negated_command] = STATE(4794), - [sym_test_command] = STATE(4794), - [sym_declaration_command] = STATE(4794), - [sym_unset_command] = STATE(4794), - [sym_command] = STATE(4794), - [sym_command_name] = STATE(596), - [sym_variable_assignment] = STATE(1627), - [sym_variable_assignments] = STATE(4794), - [sym_subscript] = STATE(6759), - [sym_file_redirect] = STATE(2019), - [sym_herestring_redirect] = STATE(2017), - [sym_arithmetic_expansion] = STATE(1717), - [sym_brace_expression] = STATE(1717), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1717), - [sym_translated_string] = STATE(1717), - [sym_number] = STATE(1717), - [sym_simple_expansion] = STATE(1717), - [sym_expansion] = STATE(1717), - [sym_command_substitution] = STATE(1717), - [sym_process_substitution] = STATE(1717), - [aux_sym_redirected_statement_repeat2] = STATE(5176), - [aux_sym_command_repeat1] = STATE(933), - [aux_sym__literal_repeat1] = STATE(1267), + [448] = { + [sym__statement_not_pipeline] = STATE(6713), + [sym_redirected_statement] = STATE(5299), + [sym_for_statement] = STATE(5299), + [sym_c_style_for_statement] = STATE(5299), + [sym_while_statement] = STATE(5098), + [sym_if_statement] = STATE(5098), + [sym_case_statement] = STATE(5299), + [sym_function_definition] = STATE(5299), + [sym_compound_statement] = STATE(5299), + [sym_subshell] = STATE(5299), + [sym_pipeline] = STATE(5300), + [sym_list] = STATE(5299), + [sym_negated_command] = STATE(5299), + [sym_test_command] = STATE(5299), + [sym_declaration_command] = STATE(5299), + [sym_unset_command] = STATE(5299), + [sym_command] = STATE(5299), + [sym_command_name] = STATE(611), + [sym_variable_assignment] = STATE(1708), + [sym_variable_assignments] = STATE(5299), + [sym_subscript] = STATE(6779), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1693), + [sym_brace_expression] = STATE(1693), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1693), + [sym_translated_string] = STATE(1693), + [sym_number] = STATE(1693), + [sym_simple_expansion] = STATE(1693), + [sym_expansion] = STATE(1693), + [sym_command_substitution] = STATE(1693), + [sym_process_substitution] = STATE(1693), + [aux_sym_redirected_statement_repeat2] = STATE(5134), + [aux_sym_command_repeat1] = STATE(1004), + [aux_sym__literal_repeat1] = STATE(1179), [sym_word] = ACTIONS(997), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), [anon_sym_LT] = ACTIONS(999), [anon_sym_GT] = ACTIONS(999), [anon_sym_GT_GT] = ACTIONS(1001), @@ -70256,408 +70737,228 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(1011), [anon_sym_GT_AMP_DASH] = ACTIONS(1011), [anon_sym_LT_LT_LT] = ACTIONS(1013), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), [sym__special_character] = ACTIONS(1015), - [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DQUOTE] = ACTIONS(363), [sym_raw_string] = ACTIONS(1017), [sym_ansi_c_string] = ACTIONS(1017), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(1019), [sym_variable_name] = ACTIONS(1021), [sym_test_operator] = ACTIONS(1023), - [sym__brace_start] = ACTIONS(344), - }, - [447] = { - [sym__statement_not_pipeline] = STATE(6568), - [sym_redirected_statement] = STATE(5421), - [sym_for_statement] = STATE(5421), - [sym_c_style_for_statement] = STATE(5421), - [sym_while_statement] = STATE(5184), - [sym_if_statement] = STATE(5184), - [sym_case_statement] = STATE(5421), - [sym_function_definition] = STATE(5421), - [sym_compound_statement] = STATE(5421), - [sym_subshell] = STATE(5421), - [sym_pipeline] = STATE(5419), - [sym_list] = STATE(5421), - [sym_negated_command] = STATE(5421), - [sym_test_command] = STATE(5421), - [sym_declaration_command] = STATE(5421), - [sym_unset_command] = STATE(5421), - [sym_command] = STATE(5421), - [sym_command_name] = STATE(620), - [sym_variable_assignment] = STATE(1882), - [sym_variable_assignments] = STATE(5421), - [sym_subscript] = STATE(6756), - [sym_file_redirect] = STATE(2780), - [sym_herestring_redirect] = STATE(2886), - [sym_arithmetic_expansion] = STATE(1799), - [sym_brace_expression] = STATE(1799), - [sym_concatenation] = STATE(2368), - [sym_string] = STATE(1799), - [sym_translated_string] = STATE(1799), - [sym_number] = STATE(1799), - [sym_simple_expansion] = STATE(1799), - [sym_expansion] = STATE(1799), - [sym_command_substitution] = STATE(1799), - [sym_process_substitution] = STATE(1799), - [aux_sym_redirected_statement_repeat2] = STATE(5362), - [aux_sym_command_repeat1] = STATE(955), - [aux_sym__literal_repeat1] = STATE(2332), - [sym_word] = ACTIONS(1025), - [anon_sym_for] = ACTIONS(145), - [anon_sym_select] = ACTIONS(147), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1027), - [anon_sym_LT] = ACTIONS(1029), - [anon_sym_GT] = ACTIONS(1029), - [anon_sym_GT_GT] = ACTIONS(1031), - [anon_sym_LPAREN] = ACTIONS(1033), - [anon_sym_while] = ACTIONS(157), - [anon_sym_until] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_case] = ACTIONS(161), - [anon_sym_function] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(1035), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_LBRACK_LBRACK] = ACTIONS(173), - [anon_sym_declare] = ACTIONS(175), - [anon_sym_typeset] = ACTIONS(175), - [anon_sym_export] = ACTIONS(175), - [anon_sym_readonly] = ACTIONS(175), - [anon_sym_local] = ACTIONS(175), - [anon_sym_unset] = ACTIONS(177), - [anon_sym_unsetenv] = ACTIONS(177), - [anon_sym_AMP_GT] = ACTIONS(1029), - [anon_sym_AMP_GT_GT] = ACTIONS(1031), - [anon_sym_LT_AMP] = ACTIONS(1029), - [anon_sym_GT_AMP] = ACTIONS(1029), - [anon_sym_GT_PIPE] = ACTIONS(1031), - [anon_sym_LT_AMP_DASH] = ACTIONS(1037), - [anon_sym_GT_AMP_DASH] = ACTIONS(1037), - [anon_sym_LT_LT_LT] = ACTIONS(1039), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1041), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1043), - [anon_sym_DOLLAR] = ACTIONS(1045), - [sym__special_character] = ACTIONS(1047), - [anon_sym_DQUOTE] = ACTIONS(1049), - [sym_raw_string] = ACTIONS(1051), - [sym_ansi_c_string] = ACTIONS(1051), - [aux_sym_number_token1] = ACTIONS(1053), - [aux_sym_number_token2] = ACTIONS(1055), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1057), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1059), - [anon_sym_BQUOTE] = ACTIONS(1061), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1063), - [anon_sym_LT_LPAREN] = ACTIONS(1065), - [anon_sym_GT_LPAREN] = ACTIONS(1065), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1067), - [sym_variable_name] = ACTIONS(217), - [sym_test_operator] = ACTIONS(1069), - [sym__brace_start] = ACTIONS(1071), + [sym__brace_start] = ACTIONS(387), }, - [448] = { - [sym__statement_not_pipeline] = STATE(4794), - [sym_redirected_statement] = STATE(4794), - [sym_for_statement] = STATE(4794), - [sym_c_style_for_statement] = STATE(4794), - [sym_while_statement] = STATE(4381), - [sym_if_statement] = STATE(4381), - [sym_case_statement] = STATE(4794), - [sym_function_definition] = STATE(4794), - [sym_compound_statement] = STATE(4794), - [sym_subshell] = STATE(4794), + [449] = { + [sym__statement_not_pipeline] = STATE(4999), + [sym_redirected_statement] = STATE(4999), + [sym_for_statement] = STATE(4999), + [sym_c_style_for_statement] = STATE(4999), + [sym_while_statement] = STATE(4251), + [sym_if_statement] = STATE(4251), + [sym_case_statement] = STATE(4999), + [sym_function_definition] = STATE(4999), + [sym_compound_statement] = STATE(4999), + [sym_subshell] = STATE(4999), [sym_pipeline] = STATE(5557), - [sym_list] = STATE(4794), - [sym_negated_command] = STATE(4794), - [sym_test_command] = STATE(4794), - [sym_declaration_command] = STATE(4794), - [sym_unset_command] = STATE(4794), - [sym_command] = STATE(4794), - [sym_command_name] = STATE(534), - [sym_variable_assignment] = STATE(986), - [sym_variable_assignments] = STATE(4794), - [sym_subscript] = STATE(6774), - [sym_file_redirect] = STATE(2055), - [sym_herestring_redirect] = STATE(2156), - [sym_arithmetic_expansion] = STATE(957), - [sym_brace_expression] = STATE(957), - [sym_concatenation] = STATE(1386), - [sym_string] = STATE(957), - [sym_translated_string] = STATE(957), - [sym_number] = STATE(957), - [sym_simple_expansion] = STATE(957), - [sym_expansion] = STATE(957), - [sym_command_substitution] = STATE(957), - [sym_process_substitution] = STATE(957), - [aux_sym_redirected_statement_repeat2] = STATE(4571), - [aux_sym_command_repeat1] = STATE(937), - [aux_sym__literal_repeat1] = STATE(1212), - [sym_word] = ACTIONS(7), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(15), - [anon_sym_GT] = ACTIONS(15), - [anon_sym_GT_GT] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_while] = ACTIONS(21), - [anon_sym_until] = ACTIONS(21), - [anon_sym_if] = ACTIONS(23), - [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(37), - [anon_sym_typeset] = ACTIONS(37), - [anon_sym_export] = ACTIONS(37), - [anon_sym_readonly] = ACTIONS(37), - [anon_sym_local] = ACTIONS(37), - [anon_sym_unset] = ACTIONS(39), - [anon_sym_unsetenv] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(15), - [anon_sym_AMP_GT_GT] = ACTIONS(17), - [anon_sym_LT_AMP] = ACTIONS(15), - [anon_sym_GT_AMP] = ACTIONS(15), - [anon_sym_GT_PIPE] = ACTIONS(17), - [anon_sym_LT_AMP_DASH] = ACTIONS(41), - [anon_sym_GT_AMP_DASH] = ACTIONS(41), - [anon_sym_LT_LT_LT] = ACTIONS(43), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(49), - [sym__special_character] = ACTIONS(51), - [anon_sym_DQUOTE] = ACTIONS(53), - [sym_raw_string] = ACTIONS(55), - [sym_ansi_c_string] = ACTIONS(55), - [aux_sym_number_token1] = ACTIONS(57), - [aux_sym_number_token2] = ACTIONS(59), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), - [anon_sym_LT_LPAREN] = ACTIONS(69), - [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_list] = STATE(4999), + [sym_negated_command] = STATE(4999), + [sym_test_command] = STATE(4999), + [sym_declaration_command] = STATE(4999), + [sym_unset_command] = STATE(4999), + [sym_command] = STATE(4999), + [sym_command_name] = STATE(531), + [sym_variable_assignment] = STATE(874), + [sym_variable_assignments] = STATE(4999), + [sym_subscript] = STATE(6746), + [sym_file_redirect] = STATE(1807), + [sym_herestring_redirect] = STATE(1808), + [sym_arithmetic_expansion] = STATE(859), + [sym_brace_expression] = STATE(859), + [sym_concatenation] = STATE(1231), + [sym_string] = STATE(859), + [sym_translated_string] = STATE(859), + [sym_number] = STATE(859), + [sym_simple_expansion] = STATE(859), + [sym_expansion] = STATE(859), + [sym_command_substitution] = STATE(859), + [sym_process_substitution] = STATE(859), + [aux_sym_redirected_statement_repeat2] = STATE(4335), + [aux_sym_command_repeat1] = STATE(992), + [aux_sym__literal_repeat1] = STATE(1127), + [sym_word] = ACTIONS(665), + [anon_sym_for] = ACTIONS(667), + [anon_sym_select] = ACTIONS(669), + [anon_sym_LPAREN_LPAREN] = ACTIONS(671), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(675), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_while] = ACTIONS(679), + [anon_sym_until] = ACTIONS(679), + [anon_sym_if] = ACTIONS(681), + [anon_sym_case] = ACTIONS(683), + [anon_sym_function] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(691), + [anon_sym_LBRACK] = ACTIONS(693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(695), + [anon_sym_declare] = ACTIONS(697), + [anon_sym_typeset] = ACTIONS(697), + [anon_sym_export] = ACTIONS(697), + [anon_sym_readonly] = ACTIONS(697), + [anon_sym_local] = ACTIONS(697), + [anon_sym_unset] = ACTIONS(699), + [anon_sym_unsetenv] = ACTIONS(699), + [anon_sym_AMP_GT] = ACTIONS(673), + [anon_sym_AMP_GT_GT] = ACTIONS(675), + [anon_sym_LT_AMP] = ACTIONS(673), + [anon_sym_GT_AMP] = ACTIONS(673), + [anon_sym_GT_PIPE] = ACTIONS(675), + [anon_sym_LT_AMP_DASH] = ACTIONS(701), + [anon_sym_GT_AMP_DASH] = ACTIONS(701), + [anon_sym_LT_LT_LT] = ACTIONS(703), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(705), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(709), + [sym__special_character] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(713), + [sym_raw_string] = ACTIONS(715), + [sym_ansi_c_string] = ACTIONS(715), + [aux_sym_number_token1] = ACTIONS(717), + [aux_sym_number_token2] = ACTIONS(719), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(721), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(723), + [anon_sym_BQUOTE] = ACTIONS(725), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(727), + [anon_sym_LT_LPAREN] = ACTIONS(729), + [anon_sym_GT_LPAREN] = ACTIONS(729), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(73), - [sym_variable_name] = ACTIONS(75), - [sym_test_operator] = ACTIONS(77), - [sym__brace_start] = ACTIONS(79), + [sym_file_descriptor] = ACTIONS(731), + [sym_variable_name] = ACTIONS(733), + [sym_test_operator] = ACTIONS(735), + [sym__brace_start] = ACTIONS(737), }, - [449] = { - [sym__statement_not_pipeline] = STATE(6558), - [sym_redirected_statement] = STATE(4722), - [sym_for_statement] = STATE(4722), - [sym_c_style_for_statement] = STATE(4722), - [sym_while_statement] = STATE(4289), - [sym_if_statement] = STATE(4289), - [sym_case_statement] = STATE(4722), - [sym_function_definition] = STATE(4722), - [sym_compound_statement] = STATE(4722), - [sym_subshell] = STATE(4722), - [sym_pipeline] = STATE(4724), - [sym_list] = STATE(4722), - [sym_negated_command] = STATE(4722), - [sym_test_command] = STATE(4722), - [sym_declaration_command] = STATE(4722), - [sym_unset_command] = STATE(4722), - [sym_command] = STATE(4722), - [sym_command_name] = STATE(554), - [sym_variable_assignment] = STATE(1059), - [sym_variable_assignments] = STATE(4722), - [sym_subscript] = STATE(6790), - [sym_file_redirect] = STATE(2273), - [sym_herestring_redirect] = STATE(2272), - [sym_arithmetic_expansion] = STATE(1078), - [sym_brace_expression] = STATE(1078), - [sym_concatenation] = STATE(1376), - [sym_string] = STATE(1078), - [sym_translated_string] = STATE(1078), - [sym_number] = STATE(1078), - [sym_simple_expansion] = STATE(1078), - [sym_expansion] = STATE(1078), - [sym_command_substitution] = STATE(1078), - [sym_process_substitution] = STATE(1078), - [aux_sym_redirected_statement_repeat2] = STATE(4573), - [aux_sym_command_repeat1] = STATE(958), - [aux_sym__literal_repeat1] = STATE(1267), - [sym_word] = ACTIONS(799), + [450] = { + [sym__statement_not_pipeline] = STATE(6713), + [sym_redirected_statement] = STATE(5304), + [sym_for_statement] = STATE(5304), + [sym_c_style_for_statement] = STATE(5304), + [sym_while_statement] = STATE(5080), + [sym_if_statement] = STATE(5080), + [sym_case_statement] = STATE(5304), + [sym_function_definition] = STATE(5304), + [sym_compound_statement] = STATE(5304), + [sym_subshell] = STATE(5304), + [sym_pipeline] = STATE(5500), + [sym_list] = STATE(5304), + [sym_negated_command] = STATE(5304), + [sym_test_command] = STATE(5304), + [sym_declaration_command] = STATE(5304), + [sym_unset_command] = STATE(5304), + [sym_command] = STATE(5304), + [sym_command_name] = STATE(611), + [sym_variable_assignment] = STATE(1547), + [sym_variable_assignments] = STATE(5304), + [sym_subscript] = STATE(6779), + [sym_file_redirect] = STATE(2172), + [sym_herestring_redirect] = STATE(2175), + [sym_arithmetic_expansion] = STATE(1693), + [sym_brace_expression] = STATE(1693), + [sym_concatenation] = STATE(1398), + [sym_string] = STATE(1693), + [sym_translated_string] = STATE(1693), + [sym_number] = STATE(1693), + [sym_simple_expansion] = STATE(1693), + [sym_expansion] = STATE(1693), + [sym_command_substitution] = STATE(1693), + [sym_process_substitution] = STATE(1693), + [aux_sym_redirected_statement_repeat2] = STATE(5134), + [aux_sym_command_repeat1] = STATE(1004), + [aux_sym__literal_repeat1] = STATE(1179), + [sym_word] = ACTIONS(997), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_LT] = ACTIONS(290), - [anon_sym_GT] = ACTIONS(290), - [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(999), + [anon_sym_GT] = ACTIONS(999), + [anon_sym_GT_GT] = ACTIONS(1001), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(801), + [anon_sym_function] = ACTIONS(1003), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(803), + [anon_sym_BANG] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(805), - [anon_sym_typeset] = ACTIONS(805), - [anon_sym_export] = ACTIONS(805), - [anon_sym_readonly] = ACTIONS(805), - [anon_sym_local] = ACTIONS(805), - [anon_sym_unset] = ACTIONS(807), - [anon_sym_unsetenv] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(290), - [anon_sym_AMP_GT_GT] = ACTIONS(292), - [anon_sym_LT_AMP] = ACTIONS(290), - [anon_sym_GT_AMP] = ACTIONS(290), - [anon_sym_GT_PIPE] = ACTIONS(292), - [anon_sym_LT_AMP_DASH] = ACTIONS(308), - [anon_sym_GT_AMP_DASH] = ACTIONS(308), - [anon_sym_LT_LT_LT] = ACTIONS(310), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(314), - [anon_sym_DOLLAR] = ACTIONS(316), - [sym__special_character] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [sym_raw_string] = ACTIONS(322), - [sym_ansi_c_string] = ACTIONS(322), - [aux_sym_number_token1] = ACTIONS(324), - [aux_sym_number_token2] = ACTIONS(326), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(334), - [anon_sym_LT_LPAREN] = ACTIONS(336), - [anon_sym_GT_LPAREN] = ACTIONS(336), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(338), - [sym_variable_name] = ACTIONS(340), - [sym_test_operator] = ACTIONS(342), - [sym__brace_start] = ACTIONS(344), - }, - [450] = { - [sym__statement_not_pipeline] = STATE(6584), - [sym_redirected_statement] = STATE(4342), - [sym_for_statement] = STATE(4342), - [sym_c_style_for_statement] = STATE(4342), - [sym_while_statement] = STATE(4224), - [sym_if_statement] = STATE(4224), - [sym_case_statement] = STATE(4342), - [sym_function_definition] = STATE(4342), - [sym_compound_statement] = STATE(4342), - [sym_subshell] = STATE(4342), - [sym_pipeline] = STATE(4339), - [sym_list] = STATE(4342), - [sym_negated_command] = STATE(4342), - [sym_test_command] = STATE(4342), - [sym_declaration_command] = STATE(4342), - [sym_unset_command] = STATE(4342), - [sym_command] = STATE(4342), - [sym_command_name] = STATE(528), - [sym_variable_assignment] = STATE(809), - [sym_variable_assignments] = STATE(4342), - [sym_subscript] = STATE(6736), - [sym_file_redirect] = STATE(1635), - [sym_herestring_redirect] = STATE(1634), - [sym_arithmetic_expansion] = STATE(815), - [sym_brace_expression] = STATE(815), - [sym_concatenation] = STATE(1082), - [sym_string] = STATE(815), - [sym_translated_string] = STATE(815), - [sym_number] = STATE(815), - [sym_simple_expansion] = STATE(815), - [sym_expansion] = STATE(815), - [sym_command_substitution] = STATE(815), - [sym_process_substitution] = STATE(815), - [aux_sym_redirected_statement_repeat2] = STATE(4250), - [aux_sym_command_repeat1] = STATE(925), - [aux_sym__literal_repeat1] = STATE(926), - [sym_word] = ACTIONS(403), - [anon_sym_for] = ACTIONS(405), - [anon_sym_select] = ACTIONS(407), - [anon_sym_LPAREN_LPAREN] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [anon_sym_GT_GT] = ACTIONS(413), - [anon_sym_LPAREN] = ACTIONS(415), - [anon_sym_while] = ACTIONS(417), - [anon_sym_until] = ACTIONS(417), - [anon_sym_if] = ACTIONS(419), - [anon_sym_case] = ACTIONS(421), - [anon_sym_function] = ACTIONS(431), - [anon_sym_LBRACE] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_LBRACK_LBRACK] = ACTIONS(439), - [anon_sym_declare] = ACTIONS(441), - [anon_sym_typeset] = ACTIONS(441), - [anon_sym_export] = ACTIONS(441), - [anon_sym_readonly] = ACTIONS(441), - [anon_sym_local] = ACTIONS(441), - [anon_sym_unset] = ACTIONS(443), - [anon_sym_unsetenv] = ACTIONS(443), - [anon_sym_AMP_GT] = ACTIONS(411), - [anon_sym_AMP_GT_GT] = ACTIONS(413), - [anon_sym_LT_AMP] = ACTIONS(411), - [anon_sym_GT_AMP] = ACTIONS(411), - [anon_sym_GT_PIPE] = ACTIONS(413), - [anon_sym_LT_AMP_DASH] = ACTIONS(445), - [anon_sym_GT_AMP_DASH] = ACTIONS(445), - [anon_sym_LT_LT_LT] = ACTIONS(447), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(449), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(451), - [anon_sym_DOLLAR] = ACTIONS(453), - [sym__special_character] = ACTIONS(455), - [anon_sym_DQUOTE] = ACTIONS(457), - [sym_raw_string] = ACTIONS(459), - [sym_ansi_c_string] = ACTIONS(459), - [aux_sym_number_token1] = ACTIONS(461), - [aux_sym_number_token2] = ACTIONS(463), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(465), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(467), - [anon_sym_BQUOTE] = ACTIONS(469), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(471), - [anon_sym_LT_LPAREN] = ACTIONS(473), - [anon_sym_GT_LPAREN] = ACTIONS(473), + [anon_sym_declare] = ACTIONS(1007), + [anon_sym_typeset] = ACTIONS(1007), + [anon_sym_export] = ACTIONS(1007), + [anon_sym_readonly] = ACTIONS(1007), + [anon_sym_local] = ACTIONS(1007), + [anon_sym_unset] = ACTIONS(1009), + [anon_sym_unsetenv] = ACTIONS(1009), + [anon_sym_AMP_GT] = ACTIONS(999), + [anon_sym_AMP_GT_GT] = ACTIONS(1001), + [anon_sym_LT_AMP] = ACTIONS(999), + [anon_sym_GT_AMP] = ACTIONS(999), + [anon_sym_GT_PIPE] = ACTIONS(1001), + [anon_sym_LT_AMP_DASH] = ACTIONS(1011), + [anon_sym_GT_AMP_DASH] = ACTIONS(1011), + [anon_sym_LT_LT_LT] = ACTIONS(1013), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [sym__special_character] = ACTIONS(1015), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_raw_string] = ACTIONS(1017), + [sym_ansi_c_string] = ACTIONS(1017), + [aux_sym_number_token1] = ACTIONS(367), + [aux_sym_number_token2] = ACTIONS(369), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), + [anon_sym_BQUOTE] = ACTIONS(375), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), + [anon_sym_LT_LPAREN] = ACTIONS(379), + [anon_sym_GT_LPAREN] = ACTIONS(379), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(475), - [sym_variable_name] = ACTIONS(477), - [sym_test_operator] = ACTIONS(479), - [sym__brace_start] = ACTIONS(481), + [sym_file_descriptor] = ACTIONS(1019), + [sym_variable_name] = ACTIONS(1021), + [sym_test_operator] = ACTIONS(1023), + [sym__brace_start] = ACTIONS(387), }, [451] = { - [sym__expression] = STATE(3098), - [sym_binary_expression] = STATE(3053), - [sym_ternary_expression] = STATE(3053), - [sym_unary_expression] = STATE(3053), - [sym_postfix_expression] = STATE(3053), - [sym_parenthesized_expression] = STATE(3053), - [sym_arithmetic_expansion] = STATE(2500), - [sym_brace_expression] = STATE(2500), - [sym_concatenation] = STATE(3053), - [sym_string] = STATE(2500), - [sym_translated_string] = STATE(2500), - [sym_number] = STATE(2500), - [sym_simple_expansion] = STATE(2500), - [sym_expansion] = STATE(2500), - [sym_command_substitution] = STATE(2500), - [sym_process_substitution] = STATE(2500), - [aux_sym__literal_repeat1] = STATE(2690), - [aux_sym_concatenation_repeat1] = STATE(2491), - [sym_word] = ACTIONS(237), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1073), + [sym__expression] = STATE(2808), + [sym_binary_expression] = STATE(2884), + [sym_ternary_expression] = STATE(2884), + [sym_unary_expression] = STATE(2884), + [sym_postfix_expression] = STATE(2884), + [sym_parenthesized_expression] = STATE(2884), + [sym_arithmetic_expansion] = STATE(2556), + [sym_brace_expression] = STATE(2556), + [sym_concatenation] = STATE(2884), + [sym_string] = STATE(2556), + [sym_translated_string] = STATE(2556), + [sym_number] = STATE(2556), + [sym_simple_expansion] = STATE(2556), + [sym_expansion] = STATE(2556), + [sym_command_substitution] = STATE(2556), + [sym_process_substitution] = STATE(2556), + [aux_sym__literal_repeat1] = STATE(2503), + [aux_sym_concatenation_repeat1] = STATE(2456), + [sym_word] = ACTIONS(1073), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_EQ] = ACTIONS(243), [anon_sym_PLUS_PLUS] = ACTIONS(243), [anon_sym_DASH_DASH] = ACTIONS(243), @@ -70667,13 +70968,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_EQ] = ACTIONS(243), [anon_sym_PERCENT_EQ] = ACTIONS(243), [anon_sym_STAR_STAR_EQ] = ACTIONS(243), - [anon_sym_LT_LT_EQ] = ACTIONS(354), - [anon_sym_GT_GT_EQ] = ACTIONS(354), - [anon_sym_AMP_EQ] = ACTIONS(354), + [anon_sym_LT_LT_EQ] = ACTIONS(290), + [anon_sym_GT_GT_EQ] = ACTIONS(290), + [anon_sym_AMP_EQ] = ACTIONS(290), [anon_sym_CARET_EQ] = ACTIONS(243), - [anon_sym_PIPE_EQ] = ACTIONS(354), - [anon_sym_PIPE_PIPE] = ACTIONS(354), - [anon_sym_AMP_AMP] = ACTIONS(354), + [anon_sym_PIPE_EQ] = ACTIONS(290), + [anon_sym_PIPE_PIPE] = ACTIONS(290), + [anon_sym_AMP_AMP] = ACTIONS(290), [anon_sym_PIPE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(243), [anon_sym_AMP] = ACTIONS(243), @@ -70681,8 +70982,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(243), [anon_sym_LT] = ACTIONS(243), [anon_sym_GT] = ACTIONS(243), - [anon_sym_LT_EQ] = ACTIONS(354), - [anon_sym_GT_EQ] = ACTIONS(354), + [anon_sym_LT_EQ] = ACTIONS(290), + [anon_sym_GT_EQ] = ACTIONS(290), [anon_sym_LT_LT] = ACTIONS(243), [anon_sym_GT_GT] = ACTIONS(243), [anon_sym_PLUS] = ACTIONS(243), @@ -70691,58 +70992,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(243), [anon_sym_PERCENT] = ACTIONS(243), [anon_sym_STAR_STAR] = ACTIONS(243), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_RPAREN] = ACTIONS(354), - [anon_sym_BANG] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_RBRACK] = ACTIONS(1079), [anon_sym_EQ_TILDE] = ACTIONS(243), [anon_sym_QMARK] = ACTIONS(243), - [anon_sym_PLUS_PLUS2] = ACTIONS(103), - [anon_sym_DASH_DASH2] = ACTIONS(103), - [anon_sym_DASH2] = ACTIONS(105), - [anon_sym_PLUS2] = ACTIONS(105), - [anon_sym_TILDE] = ACTIONS(107), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1073), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1075), - [aux_sym_concatenation_token1] = ACTIONS(1077), - [anon_sym_DOLLAR] = ACTIONS(258), - [sym__special_character] = ACTIONS(1079), - [anon_sym_DQUOTE] = ACTIONS(1081), - [sym_raw_string] = ACTIONS(1083), - [sym_ansi_c_string] = ACTIONS(1083), - [aux_sym_number_token1] = ACTIONS(264), - [aux_sym_number_token2] = ACTIONS(266), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1085), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(270), - [anon_sym_BQUOTE] = ACTIONS(272), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1087), - [anon_sym_LT_LPAREN] = ACTIONS(1089), - [anon_sym_GT_LPAREN] = ACTIONS(1089), + [anon_sym_PLUS_PLUS2] = ACTIONS(1081), + [anon_sym_DASH_DASH2] = ACTIONS(1081), + [anon_sym_DASH2] = ACTIONS(1083), + [anon_sym_PLUS2] = ACTIONS(1083), + [anon_sym_TILDE] = ACTIONS(1085), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(299), + [aux_sym_concatenation_token1] = ACTIONS(1087), + [anon_sym_DOLLAR] = ACTIONS(303), + [sym__special_character] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(307), + [sym_raw_string] = ACTIONS(1091), + [sym_ansi_c_string] = ACTIONS(1091), + [aux_sym_number_token1] = ACTIONS(311), + [aux_sym_number_token2] = ACTIONS(313), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(315), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(317), + [anon_sym_BQUOTE] = ACTIONS(319), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(321), + [anon_sym_LT_LPAREN] = ACTIONS(323), + [anon_sym_GT_LPAREN] = ACTIONS(323), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1077), - [sym_test_operator] = ACTIONS(282), - [sym__brace_start] = ACTIONS(284), + [sym__concat] = ACTIONS(1093), + [sym_test_operator] = ACTIONS(1095), + [sym__brace_start] = ACTIONS(327), }, [452] = { - [sym__expression] = STATE(2933), - [sym_binary_expression] = STATE(2863), - [sym_ternary_expression] = STATE(2863), - [sym_unary_expression] = STATE(2863), - [sym_postfix_expression] = STATE(2863), - [sym_parenthesized_expression] = STATE(2863), - [sym_arithmetic_expansion] = STATE(2451), - [sym_brace_expression] = STATE(2451), - [sym_concatenation] = STATE(2863), - [sym_string] = STATE(2451), - [sym_translated_string] = STATE(2451), - [sym_number] = STATE(2451), - [sym_simple_expansion] = STATE(2451), - [sym_expansion] = STATE(2451), - [sym_command_substitution] = STATE(2451), - [sym_process_substitution] = STATE(2451), - [aux_sym__literal_repeat1] = STATE(2472), - [aux_sym_concatenation_repeat1] = STATE(2540), - [sym_word] = ACTIONS(1091), - [anon_sym_LPAREN_LPAREN] = ACTIONS(352), + [sym__expression] = STATE(3123), + [sym_binary_expression] = STATE(2674), + [sym_ternary_expression] = STATE(2674), + [sym_unary_expression] = STATE(2674), + [sym_postfix_expression] = STATE(2674), + [sym_parenthesized_expression] = STATE(2674), + [sym_arithmetic_expansion] = STATE(2554), + [sym_brace_expression] = STATE(2554), + [sym_concatenation] = STATE(2674), + [sym_string] = STATE(2554), + [sym_translated_string] = STATE(2554), + [sym_number] = STATE(2554), + [sym_simple_expansion] = STATE(2554), + [sym_expansion] = STATE(2554), + [sym_command_substitution] = STATE(2554), + [sym_process_substitution] = STATE(2554), + [aux_sym__literal_repeat1] = STATE(2593), + [aux_sym_concatenation_repeat1] = STATE(2507), + [sym_word] = ACTIONS(1097), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1099), [anon_sym_EQ] = ACTIONS(243), [anon_sym_PLUS_PLUS] = ACTIONS(243), [anon_sym_DASH_DASH] = ACTIONS(243), @@ -70752,13 +71053,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_EQ] = ACTIONS(243), [anon_sym_PERCENT_EQ] = ACTIONS(243), [anon_sym_STAR_STAR_EQ] = ACTIONS(243), - [anon_sym_LT_LT_EQ] = ACTIONS(354), - [anon_sym_GT_GT_EQ] = ACTIONS(354), - [anon_sym_AMP_EQ] = ACTIONS(354), + [anon_sym_LT_LT_EQ] = ACTIONS(290), + [anon_sym_GT_GT_EQ] = ACTIONS(290), + [anon_sym_AMP_EQ] = ACTIONS(290), [anon_sym_CARET_EQ] = ACTIONS(243), - [anon_sym_PIPE_EQ] = ACTIONS(354), - [anon_sym_PIPE_PIPE] = ACTIONS(354), - [anon_sym_AMP_AMP] = ACTIONS(354), + [anon_sym_PIPE_EQ] = ACTIONS(290), + [anon_sym_PIPE_PIPE] = ACTIONS(290), + [anon_sym_AMP_AMP] = ACTIONS(290), [anon_sym_PIPE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(243), [anon_sym_AMP] = ACTIONS(243), @@ -70766,8 +71067,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(243), [anon_sym_LT] = ACTIONS(243), [anon_sym_GT] = ACTIONS(243), - [anon_sym_LT_EQ] = ACTIONS(354), - [anon_sym_GT_EQ] = ACTIONS(354), + [anon_sym_LT_EQ] = ACTIONS(290), + [anon_sym_GT_EQ] = ACTIONS(290), [anon_sym_LT_LT] = ACTIONS(243), [anon_sym_GT_GT] = ACTIONS(243), [anon_sym_PLUS] = ACTIONS(243), @@ -70776,58 +71077,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(243), [anon_sym_PERCENT] = ACTIONS(243), [anon_sym_STAR_STAR] = ACTIONS(243), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_RBRACK] = ACTIONS(1097), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1103), + [anon_sym_RBRACK_RBRACK] = ACTIONS(290), [anon_sym_EQ_TILDE] = ACTIONS(243), [anon_sym_QMARK] = ACTIONS(243), - [anon_sym_PLUS_PLUS2] = ACTIONS(1099), - [anon_sym_DASH_DASH2] = ACTIONS(1099), - [anon_sym_DASH2] = ACTIONS(1101), - [anon_sym_PLUS2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(352), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(363), - [aux_sym_concatenation_token1] = ACTIONS(1105), - [anon_sym_DOLLAR] = ACTIONS(367), - [sym__special_character] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(371), - [sym_raw_string] = ACTIONS(1109), - [sym_ansi_c_string] = ACTIONS(1109), - [aux_sym_number_token1] = ACTIONS(375), - [aux_sym_number_token2] = ACTIONS(377), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(379), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(381), - [anon_sym_BQUOTE] = ACTIONS(383), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(385), - [anon_sym_LT_LPAREN] = ACTIONS(387), - [anon_sym_GT_LPAREN] = ACTIONS(387), + [anon_sym_PLUS_PLUS2] = ACTIONS(1105), + [anon_sym_DASH_DASH2] = ACTIONS(1105), + [anon_sym_DASH2] = ACTIONS(1107), + [anon_sym_PLUS2] = ACTIONS(1107), + [anon_sym_TILDE] = ACTIONS(1109), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1099), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1111), + [aux_sym_concatenation_token1] = ACTIONS(1113), + [anon_sym_DOLLAR] = ACTIONS(1115), + [sym__special_character] = ACTIONS(1117), + [anon_sym_DQUOTE] = ACTIONS(1119), + [sym_raw_string] = ACTIONS(1121), + [sym_ansi_c_string] = ACTIONS(1121), + [aux_sym_number_token1] = ACTIONS(1123), + [aux_sym_number_token2] = ACTIONS(1125), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1127), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1129), + [anon_sym_BQUOTE] = ACTIONS(1131), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1133), + [anon_sym_LT_LPAREN] = ACTIONS(1135), + [anon_sym_GT_LPAREN] = ACTIONS(1135), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1111), - [sym_test_operator] = ACTIONS(1113), - [sym__brace_start] = ACTIONS(391), + [sym__concat] = ACTIONS(1113), + [sym_test_operator] = ACTIONS(1137), + [sym__brace_start] = ACTIONS(1139), }, [453] = { - [sym__expression] = STATE(2933), - [sym_binary_expression] = STATE(2863), - [sym_ternary_expression] = STATE(2863), - [sym_unary_expression] = STATE(2863), - [sym_postfix_expression] = STATE(2863), - [sym_parenthesized_expression] = STATE(2863), - [sym_arithmetic_expansion] = STATE(2451), - [sym_brace_expression] = STATE(2451), - [sym_concatenation] = STATE(2863), - [sym_string] = STATE(2451), - [sym_translated_string] = STATE(2451), - [sym_number] = STATE(2451), - [sym_simple_expansion] = STATE(2451), - [sym_expansion] = STATE(2451), - [sym_command_substitution] = STATE(2451), - [sym_process_substitution] = STATE(2451), - [aux_sym__literal_repeat1] = STATE(2472), - [aux_sym_concatenation_repeat1] = STATE(2540), - [sym_word] = ACTIONS(1091), - [anon_sym_LPAREN_LPAREN] = ACTIONS(352), + [sym__expression] = STATE(2808), + [sym_binary_expression] = STATE(2884), + [sym_ternary_expression] = STATE(2884), + [sym_unary_expression] = STATE(2884), + [sym_postfix_expression] = STATE(2884), + [sym_parenthesized_expression] = STATE(2884), + [sym_arithmetic_expansion] = STATE(2556), + [sym_brace_expression] = STATE(2556), + [sym_concatenation] = STATE(2884), + [sym_string] = STATE(2556), + [sym_translated_string] = STATE(2556), + [sym_number] = STATE(2556), + [sym_simple_expansion] = STATE(2556), + [sym_expansion] = STATE(2556), + [sym_command_substitution] = STATE(2556), + [sym_process_substitution] = STATE(2556), + [aux_sym__literal_repeat1] = STATE(2503), + [aux_sym_concatenation_repeat1] = STATE(2456), + [sym_word] = ACTIONS(1073), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_EQ] = ACTIONS(243), [anon_sym_PLUS_PLUS] = ACTIONS(243), [anon_sym_DASH_DASH] = ACTIONS(243), @@ -70837,13 +71138,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_EQ] = ACTIONS(243), [anon_sym_PERCENT_EQ] = ACTIONS(243), [anon_sym_STAR_STAR_EQ] = ACTIONS(243), - [anon_sym_LT_LT_EQ] = ACTIONS(354), - [anon_sym_GT_GT_EQ] = ACTIONS(354), - [anon_sym_AMP_EQ] = ACTIONS(354), + [anon_sym_LT_LT_EQ] = ACTIONS(290), + [anon_sym_GT_GT_EQ] = ACTIONS(290), + [anon_sym_AMP_EQ] = ACTIONS(290), [anon_sym_CARET_EQ] = ACTIONS(243), - [anon_sym_PIPE_EQ] = ACTIONS(354), - [anon_sym_PIPE_PIPE] = ACTIONS(354), - [anon_sym_AMP_AMP] = ACTIONS(354), + [anon_sym_PIPE_EQ] = ACTIONS(290), + [anon_sym_PIPE_PIPE] = ACTIONS(290), + [anon_sym_AMP_AMP] = ACTIONS(290), [anon_sym_PIPE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(243), [anon_sym_AMP] = ACTIONS(243), @@ -70851,8 +71152,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(243), [anon_sym_LT] = ACTIONS(243), [anon_sym_GT] = ACTIONS(243), - [anon_sym_LT_EQ] = ACTIONS(354), - [anon_sym_GT_EQ] = ACTIONS(354), + [anon_sym_LT_EQ] = ACTIONS(290), + [anon_sym_GT_EQ] = ACTIONS(290), [anon_sym_LT_LT] = ACTIONS(243), [anon_sym_GT_GT] = ACTIONS(243), [anon_sym_PLUS] = ACTIONS(243), @@ -70861,58 +71162,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(243), [anon_sym_PERCENT] = ACTIONS(243), [anon_sym_STAR_STAR] = ACTIONS(243), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_RBRACK] = ACTIONS(1115), + [anon_sym_LPAREN] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_RBRACK] = ACTIONS(1141), [anon_sym_EQ_TILDE] = ACTIONS(243), [anon_sym_QMARK] = ACTIONS(243), - [anon_sym_PLUS_PLUS2] = ACTIONS(1099), - [anon_sym_DASH_DASH2] = ACTIONS(1099), - [anon_sym_DASH2] = ACTIONS(1101), - [anon_sym_PLUS2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(352), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(363), - [aux_sym_concatenation_token1] = ACTIONS(1105), - [anon_sym_DOLLAR] = ACTIONS(367), - [sym__special_character] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(371), - [sym_raw_string] = ACTIONS(1109), - [sym_ansi_c_string] = ACTIONS(1109), - [aux_sym_number_token1] = ACTIONS(375), - [aux_sym_number_token2] = ACTIONS(377), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(379), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(381), - [anon_sym_BQUOTE] = ACTIONS(383), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(385), - [anon_sym_LT_LPAREN] = ACTIONS(387), - [anon_sym_GT_LPAREN] = ACTIONS(387), + [anon_sym_PLUS_PLUS2] = ACTIONS(1081), + [anon_sym_DASH_DASH2] = ACTIONS(1081), + [anon_sym_DASH2] = ACTIONS(1083), + [anon_sym_PLUS2] = ACTIONS(1083), + [anon_sym_TILDE] = ACTIONS(1085), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(299), + [aux_sym_concatenation_token1] = ACTIONS(1087), + [anon_sym_DOLLAR] = ACTIONS(303), + [sym__special_character] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(307), + [sym_raw_string] = ACTIONS(1091), + [sym_ansi_c_string] = ACTIONS(1091), + [aux_sym_number_token1] = ACTIONS(311), + [aux_sym_number_token2] = ACTIONS(313), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(315), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(317), + [anon_sym_BQUOTE] = ACTIONS(319), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(321), + [anon_sym_LT_LPAREN] = ACTIONS(323), + [anon_sym_GT_LPAREN] = ACTIONS(323), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1117), - [sym_test_operator] = ACTIONS(1113), - [sym__brace_start] = ACTIONS(391), + [sym__concat] = ACTIONS(1143), + [sym_test_operator] = ACTIONS(1095), + [sym__brace_start] = ACTIONS(327), }, [454] = { - [sym__expression] = STATE(3012), - [sym_binary_expression] = STATE(3071), - [sym_ternary_expression] = STATE(3071), - [sym_unary_expression] = STATE(3071), - [sym_postfix_expression] = STATE(3071), - [sym_parenthesized_expression] = STATE(3071), - [sym_arithmetic_expansion] = STATE(2521), - [sym_brace_expression] = STATE(2521), - [sym_concatenation] = STATE(3071), - [sym_string] = STATE(2521), - [sym_translated_string] = STATE(2521), - [sym_number] = STATE(2521), - [sym_simple_expansion] = STATE(2521), - [sym_expansion] = STATE(2521), - [sym_command_substitution] = STATE(2521), - [sym_process_substitution] = STATE(2521), - [aux_sym__literal_repeat1] = STATE(2641), - [aux_sym_concatenation_repeat1] = STATE(2555), - [sym_word] = ACTIONS(350), - [anon_sym_LPAREN_LPAREN] = ACTIONS(352), + [sym__expression] = STATE(2808), + [sym_binary_expression] = STATE(2884), + [sym_ternary_expression] = STATE(2884), + [sym_unary_expression] = STATE(2884), + [sym_postfix_expression] = STATE(2884), + [sym_parenthesized_expression] = STATE(2884), + [sym_arithmetic_expansion] = STATE(2556), + [sym_brace_expression] = STATE(2556), + [sym_concatenation] = STATE(2884), + [sym_string] = STATE(2556), + [sym_translated_string] = STATE(2556), + [sym_number] = STATE(2556), + [sym_simple_expansion] = STATE(2556), + [sym_expansion] = STATE(2556), + [sym_command_substitution] = STATE(2556), + [sym_process_substitution] = STATE(2556), + [aux_sym__literal_repeat1] = STATE(2503), + [aux_sym_concatenation_repeat1] = STATE(2456), + [sym_word] = ACTIONS(1073), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_EQ] = ACTIONS(243), [anon_sym_PLUS_PLUS] = ACTIONS(243), [anon_sym_DASH_DASH] = ACTIONS(243), @@ -70922,13 +71223,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_EQ] = ACTIONS(243), [anon_sym_PERCENT_EQ] = ACTIONS(243), [anon_sym_STAR_STAR_EQ] = ACTIONS(243), - [anon_sym_LT_LT_EQ] = ACTIONS(354), - [anon_sym_GT_GT_EQ] = ACTIONS(354), - [anon_sym_AMP_EQ] = ACTIONS(354), + [anon_sym_LT_LT_EQ] = ACTIONS(290), + [anon_sym_GT_GT_EQ] = ACTIONS(290), + [anon_sym_AMP_EQ] = ACTIONS(290), [anon_sym_CARET_EQ] = ACTIONS(243), - [anon_sym_PIPE_EQ] = ACTIONS(354), - [anon_sym_PIPE_PIPE] = ACTIONS(354), - [anon_sym_AMP_AMP] = ACTIONS(354), + [anon_sym_PIPE_EQ] = ACTIONS(290), + [anon_sym_PIPE_PIPE] = ACTIONS(290), + [anon_sym_AMP_AMP] = ACTIONS(290), [anon_sym_PIPE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(243), [anon_sym_AMP] = ACTIONS(243), @@ -70936,8 +71237,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(243), [anon_sym_LT] = ACTIONS(243), [anon_sym_GT] = ACTIONS(243), - [anon_sym_LT_EQ] = ACTIONS(354), - [anon_sym_GT_EQ] = ACTIONS(354), + [anon_sym_LT_EQ] = ACTIONS(290), + [anon_sym_GT_EQ] = ACTIONS(290), [anon_sym_LT_LT] = ACTIONS(243), [anon_sym_GT_GT] = ACTIONS(243), [anon_sym_PLUS] = ACTIONS(243), @@ -70946,58 +71247,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(243), [anon_sym_PERCENT] = ACTIONS(243), [anon_sym_STAR_STAR] = ACTIONS(243), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_RBRACK] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_RBRACK] = ACTIONS(1145), [anon_sym_EQ_TILDE] = ACTIONS(243), [anon_sym_QMARK] = ACTIONS(243), - [anon_sym_PLUS_PLUS2] = ACTIONS(183), - [anon_sym_DASH_DASH2] = ACTIONS(183), - [anon_sym_DASH2] = ACTIONS(185), - [anon_sym_PLUS2] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(352), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(363), - [aux_sym_concatenation_token1] = ACTIONS(1105), - [anon_sym_DOLLAR] = ACTIONS(367), - [sym__special_character] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(371), - [sym_raw_string] = ACTIONS(373), - [sym_ansi_c_string] = ACTIONS(373), - [aux_sym_number_token1] = ACTIONS(375), - [aux_sym_number_token2] = ACTIONS(377), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(379), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(381), - [anon_sym_BQUOTE] = ACTIONS(383), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(385), - [anon_sym_LT_LPAREN] = ACTIONS(387), - [anon_sym_GT_LPAREN] = ACTIONS(387), + [anon_sym_PLUS_PLUS2] = ACTIONS(1081), + [anon_sym_DASH_DASH2] = ACTIONS(1081), + [anon_sym_DASH2] = ACTIONS(1083), + [anon_sym_PLUS2] = ACTIONS(1083), + [anon_sym_TILDE] = ACTIONS(1085), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(299), + [aux_sym_concatenation_token1] = ACTIONS(1087), + [anon_sym_DOLLAR] = ACTIONS(303), + [sym__special_character] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(307), + [sym_raw_string] = ACTIONS(1091), + [sym_ansi_c_string] = ACTIONS(1091), + [aux_sym_number_token1] = ACTIONS(311), + [aux_sym_number_token2] = ACTIONS(313), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(315), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(317), + [anon_sym_BQUOTE] = ACTIONS(319), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(321), + [anon_sym_LT_LPAREN] = ACTIONS(323), + [anon_sym_GT_LPAREN] = ACTIONS(323), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1105), - [sym_test_operator] = ACTIONS(389), - [sym__brace_start] = ACTIONS(391), + [sym__concat] = ACTIONS(1147), + [sym_test_operator] = ACTIONS(1095), + [sym__brace_start] = ACTIONS(327), }, [455] = { - [sym__expression] = STATE(2933), - [sym_binary_expression] = STATE(2863), - [sym_ternary_expression] = STATE(2863), - [sym_unary_expression] = STATE(2863), - [sym_postfix_expression] = STATE(2863), - [sym_parenthesized_expression] = STATE(2863), - [sym_arithmetic_expansion] = STATE(2451), - [sym_brace_expression] = STATE(2451), - [sym_concatenation] = STATE(2863), - [sym_string] = STATE(2451), - [sym_translated_string] = STATE(2451), - [sym_number] = STATE(2451), - [sym_simple_expansion] = STATE(2451), - [sym_expansion] = STATE(2451), - [sym_command_substitution] = STATE(2451), - [sym_process_substitution] = STATE(2451), - [aux_sym__literal_repeat1] = STATE(2472), - [aux_sym_concatenation_repeat1] = STATE(2540), - [sym_word] = ACTIONS(1091), - [anon_sym_LPAREN_LPAREN] = ACTIONS(352), + [sym__expression] = STATE(3111), + [sym_binary_expression] = STATE(2952), + [sym_ternary_expression] = STATE(2952), + [sym_unary_expression] = STATE(2952), + [sym_postfix_expression] = STATE(2952), + [sym_parenthesized_expression] = STATE(2952), + [sym_arithmetic_expansion] = STATE(2509), + [sym_brace_expression] = STATE(2509), + [sym_concatenation] = STATE(2952), + [sym_string] = STATE(2509), + [sym_translated_string] = STATE(2509), + [sym_number] = STATE(2509), + [sym_simple_expansion] = STATE(2509), + [sym_expansion] = STATE(2509), + [sym_command_substitution] = STATE(2509), + [sym_process_substitution] = STATE(2509), + [aux_sym__literal_repeat1] = STATE(2705), + [aux_sym_concatenation_repeat1] = STATE(2510), + [sym_word] = ACTIONS(286), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_EQ] = ACTIONS(243), [anon_sym_PLUS_PLUS] = ACTIONS(243), [anon_sym_DASH_DASH] = ACTIONS(243), @@ -71007,13 +71308,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_EQ] = ACTIONS(243), [anon_sym_PERCENT_EQ] = ACTIONS(243), [anon_sym_STAR_STAR_EQ] = ACTIONS(243), - [anon_sym_LT_LT_EQ] = ACTIONS(354), - [anon_sym_GT_GT_EQ] = ACTIONS(354), - [anon_sym_AMP_EQ] = ACTIONS(354), + [anon_sym_LT_LT_EQ] = ACTIONS(290), + [anon_sym_GT_GT_EQ] = ACTIONS(290), + [anon_sym_AMP_EQ] = ACTIONS(290), [anon_sym_CARET_EQ] = ACTIONS(243), - [anon_sym_PIPE_EQ] = ACTIONS(354), - [anon_sym_PIPE_PIPE] = ACTIONS(354), - [anon_sym_AMP_AMP] = ACTIONS(354), + [anon_sym_PIPE_EQ] = ACTIONS(290), + [anon_sym_PIPE_PIPE] = ACTIONS(290), + [anon_sym_AMP_AMP] = ACTIONS(290), [anon_sym_PIPE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(243), [anon_sym_AMP] = ACTIONS(243), @@ -71021,8 +71322,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(243), [anon_sym_LT] = ACTIONS(243), [anon_sym_GT] = ACTIONS(243), - [anon_sym_LT_EQ] = ACTIONS(354), - [anon_sym_GT_EQ] = ACTIONS(354), + [anon_sym_LT_EQ] = ACTIONS(290), + [anon_sym_GT_EQ] = ACTIONS(290), [anon_sym_LT_LT] = ACTIONS(243), [anon_sym_GT_GT] = ACTIONS(243), [anon_sym_PLUS] = ACTIONS(243), @@ -71031,58 +71332,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(243), [anon_sym_PERCENT] = ACTIONS(243), [anon_sym_STAR_STAR] = ACTIONS(243), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_RBRACK] = ACTIONS(1119), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(297), + [anon_sym_RBRACK] = ACTIONS(290), [anon_sym_EQ_TILDE] = ACTIONS(243), [anon_sym_QMARK] = ACTIONS(243), - [anon_sym_PLUS_PLUS2] = ACTIONS(1099), - [anon_sym_DASH_DASH2] = ACTIONS(1099), - [anon_sym_DASH2] = ACTIONS(1101), - [anon_sym_PLUS2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(352), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(363), - [aux_sym_concatenation_token1] = ACTIONS(1105), - [anon_sym_DOLLAR] = ACTIONS(367), - [sym__special_character] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(371), - [sym_raw_string] = ACTIONS(1109), - [sym_ansi_c_string] = ACTIONS(1109), - [aux_sym_number_token1] = ACTIONS(375), - [aux_sym_number_token2] = ACTIONS(377), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(379), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(381), - [anon_sym_BQUOTE] = ACTIONS(383), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(385), - [anon_sym_LT_LPAREN] = ACTIONS(387), - [anon_sym_GT_LPAREN] = ACTIONS(387), + [anon_sym_PLUS_PLUS2] = ACTIONS(183), + [anon_sym_DASH_DASH2] = ACTIONS(183), + [anon_sym_DASH2] = ACTIONS(185), + [anon_sym_PLUS2] = ACTIONS(185), + [anon_sym_TILDE] = ACTIONS(187), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(299), + [aux_sym_concatenation_token1] = ACTIONS(1087), + [anon_sym_DOLLAR] = ACTIONS(303), + [sym__special_character] = ACTIONS(305), + [anon_sym_DQUOTE] = ACTIONS(307), + [sym_raw_string] = ACTIONS(309), + [sym_ansi_c_string] = ACTIONS(309), + [aux_sym_number_token1] = ACTIONS(311), + [aux_sym_number_token2] = ACTIONS(313), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(315), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(317), + [anon_sym_BQUOTE] = ACTIONS(319), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(321), + [anon_sym_LT_LPAREN] = ACTIONS(323), + [anon_sym_GT_LPAREN] = ACTIONS(323), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1121), - [sym_test_operator] = ACTIONS(1113), - [sym__brace_start] = ACTIONS(391), + [sym__concat] = ACTIONS(1087), + [sym_test_operator] = ACTIONS(325), + [sym__brace_start] = ACTIONS(327), }, [456] = { - [sym__expression] = STATE(2933), - [sym_binary_expression] = STATE(2863), - [sym_ternary_expression] = STATE(2863), - [sym_unary_expression] = STATE(2863), - [sym_postfix_expression] = STATE(2863), - [sym_parenthesized_expression] = STATE(2863), - [sym_arithmetic_expansion] = STATE(2451), - [sym_brace_expression] = STATE(2451), - [sym_concatenation] = STATE(2863), - [sym_string] = STATE(2451), - [sym_translated_string] = STATE(2451), - [sym_number] = STATE(2451), - [sym_simple_expansion] = STATE(2451), - [sym_expansion] = STATE(2451), - [sym_command_substitution] = STATE(2451), - [sym_process_substitution] = STATE(2451), - [aux_sym__literal_repeat1] = STATE(2472), - [aux_sym_concatenation_repeat1] = STATE(2540), - [sym_word] = ACTIONS(1091), - [anon_sym_LPAREN_LPAREN] = ACTIONS(352), + [sym__expression] = STATE(2808), + [sym_binary_expression] = STATE(2884), + [sym_ternary_expression] = STATE(2884), + [sym_unary_expression] = STATE(2884), + [sym_postfix_expression] = STATE(2884), + [sym_parenthesized_expression] = STATE(2884), + [sym_arithmetic_expansion] = STATE(2556), + [sym_brace_expression] = STATE(2556), + [sym_concatenation] = STATE(2884), + [sym_string] = STATE(2556), + [sym_translated_string] = STATE(2556), + [sym_number] = STATE(2556), + [sym_simple_expansion] = STATE(2556), + [sym_expansion] = STATE(2556), + [sym_command_substitution] = STATE(2556), + [sym_process_substitution] = STATE(2556), + [aux_sym__literal_repeat1] = STATE(2503), + [aux_sym_concatenation_repeat1] = STATE(2456), + [sym_word] = ACTIONS(1073), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_EQ] = ACTIONS(243), [anon_sym_PLUS_PLUS] = ACTIONS(243), [anon_sym_DASH_DASH] = ACTIONS(243), @@ -71092,13 +71393,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_EQ] = ACTIONS(243), [anon_sym_PERCENT_EQ] = ACTIONS(243), [anon_sym_STAR_STAR_EQ] = ACTIONS(243), - [anon_sym_LT_LT_EQ] = ACTIONS(354), - [anon_sym_GT_GT_EQ] = ACTIONS(354), - [anon_sym_AMP_EQ] = ACTIONS(354), + [anon_sym_LT_LT_EQ] = ACTIONS(290), + [anon_sym_GT_GT_EQ] = ACTIONS(290), + [anon_sym_AMP_EQ] = ACTIONS(290), [anon_sym_CARET_EQ] = ACTIONS(243), - [anon_sym_PIPE_EQ] = ACTIONS(354), - [anon_sym_PIPE_PIPE] = ACTIONS(354), - [anon_sym_AMP_AMP] = ACTIONS(354), + [anon_sym_PIPE_EQ] = ACTIONS(290), + [anon_sym_PIPE_PIPE] = ACTIONS(290), + [anon_sym_AMP_AMP] = ACTIONS(290), [anon_sym_PIPE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(243), [anon_sym_AMP] = ACTIONS(243), @@ -71106,8 +71407,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(243), [anon_sym_LT] = ACTIONS(243), [anon_sym_GT] = ACTIONS(243), - [anon_sym_LT_EQ] = ACTIONS(354), - [anon_sym_GT_EQ] = ACTIONS(354), + [anon_sym_LT_EQ] = ACTIONS(290), + [anon_sym_GT_EQ] = ACTIONS(290), [anon_sym_LT_LT] = ACTIONS(243), [anon_sym_GT_GT] = ACTIONS(243), [anon_sym_PLUS] = ACTIONS(243), @@ -71116,58 +71417,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(243), [anon_sym_PERCENT] = ACTIONS(243), [anon_sym_STAR_STAR] = ACTIONS(243), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_RBRACK] = ACTIONS(354), + [anon_sym_LPAREN] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_RBRACK] = ACTIONS(1149), [anon_sym_EQ_TILDE] = ACTIONS(243), [anon_sym_QMARK] = ACTIONS(243), - [anon_sym_PLUS_PLUS2] = ACTIONS(1099), - [anon_sym_DASH_DASH2] = ACTIONS(1099), - [anon_sym_DASH2] = ACTIONS(1101), - [anon_sym_PLUS2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(352), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(363), - [aux_sym_concatenation_token1] = ACTIONS(1105), - [anon_sym_DOLLAR] = ACTIONS(367), - [sym__special_character] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(371), - [sym_raw_string] = ACTIONS(1109), - [sym_ansi_c_string] = ACTIONS(1109), - [aux_sym_number_token1] = ACTIONS(375), - [aux_sym_number_token2] = ACTIONS(377), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(379), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(381), - [anon_sym_BQUOTE] = ACTIONS(383), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(385), - [anon_sym_LT_LPAREN] = ACTIONS(387), - [anon_sym_GT_LPAREN] = ACTIONS(387), + [anon_sym_PLUS_PLUS2] = ACTIONS(1081), + [anon_sym_DASH_DASH2] = ACTIONS(1081), + [anon_sym_DASH2] = ACTIONS(1083), + [anon_sym_PLUS2] = ACTIONS(1083), + [anon_sym_TILDE] = ACTIONS(1085), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(299), + [aux_sym_concatenation_token1] = ACTIONS(1087), + [anon_sym_DOLLAR] = ACTIONS(303), + [sym__special_character] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(307), + [sym_raw_string] = ACTIONS(1091), + [sym_ansi_c_string] = ACTIONS(1091), + [aux_sym_number_token1] = ACTIONS(311), + [aux_sym_number_token2] = ACTIONS(313), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(315), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(317), + [anon_sym_BQUOTE] = ACTIONS(319), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(321), + [anon_sym_LT_LPAREN] = ACTIONS(323), + [anon_sym_GT_LPAREN] = ACTIONS(323), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(354), - [sym_test_operator] = ACTIONS(1113), - [sym__brace_start] = ACTIONS(391), + [sym__concat] = ACTIONS(1151), + [sym_test_operator] = ACTIONS(1095), + [sym__brace_start] = ACTIONS(327), }, [457] = { - [sym__expression] = STATE(2933), - [sym_binary_expression] = STATE(2863), - [sym_ternary_expression] = STATE(2863), - [sym_unary_expression] = STATE(2863), - [sym_postfix_expression] = STATE(2863), - [sym_parenthesized_expression] = STATE(2863), - [sym_arithmetic_expansion] = STATE(2451), - [sym_brace_expression] = STATE(2451), - [sym_concatenation] = STATE(2863), - [sym_string] = STATE(2451), - [sym_translated_string] = STATE(2451), - [sym_number] = STATE(2451), - [sym_simple_expansion] = STATE(2451), - [sym_expansion] = STATE(2451), - [sym_command_substitution] = STATE(2451), - [sym_process_substitution] = STATE(2451), - [aux_sym__literal_repeat1] = STATE(2472), - [aux_sym_concatenation_repeat1] = STATE(2540), - [sym_word] = ACTIONS(1091), - [anon_sym_LPAREN_LPAREN] = ACTIONS(352), + [sym__expression] = STATE(2950), + [sym_binary_expression] = STATE(2976), + [sym_ternary_expression] = STATE(2976), + [sym_unary_expression] = STATE(2976), + [sym_postfix_expression] = STATE(2976), + [sym_parenthesized_expression] = STATE(2976), + [sym_arithmetic_expansion] = STATE(2498), + [sym_brace_expression] = STATE(2498), + [sym_concatenation] = STATE(2976), + [sym_string] = STATE(2498), + [sym_translated_string] = STATE(2498), + [sym_number] = STATE(2498), + [sym_simple_expansion] = STATE(2498), + [sym_expansion] = STATE(2498), + [sym_command_substitution] = STATE(2498), + [sym_process_substitution] = STATE(2498), + [aux_sym__literal_repeat1] = STATE(2623), + [aux_sym_concatenation_repeat1] = STATE(2480), + [sym_word] = ACTIONS(237), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1153), [anon_sym_EQ] = ACTIONS(243), [anon_sym_PLUS_PLUS] = ACTIONS(243), [anon_sym_DASH_DASH] = ACTIONS(243), @@ -71177,13 +71478,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_EQ] = ACTIONS(243), [anon_sym_PERCENT_EQ] = ACTIONS(243), [anon_sym_STAR_STAR_EQ] = ACTIONS(243), - [anon_sym_LT_LT_EQ] = ACTIONS(354), - [anon_sym_GT_GT_EQ] = ACTIONS(354), - [anon_sym_AMP_EQ] = ACTIONS(354), + [anon_sym_LT_LT_EQ] = ACTIONS(290), + [anon_sym_GT_GT_EQ] = ACTIONS(290), + [anon_sym_AMP_EQ] = ACTIONS(290), [anon_sym_CARET_EQ] = ACTIONS(243), - [anon_sym_PIPE_EQ] = ACTIONS(354), - [anon_sym_PIPE_PIPE] = ACTIONS(354), - [anon_sym_AMP_AMP] = ACTIONS(354), + [anon_sym_PIPE_EQ] = ACTIONS(290), + [anon_sym_PIPE_PIPE] = ACTIONS(290), + [anon_sym_AMP_AMP] = ACTIONS(290), [anon_sym_PIPE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(243), [anon_sym_AMP] = ACTIONS(243), @@ -71191,8 +71492,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(243), [anon_sym_LT] = ACTIONS(243), [anon_sym_GT] = ACTIONS(243), - [anon_sym_LT_EQ] = ACTIONS(354), - [anon_sym_GT_EQ] = ACTIONS(354), + [anon_sym_LT_EQ] = ACTIONS(290), + [anon_sym_GT_EQ] = ACTIONS(290), [anon_sym_LT_LT] = ACTIONS(243), [anon_sym_GT_GT] = ACTIONS(243), [anon_sym_PLUS] = ACTIONS(243), @@ -71201,58 +71502,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(243), [anon_sym_PERCENT] = ACTIONS(243), [anon_sym_STAR_STAR] = ACTIONS(243), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_RBRACK] = ACTIONS(1123), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_RPAREN] = ACTIONS(290), + [anon_sym_BANG] = ACTIONS(250), [anon_sym_EQ_TILDE] = ACTIONS(243), [anon_sym_QMARK] = ACTIONS(243), - [anon_sym_PLUS_PLUS2] = ACTIONS(1099), - [anon_sym_DASH_DASH2] = ACTIONS(1099), - [anon_sym_DASH2] = ACTIONS(1101), - [anon_sym_PLUS2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(352), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(363), - [aux_sym_concatenation_token1] = ACTIONS(1105), - [anon_sym_DOLLAR] = ACTIONS(367), - [sym__special_character] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(371), - [sym_raw_string] = ACTIONS(1109), - [sym_ansi_c_string] = ACTIONS(1109), - [aux_sym_number_token1] = ACTIONS(375), - [aux_sym_number_token2] = ACTIONS(377), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(379), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(381), - [anon_sym_BQUOTE] = ACTIONS(383), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(385), - [anon_sym_LT_LPAREN] = ACTIONS(387), - [anon_sym_GT_LPAREN] = ACTIONS(387), + [anon_sym_PLUS_PLUS2] = ACTIONS(103), + [anon_sym_DASH_DASH2] = ACTIONS(103), + [anon_sym_DASH2] = ACTIONS(105), + [anon_sym_PLUS2] = ACTIONS(105), + [anon_sym_TILDE] = ACTIONS(107), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1153), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1155), + [aux_sym_concatenation_token1] = ACTIONS(1157), + [anon_sym_DOLLAR] = ACTIONS(258), + [sym__special_character] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1161), + [sym_raw_string] = ACTIONS(1163), + [sym_ansi_c_string] = ACTIONS(1163), + [aux_sym_number_token1] = ACTIONS(264), + [aux_sym_number_token2] = ACTIONS(266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1165), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(270), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1167), + [anon_sym_LT_LPAREN] = ACTIONS(1169), + [anon_sym_GT_LPAREN] = ACTIONS(1169), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1125), - [sym_test_operator] = ACTIONS(1113), - [sym__brace_start] = ACTIONS(391), + [sym__concat] = ACTIONS(1157), + [sym_test_operator] = ACTIONS(282), + [sym__brace_start] = ACTIONS(284), }, [458] = { - [sym__expression] = STATE(3089), - [sym_binary_expression] = STATE(2594), - [sym_ternary_expression] = STATE(2594), - [sym_unary_expression] = STATE(2594), - [sym_postfix_expression] = STATE(2594), - [sym_parenthesized_expression] = STATE(2594), - [sym_arithmetic_expansion] = STATE(2573), - [sym_brace_expression] = STATE(2573), - [sym_concatenation] = STATE(2594), - [sym_string] = STATE(2573), - [sym_translated_string] = STATE(2573), - [sym_number] = STATE(2573), - [sym_simple_expansion] = STATE(2573), - [sym_expansion] = STATE(2573), - [sym_command_substitution] = STATE(2573), - [sym_process_substitution] = STATE(2573), - [aux_sym__literal_repeat1] = STATE(2484), - [aux_sym_concatenation_repeat1] = STATE(2459), - [sym_word] = ACTIONS(1127), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1129), + [sym__expression] = STATE(3102), + [sym_binary_expression] = STATE(2674), + [sym_ternary_expression] = STATE(2674), + [sym_unary_expression] = STATE(2674), + [sym_postfix_expression] = STATE(2674), + [sym_parenthesized_expression] = STATE(2674), + [sym_arithmetic_expansion] = STATE(2530), + [sym_brace_expression] = STATE(2530), + [sym_concatenation] = STATE(2674), + [sym_string] = STATE(2530), + [sym_translated_string] = STATE(2530), + [sym_number] = STATE(2530), + [sym_simple_expansion] = STATE(2530), + [sym_expansion] = STATE(2530), + [sym_command_substitution] = STATE(2530), + [sym_process_substitution] = STATE(2530), + [aux_sym__literal_repeat1] = STATE(2548), + [aux_sym_concatenation_repeat1] = STATE(2485), + [sym_word] = ACTIONS(1171), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1099), + [anon_sym_RPAREN_RPAREN] = ACTIONS(290), [anon_sym_EQ] = ACTIONS(243), [anon_sym_PLUS_PLUS] = ACTIONS(243), [anon_sym_DASH_DASH] = ACTIONS(243), @@ -71262,13 +71564,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_EQ] = ACTIONS(243), [anon_sym_PERCENT_EQ] = ACTIONS(243), [anon_sym_STAR_STAR_EQ] = ACTIONS(243), - [anon_sym_LT_LT_EQ] = ACTIONS(354), - [anon_sym_GT_GT_EQ] = ACTIONS(354), - [anon_sym_AMP_EQ] = ACTIONS(354), + [anon_sym_LT_LT_EQ] = ACTIONS(290), + [anon_sym_GT_GT_EQ] = ACTIONS(290), + [anon_sym_AMP_EQ] = ACTIONS(290), [anon_sym_CARET_EQ] = ACTIONS(243), - [anon_sym_PIPE_EQ] = ACTIONS(354), - [anon_sym_PIPE_PIPE] = ACTIONS(354), - [anon_sym_AMP_AMP] = ACTIONS(354), + [anon_sym_PIPE_EQ] = ACTIONS(290), + [anon_sym_PIPE_PIPE] = ACTIONS(290), + [anon_sym_AMP_AMP] = ACTIONS(290), [anon_sym_PIPE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(243), [anon_sym_AMP] = ACTIONS(243), @@ -71276,8 +71578,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(243), [anon_sym_LT] = ACTIONS(243), [anon_sym_GT] = ACTIONS(243), - [anon_sym_LT_EQ] = ACTIONS(354), - [anon_sym_GT_EQ] = ACTIONS(354), + [anon_sym_LT_EQ] = ACTIONS(290), + [anon_sym_GT_EQ] = ACTIONS(290), [anon_sym_LT_LT] = ACTIONS(243), [anon_sym_GT_GT] = ACTIONS(243), [anon_sym_PLUS] = ACTIONS(243), @@ -71286,59 +71588,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(243), [anon_sym_PERCENT] = ACTIONS(243), [anon_sym_STAR_STAR] = ACTIONS(243), - [anon_sym_LPAREN] = ACTIONS(1131), - [anon_sym_BANG] = ACTIONS(1133), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1173), [anon_sym_EQ_TILDE] = ACTIONS(243), [anon_sym_QMARK] = ACTIONS(243), - [anon_sym_COLON] = ACTIONS(243), - [anon_sym_PLUS_PLUS2] = ACTIONS(1135), - [anon_sym_DASH_DASH2] = ACTIONS(1135), - [anon_sym_DASH2] = ACTIONS(1137), - [anon_sym_PLUS2] = ACTIONS(1137), - [anon_sym_TILDE] = ACTIONS(1139), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1129), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1141), - [aux_sym_concatenation_token1] = ACTIONS(1143), - [anon_sym_DOLLAR] = ACTIONS(1145), - [sym__special_character] = ACTIONS(1147), - [anon_sym_DQUOTE] = ACTIONS(1149), - [sym_raw_string] = ACTIONS(1151), - [sym_ansi_c_string] = ACTIONS(1151), - [aux_sym_number_token1] = ACTIONS(1153), - [aux_sym_number_token2] = ACTIONS(1155), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1157), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1159), - [anon_sym_BQUOTE] = ACTIONS(1161), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1163), - [anon_sym_LT_LPAREN] = ACTIONS(1165), - [anon_sym_GT_LPAREN] = ACTIONS(1165), + [anon_sym_PLUS_PLUS2] = ACTIONS(1175), + [anon_sym_DASH_DASH2] = ACTIONS(1175), + [anon_sym_DASH2] = ACTIONS(1177), + [anon_sym_PLUS2] = ACTIONS(1177), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1099), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1111), + [aux_sym_concatenation_token1] = ACTIONS(1113), + [anon_sym_DOLLAR] = ACTIONS(1115), + [sym__special_character] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1119), + [sym_raw_string] = ACTIONS(1183), + [sym_ansi_c_string] = ACTIONS(1183), + [aux_sym_number_token1] = ACTIONS(1123), + [aux_sym_number_token2] = ACTIONS(1125), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1127), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1129), + [anon_sym_BQUOTE] = ACTIONS(1131), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1133), + [anon_sym_LT_LPAREN] = ACTIONS(1135), + [anon_sym_GT_LPAREN] = ACTIONS(1135), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1143), - [sym_test_operator] = ACTIONS(1167), - [sym__brace_start] = ACTIONS(1169), + [sym__concat] = ACTIONS(1113), + [sym_test_operator] = ACTIONS(1185), + [sym__brace_start] = ACTIONS(1139), }, [459] = { - [sym__expression] = STATE(3112), - [sym_binary_expression] = STATE(2594), - [sym_ternary_expression] = STATE(2594), - [sym_unary_expression] = STATE(2594), - [sym_postfix_expression] = STATE(2594), - [sym_parenthesized_expression] = STATE(2594), - [sym_arithmetic_expansion] = STATE(2456), - [sym_brace_expression] = STATE(2456), - [sym_concatenation] = STATE(2594), - [sym_string] = STATE(2456), - [sym_translated_string] = STATE(2456), - [sym_number] = STATE(2456), - [sym_simple_expansion] = STATE(2456), - [sym_expansion] = STATE(2456), - [sym_command_substitution] = STATE(2456), - [sym_process_substitution] = STATE(2456), - [aux_sym__literal_repeat1] = STATE(2484), - [aux_sym_concatenation_repeat1] = STATE(2495), - [sym_word] = ACTIONS(1171), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1129), - [anon_sym_RPAREN_RPAREN] = ACTIONS(354), + [sym__expression] = STATE(2808), + [sym_binary_expression] = STATE(2884), + [sym_ternary_expression] = STATE(2884), + [sym_unary_expression] = STATE(2884), + [sym_postfix_expression] = STATE(2884), + [sym_parenthesized_expression] = STATE(2884), + [sym_arithmetic_expansion] = STATE(2556), + [sym_brace_expression] = STATE(2556), + [sym_concatenation] = STATE(2884), + [sym_string] = STATE(2556), + [sym_translated_string] = STATE(2556), + [sym_number] = STATE(2556), + [sym_simple_expansion] = STATE(2556), + [sym_expansion] = STATE(2556), + [sym_command_substitution] = STATE(2556), + [sym_process_substitution] = STATE(2556), + [aux_sym__literal_repeat1] = STATE(2503), + [aux_sym_concatenation_repeat1] = STATE(2456), + [sym_word] = ACTIONS(1073), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_EQ] = ACTIONS(243), [anon_sym_PLUS_PLUS] = ACTIONS(243), [anon_sym_DASH_DASH] = ACTIONS(243), @@ -71348,13 +71648,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_EQ] = ACTIONS(243), [anon_sym_PERCENT_EQ] = ACTIONS(243), [anon_sym_STAR_STAR_EQ] = ACTIONS(243), - [anon_sym_LT_LT_EQ] = ACTIONS(354), - [anon_sym_GT_GT_EQ] = ACTIONS(354), - [anon_sym_AMP_EQ] = ACTIONS(354), + [anon_sym_LT_LT_EQ] = ACTIONS(290), + [anon_sym_GT_GT_EQ] = ACTIONS(290), + [anon_sym_AMP_EQ] = ACTIONS(290), [anon_sym_CARET_EQ] = ACTIONS(243), - [anon_sym_PIPE_EQ] = ACTIONS(354), - [anon_sym_PIPE_PIPE] = ACTIONS(354), - [anon_sym_AMP_AMP] = ACTIONS(354), + [anon_sym_PIPE_EQ] = ACTIONS(290), + [anon_sym_PIPE_PIPE] = ACTIONS(290), + [anon_sym_AMP_AMP] = ACTIONS(290), [anon_sym_PIPE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(243), [anon_sym_AMP] = ACTIONS(243), @@ -71362,8 +71662,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(243), [anon_sym_LT] = ACTIONS(243), [anon_sym_GT] = ACTIONS(243), - [anon_sym_LT_EQ] = ACTIONS(354), - [anon_sym_GT_EQ] = ACTIONS(354), + [anon_sym_LT_EQ] = ACTIONS(290), + [anon_sym_GT_EQ] = ACTIONS(290), [anon_sym_LT_LT] = ACTIONS(243), [anon_sym_GT_GT] = ACTIONS(243), [anon_sym_PLUS] = ACTIONS(243), @@ -71372,57 +71672,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(243), [anon_sym_PERCENT] = ACTIONS(243), [anon_sym_STAR_STAR] = ACTIONS(243), - [anon_sym_LPAREN] = ACTIONS(1131), - [anon_sym_BANG] = ACTIONS(1173), + [anon_sym_LPAREN] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1077), + [anon_sym_RBRACK] = ACTIONS(290), [anon_sym_EQ_TILDE] = ACTIONS(243), [anon_sym_QMARK] = ACTIONS(243), - [anon_sym_PLUS_PLUS2] = ACTIONS(1175), - [anon_sym_DASH_DASH2] = ACTIONS(1175), - [anon_sym_DASH2] = ACTIONS(1177), - [anon_sym_PLUS2] = ACTIONS(1177), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1129), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1141), - [aux_sym_concatenation_token1] = ACTIONS(1143), - [anon_sym_DOLLAR] = ACTIONS(1145), - [sym__special_character] = ACTIONS(1181), - [anon_sym_DQUOTE] = ACTIONS(1149), - [sym_raw_string] = ACTIONS(1183), - [sym_ansi_c_string] = ACTIONS(1183), - [aux_sym_number_token1] = ACTIONS(1153), - [aux_sym_number_token2] = ACTIONS(1155), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1157), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1159), - [anon_sym_BQUOTE] = ACTIONS(1161), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1163), - [anon_sym_LT_LPAREN] = ACTIONS(1165), - [anon_sym_GT_LPAREN] = ACTIONS(1165), + [anon_sym_PLUS_PLUS2] = ACTIONS(1081), + [anon_sym_DASH_DASH2] = ACTIONS(1081), + [anon_sym_DASH2] = ACTIONS(1083), + [anon_sym_PLUS2] = ACTIONS(1083), + [anon_sym_TILDE] = ACTIONS(1085), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(299), + [aux_sym_concatenation_token1] = ACTIONS(1087), + [anon_sym_DOLLAR] = ACTIONS(303), + [sym__special_character] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(307), + [sym_raw_string] = ACTIONS(1091), + [sym_ansi_c_string] = ACTIONS(1091), + [aux_sym_number_token1] = ACTIONS(311), + [aux_sym_number_token2] = ACTIONS(313), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(315), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(317), + [anon_sym_BQUOTE] = ACTIONS(319), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(321), + [anon_sym_LT_LPAREN] = ACTIONS(323), + [anon_sym_GT_LPAREN] = ACTIONS(323), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1143), - [sym_test_operator] = ACTIONS(1185), - [sym__brace_start] = ACTIONS(1169), + [sym__concat] = ACTIONS(290), + [sym_test_operator] = ACTIONS(1095), + [sym__brace_start] = ACTIONS(327), }, [460] = { - [sym__expression] = STATE(3041), - [sym_binary_expression] = STATE(2594), - [sym_ternary_expression] = STATE(2594), - [sym_unary_expression] = STATE(2594), - [sym_postfix_expression] = STATE(2594), - [sym_parenthesized_expression] = STATE(2594), - [sym_arithmetic_expansion] = STATE(2503), - [sym_brace_expression] = STATE(2503), - [sym_concatenation] = STATE(2594), - [sym_string] = STATE(2503), - [sym_translated_string] = STATE(2503), - [sym_number] = STATE(2503), - [sym_simple_expansion] = STATE(2503), - [sym_expansion] = STATE(2503), - [sym_command_substitution] = STATE(2503), - [sym_process_substitution] = STATE(2503), - [aux_sym__literal_repeat1] = STATE(2717), - [aux_sym_concatenation_repeat1] = STATE(2466), + [sym__expression] = STATE(2963), + [sym_binary_expression] = STATE(2674), + [sym_ternary_expression] = STATE(2674), + [sym_unary_expression] = STATE(2674), + [sym_postfix_expression] = STATE(2674), + [sym_parenthesized_expression] = STATE(2674), + [sym_arithmetic_expansion] = STATE(2567), + [sym_brace_expression] = STATE(2567), + [sym_concatenation] = STATE(2674), + [sym_string] = STATE(2567), + [sym_translated_string] = STATE(2567), + [sym_number] = STATE(2567), + [sym_simple_expansion] = STATE(2567), + [sym_expansion] = STATE(2567), + [sym_command_substitution] = STATE(2567), + [sym_process_substitution] = STATE(2567), + [aux_sym__literal_repeat1] = STATE(2548), + [aux_sym_concatenation_repeat1] = STATE(2512), [sym_word] = ACTIONS(1187), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1129), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1099), [anon_sym_EQ] = ACTIONS(243), [anon_sym_PLUS_PLUS] = ACTIONS(243), [anon_sym_DASH_DASH] = ACTIONS(243), @@ -71432,13 +71733,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_EQ] = ACTIONS(243), [anon_sym_PERCENT_EQ] = ACTIONS(243), [anon_sym_STAR_STAR_EQ] = ACTIONS(243), - [anon_sym_LT_LT_EQ] = ACTIONS(354), - [anon_sym_GT_GT_EQ] = ACTIONS(354), - [anon_sym_AMP_EQ] = ACTIONS(354), + [anon_sym_LT_LT_EQ] = ACTIONS(290), + [anon_sym_GT_GT_EQ] = ACTIONS(290), + [anon_sym_AMP_EQ] = ACTIONS(290), [anon_sym_CARET_EQ] = ACTIONS(243), - [anon_sym_PIPE_EQ] = ACTIONS(354), - [anon_sym_PIPE_PIPE] = ACTIONS(354), - [anon_sym_AMP_AMP] = ACTIONS(354), + [anon_sym_PIPE_EQ] = ACTIONS(290), + [anon_sym_PIPE_PIPE] = ACTIONS(290), + [anon_sym_AMP_AMP] = ACTIONS(290), [anon_sym_PIPE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(243), [anon_sym_AMP] = ACTIONS(243), @@ -71446,8 +71747,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(243), [anon_sym_LT] = ACTIONS(243), [anon_sym_GT] = ACTIONS(243), - [anon_sym_LT_EQ] = ACTIONS(354), - [anon_sym_GT_EQ] = ACTIONS(354), + [anon_sym_LT_EQ] = ACTIONS(290), + [anon_sym_GT_EQ] = ACTIONS(290), [anon_sym_LT_LT] = ACTIONS(243), [anon_sym_GT_GT] = ACTIONS(243), [anon_sym_PLUS] = ACTIONS(243), @@ -71456,58 +71757,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(243), [anon_sym_PERCENT] = ACTIONS(243), [anon_sym_STAR_STAR] = ACTIONS(243), - [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_BANG] = ACTIONS(1189), - [anon_sym_RBRACK_RBRACK] = ACTIONS(354), [anon_sym_EQ_TILDE] = ACTIONS(243), [anon_sym_QMARK] = ACTIONS(243), + [anon_sym_COLON] = ACTIONS(243), [anon_sym_PLUS_PLUS2] = ACTIONS(1191), [anon_sym_DASH_DASH2] = ACTIONS(1191), [anon_sym_DASH2] = ACTIONS(1193), [anon_sym_PLUS2] = ACTIONS(1193), [anon_sym_TILDE] = ACTIONS(1195), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1129), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1141), - [aux_sym_concatenation_token1] = ACTIONS(1143), - [anon_sym_DOLLAR] = ACTIONS(1145), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1099), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1111), + [aux_sym_concatenation_token1] = ACTIONS(1113), + [anon_sym_DOLLAR] = ACTIONS(1115), [sym__special_character] = ACTIONS(1197), - [anon_sym_DQUOTE] = ACTIONS(1149), + [anon_sym_DQUOTE] = ACTIONS(1119), [sym_raw_string] = ACTIONS(1199), [sym_ansi_c_string] = ACTIONS(1199), - [aux_sym_number_token1] = ACTIONS(1153), - [aux_sym_number_token2] = ACTIONS(1155), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1157), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1159), - [anon_sym_BQUOTE] = ACTIONS(1161), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1163), - [anon_sym_LT_LPAREN] = ACTIONS(1165), - [anon_sym_GT_LPAREN] = ACTIONS(1165), + [aux_sym_number_token1] = ACTIONS(1123), + [aux_sym_number_token2] = ACTIONS(1125), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1127), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1129), + [anon_sym_BQUOTE] = ACTIONS(1131), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1133), + [anon_sym_LT_LPAREN] = ACTIONS(1135), + [anon_sym_GT_LPAREN] = ACTIONS(1135), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1143), + [sym__concat] = ACTIONS(1113), [sym_test_operator] = ACTIONS(1201), - [sym__brace_start] = ACTIONS(1169), + [sym__brace_start] = ACTIONS(1139), }, [461] = { - [sym__expression] = STATE(2933), - [sym_binary_expression] = STATE(2863), - [sym_ternary_expression] = STATE(2863), - [sym_unary_expression] = STATE(2863), - [sym_postfix_expression] = STATE(2863), - [sym_parenthesized_expression] = STATE(2863), - [sym_arithmetic_expansion] = STATE(2451), - [sym_brace_expression] = STATE(2451), - [sym_concatenation] = STATE(2863), - [sym_string] = STATE(2451), - [sym_translated_string] = STATE(2451), - [sym_number] = STATE(2451), - [sym_simple_expansion] = STATE(2451), - [sym_expansion] = STATE(2451), - [sym_command_substitution] = STATE(2451), - [sym_process_substitution] = STATE(2451), - [aux_sym__literal_repeat1] = STATE(2472), - [aux_sym_concatenation_repeat1] = STATE(2540), - [sym_word] = ACTIONS(1091), - [anon_sym_LPAREN_LPAREN] = ACTIONS(352), + [sym__expression] = STATE(2808), + [sym_binary_expression] = STATE(2884), + [sym_ternary_expression] = STATE(2884), + [sym_unary_expression] = STATE(2884), + [sym_postfix_expression] = STATE(2884), + [sym_parenthesized_expression] = STATE(2884), + [sym_arithmetic_expansion] = STATE(2556), + [sym_brace_expression] = STATE(2556), + [sym_concatenation] = STATE(2884), + [sym_string] = STATE(2556), + [sym_translated_string] = STATE(2556), + [sym_number] = STATE(2556), + [sym_simple_expansion] = STATE(2556), + [sym_expansion] = STATE(2556), + [sym_command_substitution] = STATE(2556), + [sym_process_substitution] = STATE(2556), + [aux_sym__literal_repeat1] = STATE(2503), + [aux_sym_concatenation_repeat1] = STATE(2456), + [sym_word] = ACTIONS(1073), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_EQ] = ACTIONS(243), [anon_sym_PLUS_PLUS] = ACTIONS(243), [anon_sym_DASH_DASH] = ACTIONS(243), @@ -71517,13 +71818,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_EQ] = ACTIONS(243), [anon_sym_PERCENT_EQ] = ACTIONS(243), [anon_sym_STAR_STAR_EQ] = ACTIONS(243), - [anon_sym_LT_LT_EQ] = ACTIONS(354), - [anon_sym_GT_GT_EQ] = ACTIONS(354), - [anon_sym_AMP_EQ] = ACTIONS(354), + [anon_sym_LT_LT_EQ] = ACTIONS(290), + [anon_sym_GT_GT_EQ] = ACTIONS(290), + [anon_sym_AMP_EQ] = ACTIONS(290), [anon_sym_CARET_EQ] = ACTIONS(243), - [anon_sym_PIPE_EQ] = ACTIONS(354), - [anon_sym_PIPE_PIPE] = ACTIONS(354), - [anon_sym_AMP_AMP] = ACTIONS(354), + [anon_sym_PIPE_EQ] = ACTIONS(290), + [anon_sym_PIPE_PIPE] = ACTIONS(290), + [anon_sym_AMP_AMP] = ACTIONS(290), [anon_sym_PIPE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(243), [anon_sym_AMP] = ACTIONS(243), @@ -71531,8 +71832,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(243), [anon_sym_LT] = ACTIONS(243), [anon_sym_GT] = ACTIONS(243), - [anon_sym_LT_EQ] = ACTIONS(354), - [anon_sym_GT_EQ] = ACTIONS(354), + [anon_sym_LT_EQ] = ACTIONS(290), + [anon_sym_GT_EQ] = ACTIONS(290), [anon_sym_LT_LT] = ACTIONS(243), [anon_sym_GT_GT] = ACTIONS(243), [anon_sym_PLUS] = ACTIONS(243), @@ -71541,58 +71842,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(243), [anon_sym_PERCENT] = ACTIONS(243), [anon_sym_STAR_STAR] = ACTIONS(243), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1077), [anon_sym_RBRACK] = ACTIONS(1203), [anon_sym_EQ_TILDE] = ACTIONS(243), [anon_sym_QMARK] = ACTIONS(243), - [anon_sym_PLUS_PLUS2] = ACTIONS(1099), - [anon_sym_DASH_DASH2] = ACTIONS(1099), - [anon_sym_DASH2] = ACTIONS(1101), - [anon_sym_PLUS2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(352), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(363), - [aux_sym_concatenation_token1] = ACTIONS(1105), - [anon_sym_DOLLAR] = ACTIONS(367), - [sym__special_character] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(371), - [sym_raw_string] = ACTIONS(1109), - [sym_ansi_c_string] = ACTIONS(1109), - [aux_sym_number_token1] = ACTIONS(375), - [aux_sym_number_token2] = ACTIONS(377), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(379), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(381), - [anon_sym_BQUOTE] = ACTIONS(383), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(385), - [anon_sym_LT_LPAREN] = ACTIONS(387), - [anon_sym_GT_LPAREN] = ACTIONS(387), + [anon_sym_PLUS_PLUS2] = ACTIONS(1081), + [anon_sym_DASH_DASH2] = ACTIONS(1081), + [anon_sym_DASH2] = ACTIONS(1083), + [anon_sym_PLUS2] = ACTIONS(1083), + [anon_sym_TILDE] = ACTIONS(1085), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(299), + [aux_sym_concatenation_token1] = ACTIONS(1087), + [anon_sym_DOLLAR] = ACTIONS(303), + [sym__special_character] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(307), + [sym_raw_string] = ACTIONS(1091), + [sym_ansi_c_string] = ACTIONS(1091), + [aux_sym_number_token1] = ACTIONS(311), + [aux_sym_number_token2] = ACTIONS(313), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(315), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(317), + [anon_sym_BQUOTE] = ACTIONS(319), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(321), + [anon_sym_LT_LPAREN] = ACTIONS(323), + [anon_sym_GT_LPAREN] = ACTIONS(323), [sym_comment] = ACTIONS(71), [sym__concat] = ACTIONS(1205), - [sym_test_operator] = ACTIONS(1113), - [sym__brace_start] = ACTIONS(391), + [sym_test_operator] = ACTIONS(1095), + [sym__brace_start] = ACTIONS(327), }, [462] = { - [sym__expression] = STATE(2933), - [sym_binary_expression] = STATE(2863), - [sym_ternary_expression] = STATE(2863), - [sym_unary_expression] = STATE(2863), - [sym_postfix_expression] = STATE(2863), - [sym_parenthesized_expression] = STATE(2863), - [sym_arithmetic_expansion] = STATE(2451), - [sym_brace_expression] = STATE(2451), - [sym_concatenation] = STATE(2863), - [sym_string] = STATE(2451), - [sym_translated_string] = STATE(2451), - [sym_number] = STATE(2451), - [sym_simple_expansion] = STATE(2451), - [sym_expansion] = STATE(2451), - [sym_command_substitution] = STATE(2451), - [sym_process_substitution] = STATE(2451), - [aux_sym__literal_repeat1] = STATE(2472), - [aux_sym_concatenation_repeat1] = STATE(2540), - [sym_word] = ACTIONS(1091), - [anon_sym_LPAREN_LPAREN] = ACTIONS(352), + [sym__expression] = STATE(2808), + [sym_binary_expression] = STATE(2884), + [sym_ternary_expression] = STATE(2884), + [sym_unary_expression] = STATE(2884), + [sym_postfix_expression] = STATE(2884), + [sym_parenthesized_expression] = STATE(2884), + [sym_arithmetic_expansion] = STATE(2556), + [sym_brace_expression] = STATE(2556), + [sym_concatenation] = STATE(2884), + [sym_string] = STATE(2556), + [sym_translated_string] = STATE(2556), + [sym_number] = STATE(2556), + [sym_simple_expansion] = STATE(2556), + [sym_expansion] = STATE(2556), + [sym_command_substitution] = STATE(2556), + [sym_process_substitution] = STATE(2556), + [aux_sym__literal_repeat1] = STATE(2503), + [aux_sym_concatenation_repeat1] = STATE(2456), + [sym_word] = ACTIONS(1073), + [anon_sym_LPAREN_LPAREN] = ACTIONS(288), [anon_sym_EQ] = ACTIONS(243), [anon_sym_PLUS_PLUS] = ACTIONS(243), [anon_sym_DASH_DASH] = ACTIONS(243), @@ -71602,13 +71903,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_EQ] = ACTIONS(243), [anon_sym_PERCENT_EQ] = ACTIONS(243), [anon_sym_STAR_STAR_EQ] = ACTIONS(243), - [anon_sym_LT_LT_EQ] = ACTIONS(354), - [anon_sym_GT_GT_EQ] = ACTIONS(354), - [anon_sym_AMP_EQ] = ACTIONS(354), + [anon_sym_LT_LT_EQ] = ACTIONS(290), + [anon_sym_GT_GT_EQ] = ACTIONS(290), + [anon_sym_AMP_EQ] = ACTIONS(290), [anon_sym_CARET_EQ] = ACTIONS(243), - [anon_sym_PIPE_EQ] = ACTIONS(354), - [anon_sym_PIPE_PIPE] = ACTIONS(354), - [anon_sym_AMP_AMP] = ACTIONS(354), + [anon_sym_PIPE_EQ] = ACTIONS(290), + [anon_sym_PIPE_PIPE] = ACTIONS(290), + [anon_sym_AMP_AMP] = ACTIONS(290), [anon_sym_PIPE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(243), [anon_sym_AMP] = ACTIONS(243), @@ -71616,8 +71917,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(243), [anon_sym_LT] = ACTIONS(243), [anon_sym_GT] = ACTIONS(243), - [anon_sym_LT_EQ] = ACTIONS(354), - [anon_sym_GT_EQ] = ACTIONS(354), + [anon_sym_LT_EQ] = ACTIONS(290), + [anon_sym_GT_EQ] = ACTIONS(290), [anon_sym_LT_LT] = ACTIONS(243), [anon_sym_GT_GT] = ACTIONS(243), [anon_sym_PLUS] = ACTIONS(243), @@ -71626,58 +71927,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(243), [anon_sym_PERCENT] = ACTIONS(243), [anon_sym_STAR_STAR] = ACTIONS(243), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1077), [anon_sym_RBRACK] = ACTIONS(1207), [anon_sym_EQ_TILDE] = ACTIONS(243), [anon_sym_QMARK] = ACTIONS(243), - [anon_sym_PLUS_PLUS2] = ACTIONS(1099), - [anon_sym_DASH_DASH2] = ACTIONS(1099), - [anon_sym_DASH2] = ACTIONS(1101), - [anon_sym_PLUS2] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1103), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(352), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(363), - [aux_sym_concatenation_token1] = ACTIONS(1105), - [anon_sym_DOLLAR] = ACTIONS(367), - [sym__special_character] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(371), - [sym_raw_string] = ACTIONS(1109), - [sym_ansi_c_string] = ACTIONS(1109), - [aux_sym_number_token1] = ACTIONS(375), - [aux_sym_number_token2] = ACTIONS(377), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(379), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(381), - [anon_sym_BQUOTE] = ACTIONS(383), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(385), - [anon_sym_LT_LPAREN] = ACTIONS(387), - [anon_sym_GT_LPAREN] = ACTIONS(387), + [anon_sym_PLUS_PLUS2] = ACTIONS(1081), + [anon_sym_DASH_DASH2] = ACTIONS(1081), + [anon_sym_DASH2] = ACTIONS(1083), + [anon_sym_PLUS2] = ACTIONS(1083), + [anon_sym_TILDE] = ACTIONS(1085), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(288), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(299), + [aux_sym_concatenation_token1] = ACTIONS(1087), + [anon_sym_DOLLAR] = ACTIONS(303), + [sym__special_character] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(307), + [sym_raw_string] = ACTIONS(1091), + [sym_ansi_c_string] = ACTIONS(1091), + [aux_sym_number_token1] = ACTIONS(311), + [aux_sym_number_token2] = ACTIONS(313), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(315), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(317), + [anon_sym_BQUOTE] = ACTIONS(319), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(321), + [anon_sym_LT_LPAREN] = ACTIONS(323), + [anon_sym_GT_LPAREN] = ACTIONS(323), [sym_comment] = ACTIONS(71), [sym__concat] = ACTIONS(1209), - [sym_test_operator] = ACTIONS(1113), - [sym__brace_start] = ACTIONS(391), + [sym_test_operator] = ACTIONS(1095), + [sym__brace_start] = ACTIONS(327), }, [463] = { - [sym__expression] = STATE(3197), - [sym_binary_expression] = STATE(2594), - [sym_ternary_expression] = STATE(2594), - [sym_unary_expression] = STATE(2594), - [sym_postfix_expression] = STATE(2594), - [sym_parenthesized_expression] = STATE(2594), - [sym_arithmetic_expansion] = STATE(2588), - [sym_brace_expression] = STATE(2588), - [sym_concatenation] = STATE(2594), - [sym_string] = STATE(2588), - [sym_translated_string] = STATE(2588), - [sym_number] = STATE(2588), - [sym_simple_expansion] = STATE(2588), - [sym_expansion] = STATE(2588), - [sym_command_substitution] = STATE(2588), - [sym_process_substitution] = STATE(2588), - [aux_sym__literal_repeat1] = STATE(2484), - [aux_sym_concatenation_repeat1] = STATE(2723), + [sym__expression] = STATE(3448), + [sym_binary_expression] = STATE(2674), + [sym_ternary_expression] = STATE(2674), + [sym_unary_expression] = STATE(2674), + [sym_postfix_expression] = STATE(2674), + [sym_parenthesized_expression] = STATE(2674), + [sym_arithmetic_expansion] = STATE(2732), + [sym_brace_expression] = STATE(2732), + [sym_concatenation] = STATE(2674), + [sym_string] = STATE(2732), + [sym_translated_string] = STATE(2732), + [sym_number] = STATE(2732), + [sym_simple_expansion] = STATE(2732), + [sym_expansion] = STATE(2732), + [sym_command_substitution] = STATE(2732), + [sym_process_substitution] = STATE(2732), + [aux_sym__literal_repeat1] = STATE(2548), + [aux_sym_concatenation_repeat1] = STATE(2637), [sym_word] = ACTIONS(1211), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1129), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1099), [anon_sym_EQ] = ACTIONS(243), [anon_sym_PLUS_PLUS] = ACTIONS(243), [anon_sym_DASH_DASH] = ACTIONS(243), @@ -71687,13 +71988,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_EQ] = ACTIONS(243), [anon_sym_PERCENT_EQ] = ACTIONS(243), [anon_sym_STAR_STAR_EQ] = ACTIONS(243), - [anon_sym_LT_LT_EQ] = ACTIONS(354), - [anon_sym_GT_GT_EQ] = ACTIONS(354), - [anon_sym_AMP_EQ] = ACTIONS(354), + [anon_sym_LT_LT_EQ] = ACTIONS(290), + [anon_sym_GT_GT_EQ] = ACTIONS(290), + [anon_sym_AMP_EQ] = ACTIONS(290), [anon_sym_CARET_EQ] = ACTIONS(243), - [anon_sym_PIPE_EQ] = ACTIONS(354), - [anon_sym_PIPE_PIPE] = ACTIONS(354), - [anon_sym_AMP_AMP] = ACTIONS(354), + [anon_sym_PIPE_EQ] = ACTIONS(290), + [anon_sym_PIPE_PIPE] = ACTIONS(290), + [anon_sym_AMP_AMP] = ACTIONS(290), [anon_sym_PIPE] = ACTIONS(243), [anon_sym_CARET] = ACTIONS(243), [anon_sym_AMP] = ACTIONS(243), @@ -71701,8 +72002,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(243), [anon_sym_LT] = ACTIONS(243), [anon_sym_GT] = ACTIONS(243), - [anon_sym_LT_EQ] = ACTIONS(354), - [anon_sym_GT_EQ] = ACTIONS(354), + [anon_sym_LT_EQ] = ACTIONS(290), + [anon_sym_GT_EQ] = ACTIONS(290), [anon_sym_LT_LT] = ACTIONS(243), [anon_sym_GT_GT] = ACTIONS(243), [anon_sym_PLUS] = ACTIONS(243), @@ -71711,7 +72012,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(243), [anon_sym_PERCENT] = ACTIONS(243), [anon_sym_STAR_STAR] = ACTIONS(243), - [anon_sym_LPAREN] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_BANG] = ACTIONS(1213), [anon_sym_EQ_TILDE] = ACTIONS(243), [anon_sym_QMARK] = ACTIONS(243), @@ -71720,29 +72021,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH2] = ACTIONS(1217), [anon_sym_PLUS2] = ACTIONS(1217), [anon_sym_TILDE] = ACTIONS(1219), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1129), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1141), - [aux_sym_concatenation_token1] = ACTIONS(1143), - [anon_sym_DOLLAR] = ACTIONS(1145), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1099), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1111), + [aux_sym_concatenation_token1] = ACTIONS(1113), + [anon_sym_DOLLAR] = ACTIONS(1115), [sym__special_character] = ACTIONS(1221), - [anon_sym_DQUOTE] = ACTIONS(1149), + [anon_sym_DQUOTE] = ACTIONS(1119), [sym_raw_string] = ACTIONS(1223), [sym_ansi_c_string] = ACTIONS(1223), - [aux_sym_number_token1] = ACTIONS(1153), - [aux_sym_number_token2] = ACTIONS(1155), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1157), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1159), - [anon_sym_BQUOTE] = ACTIONS(1161), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1163), - [anon_sym_LT_LPAREN] = ACTIONS(1165), - [anon_sym_GT_LPAREN] = ACTIONS(1165), + [aux_sym_number_token1] = ACTIONS(1123), + [aux_sym_number_token2] = ACTIONS(1125), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1127), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1129), + [anon_sym_BQUOTE] = ACTIONS(1131), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1133), + [anon_sym_LT_LPAREN] = ACTIONS(1135), + [anon_sym_GT_LPAREN] = ACTIONS(1135), [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1143), + [sym__concat] = ACTIONS(1113), [sym_test_operator] = ACTIONS(1225), - [sym__brace_start] = ACTIONS(1169), + [sym__brace_start] = ACTIONS(1139), }, [464] = { - [sym_string] = STATE(489), + [sym_string] = STATE(476), [sym_word] = ACTIONS(1227), [anon_sym_LPAREN_LPAREN] = ACTIONS(1227), [anon_sym_SEMI] = ACTIONS(1227), @@ -71825,7 +72126,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(1235), }, [465] = { - [sym_string] = STATE(489), + [sym_string] = STATE(476), [sym_word] = ACTIONS(1239), [anon_sym_LPAREN_LPAREN] = ACTIONS(1239), [anon_sym_SEMI] = ACTIONS(1239), @@ -71908,7 +72209,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(1241), }, [466] = { - [sym_string] = STATE(503), + [sym_string] = STATE(508), [sym_word] = ACTIONS(1227), [anon_sym_LPAREN_LPAREN] = ACTIONS(1227), [anon_sym_EQ] = ACTIONS(1227), @@ -71988,7 +72289,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(1235), }, [467] = { - [sym_string] = STATE(503), + [sym_string] = STATE(508), [sym_word] = ACTIONS(1239), [anon_sym_LPAREN_LPAREN] = ACTIONS(1239), [anon_sym_EQ] = ACTIONS(1239), @@ -72068,48 +72369,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(1241), }, [468] = { - [aux_sym_concatenation_repeat1] = STATE(468), + [aux_sym_concatenation_repeat1] = STATE(473), [sym_word] = ACTIONS(1251), [anon_sym_LPAREN_LPAREN] = ACTIONS(1251), [anon_sym_SEMI] = ACTIONS(1251), - [anon_sym_EQ] = ACTIONS(1251), - [anon_sym_PLUS_PLUS] = ACTIONS(1251), - [anon_sym_DASH_DASH] = ACTIONS(1251), - [anon_sym_PLUS_EQ] = ACTIONS(1251), - [anon_sym_DASH_EQ] = ACTIONS(1251), - [anon_sym_STAR_EQ] = ACTIONS(1251), - [anon_sym_SLASH_EQ] = ACTIONS(1251), - [anon_sym_PERCENT_EQ] = ACTIONS(1251), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1251), - [anon_sym_LT_LT_EQ] = ACTIONS(1251), - [anon_sym_GT_GT_EQ] = ACTIONS(1251), - [anon_sym_AMP_EQ] = ACTIONS(1251), - [anon_sym_CARET_EQ] = ACTIONS(1251), - [anon_sym_PIPE_EQ] = ACTIONS(1251), - [anon_sym_PIPE_PIPE] = ACTIONS(1251), - [anon_sym_AMP_AMP] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1251), - [anon_sym_EQ_EQ] = ACTIONS(1251), - [anon_sym_BANG_EQ] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_LT_EQ] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1251), - [anon_sym_LT_LT] = ACTIONS(1251), - [anon_sym_GT_GT] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1251), - [anon_sym_SLASH] = ACTIONS(1251), - [anon_sym_PERCENT] = ACTIONS(1251), - [anon_sym_STAR_STAR] = ACTIONS(1251), + [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [anon_sym_PLUS_EQ] = ACTIONS(1253), + [anon_sym_DASH_EQ] = ACTIONS(1253), + [anon_sym_STAR_EQ] = ACTIONS(1253), + [anon_sym_SLASH_EQ] = ACTIONS(1253), + [anon_sym_PERCENT_EQ] = ACTIONS(1253), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1253), + [anon_sym_LT_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_GT_EQ] = ACTIONS(1253), + [anon_sym_AMP_EQ] = ACTIONS(1253), + [anon_sym_CARET_EQ] = ACTIONS(1253), + [anon_sym_PIPE_EQ] = ACTIONS(1253), + [anon_sym_PIPE_PIPE] = ACTIONS(1255), + [anon_sym_AMP_AMP] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(1255), + [anon_sym_CARET] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1253), + [anon_sym_LT] = ACTIONS(1255), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_EQ] = ACTIONS(1253), + [anon_sym_LT_LT] = ACTIONS(1255), + [anon_sym_GT_GT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1253), + [anon_sym_PERCENT] = ACTIONS(1253), + [anon_sym_STAR_STAR] = ACTIONS(1253), [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_RPAREN] = ACTIONS(1251), + [anon_sym_RPAREN] = ACTIONS(1255), [anon_sym_SEMI_SEMI] = ACTIONS(1251), [anon_sym_PIPE_AMP] = ACTIONS(1251), - [anon_sym_EQ_TILDE] = ACTIONS(1251), + [anon_sym_EQ_TILDE] = ACTIONS(1255), [anon_sym_AMP_GT] = ACTIONS(1251), [anon_sym_AMP_GT_GT] = ACTIONS(1251), [anon_sym_LT_AMP] = ACTIONS(1251), @@ -72118,12 +72419,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_AMP_DASH] = ACTIONS(1251), [anon_sym_GT_AMP_DASH] = ACTIONS(1251), [anon_sym_LT_LT_DASH] = ACTIONS(1251), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1253), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1258), [anon_sym_LT_LT_LT] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(1253), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1251), [anon_sym_DOLLAR_LBRACK] = ACTIONS(1251), - [aux_sym_concatenation_token1] = ACTIONS(1255), + [aux_sym_concatenation_token1] = ACTIONS(256), [anon_sym_DOLLAR] = ACTIONS(1251), [sym__special_character] = ACTIONS(1251), [anon_sym_DQUOTE] = ACTIONS(1251), @@ -72138,322 +72439,322 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(1251), [anon_sym_GT_LPAREN] = ACTIONS(1251), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1253), - [sym__concat] = ACTIONS(1258), - [sym_test_operator] = ACTIONS(1253), - [sym__bare_dollar] = ACTIONS(1253), - [sym__brace_start] = ACTIONS(1253), + [sym_file_descriptor] = ACTIONS(1258), + [sym__concat] = ACTIONS(280), + [sym_test_operator] = ACTIONS(1260), + [sym__bare_dollar] = ACTIONS(1258), + [sym__brace_start] = ACTIONS(1258), }, [469] = { - [aux_sym_concatenation_repeat1] = STATE(470), - [sym_word] = ACTIONS(1261), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1261), - [anon_sym_SEMI] = ACTIONS(1261), - [anon_sym_EQ] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1261), - [anon_sym_DASH_DASH] = ACTIONS(1261), - [anon_sym_PLUS_EQ] = ACTIONS(1261), - [anon_sym_DASH_EQ] = ACTIONS(1261), - [anon_sym_STAR_EQ] = ACTIONS(1261), - [anon_sym_SLASH_EQ] = ACTIONS(1261), - [anon_sym_PERCENT_EQ] = ACTIONS(1261), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1261), - [anon_sym_LT_LT_EQ] = ACTIONS(1261), - [anon_sym_GT_GT_EQ] = ACTIONS(1261), - [anon_sym_AMP_EQ] = ACTIONS(1261), - [anon_sym_CARET_EQ] = ACTIONS(1261), - [anon_sym_PIPE_EQ] = ACTIONS(1261), - [anon_sym_PIPE_PIPE] = ACTIONS(1261), - [anon_sym_AMP_AMP] = ACTIONS(1261), - [anon_sym_PIPE] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym_EQ_EQ] = ACTIONS(1261), - [anon_sym_BANG_EQ] = ACTIONS(1261), - [anon_sym_LT] = ACTIONS(1261), - [anon_sym_GT] = ACTIONS(1261), - [anon_sym_LT_EQ] = ACTIONS(1261), - [anon_sym_GT_EQ] = ACTIONS(1261), - [anon_sym_LT_LT] = ACTIONS(1261), - [anon_sym_GT_GT] = ACTIONS(1261), - [anon_sym_PLUS] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1261), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_SLASH] = ACTIONS(1261), - [anon_sym_PERCENT] = ACTIONS(1261), - [anon_sym_STAR_STAR] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(1261), - [anon_sym_RPAREN] = ACTIONS(1261), - [anon_sym_SEMI_SEMI] = ACTIONS(1261), - [anon_sym_PIPE_AMP] = ACTIONS(1261), - [anon_sym_EQ_TILDE] = ACTIONS(1261), - [anon_sym_AMP_GT] = ACTIONS(1261), - [anon_sym_AMP_GT_GT] = ACTIONS(1261), - [anon_sym_LT_AMP] = ACTIONS(1261), - [anon_sym_GT_AMP] = ACTIONS(1261), - [anon_sym_GT_PIPE] = ACTIONS(1261), - [anon_sym_LT_AMP_DASH] = ACTIONS(1261), - [anon_sym_GT_AMP_DASH] = ACTIONS(1261), - [anon_sym_LT_LT_DASH] = ACTIONS(1261), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1263), - [anon_sym_LT_LT_LT] = ACTIONS(1261), - [anon_sym_QMARK] = ACTIONS(1261), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1261), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1261), + [aux_sym_concatenation_repeat1] = STATE(473), + [sym_word] = ACTIONS(1251), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1251), + [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [anon_sym_PLUS_EQ] = ACTIONS(1253), + [anon_sym_DASH_EQ] = ACTIONS(1253), + [anon_sym_STAR_EQ] = ACTIONS(1253), + [anon_sym_SLASH_EQ] = ACTIONS(1253), + [anon_sym_PERCENT_EQ] = ACTIONS(1253), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1253), + [anon_sym_LT_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_GT_EQ] = ACTIONS(1253), + [anon_sym_AMP_EQ] = ACTIONS(1253), + [anon_sym_CARET_EQ] = ACTIONS(1253), + [anon_sym_PIPE_EQ] = ACTIONS(1253), + [anon_sym_PIPE_PIPE] = ACTIONS(1255), + [anon_sym_AMP_AMP] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(1255), + [anon_sym_CARET] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1253), + [anon_sym_LT] = ACTIONS(1255), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_EQ] = ACTIONS(1253), + [anon_sym_LT_LT] = ACTIONS(1255), + [anon_sym_GT_GT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1253), + [anon_sym_PERCENT] = ACTIONS(1253), + [anon_sym_STAR_STAR] = ACTIONS(1253), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_RPAREN] = ACTIONS(1255), + [anon_sym_SEMI_SEMI] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1251), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_AMP_GT] = ACTIONS(1251), + [anon_sym_AMP_GT_GT] = ACTIONS(1251), + [anon_sym_LT_AMP] = ACTIONS(1251), + [anon_sym_GT_AMP] = ACTIONS(1251), + [anon_sym_GT_PIPE] = ACTIONS(1251), + [anon_sym_LT_AMP_DASH] = ACTIONS(1251), + [anon_sym_GT_AMP_DASH] = ACTIONS(1251), + [anon_sym_LT_LT_DASH] = ACTIONS(1251), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1258), + [anon_sym_LT_LT_LT] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(1253), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1251), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1251), [aux_sym_concatenation_token1] = ACTIONS(256), - [anon_sym_DOLLAR] = ACTIONS(1261), - [sym__special_character] = ACTIONS(1261), - [anon_sym_DQUOTE] = ACTIONS(1261), - [sym_raw_string] = ACTIONS(1261), - [sym_ansi_c_string] = ACTIONS(1261), - [aux_sym_number_token1] = ACTIONS(1261), - [aux_sym_number_token2] = ACTIONS(1261), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1261), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1261), - [anon_sym_BQUOTE] = ACTIONS(1261), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1261), - [anon_sym_LT_LPAREN] = ACTIONS(1261), - [anon_sym_GT_LPAREN] = ACTIONS(1261), + [anon_sym_DOLLAR] = ACTIONS(1251), + [sym__special_character] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym_raw_string] = ACTIONS(1251), + [sym_ansi_c_string] = ACTIONS(1251), + [aux_sym_number_token1] = ACTIONS(1251), + [aux_sym_number_token2] = ACTIONS(1251), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1251), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1251), + [anon_sym_BQUOTE] = ACTIONS(1251), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1251), + [anon_sym_LT_LPAREN] = ACTIONS(1251), + [anon_sym_GT_LPAREN] = ACTIONS(1251), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1263), + [sym_file_descriptor] = ACTIONS(1258), [sym__concat] = ACTIONS(280), - [sym_test_operator] = ACTIONS(1263), - [sym__bare_dollar] = ACTIONS(1263), - [sym__brace_start] = ACTIONS(1263), + [sym_test_operator] = ACTIONS(1260), + [sym__bare_dollar] = ACTIONS(1258), + [sym__brace_start] = ACTIONS(1258), }, [470] = { - [aux_sym_concatenation_repeat1] = STATE(468), - [sym_word] = ACTIONS(1265), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1265), - [anon_sym_SEMI] = ACTIONS(1265), - [anon_sym_EQ] = ACTIONS(1265), - [anon_sym_PLUS_PLUS] = ACTIONS(1265), - [anon_sym_DASH_DASH] = ACTIONS(1265), - [anon_sym_PLUS_EQ] = ACTIONS(1265), - [anon_sym_DASH_EQ] = ACTIONS(1265), - [anon_sym_STAR_EQ] = ACTIONS(1265), - [anon_sym_SLASH_EQ] = ACTIONS(1265), - [anon_sym_PERCENT_EQ] = ACTIONS(1265), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1265), - [anon_sym_LT_LT_EQ] = ACTIONS(1265), - [anon_sym_GT_GT_EQ] = ACTIONS(1265), - [anon_sym_AMP_EQ] = ACTIONS(1265), - [anon_sym_CARET_EQ] = ACTIONS(1265), - [anon_sym_PIPE_EQ] = ACTIONS(1265), - [anon_sym_PIPE_PIPE] = ACTIONS(1265), - [anon_sym_AMP_AMP] = ACTIONS(1265), - [anon_sym_PIPE] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1265), - [anon_sym_EQ_EQ] = ACTIONS(1265), - [anon_sym_BANG_EQ] = ACTIONS(1265), - [anon_sym_LT] = ACTIONS(1265), - [anon_sym_GT] = ACTIONS(1265), - [anon_sym_LT_EQ] = ACTIONS(1265), - [anon_sym_GT_EQ] = ACTIONS(1265), - [anon_sym_LT_LT] = ACTIONS(1265), - [anon_sym_GT_GT] = ACTIONS(1265), - [anon_sym_PLUS] = ACTIONS(1265), - [anon_sym_DASH] = ACTIONS(1265), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_SLASH] = ACTIONS(1265), - [anon_sym_PERCENT] = ACTIONS(1265), - [anon_sym_STAR_STAR] = ACTIONS(1265), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1265), - [anon_sym_SEMI_SEMI] = ACTIONS(1265), - [anon_sym_PIPE_AMP] = ACTIONS(1265), - [anon_sym_EQ_TILDE] = ACTIONS(1265), - [anon_sym_AMP_GT] = ACTIONS(1265), - [anon_sym_AMP_GT_GT] = ACTIONS(1265), - [anon_sym_LT_AMP] = ACTIONS(1265), - [anon_sym_GT_AMP] = ACTIONS(1265), - [anon_sym_GT_PIPE] = ACTIONS(1265), - [anon_sym_LT_AMP_DASH] = ACTIONS(1265), - [anon_sym_GT_AMP_DASH] = ACTIONS(1265), - [anon_sym_LT_LT_DASH] = ACTIONS(1265), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1267), - [anon_sym_LT_LT_LT] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1265), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1265), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1265), + [aux_sym_concatenation_repeat1] = STATE(472), + [sym_word] = ACTIONS(1266), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1266), + [anon_sym_EQ] = ACTIONS(1266), + [anon_sym_PLUS_PLUS] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1266), + [anon_sym_PLUS_EQ] = ACTIONS(1266), + [anon_sym_DASH_EQ] = ACTIONS(1266), + [anon_sym_STAR_EQ] = ACTIONS(1266), + [anon_sym_SLASH_EQ] = ACTIONS(1266), + [anon_sym_PERCENT_EQ] = ACTIONS(1266), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1266), + [anon_sym_LT_LT_EQ] = ACTIONS(1266), + [anon_sym_GT_GT_EQ] = ACTIONS(1266), + [anon_sym_AMP_EQ] = ACTIONS(1266), + [anon_sym_CARET_EQ] = ACTIONS(1266), + [anon_sym_PIPE_EQ] = ACTIONS(1266), + [anon_sym_PIPE_PIPE] = ACTIONS(1266), + [anon_sym_AMP_AMP] = ACTIONS(1266), + [anon_sym_PIPE] = ACTIONS(1266), + [anon_sym_CARET] = ACTIONS(1266), + [anon_sym_AMP] = ACTIONS(1266), + [anon_sym_EQ_EQ] = ACTIONS(1266), + [anon_sym_BANG_EQ] = ACTIONS(1266), + [anon_sym_LT] = ACTIONS(1266), + [anon_sym_GT] = ACTIONS(1266), + [anon_sym_LT_EQ] = ACTIONS(1266), + [anon_sym_GT_EQ] = ACTIONS(1266), + [anon_sym_LT_LT] = ACTIONS(1266), + [anon_sym_GT_GT] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_SLASH] = ACTIONS(1266), + [anon_sym_PERCENT] = ACTIONS(1266), + [anon_sym_STAR_STAR] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1266), + [anon_sym_RPAREN] = ACTIONS(1266), + [anon_sym_SEMI_SEMI] = ACTIONS(1266), + [anon_sym_PIPE_AMP] = ACTIONS(1266), + [anon_sym_EQ_TILDE] = ACTIONS(1266), + [anon_sym_AMP_GT] = ACTIONS(1266), + [anon_sym_AMP_GT_GT] = ACTIONS(1266), + [anon_sym_LT_AMP] = ACTIONS(1266), + [anon_sym_GT_AMP] = ACTIONS(1266), + [anon_sym_GT_PIPE] = ACTIONS(1266), + [anon_sym_LT_AMP_DASH] = ACTIONS(1266), + [anon_sym_GT_AMP_DASH] = ACTIONS(1266), + [anon_sym_LT_LT_DASH] = ACTIONS(1266), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1268), + [anon_sym_LT_LT_LT] = ACTIONS(1266), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1266), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1266), [aux_sym_concatenation_token1] = ACTIONS(256), - [anon_sym_DOLLAR] = ACTIONS(1265), - [sym__special_character] = ACTIONS(1265), - [anon_sym_DQUOTE] = ACTIONS(1265), - [sym_raw_string] = ACTIONS(1265), - [sym_ansi_c_string] = ACTIONS(1265), - [aux_sym_number_token1] = ACTIONS(1265), - [aux_sym_number_token2] = ACTIONS(1265), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1265), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1265), - [anon_sym_BQUOTE] = ACTIONS(1265), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1265), - [anon_sym_LT_LPAREN] = ACTIONS(1265), - [anon_sym_GT_LPAREN] = ACTIONS(1265), + [anon_sym_DOLLAR] = ACTIONS(1266), + [sym__special_character] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym_raw_string] = ACTIONS(1266), + [sym_ansi_c_string] = ACTIONS(1266), + [aux_sym_number_token1] = ACTIONS(1266), + [aux_sym_number_token2] = ACTIONS(1266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1266), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1266), + [anon_sym_BQUOTE] = ACTIONS(1266), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1266), + [anon_sym_LT_LPAREN] = ACTIONS(1266), + [anon_sym_GT_LPAREN] = ACTIONS(1266), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1267), - [sym__concat] = ACTIONS(1269), - [sym_test_operator] = ACTIONS(1267), - [sym__bare_dollar] = ACTIONS(1267), - [sym__brace_start] = ACTIONS(1267), + [sym_file_descriptor] = ACTIONS(1268), + [sym__concat] = ACTIONS(1270), + [sym_test_operator] = ACTIONS(1268), + [sym__bare_dollar] = ACTIONS(1268), + [sym__brace_start] = ACTIONS(1268), }, [471] = { - [aux_sym_concatenation_repeat1] = STATE(473), - [sym_word] = ACTIONS(1271), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1271), - [anon_sym_SEMI] = ACTIONS(1271), - [anon_sym_EQ] = ACTIONS(1273), - [anon_sym_PLUS_PLUS] = ACTIONS(1273), - [anon_sym_DASH_DASH] = ACTIONS(1273), - [anon_sym_PLUS_EQ] = ACTIONS(1273), - [anon_sym_DASH_EQ] = ACTIONS(1273), - [anon_sym_STAR_EQ] = ACTIONS(1273), - [anon_sym_SLASH_EQ] = ACTIONS(1273), - [anon_sym_PERCENT_EQ] = ACTIONS(1273), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1273), - [anon_sym_LT_LT_EQ] = ACTIONS(1273), - [anon_sym_GT_GT_EQ] = ACTIONS(1273), - [anon_sym_AMP_EQ] = ACTIONS(1273), - [anon_sym_CARET_EQ] = ACTIONS(1273), - [anon_sym_PIPE_EQ] = ACTIONS(1273), - [anon_sym_PIPE_PIPE] = ACTIONS(1275), - [anon_sym_AMP_AMP] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1275), - [anon_sym_CARET] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1275), - [anon_sym_EQ_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ] = ACTIONS(1273), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), - [anon_sym_LT_EQ] = ACTIONS(1273), - [anon_sym_GT_EQ] = ACTIONS(1273), - [anon_sym_LT_LT] = ACTIONS(1275), - [anon_sym_GT_GT] = ACTIONS(1275), - [anon_sym_PLUS] = ACTIONS(1273), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(1273), - [anon_sym_SLASH] = ACTIONS(1273), - [anon_sym_PERCENT] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1273), - [anon_sym_LPAREN] = ACTIONS(1278), - [anon_sym_RPAREN] = ACTIONS(1275), - [anon_sym_SEMI_SEMI] = ACTIONS(1271), - [anon_sym_PIPE_AMP] = ACTIONS(1271), - [anon_sym_EQ_TILDE] = ACTIONS(1275), - [anon_sym_AMP_GT] = ACTIONS(1271), - [anon_sym_AMP_GT_GT] = ACTIONS(1271), - [anon_sym_LT_AMP] = ACTIONS(1271), - [anon_sym_GT_AMP] = ACTIONS(1271), - [anon_sym_GT_PIPE] = ACTIONS(1271), - [anon_sym_LT_AMP_DASH] = ACTIONS(1271), - [anon_sym_GT_AMP_DASH] = ACTIONS(1271), - [anon_sym_LT_LT_DASH] = ACTIONS(1271), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1281), - [anon_sym_LT_LT_LT] = ACTIONS(1271), - [anon_sym_QMARK] = ACTIONS(1273), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1271), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1271), + [aux_sym_concatenation_repeat1] = STATE(470), + [sym_word] = ACTIONS(1272), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1272), + [anon_sym_SEMI] = ACTIONS(1272), + [anon_sym_EQ] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1272), + [anon_sym_DASH_DASH] = ACTIONS(1272), + [anon_sym_PLUS_EQ] = ACTIONS(1272), + [anon_sym_DASH_EQ] = ACTIONS(1272), + [anon_sym_STAR_EQ] = ACTIONS(1272), + [anon_sym_SLASH_EQ] = ACTIONS(1272), + [anon_sym_PERCENT_EQ] = ACTIONS(1272), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1272), + [anon_sym_LT_LT_EQ] = ACTIONS(1272), + [anon_sym_GT_GT_EQ] = ACTIONS(1272), + [anon_sym_AMP_EQ] = ACTIONS(1272), + [anon_sym_CARET_EQ] = ACTIONS(1272), + [anon_sym_PIPE_EQ] = ACTIONS(1272), + [anon_sym_PIPE_PIPE] = ACTIONS(1272), + [anon_sym_AMP_AMP] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_CARET] = ACTIONS(1272), + [anon_sym_AMP] = ACTIONS(1272), + [anon_sym_EQ_EQ] = ACTIONS(1272), + [anon_sym_BANG_EQ] = ACTIONS(1272), + [anon_sym_LT] = ACTIONS(1272), + [anon_sym_GT] = ACTIONS(1272), + [anon_sym_LT_EQ] = ACTIONS(1272), + [anon_sym_GT_EQ] = ACTIONS(1272), + [anon_sym_LT_LT] = ACTIONS(1272), + [anon_sym_GT_GT] = ACTIONS(1272), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_STAR] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(1272), + [anon_sym_PERCENT] = ACTIONS(1272), + [anon_sym_STAR_STAR] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(1272), + [anon_sym_RPAREN] = ACTIONS(1272), + [anon_sym_SEMI_SEMI] = ACTIONS(1272), + [anon_sym_PIPE_AMP] = ACTIONS(1272), + [anon_sym_EQ_TILDE] = ACTIONS(1272), + [anon_sym_AMP_GT] = ACTIONS(1272), + [anon_sym_AMP_GT_GT] = ACTIONS(1272), + [anon_sym_LT_AMP] = ACTIONS(1272), + [anon_sym_GT_AMP] = ACTIONS(1272), + [anon_sym_GT_PIPE] = ACTIONS(1272), + [anon_sym_LT_AMP_DASH] = ACTIONS(1272), + [anon_sym_GT_AMP_DASH] = ACTIONS(1272), + [anon_sym_LT_LT_DASH] = ACTIONS(1272), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1274), + [anon_sym_LT_LT_LT] = ACTIONS(1272), + [anon_sym_QMARK] = ACTIONS(1272), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1272), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1272), [aux_sym_concatenation_token1] = ACTIONS(256), - [anon_sym_DOLLAR] = ACTIONS(1271), - [sym__special_character] = ACTIONS(1271), - [anon_sym_DQUOTE] = ACTIONS(1271), - [sym_raw_string] = ACTIONS(1271), - [sym_ansi_c_string] = ACTIONS(1271), - [aux_sym_number_token1] = ACTIONS(1271), - [aux_sym_number_token2] = ACTIONS(1271), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1271), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1271), - [anon_sym_BQUOTE] = ACTIONS(1271), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1271), - [anon_sym_LT_LPAREN] = ACTIONS(1271), - [anon_sym_GT_LPAREN] = ACTIONS(1271), + [anon_sym_DOLLAR] = ACTIONS(1272), + [sym__special_character] = ACTIONS(1272), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym_raw_string] = ACTIONS(1272), + [sym_ansi_c_string] = ACTIONS(1272), + [aux_sym_number_token1] = ACTIONS(1272), + [aux_sym_number_token2] = ACTIONS(1272), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1272), + [anon_sym_BQUOTE] = ACTIONS(1272), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1272), + [anon_sym_LT_LPAREN] = ACTIONS(1272), + [anon_sym_GT_LPAREN] = ACTIONS(1272), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1281), + [sym_file_descriptor] = ACTIONS(1274), [sym__concat] = ACTIONS(280), - [sym_test_operator] = ACTIONS(1283), - [sym__bare_dollar] = ACTIONS(1281), - [sym__brace_start] = ACTIONS(1281), + [sym_test_operator] = ACTIONS(1274), + [sym__bare_dollar] = ACTIONS(1274), + [sym__brace_start] = ACTIONS(1274), }, [472] = { - [aux_sym_concatenation_repeat1] = STATE(473), - [sym_word] = ACTIONS(1271), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1271), - [anon_sym_SEMI] = ACTIONS(1271), - [anon_sym_EQ] = ACTIONS(1273), - [anon_sym_PLUS_PLUS] = ACTIONS(1273), - [anon_sym_DASH_DASH] = ACTIONS(1273), - [anon_sym_PLUS_EQ] = ACTIONS(1273), - [anon_sym_DASH_EQ] = ACTIONS(1273), - [anon_sym_STAR_EQ] = ACTIONS(1273), - [anon_sym_SLASH_EQ] = ACTIONS(1273), - [anon_sym_PERCENT_EQ] = ACTIONS(1273), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1273), - [anon_sym_LT_LT_EQ] = ACTIONS(1273), - [anon_sym_GT_GT_EQ] = ACTIONS(1273), - [anon_sym_AMP_EQ] = ACTIONS(1273), - [anon_sym_CARET_EQ] = ACTIONS(1273), - [anon_sym_PIPE_EQ] = ACTIONS(1273), - [anon_sym_PIPE_PIPE] = ACTIONS(1275), - [anon_sym_AMP_AMP] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1275), - [anon_sym_CARET] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1275), - [anon_sym_EQ_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ] = ACTIONS(1273), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), - [anon_sym_LT_EQ] = ACTIONS(1273), - [anon_sym_GT_EQ] = ACTIONS(1273), - [anon_sym_LT_LT] = ACTIONS(1275), - [anon_sym_GT_GT] = ACTIONS(1275), - [anon_sym_PLUS] = ACTIONS(1273), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(1273), - [anon_sym_SLASH] = ACTIONS(1273), - [anon_sym_PERCENT] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1273), - [anon_sym_LPAREN] = ACTIONS(1271), - [anon_sym_RPAREN] = ACTIONS(1275), - [anon_sym_SEMI_SEMI] = ACTIONS(1271), - [anon_sym_PIPE_AMP] = ACTIONS(1271), - [anon_sym_EQ_TILDE] = ACTIONS(1275), - [anon_sym_AMP_GT] = ACTIONS(1271), - [anon_sym_AMP_GT_GT] = ACTIONS(1271), - [anon_sym_LT_AMP] = ACTIONS(1271), - [anon_sym_GT_AMP] = ACTIONS(1271), - [anon_sym_GT_PIPE] = ACTIONS(1271), - [anon_sym_LT_AMP_DASH] = ACTIONS(1271), - [anon_sym_GT_AMP_DASH] = ACTIONS(1271), - [anon_sym_LT_LT_DASH] = ACTIONS(1271), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1281), - [anon_sym_LT_LT_LT] = ACTIONS(1271), - [anon_sym_QMARK] = ACTIONS(1273), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1271), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1271), - [aux_sym_concatenation_token1] = ACTIONS(256), - [anon_sym_DOLLAR] = ACTIONS(1271), - [sym__special_character] = ACTIONS(1271), - [anon_sym_DQUOTE] = ACTIONS(1271), - [sym_raw_string] = ACTIONS(1271), - [sym_ansi_c_string] = ACTIONS(1271), - [aux_sym_number_token1] = ACTIONS(1271), - [aux_sym_number_token2] = ACTIONS(1271), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1271), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1271), - [anon_sym_BQUOTE] = ACTIONS(1271), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1271), - [anon_sym_LT_LPAREN] = ACTIONS(1271), - [anon_sym_GT_LPAREN] = ACTIONS(1271), + [aux_sym_concatenation_repeat1] = STATE(472), + [sym_word] = ACTIONS(1276), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1276), + [anon_sym_SEMI] = ACTIONS(1276), + [anon_sym_EQ] = ACTIONS(1276), + [anon_sym_PLUS_PLUS] = ACTIONS(1276), + [anon_sym_DASH_DASH] = ACTIONS(1276), + [anon_sym_PLUS_EQ] = ACTIONS(1276), + [anon_sym_DASH_EQ] = ACTIONS(1276), + [anon_sym_STAR_EQ] = ACTIONS(1276), + [anon_sym_SLASH_EQ] = ACTIONS(1276), + [anon_sym_PERCENT_EQ] = ACTIONS(1276), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1276), + [anon_sym_LT_LT_EQ] = ACTIONS(1276), + [anon_sym_GT_GT_EQ] = ACTIONS(1276), + [anon_sym_AMP_EQ] = ACTIONS(1276), + [anon_sym_CARET_EQ] = ACTIONS(1276), + [anon_sym_PIPE_EQ] = ACTIONS(1276), + [anon_sym_PIPE_PIPE] = ACTIONS(1276), + [anon_sym_AMP_AMP] = ACTIONS(1276), + [anon_sym_PIPE] = ACTIONS(1276), + [anon_sym_CARET] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1276), + [anon_sym_EQ_EQ] = ACTIONS(1276), + [anon_sym_BANG_EQ] = ACTIONS(1276), + [anon_sym_LT] = ACTIONS(1276), + [anon_sym_GT] = ACTIONS(1276), + [anon_sym_LT_EQ] = ACTIONS(1276), + [anon_sym_GT_EQ] = ACTIONS(1276), + [anon_sym_LT_LT] = ACTIONS(1276), + [anon_sym_GT_GT] = ACTIONS(1276), + [anon_sym_PLUS] = ACTIONS(1276), + [anon_sym_DASH] = ACTIONS(1276), + [anon_sym_STAR] = ACTIONS(1276), + [anon_sym_SLASH] = ACTIONS(1276), + [anon_sym_PERCENT] = ACTIONS(1276), + [anon_sym_STAR_STAR] = ACTIONS(1276), + [anon_sym_LPAREN] = ACTIONS(1276), + [anon_sym_RPAREN] = ACTIONS(1276), + [anon_sym_SEMI_SEMI] = ACTIONS(1276), + [anon_sym_PIPE_AMP] = ACTIONS(1276), + [anon_sym_EQ_TILDE] = ACTIONS(1276), + [anon_sym_AMP_GT] = ACTIONS(1276), + [anon_sym_AMP_GT_GT] = ACTIONS(1276), + [anon_sym_LT_AMP] = ACTIONS(1276), + [anon_sym_GT_AMP] = ACTIONS(1276), + [anon_sym_GT_PIPE] = ACTIONS(1276), + [anon_sym_LT_AMP_DASH] = ACTIONS(1276), + [anon_sym_GT_AMP_DASH] = ACTIONS(1276), + [anon_sym_LT_LT_DASH] = ACTIONS(1276), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1278), + [anon_sym_LT_LT_LT] = ACTIONS(1276), + [anon_sym_QMARK] = ACTIONS(1276), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1276), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1276), + [aux_sym_concatenation_token1] = ACTIONS(1280), + [anon_sym_DOLLAR] = ACTIONS(1276), + [sym__special_character] = ACTIONS(1276), + [anon_sym_DQUOTE] = ACTIONS(1276), + [sym_raw_string] = ACTIONS(1276), + [sym_ansi_c_string] = ACTIONS(1276), + [aux_sym_number_token1] = ACTIONS(1276), + [aux_sym_number_token2] = ACTIONS(1276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1276), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1276), + [anon_sym_BQUOTE] = ACTIONS(1276), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1276), + [anon_sym_LT_LPAREN] = ACTIONS(1276), + [anon_sym_GT_LPAREN] = ACTIONS(1276), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1281), - [sym__concat] = ACTIONS(280), - [sym_test_operator] = ACTIONS(1283), - [sym__bare_dollar] = ACTIONS(1281), - [sym__brace_start] = ACTIONS(1281), + [sym_file_descriptor] = ACTIONS(1278), + [sym__concat] = ACTIONS(1283), + [sym_test_operator] = ACTIONS(1278), + [sym__bare_dollar] = ACTIONS(1278), + [sym__brace_start] = ACTIONS(1278), }, [473] = { - [aux_sym_concatenation_repeat1] = STATE(468), + [aux_sym_concatenation_repeat1] = STATE(472), [sym_word] = ACTIONS(1286), [anon_sym_LPAREN_LPAREN] = ACTIONS(1286), [anon_sym_SEMI] = ACTIONS(1286), @@ -72606,6 +72907,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(1294), }, [475] = { + [sym_word] = ACTIONS(1276), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1276), + [anon_sym_SEMI] = ACTIONS(1276), + [anon_sym_EQ] = ACTIONS(1276), + [anon_sym_PLUS_PLUS] = ACTIONS(1276), + [anon_sym_DASH_DASH] = ACTIONS(1276), + [anon_sym_PLUS_EQ] = ACTIONS(1276), + [anon_sym_DASH_EQ] = ACTIONS(1276), + [anon_sym_STAR_EQ] = ACTIONS(1276), + [anon_sym_SLASH_EQ] = ACTIONS(1276), + [anon_sym_PERCENT_EQ] = ACTIONS(1276), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1276), + [anon_sym_LT_LT_EQ] = ACTIONS(1276), + [anon_sym_GT_GT_EQ] = ACTIONS(1276), + [anon_sym_AMP_EQ] = ACTIONS(1276), + [anon_sym_CARET_EQ] = ACTIONS(1276), + [anon_sym_PIPE_EQ] = ACTIONS(1276), + [anon_sym_PIPE_PIPE] = ACTIONS(1276), + [anon_sym_AMP_AMP] = ACTIONS(1276), + [anon_sym_PIPE] = ACTIONS(1276), + [anon_sym_CARET] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1276), + [anon_sym_EQ_EQ] = ACTIONS(1276), + [anon_sym_BANG_EQ] = ACTIONS(1276), + [anon_sym_LT] = ACTIONS(1276), + [anon_sym_GT] = ACTIONS(1276), + [anon_sym_LT_EQ] = ACTIONS(1276), + [anon_sym_GT_EQ] = ACTIONS(1276), + [anon_sym_LT_LT] = ACTIONS(1276), + [anon_sym_GT_GT] = ACTIONS(1276), + [anon_sym_PLUS] = ACTIONS(1276), + [anon_sym_DASH] = ACTIONS(1276), + [anon_sym_STAR] = ACTIONS(1276), + [anon_sym_SLASH] = ACTIONS(1276), + [anon_sym_PERCENT] = ACTIONS(1276), + [anon_sym_STAR_STAR] = ACTIONS(1276), + [anon_sym_LPAREN] = ACTIONS(1276), + [anon_sym_RPAREN] = ACTIONS(1276), + [anon_sym_SEMI_SEMI] = ACTIONS(1276), + [anon_sym_PIPE_AMP] = ACTIONS(1276), + [anon_sym_EQ_TILDE] = ACTIONS(1276), + [anon_sym_AMP_GT] = ACTIONS(1276), + [anon_sym_AMP_GT_GT] = ACTIONS(1276), + [anon_sym_LT_AMP] = ACTIONS(1276), + [anon_sym_GT_AMP] = ACTIONS(1276), + [anon_sym_GT_PIPE] = ACTIONS(1276), + [anon_sym_LT_AMP_DASH] = ACTIONS(1276), + [anon_sym_GT_AMP_DASH] = ACTIONS(1276), + [anon_sym_LT_LT_DASH] = ACTIONS(1276), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1278), + [anon_sym_LT_LT_LT] = ACTIONS(1276), + [anon_sym_QMARK] = ACTIONS(1276), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1276), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1276), + [aux_sym_concatenation_token1] = ACTIONS(1276), + [anon_sym_DOLLAR] = ACTIONS(1276), + [sym__special_character] = ACTIONS(1276), + [anon_sym_DQUOTE] = ACTIONS(1276), + [sym_raw_string] = ACTIONS(1276), + [sym_ansi_c_string] = ACTIONS(1276), + [aux_sym_number_token1] = ACTIONS(1276), + [aux_sym_number_token2] = ACTIONS(1276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1276), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1276), + [anon_sym_BQUOTE] = ACTIONS(1276), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1276), + [anon_sym_LT_LPAREN] = ACTIONS(1276), + [anon_sym_GT_LPAREN] = ACTIONS(1276), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1278), + [sym__concat] = ACTIONS(1278), + [sym_test_operator] = ACTIONS(1278), + [sym__bare_dollar] = ACTIONS(1278), + [sym__brace_start] = ACTIONS(1278), + }, + [476] = { [sym_word] = ACTIONS(1296), [anon_sym_LPAREN_LPAREN] = ACTIONS(1296), [anon_sym_SEMI] = ACTIONS(1296), @@ -72681,7 +73058,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1298), [sym__brace_start] = ACTIONS(1298), }, - [476] = { + [477] = { [sym_word] = ACTIONS(1300), [anon_sym_LPAREN_LPAREN] = ACTIONS(1300), [anon_sym_SEMI] = ACTIONS(1300), @@ -72757,7 +73134,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1302), [sym__brace_start] = ACTIONS(1302), }, - [477] = { + [478] = { [sym_word] = ACTIONS(1304), [anon_sym_LPAREN_LPAREN] = ACTIONS(1304), [anon_sym_SEMI] = ACTIONS(1304), @@ -72833,7 +73210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1306), [sym__brace_start] = ACTIONS(1306), }, - [478] = { + [479] = { [sym_word] = ACTIONS(1308), [anon_sym_LPAREN_LPAREN] = ACTIONS(1308), [anon_sym_SEMI] = ACTIONS(1308), @@ -72909,7 +73286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1310), [sym__brace_start] = ACTIONS(1310), }, - [479] = { + [480] = { [sym_word] = ACTIONS(1312), [anon_sym_LPAREN_LPAREN] = ACTIONS(1312), [anon_sym_SEMI] = ACTIONS(1312), @@ -72985,7 +73362,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1314), [sym__brace_start] = ACTIONS(1314), }, - [480] = { + [481] = { [sym_word] = ACTIONS(1316), [anon_sym_LPAREN_LPAREN] = ACTIONS(1316), [anon_sym_SEMI] = ACTIONS(1316), @@ -73061,7 +73438,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1318), [sym__brace_start] = ACTIONS(1318), }, - [481] = { + [482] = { [sym_word] = ACTIONS(1320), [anon_sym_LPAREN_LPAREN] = ACTIONS(1320), [anon_sym_SEMI] = ACTIONS(1320), @@ -73137,82 +73514,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1322), [sym__brace_start] = ACTIONS(1322), }, - [482] = { - [sym_word] = ACTIONS(1251), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1251), - [anon_sym_SEMI] = ACTIONS(1251), - [anon_sym_EQ] = ACTIONS(1251), - [anon_sym_PLUS_PLUS] = ACTIONS(1251), - [anon_sym_DASH_DASH] = ACTIONS(1251), - [anon_sym_PLUS_EQ] = ACTIONS(1251), - [anon_sym_DASH_EQ] = ACTIONS(1251), - [anon_sym_STAR_EQ] = ACTIONS(1251), - [anon_sym_SLASH_EQ] = ACTIONS(1251), - [anon_sym_PERCENT_EQ] = ACTIONS(1251), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1251), - [anon_sym_LT_LT_EQ] = ACTIONS(1251), - [anon_sym_GT_GT_EQ] = ACTIONS(1251), - [anon_sym_AMP_EQ] = ACTIONS(1251), - [anon_sym_CARET_EQ] = ACTIONS(1251), - [anon_sym_PIPE_EQ] = ACTIONS(1251), - [anon_sym_PIPE_PIPE] = ACTIONS(1251), - [anon_sym_AMP_AMP] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1251), - [anon_sym_EQ_EQ] = ACTIONS(1251), - [anon_sym_BANG_EQ] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_LT_EQ] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1251), - [anon_sym_LT_LT] = ACTIONS(1251), - [anon_sym_GT_GT] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1251), - [anon_sym_SLASH] = ACTIONS(1251), - [anon_sym_PERCENT] = ACTIONS(1251), - [anon_sym_STAR_STAR] = ACTIONS(1251), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_RPAREN] = ACTIONS(1251), - [anon_sym_SEMI_SEMI] = ACTIONS(1251), - [anon_sym_PIPE_AMP] = ACTIONS(1251), - [anon_sym_EQ_TILDE] = ACTIONS(1251), - [anon_sym_AMP_GT] = ACTIONS(1251), - [anon_sym_AMP_GT_GT] = ACTIONS(1251), - [anon_sym_LT_AMP] = ACTIONS(1251), - [anon_sym_GT_AMP] = ACTIONS(1251), - [anon_sym_GT_PIPE] = ACTIONS(1251), - [anon_sym_LT_AMP_DASH] = ACTIONS(1251), - [anon_sym_GT_AMP_DASH] = ACTIONS(1251), - [anon_sym_LT_LT_DASH] = ACTIONS(1251), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1253), - [anon_sym_LT_LT_LT] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(1251), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1251), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1251), - [aux_sym_concatenation_token1] = ACTIONS(1251), - [anon_sym_DOLLAR] = ACTIONS(1251), - [sym__special_character] = ACTIONS(1251), - [anon_sym_DQUOTE] = ACTIONS(1251), - [sym_raw_string] = ACTIONS(1251), - [sym_ansi_c_string] = ACTIONS(1251), - [aux_sym_number_token1] = ACTIONS(1251), - [aux_sym_number_token2] = ACTIONS(1251), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1251), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1251), - [anon_sym_BQUOTE] = ACTIONS(1251), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1251), - [anon_sym_LT_LPAREN] = ACTIONS(1251), - [anon_sym_GT_LPAREN] = ACTIONS(1251), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1253), - [sym__concat] = ACTIONS(1253), - [sym_test_operator] = ACTIONS(1253), - [sym__bare_dollar] = ACTIONS(1253), - [sym__brace_start] = ACTIONS(1253), - }, [483] = { [sym_word] = ACTIONS(1324), [anon_sym_LPAREN_LPAREN] = ACTIONS(1324), @@ -73822,80 +74123,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(1354), }, [491] = { - [sym_word] = ACTIONS(1308), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym_EQ] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_EQ] = ACTIONS(1308), - [anon_sym_DASH_EQ] = ACTIONS(1308), - [anon_sym_STAR_EQ] = ACTIONS(1308), - [anon_sym_SLASH_EQ] = ACTIONS(1308), - [anon_sym_PERCENT_EQ] = ACTIONS(1308), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1308), - [anon_sym_LT_LT_EQ] = ACTIONS(1308), - [anon_sym_GT_GT_EQ] = ACTIONS(1308), - [anon_sym_AMP_EQ] = ACTIONS(1308), - [anon_sym_CARET_EQ] = ACTIONS(1308), - [anon_sym_PIPE_EQ] = ACTIONS(1308), - [anon_sym_PIPE_PIPE] = ACTIONS(1308), - [anon_sym_AMP_AMP] = ACTIONS(1308), - [anon_sym_PIPE] = ACTIONS(1308), - [anon_sym_CARET] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_EQ_EQ] = ACTIONS(1308), - [anon_sym_BANG_EQ] = ACTIONS(1308), - [anon_sym_LT] = ACTIONS(1308), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_LT_EQ] = ACTIONS(1308), - [anon_sym_GT_EQ] = ACTIONS(1308), - [anon_sym_LT_LT] = ACTIONS(1308), - [anon_sym_GT_GT] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(1308), - [anon_sym_PERCENT] = ACTIONS(1308), - [anon_sym_STAR_STAR] = ACTIONS(1308), - [anon_sym_LPAREN] = ACTIONS(1308), - [anon_sym_RPAREN] = ACTIONS(1308), - [anon_sym_SEMI_SEMI] = ACTIONS(1308), - [anon_sym_PIPE_AMP] = ACTIONS(1308), - [anon_sym_EQ_TILDE] = ACTIONS(1308), - [anon_sym_AMP_GT] = ACTIONS(1308), - [anon_sym_AMP_GT_GT] = ACTIONS(1308), - [anon_sym_LT_AMP] = ACTIONS(1308), - [anon_sym_GT_AMP] = ACTIONS(1308), - [anon_sym_GT_PIPE] = ACTIONS(1308), - [anon_sym_LT_AMP_DASH] = ACTIONS(1308), - [anon_sym_GT_AMP_DASH] = ACTIONS(1308), - [anon_sym_LT_LT_DASH] = ACTIONS(1308), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1310), - [anon_sym_LT_LT_LT] = ACTIONS(1308), - [anon_sym_QMARK] = ACTIONS(1308), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1308), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1308), - [aux_sym_concatenation_token1] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(1308), - [sym__special_character] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_raw_string] = ACTIONS(1308), - [sym_ansi_c_string] = ACTIONS(1308), - [aux_sym_number_token1] = ACTIONS(1308), - [aux_sym_number_token2] = ACTIONS(1308), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1308), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), - [anon_sym_BQUOTE] = ACTIONS(1308), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1308), - [anon_sym_LT_LPAREN] = ACTIONS(1308), - [anon_sym_GT_LPAREN] = ACTIONS(1308), + [sym_word] = ACTIONS(1356), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_PLUS_EQ] = ACTIONS(1356), + [anon_sym_DASH_EQ] = ACTIONS(1356), + [anon_sym_STAR_EQ] = ACTIONS(1356), + [anon_sym_SLASH_EQ] = ACTIONS(1356), + [anon_sym_PERCENT_EQ] = ACTIONS(1356), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1356), + [anon_sym_LT_LT_EQ] = ACTIONS(1356), + [anon_sym_GT_GT_EQ] = ACTIONS(1356), + [anon_sym_AMP_EQ] = ACTIONS(1356), + [anon_sym_CARET_EQ] = ACTIONS(1356), + [anon_sym_PIPE_EQ] = ACTIONS(1356), + [anon_sym_PIPE_PIPE] = ACTIONS(1356), + [anon_sym_AMP_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_CARET] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_EQ_EQ] = ACTIONS(1356), + [anon_sym_BANG_EQ] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_LT_EQ] = ACTIONS(1356), + [anon_sym_GT_EQ] = ACTIONS(1356), + [anon_sym_LT_LT] = ACTIONS(1356), + [anon_sym_GT_GT] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_SLASH] = ACTIONS(1356), + [anon_sym_PERCENT] = ACTIONS(1356), + [anon_sym_STAR_STAR] = ACTIONS(1356), + [anon_sym_LPAREN] = ACTIONS(1356), + [anon_sym_RPAREN] = ACTIONS(1356), + [anon_sym_SEMI_SEMI] = ACTIONS(1356), + [anon_sym_PIPE_AMP] = ACTIONS(1356), + [anon_sym_EQ_TILDE] = ACTIONS(1356), + [anon_sym_AMP_GT] = ACTIONS(1356), + [anon_sym_AMP_GT_GT] = ACTIONS(1356), + [anon_sym_LT_AMP] = ACTIONS(1356), + [anon_sym_GT_AMP] = ACTIONS(1356), + [anon_sym_GT_PIPE] = ACTIONS(1356), + [anon_sym_LT_AMP_DASH] = ACTIONS(1356), + [anon_sym_GT_AMP_DASH] = ACTIONS(1356), + [anon_sym_LT_LT_DASH] = ACTIONS(1356), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1358), + [anon_sym_LT_LT_LT] = ACTIONS(1356), + [anon_sym_QMARK] = ACTIONS(1356), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1356), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1356), + [aux_sym_concatenation_token1] = ACTIONS(1356), + [anon_sym_DOLLAR] = ACTIONS(1356), + [sym__special_character] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [sym_raw_string] = ACTIONS(1356), + [sym_ansi_c_string] = ACTIONS(1356), + [aux_sym_number_token1] = ACTIONS(1356), + [aux_sym_number_token2] = ACTIONS(1356), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1356), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), + [anon_sym_BQUOTE] = ACTIONS(1356), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1356), + [anon_sym_LT_LPAREN] = ACTIONS(1356), + [anon_sym_GT_LPAREN] = ACTIONS(1356), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1310), - [sym__concat] = ACTIONS(1310), - [sym_test_operator] = ACTIONS(1310), - [sym__bare_dollar] = ACTIONS(1310), - [sym__brace_start] = ACTIONS(1310), + [sym_file_descriptor] = ACTIONS(1358), + [sym__concat] = ACTIONS(1358), + [sym_test_operator] = ACTIONS(1358), + [sym__bare_dollar] = ACTIONS(1358), + [sym__brace_start] = ACTIONS(1358), }, [492] = { [sym_word] = ACTIONS(1356), @@ -73974,7 +74275,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(1358), }, [493] = { - [aux_sym__literal_repeat1] = STATE(494), + [aux_sym__literal_repeat1] = STATE(493), + [sym_word] = ACTIONS(1360), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym_EQ] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_EQ] = ACTIONS(1360), + [anon_sym_DASH_EQ] = ACTIONS(1360), + [anon_sym_STAR_EQ] = ACTIONS(1360), + [anon_sym_SLASH_EQ] = ACTIONS(1360), + [anon_sym_PERCENT_EQ] = ACTIONS(1360), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1360), + [anon_sym_LT_LT_EQ] = ACTIONS(1360), + [anon_sym_GT_GT_EQ] = ACTIONS(1360), + [anon_sym_AMP_EQ] = ACTIONS(1360), + [anon_sym_CARET_EQ] = ACTIONS(1360), + [anon_sym_PIPE_EQ] = ACTIONS(1360), + [anon_sym_PIPE_PIPE] = ACTIONS(1360), + [anon_sym_AMP_AMP] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1360), + [anon_sym_CARET] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_EQ_EQ] = ACTIONS(1360), + [anon_sym_BANG_EQ] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1360), + [anon_sym_GT] = ACTIONS(1360), + [anon_sym_LT_EQ] = ACTIONS(1360), + [anon_sym_GT_EQ] = ACTIONS(1360), + [anon_sym_LT_LT] = ACTIONS(1360), + [anon_sym_GT_GT] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_SLASH] = ACTIONS(1360), + [anon_sym_PERCENT] = ACTIONS(1360), + [anon_sym_STAR_STAR] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1360), + [anon_sym_RPAREN] = ACTIONS(1360), + [anon_sym_SEMI_SEMI] = ACTIONS(1360), + [anon_sym_PIPE_AMP] = ACTIONS(1360), + [anon_sym_EQ_TILDE] = ACTIONS(1360), + [anon_sym_AMP_GT] = ACTIONS(1360), + [anon_sym_AMP_GT_GT] = ACTIONS(1360), + [anon_sym_LT_AMP] = ACTIONS(1360), + [anon_sym_GT_AMP] = ACTIONS(1360), + [anon_sym_GT_PIPE] = ACTIONS(1360), + [anon_sym_LT_AMP_DASH] = ACTIONS(1360), + [anon_sym_GT_AMP_DASH] = ACTIONS(1360), + [anon_sym_LT_LT_DASH] = ACTIONS(1360), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1362), + [anon_sym_LT_LT_LT] = ACTIONS(1360), + [anon_sym_QMARK] = ACTIONS(1360), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1360), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1360), + [anon_sym_DOLLAR] = ACTIONS(1360), + [sym__special_character] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym_raw_string] = ACTIONS(1360), + [sym_ansi_c_string] = ACTIONS(1360), + [aux_sym_number_token1] = ACTIONS(1360), + [aux_sym_number_token2] = ACTIONS(1360), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1360), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1360), + [anon_sym_BQUOTE] = ACTIONS(1360), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1360), + [anon_sym_LT_LPAREN] = ACTIONS(1360), + [anon_sym_GT_LPAREN] = ACTIONS(1360), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1362), + [sym_test_operator] = ACTIONS(1362), + [sym__bare_dollar] = ACTIONS(1362), + [sym__brace_start] = ACTIONS(1362), + }, + [494] = { + [aux_sym__literal_repeat1] = STATE(493), [sym_word] = ACTIONS(241), [anon_sym_LPAREN_LPAREN] = ACTIONS(241), [anon_sym_SEMI] = ACTIONS(241), @@ -74030,7 +74406,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(241), [anon_sym_DOLLAR_LBRACK] = ACTIONS(241), [anon_sym_DOLLAR] = ACTIONS(241), - [sym__special_character] = ACTIONS(1360), + [sym__special_character] = ACTIONS(1367), [anon_sym_DQUOTE] = ACTIONS(241), [sym_raw_string] = ACTIONS(241), [sym_ansi_c_string] = ACTIONS(241), @@ -74044,309 +74420,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(241), [sym_comment] = ACTIONS(3), [sym_file_descriptor] = ACTIONS(278), - [sym_test_operator] = ACTIONS(356), + [sym_test_operator] = ACTIONS(292), [sym__bare_dollar] = ACTIONS(278), [sym__brace_start] = ACTIONS(278), }, - [494] = { - [aux_sym__literal_repeat1] = STATE(494), - [sym_word] = ACTIONS(1362), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1362), - [anon_sym_SEMI] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_EQ] = ACTIONS(1362), - [anon_sym_DASH_EQ] = ACTIONS(1362), - [anon_sym_STAR_EQ] = ACTIONS(1362), - [anon_sym_SLASH_EQ] = ACTIONS(1362), - [anon_sym_PERCENT_EQ] = ACTIONS(1362), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1362), - [anon_sym_LT_LT_EQ] = ACTIONS(1362), - [anon_sym_GT_GT_EQ] = ACTIONS(1362), - [anon_sym_AMP_EQ] = ACTIONS(1362), - [anon_sym_CARET_EQ] = ACTIONS(1362), - [anon_sym_PIPE_EQ] = ACTIONS(1362), - [anon_sym_PIPE_PIPE] = ACTIONS(1362), - [anon_sym_AMP_AMP] = ACTIONS(1362), - [anon_sym_PIPE] = ACTIONS(1362), - [anon_sym_CARET] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_EQ_EQ] = ACTIONS(1362), - [anon_sym_BANG_EQ] = ACTIONS(1362), - [anon_sym_LT] = ACTIONS(1362), - [anon_sym_GT] = ACTIONS(1362), - [anon_sym_LT_EQ] = ACTIONS(1362), - [anon_sym_GT_EQ] = ACTIONS(1362), - [anon_sym_LT_LT] = ACTIONS(1362), - [anon_sym_GT_GT] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_SLASH] = ACTIONS(1362), - [anon_sym_PERCENT] = ACTIONS(1362), - [anon_sym_STAR_STAR] = ACTIONS(1362), - [anon_sym_LPAREN] = ACTIONS(1362), - [anon_sym_RPAREN] = ACTIONS(1362), - [anon_sym_SEMI_SEMI] = ACTIONS(1362), - [anon_sym_PIPE_AMP] = ACTIONS(1362), - [anon_sym_EQ_TILDE] = ACTIONS(1362), - [anon_sym_AMP_GT] = ACTIONS(1362), - [anon_sym_AMP_GT_GT] = ACTIONS(1362), - [anon_sym_LT_AMP] = ACTIONS(1362), - [anon_sym_GT_AMP] = ACTIONS(1362), - [anon_sym_GT_PIPE] = ACTIONS(1362), - [anon_sym_LT_AMP_DASH] = ACTIONS(1362), - [anon_sym_GT_AMP_DASH] = ACTIONS(1362), - [anon_sym_LT_LT_DASH] = ACTIONS(1362), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1364), - [anon_sym_LT_LT_LT] = ACTIONS(1362), - [anon_sym_QMARK] = ACTIONS(1362), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1362), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1362), - [anon_sym_DOLLAR] = ACTIONS(1362), - [sym__special_character] = ACTIONS(1366), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym_raw_string] = ACTIONS(1362), - [sym_ansi_c_string] = ACTIONS(1362), - [aux_sym_number_token1] = ACTIONS(1362), - [aux_sym_number_token2] = ACTIONS(1362), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1362), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1362), - [anon_sym_BQUOTE] = ACTIONS(1362), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1362), - [anon_sym_LT_LPAREN] = ACTIONS(1362), - [anon_sym_GT_LPAREN] = ACTIONS(1362), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1364), - [sym_test_operator] = ACTIONS(1364), - [sym__bare_dollar] = ACTIONS(1364), - [sym__brace_start] = ACTIONS(1364), - }, [495] = { - [sym_word] = ACTIONS(1261), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1261), - [anon_sym_SEMI] = ACTIONS(1261), - [anon_sym_EQ] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1261), - [anon_sym_DASH_DASH] = ACTIONS(1261), - [anon_sym_PLUS_EQ] = ACTIONS(1261), - [anon_sym_DASH_EQ] = ACTIONS(1261), - [anon_sym_STAR_EQ] = ACTIONS(1261), - [anon_sym_SLASH_EQ] = ACTIONS(1261), - [anon_sym_PERCENT_EQ] = ACTIONS(1261), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1261), - [anon_sym_LT_LT_EQ] = ACTIONS(1261), - [anon_sym_GT_GT_EQ] = ACTIONS(1261), - [anon_sym_AMP_EQ] = ACTIONS(1261), - [anon_sym_CARET_EQ] = ACTIONS(1261), - [anon_sym_PIPE_EQ] = ACTIONS(1261), - [anon_sym_PIPE_PIPE] = ACTIONS(1261), - [anon_sym_AMP_AMP] = ACTIONS(1261), - [anon_sym_PIPE] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym_EQ_EQ] = ACTIONS(1261), - [anon_sym_BANG_EQ] = ACTIONS(1261), - [anon_sym_LT] = ACTIONS(1261), - [anon_sym_GT] = ACTIONS(1261), - [anon_sym_LT_EQ] = ACTIONS(1261), - [anon_sym_GT_EQ] = ACTIONS(1261), - [anon_sym_LT_LT] = ACTIONS(1261), - [anon_sym_GT_GT] = ACTIONS(1261), - [anon_sym_PLUS] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1261), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_SLASH] = ACTIONS(1261), - [anon_sym_PERCENT] = ACTIONS(1261), - [anon_sym_STAR_STAR] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(1261), - [anon_sym_RPAREN] = ACTIONS(1261), - [anon_sym_SEMI_SEMI] = ACTIONS(1261), - [anon_sym_PIPE_AMP] = ACTIONS(1261), - [anon_sym_EQ_TILDE] = ACTIONS(1261), - [anon_sym_AMP_GT] = ACTIONS(1261), - [anon_sym_AMP_GT_GT] = ACTIONS(1261), - [anon_sym_LT_AMP] = ACTIONS(1261), - [anon_sym_GT_AMP] = ACTIONS(1261), - [anon_sym_GT_PIPE] = ACTIONS(1261), - [anon_sym_LT_AMP_DASH] = ACTIONS(1261), - [anon_sym_GT_AMP_DASH] = ACTIONS(1261), - [anon_sym_LT_LT_DASH] = ACTIONS(1261), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1263), - [anon_sym_LT_LT_LT] = ACTIONS(1261), - [anon_sym_QMARK] = ACTIONS(1261), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1261), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1261), - [anon_sym_DOLLAR] = ACTIONS(1261), - [sym__special_character] = ACTIONS(1261), - [anon_sym_DQUOTE] = ACTIONS(1261), - [sym_raw_string] = ACTIONS(1261), - [sym_ansi_c_string] = ACTIONS(1261), - [aux_sym_number_token1] = ACTIONS(1261), - [aux_sym_number_token2] = ACTIONS(1261), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1261), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1261), - [anon_sym_BQUOTE] = ACTIONS(1261), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1261), - [anon_sym_LT_LPAREN] = ACTIONS(1261), - [anon_sym_GT_LPAREN] = ACTIONS(1261), + [sym_word] = ACTIONS(1251), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1251), + [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [anon_sym_PLUS_EQ] = ACTIONS(1253), + [anon_sym_DASH_EQ] = ACTIONS(1253), + [anon_sym_STAR_EQ] = ACTIONS(1253), + [anon_sym_SLASH_EQ] = ACTIONS(1253), + [anon_sym_PERCENT_EQ] = ACTIONS(1253), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1253), + [anon_sym_LT_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_GT_EQ] = ACTIONS(1253), + [anon_sym_AMP_EQ] = ACTIONS(1253), + [anon_sym_CARET_EQ] = ACTIONS(1253), + [anon_sym_PIPE_EQ] = ACTIONS(1253), + [anon_sym_PIPE_PIPE] = ACTIONS(1255), + [anon_sym_AMP_AMP] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(1255), + [anon_sym_CARET] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1253), + [anon_sym_LT] = ACTIONS(1255), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_EQ] = ACTIONS(1253), + [anon_sym_LT_LT] = ACTIONS(1255), + [anon_sym_GT_GT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1253), + [anon_sym_PERCENT] = ACTIONS(1253), + [anon_sym_STAR_STAR] = ACTIONS(1253), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_RPAREN] = ACTIONS(1255), + [anon_sym_SEMI_SEMI] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1251), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_AMP_GT] = ACTIONS(1251), + [anon_sym_AMP_GT_GT] = ACTIONS(1251), + [anon_sym_LT_AMP] = ACTIONS(1251), + [anon_sym_GT_AMP] = ACTIONS(1251), + [anon_sym_GT_PIPE] = ACTIONS(1251), + [anon_sym_LT_AMP_DASH] = ACTIONS(1251), + [anon_sym_GT_AMP_DASH] = ACTIONS(1251), + [anon_sym_LT_LT_DASH] = ACTIONS(1251), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1258), + [anon_sym_LT_LT_LT] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(1253), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1251), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1251), + [sym__special_character] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym_raw_string] = ACTIONS(1251), + [sym_ansi_c_string] = ACTIONS(1251), + [aux_sym_number_token1] = ACTIONS(1251), + [aux_sym_number_token2] = ACTIONS(1251), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1251), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1251), + [anon_sym_BQUOTE] = ACTIONS(1251), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1251), + [anon_sym_LT_LPAREN] = ACTIONS(1251), + [anon_sym_GT_LPAREN] = ACTIONS(1251), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1263), - [sym_test_operator] = ACTIONS(1263), - [sym__bare_dollar] = ACTIONS(1263), - [sym__brace_start] = ACTIONS(1263), + [sym_file_descriptor] = ACTIONS(1258), + [sym_test_operator] = ACTIONS(1260), + [sym__bare_dollar] = ACTIONS(1258), + [sym__brace_start] = ACTIONS(1258), }, [496] = { - [aux_sym_concatenation_repeat1] = STATE(498), - [sym_word] = ACTIONS(1271), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1281), - [anon_sym_EQ] = ACTIONS(1273), - [anon_sym_PLUS_PLUS] = ACTIONS(1273), - [anon_sym_DASH_DASH] = ACTIONS(1273), - [anon_sym_PLUS_EQ] = ACTIONS(1273), - [anon_sym_DASH_EQ] = ACTIONS(1273), - [anon_sym_STAR_EQ] = ACTIONS(1273), - [anon_sym_SLASH_EQ] = ACTIONS(1273), - [anon_sym_PERCENT_EQ] = ACTIONS(1273), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1273), - [anon_sym_LT_LT_EQ] = ACTIONS(1369), - [anon_sym_GT_GT_EQ] = ACTIONS(1369), - [anon_sym_AMP_EQ] = ACTIONS(1369), - [anon_sym_CARET_EQ] = ACTIONS(1273), - [anon_sym_PIPE_EQ] = ACTIONS(1369), - [anon_sym_PIPE_PIPE] = ACTIONS(1283), - [anon_sym_AMP_AMP] = ACTIONS(1283), - [anon_sym_PIPE] = ACTIONS(1275), - [anon_sym_CARET] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ] = ACTIONS(1273), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), - [anon_sym_LT_EQ] = ACTIONS(1369), - [anon_sym_GT_EQ] = ACTIONS(1369), - [anon_sym_LT_LT] = ACTIONS(1275), - [anon_sym_GT_GT] = ACTIONS(1275), - [anon_sym_PLUS] = ACTIONS(1273), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(1273), - [anon_sym_SLASH] = ACTIONS(1273), - [anon_sym_PERCENT] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1273), - [anon_sym_LPAREN] = ACTIONS(1271), - [anon_sym_PIPE_AMP] = ACTIONS(1281), - [anon_sym_RBRACK] = ACTIONS(1369), - [anon_sym_EQ_TILDE] = ACTIONS(1275), - [anon_sym_AMP_GT] = ACTIONS(1271), - [anon_sym_AMP_GT_GT] = ACTIONS(1281), - [anon_sym_LT_AMP] = ACTIONS(1271), - [anon_sym_GT_AMP] = ACTIONS(1271), - [anon_sym_GT_PIPE] = ACTIONS(1281), - [anon_sym_LT_AMP_DASH] = ACTIONS(1281), - [anon_sym_GT_AMP_DASH] = ACTIONS(1281), - [anon_sym_LT_LT_DASH] = ACTIONS(1281), - [anon_sym_LT_LT_LT] = ACTIONS(1281), - [anon_sym_QMARK] = ACTIONS(1273), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1281), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1281), - [aux_sym_concatenation_token1] = ACTIONS(365), - [anon_sym_DOLLAR] = ACTIONS(1271), - [sym__special_character] = ACTIONS(1271), - [anon_sym_DQUOTE] = ACTIONS(1281), - [sym_raw_string] = ACTIONS(1281), - [sym_ansi_c_string] = ACTIONS(1281), - [aux_sym_number_token1] = ACTIONS(1271), - [aux_sym_number_token2] = ACTIONS(1271), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1281), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1271), - [anon_sym_BQUOTE] = ACTIONS(1271), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1281), - [anon_sym_LT_LPAREN] = ACTIONS(1281), - [anon_sym_GT_LPAREN] = ACTIONS(1281), + [aux_sym_concatenation_repeat1] = STATE(500), + [sym_word] = ACTIONS(1266), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1268), + [anon_sym_EQ] = ACTIONS(1266), + [anon_sym_PLUS_PLUS] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1266), + [anon_sym_PLUS_EQ] = ACTIONS(1266), + [anon_sym_DASH_EQ] = ACTIONS(1266), + [anon_sym_STAR_EQ] = ACTIONS(1266), + [anon_sym_SLASH_EQ] = ACTIONS(1266), + [anon_sym_PERCENT_EQ] = ACTIONS(1266), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1266), + [anon_sym_LT_LT_EQ] = ACTIONS(1268), + [anon_sym_GT_GT_EQ] = ACTIONS(1268), + [anon_sym_AMP_EQ] = ACTIONS(1268), + [anon_sym_CARET_EQ] = ACTIONS(1266), + [anon_sym_PIPE_EQ] = ACTIONS(1268), + [anon_sym_PIPE_PIPE] = ACTIONS(1268), + [anon_sym_AMP_AMP] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1266), + [anon_sym_CARET] = ACTIONS(1266), + [anon_sym_AMP] = ACTIONS(1266), + [anon_sym_EQ_EQ] = ACTIONS(1266), + [anon_sym_BANG_EQ] = ACTIONS(1266), + [anon_sym_LT] = ACTIONS(1266), + [anon_sym_GT] = ACTIONS(1266), + [anon_sym_LT_EQ] = ACTIONS(1268), + [anon_sym_GT_EQ] = ACTIONS(1268), + [anon_sym_LT_LT] = ACTIONS(1266), + [anon_sym_GT_GT] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_SLASH] = ACTIONS(1266), + [anon_sym_PERCENT] = ACTIONS(1266), + [anon_sym_STAR_STAR] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1266), + [anon_sym_PIPE_AMP] = ACTIONS(1268), + [anon_sym_RBRACK] = ACTIONS(1268), + [anon_sym_EQ_TILDE] = ACTIONS(1266), + [anon_sym_AMP_GT] = ACTIONS(1266), + [anon_sym_AMP_GT_GT] = ACTIONS(1268), + [anon_sym_LT_AMP] = ACTIONS(1266), + [anon_sym_GT_AMP] = ACTIONS(1266), + [anon_sym_GT_PIPE] = ACTIONS(1268), + [anon_sym_LT_AMP_DASH] = ACTIONS(1268), + [anon_sym_GT_AMP_DASH] = ACTIONS(1268), + [anon_sym_LT_LT_DASH] = ACTIONS(1268), + [anon_sym_LT_LT_LT] = ACTIONS(1268), + [anon_sym_QMARK] = ACTIONS(1266), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1268), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1268), + [aux_sym_concatenation_token1] = ACTIONS(301), + [anon_sym_DOLLAR] = ACTIONS(1266), + [sym__special_character] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1268), + [sym_raw_string] = ACTIONS(1268), + [sym_ansi_c_string] = ACTIONS(1268), + [aux_sym_number_token1] = ACTIONS(1266), + [aux_sym_number_token2] = ACTIONS(1266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1268), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1266), + [anon_sym_BQUOTE] = ACTIONS(1266), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1268), + [anon_sym_LT_LPAREN] = ACTIONS(1268), + [anon_sym_GT_LPAREN] = ACTIONS(1268), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1281), - [sym__concat] = ACTIONS(365), - [sym_test_operator] = ACTIONS(1283), - [sym__bare_dollar] = ACTIONS(1281), - [sym__brace_start] = ACTIONS(1281), + [sym_file_descriptor] = ACTIONS(1268), + [sym__concat] = ACTIONS(1369), + [sym_test_operator] = ACTIONS(1268), + [sym__bare_dollar] = ACTIONS(1268), + [sym__brace_start] = ACTIONS(1268), }, [497] = { - [aux_sym_concatenation_repeat1] = STATE(498), - [sym_word] = ACTIONS(1271), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1281), - [anon_sym_EQ] = ACTIONS(1273), - [anon_sym_PLUS_PLUS] = ACTIONS(1273), - [anon_sym_DASH_DASH] = ACTIONS(1273), - [anon_sym_PLUS_EQ] = ACTIONS(1273), - [anon_sym_DASH_EQ] = ACTIONS(1273), - [anon_sym_STAR_EQ] = ACTIONS(1273), - [anon_sym_SLASH_EQ] = ACTIONS(1273), - [anon_sym_PERCENT_EQ] = ACTIONS(1273), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1273), - [anon_sym_LT_LT_EQ] = ACTIONS(1369), - [anon_sym_GT_GT_EQ] = ACTIONS(1369), - [anon_sym_AMP_EQ] = ACTIONS(1369), - [anon_sym_CARET_EQ] = ACTIONS(1273), - [anon_sym_PIPE_EQ] = ACTIONS(1369), - [anon_sym_PIPE_PIPE] = ACTIONS(1283), - [anon_sym_AMP_AMP] = ACTIONS(1283), - [anon_sym_PIPE] = ACTIONS(1275), - [anon_sym_CARET] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ] = ACTIONS(1273), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), - [anon_sym_LT_EQ] = ACTIONS(1369), - [anon_sym_GT_EQ] = ACTIONS(1369), - [anon_sym_LT_LT] = ACTIONS(1275), - [anon_sym_GT_GT] = ACTIONS(1275), - [anon_sym_PLUS] = ACTIONS(1273), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(1273), - [anon_sym_SLASH] = ACTIONS(1273), - [anon_sym_PERCENT] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1273), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_PIPE_AMP] = ACTIONS(1281), - [anon_sym_RBRACK] = ACTIONS(1369), - [anon_sym_EQ_TILDE] = ACTIONS(1275), - [anon_sym_AMP_GT] = ACTIONS(1271), - [anon_sym_AMP_GT_GT] = ACTIONS(1281), - [anon_sym_LT_AMP] = ACTIONS(1271), - [anon_sym_GT_AMP] = ACTIONS(1271), - [anon_sym_GT_PIPE] = ACTIONS(1281), - [anon_sym_LT_AMP_DASH] = ACTIONS(1281), - [anon_sym_GT_AMP_DASH] = ACTIONS(1281), - [anon_sym_LT_LT_DASH] = ACTIONS(1281), - [anon_sym_LT_LT_LT] = ACTIONS(1281), - [anon_sym_QMARK] = ACTIONS(1273), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1281), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1281), - [aux_sym_concatenation_token1] = ACTIONS(365), - [anon_sym_DOLLAR] = ACTIONS(1271), - [sym__special_character] = ACTIONS(1271), - [anon_sym_DQUOTE] = ACTIONS(1281), - [sym_raw_string] = ACTIONS(1281), - [sym_ansi_c_string] = ACTIONS(1281), - [aux_sym_number_token1] = ACTIONS(1271), - [aux_sym_number_token2] = ACTIONS(1271), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1281), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1271), - [anon_sym_BQUOTE] = ACTIONS(1271), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1281), - [anon_sym_LT_LPAREN] = ACTIONS(1281), - [anon_sym_GT_LPAREN] = ACTIONS(1281), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1281), - [sym__concat] = ACTIONS(365), - [sym_test_operator] = ACTIONS(1283), - [sym__bare_dollar] = ACTIONS(1281), - [sym__brace_start] = ACTIONS(1281), - }, - [498] = { - [aux_sym_concatenation_repeat1] = STATE(501), + [aux_sym_concatenation_repeat1] = STATE(500), [sym_word] = ACTIONS(1286), [anon_sym_LPAREN_LPAREN] = ACTIONS(1288), [anon_sym_EQ] = ACTIONS(1286), @@ -74398,7 +74625,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(1286), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1288), [anon_sym_DOLLAR_LBRACK] = ACTIONS(1288), - [aux_sym_concatenation_token1] = ACTIONS(365), + [aux_sym_concatenation_token1] = ACTIONS(301), [anon_sym_DOLLAR] = ACTIONS(1286), [sym__special_character] = ACTIONS(1286), [anon_sym_DQUOTE] = ACTIONS(1288), @@ -74414,381 +74641,382 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(1288), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(1288), - [sym__concat] = ACTIONS(1374), + [sym__concat] = ACTIONS(1371), [sym_test_operator] = ACTIONS(1288), [sym__bare_dollar] = ACTIONS(1288), [sym__brace_start] = ACTIONS(1288), }, + [498] = { + [sym_word] = ACTIONS(1272), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1272), + [anon_sym_SEMI] = ACTIONS(1272), + [anon_sym_EQ] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1272), + [anon_sym_DASH_DASH] = ACTIONS(1272), + [anon_sym_PLUS_EQ] = ACTIONS(1272), + [anon_sym_DASH_EQ] = ACTIONS(1272), + [anon_sym_STAR_EQ] = ACTIONS(1272), + [anon_sym_SLASH_EQ] = ACTIONS(1272), + [anon_sym_PERCENT_EQ] = ACTIONS(1272), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1272), + [anon_sym_LT_LT_EQ] = ACTIONS(1272), + [anon_sym_GT_GT_EQ] = ACTIONS(1272), + [anon_sym_AMP_EQ] = ACTIONS(1272), + [anon_sym_CARET_EQ] = ACTIONS(1272), + [anon_sym_PIPE_EQ] = ACTIONS(1272), + [anon_sym_PIPE_PIPE] = ACTIONS(1272), + [anon_sym_AMP_AMP] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_CARET] = ACTIONS(1272), + [anon_sym_AMP] = ACTIONS(1272), + [anon_sym_EQ_EQ] = ACTIONS(1272), + [anon_sym_BANG_EQ] = ACTIONS(1272), + [anon_sym_LT] = ACTIONS(1272), + [anon_sym_GT] = ACTIONS(1272), + [anon_sym_LT_EQ] = ACTIONS(1272), + [anon_sym_GT_EQ] = ACTIONS(1272), + [anon_sym_LT_LT] = ACTIONS(1272), + [anon_sym_GT_GT] = ACTIONS(1272), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_STAR] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(1272), + [anon_sym_PERCENT] = ACTIONS(1272), + [anon_sym_STAR_STAR] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(1272), + [anon_sym_RPAREN] = ACTIONS(1272), + [anon_sym_SEMI_SEMI] = ACTIONS(1272), + [anon_sym_PIPE_AMP] = ACTIONS(1272), + [anon_sym_EQ_TILDE] = ACTIONS(1272), + [anon_sym_AMP_GT] = ACTIONS(1272), + [anon_sym_AMP_GT_GT] = ACTIONS(1272), + [anon_sym_LT_AMP] = ACTIONS(1272), + [anon_sym_GT_AMP] = ACTIONS(1272), + [anon_sym_GT_PIPE] = ACTIONS(1272), + [anon_sym_LT_AMP_DASH] = ACTIONS(1272), + [anon_sym_GT_AMP_DASH] = ACTIONS(1272), + [anon_sym_LT_LT_DASH] = ACTIONS(1272), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1274), + [anon_sym_LT_LT_LT] = ACTIONS(1272), + [anon_sym_QMARK] = ACTIONS(1272), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1272), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1272), + [anon_sym_DOLLAR] = ACTIONS(1272), + [sym__special_character] = ACTIONS(1272), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym_raw_string] = ACTIONS(1272), + [sym_ansi_c_string] = ACTIONS(1272), + [aux_sym_number_token1] = ACTIONS(1272), + [aux_sym_number_token2] = ACTIONS(1272), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1272), + [anon_sym_BQUOTE] = ACTIONS(1272), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1272), + [anon_sym_LT_LPAREN] = ACTIONS(1272), + [anon_sym_GT_LPAREN] = ACTIONS(1272), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1274), + [sym_test_operator] = ACTIONS(1274), + [sym__bare_dollar] = ACTIONS(1274), + [sym__brace_start] = ACTIONS(1274), + }, [499] = { - [aux_sym_concatenation_repeat1] = STATE(501), - [sym_word] = ACTIONS(1265), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1267), - [anon_sym_EQ] = ACTIONS(1265), - [anon_sym_PLUS_PLUS] = ACTIONS(1265), - [anon_sym_DASH_DASH] = ACTIONS(1265), - [anon_sym_PLUS_EQ] = ACTIONS(1265), - [anon_sym_DASH_EQ] = ACTIONS(1265), - [anon_sym_STAR_EQ] = ACTIONS(1265), - [anon_sym_SLASH_EQ] = ACTIONS(1265), - [anon_sym_PERCENT_EQ] = ACTIONS(1265), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1265), - [anon_sym_LT_LT_EQ] = ACTIONS(1267), - [anon_sym_GT_GT_EQ] = ACTIONS(1267), - [anon_sym_AMP_EQ] = ACTIONS(1267), - [anon_sym_CARET_EQ] = ACTIONS(1265), - [anon_sym_PIPE_EQ] = ACTIONS(1267), - [anon_sym_PIPE_PIPE] = ACTIONS(1267), - [anon_sym_AMP_AMP] = ACTIONS(1267), - [anon_sym_PIPE] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1265), - [anon_sym_EQ_EQ] = ACTIONS(1265), - [anon_sym_BANG_EQ] = ACTIONS(1265), - [anon_sym_LT] = ACTIONS(1265), - [anon_sym_GT] = ACTIONS(1265), - [anon_sym_LT_EQ] = ACTIONS(1267), - [anon_sym_GT_EQ] = ACTIONS(1267), - [anon_sym_LT_LT] = ACTIONS(1265), - [anon_sym_GT_GT] = ACTIONS(1265), - [anon_sym_PLUS] = ACTIONS(1265), - [anon_sym_DASH] = ACTIONS(1265), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_SLASH] = ACTIONS(1265), - [anon_sym_PERCENT] = ACTIONS(1265), - [anon_sym_STAR_STAR] = ACTIONS(1265), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_PIPE_AMP] = ACTIONS(1267), - [anon_sym_RBRACK] = ACTIONS(1267), - [anon_sym_EQ_TILDE] = ACTIONS(1265), - [anon_sym_AMP_GT] = ACTIONS(1265), - [anon_sym_AMP_GT_GT] = ACTIONS(1267), - [anon_sym_LT_AMP] = ACTIONS(1265), - [anon_sym_GT_AMP] = ACTIONS(1265), - [anon_sym_GT_PIPE] = ACTIONS(1267), - [anon_sym_LT_AMP_DASH] = ACTIONS(1267), - [anon_sym_GT_AMP_DASH] = ACTIONS(1267), - [anon_sym_LT_LT_DASH] = ACTIONS(1267), - [anon_sym_LT_LT_LT] = ACTIONS(1267), - [anon_sym_QMARK] = ACTIONS(1265), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1267), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1267), - [aux_sym_concatenation_token1] = ACTIONS(365), - [anon_sym_DOLLAR] = ACTIONS(1265), - [sym__special_character] = ACTIONS(1265), - [anon_sym_DQUOTE] = ACTIONS(1267), - [sym_raw_string] = ACTIONS(1267), - [sym_ansi_c_string] = ACTIONS(1267), - [aux_sym_number_token1] = ACTIONS(1265), - [aux_sym_number_token2] = ACTIONS(1265), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1267), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1265), - [anon_sym_BQUOTE] = ACTIONS(1265), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1267), - [anon_sym_LT_LPAREN] = ACTIONS(1267), - [anon_sym_GT_LPAREN] = ACTIONS(1267), + [aux_sym_concatenation_repeat1] = STATE(496), + [sym_word] = ACTIONS(1272), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1274), + [anon_sym_EQ] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1272), + [anon_sym_DASH_DASH] = ACTIONS(1272), + [anon_sym_PLUS_EQ] = ACTIONS(1272), + [anon_sym_DASH_EQ] = ACTIONS(1272), + [anon_sym_STAR_EQ] = ACTIONS(1272), + [anon_sym_SLASH_EQ] = ACTIONS(1272), + [anon_sym_PERCENT_EQ] = ACTIONS(1272), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1272), + [anon_sym_LT_LT_EQ] = ACTIONS(1274), + [anon_sym_GT_GT_EQ] = ACTIONS(1274), + [anon_sym_AMP_EQ] = ACTIONS(1274), + [anon_sym_CARET_EQ] = ACTIONS(1272), + [anon_sym_PIPE_EQ] = ACTIONS(1274), + [anon_sym_PIPE_PIPE] = ACTIONS(1274), + [anon_sym_AMP_AMP] = ACTIONS(1274), + [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_CARET] = ACTIONS(1272), + [anon_sym_AMP] = ACTIONS(1272), + [anon_sym_EQ_EQ] = ACTIONS(1272), + [anon_sym_BANG_EQ] = ACTIONS(1272), + [anon_sym_LT] = ACTIONS(1272), + [anon_sym_GT] = ACTIONS(1272), + [anon_sym_LT_EQ] = ACTIONS(1274), + [anon_sym_GT_EQ] = ACTIONS(1274), + [anon_sym_LT_LT] = ACTIONS(1272), + [anon_sym_GT_GT] = ACTIONS(1272), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_STAR] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(1272), + [anon_sym_PERCENT] = ACTIONS(1272), + [anon_sym_STAR_STAR] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(1272), + [anon_sym_PIPE_AMP] = ACTIONS(1274), + [anon_sym_RBRACK] = ACTIONS(1274), + [anon_sym_EQ_TILDE] = ACTIONS(1272), + [anon_sym_AMP_GT] = ACTIONS(1272), + [anon_sym_AMP_GT_GT] = ACTIONS(1274), + [anon_sym_LT_AMP] = ACTIONS(1272), + [anon_sym_GT_AMP] = ACTIONS(1272), + [anon_sym_GT_PIPE] = ACTIONS(1274), + [anon_sym_LT_AMP_DASH] = ACTIONS(1274), + [anon_sym_GT_AMP_DASH] = ACTIONS(1274), + [anon_sym_LT_LT_DASH] = ACTIONS(1274), + [anon_sym_LT_LT_LT] = ACTIONS(1274), + [anon_sym_QMARK] = ACTIONS(1272), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1274), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1274), + [aux_sym_concatenation_token1] = ACTIONS(301), + [anon_sym_DOLLAR] = ACTIONS(1272), + [sym__special_character] = ACTIONS(1272), + [anon_sym_DQUOTE] = ACTIONS(1274), + [sym_raw_string] = ACTIONS(1274), + [sym_ansi_c_string] = ACTIONS(1274), + [aux_sym_number_token1] = ACTIONS(1272), + [aux_sym_number_token2] = ACTIONS(1272), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1274), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1272), + [anon_sym_BQUOTE] = ACTIONS(1272), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1274), + [anon_sym_LT_LPAREN] = ACTIONS(1274), + [anon_sym_GT_LPAREN] = ACTIONS(1274), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1267), - [sym__concat] = ACTIONS(1376), - [sym_test_operator] = ACTIONS(1267), - [sym__bare_dollar] = ACTIONS(1267), - [sym__brace_start] = ACTIONS(1267), + [sym_file_descriptor] = ACTIONS(1274), + [sym__concat] = ACTIONS(301), + [sym_test_operator] = ACTIONS(1274), + [sym__bare_dollar] = ACTIONS(1274), + [sym__brace_start] = ACTIONS(1274), }, [500] = { - [aux_sym_concatenation_repeat1] = STATE(499), - [sym_word] = ACTIONS(1261), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1263), - [anon_sym_EQ] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1261), - [anon_sym_DASH_DASH] = ACTIONS(1261), - [anon_sym_PLUS_EQ] = ACTIONS(1261), - [anon_sym_DASH_EQ] = ACTIONS(1261), - [anon_sym_STAR_EQ] = ACTIONS(1261), - [anon_sym_SLASH_EQ] = ACTIONS(1261), - [anon_sym_PERCENT_EQ] = ACTIONS(1261), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1261), - [anon_sym_LT_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_GT_EQ] = ACTIONS(1263), - [anon_sym_AMP_EQ] = ACTIONS(1263), - [anon_sym_CARET_EQ] = ACTIONS(1261), - [anon_sym_PIPE_EQ] = ACTIONS(1263), - [anon_sym_PIPE_PIPE] = ACTIONS(1263), - [anon_sym_AMP_AMP] = ACTIONS(1263), - [anon_sym_PIPE] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym_EQ_EQ] = ACTIONS(1261), - [anon_sym_BANG_EQ] = ACTIONS(1261), - [anon_sym_LT] = ACTIONS(1261), - [anon_sym_GT] = ACTIONS(1261), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_LT_LT] = ACTIONS(1261), - [anon_sym_GT_GT] = ACTIONS(1261), - [anon_sym_PLUS] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1261), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_SLASH] = ACTIONS(1261), - [anon_sym_PERCENT] = ACTIONS(1261), - [anon_sym_STAR_STAR] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(1261), - [anon_sym_PIPE_AMP] = ACTIONS(1263), - [anon_sym_RBRACK] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1261), - [anon_sym_AMP_GT] = ACTIONS(1261), - [anon_sym_AMP_GT_GT] = ACTIONS(1263), - [anon_sym_LT_AMP] = ACTIONS(1261), - [anon_sym_GT_AMP] = ACTIONS(1261), - [anon_sym_GT_PIPE] = ACTIONS(1263), - [anon_sym_LT_AMP_DASH] = ACTIONS(1263), - [anon_sym_GT_AMP_DASH] = ACTIONS(1263), - [anon_sym_LT_LT_DASH] = ACTIONS(1263), - [anon_sym_LT_LT_LT] = ACTIONS(1263), - [anon_sym_QMARK] = ACTIONS(1261), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1263), - [aux_sym_concatenation_token1] = ACTIONS(365), - [anon_sym_DOLLAR] = ACTIONS(1261), - [sym__special_character] = ACTIONS(1261), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym_raw_string] = ACTIONS(1263), - [sym_ansi_c_string] = ACTIONS(1263), - [aux_sym_number_token1] = ACTIONS(1261), - [aux_sym_number_token2] = ACTIONS(1261), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1263), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1261), - [anon_sym_BQUOTE] = ACTIONS(1261), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1263), - [anon_sym_LT_LPAREN] = ACTIONS(1263), - [anon_sym_GT_LPAREN] = ACTIONS(1263), + [aux_sym_concatenation_repeat1] = STATE(500), + [sym_word] = ACTIONS(1276), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1278), + [anon_sym_EQ] = ACTIONS(1276), + [anon_sym_PLUS_PLUS] = ACTIONS(1276), + [anon_sym_DASH_DASH] = ACTIONS(1276), + [anon_sym_PLUS_EQ] = ACTIONS(1276), + [anon_sym_DASH_EQ] = ACTIONS(1276), + [anon_sym_STAR_EQ] = ACTIONS(1276), + [anon_sym_SLASH_EQ] = ACTIONS(1276), + [anon_sym_PERCENT_EQ] = ACTIONS(1276), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1276), + [anon_sym_LT_LT_EQ] = ACTIONS(1278), + [anon_sym_GT_GT_EQ] = ACTIONS(1278), + [anon_sym_AMP_EQ] = ACTIONS(1278), + [anon_sym_CARET_EQ] = ACTIONS(1276), + [anon_sym_PIPE_EQ] = ACTIONS(1278), + [anon_sym_PIPE_PIPE] = ACTIONS(1278), + [anon_sym_AMP_AMP] = ACTIONS(1278), + [anon_sym_PIPE] = ACTIONS(1276), + [anon_sym_CARET] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1276), + [anon_sym_EQ_EQ] = ACTIONS(1276), + [anon_sym_BANG_EQ] = ACTIONS(1276), + [anon_sym_LT] = ACTIONS(1276), + [anon_sym_GT] = ACTIONS(1276), + [anon_sym_LT_EQ] = ACTIONS(1278), + [anon_sym_GT_EQ] = ACTIONS(1278), + [anon_sym_LT_LT] = ACTIONS(1276), + [anon_sym_GT_GT] = ACTIONS(1276), + [anon_sym_PLUS] = ACTIONS(1276), + [anon_sym_DASH] = ACTIONS(1276), + [anon_sym_STAR] = ACTIONS(1276), + [anon_sym_SLASH] = ACTIONS(1276), + [anon_sym_PERCENT] = ACTIONS(1276), + [anon_sym_STAR_STAR] = ACTIONS(1276), + [anon_sym_LPAREN] = ACTIONS(1276), + [anon_sym_PIPE_AMP] = ACTIONS(1278), + [anon_sym_RBRACK] = ACTIONS(1278), + [anon_sym_EQ_TILDE] = ACTIONS(1276), + [anon_sym_AMP_GT] = ACTIONS(1276), + [anon_sym_AMP_GT_GT] = ACTIONS(1278), + [anon_sym_LT_AMP] = ACTIONS(1276), + [anon_sym_GT_AMP] = ACTIONS(1276), + [anon_sym_GT_PIPE] = ACTIONS(1278), + [anon_sym_LT_AMP_DASH] = ACTIONS(1278), + [anon_sym_GT_AMP_DASH] = ACTIONS(1278), + [anon_sym_LT_LT_DASH] = ACTIONS(1278), + [anon_sym_LT_LT_LT] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1276), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1278), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1278), + [aux_sym_concatenation_token1] = ACTIONS(1373), + [anon_sym_DOLLAR] = ACTIONS(1276), + [sym__special_character] = ACTIONS(1276), + [anon_sym_DQUOTE] = ACTIONS(1278), + [sym_raw_string] = ACTIONS(1278), + [sym_ansi_c_string] = ACTIONS(1278), + [aux_sym_number_token1] = ACTIONS(1276), + [aux_sym_number_token2] = ACTIONS(1276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1278), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1276), + [anon_sym_BQUOTE] = ACTIONS(1276), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1278), + [anon_sym_LT_LPAREN] = ACTIONS(1278), + [anon_sym_GT_LPAREN] = ACTIONS(1278), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1263), - [sym__concat] = ACTIONS(365), - [sym_test_operator] = ACTIONS(1263), - [sym__bare_dollar] = ACTIONS(1263), - [sym__brace_start] = ACTIONS(1263), + [sym_file_descriptor] = ACTIONS(1278), + [sym__concat] = ACTIONS(1373), + [sym_test_operator] = ACTIONS(1278), + [sym__bare_dollar] = ACTIONS(1278), + [sym__brace_start] = ACTIONS(1278), }, [501] = { - [aux_sym_concatenation_repeat1] = STATE(501), + [aux_sym_concatenation_repeat1] = STATE(497), [sym_word] = ACTIONS(1251), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1253), - [anon_sym_EQ] = ACTIONS(1251), - [anon_sym_PLUS_PLUS] = ACTIONS(1251), - [anon_sym_DASH_DASH] = ACTIONS(1251), - [anon_sym_PLUS_EQ] = ACTIONS(1251), - [anon_sym_DASH_EQ] = ACTIONS(1251), - [anon_sym_STAR_EQ] = ACTIONS(1251), - [anon_sym_SLASH_EQ] = ACTIONS(1251), - [anon_sym_PERCENT_EQ] = ACTIONS(1251), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1251), - [anon_sym_LT_LT_EQ] = ACTIONS(1253), - [anon_sym_GT_GT_EQ] = ACTIONS(1253), - [anon_sym_AMP_EQ] = ACTIONS(1253), - [anon_sym_CARET_EQ] = ACTIONS(1251), - [anon_sym_PIPE_EQ] = ACTIONS(1253), - [anon_sym_PIPE_PIPE] = ACTIONS(1253), - [anon_sym_AMP_AMP] = ACTIONS(1253), - [anon_sym_PIPE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1251), - [anon_sym_EQ_EQ] = ACTIONS(1251), - [anon_sym_BANG_EQ] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_LT_LT] = ACTIONS(1251), - [anon_sym_GT_GT] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1251), - [anon_sym_SLASH] = ACTIONS(1251), - [anon_sym_PERCENT] = ACTIONS(1251), - [anon_sym_STAR_STAR] = ACTIONS(1251), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1258), + [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [anon_sym_PLUS_EQ] = ACTIONS(1253), + [anon_sym_DASH_EQ] = ACTIONS(1253), + [anon_sym_STAR_EQ] = ACTIONS(1253), + [anon_sym_SLASH_EQ] = ACTIONS(1253), + [anon_sym_PERCENT_EQ] = ACTIONS(1253), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1253), + [anon_sym_LT_LT_EQ] = ACTIONS(1376), + [anon_sym_GT_GT_EQ] = ACTIONS(1376), + [anon_sym_AMP_EQ] = ACTIONS(1376), + [anon_sym_CARET_EQ] = ACTIONS(1253), + [anon_sym_PIPE_EQ] = ACTIONS(1376), + [anon_sym_PIPE_PIPE] = ACTIONS(1260), + [anon_sym_AMP_AMP] = ACTIONS(1260), + [anon_sym_PIPE] = ACTIONS(1255), + [anon_sym_CARET] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1253), + [anon_sym_LT] = ACTIONS(1255), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1376), + [anon_sym_GT_EQ] = ACTIONS(1376), + [anon_sym_LT_LT] = ACTIONS(1255), + [anon_sym_GT_GT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1253), + [anon_sym_PERCENT] = ACTIONS(1253), + [anon_sym_STAR_STAR] = ACTIONS(1253), [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_PIPE_AMP] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(1253), - [anon_sym_EQ_TILDE] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1258), + [anon_sym_RBRACK] = ACTIONS(1376), + [anon_sym_EQ_TILDE] = ACTIONS(1255), [anon_sym_AMP_GT] = ACTIONS(1251), - [anon_sym_AMP_GT_GT] = ACTIONS(1253), + [anon_sym_AMP_GT_GT] = ACTIONS(1258), [anon_sym_LT_AMP] = ACTIONS(1251), [anon_sym_GT_AMP] = ACTIONS(1251), - [anon_sym_GT_PIPE] = ACTIONS(1253), - [anon_sym_LT_AMP_DASH] = ACTIONS(1253), - [anon_sym_GT_AMP_DASH] = ACTIONS(1253), - [anon_sym_LT_LT_DASH] = ACTIONS(1253), - [anon_sym_LT_LT_LT] = ACTIONS(1253), - [anon_sym_QMARK] = ACTIONS(1251), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1253), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1253), - [aux_sym_concatenation_token1] = ACTIONS(1378), + [anon_sym_GT_PIPE] = ACTIONS(1258), + [anon_sym_LT_AMP_DASH] = ACTIONS(1258), + [anon_sym_GT_AMP_DASH] = ACTIONS(1258), + [anon_sym_LT_LT_DASH] = ACTIONS(1258), + [anon_sym_LT_LT_LT] = ACTIONS(1258), + [anon_sym_QMARK] = ACTIONS(1253), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1258), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1258), + [aux_sym_concatenation_token1] = ACTIONS(301), [anon_sym_DOLLAR] = ACTIONS(1251), [sym__special_character] = ACTIONS(1251), - [anon_sym_DQUOTE] = ACTIONS(1253), - [sym_raw_string] = ACTIONS(1253), - [sym_ansi_c_string] = ACTIONS(1253), + [anon_sym_DQUOTE] = ACTIONS(1258), + [sym_raw_string] = ACTIONS(1258), + [sym_ansi_c_string] = ACTIONS(1258), [aux_sym_number_token1] = ACTIONS(1251), [aux_sym_number_token2] = ACTIONS(1251), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1253), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1258), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1251), [anon_sym_BQUOTE] = ACTIONS(1251), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1253), - [anon_sym_LT_LPAREN] = ACTIONS(1253), - [anon_sym_GT_LPAREN] = ACTIONS(1253), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1258), + [anon_sym_LT_LPAREN] = ACTIONS(1258), + [anon_sym_GT_LPAREN] = ACTIONS(1258), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1253), - [sym__concat] = ACTIONS(1378), - [sym_test_operator] = ACTIONS(1253), - [sym__bare_dollar] = ACTIONS(1253), - [sym__brace_start] = ACTIONS(1253), + [sym_file_descriptor] = ACTIONS(1258), + [sym__concat] = ACTIONS(301), + [sym_test_operator] = ACTIONS(1260), + [sym__bare_dollar] = ACTIONS(1258), + [sym__brace_start] = ACTIONS(1258), }, [502] = { - [sym_word] = ACTIONS(1271), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1271), - [anon_sym_SEMI] = ACTIONS(1271), - [anon_sym_EQ] = ACTIONS(1273), - [anon_sym_PLUS_PLUS] = ACTIONS(1273), - [anon_sym_DASH_DASH] = ACTIONS(1273), - [anon_sym_PLUS_EQ] = ACTIONS(1273), - [anon_sym_DASH_EQ] = ACTIONS(1273), - [anon_sym_STAR_EQ] = ACTIONS(1273), - [anon_sym_SLASH_EQ] = ACTIONS(1273), - [anon_sym_PERCENT_EQ] = ACTIONS(1273), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1273), - [anon_sym_LT_LT_EQ] = ACTIONS(1273), - [anon_sym_GT_GT_EQ] = ACTIONS(1273), - [anon_sym_AMP_EQ] = ACTIONS(1273), - [anon_sym_CARET_EQ] = ACTIONS(1273), - [anon_sym_PIPE_EQ] = ACTIONS(1273), - [anon_sym_PIPE_PIPE] = ACTIONS(1275), - [anon_sym_AMP_AMP] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1275), - [anon_sym_CARET] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1275), - [anon_sym_EQ_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ] = ACTIONS(1273), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), - [anon_sym_LT_EQ] = ACTIONS(1273), - [anon_sym_GT_EQ] = ACTIONS(1273), - [anon_sym_LT_LT] = ACTIONS(1275), - [anon_sym_GT_GT] = ACTIONS(1275), - [anon_sym_PLUS] = ACTIONS(1273), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(1273), - [anon_sym_SLASH] = ACTIONS(1273), - [anon_sym_PERCENT] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1273), - [anon_sym_LPAREN] = ACTIONS(1271), - [anon_sym_RPAREN] = ACTIONS(1275), - [anon_sym_SEMI_SEMI] = ACTIONS(1271), - [anon_sym_PIPE_AMP] = ACTIONS(1271), - [anon_sym_EQ_TILDE] = ACTIONS(1275), - [anon_sym_AMP_GT] = ACTIONS(1271), - [anon_sym_AMP_GT_GT] = ACTIONS(1271), - [anon_sym_LT_AMP] = ACTIONS(1271), - [anon_sym_GT_AMP] = ACTIONS(1271), - [anon_sym_GT_PIPE] = ACTIONS(1271), - [anon_sym_LT_AMP_DASH] = ACTIONS(1271), - [anon_sym_GT_AMP_DASH] = ACTIONS(1271), - [anon_sym_LT_LT_DASH] = ACTIONS(1271), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1281), - [anon_sym_LT_LT_LT] = ACTIONS(1271), - [anon_sym_QMARK] = ACTIONS(1273), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1271), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1271), - [anon_sym_DOLLAR] = ACTIONS(1271), - [sym__special_character] = ACTIONS(1271), - [anon_sym_DQUOTE] = ACTIONS(1271), - [sym_raw_string] = ACTIONS(1271), - [sym_ansi_c_string] = ACTIONS(1271), - [aux_sym_number_token1] = ACTIONS(1271), - [aux_sym_number_token2] = ACTIONS(1271), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1271), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1271), - [anon_sym_BQUOTE] = ACTIONS(1271), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1271), - [anon_sym_LT_LPAREN] = ACTIONS(1271), - [anon_sym_GT_LPAREN] = ACTIONS(1271), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1281), - [sym_test_operator] = ACTIONS(1283), - [sym__bare_dollar] = ACTIONS(1281), - [sym__brace_start] = ACTIONS(1281), - }, - [503] = { - [sym_word] = ACTIONS(1348), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1350), - [anon_sym_EQ] = ACTIONS(1348), - [anon_sym_PLUS_PLUS] = ACTIONS(1348), - [anon_sym_DASH_DASH] = ACTIONS(1348), - [anon_sym_PLUS_EQ] = ACTIONS(1348), - [anon_sym_DASH_EQ] = ACTIONS(1348), - [anon_sym_STAR_EQ] = ACTIONS(1348), - [anon_sym_SLASH_EQ] = ACTIONS(1348), - [anon_sym_PERCENT_EQ] = ACTIONS(1348), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1348), - [anon_sym_LT_LT_EQ] = ACTIONS(1350), - [anon_sym_GT_GT_EQ] = ACTIONS(1350), - [anon_sym_AMP_EQ] = ACTIONS(1350), - [anon_sym_CARET_EQ] = ACTIONS(1348), - [anon_sym_PIPE_EQ] = ACTIONS(1350), - [anon_sym_PIPE_PIPE] = ACTIONS(1350), - [anon_sym_AMP_AMP] = ACTIONS(1350), - [anon_sym_PIPE] = ACTIONS(1348), - [anon_sym_CARET] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), - [anon_sym_EQ_EQ] = ACTIONS(1348), - [anon_sym_BANG_EQ] = ACTIONS(1348), - [anon_sym_LT] = ACTIONS(1348), - [anon_sym_GT] = ACTIONS(1348), - [anon_sym_LT_EQ] = ACTIONS(1350), - [anon_sym_GT_EQ] = ACTIONS(1350), - [anon_sym_LT_LT] = ACTIONS(1348), - [anon_sym_GT_GT] = ACTIONS(1348), - [anon_sym_PLUS] = ACTIONS(1348), - [anon_sym_DASH] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_SLASH] = ACTIONS(1348), - [anon_sym_PERCENT] = ACTIONS(1348), - [anon_sym_STAR_STAR] = ACTIONS(1348), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_PIPE_AMP] = ACTIONS(1350), - [anon_sym_RBRACK] = ACTIONS(1350), - [anon_sym_EQ_TILDE] = ACTIONS(1348), - [anon_sym_AMP_GT] = ACTIONS(1348), - [anon_sym_AMP_GT_GT] = ACTIONS(1350), - [anon_sym_LT_AMP] = ACTIONS(1348), - [anon_sym_GT_AMP] = ACTIONS(1348), - [anon_sym_GT_PIPE] = ACTIONS(1350), - [anon_sym_LT_AMP_DASH] = ACTIONS(1350), - [anon_sym_GT_AMP_DASH] = ACTIONS(1350), - [anon_sym_LT_LT_DASH] = ACTIONS(1350), - [anon_sym_LT_LT_LT] = ACTIONS(1350), - [anon_sym_QMARK] = ACTIONS(1348), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1350), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1350), - [aux_sym_concatenation_token1] = ACTIONS(1350), - [anon_sym_DOLLAR] = ACTIONS(1348), - [sym__special_character] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym_raw_string] = ACTIONS(1350), - [sym_ansi_c_string] = ACTIONS(1350), - [aux_sym_number_token1] = ACTIONS(1348), - [aux_sym_number_token2] = ACTIONS(1348), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1350), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1348), - [anon_sym_BQUOTE] = ACTIONS(1348), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1350), - [anon_sym_LT_LPAREN] = ACTIONS(1350), - [anon_sym_GT_LPAREN] = ACTIONS(1350), + [aux_sym_concatenation_repeat1] = STATE(497), + [sym_word] = ACTIONS(1251), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1258), + [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [anon_sym_PLUS_EQ] = ACTIONS(1253), + [anon_sym_DASH_EQ] = ACTIONS(1253), + [anon_sym_STAR_EQ] = ACTIONS(1253), + [anon_sym_SLASH_EQ] = ACTIONS(1253), + [anon_sym_PERCENT_EQ] = ACTIONS(1253), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1253), + [anon_sym_LT_LT_EQ] = ACTIONS(1376), + [anon_sym_GT_GT_EQ] = ACTIONS(1376), + [anon_sym_AMP_EQ] = ACTIONS(1376), + [anon_sym_CARET_EQ] = ACTIONS(1253), + [anon_sym_PIPE_EQ] = ACTIONS(1376), + [anon_sym_PIPE_PIPE] = ACTIONS(1260), + [anon_sym_AMP_AMP] = ACTIONS(1260), + [anon_sym_PIPE] = ACTIONS(1255), + [anon_sym_CARET] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1253), + [anon_sym_LT] = ACTIONS(1255), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1376), + [anon_sym_GT_EQ] = ACTIONS(1376), + [anon_sym_LT_LT] = ACTIONS(1255), + [anon_sym_GT_GT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1253), + [anon_sym_PERCENT] = ACTIONS(1253), + [anon_sym_STAR_STAR] = ACTIONS(1253), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_PIPE_AMP] = ACTIONS(1258), + [anon_sym_RBRACK] = ACTIONS(1376), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_AMP_GT] = ACTIONS(1251), + [anon_sym_AMP_GT_GT] = ACTIONS(1258), + [anon_sym_LT_AMP] = ACTIONS(1251), + [anon_sym_GT_AMP] = ACTIONS(1251), + [anon_sym_GT_PIPE] = ACTIONS(1258), + [anon_sym_LT_AMP_DASH] = ACTIONS(1258), + [anon_sym_GT_AMP_DASH] = ACTIONS(1258), + [anon_sym_LT_LT_DASH] = ACTIONS(1258), + [anon_sym_LT_LT_LT] = ACTIONS(1258), + [anon_sym_QMARK] = ACTIONS(1253), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1258), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1258), + [aux_sym_concatenation_token1] = ACTIONS(301), + [anon_sym_DOLLAR] = ACTIONS(1251), + [sym__special_character] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1258), + [sym_raw_string] = ACTIONS(1258), + [sym_ansi_c_string] = ACTIONS(1258), + [aux_sym_number_token1] = ACTIONS(1251), + [aux_sym_number_token2] = ACTIONS(1251), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1258), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1251), + [anon_sym_BQUOTE] = ACTIONS(1251), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1258), + [anon_sym_LT_LPAREN] = ACTIONS(1258), + [anon_sym_GT_LPAREN] = ACTIONS(1258), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1350), - [sym__concat] = ACTIONS(1350), - [sym_test_operator] = ACTIONS(1350), - [sym__bare_dollar] = ACTIONS(1350), - [sym__brace_start] = ACTIONS(1350), + [sym_file_descriptor] = ACTIONS(1258), + [sym__concat] = ACTIONS(301), + [sym_test_operator] = ACTIONS(1260), + [sym__bare_dollar] = ACTIONS(1258), + [sym__brace_start] = ACTIONS(1258), }, - [504] = { + [503] = { [sym_word] = ACTIONS(1352), [anon_sym_LPAREN_LPAREN] = ACTIONS(1354), [anon_sym_EQ] = ACTIONS(1352), @@ -74861,6 +75089,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1354), [sym__brace_start] = ACTIONS(1354), }, + [504] = { + [sym_word] = ACTIONS(1320), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_EQ] = ACTIONS(1320), + [anon_sym_DASH_EQ] = ACTIONS(1320), + [anon_sym_STAR_EQ] = ACTIONS(1320), + [anon_sym_SLASH_EQ] = ACTIONS(1320), + [anon_sym_PERCENT_EQ] = ACTIONS(1320), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1320), + [anon_sym_LT_LT_EQ] = ACTIONS(1322), + [anon_sym_GT_GT_EQ] = ACTIONS(1322), + [anon_sym_AMP_EQ] = ACTIONS(1322), + [anon_sym_CARET_EQ] = ACTIONS(1320), + [anon_sym_PIPE_EQ] = ACTIONS(1322), + [anon_sym_PIPE_PIPE] = ACTIONS(1322), + [anon_sym_AMP_AMP] = ACTIONS(1322), + [anon_sym_PIPE] = ACTIONS(1320), + [anon_sym_CARET] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_EQ_EQ] = ACTIONS(1320), + [anon_sym_BANG_EQ] = ACTIONS(1320), + [anon_sym_LT] = ACTIONS(1320), + [anon_sym_GT] = ACTIONS(1320), + [anon_sym_LT_EQ] = ACTIONS(1322), + [anon_sym_GT_EQ] = ACTIONS(1322), + [anon_sym_LT_LT] = ACTIONS(1320), + [anon_sym_GT_GT] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_SLASH] = ACTIONS(1320), + [anon_sym_PERCENT] = ACTIONS(1320), + [anon_sym_STAR_STAR] = ACTIONS(1320), + [anon_sym_LPAREN] = ACTIONS(1320), + [anon_sym_PIPE_AMP] = ACTIONS(1322), + [anon_sym_RBRACK] = ACTIONS(1322), + [anon_sym_EQ_TILDE] = ACTIONS(1320), + [anon_sym_AMP_GT] = ACTIONS(1320), + [anon_sym_AMP_GT_GT] = ACTIONS(1322), + [anon_sym_LT_AMP] = ACTIONS(1320), + [anon_sym_GT_AMP] = ACTIONS(1320), + [anon_sym_GT_PIPE] = ACTIONS(1322), + [anon_sym_LT_AMP_DASH] = ACTIONS(1322), + [anon_sym_GT_AMP_DASH] = ACTIONS(1322), + [anon_sym_LT_LT_DASH] = ACTIONS(1322), + [anon_sym_LT_LT_LT] = ACTIONS(1322), + [anon_sym_QMARK] = ACTIONS(1320), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1322), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1322), + [aux_sym_concatenation_token1] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1320), + [sym__special_character] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_raw_string] = ACTIONS(1322), + [sym_ansi_c_string] = ACTIONS(1322), + [aux_sym_number_token1] = ACTIONS(1320), + [aux_sym_number_token2] = ACTIONS(1320), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1322), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1320), + [anon_sym_BQUOTE] = ACTIONS(1320), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1322), + [anon_sym_LT_LPAREN] = ACTIONS(1322), + [anon_sym_GT_LPAREN] = ACTIONS(1322), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1322), + [sym__concat] = ACTIONS(1322), + [sym_test_operator] = ACTIONS(1322), + [sym__bare_dollar] = ACTIONS(1322), + [sym__brace_start] = ACTIONS(1322), + }, [505] = { [sym_word] = ACTIONS(1328), [anon_sym_LPAREN_LPAREN] = ACTIONS(1330), @@ -74935,6 +75236,736 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_start] = ACTIONS(1330), }, [506] = { + [sym_word] = ACTIONS(1340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1342), + [anon_sym_EQ] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_EQ] = ACTIONS(1340), + [anon_sym_DASH_EQ] = ACTIONS(1340), + [anon_sym_STAR_EQ] = ACTIONS(1340), + [anon_sym_SLASH_EQ] = ACTIONS(1340), + [anon_sym_PERCENT_EQ] = ACTIONS(1340), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1340), + [anon_sym_LT_LT_EQ] = ACTIONS(1342), + [anon_sym_GT_GT_EQ] = ACTIONS(1342), + [anon_sym_AMP_EQ] = ACTIONS(1342), + [anon_sym_CARET_EQ] = ACTIONS(1340), + [anon_sym_PIPE_EQ] = ACTIONS(1342), + [anon_sym_PIPE_PIPE] = ACTIONS(1342), + [anon_sym_AMP_AMP] = ACTIONS(1342), + [anon_sym_PIPE] = ACTIONS(1340), + [anon_sym_CARET] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_EQ_EQ] = ACTIONS(1340), + [anon_sym_BANG_EQ] = ACTIONS(1340), + [anon_sym_LT] = ACTIONS(1340), + [anon_sym_GT] = ACTIONS(1340), + [anon_sym_LT_EQ] = ACTIONS(1342), + [anon_sym_GT_EQ] = ACTIONS(1342), + [anon_sym_LT_LT] = ACTIONS(1340), + [anon_sym_GT_GT] = ACTIONS(1340), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_SLASH] = ACTIONS(1340), + [anon_sym_PERCENT] = ACTIONS(1340), + [anon_sym_STAR_STAR] = ACTIONS(1340), + [anon_sym_LPAREN] = ACTIONS(1340), + [anon_sym_PIPE_AMP] = ACTIONS(1342), + [anon_sym_RBRACK] = ACTIONS(1342), + [anon_sym_EQ_TILDE] = ACTIONS(1340), + [anon_sym_AMP_GT] = ACTIONS(1340), + [anon_sym_AMP_GT_GT] = ACTIONS(1342), + [anon_sym_LT_AMP] = ACTIONS(1340), + [anon_sym_GT_AMP] = ACTIONS(1340), + [anon_sym_GT_PIPE] = ACTIONS(1342), + [anon_sym_LT_AMP_DASH] = ACTIONS(1342), + [anon_sym_GT_AMP_DASH] = ACTIONS(1342), + [anon_sym_LT_LT_DASH] = ACTIONS(1342), + [anon_sym_LT_LT_LT] = ACTIONS(1342), + [anon_sym_QMARK] = ACTIONS(1340), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1342), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1342), + [aux_sym_concatenation_token1] = ACTIONS(1342), + [anon_sym_DOLLAR] = ACTIONS(1340), + [sym__special_character] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1342), + [sym_raw_string] = ACTIONS(1342), + [sym_ansi_c_string] = ACTIONS(1342), + [aux_sym_number_token1] = ACTIONS(1340), + [aux_sym_number_token2] = ACTIONS(1340), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1340), + [anon_sym_BQUOTE] = ACTIONS(1340), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1342), + [anon_sym_LT_LPAREN] = ACTIONS(1342), + [anon_sym_GT_LPAREN] = ACTIONS(1342), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1342), + [sym__concat] = ACTIONS(1342), + [sym_test_operator] = ACTIONS(1342), + [sym__bare_dollar] = ACTIONS(1342), + [sym__brace_start] = ACTIONS(1342), + }, + [507] = { + [sym_word] = ACTIONS(1292), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1294), + [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1292), + [anon_sym_DASH_DASH] = ACTIONS(1292), + [anon_sym_PLUS_EQ] = ACTIONS(1292), + [anon_sym_DASH_EQ] = ACTIONS(1292), + [anon_sym_STAR_EQ] = ACTIONS(1292), + [anon_sym_SLASH_EQ] = ACTIONS(1292), + [anon_sym_PERCENT_EQ] = ACTIONS(1292), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1292), + [anon_sym_LT_LT_EQ] = ACTIONS(1294), + [anon_sym_GT_GT_EQ] = ACTIONS(1294), + [anon_sym_AMP_EQ] = ACTIONS(1294), + [anon_sym_CARET_EQ] = ACTIONS(1292), + [anon_sym_PIPE_EQ] = ACTIONS(1294), + [anon_sym_PIPE_PIPE] = ACTIONS(1294), + [anon_sym_AMP_AMP] = ACTIONS(1294), + [anon_sym_PIPE] = ACTIONS(1292), + [anon_sym_CARET] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_EQ_EQ] = ACTIONS(1292), + [anon_sym_BANG_EQ] = ACTIONS(1292), + [anon_sym_LT] = ACTIONS(1292), + [anon_sym_GT] = ACTIONS(1292), + [anon_sym_LT_EQ] = ACTIONS(1294), + [anon_sym_GT_EQ] = ACTIONS(1294), + [anon_sym_LT_LT] = ACTIONS(1292), + [anon_sym_GT_GT] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1292), + [anon_sym_SLASH] = ACTIONS(1292), + [anon_sym_PERCENT] = ACTIONS(1292), + [anon_sym_STAR_STAR] = ACTIONS(1292), + [anon_sym_LPAREN] = ACTIONS(1292), + [anon_sym_PIPE_AMP] = ACTIONS(1294), + [anon_sym_RBRACK] = ACTIONS(1294), + [anon_sym_EQ_TILDE] = ACTIONS(1292), + [anon_sym_AMP_GT] = ACTIONS(1292), + [anon_sym_AMP_GT_GT] = ACTIONS(1294), + [anon_sym_LT_AMP] = ACTIONS(1292), + [anon_sym_GT_AMP] = ACTIONS(1292), + [anon_sym_GT_PIPE] = ACTIONS(1294), + [anon_sym_LT_AMP_DASH] = ACTIONS(1294), + [anon_sym_GT_AMP_DASH] = ACTIONS(1294), + [anon_sym_LT_LT_DASH] = ACTIONS(1294), + [anon_sym_LT_LT_LT] = ACTIONS(1294), + [anon_sym_QMARK] = ACTIONS(1292), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1294), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1294), + [aux_sym_concatenation_token1] = ACTIONS(1294), + [anon_sym_DOLLAR] = ACTIONS(1292), + [sym__special_character] = ACTIONS(1292), + [anon_sym_DQUOTE] = ACTIONS(1294), + [sym_raw_string] = ACTIONS(1294), + [sym_ansi_c_string] = ACTIONS(1294), + [aux_sym_number_token1] = ACTIONS(1292), + [aux_sym_number_token2] = ACTIONS(1292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1292), + [anon_sym_BQUOTE] = ACTIONS(1292), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1294), + [anon_sym_LT_LPAREN] = ACTIONS(1294), + [anon_sym_GT_LPAREN] = ACTIONS(1294), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1294), + [sym__concat] = ACTIONS(1294), + [sym_test_operator] = ACTIONS(1294), + [sym__bare_dollar] = ACTIONS(1294), + [sym__brace_start] = ACTIONS(1294), + }, + [508] = { + [sym_word] = ACTIONS(1296), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1298), + [anon_sym_EQ] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1296), + [anon_sym_DASH_DASH] = ACTIONS(1296), + [anon_sym_PLUS_EQ] = ACTIONS(1296), + [anon_sym_DASH_EQ] = ACTIONS(1296), + [anon_sym_STAR_EQ] = ACTIONS(1296), + [anon_sym_SLASH_EQ] = ACTIONS(1296), + [anon_sym_PERCENT_EQ] = ACTIONS(1296), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1296), + [anon_sym_LT_LT_EQ] = ACTIONS(1298), + [anon_sym_GT_GT_EQ] = ACTIONS(1298), + [anon_sym_AMP_EQ] = ACTIONS(1298), + [anon_sym_CARET_EQ] = ACTIONS(1296), + [anon_sym_PIPE_EQ] = ACTIONS(1298), + [anon_sym_PIPE_PIPE] = ACTIONS(1298), + [anon_sym_AMP_AMP] = ACTIONS(1298), + [anon_sym_PIPE] = ACTIONS(1296), + [anon_sym_CARET] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym_EQ_EQ] = ACTIONS(1296), + [anon_sym_BANG_EQ] = ACTIONS(1296), + [anon_sym_LT] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1296), + [anon_sym_LT_EQ] = ACTIONS(1298), + [anon_sym_GT_EQ] = ACTIONS(1298), + [anon_sym_LT_LT] = ACTIONS(1296), + [anon_sym_GT_GT] = ACTIONS(1296), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_STAR] = ACTIONS(1296), + [anon_sym_SLASH] = ACTIONS(1296), + [anon_sym_PERCENT] = ACTIONS(1296), + [anon_sym_STAR_STAR] = ACTIONS(1296), + [anon_sym_LPAREN] = ACTIONS(1296), + [anon_sym_PIPE_AMP] = ACTIONS(1298), + [anon_sym_RBRACK] = ACTIONS(1298), + [anon_sym_EQ_TILDE] = ACTIONS(1296), + [anon_sym_AMP_GT] = ACTIONS(1296), + [anon_sym_AMP_GT_GT] = ACTIONS(1298), + [anon_sym_LT_AMP] = ACTIONS(1296), + [anon_sym_GT_AMP] = ACTIONS(1296), + [anon_sym_GT_PIPE] = ACTIONS(1298), + [anon_sym_LT_AMP_DASH] = ACTIONS(1298), + [anon_sym_GT_AMP_DASH] = ACTIONS(1298), + [anon_sym_LT_LT_DASH] = ACTIONS(1298), + [anon_sym_LT_LT_LT] = ACTIONS(1298), + [anon_sym_QMARK] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1298), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1298), + [aux_sym_concatenation_token1] = ACTIONS(1298), + [anon_sym_DOLLAR] = ACTIONS(1296), + [sym__special_character] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1298), + [sym_raw_string] = ACTIONS(1298), + [sym_ansi_c_string] = ACTIONS(1298), + [aux_sym_number_token1] = ACTIONS(1296), + [aux_sym_number_token2] = ACTIONS(1296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1298), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), + [anon_sym_BQUOTE] = ACTIONS(1296), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1298), + [anon_sym_LT_LPAREN] = ACTIONS(1298), + [anon_sym_GT_LPAREN] = ACTIONS(1298), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1298), + [sym__concat] = ACTIONS(1298), + [sym_test_operator] = ACTIONS(1298), + [sym__bare_dollar] = ACTIONS(1298), + [sym__brace_start] = ACTIONS(1298), + }, + [509] = { + [sym_word] = ACTIONS(1324), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1326), + [anon_sym_EQ] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_EQ] = ACTIONS(1324), + [anon_sym_DASH_EQ] = ACTIONS(1324), + [anon_sym_STAR_EQ] = ACTIONS(1324), + [anon_sym_SLASH_EQ] = ACTIONS(1324), + [anon_sym_PERCENT_EQ] = ACTIONS(1324), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1324), + [anon_sym_LT_LT_EQ] = ACTIONS(1326), + [anon_sym_GT_GT_EQ] = ACTIONS(1326), + [anon_sym_AMP_EQ] = ACTIONS(1326), + [anon_sym_CARET_EQ] = ACTIONS(1324), + [anon_sym_PIPE_EQ] = ACTIONS(1326), + [anon_sym_PIPE_PIPE] = ACTIONS(1326), + [anon_sym_AMP_AMP] = ACTIONS(1326), + [anon_sym_PIPE] = ACTIONS(1324), + [anon_sym_CARET] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_EQ_EQ] = ACTIONS(1324), + [anon_sym_BANG_EQ] = ACTIONS(1324), + [anon_sym_LT] = ACTIONS(1324), + [anon_sym_GT] = ACTIONS(1324), + [anon_sym_LT_EQ] = ACTIONS(1326), + [anon_sym_GT_EQ] = ACTIONS(1326), + [anon_sym_LT_LT] = ACTIONS(1324), + [anon_sym_GT_GT] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1324), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_SLASH] = ACTIONS(1324), + [anon_sym_PERCENT] = ACTIONS(1324), + [anon_sym_STAR_STAR] = ACTIONS(1324), + [anon_sym_LPAREN] = ACTIONS(1324), + [anon_sym_PIPE_AMP] = ACTIONS(1326), + [anon_sym_RBRACK] = ACTIONS(1326), + [anon_sym_EQ_TILDE] = ACTIONS(1324), + [anon_sym_AMP_GT] = ACTIONS(1324), + [anon_sym_AMP_GT_GT] = ACTIONS(1326), + [anon_sym_LT_AMP] = ACTIONS(1324), + [anon_sym_GT_AMP] = ACTIONS(1324), + [anon_sym_GT_PIPE] = ACTIONS(1326), + [anon_sym_LT_AMP_DASH] = ACTIONS(1326), + [anon_sym_GT_AMP_DASH] = ACTIONS(1326), + [anon_sym_LT_LT_DASH] = ACTIONS(1326), + [anon_sym_LT_LT_LT] = ACTIONS(1326), + [anon_sym_QMARK] = ACTIONS(1324), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1326), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1326), + [aux_sym_concatenation_token1] = ACTIONS(1326), + [anon_sym_DOLLAR] = ACTIONS(1324), + [sym__special_character] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1326), + [sym_raw_string] = ACTIONS(1326), + [sym_ansi_c_string] = ACTIONS(1326), + [aux_sym_number_token1] = ACTIONS(1324), + [aux_sym_number_token2] = ACTIONS(1324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1324), + [anon_sym_BQUOTE] = ACTIONS(1324), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1326), + [anon_sym_LT_LPAREN] = ACTIONS(1326), + [anon_sym_GT_LPAREN] = ACTIONS(1326), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1326), + [sym__concat] = ACTIONS(1326), + [sym_test_operator] = ACTIONS(1326), + [sym__bare_dollar] = ACTIONS(1326), + [sym__brace_start] = ACTIONS(1326), + }, + [510] = { + [sym_word] = ACTIONS(1276), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1278), + [anon_sym_EQ] = ACTIONS(1276), + [anon_sym_PLUS_PLUS] = ACTIONS(1276), + [anon_sym_DASH_DASH] = ACTIONS(1276), + [anon_sym_PLUS_EQ] = ACTIONS(1276), + [anon_sym_DASH_EQ] = ACTIONS(1276), + [anon_sym_STAR_EQ] = ACTIONS(1276), + [anon_sym_SLASH_EQ] = ACTIONS(1276), + [anon_sym_PERCENT_EQ] = ACTIONS(1276), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1276), + [anon_sym_LT_LT_EQ] = ACTIONS(1278), + [anon_sym_GT_GT_EQ] = ACTIONS(1278), + [anon_sym_AMP_EQ] = ACTIONS(1278), + [anon_sym_CARET_EQ] = ACTIONS(1276), + [anon_sym_PIPE_EQ] = ACTIONS(1278), + [anon_sym_PIPE_PIPE] = ACTIONS(1278), + [anon_sym_AMP_AMP] = ACTIONS(1278), + [anon_sym_PIPE] = ACTIONS(1276), + [anon_sym_CARET] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1276), + [anon_sym_EQ_EQ] = ACTIONS(1276), + [anon_sym_BANG_EQ] = ACTIONS(1276), + [anon_sym_LT] = ACTIONS(1276), + [anon_sym_GT] = ACTIONS(1276), + [anon_sym_LT_EQ] = ACTIONS(1278), + [anon_sym_GT_EQ] = ACTIONS(1278), + [anon_sym_LT_LT] = ACTIONS(1276), + [anon_sym_GT_GT] = ACTIONS(1276), + [anon_sym_PLUS] = ACTIONS(1276), + [anon_sym_DASH] = ACTIONS(1276), + [anon_sym_STAR] = ACTIONS(1276), + [anon_sym_SLASH] = ACTIONS(1276), + [anon_sym_PERCENT] = ACTIONS(1276), + [anon_sym_STAR_STAR] = ACTIONS(1276), + [anon_sym_LPAREN] = ACTIONS(1276), + [anon_sym_PIPE_AMP] = ACTIONS(1278), + [anon_sym_RBRACK] = ACTIONS(1278), + [anon_sym_EQ_TILDE] = ACTIONS(1276), + [anon_sym_AMP_GT] = ACTIONS(1276), + [anon_sym_AMP_GT_GT] = ACTIONS(1278), + [anon_sym_LT_AMP] = ACTIONS(1276), + [anon_sym_GT_AMP] = ACTIONS(1276), + [anon_sym_GT_PIPE] = ACTIONS(1278), + [anon_sym_LT_AMP_DASH] = ACTIONS(1278), + [anon_sym_GT_AMP_DASH] = ACTIONS(1278), + [anon_sym_LT_LT_DASH] = ACTIONS(1278), + [anon_sym_LT_LT_LT] = ACTIONS(1278), + [anon_sym_QMARK] = ACTIONS(1276), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1278), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1278), + [aux_sym_concatenation_token1] = ACTIONS(1278), + [anon_sym_DOLLAR] = ACTIONS(1276), + [sym__special_character] = ACTIONS(1276), + [anon_sym_DQUOTE] = ACTIONS(1278), + [sym_raw_string] = ACTIONS(1278), + [sym_ansi_c_string] = ACTIONS(1278), + [aux_sym_number_token1] = ACTIONS(1276), + [aux_sym_number_token2] = ACTIONS(1276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1278), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1276), + [anon_sym_BQUOTE] = ACTIONS(1276), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1278), + [anon_sym_LT_LPAREN] = ACTIONS(1278), + [anon_sym_GT_LPAREN] = ACTIONS(1278), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1278), + [sym__concat] = ACTIONS(1278), + [sym_test_operator] = ACTIONS(1278), + [sym__bare_dollar] = ACTIONS(1278), + [sym__brace_start] = ACTIONS(1278), + }, + [511] = { + [sym_word] = ACTIONS(1348), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1350), + [anon_sym_EQ] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [anon_sym_DASH_DASH] = ACTIONS(1348), + [anon_sym_PLUS_EQ] = ACTIONS(1348), + [anon_sym_DASH_EQ] = ACTIONS(1348), + [anon_sym_STAR_EQ] = ACTIONS(1348), + [anon_sym_SLASH_EQ] = ACTIONS(1348), + [anon_sym_PERCENT_EQ] = ACTIONS(1348), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1348), + [anon_sym_LT_LT_EQ] = ACTIONS(1350), + [anon_sym_GT_GT_EQ] = ACTIONS(1350), + [anon_sym_AMP_EQ] = ACTIONS(1350), + [anon_sym_CARET_EQ] = ACTIONS(1348), + [anon_sym_PIPE_EQ] = ACTIONS(1350), + [anon_sym_PIPE_PIPE] = ACTIONS(1350), + [anon_sym_AMP_AMP] = ACTIONS(1350), + [anon_sym_PIPE] = ACTIONS(1348), + [anon_sym_CARET] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_EQ_EQ] = ACTIONS(1348), + [anon_sym_BANG_EQ] = ACTIONS(1348), + [anon_sym_LT] = ACTIONS(1348), + [anon_sym_GT] = ACTIONS(1348), + [anon_sym_LT_EQ] = ACTIONS(1350), + [anon_sym_GT_EQ] = ACTIONS(1350), + [anon_sym_LT_LT] = ACTIONS(1348), + [anon_sym_GT_GT] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_SLASH] = ACTIONS(1348), + [anon_sym_PERCENT] = ACTIONS(1348), + [anon_sym_STAR_STAR] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_PIPE_AMP] = ACTIONS(1350), + [anon_sym_RBRACK] = ACTIONS(1350), + [anon_sym_EQ_TILDE] = ACTIONS(1348), + [anon_sym_AMP_GT] = ACTIONS(1348), + [anon_sym_AMP_GT_GT] = ACTIONS(1350), + [anon_sym_LT_AMP] = ACTIONS(1348), + [anon_sym_GT_AMP] = ACTIONS(1348), + [anon_sym_GT_PIPE] = ACTIONS(1350), + [anon_sym_LT_AMP_DASH] = ACTIONS(1350), + [anon_sym_GT_AMP_DASH] = ACTIONS(1350), + [anon_sym_LT_LT_DASH] = ACTIONS(1350), + [anon_sym_LT_LT_LT] = ACTIONS(1350), + [anon_sym_QMARK] = ACTIONS(1348), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1350), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1350), + [aux_sym_concatenation_token1] = ACTIONS(1350), + [anon_sym_DOLLAR] = ACTIONS(1348), + [sym__special_character] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1350), + [sym_raw_string] = ACTIONS(1350), + [sym_ansi_c_string] = ACTIONS(1350), + [aux_sym_number_token1] = ACTIONS(1348), + [aux_sym_number_token2] = ACTIONS(1348), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1348), + [anon_sym_BQUOTE] = ACTIONS(1348), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1350), + [anon_sym_LT_LPAREN] = ACTIONS(1350), + [anon_sym_GT_LPAREN] = ACTIONS(1350), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1350), + [sym__concat] = ACTIONS(1350), + [sym_test_operator] = ACTIONS(1350), + [sym__bare_dollar] = ACTIONS(1350), + [sym__brace_start] = ACTIONS(1350), + }, + [512] = { + [sym_word] = ACTIONS(1304), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_EQ] = ACTIONS(1304), + [anon_sym_DASH_EQ] = ACTIONS(1304), + [anon_sym_STAR_EQ] = ACTIONS(1304), + [anon_sym_SLASH_EQ] = ACTIONS(1304), + [anon_sym_PERCENT_EQ] = ACTIONS(1304), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1304), + [anon_sym_LT_LT_EQ] = ACTIONS(1306), + [anon_sym_GT_GT_EQ] = ACTIONS(1306), + [anon_sym_AMP_EQ] = ACTIONS(1306), + [anon_sym_CARET_EQ] = ACTIONS(1304), + [anon_sym_PIPE_EQ] = ACTIONS(1306), + [anon_sym_PIPE_PIPE] = ACTIONS(1306), + [anon_sym_AMP_AMP] = ACTIONS(1306), + [anon_sym_PIPE] = ACTIONS(1304), + [anon_sym_CARET] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_EQ_EQ] = ACTIONS(1304), + [anon_sym_BANG_EQ] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1304), + [anon_sym_GT] = ACTIONS(1304), + [anon_sym_LT_EQ] = ACTIONS(1306), + [anon_sym_GT_EQ] = ACTIONS(1306), + [anon_sym_LT_LT] = ACTIONS(1304), + [anon_sym_GT_GT] = ACTIONS(1304), + [anon_sym_PLUS] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_SLASH] = ACTIONS(1304), + [anon_sym_PERCENT] = ACTIONS(1304), + [anon_sym_STAR_STAR] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1304), + [anon_sym_PIPE_AMP] = ACTIONS(1306), + [anon_sym_RBRACK] = ACTIONS(1306), + [anon_sym_EQ_TILDE] = ACTIONS(1304), + [anon_sym_AMP_GT] = ACTIONS(1304), + [anon_sym_AMP_GT_GT] = ACTIONS(1306), + [anon_sym_LT_AMP] = ACTIONS(1304), + [anon_sym_GT_AMP] = ACTIONS(1304), + [anon_sym_GT_PIPE] = ACTIONS(1306), + [anon_sym_LT_AMP_DASH] = ACTIONS(1306), + [anon_sym_GT_AMP_DASH] = ACTIONS(1306), + [anon_sym_LT_LT_DASH] = ACTIONS(1306), + [anon_sym_LT_LT_LT] = ACTIONS(1306), + [anon_sym_QMARK] = ACTIONS(1304), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1306), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1306), + [aux_sym_concatenation_token1] = ACTIONS(1306), + [anon_sym_DOLLAR] = ACTIONS(1304), + [sym__special_character] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1306), + [sym_raw_string] = ACTIONS(1306), + [sym_ansi_c_string] = ACTIONS(1306), + [aux_sym_number_token1] = ACTIONS(1304), + [aux_sym_number_token2] = ACTIONS(1304), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1306), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1304), + [anon_sym_BQUOTE] = ACTIONS(1304), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1306), + [anon_sym_LT_LPAREN] = ACTIONS(1306), + [anon_sym_GT_LPAREN] = ACTIONS(1306), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1306), + [sym__concat] = ACTIONS(1306), + [sym_test_operator] = ACTIONS(1306), + [sym__bare_dollar] = ACTIONS(1306), + [sym__brace_start] = ACTIONS(1306), + }, + [513] = { + [sym_word] = ACTIONS(1316), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1318), + [anon_sym_EQ] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_EQ] = ACTIONS(1316), + [anon_sym_DASH_EQ] = ACTIONS(1316), + [anon_sym_STAR_EQ] = ACTIONS(1316), + [anon_sym_SLASH_EQ] = ACTIONS(1316), + [anon_sym_PERCENT_EQ] = ACTIONS(1316), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1316), + [anon_sym_LT_LT_EQ] = ACTIONS(1318), + [anon_sym_GT_GT_EQ] = ACTIONS(1318), + [anon_sym_AMP_EQ] = ACTIONS(1318), + [anon_sym_CARET_EQ] = ACTIONS(1316), + [anon_sym_PIPE_EQ] = ACTIONS(1318), + [anon_sym_PIPE_PIPE] = ACTIONS(1318), + [anon_sym_AMP_AMP] = ACTIONS(1318), + [anon_sym_PIPE] = ACTIONS(1316), + [anon_sym_CARET] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_EQ_EQ] = ACTIONS(1316), + [anon_sym_BANG_EQ] = ACTIONS(1316), + [anon_sym_LT] = ACTIONS(1316), + [anon_sym_GT] = ACTIONS(1316), + [anon_sym_LT_EQ] = ACTIONS(1318), + [anon_sym_GT_EQ] = ACTIONS(1318), + [anon_sym_LT_LT] = ACTIONS(1316), + [anon_sym_GT_GT] = ACTIONS(1316), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_SLASH] = ACTIONS(1316), + [anon_sym_PERCENT] = ACTIONS(1316), + [anon_sym_STAR_STAR] = ACTIONS(1316), + [anon_sym_LPAREN] = ACTIONS(1316), + [anon_sym_PIPE_AMP] = ACTIONS(1318), + [anon_sym_RBRACK] = ACTIONS(1318), + [anon_sym_EQ_TILDE] = ACTIONS(1316), + [anon_sym_AMP_GT] = ACTIONS(1316), + [anon_sym_AMP_GT_GT] = ACTIONS(1318), + [anon_sym_LT_AMP] = ACTIONS(1316), + [anon_sym_GT_AMP] = ACTIONS(1316), + [anon_sym_GT_PIPE] = ACTIONS(1318), + [anon_sym_LT_AMP_DASH] = ACTIONS(1318), + [anon_sym_GT_AMP_DASH] = ACTIONS(1318), + [anon_sym_LT_LT_DASH] = ACTIONS(1318), + [anon_sym_LT_LT_LT] = ACTIONS(1318), + [anon_sym_QMARK] = ACTIONS(1316), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1318), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1318), + [aux_sym_concatenation_token1] = ACTIONS(1318), + [anon_sym_DOLLAR] = ACTIONS(1316), + [sym__special_character] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1318), + [sym_raw_string] = ACTIONS(1318), + [sym_ansi_c_string] = ACTIONS(1318), + [aux_sym_number_token1] = ACTIONS(1316), + [aux_sym_number_token2] = ACTIONS(1316), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1318), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1316), + [anon_sym_BQUOTE] = ACTIONS(1316), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1318), + [anon_sym_LT_LPAREN] = ACTIONS(1318), + [anon_sym_GT_LPAREN] = ACTIONS(1318), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1318), + [sym__concat] = ACTIONS(1318), + [sym_test_operator] = ACTIONS(1318), + [sym__bare_dollar] = ACTIONS(1318), + [sym__brace_start] = ACTIONS(1318), + }, + [514] = { + [sym_word] = ACTIONS(1332), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1334), + [anon_sym_EQ] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_EQ] = ACTIONS(1332), + [anon_sym_DASH_EQ] = ACTIONS(1332), + [anon_sym_STAR_EQ] = ACTIONS(1332), + [anon_sym_SLASH_EQ] = ACTIONS(1332), + [anon_sym_PERCENT_EQ] = ACTIONS(1332), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1332), + [anon_sym_LT_LT_EQ] = ACTIONS(1334), + [anon_sym_GT_GT_EQ] = ACTIONS(1334), + [anon_sym_AMP_EQ] = ACTIONS(1334), + [anon_sym_CARET_EQ] = ACTIONS(1332), + [anon_sym_PIPE_EQ] = ACTIONS(1334), + [anon_sym_PIPE_PIPE] = ACTIONS(1334), + [anon_sym_AMP_AMP] = ACTIONS(1334), + [anon_sym_PIPE] = ACTIONS(1332), + [anon_sym_CARET] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_EQ_EQ] = ACTIONS(1332), + [anon_sym_BANG_EQ] = ACTIONS(1332), + [anon_sym_LT] = ACTIONS(1332), + [anon_sym_GT] = ACTIONS(1332), + [anon_sym_LT_EQ] = ACTIONS(1334), + [anon_sym_GT_EQ] = ACTIONS(1334), + [anon_sym_LT_LT] = ACTIONS(1332), + [anon_sym_GT_GT] = ACTIONS(1332), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_SLASH] = ACTIONS(1332), + [anon_sym_PERCENT] = ACTIONS(1332), + [anon_sym_STAR_STAR] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1332), + [anon_sym_PIPE_AMP] = ACTIONS(1334), + [anon_sym_RBRACK] = ACTIONS(1334), + [anon_sym_EQ_TILDE] = ACTIONS(1332), + [anon_sym_AMP_GT] = ACTIONS(1332), + [anon_sym_AMP_GT_GT] = ACTIONS(1334), + [anon_sym_LT_AMP] = ACTIONS(1332), + [anon_sym_GT_AMP] = ACTIONS(1332), + [anon_sym_GT_PIPE] = ACTIONS(1334), + [anon_sym_LT_AMP_DASH] = ACTIONS(1334), + [anon_sym_GT_AMP_DASH] = ACTIONS(1334), + [anon_sym_LT_LT_DASH] = ACTIONS(1334), + [anon_sym_LT_LT_LT] = ACTIONS(1334), + [anon_sym_QMARK] = ACTIONS(1332), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1334), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1334), + [aux_sym_concatenation_token1] = ACTIONS(1334), + [anon_sym_DOLLAR] = ACTIONS(1332), + [sym__special_character] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1334), + [sym_raw_string] = ACTIONS(1334), + [sym_ansi_c_string] = ACTIONS(1334), + [aux_sym_number_token1] = ACTIONS(1332), + [aux_sym_number_token2] = ACTIONS(1332), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1334), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1332), + [anon_sym_BQUOTE] = ACTIONS(1332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1334), + [anon_sym_LT_LPAREN] = ACTIONS(1334), + [anon_sym_GT_LPAREN] = ACTIONS(1334), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1334), + [sym__concat] = ACTIONS(1334), + [sym_test_operator] = ACTIONS(1334), + [sym__bare_dollar] = ACTIONS(1334), + [sym__brace_start] = ACTIONS(1334), + }, + [515] = { + [sym_word] = ACTIONS(1356), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1358), + [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_PLUS_EQ] = ACTIONS(1356), + [anon_sym_DASH_EQ] = ACTIONS(1356), + [anon_sym_STAR_EQ] = ACTIONS(1356), + [anon_sym_SLASH_EQ] = ACTIONS(1356), + [anon_sym_PERCENT_EQ] = ACTIONS(1356), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1356), + [anon_sym_LT_LT_EQ] = ACTIONS(1358), + [anon_sym_GT_GT_EQ] = ACTIONS(1358), + [anon_sym_AMP_EQ] = ACTIONS(1358), + [anon_sym_CARET_EQ] = ACTIONS(1356), + [anon_sym_PIPE_EQ] = ACTIONS(1358), + [anon_sym_PIPE_PIPE] = ACTIONS(1358), + [anon_sym_AMP_AMP] = ACTIONS(1358), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_CARET] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_EQ_EQ] = ACTIONS(1356), + [anon_sym_BANG_EQ] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_LT_EQ] = ACTIONS(1358), + [anon_sym_GT_EQ] = ACTIONS(1358), + [anon_sym_LT_LT] = ACTIONS(1356), + [anon_sym_GT_GT] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_SLASH] = ACTIONS(1356), + [anon_sym_PERCENT] = ACTIONS(1356), + [anon_sym_STAR_STAR] = ACTIONS(1356), + [anon_sym_LPAREN] = ACTIONS(1356), + [anon_sym_PIPE_AMP] = ACTIONS(1358), + [anon_sym_RBRACK] = ACTIONS(1358), + [anon_sym_EQ_TILDE] = ACTIONS(1356), + [anon_sym_AMP_GT] = ACTIONS(1356), + [anon_sym_AMP_GT_GT] = ACTIONS(1358), + [anon_sym_LT_AMP] = ACTIONS(1356), + [anon_sym_GT_AMP] = ACTIONS(1356), + [anon_sym_GT_PIPE] = ACTIONS(1358), + [anon_sym_LT_AMP_DASH] = ACTIONS(1358), + [anon_sym_GT_AMP_DASH] = ACTIONS(1358), + [anon_sym_LT_LT_DASH] = ACTIONS(1358), + [anon_sym_LT_LT_LT] = ACTIONS(1358), + [anon_sym_QMARK] = ACTIONS(1356), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1358), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1358), + [aux_sym_concatenation_token1] = ACTIONS(1358), + [anon_sym_DOLLAR] = ACTIONS(1356), + [sym__special_character] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1358), + [sym_raw_string] = ACTIONS(1358), + [sym_ansi_c_string] = ACTIONS(1358), + [aux_sym_number_token1] = ACTIONS(1356), + [aux_sym_number_token2] = ACTIONS(1356), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1358), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), + [anon_sym_BQUOTE] = ACTIONS(1356), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1358), + [anon_sym_LT_LPAREN] = ACTIONS(1358), + [anon_sym_GT_LPAREN] = ACTIONS(1358), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1358), + [sym__concat] = ACTIONS(1358), + [sym_test_operator] = ACTIONS(1358), + [sym__bare_dollar] = ACTIONS(1358), + [sym__brace_start] = ACTIONS(1358), + }, + [516] = { [sym_word] = ACTIONS(1344), [anon_sym_LPAREN_LPAREN] = ACTIONS(1346), [anon_sym_EQ] = ACTIONS(1344), @@ -75007,7 +76038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1346), [sym__brace_start] = ACTIONS(1346), }, - [507] = { + [517] = { [sym_word] = ACTIONS(1356), [anon_sym_LPAREN_LPAREN] = ACTIONS(1358), [anon_sym_EQ] = ACTIONS(1356), @@ -75080,7 +76111,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1358), [sym__brace_start] = ACTIONS(1358), }, - [508] = { + [518] = { + [sym_word] = ACTIONS(1308), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1310), + [anon_sym_EQ] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_EQ] = ACTIONS(1308), + [anon_sym_DASH_EQ] = ACTIONS(1308), + [anon_sym_STAR_EQ] = ACTIONS(1308), + [anon_sym_SLASH_EQ] = ACTIONS(1308), + [anon_sym_PERCENT_EQ] = ACTIONS(1308), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1308), + [anon_sym_LT_LT_EQ] = ACTIONS(1310), + [anon_sym_GT_GT_EQ] = ACTIONS(1310), + [anon_sym_AMP_EQ] = ACTIONS(1310), + [anon_sym_CARET_EQ] = ACTIONS(1308), + [anon_sym_PIPE_EQ] = ACTIONS(1310), + [anon_sym_PIPE_PIPE] = ACTIONS(1310), + [anon_sym_AMP_AMP] = ACTIONS(1310), + [anon_sym_PIPE] = ACTIONS(1308), + [anon_sym_CARET] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_EQ_EQ] = ACTIONS(1308), + [anon_sym_BANG_EQ] = ACTIONS(1308), + [anon_sym_LT] = ACTIONS(1308), + [anon_sym_GT] = ACTIONS(1308), + [anon_sym_LT_EQ] = ACTIONS(1310), + [anon_sym_GT_EQ] = ACTIONS(1310), + [anon_sym_LT_LT] = ACTIONS(1308), + [anon_sym_GT_GT] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_SLASH] = ACTIONS(1308), + [anon_sym_PERCENT] = ACTIONS(1308), + [anon_sym_STAR_STAR] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1308), + [anon_sym_PIPE_AMP] = ACTIONS(1310), + [anon_sym_RBRACK] = ACTIONS(1310), + [anon_sym_EQ_TILDE] = ACTIONS(1308), + [anon_sym_AMP_GT] = ACTIONS(1308), + [anon_sym_AMP_GT_GT] = ACTIONS(1310), + [anon_sym_LT_AMP] = ACTIONS(1308), + [anon_sym_GT_AMP] = ACTIONS(1308), + [anon_sym_GT_PIPE] = ACTIONS(1310), + [anon_sym_LT_AMP_DASH] = ACTIONS(1310), + [anon_sym_GT_AMP_DASH] = ACTIONS(1310), + [anon_sym_LT_LT_DASH] = ACTIONS(1310), + [anon_sym_LT_LT_LT] = ACTIONS(1310), + [anon_sym_QMARK] = ACTIONS(1308), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1310), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1310), + [aux_sym_concatenation_token1] = ACTIONS(1310), + [anon_sym_DOLLAR] = ACTIONS(1308), + [sym__special_character] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1310), + [sym_raw_string] = ACTIONS(1310), + [sym_ansi_c_string] = ACTIONS(1310), + [aux_sym_number_token1] = ACTIONS(1308), + [aux_sym_number_token2] = ACTIONS(1308), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1310), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), + [anon_sym_BQUOTE] = ACTIONS(1308), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1310), + [anon_sym_LT_LPAREN] = ACTIONS(1310), + [anon_sym_GT_LPAREN] = ACTIONS(1310), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1310), + [sym__concat] = ACTIONS(1310), + [sym_test_operator] = ACTIONS(1310), + [sym__bare_dollar] = ACTIONS(1310), + [sym__brace_start] = ACTIONS(1310), + }, + [519] = { [sym_word] = ACTIONS(1300), [anon_sym_LPAREN_LPAREN] = ACTIONS(1302), [anon_sym_EQ] = ACTIONS(1300), @@ -75153,153 +76257,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1302), [sym__brace_start] = ACTIONS(1302), }, - [509] = { - [sym_word] = ACTIONS(1320), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1322), - [anon_sym_EQ] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_EQ] = ACTIONS(1320), - [anon_sym_DASH_EQ] = ACTIONS(1320), - [anon_sym_STAR_EQ] = ACTIONS(1320), - [anon_sym_SLASH_EQ] = ACTIONS(1320), - [anon_sym_PERCENT_EQ] = ACTIONS(1320), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1320), - [anon_sym_LT_LT_EQ] = ACTIONS(1322), - [anon_sym_GT_GT_EQ] = ACTIONS(1322), - [anon_sym_AMP_EQ] = ACTIONS(1322), - [anon_sym_CARET_EQ] = ACTIONS(1320), - [anon_sym_PIPE_EQ] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1322), - [anon_sym_PIPE] = ACTIONS(1320), - [anon_sym_CARET] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_EQ_EQ] = ACTIONS(1320), - [anon_sym_BANG_EQ] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_LT_LT] = ACTIONS(1320), - [anon_sym_GT_GT] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_SLASH] = ACTIONS(1320), - [anon_sym_PERCENT] = ACTIONS(1320), - [anon_sym_STAR_STAR] = ACTIONS(1320), - [anon_sym_LPAREN] = ACTIONS(1320), - [anon_sym_PIPE_AMP] = ACTIONS(1322), - [anon_sym_RBRACK] = ACTIONS(1322), - [anon_sym_EQ_TILDE] = ACTIONS(1320), - [anon_sym_AMP_GT] = ACTIONS(1320), - [anon_sym_AMP_GT_GT] = ACTIONS(1322), - [anon_sym_LT_AMP] = ACTIONS(1320), - [anon_sym_GT_AMP] = ACTIONS(1320), - [anon_sym_GT_PIPE] = ACTIONS(1322), - [anon_sym_LT_AMP_DASH] = ACTIONS(1322), - [anon_sym_GT_AMP_DASH] = ACTIONS(1322), - [anon_sym_LT_LT_DASH] = ACTIONS(1322), - [anon_sym_LT_LT_LT] = ACTIONS(1322), - [anon_sym_QMARK] = ACTIONS(1320), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1322), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1322), - [aux_sym_concatenation_token1] = ACTIONS(1322), - [anon_sym_DOLLAR] = ACTIONS(1320), - [sym__special_character] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1322), - [sym_raw_string] = ACTIONS(1322), - [sym_ansi_c_string] = ACTIONS(1322), - [aux_sym_number_token1] = ACTIONS(1320), - [aux_sym_number_token2] = ACTIONS(1320), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1322), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1320), - [anon_sym_BQUOTE] = ACTIONS(1320), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1322), - [anon_sym_LT_LPAREN] = ACTIONS(1322), - [anon_sym_GT_LPAREN] = ACTIONS(1322), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1322), - [sym__concat] = ACTIONS(1322), - [sym_test_operator] = ACTIONS(1322), - [sym__bare_dollar] = ACTIONS(1322), - [sym__brace_start] = ACTIONS(1322), - }, - [510] = { - [sym_word] = ACTIONS(1316), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1318), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_PLUS_EQ] = ACTIONS(1316), - [anon_sym_DASH_EQ] = ACTIONS(1316), - [anon_sym_STAR_EQ] = ACTIONS(1316), - [anon_sym_SLASH_EQ] = ACTIONS(1316), - [anon_sym_PERCENT_EQ] = ACTIONS(1316), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1316), - [anon_sym_LT_LT_EQ] = ACTIONS(1318), - [anon_sym_GT_GT_EQ] = ACTIONS(1318), - [anon_sym_AMP_EQ] = ACTIONS(1318), - [anon_sym_CARET_EQ] = ACTIONS(1316), - [anon_sym_PIPE_EQ] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1318), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_EQ_EQ] = ACTIONS(1316), - [anon_sym_BANG_EQ] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_LT_EQ] = ACTIONS(1318), - [anon_sym_GT_EQ] = ACTIONS(1318), - [anon_sym_LT_LT] = ACTIONS(1316), - [anon_sym_GT_GT] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_SLASH] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_STAR_STAR] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_PIPE_AMP] = ACTIONS(1318), - [anon_sym_RBRACK] = ACTIONS(1318), - [anon_sym_EQ_TILDE] = ACTIONS(1316), - [anon_sym_AMP_GT] = ACTIONS(1316), - [anon_sym_AMP_GT_GT] = ACTIONS(1318), - [anon_sym_LT_AMP] = ACTIONS(1316), - [anon_sym_GT_AMP] = ACTIONS(1316), - [anon_sym_GT_PIPE] = ACTIONS(1318), - [anon_sym_LT_AMP_DASH] = ACTIONS(1318), - [anon_sym_GT_AMP_DASH] = ACTIONS(1318), - [anon_sym_LT_LT_DASH] = ACTIONS(1318), - [anon_sym_LT_LT_LT] = ACTIONS(1318), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1318), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1318), - [aux_sym_concatenation_token1] = ACTIONS(1318), - [anon_sym_DOLLAR] = ACTIONS(1316), - [sym__special_character] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1318), - [sym_raw_string] = ACTIONS(1318), - [sym_ansi_c_string] = ACTIONS(1318), - [aux_sym_number_token1] = ACTIONS(1316), - [aux_sym_number_token2] = ACTIONS(1316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1316), - [anon_sym_BQUOTE] = ACTIONS(1316), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1318), - [anon_sym_LT_LPAREN] = ACTIONS(1318), - [anon_sym_GT_LPAREN] = ACTIONS(1318), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1318), - [sym__concat] = ACTIONS(1318), - [sym_test_operator] = ACTIONS(1318), - [sym__bare_dollar] = ACTIONS(1318), - [sym__brace_start] = ACTIONS(1318), - }, - [511] = { + [520] = { [sym_word] = ACTIONS(1336), [anon_sym_LPAREN_LPAREN] = ACTIONS(1338), [anon_sym_EQ] = ACTIONS(1336), @@ -75372,591 +76330,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1338), [sym__brace_start] = ACTIONS(1338), }, - [512] = { - [sym_word] = ACTIONS(1324), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_PLUS_PLUS] = ACTIONS(1324), - [anon_sym_DASH_DASH] = ACTIONS(1324), - [anon_sym_PLUS_EQ] = ACTIONS(1324), - [anon_sym_DASH_EQ] = ACTIONS(1324), - [anon_sym_STAR_EQ] = ACTIONS(1324), - [anon_sym_SLASH_EQ] = ACTIONS(1324), - [anon_sym_PERCENT_EQ] = ACTIONS(1324), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1324), - [anon_sym_LT_LT_EQ] = ACTIONS(1326), - [anon_sym_GT_GT_EQ] = ACTIONS(1326), - [anon_sym_AMP_EQ] = ACTIONS(1326), - [anon_sym_CARET_EQ] = ACTIONS(1324), - [anon_sym_PIPE_EQ] = ACTIONS(1326), - [anon_sym_PIPE_PIPE] = ACTIONS(1326), - [anon_sym_AMP_AMP] = ACTIONS(1326), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_EQ_EQ] = ACTIONS(1324), - [anon_sym_BANG_EQ] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_LT_EQ] = ACTIONS(1326), - [anon_sym_GT_EQ] = ACTIONS(1326), - [anon_sym_LT_LT] = ACTIONS(1324), - [anon_sym_GT_GT] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_SLASH] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_STAR_STAR] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1324), - [anon_sym_PIPE_AMP] = ACTIONS(1326), - [anon_sym_RBRACK] = ACTIONS(1326), - [anon_sym_EQ_TILDE] = ACTIONS(1324), - [anon_sym_AMP_GT] = ACTIONS(1324), - [anon_sym_AMP_GT_GT] = ACTIONS(1326), - [anon_sym_LT_AMP] = ACTIONS(1324), - [anon_sym_GT_AMP] = ACTIONS(1324), - [anon_sym_GT_PIPE] = ACTIONS(1326), - [anon_sym_LT_AMP_DASH] = ACTIONS(1326), - [anon_sym_GT_AMP_DASH] = ACTIONS(1326), - [anon_sym_LT_LT_DASH] = ACTIONS(1326), - [anon_sym_LT_LT_LT] = ACTIONS(1326), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1326), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1326), - [aux_sym_concatenation_token1] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1324), - [sym__special_character] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1326), - [sym_raw_string] = ACTIONS(1326), - [sym_ansi_c_string] = ACTIONS(1326), - [aux_sym_number_token1] = ACTIONS(1324), - [aux_sym_number_token2] = ACTIONS(1324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1324), - [anon_sym_BQUOTE] = ACTIONS(1324), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1326), - [anon_sym_LT_LPAREN] = ACTIONS(1326), - [anon_sym_GT_LPAREN] = ACTIONS(1326), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1326), - [sym__concat] = ACTIONS(1326), - [sym_test_operator] = ACTIONS(1326), - [sym__bare_dollar] = ACTIONS(1326), - [sym__brace_start] = ACTIONS(1326), - }, - [513] = { - [sym_word] = ACTIONS(1251), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1253), - [anon_sym_EQ] = ACTIONS(1251), - [anon_sym_PLUS_PLUS] = ACTIONS(1251), - [anon_sym_DASH_DASH] = ACTIONS(1251), - [anon_sym_PLUS_EQ] = ACTIONS(1251), - [anon_sym_DASH_EQ] = ACTIONS(1251), - [anon_sym_STAR_EQ] = ACTIONS(1251), - [anon_sym_SLASH_EQ] = ACTIONS(1251), - [anon_sym_PERCENT_EQ] = ACTIONS(1251), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1251), - [anon_sym_LT_LT_EQ] = ACTIONS(1253), - [anon_sym_GT_GT_EQ] = ACTIONS(1253), - [anon_sym_AMP_EQ] = ACTIONS(1253), - [anon_sym_CARET_EQ] = ACTIONS(1251), - [anon_sym_PIPE_EQ] = ACTIONS(1253), - [anon_sym_PIPE_PIPE] = ACTIONS(1253), - [anon_sym_AMP_AMP] = ACTIONS(1253), - [anon_sym_PIPE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1251), - [anon_sym_EQ_EQ] = ACTIONS(1251), - [anon_sym_BANG_EQ] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_LT_LT] = ACTIONS(1251), - [anon_sym_GT_GT] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1251), - [anon_sym_SLASH] = ACTIONS(1251), - [anon_sym_PERCENT] = ACTIONS(1251), - [anon_sym_STAR_STAR] = ACTIONS(1251), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_PIPE_AMP] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(1253), - [anon_sym_EQ_TILDE] = ACTIONS(1251), - [anon_sym_AMP_GT] = ACTIONS(1251), - [anon_sym_AMP_GT_GT] = ACTIONS(1253), - [anon_sym_LT_AMP] = ACTIONS(1251), - [anon_sym_GT_AMP] = ACTIONS(1251), - [anon_sym_GT_PIPE] = ACTIONS(1253), - [anon_sym_LT_AMP_DASH] = ACTIONS(1253), - [anon_sym_GT_AMP_DASH] = ACTIONS(1253), - [anon_sym_LT_LT_DASH] = ACTIONS(1253), - [anon_sym_LT_LT_LT] = ACTIONS(1253), - [anon_sym_QMARK] = ACTIONS(1251), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1253), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1253), - [aux_sym_concatenation_token1] = ACTIONS(1253), - [anon_sym_DOLLAR] = ACTIONS(1251), - [sym__special_character] = ACTIONS(1251), - [anon_sym_DQUOTE] = ACTIONS(1253), - [sym_raw_string] = ACTIONS(1253), - [sym_ansi_c_string] = ACTIONS(1253), - [aux_sym_number_token1] = ACTIONS(1251), - [aux_sym_number_token2] = ACTIONS(1251), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1253), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1251), - [anon_sym_BQUOTE] = ACTIONS(1251), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1253), - [anon_sym_LT_LPAREN] = ACTIONS(1253), - [anon_sym_GT_LPAREN] = ACTIONS(1253), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1253), - [sym__concat] = ACTIONS(1253), - [sym_test_operator] = ACTIONS(1253), - [sym__bare_dollar] = ACTIONS(1253), - [sym__brace_start] = ACTIONS(1253), - }, - [514] = { - [sym_word] = ACTIONS(1332), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_PLUS_EQ] = ACTIONS(1332), - [anon_sym_DASH_EQ] = ACTIONS(1332), - [anon_sym_STAR_EQ] = ACTIONS(1332), - [anon_sym_SLASH_EQ] = ACTIONS(1332), - [anon_sym_PERCENT_EQ] = ACTIONS(1332), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1332), - [anon_sym_LT_LT_EQ] = ACTIONS(1334), - [anon_sym_GT_GT_EQ] = ACTIONS(1334), - [anon_sym_AMP_EQ] = ACTIONS(1334), - [anon_sym_CARET_EQ] = ACTIONS(1332), - [anon_sym_PIPE_EQ] = ACTIONS(1334), - [anon_sym_PIPE_PIPE] = ACTIONS(1334), - [anon_sym_AMP_AMP] = ACTIONS(1334), - [anon_sym_PIPE] = ACTIONS(1332), - [anon_sym_CARET] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_EQ_EQ] = ACTIONS(1332), - [anon_sym_BANG_EQ] = ACTIONS(1332), - [anon_sym_LT] = ACTIONS(1332), - [anon_sym_GT] = ACTIONS(1332), - [anon_sym_LT_EQ] = ACTIONS(1334), - [anon_sym_GT_EQ] = ACTIONS(1334), - [anon_sym_LT_LT] = ACTIONS(1332), - [anon_sym_GT_GT] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_SLASH] = ACTIONS(1332), - [anon_sym_PERCENT] = ACTIONS(1332), - [anon_sym_STAR_STAR] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1332), - [anon_sym_PIPE_AMP] = ACTIONS(1334), - [anon_sym_RBRACK] = ACTIONS(1334), - [anon_sym_EQ_TILDE] = ACTIONS(1332), - [anon_sym_AMP_GT] = ACTIONS(1332), - [anon_sym_AMP_GT_GT] = ACTIONS(1334), - [anon_sym_LT_AMP] = ACTIONS(1332), - [anon_sym_GT_AMP] = ACTIONS(1332), - [anon_sym_GT_PIPE] = ACTIONS(1334), - [anon_sym_LT_AMP_DASH] = ACTIONS(1334), - [anon_sym_GT_AMP_DASH] = ACTIONS(1334), - [anon_sym_LT_LT_DASH] = ACTIONS(1334), - [anon_sym_LT_LT_LT] = ACTIONS(1334), - [anon_sym_QMARK] = ACTIONS(1332), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1334), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1334), - [aux_sym_concatenation_token1] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1332), - [sym__special_character] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1334), - [sym_raw_string] = ACTIONS(1334), - [sym_ansi_c_string] = ACTIONS(1334), - [aux_sym_number_token1] = ACTIONS(1332), - [aux_sym_number_token2] = ACTIONS(1332), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1334), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1332), - [anon_sym_BQUOTE] = ACTIONS(1332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1334), - [anon_sym_LT_LPAREN] = ACTIONS(1334), - [anon_sym_GT_LPAREN] = ACTIONS(1334), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1334), - [sym__concat] = ACTIONS(1334), - [sym_test_operator] = ACTIONS(1334), - [sym__bare_dollar] = ACTIONS(1334), - [sym__brace_start] = ACTIONS(1334), - }, - [515] = { - [sym_word] = ACTIONS(1292), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1294), - [anon_sym_EQ] = ACTIONS(1292), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_PLUS_EQ] = ACTIONS(1292), - [anon_sym_DASH_EQ] = ACTIONS(1292), - [anon_sym_STAR_EQ] = ACTIONS(1292), - [anon_sym_SLASH_EQ] = ACTIONS(1292), - [anon_sym_PERCENT_EQ] = ACTIONS(1292), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1292), - [anon_sym_LT_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_GT_EQ] = ACTIONS(1294), - [anon_sym_AMP_EQ] = ACTIONS(1294), - [anon_sym_CARET_EQ] = ACTIONS(1292), - [anon_sym_PIPE_EQ] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_PIPE] = ACTIONS(1292), - [anon_sym_CARET] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(1292), - [anon_sym_EQ_EQ] = ACTIONS(1292), - [anon_sym_BANG_EQ] = ACTIONS(1292), - [anon_sym_LT] = ACTIONS(1292), - [anon_sym_GT] = ACTIONS(1292), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_LT_LT] = ACTIONS(1292), - [anon_sym_GT_GT] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1292), - [anon_sym_SLASH] = ACTIONS(1292), - [anon_sym_PERCENT] = ACTIONS(1292), - [anon_sym_STAR_STAR] = ACTIONS(1292), - [anon_sym_LPAREN] = ACTIONS(1292), - [anon_sym_PIPE_AMP] = ACTIONS(1294), - [anon_sym_RBRACK] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1292), - [anon_sym_AMP_GT] = ACTIONS(1292), - [anon_sym_AMP_GT_GT] = ACTIONS(1294), - [anon_sym_LT_AMP] = ACTIONS(1292), - [anon_sym_GT_AMP] = ACTIONS(1292), - [anon_sym_GT_PIPE] = ACTIONS(1294), - [anon_sym_LT_AMP_DASH] = ACTIONS(1294), - [anon_sym_GT_AMP_DASH] = ACTIONS(1294), - [anon_sym_LT_LT_DASH] = ACTIONS(1294), - [anon_sym_LT_LT_LT] = ACTIONS(1294), - [anon_sym_QMARK] = ACTIONS(1292), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1294), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1294), - [aux_sym_concatenation_token1] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1292), - [sym__special_character] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_raw_string] = ACTIONS(1294), - [sym_ansi_c_string] = ACTIONS(1294), - [aux_sym_number_token1] = ACTIONS(1292), - [aux_sym_number_token2] = ACTIONS(1292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1292), - [anon_sym_BQUOTE] = ACTIONS(1292), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1294), - [anon_sym_LT_LPAREN] = ACTIONS(1294), - [anon_sym_GT_LPAREN] = ACTIONS(1294), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1294), - [sym__concat] = ACTIONS(1294), - [sym_test_operator] = ACTIONS(1294), - [sym__bare_dollar] = ACTIONS(1294), - [sym__brace_start] = ACTIONS(1294), - }, - [516] = { - [sym_word] = ACTIONS(1296), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1298), - [anon_sym_EQ] = ACTIONS(1296), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_DASH_DASH] = ACTIONS(1296), - [anon_sym_PLUS_EQ] = ACTIONS(1296), - [anon_sym_DASH_EQ] = ACTIONS(1296), - [anon_sym_STAR_EQ] = ACTIONS(1296), - [anon_sym_SLASH_EQ] = ACTIONS(1296), - [anon_sym_PERCENT_EQ] = ACTIONS(1296), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1296), - [anon_sym_LT_LT_EQ] = ACTIONS(1298), - [anon_sym_GT_GT_EQ] = ACTIONS(1298), - [anon_sym_AMP_EQ] = ACTIONS(1298), - [anon_sym_CARET_EQ] = ACTIONS(1296), - [anon_sym_PIPE_EQ] = ACTIONS(1298), - [anon_sym_PIPE_PIPE] = ACTIONS(1298), - [anon_sym_AMP_AMP] = ACTIONS(1298), - [anon_sym_PIPE] = ACTIONS(1296), - [anon_sym_CARET] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_EQ_EQ] = ACTIONS(1296), - [anon_sym_BANG_EQ] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1296), - [anon_sym_LT_EQ] = ACTIONS(1298), - [anon_sym_GT_EQ] = ACTIONS(1298), - [anon_sym_LT_LT] = ACTIONS(1296), - [anon_sym_GT_GT] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1296), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_SLASH] = ACTIONS(1296), - [anon_sym_PERCENT] = ACTIONS(1296), - [anon_sym_STAR_STAR] = ACTIONS(1296), - [anon_sym_LPAREN] = ACTIONS(1296), - [anon_sym_PIPE_AMP] = ACTIONS(1298), - [anon_sym_RBRACK] = ACTIONS(1298), - [anon_sym_EQ_TILDE] = ACTIONS(1296), - [anon_sym_AMP_GT] = ACTIONS(1296), - [anon_sym_AMP_GT_GT] = ACTIONS(1298), - [anon_sym_LT_AMP] = ACTIONS(1296), - [anon_sym_GT_AMP] = ACTIONS(1296), - [anon_sym_GT_PIPE] = ACTIONS(1298), - [anon_sym_LT_AMP_DASH] = ACTIONS(1298), - [anon_sym_GT_AMP_DASH] = ACTIONS(1298), - [anon_sym_LT_LT_DASH] = ACTIONS(1298), - [anon_sym_LT_LT_LT] = ACTIONS(1298), - [anon_sym_QMARK] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1298), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1298), - [aux_sym_concatenation_token1] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1296), - [sym__special_character] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym_raw_string] = ACTIONS(1298), - [sym_ansi_c_string] = ACTIONS(1298), - [aux_sym_number_token1] = ACTIONS(1296), - [aux_sym_number_token2] = ACTIONS(1296), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1298), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), - [anon_sym_BQUOTE] = ACTIONS(1296), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1298), - [anon_sym_LT_LPAREN] = ACTIONS(1298), - [anon_sym_GT_LPAREN] = ACTIONS(1298), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1298), - [sym__concat] = ACTIONS(1298), - [sym_test_operator] = ACTIONS(1298), - [sym__bare_dollar] = ACTIONS(1298), - [sym__brace_start] = ACTIONS(1298), - }, - [517] = { - [sym_word] = ACTIONS(1308), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1310), - [anon_sym_EQ] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_EQ] = ACTIONS(1308), - [anon_sym_DASH_EQ] = ACTIONS(1308), - [anon_sym_STAR_EQ] = ACTIONS(1308), - [anon_sym_SLASH_EQ] = ACTIONS(1308), - [anon_sym_PERCENT_EQ] = ACTIONS(1308), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1308), - [anon_sym_LT_LT_EQ] = ACTIONS(1310), - [anon_sym_GT_GT_EQ] = ACTIONS(1310), - [anon_sym_AMP_EQ] = ACTIONS(1310), - [anon_sym_CARET_EQ] = ACTIONS(1308), - [anon_sym_PIPE_EQ] = ACTIONS(1310), - [anon_sym_PIPE_PIPE] = ACTIONS(1310), - [anon_sym_AMP_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1308), - [anon_sym_CARET] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_EQ_EQ] = ACTIONS(1308), - [anon_sym_BANG_EQ] = ACTIONS(1308), - [anon_sym_LT] = ACTIONS(1308), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_LT_EQ] = ACTIONS(1310), - [anon_sym_GT_EQ] = ACTIONS(1310), - [anon_sym_LT_LT] = ACTIONS(1308), - [anon_sym_GT_GT] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(1308), - [anon_sym_PERCENT] = ACTIONS(1308), - [anon_sym_STAR_STAR] = ACTIONS(1308), - [anon_sym_LPAREN] = ACTIONS(1308), - [anon_sym_PIPE_AMP] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(1310), - [anon_sym_EQ_TILDE] = ACTIONS(1308), - [anon_sym_AMP_GT] = ACTIONS(1308), - [anon_sym_AMP_GT_GT] = ACTIONS(1310), - [anon_sym_LT_AMP] = ACTIONS(1308), - [anon_sym_GT_AMP] = ACTIONS(1308), - [anon_sym_GT_PIPE] = ACTIONS(1310), - [anon_sym_LT_AMP_DASH] = ACTIONS(1310), - [anon_sym_GT_AMP_DASH] = ACTIONS(1310), - [anon_sym_LT_LT_DASH] = ACTIONS(1310), - [anon_sym_LT_LT_LT] = ACTIONS(1310), - [anon_sym_QMARK] = ACTIONS(1308), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1310), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1310), - [aux_sym_concatenation_token1] = ACTIONS(1310), - [anon_sym_DOLLAR] = ACTIONS(1308), - [sym__special_character] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym_raw_string] = ACTIONS(1310), - [sym_ansi_c_string] = ACTIONS(1310), - [aux_sym_number_token1] = ACTIONS(1308), - [aux_sym_number_token2] = ACTIONS(1308), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1310), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), - [anon_sym_BQUOTE] = ACTIONS(1308), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1310), - [anon_sym_LT_LPAREN] = ACTIONS(1310), - [anon_sym_GT_LPAREN] = ACTIONS(1310), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1310), - [sym__concat] = ACTIONS(1310), - [sym_test_operator] = ACTIONS(1310), - [sym__bare_dollar] = ACTIONS(1310), - [sym__brace_start] = ACTIONS(1310), - }, - [518] = { - [sym_word] = ACTIONS(1304), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1306), - [anon_sym_EQ] = ACTIONS(1304), - [anon_sym_PLUS_PLUS] = ACTIONS(1304), - [anon_sym_DASH_DASH] = ACTIONS(1304), - [anon_sym_PLUS_EQ] = ACTIONS(1304), - [anon_sym_DASH_EQ] = ACTIONS(1304), - [anon_sym_STAR_EQ] = ACTIONS(1304), - [anon_sym_SLASH_EQ] = ACTIONS(1304), - [anon_sym_PERCENT_EQ] = ACTIONS(1304), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1304), - [anon_sym_LT_LT_EQ] = ACTIONS(1306), - [anon_sym_GT_GT_EQ] = ACTIONS(1306), - [anon_sym_AMP_EQ] = ACTIONS(1306), - [anon_sym_CARET_EQ] = ACTIONS(1304), - [anon_sym_PIPE_EQ] = ACTIONS(1306), - [anon_sym_PIPE_PIPE] = ACTIONS(1306), - [anon_sym_AMP_AMP] = ACTIONS(1306), - [anon_sym_PIPE] = ACTIONS(1304), - [anon_sym_CARET] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_EQ_EQ] = ACTIONS(1304), - [anon_sym_BANG_EQ] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1304), - [anon_sym_GT] = ACTIONS(1304), - [anon_sym_LT_EQ] = ACTIONS(1306), - [anon_sym_GT_EQ] = ACTIONS(1306), - [anon_sym_LT_LT] = ACTIONS(1304), - [anon_sym_GT_GT] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_SLASH] = ACTIONS(1304), - [anon_sym_PERCENT] = ACTIONS(1304), - [anon_sym_STAR_STAR] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1304), - [anon_sym_PIPE_AMP] = ACTIONS(1306), - [anon_sym_RBRACK] = ACTIONS(1306), - [anon_sym_EQ_TILDE] = ACTIONS(1304), - [anon_sym_AMP_GT] = ACTIONS(1304), - [anon_sym_AMP_GT_GT] = ACTIONS(1306), - [anon_sym_LT_AMP] = ACTIONS(1304), - [anon_sym_GT_AMP] = ACTIONS(1304), - [anon_sym_GT_PIPE] = ACTIONS(1306), - [anon_sym_LT_AMP_DASH] = ACTIONS(1306), - [anon_sym_GT_AMP_DASH] = ACTIONS(1306), - [anon_sym_LT_LT_DASH] = ACTIONS(1306), - [anon_sym_LT_LT_LT] = ACTIONS(1306), - [anon_sym_QMARK] = ACTIONS(1304), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1306), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1306), - [aux_sym_concatenation_token1] = ACTIONS(1306), - [anon_sym_DOLLAR] = ACTIONS(1304), - [sym__special_character] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1306), - [sym_raw_string] = ACTIONS(1306), - [sym_ansi_c_string] = ACTIONS(1306), - [aux_sym_number_token1] = ACTIONS(1304), - [aux_sym_number_token2] = ACTIONS(1304), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1306), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1304), - [anon_sym_BQUOTE] = ACTIONS(1304), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1306), - [anon_sym_LT_LPAREN] = ACTIONS(1306), - [anon_sym_GT_LPAREN] = ACTIONS(1306), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1306), - [sym__concat] = ACTIONS(1306), - [sym_test_operator] = ACTIONS(1306), - [sym__bare_dollar] = ACTIONS(1306), - [sym__brace_start] = ACTIONS(1306), - }, - [519] = { - [sym_word] = ACTIONS(1308), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1310), - [anon_sym_EQ] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_EQ] = ACTIONS(1308), - [anon_sym_DASH_EQ] = ACTIONS(1308), - [anon_sym_STAR_EQ] = ACTIONS(1308), - [anon_sym_SLASH_EQ] = ACTIONS(1308), - [anon_sym_PERCENT_EQ] = ACTIONS(1308), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1308), - [anon_sym_LT_LT_EQ] = ACTIONS(1310), - [anon_sym_GT_GT_EQ] = ACTIONS(1310), - [anon_sym_AMP_EQ] = ACTIONS(1310), - [anon_sym_CARET_EQ] = ACTIONS(1308), - [anon_sym_PIPE_EQ] = ACTIONS(1310), - [anon_sym_PIPE_PIPE] = ACTIONS(1310), - [anon_sym_AMP_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1308), - [anon_sym_CARET] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_EQ_EQ] = ACTIONS(1308), - [anon_sym_BANG_EQ] = ACTIONS(1308), - [anon_sym_LT] = ACTIONS(1308), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_LT_EQ] = ACTIONS(1310), - [anon_sym_GT_EQ] = ACTIONS(1310), - [anon_sym_LT_LT] = ACTIONS(1308), - [anon_sym_GT_GT] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(1308), - [anon_sym_PERCENT] = ACTIONS(1308), - [anon_sym_STAR_STAR] = ACTIONS(1308), - [anon_sym_LPAREN] = ACTIONS(1308), - [anon_sym_PIPE_AMP] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(1310), - [anon_sym_EQ_TILDE] = ACTIONS(1308), - [anon_sym_AMP_GT] = ACTIONS(1308), - [anon_sym_AMP_GT_GT] = ACTIONS(1310), - [anon_sym_LT_AMP] = ACTIONS(1308), - [anon_sym_GT_AMP] = ACTIONS(1308), - [anon_sym_GT_PIPE] = ACTIONS(1310), - [anon_sym_LT_AMP_DASH] = ACTIONS(1310), - [anon_sym_GT_AMP_DASH] = ACTIONS(1310), - [anon_sym_LT_LT_DASH] = ACTIONS(1310), - [anon_sym_LT_LT_LT] = ACTIONS(1310), - [anon_sym_QMARK] = ACTIONS(1308), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1310), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1310), - [aux_sym_concatenation_token1] = ACTIONS(1310), - [anon_sym_DOLLAR] = ACTIONS(1308), - [sym__special_character] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym_raw_string] = ACTIONS(1310), - [sym_ansi_c_string] = ACTIONS(1310), - [aux_sym_number_token1] = ACTIONS(1308), - [aux_sym_number_token2] = ACTIONS(1308), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1310), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), - [anon_sym_BQUOTE] = ACTIONS(1308), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1310), - [anon_sym_LT_LPAREN] = ACTIONS(1310), - [anon_sym_GT_LPAREN] = ACTIONS(1310), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1310), - [sym__concat] = ACTIONS(1310), - [sym_test_operator] = ACTIONS(1310), - [sym__bare_dollar] = ACTIONS(1310), - [sym__brace_start] = ACTIONS(1310), - }, - [520] = { + [521] = { [sym_word] = ACTIONS(1312), [anon_sym_LPAREN_LPAREN] = ACTIONS(1314), [anon_sym_EQ] = ACTIONS(1312), @@ -76029,81 +76403,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1314), [sym__brace_start] = ACTIONS(1314), }, - [521] = { - [sym_word] = ACTIONS(1340), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1342), - [anon_sym_EQ] = ACTIONS(1340), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_PLUS_EQ] = ACTIONS(1340), - [anon_sym_DASH_EQ] = ACTIONS(1340), - [anon_sym_STAR_EQ] = ACTIONS(1340), - [anon_sym_SLASH_EQ] = ACTIONS(1340), - [anon_sym_PERCENT_EQ] = ACTIONS(1340), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1340), - [anon_sym_LT_LT_EQ] = ACTIONS(1342), - [anon_sym_GT_GT_EQ] = ACTIONS(1342), - [anon_sym_AMP_EQ] = ACTIONS(1342), - [anon_sym_CARET_EQ] = ACTIONS(1340), - [anon_sym_PIPE_EQ] = ACTIONS(1342), - [anon_sym_PIPE_PIPE] = ACTIONS(1342), - [anon_sym_AMP_AMP] = ACTIONS(1342), - [anon_sym_PIPE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_EQ_EQ] = ACTIONS(1340), - [anon_sym_BANG_EQ] = ACTIONS(1340), - [anon_sym_LT] = ACTIONS(1340), - [anon_sym_GT] = ACTIONS(1340), - [anon_sym_LT_EQ] = ACTIONS(1342), - [anon_sym_GT_EQ] = ACTIONS(1342), - [anon_sym_LT_LT] = ACTIONS(1340), - [anon_sym_GT_GT] = ACTIONS(1340), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_SLASH] = ACTIONS(1340), - [anon_sym_PERCENT] = ACTIONS(1340), - [anon_sym_STAR_STAR] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1340), - [anon_sym_PIPE_AMP] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(1342), - [anon_sym_EQ_TILDE] = ACTIONS(1340), - [anon_sym_AMP_GT] = ACTIONS(1340), - [anon_sym_AMP_GT_GT] = ACTIONS(1342), - [anon_sym_LT_AMP] = ACTIONS(1340), - [anon_sym_GT_AMP] = ACTIONS(1340), - [anon_sym_GT_PIPE] = ACTIONS(1342), - [anon_sym_LT_AMP_DASH] = ACTIONS(1342), - [anon_sym_GT_AMP_DASH] = ACTIONS(1342), - [anon_sym_LT_LT_DASH] = ACTIONS(1342), - [anon_sym_LT_LT_LT] = ACTIONS(1342), - [anon_sym_QMARK] = ACTIONS(1340), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1342), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1342), - [aux_sym_concatenation_token1] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1340), - [sym__special_character] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym_raw_string] = ACTIONS(1342), - [sym_ansi_c_string] = ACTIONS(1342), - [aux_sym_number_token1] = ACTIONS(1340), - [aux_sym_number_token2] = ACTIONS(1340), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1342), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1340), - [anon_sym_BQUOTE] = ACTIONS(1340), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1342), - [anon_sym_LT_LPAREN] = ACTIONS(1342), - [anon_sym_GT_LPAREN] = ACTIONS(1342), + [522] = { + [aux_sym__literal_repeat1] = STATE(522), + [sym_word] = ACTIONS(1360), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1362), + [anon_sym_EQ] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_EQ] = ACTIONS(1360), + [anon_sym_DASH_EQ] = ACTIONS(1360), + [anon_sym_STAR_EQ] = ACTIONS(1360), + [anon_sym_SLASH_EQ] = ACTIONS(1360), + [anon_sym_PERCENT_EQ] = ACTIONS(1360), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1360), + [anon_sym_LT_LT_EQ] = ACTIONS(1362), + [anon_sym_GT_GT_EQ] = ACTIONS(1362), + [anon_sym_AMP_EQ] = ACTIONS(1362), + [anon_sym_CARET_EQ] = ACTIONS(1360), + [anon_sym_PIPE_EQ] = ACTIONS(1362), + [anon_sym_PIPE_PIPE] = ACTIONS(1362), + [anon_sym_AMP_AMP] = ACTIONS(1362), + [anon_sym_PIPE] = ACTIONS(1360), + [anon_sym_CARET] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_EQ_EQ] = ACTIONS(1360), + [anon_sym_BANG_EQ] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1360), + [anon_sym_GT] = ACTIONS(1360), + [anon_sym_LT_EQ] = ACTIONS(1362), + [anon_sym_GT_EQ] = ACTIONS(1362), + [anon_sym_LT_LT] = ACTIONS(1360), + [anon_sym_GT_GT] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_SLASH] = ACTIONS(1360), + [anon_sym_PERCENT] = ACTIONS(1360), + [anon_sym_STAR_STAR] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1360), + [anon_sym_PIPE_AMP] = ACTIONS(1362), + [anon_sym_RBRACK] = ACTIONS(1362), + [anon_sym_EQ_TILDE] = ACTIONS(1360), + [anon_sym_AMP_GT] = ACTIONS(1360), + [anon_sym_AMP_GT_GT] = ACTIONS(1362), + [anon_sym_LT_AMP] = ACTIONS(1360), + [anon_sym_GT_AMP] = ACTIONS(1360), + [anon_sym_GT_PIPE] = ACTIONS(1362), + [anon_sym_LT_AMP_DASH] = ACTIONS(1362), + [anon_sym_GT_AMP_DASH] = ACTIONS(1362), + [anon_sym_LT_LT_DASH] = ACTIONS(1362), + [anon_sym_LT_LT_LT] = ACTIONS(1362), + [anon_sym_QMARK] = ACTIONS(1360), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1362), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1362), + [anon_sym_DOLLAR] = ACTIONS(1360), + [sym__special_character] = ACTIONS(1381), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym_raw_string] = ACTIONS(1362), + [sym_ansi_c_string] = ACTIONS(1362), + [aux_sym_number_token1] = ACTIONS(1360), + [aux_sym_number_token2] = ACTIONS(1360), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1362), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1360), + [anon_sym_BQUOTE] = ACTIONS(1362), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1362), + [anon_sym_LT_LPAREN] = ACTIONS(1362), + [anon_sym_GT_LPAREN] = ACTIONS(1362), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1342), - [sym__concat] = ACTIONS(1342), - [sym_test_operator] = ACTIONS(1342), - [sym__bare_dollar] = ACTIONS(1342), - [sym__brace_start] = ACTIONS(1342), + [sym_file_descriptor] = ACTIONS(1362), + [sym_test_operator] = ACTIONS(1362), + [sym__bare_dollar] = ACTIONS(1362), + [sym__brace_start] = ACTIONS(1362), }, - [522] = { - [aux_sym__literal_repeat1] = STATE(523), + [523] = { + [aux_sym__literal_repeat1] = STATE(522), [sym_word] = ACTIONS(241), [anon_sym_LPAREN_LPAREN] = ACTIONS(278), [anon_sym_EQ] = ACTIONS(243), @@ -76115,13 +76488,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_EQ] = ACTIONS(243), [anon_sym_PERCENT_EQ] = ACTIONS(243), [anon_sym_STAR_STAR_EQ] = ACTIONS(243), - [anon_sym_LT_LT_EQ] = ACTIONS(354), - [anon_sym_GT_GT_EQ] = ACTIONS(354), - [anon_sym_AMP_EQ] = ACTIONS(354), + [anon_sym_LT_LT_EQ] = ACTIONS(290), + [anon_sym_GT_GT_EQ] = ACTIONS(290), + [anon_sym_AMP_EQ] = ACTIONS(290), [anon_sym_CARET_EQ] = ACTIONS(243), - [anon_sym_PIPE_EQ] = ACTIONS(354), - [anon_sym_PIPE_PIPE] = ACTIONS(356), - [anon_sym_AMP_AMP] = ACTIONS(356), + [anon_sym_PIPE_EQ] = ACTIONS(290), + [anon_sym_PIPE_PIPE] = ACTIONS(292), + [anon_sym_AMP_AMP] = ACTIONS(292), [anon_sym_PIPE] = ACTIONS(245), [anon_sym_CARET] = ACTIONS(243), [anon_sym_AMP] = ACTIONS(243), @@ -76129,8 +76502,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(243), [anon_sym_LT] = ACTIONS(245), [anon_sym_GT] = ACTIONS(245), - [anon_sym_LT_EQ] = ACTIONS(354), - [anon_sym_GT_EQ] = ACTIONS(354), + [anon_sym_LT_EQ] = ACTIONS(290), + [anon_sym_GT_EQ] = ACTIONS(290), [anon_sym_LT_LT] = ACTIONS(245), [anon_sym_GT_GT] = ACTIONS(245), [anon_sym_PLUS] = ACTIONS(243), @@ -76141,7 +76514,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_STAR] = ACTIONS(243), [anon_sym_LPAREN] = ACTIONS(241), [anon_sym_PIPE_AMP] = ACTIONS(278), - [anon_sym_RBRACK] = ACTIONS(354), + [anon_sym_RBRACK] = ACTIONS(290), [anon_sym_EQ_TILDE] = ACTIONS(245), [anon_sym_AMP_GT] = ACTIONS(241), [anon_sym_AMP_GT_GT] = ACTIONS(278), @@ -76156,7 +76529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(278), [anon_sym_DOLLAR_LBRACK] = ACTIONS(278), [anon_sym_DOLLAR] = ACTIONS(241), - [sym__special_character] = ACTIONS(1381), + [sym__special_character] = ACTIONS(1384), [anon_sym_DQUOTE] = ACTIONS(278), [sym_raw_string] = ACTIONS(278), [sym_ansi_c_string] = ACTIONS(278), @@ -76170,252 +76543,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(278), [sym_comment] = ACTIONS(71), [sym_file_descriptor] = ACTIONS(278), - [sym_test_operator] = ACTIONS(356), + [sym_test_operator] = ACTIONS(292), [sym__bare_dollar] = ACTIONS(278), [sym__brace_start] = ACTIONS(278), }, - [523] = { - [aux_sym__literal_repeat1] = STATE(523), - [sym_word] = ACTIONS(1362), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1364), - [anon_sym_EQ] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_EQ] = ACTIONS(1362), - [anon_sym_DASH_EQ] = ACTIONS(1362), - [anon_sym_STAR_EQ] = ACTIONS(1362), - [anon_sym_SLASH_EQ] = ACTIONS(1362), - [anon_sym_PERCENT_EQ] = ACTIONS(1362), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1362), - [anon_sym_LT_LT_EQ] = ACTIONS(1364), - [anon_sym_GT_GT_EQ] = ACTIONS(1364), - [anon_sym_AMP_EQ] = ACTIONS(1364), - [anon_sym_CARET_EQ] = ACTIONS(1362), - [anon_sym_PIPE_EQ] = ACTIONS(1364), - [anon_sym_PIPE_PIPE] = ACTIONS(1364), - [anon_sym_AMP_AMP] = ACTIONS(1364), - [anon_sym_PIPE] = ACTIONS(1362), - [anon_sym_CARET] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_EQ_EQ] = ACTIONS(1362), - [anon_sym_BANG_EQ] = ACTIONS(1362), - [anon_sym_LT] = ACTIONS(1362), - [anon_sym_GT] = ACTIONS(1362), - [anon_sym_LT_EQ] = ACTIONS(1364), - [anon_sym_GT_EQ] = ACTIONS(1364), - [anon_sym_LT_LT] = ACTIONS(1362), - [anon_sym_GT_GT] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_SLASH] = ACTIONS(1362), - [anon_sym_PERCENT] = ACTIONS(1362), - [anon_sym_STAR_STAR] = ACTIONS(1362), - [anon_sym_LPAREN] = ACTIONS(1362), - [anon_sym_PIPE_AMP] = ACTIONS(1364), - [anon_sym_RBRACK] = ACTIONS(1364), - [anon_sym_EQ_TILDE] = ACTIONS(1362), - [anon_sym_AMP_GT] = ACTIONS(1362), - [anon_sym_AMP_GT_GT] = ACTIONS(1364), - [anon_sym_LT_AMP] = ACTIONS(1362), - [anon_sym_GT_AMP] = ACTIONS(1362), - [anon_sym_GT_PIPE] = ACTIONS(1364), - [anon_sym_LT_AMP_DASH] = ACTIONS(1364), - [anon_sym_GT_AMP_DASH] = ACTIONS(1364), - [anon_sym_LT_LT_DASH] = ACTIONS(1364), - [anon_sym_LT_LT_LT] = ACTIONS(1364), - [anon_sym_QMARK] = ACTIONS(1362), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1364), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1364), - [anon_sym_DOLLAR] = ACTIONS(1362), - [sym__special_character] = ACTIONS(1383), - [anon_sym_DQUOTE] = ACTIONS(1364), - [sym_raw_string] = ACTIONS(1364), - [sym_ansi_c_string] = ACTIONS(1364), - [aux_sym_number_token1] = ACTIONS(1362), - [aux_sym_number_token2] = ACTIONS(1362), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1364), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1362), - [anon_sym_BQUOTE] = ACTIONS(1364), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1364), - [anon_sym_LT_LPAREN] = ACTIONS(1364), - [anon_sym_GT_LPAREN] = ACTIONS(1364), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1364), - [sym_test_operator] = ACTIONS(1364), - [sym__bare_dollar] = ACTIONS(1364), - [sym__brace_start] = ACTIONS(1364), - }, [524] = { - [sym_word] = ACTIONS(1271), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1281), - [anon_sym_EQ] = ACTIONS(1273), - [anon_sym_PLUS_PLUS] = ACTIONS(1273), - [anon_sym_DASH_DASH] = ACTIONS(1273), - [anon_sym_PLUS_EQ] = ACTIONS(1273), - [anon_sym_DASH_EQ] = ACTIONS(1273), - [anon_sym_STAR_EQ] = ACTIONS(1273), - [anon_sym_SLASH_EQ] = ACTIONS(1273), - [anon_sym_PERCENT_EQ] = ACTIONS(1273), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1273), - [anon_sym_LT_LT_EQ] = ACTIONS(1369), - [anon_sym_GT_GT_EQ] = ACTIONS(1369), - [anon_sym_AMP_EQ] = ACTIONS(1369), - [anon_sym_CARET_EQ] = ACTIONS(1273), - [anon_sym_PIPE_EQ] = ACTIONS(1369), - [anon_sym_PIPE_PIPE] = ACTIONS(1283), - [anon_sym_AMP_AMP] = ACTIONS(1283), - [anon_sym_PIPE] = ACTIONS(1275), - [anon_sym_CARET] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ] = ACTIONS(1273), - [anon_sym_LT] = ACTIONS(1275), - [anon_sym_GT] = ACTIONS(1275), - [anon_sym_LT_EQ] = ACTIONS(1369), - [anon_sym_GT_EQ] = ACTIONS(1369), - [anon_sym_LT_LT] = ACTIONS(1275), - [anon_sym_GT_GT] = ACTIONS(1275), - [anon_sym_PLUS] = ACTIONS(1273), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(1273), - [anon_sym_SLASH] = ACTIONS(1273), - [anon_sym_PERCENT] = ACTIONS(1273), - [anon_sym_STAR_STAR] = ACTIONS(1273), - [anon_sym_LPAREN] = ACTIONS(1271), - [anon_sym_PIPE_AMP] = ACTIONS(1281), - [anon_sym_RBRACK] = ACTIONS(1369), - [anon_sym_EQ_TILDE] = ACTIONS(1275), - [anon_sym_AMP_GT] = ACTIONS(1271), - [anon_sym_AMP_GT_GT] = ACTIONS(1281), - [anon_sym_LT_AMP] = ACTIONS(1271), - [anon_sym_GT_AMP] = ACTIONS(1271), - [anon_sym_GT_PIPE] = ACTIONS(1281), - [anon_sym_LT_AMP_DASH] = ACTIONS(1281), - [anon_sym_GT_AMP_DASH] = ACTIONS(1281), - [anon_sym_LT_LT_DASH] = ACTIONS(1281), - [anon_sym_LT_LT_LT] = ACTIONS(1281), - [anon_sym_QMARK] = ACTIONS(1273), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1281), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1281), - [anon_sym_DOLLAR] = ACTIONS(1271), - [sym__special_character] = ACTIONS(1271), - [anon_sym_DQUOTE] = ACTIONS(1281), - [sym_raw_string] = ACTIONS(1281), - [sym_ansi_c_string] = ACTIONS(1281), - [aux_sym_number_token1] = ACTIONS(1271), - [aux_sym_number_token2] = ACTIONS(1271), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1281), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1271), - [anon_sym_BQUOTE] = ACTIONS(1281), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1281), - [anon_sym_LT_LPAREN] = ACTIONS(1281), - [anon_sym_GT_LPAREN] = ACTIONS(1281), + [sym_word] = ACTIONS(1272), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1274), + [anon_sym_EQ] = ACTIONS(1272), + [anon_sym_PLUS_PLUS] = ACTIONS(1272), + [anon_sym_DASH_DASH] = ACTIONS(1272), + [anon_sym_PLUS_EQ] = ACTIONS(1272), + [anon_sym_DASH_EQ] = ACTIONS(1272), + [anon_sym_STAR_EQ] = ACTIONS(1272), + [anon_sym_SLASH_EQ] = ACTIONS(1272), + [anon_sym_PERCENT_EQ] = ACTIONS(1272), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1272), + [anon_sym_LT_LT_EQ] = ACTIONS(1274), + [anon_sym_GT_GT_EQ] = ACTIONS(1274), + [anon_sym_AMP_EQ] = ACTIONS(1274), + [anon_sym_CARET_EQ] = ACTIONS(1272), + [anon_sym_PIPE_EQ] = ACTIONS(1274), + [anon_sym_PIPE_PIPE] = ACTIONS(1274), + [anon_sym_AMP_AMP] = ACTIONS(1274), + [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_CARET] = ACTIONS(1272), + [anon_sym_AMP] = ACTIONS(1272), + [anon_sym_EQ_EQ] = ACTIONS(1272), + [anon_sym_BANG_EQ] = ACTIONS(1272), + [anon_sym_LT] = ACTIONS(1272), + [anon_sym_GT] = ACTIONS(1272), + [anon_sym_LT_EQ] = ACTIONS(1274), + [anon_sym_GT_EQ] = ACTIONS(1274), + [anon_sym_LT_LT] = ACTIONS(1272), + [anon_sym_GT_GT] = ACTIONS(1272), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_STAR] = ACTIONS(1272), + [anon_sym_SLASH] = ACTIONS(1272), + [anon_sym_PERCENT] = ACTIONS(1272), + [anon_sym_STAR_STAR] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(1272), + [anon_sym_PIPE_AMP] = ACTIONS(1274), + [anon_sym_RBRACK] = ACTIONS(1274), + [anon_sym_EQ_TILDE] = ACTIONS(1272), + [anon_sym_AMP_GT] = ACTIONS(1272), + [anon_sym_AMP_GT_GT] = ACTIONS(1274), + [anon_sym_LT_AMP] = ACTIONS(1272), + [anon_sym_GT_AMP] = ACTIONS(1272), + [anon_sym_GT_PIPE] = ACTIONS(1274), + [anon_sym_LT_AMP_DASH] = ACTIONS(1274), + [anon_sym_GT_AMP_DASH] = ACTIONS(1274), + [anon_sym_LT_LT_DASH] = ACTIONS(1274), + [anon_sym_LT_LT_LT] = ACTIONS(1274), + [anon_sym_QMARK] = ACTIONS(1272), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1274), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1274), + [anon_sym_DOLLAR] = ACTIONS(1272), + [sym__special_character] = ACTIONS(1272), + [anon_sym_DQUOTE] = ACTIONS(1274), + [sym_raw_string] = ACTIONS(1274), + [sym_ansi_c_string] = ACTIONS(1274), + [aux_sym_number_token1] = ACTIONS(1272), + [aux_sym_number_token2] = ACTIONS(1272), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1274), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1272), + [anon_sym_BQUOTE] = ACTIONS(1274), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1274), + [anon_sym_LT_LPAREN] = ACTIONS(1274), + [anon_sym_GT_LPAREN] = ACTIONS(1274), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1281), - [sym_test_operator] = ACTIONS(1283), - [sym__bare_dollar] = ACTIONS(1281), - [sym__brace_start] = ACTIONS(1281), + [sym_file_descriptor] = ACTIONS(1274), + [sym_test_operator] = ACTIONS(1274), + [sym__bare_dollar] = ACTIONS(1274), + [sym__brace_start] = ACTIONS(1274), }, [525] = { - [sym_word] = ACTIONS(1261), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1263), - [anon_sym_EQ] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1261), - [anon_sym_DASH_DASH] = ACTIONS(1261), - [anon_sym_PLUS_EQ] = ACTIONS(1261), - [anon_sym_DASH_EQ] = ACTIONS(1261), - [anon_sym_STAR_EQ] = ACTIONS(1261), - [anon_sym_SLASH_EQ] = ACTIONS(1261), - [anon_sym_PERCENT_EQ] = ACTIONS(1261), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1261), - [anon_sym_LT_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_GT_EQ] = ACTIONS(1263), - [anon_sym_AMP_EQ] = ACTIONS(1263), - [anon_sym_CARET_EQ] = ACTIONS(1261), - [anon_sym_PIPE_EQ] = ACTIONS(1263), - [anon_sym_PIPE_PIPE] = ACTIONS(1263), - [anon_sym_AMP_AMP] = ACTIONS(1263), - [anon_sym_PIPE] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym_EQ_EQ] = ACTIONS(1261), - [anon_sym_BANG_EQ] = ACTIONS(1261), - [anon_sym_LT] = ACTIONS(1261), - [anon_sym_GT] = ACTIONS(1261), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_LT_LT] = ACTIONS(1261), - [anon_sym_GT_GT] = ACTIONS(1261), - [anon_sym_PLUS] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1261), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_SLASH] = ACTIONS(1261), - [anon_sym_PERCENT] = ACTIONS(1261), - [anon_sym_STAR_STAR] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(1261), - [anon_sym_PIPE_AMP] = ACTIONS(1263), - [anon_sym_RBRACK] = ACTIONS(1263), - [anon_sym_EQ_TILDE] = ACTIONS(1261), - [anon_sym_AMP_GT] = ACTIONS(1261), - [anon_sym_AMP_GT_GT] = ACTIONS(1263), - [anon_sym_LT_AMP] = ACTIONS(1261), - [anon_sym_GT_AMP] = ACTIONS(1261), - [anon_sym_GT_PIPE] = ACTIONS(1263), - [anon_sym_LT_AMP_DASH] = ACTIONS(1263), - [anon_sym_GT_AMP_DASH] = ACTIONS(1263), - [anon_sym_LT_LT_DASH] = ACTIONS(1263), - [anon_sym_LT_LT_LT] = ACTIONS(1263), - [anon_sym_QMARK] = ACTIONS(1261), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1263), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1261), - [sym__special_character] = ACTIONS(1261), - [anon_sym_DQUOTE] = ACTIONS(1263), - [sym_raw_string] = ACTIONS(1263), - [sym_ansi_c_string] = ACTIONS(1263), - [aux_sym_number_token1] = ACTIONS(1261), - [aux_sym_number_token2] = ACTIONS(1261), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1263), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1261), - [anon_sym_BQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1263), - [anon_sym_LT_LPAREN] = ACTIONS(1263), - [anon_sym_GT_LPAREN] = ACTIONS(1263), + [sym_word] = ACTIONS(1251), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1258), + [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [anon_sym_PLUS_EQ] = ACTIONS(1253), + [anon_sym_DASH_EQ] = ACTIONS(1253), + [anon_sym_STAR_EQ] = ACTIONS(1253), + [anon_sym_SLASH_EQ] = ACTIONS(1253), + [anon_sym_PERCENT_EQ] = ACTIONS(1253), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1253), + [anon_sym_LT_LT_EQ] = ACTIONS(1376), + [anon_sym_GT_GT_EQ] = ACTIONS(1376), + [anon_sym_AMP_EQ] = ACTIONS(1376), + [anon_sym_CARET_EQ] = ACTIONS(1253), + [anon_sym_PIPE_EQ] = ACTIONS(1376), + [anon_sym_PIPE_PIPE] = ACTIONS(1260), + [anon_sym_AMP_AMP] = ACTIONS(1260), + [anon_sym_PIPE] = ACTIONS(1255), + [anon_sym_CARET] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1253), + [anon_sym_LT] = ACTIONS(1255), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1376), + [anon_sym_GT_EQ] = ACTIONS(1376), + [anon_sym_LT_LT] = ACTIONS(1255), + [anon_sym_GT_GT] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1253), + [anon_sym_PERCENT] = ACTIONS(1253), + [anon_sym_STAR_STAR] = ACTIONS(1253), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_PIPE_AMP] = ACTIONS(1258), + [anon_sym_RBRACK] = ACTIONS(1376), + [anon_sym_EQ_TILDE] = ACTIONS(1255), + [anon_sym_AMP_GT] = ACTIONS(1251), + [anon_sym_AMP_GT_GT] = ACTIONS(1258), + [anon_sym_LT_AMP] = ACTIONS(1251), + [anon_sym_GT_AMP] = ACTIONS(1251), + [anon_sym_GT_PIPE] = ACTIONS(1258), + [anon_sym_LT_AMP_DASH] = ACTIONS(1258), + [anon_sym_GT_AMP_DASH] = ACTIONS(1258), + [anon_sym_LT_LT_DASH] = ACTIONS(1258), + [anon_sym_LT_LT_LT] = ACTIONS(1258), + [anon_sym_QMARK] = ACTIONS(1253), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1258), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1258), + [anon_sym_DOLLAR] = ACTIONS(1251), + [sym__special_character] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1258), + [sym_raw_string] = ACTIONS(1258), + [sym_ansi_c_string] = ACTIONS(1258), + [aux_sym_number_token1] = ACTIONS(1251), + [aux_sym_number_token2] = ACTIONS(1251), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1258), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1251), + [anon_sym_BQUOTE] = ACTIONS(1258), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1258), + [anon_sym_LT_LPAREN] = ACTIONS(1258), + [anon_sym_GT_LPAREN] = ACTIONS(1258), [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1263), - [sym_test_operator] = ACTIONS(1263), - [sym__bare_dollar] = ACTIONS(1263), - [sym__brace_start] = ACTIONS(1263), + [sym_file_descriptor] = ACTIONS(1258), + [sym_test_operator] = ACTIONS(1260), + [sym__bare_dollar] = ACTIONS(1258), + [sym__brace_start] = ACTIONS(1258), }, [526] = { - [sym_subshell] = STATE(5014), - [sym_test_command] = STATE(5014), - [sym_command] = STATE(5026), - [sym_command_name] = STATE(533), - [sym_variable_assignment] = STATE(1974), - [sym_subscript] = STATE(6754), - [sym_file_redirect] = STATE(3581), - [sym_herestring_redirect] = STATE(3581), - [sym__expression] = STATE(3100), - [sym_binary_expression] = STATE(3053), - [sym_ternary_expression] = STATE(3053), - [sym_unary_expression] = STATE(3053), - [sym_postfix_expression] = STATE(3053), - [sym_parenthesized_expression] = STATE(3053), - [sym_arithmetic_expansion] = STATE(472), - [sym_brace_expression] = STATE(472), - [sym_concatenation] = STATE(502), - [sym_string] = STATE(472), - [sym_translated_string] = STATE(472), - [sym_number] = STATE(472), - [sym_simple_expansion] = STATE(472), - [sym_expansion] = STATE(472), - [sym_command_substitution] = STATE(472), - [sym_process_substitution] = STATE(472), - [aux_sym_command_repeat1] = STATE(951), - [aux_sym__literal_repeat1] = STATE(493), + [sym_subshell] = STATE(5682), + [sym_test_command] = STATE(5682), + [sym_command] = STATE(5685), + [sym_command_name] = STATE(634), + [sym_variable_assignment] = STATE(2929), + [sym_subscript] = STATE(6766), + [sym_file_redirect] = STATE(3591), + [sym_herestring_redirect] = STATE(3591), + [sym__expression] = STATE(3112), + [sym_binary_expression] = STATE(2952), + [sym_ternary_expression] = STATE(2952), + [sym_unary_expression] = STATE(2952), + [sym_postfix_expression] = STATE(2952), + [sym_parenthesized_expression] = STATE(2952), + [sym_arithmetic_expansion] = STATE(501), + [sym_brace_expression] = STATE(501), + [sym_concatenation] = STATE(525), + [sym_string] = STATE(501), + [sym_translated_string] = STATE(501), + [sym_number] = STATE(501), + [sym_simple_expansion] = STATE(501), + [sym_expansion] = STATE(501), + [sym_command_substitution] = STATE(501), + [sym_process_substitution] = STATE(501), + [aux_sym_command_repeat1] = STATE(950), + [aux_sym__literal_repeat1] = STATE(523), [sym_word] = ACTIONS(1386), + [anon_sym_LPAREN_LPAREN] = ACTIONS(149), + [anon_sym_LT] = ACTIONS(1388), + [anon_sym_GT] = ACTIONS(1388), + [anon_sym_GT_GT] = ACTIONS(1390), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_BANG] = ACTIONS(297), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_LBRACK_LBRACK] = ACTIONS(173), + [anon_sym_AMP_GT] = ACTIONS(1388), + [anon_sym_AMP_GT_GT] = ACTIONS(1390), + [anon_sym_LT_AMP] = ACTIONS(1388), + [anon_sym_GT_AMP] = ACTIONS(1388), + [anon_sym_GT_PIPE] = ACTIONS(1390), + [anon_sym_LT_AMP_DASH] = ACTIONS(1392), + [anon_sym_GT_AMP_DASH] = ACTIONS(1392), + [anon_sym_LT_LT_LT] = ACTIONS(1394), + [anon_sym_PLUS_PLUS2] = ACTIONS(183), + [anon_sym_DASH_DASH2] = ACTIONS(183), + [anon_sym_DASH2] = ACTIONS(185), + [anon_sym_PLUS2] = ACTIONS(185), + [anon_sym_TILDE] = ACTIONS(187), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(189), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(191), + [anon_sym_DOLLAR] = ACTIONS(193), + [sym__special_character] = ACTIONS(195), + [anon_sym_DQUOTE] = ACTIONS(197), + [sym_raw_string] = ACTIONS(199), + [sym_ansi_c_string] = ACTIONS(199), + [aux_sym_number_token1] = ACTIONS(201), + [aux_sym_number_token2] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(207), + [anon_sym_BQUOTE] = ACTIONS(209), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(211), + [anon_sym_LT_LPAREN] = ACTIONS(213), + [anon_sym_GT_LPAREN] = ACTIONS(213), + [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1396), + [sym_variable_name] = ACTIONS(217), + [sym_test_operator] = ACTIONS(219), + [sym__brace_start] = ACTIONS(221), + }, + [527] = { + [sym_subshell] = STATE(5028), + [sym_test_command] = STATE(5028), + [sym_command] = STATE(5029), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(2207), + [sym_subscript] = STATE(6758), + [sym_file_redirect] = STATE(3591), + [sym_herestring_redirect] = STATE(3591), + [sym__expression] = STATE(3059), + [sym_binary_expression] = STATE(2976), + [sym_ternary_expression] = STATE(2976), + [sym_unary_expression] = STATE(2976), + [sym_postfix_expression] = STATE(2976), + [sym_parenthesized_expression] = STATE(2976), + [sym_arithmetic_expansion] = STATE(468), + [sym_brace_expression] = STATE(468), + [sym_concatenation] = STATE(495), + [sym_string] = STATE(468), + [sym_translated_string] = STATE(468), + [sym_number] = STATE(468), + [sym_simple_expansion] = STATE(468), + [sym_expansion] = STATE(468), + [sym_command_substitution] = STATE(468), + [sym_process_substitution] = STATE(468), + [aux_sym_command_repeat1] = STATE(984), + [aux_sym__literal_repeat1] = STATE(494), + [sym_word] = ACTIONS(1398), [anon_sym_LPAREN_LPAREN] = ACTIONS(83), [anon_sym_LT] = ACTIONS(1388), [anon_sym_GT] = ACTIONS(1388), @@ -76458,76 +76829,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(139), [sym__brace_start] = ACTIONS(141), }, - [527] = { - [sym_subshell] = STATE(5623), - [sym_test_command] = STATE(5623), - [sym_command] = STATE(5624), - [sym_command_name] = STATE(620), - [sym_variable_assignment] = STATE(2941), - [sym_subscript] = STATE(6756), - [sym_file_redirect] = STATE(3581), - [sym_herestring_redirect] = STATE(3581), - [sym__expression] = STATE(3011), - [sym_binary_expression] = STATE(3071), - [sym_ternary_expression] = STATE(3071), - [sym_unary_expression] = STATE(3071), - [sym_postfix_expression] = STATE(3071), - [sym_parenthesized_expression] = STATE(3071), - [sym_arithmetic_expansion] = STATE(496), - [sym_brace_expression] = STATE(496), - [sym_concatenation] = STATE(524), - [sym_string] = STATE(496), - [sym_translated_string] = STATE(496), - [sym_number] = STATE(496), - [sym_simple_expansion] = STATE(496), - [sym_expansion] = STATE(496), - [sym_command_substitution] = STATE(496), - [sym_process_substitution] = STATE(496), - [aux_sym_command_repeat1] = STATE(955), - [aux_sym__literal_repeat1] = STATE(522), - [sym_word] = ACTIONS(1398), - [anon_sym_LPAREN_LPAREN] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(1388), - [anon_sym_GT] = ACTIONS(1388), - [anon_sym_GT_GT] = ACTIONS(1390), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_LBRACK_LBRACK] = ACTIONS(173), - [anon_sym_AMP_GT] = ACTIONS(1388), - [anon_sym_AMP_GT_GT] = ACTIONS(1390), - [anon_sym_LT_AMP] = ACTIONS(1388), - [anon_sym_GT_AMP] = ACTIONS(1388), - [anon_sym_GT_PIPE] = ACTIONS(1390), - [anon_sym_LT_AMP_DASH] = ACTIONS(1392), - [anon_sym_GT_AMP_DASH] = ACTIONS(1392), - [anon_sym_LT_LT_LT] = ACTIONS(1394), - [anon_sym_PLUS_PLUS2] = ACTIONS(183), - [anon_sym_DASH_DASH2] = ACTIONS(183), - [anon_sym_DASH2] = ACTIONS(185), - [anon_sym_PLUS2] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(191), - [anon_sym_DOLLAR] = ACTIONS(193), - [sym__special_character] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [sym_raw_string] = ACTIONS(199), - [sym_ansi_c_string] = ACTIONS(199), - [aux_sym_number_token1] = ACTIONS(201), - [aux_sym_number_token2] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(207), - [anon_sym_BQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(211), - [anon_sym_LT_LPAREN] = ACTIONS(213), - [anon_sym_GT_LPAREN] = ACTIONS(213), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1396), - [sym_variable_name] = ACTIONS(217), - [sym_test_operator] = ACTIONS(219), - [sym__brace_start] = ACTIONS(221), - }, }; static const uint16_t ts_small_parse_table[] = { @@ -76564,15 +76865,15 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_dollar, ACTIONS(1438), 1, sym__brace_start, - STATE(540), 1, + STATE(536), 1, aux_sym_command_repeat2, - STATE(1045), 1, + STATE(1097), 1, aux_sym__literal_repeat1, - STATE(1181), 1, - sym_herestring_redirect, - STATE(1182), 1, + STATE(1171), 1, sym_concatenation, - STATE(4991), 1, + STATE(1174), 1, + sym_herestring_redirect, + STATE(4975), 1, sym_subshell, ACTIONS(1402), 2, anon_sym_LPAREN_LPAREN, @@ -76590,7 +76891,7 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, sym_word, - STATE(874), 9, + STATE(879), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -76656,15 +76957,15 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_dollar, ACTIONS(1438), 1, sym__brace_start, - STATE(535), 1, + STATE(532), 1, aux_sym_command_repeat2, - STATE(1045), 1, + STATE(1097), 1, aux_sym__literal_repeat1, - STATE(1181), 1, - sym_herestring_redirect, - STATE(1182), 1, + STATE(1171), 1, sym_concatenation, - STATE(4977), 1, + STATE(1174), 1, + sym_herestring_redirect, + STATE(4985), 1, sym_subshell, ACTIONS(1402), 2, anon_sym_LPAREN_LPAREN, @@ -76682,7 +76983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, sym_word, - STATE(874), 9, + STATE(879), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -76748,17 +77049,17 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_dollar, ACTIONS(1478), 1, sym__brace_start, - STATE(542), 1, + STATE(543), 1, aux_sym_command_repeat2, - STATE(1175), 1, + STATE(1261), 1, aux_sym__literal_repeat1, - STATE(1328), 1, + STATE(1444), 1, sym_concatenation, - STATE(1329), 1, + STATE(1446), 1, sym_herestring_redirect, - STATE(5116), 1, + STATE(5118), 1, sym_subshell, - ACTIONS(1408), 2, + ACTIONS(1442), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, ACTIONS(1446), 2, @@ -76774,7 +77075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, sym_word, - STATE(985), 9, + STATE(994), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -76784,7 +77085,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1404), 21, + ACTIONS(1440), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -76841,15 +77142,15 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, STATE(547), 1, aux_sym_command_repeat2, - STATE(1175), 1, + STATE(1261), 1, aux_sym__literal_repeat1, - STATE(1328), 1, + STATE(1444), 1, sym_concatenation, - STATE(1329), 1, + STATE(1446), 1, sym_herestring_redirect, - STATE(5111), 1, + STATE(5081), 1, sym_subshell, - ACTIONS(1442), 2, + ACTIONS(1408), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, ACTIONS(1446), 2, @@ -76865,7 +77166,7 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, sym_word, - STATE(985), 9, + STATE(994), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -76875,7 +77176,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1440), 21, + ACTIONS(1404), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -76897,63 +77198,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [478] = 27, + [478] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1491), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1493), 1, + ACTIONS(1410), 1, anon_sym_LT_LT_LT, - ACTIONS(1496), 1, + ACTIONS(1412), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1499), 1, + ACTIONS(1414), 1, anon_sym_DOLLAR, - ACTIONS(1502), 1, + ACTIONS(1416), 1, sym__special_character, - ACTIONS(1505), 1, + ACTIONS(1418), 1, anon_sym_DQUOTE, - ACTIONS(1508), 1, + ACTIONS(1420), 1, aux_sym_number_token1, - ACTIONS(1511), 1, + ACTIONS(1422), 1, aux_sym_number_token2, - ACTIONS(1514), 1, + ACTIONS(1424), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1517), 1, + ACTIONS(1426), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1520), 1, + ACTIONS(1428), 1, anon_sym_BQUOTE, - ACTIONS(1523), 1, + ACTIONS(1430), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1529), 1, - sym_file_descriptor, - ACTIONS(1532), 1, + ACTIONS(1434), 1, sym_test_operator, - ACTIONS(1535), 1, + ACTIONS(1436), 1, sym__bare_dollar, - ACTIONS(1538), 1, + ACTIONS(1438), 1, sym__brace_start, - STATE(532), 1, + STATE(535), 1, aux_sym_command_repeat2, - STATE(1045), 1, + STATE(1097), 1, aux_sym__literal_repeat1, - STATE(1181), 1, - sym_herestring_redirect, - STATE(1182), 1, + STATE(1171), 1, sym_concatenation, - ACTIONS(1483), 2, + STATE(1174), 1, + sym_herestring_redirect, + ACTIONS(1402), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1488), 2, + ACTIONS(1406), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1526), 2, + ACTIONS(1432), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1480), 3, + ACTIONS(1482), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1400), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(874), 9, + STATE(879), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -76963,7 +77263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1486), 22, + ACTIONS(1480), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -76986,66 +77286,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [594] = 28, + [592] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1547), 1, + ACTIONS(1490), 1, anon_sym_LT_LT_LT, - ACTIONS(1549), 1, + ACTIONS(1492), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, + ACTIONS(1494), 1, anon_sym_DOLLAR, - ACTIONS(1553), 1, + ACTIONS(1496), 1, sym__special_character, - ACTIONS(1555), 1, + ACTIONS(1498), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, + ACTIONS(1500), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(1502), 1, aux_sym_number_token2, - ACTIONS(1561), 1, + ACTIONS(1504), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, + ACTIONS(1506), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1565), 1, + ACTIONS(1508), 1, anon_sym_BQUOTE, - ACTIONS(1567), 1, + ACTIONS(1510), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1571), 1, + ACTIONS(1514), 1, sym_test_operator, - ACTIONS(1573), 1, + ACTIONS(1516), 1, sym__bare_dollar, - ACTIONS(1575), 1, + ACTIONS(1518), 1, sym__brace_start, - STATE(566), 1, + STATE(563), 1, aux_sym_command_repeat2, - STATE(1321), 1, + STATE(1457), 1, aux_sym__literal_repeat1, - STATE(1712), 1, - sym_herestring_redirect, - STATE(1716), 1, + STATE(1626), 1, sym_concatenation, - STATE(4911), 1, + STATE(1633), 1, + sym_herestring_redirect, + STATE(4930), 1, sym_subshell, - ACTIONS(1408), 2, + ACTIONS(1442), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1543), 2, + ACTIONS(1486), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1545), 2, + ACTIONS(1488), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1569), 2, + ACTIONS(1512), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1541), 3, + ACTIONS(1484), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1023), 9, + STATE(1135), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -77055,7 +77355,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1404), 20, + ACTIONS(1440), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77076,67 +77376,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [712] = 28, + [710] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1583), 1, + ACTIONS(1526), 1, anon_sym_LT_LT_LT, - ACTIONS(1585), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1587), 1, + ACTIONS(1530), 1, anon_sym_DOLLAR, - ACTIONS(1589), 1, + ACTIONS(1532), 1, sym__special_character, - ACTIONS(1591), 1, + ACTIONS(1534), 1, anon_sym_DQUOTE, - ACTIONS(1593), 1, + ACTIONS(1536), 1, aux_sym_number_token1, - ACTIONS(1595), 1, + ACTIONS(1538), 1, aux_sym_number_token2, - ACTIONS(1597), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1599), 1, + ACTIONS(1542), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1601), 1, + ACTIONS(1544), 1, anon_sym_BQUOTE, - ACTIONS(1603), 1, + ACTIONS(1546), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1607), 1, + ACTIONS(1550), 1, sym_test_operator, - ACTIONS(1609), 1, + ACTIONS(1552), 1, sym__bare_dollar, - ACTIONS(1611), 1, + ACTIONS(1554), 1, sym__brace_start, - STATE(557), 1, + STATE(564), 1, aux_sym_command_repeat2, - STATE(1431), 1, + STATE(1410), 1, aux_sym__literal_repeat1, - STATE(1521), 1, - sym_concatenation, - STATE(1552), 1, + STATE(1534), 1, sym_herestring_redirect, - STATE(4911), 1, + STATE(1682), 1, + sym_concatenation, + STATE(4893), 1, sym_subshell, - ACTIONS(1579), 2, + ACTIONS(1522), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1581), 2, + ACTIONS(1524), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1605), 2, + ACTIONS(1548), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1408), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1577), 3, + ACTIONS(1520), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1093), 9, + STATE(1157), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -77166,62 +77466,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [830] = 26, + [828] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1410), 1, + ACTIONS(1567), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1569), 1, anon_sym_LT_LT_LT, - ACTIONS(1412), 1, + ACTIONS(1572), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1414), 1, + ACTIONS(1575), 1, anon_sym_DOLLAR, - ACTIONS(1416), 1, + ACTIONS(1578), 1, sym__special_character, - ACTIONS(1418), 1, + ACTIONS(1581), 1, anon_sym_DQUOTE, - ACTIONS(1420), 1, + ACTIONS(1584), 1, aux_sym_number_token1, - ACTIONS(1422), 1, + ACTIONS(1587), 1, aux_sym_number_token2, - ACTIONS(1424), 1, + ACTIONS(1590), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, + ACTIONS(1593), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, + ACTIONS(1596), 1, anon_sym_BQUOTE, - ACTIONS(1430), 1, + ACTIONS(1599), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1434), 1, + ACTIONS(1605), 1, + sym_file_descriptor, + ACTIONS(1608), 1, sym_test_operator, - ACTIONS(1436), 1, + ACTIONS(1611), 1, sym__bare_dollar, - ACTIONS(1438), 1, + ACTIONS(1614), 1, sym__brace_start, - STATE(532), 1, + STATE(535), 1, aux_sym_command_repeat2, - STATE(1045), 1, + STATE(1097), 1, aux_sym__literal_repeat1, - STATE(1181), 1, - sym_herestring_redirect, - STATE(1182), 1, + STATE(1171), 1, sym_concatenation, - ACTIONS(1402), 2, + STATE(1174), 1, + sym_herestring_redirect, + ACTIONS(1559), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1406), 2, + ACTIONS(1564), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1432), 2, + ACTIONS(1602), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1615), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1400), 3, + ACTIONS(1556), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(874), 9, + STATE(879), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -77231,7 +77532,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1613), 22, + ACTIONS(1562), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77254,157 +77555,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [944] = 28, + [944] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(1547), 1, - anon_sym_LT_LT_LT, - ACTIONS(1549), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, - anon_sym_DOLLAR, - ACTIONS(1553), 1, - sym__special_character, - ACTIONS(1555), 1, - anon_sym_DQUOTE, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1565), 1, - anon_sym_BQUOTE, - ACTIONS(1567), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1571), 1, - sym_test_operator, - ACTIONS(1573), 1, - sym__bare_dollar, - ACTIONS(1575), 1, - sym__brace_start, - STATE(561), 1, - aux_sym_command_repeat2, - STATE(1321), 1, - aux_sym__literal_repeat1, - STATE(1712), 1, - sym_herestring_redirect, - STATE(1716), 1, - sym_concatenation, - STATE(4952), 1, - sym_subshell, - ACTIONS(1442), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1543), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1545), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1569), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1541), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1023), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1440), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [1062] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(1583), 1, + ACTIONS(1410), 1, anon_sym_LT_LT_LT, - ACTIONS(1585), 1, + ACTIONS(1412), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1587), 1, + ACTIONS(1414), 1, anon_sym_DOLLAR, - ACTIONS(1589), 1, + ACTIONS(1416), 1, sym__special_character, - ACTIONS(1591), 1, + ACTIONS(1418), 1, anon_sym_DQUOTE, - ACTIONS(1593), 1, + ACTIONS(1420), 1, aux_sym_number_token1, - ACTIONS(1595), 1, + ACTIONS(1422), 1, aux_sym_number_token2, - ACTIONS(1597), 1, + ACTIONS(1424), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1599), 1, + ACTIONS(1426), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1601), 1, + ACTIONS(1428), 1, anon_sym_BQUOTE, - ACTIONS(1603), 1, + ACTIONS(1430), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1607), 1, + ACTIONS(1434), 1, sym_test_operator, - ACTIONS(1609), 1, + ACTIONS(1436), 1, sym__bare_dollar, - ACTIONS(1611), 1, + ACTIONS(1438), 1, sym__brace_start, - STATE(560), 1, + STATE(535), 1, aux_sym_command_repeat2, - STATE(1431), 1, + STATE(1097), 1, aux_sym__literal_repeat1, - STATE(1521), 1, + STATE(1171), 1, sym_concatenation, - STATE(1552), 1, + STATE(1174), 1, sym_herestring_redirect, - STATE(4952), 1, - sym_subshell, - ACTIONS(1579), 2, + ACTIONS(1402), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1581), 2, + ACTIONS(1406), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1605), 2, + ACTIONS(1432), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1442), 3, + ACTIONS(1619), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1577), 3, + ACTIONS(1400), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1093), 9, + STATE(879), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -77414,7 +77620,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1440), 19, + ACTIONS(1617), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77424,7 +77630,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -77434,24 +77643,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [1180] = 8, + [1058] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1619), 1, - anon_sym_DQUOTE, ACTIONS(1623), 1, + anon_sym_DQUOTE, + ACTIONS(1627), 1, sym_variable_name, - STATE(868), 1, + STATE(838), 1, sym_string, - ACTIONS(1621), 2, + ACTIONS(1625), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 4, + ACTIONS(1235), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1617), 9, + ACTIONS(1621), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -77461,7 +77670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 42, + ACTIONS(1227), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -77504,24 +77713,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [1258] = 8, + [1136] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1619), 1, - anon_sym_DQUOTE, ACTIONS(1623), 1, + anon_sym_DQUOTE, + ACTIONS(1627), 1, sym_variable_name, - STATE(868), 1, + STATE(838), 1, sym_string, - ACTIONS(1621), 2, + ACTIONS(1625), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 4, + ACTIONS(1241), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1617), 9, + ACTIONS(1621), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -77531,7 +77740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 42, + ACTIONS(1239), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -77574,62 +77783,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [1336] = 26, + [1214] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1410), 1, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1490), 1, anon_sym_LT_LT_LT, - ACTIONS(1412), 1, + ACTIONS(1492), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1414), 1, + ACTIONS(1494), 1, anon_sym_DOLLAR, - ACTIONS(1416), 1, + ACTIONS(1496), 1, sym__special_character, - ACTIONS(1418), 1, + ACTIONS(1498), 1, anon_sym_DQUOTE, - ACTIONS(1420), 1, + ACTIONS(1500), 1, aux_sym_number_token1, - ACTIONS(1422), 1, + ACTIONS(1502), 1, aux_sym_number_token2, - ACTIONS(1424), 1, + ACTIONS(1504), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, + ACTIONS(1506), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, + ACTIONS(1508), 1, anon_sym_BQUOTE, - ACTIONS(1430), 1, + ACTIONS(1510), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1434), 1, + ACTIONS(1514), 1, sym_test_operator, - ACTIONS(1436), 1, + ACTIONS(1516), 1, sym__bare_dollar, - ACTIONS(1438), 1, + ACTIONS(1518), 1, sym__brace_start, - STATE(532), 1, + STATE(569), 1, aux_sym_command_repeat2, - STATE(1045), 1, + STATE(1457), 1, aux_sym__literal_repeat1, - STATE(1181), 1, - sym_herestring_redirect, - STATE(1182), 1, + STATE(1626), 1, sym_concatenation, - ACTIONS(1402), 2, + STATE(1633), 1, + sym_herestring_redirect, + STATE(4893), 1, + sym_subshell, + ACTIONS(1408), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1486), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1406), 2, + ACTIONS(1488), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1432), 2, + ACTIONS(1512), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1627), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1400), 3, + ACTIONS(1484), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(874), 9, + STATE(1135), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -77639,7 +77852,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1625), 22, + ACTIONS(1404), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77649,10 +77862,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -77662,63 +77873,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [1450] = 27, + [1332] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1491), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1638), 1, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1526), 1, anon_sym_LT_LT_LT, - ACTIONS(1641), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1644), 1, + ACTIONS(1530), 1, anon_sym_DOLLAR, - ACTIONS(1647), 1, + ACTIONS(1532), 1, sym__special_character, - ACTIONS(1650), 1, + ACTIONS(1534), 1, anon_sym_DQUOTE, - ACTIONS(1653), 1, + ACTIONS(1536), 1, aux_sym_number_token1, - ACTIONS(1656), 1, + ACTIONS(1538), 1, aux_sym_number_token2, - ACTIONS(1659), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1662), 1, + ACTIONS(1542), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1665), 1, + ACTIONS(1544), 1, anon_sym_BQUOTE, - ACTIONS(1668), 1, + ACTIONS(1546), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1674), 1, - sym_file_descriptor, - ACTIONS(1677), 1, + ACTIONS(1550), 1, sym_test_operator, - ACTIONS(1680), 1, + ACTIONS(1552), 1, sym__bare_dollar, - ACTIONS(1683), 1, + ACTIONS(1554), 1, sym__brace_start, - STATE(541), 1, + STATE(561), 1, aux_sym_command_repeat2, - STATE(1175), 1, + STATE(1410), 1, aux_sym__literal_repeat1, - STATE(1328), 1, - sym_concatenation, - STATE(1329), 1, + STATE(1534), 1, sym_herestring_redirect, - ACTIONS(1632), 2, + STATE(1682), 1, + sym_concatenation, + STATE(4930), 1, + sym_subshell, + ACTIONS(1522), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1635), 2, + ACTIONS(1524), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1671), 2, + ACTIONS(1548), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1629), 3, + ACTIONS(1442), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1520), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(985), 9, + STATE(1157), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -77728,7 +77943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1486), 21, + ACTIONS(1440), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77739,8 +77954,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -77750,62 +77963,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [1565] = 26, + [1450] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1450), 1, - anon_sym_LT_LT_LT, - ACTIONS(1452), 1, + ACTIONS(1639), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1454), 1, + ACTIONS(1642), 1, anon_sym_DOLLAR, - ACTIONS(1456), 1, + ACTIONS(1645), 1, sym__special_character, - ACTIONS(1458), 1, + ACTIONS(1648), 1, anon_sym_DQUOTE, - ACTIONS(1460), 1, + ACTIONS(1651), 1, aux_sym_number_token1, - ACTIONS(1462), 1, + ACTIONS(1654), 1, aux_sym_number_token2, - ACTIONS(1464), 1, + ACTIONS(1657), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1466), 1, + ACTIONS(1660), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1468), 1, + ACTIONS(1663), 1, anon_sym_BQUOTE, - ACTIONS(1470), 1, + ACTIONS(1666), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1474), 1, + ACTIONS(1672), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1675), 1, + sym_variable_name, + ACTIONS(1678), 1, sym_test_operator, - ACTIONS(1476), 1, - sym__bare_dollar, - ACTIONS(1478), 1, + ACTIONS(1681), 1, sym__brace_start, - STATE(541), 1, - aux_sym_command_repeat2, - STATE(1175), 1, + STATE(1384), 1, aux_sym__literal_repeat1, - STATE(1328), 1, - sym_concatenation, - STATE(1329), 1, - sym_herestring_redirect, - ACTIONS(1446), 2, + STATE(6737), 1, + sym_subscript, + ACTIONS(1632), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1448), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1472), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1627), 2, + ACTIONS(1637), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1444), 3, + ACTIONS(1669), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1629), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(985), 9, + STATE(541), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1085), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -77815,7 +78025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1625), 21, + ACTIONS(1635), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77825,6 +78035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -77837,64 +78048,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [1678] = 27, + [1559] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1692), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, + ACTIONS(1694), 1, anon_sym_DOLLAR, - ACTIONS(1555), 1, + ACTIONS(1696), 1, + sym__special_character, + ACTIONS(1698), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, + ACTIONS(1700), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(1702), 1, aux_sym_number_token2, - ACTIONS(1561), 1, + ACTIONS(1704), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, + ACTIONS(1706), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1567), 1, + ACTIONS(1708), 1, + anon_sym_BQUOTE, + ACTIONS(1710), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1573), 1, - sym__bare_dollar, - ACTIONS(1575), 1, - sym__brace_start, - ACTIONS(1690), 1, - anon_sym_LT_LT_LT, - ACTIONS(1692), 1, - sym__special_character, - ACTIONS(1694), 1, + ACTIONS(1714), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1716), 1, + sym_variable_name, + ACTIONS(1718), 1, sym_test_operator, - STATE(587), 1, - aux_sym_command_repeat2, - STATE(1321), 1, + ACTIONS(1720), 1, + sym__brace_start, + STATE(1384), 1, aux_sym__literal_repeat1, - STATE(1712), 1, - sym_herestring_redirect, - STATE(1716), 1, - sym_concatenation, - STATE(4952), 1, - sym_subshell, - ACTIONS(1442), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1543), 2, + STATE(6737), 1, + sym_subscript, + ACTIONS(1686), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1569), 2, + ACTIONS(1690), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1712), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1688), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1686), 3, + ACTIONS(1684), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1219), 9, + STATE(544), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1085), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -77904,7 +78110,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1440), 20, + ACTIONS(1688), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77914,7 +78120,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -77924,67 +78133,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [1793] = 28, + [1668] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1450), 1, + anon_sym_LT_LT_LT, + ACTIONS(1452), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, + ACTIONS(1454), 1, anon_sym_DOLLAR, - ACTIONS(1555), 1, + ACTIONS(1456), 1, + sym__special_character, + ACTIONS(1458), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, + ACTIONS(1460), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(1462), 1, aux_sym_number_token2, - ACTIONS(1561), 1, + ACTIONS(1464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, + ACTIONS(1466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1565), 1, + ACTIONS(1468), 1, anon_sym_BQUOTE, - ACTIONS(1567), 1, + ACTIONS(1470), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1573), 1, + ACTIONS(1474), 1, + sym_test_operator, + ACTIONS(1476), 1, sym__bare_dollar, - ACTIONS(1575), 1, + ACTIONS(1478), 1, sym__brace_start, - ACTIONS(1690), 1, - anon_sym_LT_LT_LT, - ACTIONS(1692), 1, - sym__special_character, - ACTIONS(1694), 1, - sym_test_operator, - STATE(582), 1, + STATE(554), 1, aux_sym_command_repeat2, - STATE(1321), 1, + STATE(1261), 1, aux_sym__literal_repeat1, - STATE(1712), 1, - sym_herestring_redirect, - STATE(1716), 1, + STATE(1444), 1, sym_concatenation, - STATE(4911), 1, - sym_subshell, - ACTIONS(1408), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1543), 2, + STATE(1446), 1, + sym_herestring_redirect, + ACTIONS(1446), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1569), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1688), 2, + ACTIONS(1448), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1686), 3, + ACTIONS(1472), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1482), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1444), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1219), 9, + STATE(994), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -77994,7 +78198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1404), 19, + ACTIONS(1480), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -78005,6 +78209,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -78014,66 +78220,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [1910] = 28, + [1781] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1692), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, + ACTIONS(1694), 1, anon_sym_DOLLAR, - ACTIONS(1555), 1, + ACTIONS(1696), 1, + sym__special_character, + ACTIONS(1698), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, + ACTIONS(1700), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(1702), 1, aux_sym_number_token2, - ACTIONS(1561), 1, + ACTIONS(1704), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, + ACTIONS(1706), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1565), 1, + ACTIONS(1708), 1, anon_sym_BQUOTE, - ACTIONS(1567), 1, + ACTIONS(1710), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1573), 1, - sym__bare_dollar, - ACTIONS(1575), 1, - sym__brace_start, - ACTIONS(1690), 1, - anon_sym_LT_LT_LT, - ACTIONS(1692), 1, - sym__special_character, - ACTIONS(1694), 1, + ACTIONS(1716), 1, + sym_variable_name, + ACTIONS(1718), 1, sym_test_operator, - STATE(571), 1, - aux_sym_command_repeat2, - STATE(1321), 1, + ACTIONS(1720), 1, + sym__brace_start, + ACTIONS(1726), 1, + aux_sym__simple_variable_name_token1, + STATE(1384), 1, aux_sym__literal_repeat1, - STATE(1712), 1, - sym_herestring_redirect, - STATE(1716), 1, - sym_concatenation, - STATE(4952), 1, - sym_subshell, - ACTIONS(1442), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1543), 2, + STATE(6737), 1, + sym_subscript, + ACTIONS(1686), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1569), 2, + ACTIONS(1712), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1688), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1686), 3, + ACTIONS(1724), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1684), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1219), 9, + STATE(541), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1085), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -78083,7 +78282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1440), 19, + ACTIONS(1722), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -78093,7 +78292,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -78103,59 +78305,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [2027] = 24, + [1890] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1706), 1, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1492), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1709), 1, + ACTIONS(1494), 1, anon_sym_DOLLAR, - ACTIONS(1712), 1, - sym__special_character, - ACTIONS(1715), 1, + ACTIONS(1498), 1, anon_sym_DQUOTE, - ACTIONS(1718), 1, + ACTIONS(1500), 1, aux_sym_number_token1, - ACTIONS(1721), 1, + ACTIONS(1502), 1, aux_sym_number_token2, - ACTIONS(1724), 1, + ACTIONS(1504), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1727), 1, + ACTIONS(1506), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1730), 1, - anon_sym_BQUOTE, - ACTIONS(1733), 1, + ACTIONS(1510), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1739), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1742), 1, - sym_variable_name, - ACTIONS(1745), 1, - sym_test_operator, - ACTIONS(1748), 1, + ACTIONS(1516), 1, + sym__bare_dollar, + ACTIONS(1518), 1, sym__brace_start, - STATE(1368), 1, + ACTIONS(1732), 1, + anon_sym_LT_LT_LT, + ACTIONS(1734), 1, + sym__special_character, + ACTIONS(1736), 1, + sym_test_operator, + STATE(571), 1, + aux_sym_command_repeat2, + STATE(1457), 1, aux_sym__literal_repeat1, - STATE(6750), 1, - sym_subscript, - ACTIONS(1699), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1704), 2, + STATE(1626), 1, + sym_concatenation, + STATE(1633), 1, + sym_herestring_redirect, + STATE(4930), 1, + sym_subshell, + ACTIONS(1442), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1736), 2, + ACTIONS(1486), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1512), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1696), 3, + ACTIONS(1730), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1728), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(546), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1067), 9, + STATE(1263), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -78165,7 +78372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1702), 22, + ACTIONS(1440), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -78175,10 +78382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -78188,62 +78392,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [2136] = 26, + anon_sym_BQUOTE, + [2005] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1450), 1, - anon_sym_LT_LT_LT, - ACTIONS(1452), 1, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1492), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1454), 1, + ACTIONS(1494), 1, anon_sym_DOLLAR, - ACTIONS(1456), 1, - sym__special_character, - ACTIONS(1458), 1, + ACTIONS(1498), 1, anon_sym_DQUOTE, - ACTIONS(1460), 1, + ACTIONS(1500), 1, aux_sym_number_token1, - ACTIONS(1462), 1, + ACTIONS(1502), 1, aux_sym_number_token2, - ACTIONS(1464), 1, + ACTIONS(1504), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1466), 1, + ACTIONS(1506), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1468), 1, - anon_sym_BQUOTE, - ACTIONS(1470), 1, + ACTIONS(1510), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1474), 1, - sym_test_operator, - ACTIONS(1476), 1, + ACTIONS(1516), 1, sym__bare_dollar, - ACTIONS(1478), 1, + ACTIONS(1518), 1, sym__brace_start, - STATE(541), 1, + ACTIONS(1732), 1, + anon_sym_LT_LT_LT, + ACTIONS(1734), 1, + sym__special_character, + ACTIONS(1736), 1, + sym_test_operator, + STATE(572), 1, aux_sym_command_repeat2, - STATE(1175), 1, + STATE(1457), 1, aux_sym__literal_repeat1, - STATE(1328), 1, + STATE(1626), 1, sym_concatenation, - STATE(1329), 1, + STATE(1633), 1, sym_herestring_redirect, - ACTIONS(1446), 2, + STATE(4893), 1, + sym_subshell, + ACTIONS(1408), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1486), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1448), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1472), 2, + ACTIONS(1512), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1615), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1444), 3, + ACTIONS(1730), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1728), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(985), 9, + STATE(1263), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -78253,7 +78460,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1613), 21, + ACTIONS(1404), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -78264,8 +78471,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -78275,59 +78480,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [2249] = 24, + anon_sym_BQUOTE, + [2120] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 1, + ACTIONS(1450), 1, + anon_sym_LT_LT_LT, + ACTIONS(1452), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1761), 1, + ACTIONS(1454), 1, anon_sym_DOLLAR, - ACTIONS(1763), 1, + ACTIONS(1456), 1, sym__special_character, - ACTIONS(1765), 1, + ACTIONS(1458), 1, anon_sym_DQUOTE, - ACTIONS(1767), 1, + ACTIONS(1460), 1, aux_sym_number_token1, - ACTIONS(1769), 1, + ACTIONS(1462), 1, aux_sym_number_token2, - ACTIONS(1771), 1, + ACTIONS(1464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1773), 1, + ACTIONS(1466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1775), 1, + ACTIONS(1468), 1, anon_sym_BQUOTE, - ACTIONS(1777), 1, + ACTIONS(1470), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1781), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1783), 1, - sym_variable_name, - ACTIONS(1785), 1, + ACTIONS(1474), 1, sym_test_operator, - ACTIONS(1787), 1, + ACTIONS(1476), 1, + sym__bare_dollar, + ACTIONS(1478), 1, sym__brace_start, - STATE(1368), 1, + STATE(554), 1, + aux_sym_command_repeat2, + STATE(1261), 1, aux_sym__literal_repeat1, - STATE(6750), 1, - sym_subscript, - ACTIONS(1753), 2, + STATE(1444), 1, + sym_concatenation, + STATE(1446), 1, + sym_herestring_redirect, + ACTIONS(1446), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1757), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1779), 2, + ACTIONS(1448), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1472), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1751), 3, + ACTIONS(1619), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1444), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(551), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1067), 9, + STATE(994), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -78337,7 +78546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1755), 22, + ACTIONS(1617), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -78347,7 +78556,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -78360,16 +78568,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [2358] = 8, + [2233] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1791), 1, + ACTIONS(1418), 1, anon_sym_DQUOTE, - ACTIONS(1795), 1, + ACTIONS(1742), 1, sym_variable_name, - STATE(998), 1, + STATE(1000), 1, sym_string, - ACTIONS(1793), 2, + ACTIONS(1740), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1241), 4, @@ -78377,7 +78585,7 @@ static const uint16_t ts_small_parse_table[] = { sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1789), 9, + ACTIONS(1738), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -78399,7 +78607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -78429,16 +78637,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [2435] = 8, + [2310] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1791), 1, + ACTIONS(1418), 1, anon_sym_DQUOTE, - ACTIONS(1795), 1, + ACTIONS(1742), 1, sym_variable_name, - STATE(998), 1, + STATE(1000), 1, sym_string, - ACTIONS(1793), 2, + ACTIONS(1740), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1235), 4, @@ -78446,7 +78654,7 @@ static const uint16_t ts_small_parse_table[] = { sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1789), 9, + ACTIONS(1738), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -78468,7 +78676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -78498,109 +78706,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [2512] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1759), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1761), 1, - anon_sym_DOLLAR, - ACTIONS(1763), 1, - sym__special_character, - ACTIONS(1765), 1, - anon_sym_DQUOTE, - ACTIONS(1767), 1, - aux_sym_number_token1, - ACTIONS(1769), 1, - aux_sym_number_token2, - ACTIONS(1771), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1775), 1, - anon_sym_BQUOTE, - ACTIONS(1777), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1783), 1, - sym_variable_name, - ACTIONS(1785), 1, - sym_test_operator, - ACTIONS(1787), 1, - sym__brace_start, - ACTIONS(1801), 1, - aux_sym__simple_variable_name_token1, - STATE(1368), 1, - aux_sym__literal_repeat1, - STATE(6750), 1, - sym_subscript, - ACTIONS(1753), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1799), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1751), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(546), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1067), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1797), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [2621] = 8, + [2387] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1807), 1, + ACTIONS(1750), 1, sym_variable_name, - STATE(922), 1, + STATE(904), 1, sym_string, - ACTIONS(1805), 2, + ACTIONS(1748), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 4, + ACTIONS(1235), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1803), 9, + ACTIONS(1744), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -78610,7 +78733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 41, + ACTIONS(1227), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -78622,7 +78745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -78652,24 +78775,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [2698] = 8, + [2464] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1807), 1, + ACTIONS(1750), 1, sym_variable_name, - STATE(922), 1, + STATE(904), 1, sym_string, - ACTIONS(1805), 2, + ACTIONS(1748), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 4, + ACTIONS(1241), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1803), 9, + ACTIONS(1744), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -78679,7 +78802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 41, + ACTIONS(1239), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -78691,7 +78814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -78721,64 +78844,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [2775] = 27, + [2541] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(1492), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, + ACTIONS(1494), 1, anon_sym_DOLLAR, - ACTIONS(1555), 1, + ACTIONS(1498), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, + ACTIONS(1500), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(1502), 1, aux_sym_number_token2, - ACTIONS(1561), 1, + ACTIONS(1504), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, + ACTIONS(1506), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1567), 1, + ACTIONS(1508), 1, + anon_sym_BQUOTE, + ACTIONS(1510), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1573), 1, + ACTIONS(1516), 1, sym__bare_dollar, - ACTIONS(1575), 1, + ACTIONS(1518), 1, sym__brace_start, - ACTIONS(1690), 1, + ACTIONS(1732), 1, anon_sym_LT_LT_LT, - ACTIONS(1692), 1, + ACTIONS(1734), 1, sym__special_character, - ACTIONS(1694), 1, + ACTIONS(1736), 1, sym_test_operator, - STATE(584), 1, + STATE(587), 1, aux_sym_command_repeat2, - STATE(1321), 1, + STATE(1457), 1, aux_sym__literal_repeat1, - STATE(1712), 1, - sym_herestring_redirect, - STATE(1716), 1, + STATE(1626), 1, sym_concatenation, - STATE(4911), 1, + STATE(1633), 1, + sym_herestring_redirect, + STATE(4893), 1, sym_subshell, ACTIONS(1408), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1543), 2, + ACTIONS(1486), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1569), 2, + ACTIONS(1512), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1688), 2, + ACTIONS(1730), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1686), 3, + ACTIONS(1728), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1219), 9, + STATE(1263), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -78788,7 +78913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1404), 20, + ACTIONS(1404), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -78808,51 +78933,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [2890] = 8, + [2658] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1492), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1494), 1, + anon_sym_DOLLAR, + ACTIONS(1498), 1, anon_sym_DQUOTE, - ACTIONS(1815), 1, - sym_variable_name, - STATE(1061), 1, - sym_string, - ACTIONS(1813), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 4, - sym_file_descriptor, - sym_test_operator, + ACTIONS(1500), 1, + aux_sym_number_token1, + ACTIONS(1502), 1, + aux_sym_number_token2, + ACTIONS(1504), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1506), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1508), 1, + anon_sym_BQUOTE, + ACTIONS(1510), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1516), 1, sym__bare_dollar, + ACTIONS(1518), 1, sym__brace_start, - ACTIONS(1809), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 40, + ACTIONS(1732), 1, + anon_sym_LT_LT_LT, + ACTIONS(1734), 1, + sym__special_character, + ACTIONS(1736), 1, + sym_test_operator, + STATE(589), 1, + aux_sym_command_repeat2, + STATE(1457), 1, + aux_sym__literal_repeat1, + STATE(1626), 1, + sym_concatenation, + STATE(1633), 1, + sym_herestring_redirect, + STATE(4930), 1, + sym_subshell, + ACTIONS(1442), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1486), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1512), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1730), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1728), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1263), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1440), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -78861,41 +79022,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [2775] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1567), 1, aux_sym_heredoc_redirect_token1, + ACTIONS(1761), 1, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1764), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1767), 1, + anon_sym_DOLLAR, + ACTIONS(1770), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1773), 1, + anon_sym_DQUOTE, + ACTIONS(1776), 1, aux_sym_number_token1, + ACTIONS(1779), 1, aux_sym_number_token2, + ACTIONS(1782), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1785), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1788), 1, anon_sym_BQUOTE, + ACTIONS(1791), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1797), 1, + sym_file_descriptor, + ACTIONS(1800), 1, + sym_test_operator, + ACTIONS(1803), 1, + sym__bare_dollar, + ACTIONS(1806), 1, + sym__brace_start, + STATE(554), 1, + aux_sym_command_repeat2, + STATE(1261), 1, + aux_sym__literal_repeat1, + STATE(1444), 1, + sym_concatenation, + STATE(1446), 1, + sym_herestring_redirect, + ACTIONS(1755), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1758), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1794), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(1752), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [2966] = 8, + STATE(994), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1562), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [2890] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1458), 1, anon_sym_DQUOTE, - ACTIONS(1823), 1, + ACTIONS(1813), 1, sym_variable_name, - STATE(1125), 1, + STATE(1026), 1, sym_string, - ACTIONS(1821), 2, + ACTIONS(1811), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 5, + ACTIONS(1241), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1817), 9, + ACTIONS(1809), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -78905,7 +79137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 39, + ACTIONS(1239), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -78917,8 +79149,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -78945,63 +79178,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [3042] = 26, + [2966] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1583), 1, + ACTIONS(1567), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1824), 1, anon_sym_LT_LT_LT, - ACTIONS(1585), 1, + ACTIONS(1827), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1587), 1, + ACTIONS(1830), 1, anon_sym_DOLLAR, - ACTIONS(1589), 1, + ACTIONS(1833), 1, sym__special_character, - ACTIONS(1591), 1, + ACTIONS(1836), 1, anon_sym_DQUOTE, - ACTIONS(1593), 1, + ACTIONS(1839), 1, aux_sym_number_token1, - ACTIONS(1595), 1, + ACTIONS(1842), 1, aux_sym_number_token2, - ACTIONS(1597), 1, + ACTIONS(1845), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1599), 1, + ACTIONS(1848), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1601), 1, + ACTIONS(1851), 1, anon_sym_BQUOTE, - ACTIONS(1603), 1, + ACTIONS(1854), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1607), 1, + ACTIONS(1860), 1, + sym_file_descriptor, + ACTIONS(1863), 1, sym_test_operator, - ACTIONS(1609), 1, + ACTIONS(1866), 1, sym__bare_dollar, - ACTIONS(1611), 1, + ACTIONS(1869), 1, sym__brace_start, - STATE(569), 1, + STATE(556), 1, aux_sym_command_repeat2, - STATE(1431), 1, + STATE(1457), 1, aux_sym__literal_repeat1, - STATE(1521), 1, + STATE(1626), 1, sym_concatenation, - STATE(1552), 1, + STATE(1633), 1, sym_herestring_redirect, - ACTIONS(1579), 2, + ACTIONS(1818), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1581), 2, + ACTIONS(1821), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1605), 2, + ACTIONS(1857), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1577), 3, + ACTIONS(1815), 3, sym_raw_string, sym_ansi_c_string, sym_word, - ACTIONS(1627), 3, + STATE(1135), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1562), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [3080] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1876), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1878), 1, + anon_sym_DOLLAR, + ACTIONS(1880), 1, + sym__special_character, + ACTIONS(1882), 1, + anon_sym_DQUOTE, + ACTIONS(1884), 1, + aux_sym_number_token1, + ACTIONS(1886), 1, + aux_sym_number_token2, + ACTIONS(1888), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1890), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1892), 1, + anon_sym_BQUOTE, + ACTIONS(1894), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1898), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1900), 1, + sym_variable_name, + ACTIONS(1902), 1, + sym_test_operator, + ACTIONS(1904), 1, + sym__brace_start, + STATE(1622), 1, + aux_sym__literal_repeat1, + STATE(6756), 1, + sym_subscript, + ACTIONS(1690), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(1093), 9, + ACTIONS(1874), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1896), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1872), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(562), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1306), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -79011,7 +79327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1625), 19, + ACTIONS(1688), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -79022,6 +79338,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -79031,16 +79349,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [3154] = 8, + [3188] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1908), 1, anon_sym_DQUOTE, - ACTIONS(1823), 1, + ACTIONS(1912), 1, sym_variable_name, - STATE(1125), 1, + STATE(1129), 1, sym_string, - ACTIONS(1821), 2, + ACTIONS(1910), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1235), 5, @@ -79049,7 +79367,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1817), 9, + ACTIONS(1906), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -79099,82 +79417,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [3230] = 24, + [3264] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1829), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1831), 1, + ACTIONS(1916), 1, + anon_sym_DQUOTE, + ACTIONS(1920), 1, + sym_variable_name, + STATE(1090), 1, + sym_string, + ACTIONS(1918), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 4, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ACTIONS(1914), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1833), 1, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 40, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym__special_character, - ACTIONS(1835), 1, - anon_sym_DQUOTE, - ACTIONS(1837), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1839), 1, aux_sym_number_token2, - ACTIONS(1841), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1843), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1845), 1, anon_sym_BQUOTE, - ACTIONS(1847), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1851), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1853), 1, - sym_variable_name, - ACTIONS(1855), 1, - sym_test_operator, - ACTIONS(1857), 1, - sym__brace_start, - STATE(1699), 1, - aux_sym__literal_repeat1, - STATE(6769), 1, - sym_subscript, - ACTIONS(1799), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1827), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1849), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1825), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(565), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1171), 9, - sym_arithmetic_expansion, - sym_brace_expression, + [3340] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1916), 1, + anon_sym_DQUOTE, + ACTIONS(1920), 1, + sym_variable_name, + STATE(1090), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1797), 21, + ACTIONS(1918), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 4, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ACTIONS(1914), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -79183,63 +79537,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [3338] = 26, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [3416] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1583), 1, + ACTIONS(1526), 1, anon_sym_LT_LT_LT, - ACTIONS(1585), 1, + ACTIONS(1528), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1587), 1, + ACTIONS(1530), 1, anon_sym_DOLLAR, - ACTIONS(1589), 1, + ACTIONS(1532), 1, sym__special_character, - ACTIONS(1591), 1, + ACTIONS(1534), 1, anon_sym_DQUOTE, - ACTIONS(1593), 1, + ACTIONS(1536), 1, aux_sym_number_token1, - ACTIONS(1595), 1, + ACTIONS(1538), 1, aux_sym_number_token2, - ACTIONS(1597), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1599), 1, + ACTIONS(1542), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1601), 1, + ACTIONS(1544), 1, anon_sym_BQUOTE, - ACTIONS(1603), 1, + ACTIONS(1546), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1607), 1, + ACTIONS(1550), 1, sym_test_operator, - ACTIONS(1609), 1, + ACTIONS(1552), 1, sym__bare_dollar, - ACTIONS(1611), 1, + ACTIONS(1554), 1, sym__brace_start, - STATE(569), 1, + STATE(567), 1, aux_sym_command_repeat2, - STATE(1431), 1, + STATE(1410), 1, aux_sym__literal_repeat1, - STATE(1521), 1, - sym_concatenation, - STATE(1552), 1, + STATE(1534), 1, sym_herestring_redirect, - ACTIONS(1579), 2, + STATE(1682), 1, + sym_concatenation, + ACTIONS(1522), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1581), 2, + ACTIONS(1524), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1605), 2, + ACTIONS(1548), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1577), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(1615), 3, + ACTIONS(1482), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(1093), 9, + ACTIONS(1520), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1157), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -79249,7 +79619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1613), 19, + ACTIONS(1480), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -79269,62 +79639,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [3450] = 26, + [3528] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1547), 1, - anon_sym_LT_LT_LT, - ACTIONS(1549), 1, + ACTIONS(1876), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, + ACTIONS(1878), 1, anon_sym_DOLLAR, - ACTIONS(1553), 1, + ACTIONS(1880), 1, sym__special_character, - ACTIONS(1555), 1, + ACTIONS(1882), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, + ACTIONS(1884), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(1886), 1, aux_sym_number_token2, - ACTIONS(1561), 1, + ACTIONS(1888), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, + ACTIONS(1890), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1565), 1, + ACTIONS(1892), 1, anon_sym_BQUOTE, - ACTIONS(1567), 1, + ACTIONS(1894), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1571), 1, + ACTIONS(1900), 1, + sym_variable_name, + ACTIONS(1902), 1, sym_test_operator, - ACTIONS(1573), 1, - sym__bare_dollar, - ACTIONS(1575), 1, + ACTIONS(1904), 1, sym__brace_start, - STATE(562), 1, - aux_sym_command_repeat2, - STATE(1321), 1, + ACTIONS(1922), 1, + aux_sym__simple_variable_name_token1, + STATE(1622), 1, aux_sym__literal_repeat1, - STATE(1712), 1, - sym_herestring_redirect, - STATE(1716), 1, - sym_concatenation, - ACTIONS(1543), 2, + STATE(6756), 1, + sym_subscript, + ACTIONS(1724), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1874), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1545), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1569), 2, + ACTIONS(1896), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1615), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1541), 3, + ACTIONS(1872), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1023), 9, + STATE(566), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1306), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -79334,7 +79701,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1613), 20, + ACTIONS(1722), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -79344,8 +79711,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -79355,63 +79723,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [3562] = 27, + [3636] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1491), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1868), 1, + ACTIONS(1490), 1, anon_sym_LT_LT_LT, - ACTIONS(1871), 1, + ACTIONS(1492), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1494), 1, anon_sym_DOLLAR, - ACTIONS(1877), 1, + ACTIONS(1496), 1, sym__special_character, - ACTIONS(1880), 1, + ACTIONS(1498), 1, anon_sym_DQUOTE, - ACTIONS(1883), 1, + ACTIONS(1500), 1, aux_sym_number_token1, - ACTIONS(1886), 1, + ACTIONS(1502), 1, aux_sym_number_token2, - ACTIONS(1889), 1, + ACTIONS(1504), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1892), 1, + ACTIONS(1506), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1895), 1, + ACTIONS(1508), 1, anon_sym_BQUOTE, - ACTIONS(1898), 1, + ACTIONS(1510), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1904), 1, - sym_file_descriptor, - ACTIONS(1907), 1, + ACTIONS(1514), 1, sym_test_operator, - ACTIONS(1910), 1, + ACTIONS(1516), 1, sym__bare_dollar, - ACTIONS(1913), 1, + ACTIONS(1518), 1, sym__brace_start, - STATE(562), 1, + STATE(556), 1, aux_sym_command_repeat2, - STATE(1321), 1, + STATE(1457), 1, aux_sym__literal_repeat1, - STATE(1712), 1, - sym_herestring_redirect, - STATE(1716), 1, + STATE(1626), 1, sym_concatenation, - ACTIONS(1862), 2, + STATE(1633), 1, + sym_herestring_redirect, + ACTIONS(1482), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1486), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1865), 2, + ACTIONS(1488), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1901), 2, + ACTIONS(1512), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1859), 3, + ACTIONS(1484), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1023), 9, + STATE(1135), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -79421,7 +79788,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1486), 20, + ACTIONS(1480), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -79442,59 +79809,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [3676] = 24, + [3748] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1829), 1, + ACTIONS(1526), 1, + anon_sym_LT_LT_LT, + ACTIONS(1528), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1831), 1, + ACTIONS(1530), 1, anon_sym_DOLLAR, - ACTIONS(1833), 1, + ACTIONS(1532), 1, sym__special_character, - ACTIONS(1835), 1, + ACTIONS(1534), 1, anon_sym_DQUOTE, - ACTIONS(1837), 1, + ACTIONS(1536), 1, aux_sym_number_token1, - ACTIONS(1839), 1, + ACTIONS(1538), 1, aux_sym_number_token2, - ACTIONS(1841), 1, + ACTIONS(1540), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1843), 1, + ACTIONS(1542), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1845), 1, + ACTIONS(1544), 1, anon_sym_BQUOTE, - ACTIONS(1847), 1, + ACTIONS(1546), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1853), 1, - sym_variable_name, - ACTIONS(1855), 1, + ACTIONS(1550), 1, sym_test_operator, - ACTIONS(1857), 1, + ACTIONS(1552), 1, + sym__bare_dollar, + ACTIONS(1554), 1, sym__brace_start, - ACTIONS(1916), 1, - aux_sym__simple_variable_name_token1, - STATE(1699), 1, + STATE(567), 1, + aux_sym_command_repeat2, + STATE(1410), 1, aux_sym__literal_repeat1, - STATE(6769), 1, - sym_subscript, - ACTIONS(1757), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1827), 2, + STATE(1534), 1, + sym_herestring_redirect, + STATE(1682), 1, + sym_concatenation, + ACTIONS(1522), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1849), 2, + ACTIONS(1524), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1548), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1825), 3, + ACTIONS(1520), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(559), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1171), 9, + ACTIONS(1619), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(1157), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -79504,7 +79875,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1755), 21, + ACTIONS(1617), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -79515,8 +79886,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -79526,19 +79895,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [3784] = 8, + [3860] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(1458), 1, anon_sym_DQUOTE, - ACTIONS(1815), 1, + ACTIONS(1813), 1, sym_variable_name, - STATE(1061), 1, + STATE(1026), 1, sym_string, - ACTIONS(1813), 2, + ACTIONS(1811), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 4, + ACTIONS(1235), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, @@ -79553,7 +79922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 40, + ACTIONS(1227), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -79565,9 +79934,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -79594,59 +79963,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [3860] = 24, + [3936] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1924), 1, + ACTIONS(1930), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1927), 1, + ACTIONS(1933), 1, anon_sym_DOLLAR, - ACTIONS(1930), 1, + ACTIONS(1936), 1, sym__special_character, - ACTIONS(1933), 1, + ACTIONS(1939), 1, anon_sym_DQUOTE, - ACTIONS(1936), 1, + ACTIONS(1942), 1, aux_sym_number_token1, - ACTIONS(1939), 1, + ACTIONS(1945), 1, aux_sym_number_token2, - ACTIONS(1942), 1, + ACTIONS(1948), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1945), 1, + ACTIONS(1951), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1948), 1, + ACTIONS(1954), 1, anon_sym_BQUOTE, - ACTIONS(1951), 1, - anon_sym_DOLLAR_BQUOTE, ACTIONS(1957), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1963), 1, aux_sym__simple_variable_name_token1, - ACTIONS(1960), 1, + ACTIONS(1966), 1, sym_variable_name, - ACTIONS(1963), 1, + ACTIONS(1969), 1, sym_test_operator, - ACTIONS(1966), 1, + ACTIONS(1972), 1, sym__brace_start, - STATE(1699), 1, + STATE(1622), 1, aux_sym__literal_repeat1, - STATE(6769), 1, + STATE(6756), 1, sym_subscript, - ACTIONS(1704), 2, + ACTIONS(1637), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1921), 2, + ACTIONS(1927), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1954), 2, + ACTIONS(1960), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1918), 3, + ACTIONS(1924), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(565), 3, + STATE(566), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1171), 9, + STATE(1306), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -79656,7 +80025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1702), 21, + ACTIONS(1635), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -79678,62 +80047,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [3968] = 26, + [4044] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1547), 1, + ACTIONS(1984), 1, anon_sym_LT_LT_LT, - ACTIONS(1549), 1, + ACTIONS(1987), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, + ACTIONS(1990), 1, anon_sym_DOLLAR, - ACTIONS(1553), 1, + ACTIONS(1993), 1, sym__special_character, - ACTIONS(1555), 1, + ACTIONS(1996), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, + ACTIONS(1999), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(2002), 1, aux_sym_number_token2, - ACTIONS(1561), 1, + ACTIONS(2005), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, + ACTIONS(2008), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1565), 1, + ACTIONS(2011), 1, anon_sym_BQUOTE, - ACTIONS(1567), 1, + ACTIONS(2014), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1571), 1, + ACTIONS(2020), 1, + sym_file_descriptor, + ACTIONS(2023), 1, sym_test_operator, - ACTIONS(1573), 1, + ACTIONS(2026), 1, sym__bare_dollar, - ACTIONS(1575), 1, + ACTIONS(2029), 1, sym__brace_start, - STATE(562), 1, + STATE(567), 1, aux_sym_command_repeat2, - STATE(1321), 1, + STATE(1410), 1, aux_sym__literal_repeat1, - STATE(1712), 1, + STATE(1534), 1, sym_herestring_redirect, - STATE(1716), 1, + STATE(1682), 1, sym_concatenation, - ACTIONS(1543), 2, + ACTIONS(1567), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1978), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1545), 2, + ACTIONS(1981), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1569), 2, + ACTIONS(2017), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1627), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1541), 3, + ACTIONS(1975), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1023), 9, + STATE(1157), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -79743,71 +80114,18 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1625), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [4080] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1458), 1, - anon_sym_DQUOTE, - ACTIONS(1973), 1, - sym_variable_name, - STATE(1130), 1, - sym_string, - ACTIONS(1971), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 4, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1969), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 40, - anon_sym_LPAREN_LPAREN, + ACTIONS(1562), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -79816,40 +80134,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [4156] = 8, + [4158] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1458), 1, + ACTIONS(1908), 1, anon_sym_DQUOTE, - ACTIONS(1973), 1, + ACTIONS(1912), 1, sym_variable_name, - STATE(1130), 1, + STATE(1129), 1, sym_string, - ACTIONS(1971), 2, + ACTIONS(1910), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 4, + ACTIONS(1241), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1969), 9, + ts_builtin_sym_end, + ACTIONS(1906), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -79859,7 +80162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 40, + ACTIONS(1239), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -79871,9 +80174,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -79900,64 +80202,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [4232] = 27, + [4234] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1984), 1, + ACTIONS(1490), 1, anon_sym_LT_LT_LT, - ACTIONS(1987), 1, + ACTIONS(1492), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1990), 1, + ACTIONS(1494), 1, anon_sym_DOLLAR, - ACTIONS(1993), 1, + ACTIONS(1496), 1, sym__special_character, - ACTIONS(1996), 1, + ACTIONS(1498), 1, anon_sym_DQUOTE, - ACTIONS(1999), 1, + ACTIONS(1500), 1, aux_sym_number_token1, - ACTIONS(2002), 1, + ACTIONS(1502), 1, aux_sym_number_token2, - ACTIONS(2005), 1, + ACTIONS(1504), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2008), 1, + ACTIONS(1506), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2011), 1, + ACTIONS(1508), 1, anon_sym_BQUOTE, - ACTIONS(2014), 1, + ACTIONS(1510), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2020), 1, - sym_file_descriptor, - ACTIONS(2023), 1, + ACTIONS(1514), 1, sym_test_operator, - ACTIONS(2026), 1, + ACTIONS(1516), 1, sym__bare_dollar, - ACTIONS(2029), 1, + ACTIONS(1518), 1, sym__brace_start, - STATE(569), 1, + STATE(556), 1, aux_sym_command_repeat2, - STATE(1431), 1, + STATE(1457), 1, aux_sym__literal_repeat1, - STATE(1521), 1, + STATE(1626), 1, sym_concatenation, - STATE(1552), 1, + STATE(1633), 1, sym_herestring_redirect, - ACTIONS(1491), 2, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1978), 2, + ACTIONS(1486), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1981), 2, + ACTIONS(1488), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(2017), 2, + ACTIONS(1512), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1975), 3, + ACTIONS(1619), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1484), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1093), 9, + STATE(1135), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -79967,7 +80267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1486), 19, + ACTIONS(1617), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -79977,6 +80277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -80018,29 +80319,28 @@ static const uint16_t ts_small_parse_table[] = { sym_test_operator, ACTIONS(2064), 1, sym__brace_start, - STATE(1816), 1, + STATE(1786), 1, aux_sym__literal_repeat1, - STATE(6731), 1, + STATE(6736), 1, sym_subscript, + ACTIONS(1690), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, ACTIONS(2034), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(2056), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1799), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, ACTIONS(2032), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(577), 3, + STATE(574), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1322), 9, + STATE(1431), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -80050,7 +80350,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1797), 19, + ACTIONS(1688), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -80060,6 +80360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -80070,173 +80371,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [4453] = 26, + [4453] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1549), 1, + ACTIONS(1492), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, + ACTIONS(1494), 1, anon_sym_DOLLAR, - ACTIONS(1555), 1, + ACTIONS(1498), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, + ACTIONS(1500), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(1502), 1, aux_sym_number_token2, - ACTIONS(1561), 1, + ACTIONS(1504), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, + ACTIONS(1506), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1565), 1, - anon_sym_BQUOTE, - ACTIONS(1567), 1, + ACTIONS(1510), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1573), 1, + ACTIONS(1516), 1, sym__bare_dollar, - ACTIONS(1575), 1, + ACTIONS(1518), 1, sym__brace_start, - ACTIONS(1690), 1, + ACTIONS(1732), 1, anon_sym_LT_LT_LT, - ACTIONS(1692), 1, + ACTIONS(1734), 1, sym__special_character, - ACTIONS(1694), 1, + ACTIONS(1736), 1, sym_test_operator, - STATE(574), 1, + STATE(588), 1, aux_sym_command_repeat2, - STATE(1321), 1, + STATE(1457), 1, aux_sym__literal_repeat1, - STATE(1712), 1, - sym_herestring_redirect, - STATE(1716), 1, + STATE(1626), 1, sym_concatenation, - ACTIONS(1543), 2, + STATE(1633), 1, + sym_herestring_redirect, + ACTIONS(1482), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1486), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1569), 2, + ACTIONS(1512), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1615), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1688), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1686), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1219), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1613), 19, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [4564] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1555), 1, - anon_sym_DQUOTE, - ACTIONS(2070), 1, - sym_variable_name, - STATE(1176), 1, - sym_string, - ACTIONS(2068), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 4, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ACTIONS(2066), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(1730), 2, anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, + ACTIONS(1728), 3, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - [4639] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1474), 1, - aux_sym__literal_repeat1, - STATE(583), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2074), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1158), 9, + STATE(1263), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -80246,8 +80434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2072), 40, - anon_sym_LPAREN_LPAREN, + ACTIONS(1480), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -80257,10 +80444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -80270,80 +80454,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [4710] = 27, + [4562] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1491), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1871), 1, + ACTIONS(1492), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1874), 1, + ACTIONS(1494), 1, anon_sym_DOLLAR, - ACTIONS(1880), 1, + ACTIONS(1498), 1, anon_sym_DQUOTE, - ACTIONS(1883), 1, + ACTIONS(1500), 1, aux_sym_number_token1, - ACTIONS(1886), 1, + ACTIONS(1502), 1, aux_sym_number_token2, - ACTIONS(1889), 1, + ACTIONS(1504), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1892), 1, + ACTIONS(1506), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1895), 1, - anon_sym_BQUOTE, - ACTIONS(1898), 1, + ACTIONS(1510), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1910), 1, + ACTIONS(1516), 1, sym__bare_dollar, - ACTIONS(1913), 1, + ACTIONS(1518), 1, sym__brace_start, - ACTIONS(2082), 1, + ACTIONS(1732), 1, anon_sym_LT_LT_LT, - ACTIONS(2085), 1, + ACTIONS(1734), 1, sym__special_character, - ACTIONS(2088), 1, - sym_file_descriptor, - ACTIONS(2091), 1, + ACTIONS(1736), 1, sym_test_operator, - STATE(574), 1, + STATE(588), 1, aux_sym_command_repeat2, - STATE(1321), 1, + STATE(1457), 1, aux_sym__literal_repeat1, - STATE(1712), 1, - sym_herestring_redirect, - STATE(1716), 1, + STATE(1626), 1, sym_concatenation, - ACTIONS(1862), 2, + STATE(1633), 1, + sym_herestring_redirect, + ACTIONS(1486), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1901), 2, + ACTIONS(1512), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2079), 2, + ACTIONS(1619), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1730), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(2076), 3, + ACTIONS(1728), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1219), 9, + STATE(1263), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -80353,7 +80518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1486), 19, + ACTIONS(1617), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -80373,21 +80538,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [4823] = 6, + anon_sym_BQUOTE, + [4671] = 24, ACTIONS(3), 1, sym_comment, - STATE(1474), 1, - aux_sym__literal_repeat1, - STATE(583), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2096), 5, - sym_file_descriptor, + ACTIONS(2072), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2075), 1, + anon_sym_DOLLAR, + ACTIONS(2078), 1, + sym__special_character, + ACTIONS(2081), 1, + anon_sym_DQUOTE, + ACTIONS(2084), 1, + aux_sym_number_token1, + ACTIONS(2087), 1, + aux_sym_number_token2, + ACTIONS(2090), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2093), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2096), 1, + anon_sym_BQUOTE, + ACTIONS(2099), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2105), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2108), 1, sym_variable_name, + ACTIONS(2111), 1, sym_test_operator, + ACTIONS(2114), 1, sym__brace_start, + STATE(1786), 1, + aux_sym__literal_repeat1, + STATE(6736), 1, + sym_subscript, + ACTIONS(1637), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(1158), 9, + ACTIONS(2069), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2102), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2066), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(573), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1431), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -80397,8 +80601,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2094), 40, - anon_sym_LPAREN_LPAREN, + ACTIONS(1635), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -80408,10 +80611,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -80421,24 +80622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [4894] = 24, + [4778] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(2036), 1, @@ -80467,31 +80651,30 @@ static const uint16_t ts_small_parse_table[] = { sym_test_operator, ACTIONS(2064), 1, sym__brace_start, - ACTIONS(2098), 1, + ACTIONS(2117), 1, aux_sym__simple_variable_name_token1, - STATE(1816), 1, + STATE(1786), 1, aux_sym__literal_repeat1, - STATE(6731), 1, + STATE(6736), 1, sym_subscript, + ACTIONS(1724), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, ACTIONS(2034), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(2056), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1757), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, ACTIONS(2032), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(570), 3, + STATE(573), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1322), 9, + STATE(1431), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -80501,7 +80684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1755), 19, + ACTIONS(1722), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -80511,6 +80694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -80521,52 +80705,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [5001] = 24, + [4885] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2106), 1, + ACTIONS(2123), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2125), 1, anon_sym_DOLLAR, - ACTIONS(2112), 1, + ACTIONS(2127), 1, sym__special_character, - ACTIONS(2115), 1, + ACTIONS(2129), 1, anon_sym_DQUOTE, - ACTIONS(2118), 1, + ACTIONS(2131), 1, aux_sym_number_token1, - ACTIONS(2121), 1, + ACTIONS(2133), 1, aux_sym_number_token2, - ACTIONS(2124), 1, + ACTIONS(2135), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2127), 1, + ACTIONS(2137), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2130), 1, + ACTIONS(2139), 1, anon_sym_BQUOTE, - ACTIONS(2133), 1, + ACTIONS(2141), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2139), 1, + ACTIONS(2145), 1, aux_sym__simple_variable_name_token1, - ACTIONS(2142), 1, + ACTIONS(2147), 1, sym_variable_name, - ACTIONS(2145), 1, + ACTIONS(2149), 1, sym_test_operator, - ACTIONS(2148), 1, + ACTIONS(2151), 1, sym__brace_start, - STATE(1816), 1, + STATE(1893), 1, aux_sym__literal_repeat1, - STATE(6731), 1, + STATE(6733), 1, sym_subscript, - ACTIONS(2103), 2, + ACTIONS(2121), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2136), 2, + ACTIONS(2143), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1704), 3, + ACTIONS(1690), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2100), 3, + ACTIONS(2119), 3, sym_raw_string, sym_ansi_c_string, sym_word, @@ -80574,7 +80758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1322), 9, + STATE(1346), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -80584,7 +80768,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1702), 19, + ACTIONS(1688), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -80604,25 +80788,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [5108] = 8, + [4992] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1591), 1, + ACTIONS(1916), 1, anon_sym_DQUOTE, - ACTIONS(2155), 1, + ACTIONS(1920), 1, sym_variable_name, - STATE(1282), 1, + STATE(1090), 1, sym_string, - ACTIONS(2153), 2, + ACTIONS(1918), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 5, + ACTIONS(1241), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2151), 9, + ACTIONS(1914), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -80632,7 +80815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 38, + ACTIONS(1239), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -80644,6 +80827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -80671,24 +80855,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [5183] = 8, + [5067] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2123), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2125), 1, + anon_sym_DOLLAR, + ACTIONS(2127), 1, + sym__special_character, + ACTIONS(2129), 1, + anon_sym_DQUOTE, + ACTIONS(2131), 1, + aux_sym_number_token1, + ACTIONS(2133), 1, + aux_sym_number_token2, + ACTIONS(2135), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2137), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2139), 1, + anon_sym_BQUOTE, + ACTIONS(2141), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2147), 1, + sym_variable_name, + ACTIONS(2149), 1, + sym_test_operator, + ACTIONS(2151), 1, + sym__brace_start, + ACTIONS(2153), 1, + aux_sym__simple_variable_name_token1, + STATE(1893), 1, + aux_sym__literal_repeat1, + STATE(6733), 1, + sym_subscript, + ACTIONS(2121), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2143), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1724), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2119), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(586), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1346), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1722), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [5174] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(1534), 1, anon_sym_DQUOTE, - ACTIONS(1815), 1, + ACTIONS(2159), 1, sym_variable_name, - STATE(1061), 1, + STATE(1202), 1, sym_string, - ACTIONS(1813), 2, + ACTIONS(2157), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 4, + ACTIONS(1235), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1809), 9, + ts_builtin_sym_end, + ACTIONS(2155), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -80698,7 +80966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 39, + ACTIONS(1227), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -80710,7 +80978,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -80738,24 +81005,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [5258] = 8, + [5249] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(1534), 1, anon_sym_DQUOTE, - ACTIONS(1815), 1, + ACTIONS(2159), 1, sym_variable_name, - STATE(1061), 1, + STATE(1202), 1, sym_string, - ACTIONS(1813), 2, + ACTIONS(2157), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 4, + ACTIONS(1241), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1809), 9, + ts_builtin_sym_end, + ACTIONS(2155), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -80765,7 +81033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 39, + ACTIONS(1239), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -80777,7 +81045,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -80805,59 +81072,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [5333] = 24, + [5324] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2163), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2166), 1, - anon_sym_DOLLAR, - ACTIONS(2169), 1, - sym__special_character, - ACTIONS(2172), 1, + ACTIONS(1916), 1, anon_sym_DQUOTE, - ACTIONS(2175), 1, + ACTIONS(1920), 1, + sym_variable_name, + STATE(1090), 1, + sym_string, + ACTIONS(1918), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 4, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ACTIONS(1914), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(2178), 1, aux_sym_number_token2, - ACTIONS(2181), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2184), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2187), 1, anon_sym_BQUOTE, - ACTIONS(2190), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2196), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2199), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [5399] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1498), 1, + anon_sym_DQUOTE, + ACTIONS(2165), 1, sym_variable_name, - ACTIONS(2202), 1, + STATE(1215), 1, + sym_string, + ACTIONS(2163), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 4, + sym_file_descriptor, sym_test_operator, - ACTIONS(2205), 1, + sym__bare_dollar, sym__brace_start, - STATE(1743), 1, - aux_sym__literal_repeat1, - STATE(6781), 1, - sym_subscript, - ACTIONS(1704), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 2, + ACTIONS(2161), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2193), 2, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2157), 3, + sym_word, + [5474] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1498), 1, + anon_sym_DQUOTE, + ACTIONS(2165), 1, + sym_variable_name, + STATE(1215), 1, + sym_string, + ACTIONS(2163), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 4, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ACTIONS(2161), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - STATE(581), 3, - sym_variable_assignment, + [5549] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1381), 1, + aux_sym__literal_repeat1, + STATE(585), 2, sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1360), 9, + aux_sym_for_statement_repeat1, + ACTIONS(2169), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + STATE(1082), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -80867,7 +81297,8 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1702), 20, + ACTIONS(2167), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -80877,8 +81308,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -80888,62 +81321,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [5440] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1549), 1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, anon_sym_DOLLAR, - ACTIONS(1555), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1557), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1559), 1, aux_sym_number_token2, - ACTIONS(1561), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1565), 1, anon_sym_BQUOTE, - ACTIONS(1567), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1573), 1, - sym__bare_dollar, - ACTIONS(1575), 1, - sym__brace_start, - ACTIONS(1690), 1, - anon_sym_LT_LT_LT, - ACTIONS(1692), 1, - sym__special_character, - ACTIONS(1694), 1, - sym_test_operator, - STATE(574), 1, - aux_sym_command_repeat2, - STATE(1321), 1, - aux_sym__literal_repeat1, - STATE(1712), 1, - sym_herestring_redirect, - STATE(1716), 1, - sym_concatenation, - ACTIONS(1543), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1569), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1627), 2, + sym_word, + [5620] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1381), 1, + aux_sym__literal_repeat1, + STATE(585), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2173), 5, sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1688), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1686), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1219), 9, + STATE(1082), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -80953,7 +81362,8 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1625), 19, + ACTIONS(2171), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -80963,7 +81373,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -80973,53 +81386,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [5551] = 21, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [5691] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2218), 1, + ACTIONS(2185), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2221), 1, + ACTIONS(2188), 1, anon_sym_DOLLAR, - ACTIONS(2224), 1, + ACTIONS(2191), 1, sym__special_character, - ACTIONS(2227), 1, + ACTIONS(2194), 1, anon_sym_DQUOTE, - ACTIONS(2230), 1, + ACTIONS(2197), 1, aux_sym_number_token1, - ACTIONS(2233), 1, + ACTIONS(2200), 1, aux_sym_number_token2, - ACTIONS(2236), 1, + ACTIONS(2203), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2239), 1, + ACTIONS(2206), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2242), 1, + ACTIONS(2209), 1, anon_sym_BQUOTE, - ACTIONS(2245), 1, + ACTIONS(2212), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2251), 1, + ACTIONS(2218), 1, sym_test_operator, - ACTIONS(2254), 1, + ACTIONS(2221), 1, sym__brace_start, - STATE(1474), 1, + STATE(1381), 1, aux_sym__literal_repeat1, - ACTIONS(2211), 2, + ACTIONS(2178), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2248), 2, + ACTIONS(2215), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(583), 2, + STATE(585), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2208), 3, + ACTIONS(2175), 3, sym_raw_string, sym_ansi_c_string, sym_word, - ACTIONS(2216), 3, + ACTIONS(2183), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - STATE(1158), 9, + STATE(1082), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -81029,7 +81459,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2214), 23, + ACTIONS(2181), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -81053,60 +81483,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [5652] = 25, + [5792] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1549), 1, + ACTIONS(2230), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, + ACTIONS(2233), 1, anon_sym_DOLLAR, - ACTIONS(1555), 1, + ACTIONS(2236), 1, + sym__special_character, + ACTIONS(2239), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, + ACTIONS(2242), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(2245), 1, aux_sym_number_token2, - ACTIONS(1561), 1, + ACTIONS(2248), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, + ACTIONS(2251), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1567), 1, + ACTIONS(2254), 1, + anon_sym_BQUOTE, + ACTIONS(2257), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1573), 1, - sym__bare_dollar, - ACTIONS(1575), 1, - sym__brace_start, - ACTIONS(1690), 1, - anon_sym_LT_LT_LT, - ACTIONS(1692), 1, - sym__special_character, - ACTIONS(1694), 1, + ACTIONS(2263), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2266), 1, + sym_variable_name, + ACTIONS(2269), 1, sym_test_operator, - STATE(574), 1, - aux_sym_command_repeat2, - STATE(1321), 1, + ACTIONS(2272), 1, + sym__brace_start, + STATE(1893), 1, aux_sym__literal_repeat1, - STATE(1712), 1, - sym_herestring_redirect, - STATE(1716), 1, - sym_concatenation, - ACTIONS(1543), 2, + STATE(6733), 1, + sym_subscript, + ACTIONS(2227), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1569), 2, + ACTIONS(2260), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1627), 2, + ACTIONS(1637), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1688), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1686), 3, + ACTIONS(2224), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1219), 9, + STATE(586), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1346), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -81116,7 +81546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1625), 20, + ACTIONS(1635), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -81136,60 +81566,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [5761] = 24, + [5899] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2261), 1, + ACTIONS(1492), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2263), 1, + ACTIONS(1494), 1, anon_sym_DOLLAR, - ACTIONS(2265), 1, - sym__special_character, - ACTIONS(2267), 1, + ACTIONS(1498), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(1500), 1, aux_sym_number_token1, - ACTIONS(2271), 1, + ACTIONS(1502), 1, aux_sym_number_token2, - ACTIONS(2273), 1, + ACTIONS(1504), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2275), 1, + ACTIONS(1506), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2277), 1, + ACTIONS(1508), 1, anon_sym_BQUOTE, - ACTIONS(2279), 1, + ACTIONS(1510), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2283), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2285), 1, - sym_variable_name, - ACTIONS(2287), 1, - sym_test_operator, - ACTIONS(2289), 1, + ACTIONS(1516), 1, + sym__bare_dollar, + ACTIONS(1518), 1, sym__brace_start, - STATE(1743), 1, + ACTIONS(1732), 1, + anon_sym_LT_LT_LT, + ACTIONS(1734), 1, + sym__special_character, + ACTIONS(1736), 1, + sym_test_operator, + STATE(588), 1, + aux_sym_command_repeat2, + STATE(1457), 1, aux_sym__literal_repeat1, - STATE(6781), 1, - sym_subscript, - ACTIONS(1799), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2259), 2, + STATE(1626), 1, + sym_concatenation, + STATE(1633), 1, + sym_herestring_redirect, + ACTIONS(1486), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2281), 2, + ACTIONS(1512), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2257), 3, + ACTIONS(1619), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1730), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1728), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(581), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1360), 9, + STATE(1263), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -81199,7 +81631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1797), 20, + ACTIONS(1617), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -81209,7 +81641,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -81220,59 +81651,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [5868] = 24, + [6010] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2261), 1, + ACTIONS(1567), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1827), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2263), 1, + ACTIONS(1830), 1, anon_sym_DOLLAR, - ACTIONS(2265), 1, - sym__special_character, - ACTIONS(2267), 1, + ACTIONS(1836), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(1839), 1, aux_sym_number_token1, - ACTIONS(2271), 1, + ACTIONS(1842), 1, aux_sym_number_token2, - ACTIONS(2273), 1, + ACTIONS(1845), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2275), 1, + ACTIONS(1848), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2277), 1, + ACTIONS(1851), 1, anon_sym_BQUOTE, - ACTIONS(2279), 1, + ACTIONS(1854), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2285), 1, - sym_variable_name, + ACTIONS(1866), 1, + sym__bare_dollar, + ACTIONS(1869), 1, + sym__brace_start, + ACTIONS(2281), 1, + anon_sym_LT_LT_LT, + ACTIONS(2284), 1, + sym__special_character, ACTIONS(2287), 1, + sym_file_descriptor, + ACTIONS(2290), 1, sym_test_operator, - ACTIONS(2289), 1, - sym__brace_start, - ACTIONS(2291), 1, - aux_sym__simple_variable_name_token1, - STATE(1743), 1, + STATE(588), 1, + aux_sym_command_repeat2, + STATE(1457), 1, aux_sym__literal_repeat1, - STATE(6781), 1, - sym_subscript, - ACTIONS(1757), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2259), 2, + STATE(1626), 1, + sym_concatenation, + STATE(1633), 1, + sym_herestring_redirect, + ACTIONS(1818), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2281), 2, + ACTIONS(1857), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2257), 3, + ACTIONS(2278), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2275), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(585), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1360), 9, + STATE(1263), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -81282,7 +81717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1755), 20, + ACTIONS(1562), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -81292,7 +81727,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -81303,60 +81737,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [5975] = 25, + [6123] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1549), 1, + ACTIONS(1492), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, + ACTIONS(1494), 1, anon_sym_DOLLAR, - ACTIONS(1555), 1, + ACTIONS(1498), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, + ACTIONS(1500), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(1502), 1, aux_sym_number_token2, - ACTIONS(1561), 1, + ACTIONS(1504), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, + ACTIONS(1506), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1567), 1, + ACTIONS(1508), 1, + anon_sym_BQUOTE, + ACTIONS(1510), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1573), 1, + ACTIONS(1516), 1, sym__bare_dollar, - ACTIONS(1575), 1, + ACTIONS(1518), 1, sym__brace_start, - ACTIONS(1690), 1, + ACTIONS(1732), 1, anon_sym_LT_LT_LT, - ACTIONS(1692), 1, + ACTIONS(1734), 1, sym__special_character, - ACTIONS(1694), 1, + ACTIONS(1736), 1, sym_test_operator, - STATE(574), 1, + STATE(588), 1, aux_sym_command_repeat2, - STATE(1321), 1, + STATE(1457), 1, aux_sym__literal_repeat1, - STATE(1712), 1, - sym_herestring_redirect, - STATE(1716), 1, + STATE(1626), 1, sym_concatenation, - ACTIONS(1543), 2, + STATE(1633), 1, + sym_herestring_redirect, + ACTIONS(1482), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1486), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1569), 2, + ACTIONS(1512), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1615), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1688), 2, + ACTIONS(1730), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1686), 3, + ACTIONS(1728), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1219), 9, + STATE(1263), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -81366,7 +81802,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1613), 20, + ACTIONS(1480), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -81386,26 +81822,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [6084] = 8, + [6234] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1591), 1, + ACTIONS(2295), 1, anon_sym_DQUOTE, - ACTIONS(2155), 1, + ACTIONS(2299), 1, sym_variable_name, - STATE(1282), 1, + STATE(1266), 1, sym_string, - ACTIONS(2153), 2, + ACTIONS(2297), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 5, + ACTIONS(1235), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2151), 9, + ACTIONS(2293), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -81415,21 +81848,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 38, + ACTIONS(1227), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -81454,24 +81888,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [6159] = 8, + [6308] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, + ACTIONS(1498), 1, anon_sym_DQUOTE, - ACTIONS(2070), 1, + ACTIONS(2165), 1, sym_variable_name, - STATE(1176), 1, + STATE(1215), 1, sym_string, - ACTIONS(2068), 2, + ACTIONS(2163), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 4, + ACTIONS(1235), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(2066), 9, + ACTIONS(2161), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -81481,7 +81915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 39, + ACTIONS(1227), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -81493,7 +81927,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -81521,54 +81954,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [6234] = 22, + [6382] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, + STATE(1339), 1, + aux_sym__literal_repeat1, + STATE(1658), 1, + sym_concatenation, + ACTIONS(2303), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + STATE(1062), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2301), 40, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(2303), 1, anon_sym_DOLLAR, - ACTIONS(2305), 1, sym__special_character, - ACTIONS(2307), 1, anon_sym_DQUOTE, - ACTIONS(2309), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(2311), 1, aux_sym_number_token2, - ACTIONS(2313), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2315), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2317), 1, anon_sym_BQUOTE, - ACTIONS(2319), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2323), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2325), 1, - sym_test_operator, - ACTIONS(2327), 1, - sym__brace_start, - STATE(1631), 1, - aux_sym__literal_repeat1, - ACTIONS(2295), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2299), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2321), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(613), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2293), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(1190), 9, + [6452] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1343), 1, + aux_sym__literal_repeat1, + STATE(1696), 1, + sym_concatenation, + ACTIONS(2307), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + STATE(1064), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -81578,7 +82041,8 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2297), 22, + ACTIONS(2305), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -81601,52 +82065,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [6336] = 21, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [6522] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2311), 1, + anon_sym_DQUOTE, + ACTIONS(2315), 1, + sym_variable_name, + STATE(1411), 1, + sym_string, + ACTIONS(2313), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(2309), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(2335), 1, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [6596] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2311), 1, + anon_sym_DQUOTE, + ACTIONS(2315), 1, + sym_variable_name, + STATE(1411), 1, + sym_string, + ACTIONS(2313), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(2309), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(2337), 1, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym__special_character, - ACTIONS(2339), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [6670] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2311), 1, anon_sym_DQUOTE, - ACTIONS(2341), 1, + ACTIONS(2321), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2323), 1, + anon_sym_DOLLAR, + ACTIONS(2325), 1, + sym__special_character, + ACTIONS(2327), 1, aux_sym_number_token1, - ACTIONS(2343), 1, + ACTIONS(2329), 1, aux_sym_number_token2, - ACTIONS(2345), 1, + ACTIONS(2331), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2347), 1, + ACTIONS(2333), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2349), 1, + ACTIONS(2335), 1, anon_sym_BQUOTE, - ACTIONS(2351), 1, + ACTIONS(2337), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2355), 1, + ACTIONS(2341), 1, sym_test_operator, - ACTIONS(2357), 1, + ACTIONS(2343), 1, sym__brace_start, - STATE(1658), 1, + STATE(1522), 1, aux_sym__literal_repeat1, - ACTIONS(2096), 2, + ACTIONS(2169), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2331), 2, + ACTIONS(2319), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2353), 2, + ACTIONS(2339), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(593), 2, + STATE(602), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2329), 3, + ACTIONS(2317), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1290), 9, + STATE(1178), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -81656,7 +82269,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2094), 23, + ACTIONS(2167), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -81680,57 +82293,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [6436] = 23, + [6770] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2261), 1, + ACTIONS(2311), 1, + anon_sym_DQUOTE, + ACTIONS(2321), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2263), 1, + ACTIONS(2323), 1, anon_sym_DOLLAR, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2325), 1, + sym__special_character, + ACTIONS(2327), 1, aux_sym_number_token1, - ACTIONS(2271), 1, + ACTIONS(2329), 1, aux_sym_number_token2, - ACTIONS(2273), 1, + ACTIONS(2331), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2275), 1, + ACTIONS(2333), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2279), 1, + ACTIONS(2335), 1, + anon_sym_BQUOTE, + ACTIONS(2337), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2289), 1, - sym__brace_start, - ACTIONS(2361), 1, - sym__special_character, - ACTIONS(2363), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2365), 1, - sym_variable_name, - ACTIONS(2367), 1, + ACTIONS(2341), 1, sym_test_operator, - STATE(1743), 1, + ACTIONS(2343), 1, + sym__brace_start, + STATE(1522), 1, aux_sym__literal_repeat1, - STATE(6773), 1, - sym_subscript, - ACTIONS(1757), 2, + ACTIONS(2173), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2259), 2, + ACTIONS(2319), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2281), 2, + ACTIONS(2339), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2359), 3, + STATE(602), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2317), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(594), 3, - sym_variable_assignment, + STATE(1178), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2171), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [6870] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1539), 1, + aux_sym__literal_repeat1, + STATE(614), 2, sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1602), 9, + aux_sym_for_statement_repeat1, + ACTIONS(2169), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + STATE(1191), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -81740,18 +82396,88 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1755), 20, + ACTIONS(2167), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [6940] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1498), 1, + anon_sym_DQUOTE, + ACTIONS(2165), 1, + sym_variable_name, + STATE(1215), 1, + sym_string, + ACTIONS(2163), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 4, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ACTIONS(2161), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -81760,53 +82486,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [6540] = 21, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [7014] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2375), 1, + ACTIONS(2355), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2378), 1, + ACTIONS(2358), 1, anon_sym_DOLLAR, - ACTIONS(2381), 1, + ACTIONS(2361), 1, sym__special_character, - ACTIONS(2384), 1, + ACTIONS(2364), 1, anon_sym_DQUOTE, - ACTIONS(2387), 1, + ACTIONS(2367), 1, aux_sym_number_token1, - ACTIONS(2390), 1, + ACTIONS(2370), 1, aux_sym_number_token2, - ACTIONS(2393), 1, + ACTIONS(2373), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2396), 1, + ACTIONS(2376), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2399), 1, + ACTIONS(2379), 1, anon_sym_BQUOTE, - ACTIONS(2402), 1, + ACTIONS(2382), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2408), 1, + ACTIONS(2388), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2391), 1, sym_test_operator, - ACTIONS(2411), 1, + ACTIONS(2394), 1, sym__brace_start, - STATE(1658), 1, + STATE(1491), 1, aux_sym__literal_repeat1, - ACTIONS(2216), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2372), 2, + ACTIONS(2348), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2405), 2, + ACTIONS(2353), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2385), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(593), 2, + STATE(600), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2369), 3, + aux_sym_unset_command_repeat1, + ACTIONS(2345), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1290), 9, + STATE(1276), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -81816,7 +82559,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2214), 23, + ACTIONS(2351), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -81839,58 +82582,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [6640] = 23, + [7116] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2261), 1, + ACTIONS(2036), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2263), 1, + ACTIONS(2038), 1, anon_sym_DOLLAR, - ACTIONS(2267), 1, + ACTIONS(2042), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2044), 1, aux_sym_number_token1, - ACTIONS(2271), 1, + ACTIONS(2046), 1, aux_sym_number_token2, - ACTIONS(2273), 1, + ACTIONS(2048), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2275), 1, + ACTIONS(2050), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2279), 1, + ACTIONS(2052), 1, + anon_sym_BQUOTE, + ACTIONS(2054), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2289), 1, + ACTIONS(2064), 1, sym__brace_start, - ACTIONS(2361), 1, + ACTIONS(2399), 1, sym__special_character, - ACTIONS(2365), 1, + ACTIONS(2401), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2403), 1, sym_variable_name, - ACTIONS(2367), 1, + ACTIONS(2405), 1, sym_test_operator, - ACTIONS(2414), 1, - aux_sym__simple_variable_name_token1, - STATE(1743), 1, + STATE(1786), 1, aux_sym__literal_repeat1, - STATE(6773), 1, + STATE(6752), 1, sym_subscript, - ACTIONS(1799), 2, + ACTIONS(1690), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2259), 2, + ACTIONS(2034), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2281), 2, + ACTIONS(2056), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2359), 3, + ACTIONS(2397), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(612), 3, + STATE(603), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1602), 9, + STATE(1649), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -81900,7 +82644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1797), 20, + ACTIONS(1688), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -81920,53 +82664,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [6744] = 21, + [7222] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(2413), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2335), 1, + ACTIONS(2416), 1, anon_sym_DOLLAR, - ACTIONS(2337), 1, + ACTIONS(2419), 1, sym__special_character, - ACTIONS(2339), 1, + ACTIONS(2422), 1, anon_sym_DQUOTE, - ACTIONS(2341), 1, + ACTIONS(2425), 1, aux_sym_number_token1, - ACTIONS(2343), 1, + ACTIONS(2428), 1, aux_sym_number_token2, - ACTIONS(2345), 1, + ACTIONS(2431), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2347), 1, + ACTIONS(2434), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2349), 1, + ACTIONS(2437), 1, anon_sym_BQUOTE, - ACTIONS(2351), 1, + ACTIONS(2440), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2355), 1, + ACTIONS(2446), 1, sym_test_operator, - ACTIONS(2357), 1, + ACTIONS(2449), 1, sym__brace_start, - STATE(1658), 1, + STATE(1522), 1, aux_sym__literal_repeat1, - ACTIONS(2074), 2, + ACTIONS(2183), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2331), 2, + ACTIONS(2410), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2353), 2, + ACTIONS(2443), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(593), 2, + STATE(602), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2329), 3, + ACTIONS(2407), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1290), 9, + STATE(1178), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -81976,7 +82719,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2072), 23, + ACTIONS(2181), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82000,66 +82743,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [6844] = 28, + [7322] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(2036), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, + ACTIONS(2038), 1, anon_sym_DOLLAR, - ACTIONS(1555), 1, + ACTIONS(2042), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, + ACTIONS(2044), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(2046), 1, aux_sym_number_token2, - ACTIONS(1561), 1, + ACTIONS(2048), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, + ACTIONS(2050), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1565), 1, + ACTIONS(2052), 1, anon_sym_BQUOTE, - ACTIONS(1567), 1, + ACTIONS(2054), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1573), 1, - sym__bare_dollar, - ACTIONS(1575), 1, + ACTIONS(2064), 1, sym__brace_start, - ACTIONS(2420), 1, - anon_sym_LT_LT_LT, - ACTIONS(2422), 1, + ACTIONS(2399), 1, sym__special_character, - ACTIONS(2424), 1, + ACTIONS(2403), 1, + sym_variable_name, + ACTIONS(2405), 1, sym_test_operator, - STATE(688), 1, - aux_sym_command_repeat2, - STATE(1321), 1, + ACTIONS(2452), 1, + aux_sym__simple_variable_name_token1, + STATE(1786), 1, aux_sym__literal_repeat1, - STATE(1712), 1, - sym_herestring_redirect, - STATE(1716), 1, - sym_concatenation, - STATE(4911), 1, - sym_subshell, - ACTIONS(1408), 2, + STATE(6752), 1, + sym_subscript, + ACTIONS(1724), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1543), 2, + ACTIONS(2034), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1569), 2, + ACTIONS(2056), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2418), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2416), 3, + ACTIONS(2397), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1794), 9, + STATE(606), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1649), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -82069,51 +82805,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1404), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [6958] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2428), 1, - anon_sym_DQUOTE, - ACTIONS(2432), 1, - sym_variable_name, - STATE(1204), 1, - sym_string, - ACTIONS(2430), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(2426), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 39, - anon_sym_LPAREN_LPAREN, + ACTIONS(1722), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82123,10 +82815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -82136,70 +82825,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [7032] = 22, + [7428] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2444), 1, + ACTIONS(2462), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2447), 1, + ACTIONS(2464), 1, anon_sym_DOLLAR, - ACTIONS(2450), 1, + ACTIONS(2466), 1, sym__special_character, - ACTIONS(2453), 1, + ACTIONS(2468), 1, anon_sym_DQUOTE, - ACTIONS(2456), 1, + ACTIONS(2470), 1, aux_sym_number_token1, - ACTIONS(2459), 1, + ACTIONS(2472), 1, aux_sym_number_token2, - ACTIONS(2462), 1, + ACTIONS(2474), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2465), 1, + ACTIONS(2476), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2468), 1, + ACTIONS(2478), 1, anon_sym_BQUOTE, - ACTIONS(2471), 1, + ACTIONS(2480), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2477), 1, + ACTIONS(2484), 1, aux_sym__simple_variable_name_token1, - ACTIONS(2480), 1, + ACTIONS(2486), 1, sym_test_operator, - ACTIONS(2483), 1, + ACTIONS(2488), 1, sym__brace_start, - STATE(1631), 1, + STATE(1491), 1, aux_sym__literal_repeat1, - ACTIONS(2437), 2, + ACTIONS(2456), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2442), 2, + ACTIONS(2460), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2474), 2, + ACTIONS(2482), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(598), 2, + STATE(600), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(2434), 3, + ACTIONS(2454), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1190), 9, + STATE(1276), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -82209,7 +82882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2440), 22, + ACTIONS(2458), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82232,10 +82905,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [7134] = 3, + [7530] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(809), 23, + ACTIONS(819), 23, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -82293,66 +82966,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [7198] = 28, + [7594] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(1549), 1, + ACTIONS(2072), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, + ACTIONS(2075), 1, anon_sym_DOLLAR, - ACTIONS(1555), 1, + ACTIONS(2081), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, + ACTIONS(2084), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(2087), 1, aux_sym_number_token2, - ACTIONS(1561), 1, + ACTIONS(2090), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, + ACTIONS(2093), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1565), 1, + ACTIONS(2096), 1, anon_sym_BQUOTE, - ACTIONS(1567), 1, + ACTIONS(2099), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1573), 1, - sym__bare_dollar, - ACTIONS(1575), 1, + ACTIONS(2114), 1, sym__brace_start, - ACTIONS(2420), 1, - anon_sym_LT_LT_LT, - ACTIONS(2422), 1, + ACTIONS(2493), 1, sym__special_character, - ACTIONS(2424), 1, + ACTIONS(2496), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2499), 1, + sym_variable_name, + ACTIONS(2502), 1, sym_test_operator, - STATE(675), 1, - aux_sym_command_repeat2, - STATE(1321), 1, + STATE(1786), 1, aux_sym__literal_repeat1, - STATE(1712), 1, - sym_herestring_redirect, - STATE(1716), 1, - sym_concatenation, - STATE(4952), 1, - sym_subshell, - ACTIONS(1442), 2, + STATE(6752), 1, + sym_subscript, + ACTIONS(1637), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1543), 2, + ACTIONS(2069), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1569), 2, + ACTIONS(2102), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2418), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2416), 3, + ACTIONS(2490), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1794), 9, + STATE(606), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1649), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -82362,14 +83028,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1440), 16, + ACTIONS(1635), 19, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -82379,21 +83048,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [7312] = 6, + [7700] = 22, ACTIONS(3), 1, sym_comment, - STATE(1567), 1, - aux_sym__literal_repeat1, - STATE(609), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2096), 5, - sym_file_descriptor, - sym_variable_name, + ACTIONS(2462), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2464), 1, + anon_sym_DOLLAR, + ACTIONS(2466), 1, + sym__special_character, + ACTIONS(2468), 1, + anon_sym_DQUOTE, + ACTIONS(2470), 1, + aux_sym_number_token1, + ACTIONS(2472), 1, + aux_sym_number_token2, + ACTIONS(2474), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2476), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2478), 1, + anon_sym_BQUOTE, + ACTIONS(2480), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2486), 1, sym_test_operator, + ACTIONS(2488), 1, sym__brace_start, + ACTIONS(2509), 1, + aux_sym__simple_variable_name_token1, + STATE(1491), 1, + aux_sym__literal_repeat1, + ACTIONS(2456), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2482), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2507), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(1269), 9, + STATE(604), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2454), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1276), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -82403,8 +83105,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2094), 39, - anon_sym_LPAREN_LPAREN, + ACTIONS(2505), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82414,6 +83115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -82426,76 +83128,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [7382] = 24, + [7802] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2261), 1, + ACTIONS(2036), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2263), 1, + ACTIONS(2038), 1, anon_sym_DOLLAR, - ACTIONS(2267), 1, + ACTIONS(2042), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2044), 1, aux_sym_number_token1, - ACTIONS(2271), 1, + ACTIONS(2046), 1, aux_sym_number_token2, - ACTIONS(2273), 1, + ACTIONS(2048), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2275), 1, + ACTIONS(2050), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2277), 1, - anon_sym_BQUOTE, - ACTIONS(2279), 1, + ACTIONS(2054), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2289), 1, + ACTIONS(2064), 1, sym__brace_start, - ACTIONS(2361), 1, + ACTIONS(2399), 1, sym__special_character, - ACTIONS(2365), 1, + ACTIONS(2403), 1, sym_variable_name, - ACTIONS(2367), 1, + ACTIONS(2405), 1, sym_test_operator, - ACTIONS(2486), 1, + ACTIONS(2452), 1, aux_sym__simple_variable_name_token1, - STATE(1743), 1, + STATE(1786), 1, aux_sym__literal_repeat1, - STATE(6773), 1, + STATE(6752), 1, sym_subscript, - ACTIONS(1757), 2, + ACTIONS(1724), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2259), 2, + ACTIONS(2034), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2281), 2, + ACTIONS(2056), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2359), 3, + ACTIONS(2397), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(610), 3, + STATE(606), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1602), 9, + STATE(1649), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -82505,7 +83188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1755), 19, + ACTIONS(1722), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82525,23 +83208,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [7488] = 8, + anon_sym_BQUOTE, + [7906] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2339), 1, + ACTIONS(2295), 1, anon_sym_DQUOTE, - ACTIONS(2492), 1, + ACTIONS(2299), 1, sym_variable_name, - STATE(1463), 1, + STATE(1266), 1, sym_string, - ACTIONS(2490), 2, + ACTIONS(2297), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1241), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(2488), 9, + ACTIONS(2293), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -82591,20 +83275,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [7562] = 6, + [7980] = 6, ACTIONS(3), 1, sym_comment, - STATE(1429), 1, + STATE(1539), 1, aux_sym__literal_repeat1, - STATE(1534), 1, + STATE(614), 2, sym_concatenation, - ACTIONS(2496), 5, + aux_sym_for_statement_repeat1, + ACTIONS(2173), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - STATE(1100), 9, + STATE(1191), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -82614,7 +83299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2494), 40, + ACTIONS(2171), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -82625,7 +83310,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -82655,114 +83339,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [7632] = 8, + [8050] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(2339), 1, - anon_sym_DQUOTE, - ACTIONS(2492), 1, - sym_variable_name, - STATE(1463), 1, - sym_string, - ACTIONS(2490), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(2488), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1492), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1494), 1, + anon_sym_DOLLAR, + ACTIONS(1498), 1, + anon_sym_DQUOTE, + ACTIONS(1500), 1, aux_sym_number_token1, + ACTIONS(1502), 1, aux_sym_number_token2, + ACTIONS(1504), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1506), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1508), 1, anon_sym_BQUOTE, + ACTIONS(1510), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1516), 1, + sym__bare_dollar, + ACTIONS(1518), 1, + sym__brace_start, + ACTIONS(2515), 1, + anon_sym_LT_LT_LT, + ACTIONS(2517), 1, + sym__special_character, + ACTIONS(2519), 1, + sym_test_operator, + STATE(706), 1, + aux_sym_command_repeat2, + STATE(1457), 1, + aux_sym__literal_repeat1, + STATE(1626), 1, + sym_concatenation, + STATE(1633), 1, + sym_herestring_redirect, + STATE(4893), 1, + sym_subshell, + ACTIONS(1408), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1486), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1512), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(2513), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2511), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [7706] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1555), 1, - anon_sym_DQUOTE, - ACTIONS(2070), 1, - sym_variable_name, - STATE(1176), 1, + STATE(1921), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(2068), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 4, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ACTIONS(2066), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1404), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -82771,36 +83425,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [8164] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2036), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2038), 1, + anon_sym_DOLLAR, + ACTIONS(2042), 1, + anon_sym_DQUOTE, + ACTIONS(2044), 1, aux_sym_number_token1, + ACTIONS(2046), 1, aux_sym_number_token2, + ACTIONS(2048), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2050), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(2054), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(2064), 1, + sym__brace_start, + ACTIONS(2399), 1, + sym__special_character, + ACTIONS(2403), 1, + sym_variable_name, + ACTIONS(2405), 1, + sym_test_operator, + ACTIONS(2521), 1, + aux_sym__simple_variable_name_token1, + STATE(1786), 1, + aux_sym__literal_repeat1, + STATE(6752), 1, + sym_subscript, + ACTIONS(1690), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2034), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2056), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(2397), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [7780] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1382), 1, - aux_sym__literal_repeat1, - STATE(1607), 1, + STATE(608), 3, + sym_variable_assignment, sym_concatenation, - ACTIONS(2500), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1081), 9, + aux_sym_declaration_command_repeat1, + STATE(1649), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -82810,8 +83485,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2498), 40, - anon_sym_LPAREN_LPAREN, + ACTIONS(1688), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82821,10 +83495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -82834,65 +83505,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_BQUOTE, + [8268] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1492), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1494), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1498), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1500), 1, aux_sym_number_token1, + ACTIONS(1502), 1, aux_sym_number_token2, + ACTIONS(1504), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1506), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1508), 1, anon_sym_BQUOTE, + ACTIONS(1510), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1516), 1, + sym__bare_dollar, + ACTIONS(1518), 1, + sym__brace_start, + ACTIONS(2515), 1, + anon_sym_LT_LT_LT, + ACTIONS(2517), 1, + sym__special_character, + ACTIONS(2519), 1, + sym_test_operator, + STATE(708), 1, + aux_sym_command_repeat2, + STATE(1457), 1, + aux_sym__literal_repeat1, + STATE(1626), 1, + sym_concatenation, + STATE(1633), 1, + sym_herestring_redirect, + STATE(4930), 1, + sym_subshell, + ACTIONS(1442), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1486), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1512), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(2513), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2511), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [7850] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1555), 1, - anon_sym_DQUOTE, - ACTIONS(2070), 1, - sym_variable_name, - STATE(1176), 1, + STATE(1921), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(2068), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 4, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ACTIONS(2066), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1440), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -82901,69 +83592,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [7924] = 21, + [8382] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2508), 1, + ACTIONS(2529), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2511), 1, + ACTIONS(2532), 1, anon_sym_DOLLAR, - ACTIONS(2514), 1, + ACTIONS(2535), 1, sym__special_character, - ACTIONS(2517), 1, + ACTIONS(2538), 1, anon_sym_DQUOTE, - ACTIONS(2520), 1, + ACTIONS(2541), 1, aux_sym_number_token1, - ACTIONS(2523), 1, + ACTIONS(2544), 1, aux_sym_number_token2, - ACTIONS(2526), 1, + ACTIONS(2547), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2529), 1, + ACTIONS(2550), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2553), 1, anon_sym_BQUOTE, - ACTIONS(2535), 1, + ACTIONS(2556), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2541), 1, + ACTIONS(2562), 1, sym_test_operator, - ACTIONS(2544), 1, + ACTIONS(2565), 1, sym__brace_start, - STATE(1567), 1, + STATE(1539), 1, aux_sym__literal_repeat1, - ACTIONS(2505), 2, + ACTIONS(2526), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2538), 2, + ACTIONS(2559), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(609), 2, + STATE(614), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2216), 3, + ACTIONS(2183), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(2502), 3, + ACTIONS(2523), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1269), 9, + STATE(1191), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -82973,7 +83648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2214), 22, + ACTIONS(2181), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82996,59 +83671,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [8024] = 24, + [8482] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2261), 1, + ACTIONS(2574), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2263), 1, + ACTIONS(2577), 1, anon_sym_DOLLAR, - ACTIONS(2267), 1, + ACTIONS(2580), 1, + sym__special_character, + ACTIONS(2583), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2586), 1, aux_sym_number_token1, - ACTIONS(2271), 1, + ACTIONS(2589), 1, aux_sym_number_token2, - ACTIONS(2273), 1, + ACTIONS(2592), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2275), 1, + ACTIONS(2595), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2277), 1, + ACTIONS(2598), 1, anon_sym_BQUOTE, - ACTIONS(2279), 1, + ACTIONS(2601), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2289), 1, - sym__brace_start, - ACTIONS(2361), 1, - sym__special_character, - ACTIONS(2365), 1, - sym_variable_name, - ACTIONS(2367), 1, + ACTIONS(2607), 1, sym_test_operator, - ACTIONS(2414), 1, - aux_sym__simple_variable_name_token1, - STATE(1743), 1, + ACTIONS(2610), 1, + sym__brace_start, + STATE(1902), 1, aux_sym__literal_repeat1, - STATE(6773), 1, - sym_subscript, - ACTIONS(1799), 2, + ACTIONS(2183), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2259), 2, + ACTIONS(2571), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2281), 2, + ACTIONS(2604), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2359), 3, + STATE(615), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2568), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(612), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1602), 9, + STATE(1388), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -83058,54 +83726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1797), 19, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [8130] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2428), 1, - anon_sym_DQUOTE, - ACTIONS(2432), 1, - sym_variable_name, - STATE(1204), 1, - sym_string, - ACTIONS(2430), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(2426), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 39, - anon_sym_LPAREN_LPAREN, + ACTIONS(2181), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -83128,75 +83749,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [8204] = 24, + [8581] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2163), 1, + ACTIONS(2617), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2166), 1, + ACTIONS(2619), 1, anon_sym_DOLLAR, - ACTIONS(2172), 1, + ACTIONS(2621), 1, + sym__special_character, + ACTIONS(2623), 1, anon_sym_DQUOTE, - ACTIONS(2175), 1, + ACTIONS(2625), 1, aux_sym_number_token1, - ACTIONS(2178), 1, + ACTIONS(2627), 1, aux_sym_number_token2, - ACTIONS(2181), 1, + ACTIONS(2629), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2184), 1, + ACTIONS(2631), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2187), 1, + ACTIONS(2633), 1, anon_sym_BQUOTE, - ACTIONS(2190), 1, + ACTIONS(2635), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2205), 1, - sym__brace_start, - ACTIONS(2550), 1, - sym__special_character, - ACTIONS(2553), 1, + ACTIONS(2639), 1, aux_sym__simple_variable_name_token1, - ACTIONS(2556), 1, - sym_variable_name, - ACTIONS(2559), 1, + ACTIONS(2641), 1, sym_test_operator, - STATE(1743), 1, + ACTIONS(2643), 1, + sym__brace_start, + STATE(1784), 1, aux_sym__literal_repeat1, - STATE(6773), 1, - sym_subscript, - ACTIONS(1704), 2, + ACTIONS(2460), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 2, + ACTIONS(2615), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2193), 2, + ACTIONS(2637), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2547), 3, + STATE(652), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2613), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(612), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1602), 9, + STATE(1442), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -83206,7 +83806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1702), 19, + ACTIONS(2458), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -83217,6 +83817,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -83226,101 +83828,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [8310] = 22, - ACTIONS(3), 1, + [8682] = 29, + ACTIONS(71), 1, sym_comment, - ACTIONS(2301), 1, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(2645), 1, + sym_word, + ACTIONS(2651), 1, + anon_sym_LT_LT_LT, + ACTIONS(2653), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2303), 1, + ACTIONS(2655), 1, anon_sym_DOLLAR, - ACTIONS(2305), 1, + ACTIONS(2657), 1, sym__special_character, - ACTIONS(2307), 1, + ACTIONS(2659), 1, anon_sym_DQUOTE, - ACTIONS(2309), 1, + ACTIONS(2663), 1, aux_sym_number_token1, - ACTIONS(2311), 1, + ACTIONS(2665), 1, aux_sym_number_token2, - ACTIONS(2313), 1, + ACTIONS(2667), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2315), 1, + ACTIONS(2669), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2317), 1, + ACTIONS(2671), 1, anon_sym_BQUOTE, - ACTIONS(2319), 1, + ACTIONS(2673), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2325), 1, + ACTIONS(2677), 1, sym_test_operator, - ACTIONS(2327), 1, + ACTIONS(2679), 1, + sym__bare_dollar, + ACTIONS(2681), 1, sym__brace_start, - ACTIONS(2566), 1, - aux_sym__simple_variable_name_token1, - STATE(1631), 1, + STATE(755), 1, + aux_sym_command_repeat2, + STATE(2425), 1, aux_sym__literal_repeat1, - ACTIONS(2295), 2, + STATE(2523), 1, + sym_concatenation, + STATE(2525), 1, + sym_herestring_redirect, + STATE(5659), 1, + sym_subshell, + ACTIONS(2647), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2321), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2564), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(598), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2293), 3, + ACTIONS(2649), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2661), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(1190), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2562), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2675), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1440), 7, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [8412] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1567), 1, - aux_sym__literal_repeat1, - STATE(609), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2074), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1269), 9, + STATE(2159), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -83330,92 +83903,157 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2072), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + ACTIONS(1442), 10, + sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + [8797] = 37, + ACTIONS(71), 1, + sym_comment, + ACTIONS(409), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(415), 1, + anon_sym_LPAREN, + ACTIONS(435), 1, + anon_sym_LBRACK, + ACTIONS(437), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(447), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(449), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(451), 1, anon_sym_DOLLAR, + ACTIONS(453), 1, sym__special_character, + ACTIONS(455), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(459), 1, aux_sym_number_token1, + ACTIONS(461), 1, aux_sym_number_token2, + ACTIONS(463), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(465), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(467), 1, anon_sym_BQUOTE, + ACTIONS(469), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(475), 1, + sym_variable_name, + ACTIONS(477), 1, + sym_test_operator, + ACTIONS(479), 1, + sym__brace_start, + ACTIONS(1394), 1, + anon_sym_LT_LT_LT, + ACTIONS(1396), 1, + sym_file_descriptor, + ACTIONS(2683), 1, + sym_word, + STATE(528), 1, + sym_command_name, + STATE(977), 1, + aux_sym_command_repeat1, + STATE(978), 1, + aux_sym__literal_repeat1, + STATE(1073), 1, + sym_concatenation, + STATE(1614), 1, + sym_variable_assignment, + STATE(4898), 1, + sym_command, + STATE(6784), 1, + sym_subscript, + ACTIONS(457), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(471), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [8482] = 21, + ACTIONS(1392), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3591), 2, + sym_file_redirect, + sym_herestring_redirect, + STATE(4897), 2, + sym_subshell, + sym_test_command, + ACTIONS(1390), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1388), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(813), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [8928] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2572), 1, + ACTIONS(2689), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2691), 1, anon_sym_DOLLAR, - ACTIONS(2576), 1, + ACTIONS(2693), 1, sym__special_character, - ACTIONS(2578), 1, + ACTIONS(2695), 1, anon_sym_DQUOTE, - ACTIONS(2580), 1, + ACTIONS(2697), 1, aux_sym_number_token1, - ACTIONS(2582), 1, + ACTIONS(2699), 1, aux_sym_number_token2, - ACTIONS(2584), 1, + ACTIONS(2701), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2586), 1, + ACTIONS(2703), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2705), 1, anon_sym_BQUOTE, - ACTIONS(2590), 1, + ACTIONS(2707), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2594), 1, + ACTIONS(2711), 1, sym_test_operator, - ACTIONS(2596), 1, + ACTIONS(2713), 1, sym__brace_start, - STATE(1899), 1, + STATE(1902), 1, aux_sym__literal_repeat1, - ACTIONS(2074), 2, + ACTIONS(2169), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2570), 2, + ACTIONS(2687), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2592), 2, + ACTIONS(2709), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(621), 2, + STATE(615), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2568), 3, + ACTIONS(2685), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1394), 9, + STATE(1388), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -83425,7 +84063,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2072), 22, + ACTIONS(2167), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -83435,6 +84073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -83447,53 +84086,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [8581] = 21, + [9027] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2602), 1, + ACTIONS(2689), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2604), 1, + ACTIONS(2691), 1, anon_sym_DOLLAR, - ACTIONS(2606), 1, + ACTIONS(2693), 1, sym__special_character, - ACTIONS(2608), 1, + ACTIONS(2695), 1, anon_sym_DQUOTE, - ACTIONS(2610), 1, + ACTIONS(2697), 1, aux_sym_number_token1, - ACTIONS(2612), 1, + ACTIONS(2699), 1, aux_sym_number_token2, - ACTIONS(2614), 1, + ACTIONS(2701), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2616), 1, + ACTIONS(2703), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2618), 1, + ACTIONS(2705), 1, anon_sym_BQUOTE, - ACTIONS(2620), 1, + ACTIONS(2707), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2624), 1, + ACTIONS(2711), 1, sym_test_operator, - ACTIONS(2626), 1, + ACTIONS(2713), 1, sym__brace_start, - STATE(1803), 1, + STATE(1902), 1, aux_sym__literal_repeat1, - ACTIONS(2074), 2, + ACTIONS(2173), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2600), 2, + ACTIONS(2687), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2622), 2, + ACTIONS(2709), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(630), 2, + STATE(615), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2598), 3, + ACTIONS(2685), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1381), 9, + STATE(1388), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -83503,7 +84141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2072), 22, + ACTIONS(2171), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -83526,93 +84164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [8680] = 29, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(2628), 1, - sym_word, - ACTIONS(2634), 1, - anon_sym_LT_LT_LT, - ACTIONS(2636), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2638), 1, - anon_sym_DOLLAR, - ACTIONS(2640), 1, - sym__special_character, - ACTIONS(2642), 1, - anon_sym_DQUOTE, - ACTIONS(2646), 1, - aux_sym_number_token1, - ACTIONS(2648), 1, - aux_sym_number_token2, - ACTIONS(2650), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2652), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2654), 1, - anon_sym_BQUOTE, - ACTIONS(2656), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2660), 1, - sym_test_operator, - ACTIONS(2662), 1, - sym__bare_dollar, - ACTIONS(2664), 1, - sym__brace_start, - STATE(752), 1, - aux_sym_command_repeat2, - STATE(2417), 1, - aux_sym__literal_repeat1, - STATE(2558), 1, - sym_concatenation, - STATE(2562), 1, - sym_herestring_redirect, - STATE(5656), 1, - sym_subshell, - ACTIONS(2630), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2632), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2644), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2658), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1440), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2211), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1442), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [8795] = 37, + [9126] = 37, ACTIONS(13), 1, anon_sym_LPAREN_LPAREN, ACTIONS(19), 1, @@ -83655,21 +84207,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, ACTIONS(1396), 1, sym_file_descriptor, - ACTIONS(2666), 1, + ACTIONS(2715), 1, sym_word, STATE(534), 1, sym_command_name, - STATE(937), 1, + STATE(972), 1, aux_sym_command_repeat1, - STATE(1212), 1, + STATE(1257), 1, aux_sym__literal_repeat1, - STATE(1386), 1, + STATE(1432), 1, sym_concatenation, - STATE(2122), 1, + STATE(2229), 1, sym_variable_assignment, - STATE(5026), 1, + STATE(5029), 1, sym_command, - STATE(6774), 1, + STATE(6771), 1, sym_subscript, ACTIONS(55), 2, sym_raw_string, @@ -83680,104 +84232,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1392), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(3581), 2, - sym_file_redirect, - sym_herestring_redirect, - STATE(5014), 2, - sym_subshell, - sym_test_command, - ACTIONS(1390), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1388), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(957), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [8926] = 37, - ACTIONS(71), 1, - sym_comment, - ACTIONS(169), 1, - anon_sym_LBRACK, - ACTIONS(173), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(217), 1, - sym_variable_name, - ACTIONS(1027), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(1041), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1043), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1045), 1, - anon_sym_DOLLAR, - ACTIONS(1047), 1, - sym__special_character, - ACTIONS(1049), 1, - anon_sym_DQUOTE, - ACTIONS(1053), 1, - aux_sym_number_token1, - ACTIONS(1055), 1, - aux_sym_number_token2, - ACTIONS(1057), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1059), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1061), 1, - anon_sym_BQUOTE, - ACTIONS(1063), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1069), 1, - sym_test_operator, - ACTIONS(1071), 1, - sym__brace_start, - ACTIONS(1394), 1, - anon_sym_LT_LT_LT, - ACTIONS(1396), 1, - sym_file_descriptor, - ACTIONS(2668), 1, - sym_word, - STATE(620), 1, - sym_command_name, - STATE(955), 1, - aux_sym_command_repeat1, - STATE(2332), 1, - aux_sym__literal_repeat1, - STATE(2368), 1, - sym_concatenation, - STATE(2941), 1, - sym_variable_assignment, - STATE(5624), 1, - sym_command, - STATE(6756), 1, - sym_subscript, - ACTIONS(1051), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1065), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1392), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3581), 2, + STATE(3591), 2, sym_file_redirect, sym_herestring_redirect, - STATE(5623), 2, + STATE(5028), 2, sym_subshell, sym_test_command, ACTIONS(1390), 3, @@ -83790,7 +84248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(1799), 9, + STATE(954), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -83800,72 +84258,51 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [9057] = 29, - ACTIONS(71), 1, + [9257] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(2628), 1, - sym_word, - ACTIONS(2634), 1, - anon_sym_LT_LT_LT, - ACTIONS(2636), 1, + ACTIONS(2721), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2638), 1, + ACTIONS(2723), 1, anon_sym_DOLLAR, - ACTIONS(2640), 1, + ACTIONS(2725), 1, sym__special_character, - ACTIONS(2642), 1, + ACTIONS(2727), 1, anon_sym_DQUOTE, - ACTIONS(2646), 1, + ACTIONS(2729), 1, aux_sym_number_token1, - ACTIONS(2648), 1, + ACTIONS(2731), 1, aux_sym_number_token2, - ACTIONS(2650), 1, + ACTIONS(2733), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2652), 1, + ACTIONS(2735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2654), 1, + ACTIONS(2737), 1, anon_sym_BQUOTE, - ACTIONS(2656), 1, + ACTIONS(2739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2660), 1, + ACTIONS(2743), 1, sym_test_operator, - ACTIONS(2662), 1, - sym__bare_dollar, - ACTIONS(2664), 1, + ACTIONS(2745), 1, sym__brace_start, - STATE(727), 1, - aux_sym_command_repeat2, - STATE(2417), 1, + STATE(4292), 1, aux_sym__literal_repeat1, - STATE(2558), 1, + STATE(4715), 1, sym_concatenation, - STATE(2562), 1, - sym_herestring_redirect, - STATE(5634), 1, - sym_subshell, - ACTIONS(2630), 2, + ACTIONS(2303), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2719), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2632), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2644), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2658), 2, + ACTIONS(2741), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1404), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2211), 9, + ACTIONS(2717), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4239), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -83875,63 +84312,75 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1408), 10, - sym_file_descriptor, + ACTIONS(2301), 23, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [9172] = 21, + anon_sym_LT_LT_LT, + [9356] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2676), 1, + ACTIONS(2721), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2679), 1, + ACTIONS(2723), 1, anon_sym_DOLLAR, - ACTIONS(2682), 1, + ACTIONS(2725), 1, sym__special_character, - ACTIONS(2685), 1, + ACTIONS(2727), 1, anon_sym_DQUOTE, - ACTIONS(2688), 1, + ACTIONS(2729), 1, aux_sym_number_token1, - ACTIONS(2691), 1, + ACTIONS(2731), 1, aux_sym_number_token2, - ACTIONS(2694), 1, + ACTIONS(2733), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2697), 1, + ACTIONS(2735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2700), 1, + ACTIONS(2737), 1, anon_sym_BQUOTE, - ACTIONS(2703), 1, + ACTIONS(2739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2709), 1, - sym_test_operator, - ACTIONS(2712), 1, + ACTIONS(2745), 1, sym__brace_start, - STATE(1899), 1, + ACTIONS(2749), 1, + sym_test_operator, + STATE(4317), 1, aux_sym__literal_repeat1, - ACTIONS(2216), 2, + STATE(4613), 1, + sym_concatenation, + ACTIONS(2307), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2673), 2, + ACTIONS(2719), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2706), 2, + ACTIONS(2741), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(621), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2670), 3, + ACTIONS(2747), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1394), 9, + STATE(4242), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -83941,7 +84390,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2214), 22, + ACTIONS(2305), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -83951,6 +84400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -83964,16 +84414,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [9271] = 5, + [9455] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(2719), 2, + ACTIONS(2755), 2, anon_sym_esac, anon_sym_SEMI_SEMI, - ACTIONS(2721), 2, + ACTIONS(2757), 2, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(2717), 23, + ACTIONS(2753), 23, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -83997,7 +84447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2715), 28, + ACTIONS(2751), 28, anon_sym_for, anon_sym_select, anon_sym_LT, @@ -84026,91 +84476,98 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [9338] = 37, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(71), 1, + [9522] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(312), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(314), 1, + ACTIONS(2765), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(316), 1, + ACTIONS(2768), 1, anon_sym_DOLLAR, - ACTIONS(318), 1, + ACTIONS(2771), 1, sym__special_character, - ACTIONS(320), 1, + ACTIONS(2774), 1, anon_sym_DQUOTE, - ACTIONS(324), 1, + ACTIONS(2777), 1, aux_sym_number_token1, - ACTIONS(326), 1, + ACTIONS(2780), 1, aux_sym_number_token2, - ACTIONS(328), 1, + ACTIONS(2783), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(330), 1, + ACTIONS(2786), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(332), 1, + ACTIONS(2789), 1, anon_sym_BQUOTE, - ACTIONS(334), 1, + ACTIONS(2792), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(340), 1, - sym_variable_name, - ACTIONS(342), 1, + ACTIONS(2798), 1, sym_test_operator, - ACTIONS(344), 1, + ACTIONS(2801), 1, sym__brace_start, - ACTIONS(1394), 1, - anon_sym_LT_LT_LT, - ACTIONS(1396), 1, - sym_file_descriptor, - ACTIONS(2723), 1, - sym_word, - STATE(544), 1, - sym_command_name, - STATE(997), 1, - aux_sym_command_repeat1, - STATE(1267), 1, + STATE(1775), 1, aux_sym__literal_repeat1, - STATE(1376), 1, + ACTIONS(2762), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2795), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(625), 2, sym_concatenation, - STATE(1974), 1, - sym_variable_assignment, - STATE(5026), 1, - sym_command, - STATE(6790), 1, - sym_subscript, - ACTIONS(322), 2, + aux_sym_for_statement_repeat1, + ACTIONS(2759), 3, sym_raw_string, sym_ansi_c_string, - ACTIONS(336), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1392), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3581), 2, - sym_file_redirect, - sym_herestring_redirect, - STATE(5014), 2, - sym_subshell, - sym_test_command, - ACTIONS(1390), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1388), 5, + sym_word, + ACTIONS(2183), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(1329), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2181), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(1078), 9, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [9621] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1617), 1, + aux_sym__literal_repeat1, + STATE(1889), 1, + sym_concatenation, + ACTIONS(2303), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + STATE(1235), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84120,131 +84577,110 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [9469] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2719), 1, + ACTIONS(2301), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, - ACTIONS(2721), 3, - anon_sym_RPAREN, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(2717), 23, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2715), 28, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, sym_word, - [9536] = 5, - ACTIONS(71), 1, + [9690] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(2727), 1, - anon_sym_SEMI_SEMI, - ACTIONS(2725), 3, - anon_sym_RPAREN, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(2717), 23, + STATE(1661), 1, + aux_sym__literal_repeat1, + STATE(1894), 1, + sym_concatenation, + ACTIONS(2307), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + STATE(1241), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2305), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2715), 28, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, sym_word, - [9603] = 37, + [9759] = 37, ACTIONS(19), 1, anon_sym_LPAREN, ACTIONS(33), 1, @@ -84253,69 +84689,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(71), 1, sym_comment, - ACTIONS(288), 1, + ACTIONS(331), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(312), 1, + ACTIONS(355), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(314), 1, + ACTIONS(357), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(316), 1, + ACTIONS(359), 1, anon_sym_DOLLAR, - ACTIONS(318), 1, + ACTIONS(361), 1, sym__special_character, - ACTIONS(320), 1, + ACTIONS(363), 1, anon_sym_DQUOTE, - ACTIONS(324), 1, + ACTIONS(367), 1, aux_sym_number_token1, - ACTIONS(326), 1, + ACTIONS(369), 1, aux_sym_number_token2, - ACTIONS(328), 1, + ACTIONS(371), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(330), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(332), 1, + ACTIONS(375), 1, anon_sym_BQUOTE, - ACTIONS(334), 1, + ACTIONS(377), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(340), 1, + ACTIONS(383), 1, sym_variable_name, - ACTIONS(342), 1, + ACTIONS(385), 1, sym_test_operator, - ACTIONS(344), 1, + ACTIONS(387), 1, sym__brace_start, ACTIONS(1394), 1, anon_sym_LT_LT_LT, ACTIONS(1396), 1, sym_file_descriptor, - ACTIONS(2723), 1, + ACTIONS(2804), 1, sym_word, - STATE(554), 1, + STATE(546), 1, sym_command_name, - STATE(958), 1, + STATE(1009), 1, aux_sym_command_repeat1, - STATE(1267), 1, + STATE(1179), 1, aux_sym__literal_repeat1, - STATE(1376), 1, + STATE(1398), 1, sym_concatenation, - STATE(2286), 1, + STATE(2306), 1, sym_variable_assignment, - STATE(5026), 1, + STATE(5029), 1, sym_command, - STATE(6790), 1, + STATE(6785), 1, sym_subscript, - ACTIONS(322), 2, + ACTIONS(365), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(336), 2, + ACTIONS(379), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1392), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(3581), 2, + STATE(3591), 2, sym_file_redirect, sym_herestring_redirect, - STATE(5014), 2, + STATE(5028), 2, sym_subshell, sym_test_command, ACTIONS(1390), 3, @@ -84328,7 +84764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(1078), 9, + STATE(1010), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84338,53 +84774,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [9734] = 21, + [9890] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 1, + ACTIONS(2810), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2738), 1, + ACTIONS(2812), 1, anon_sym_DOLLAR, - ACTIONS(2741), 1, + ACTIONS(2814), 1, sym__special_character, - ACTIONS(2744), 1, + ACTIONS(2816), 1, anon_sym_DQUOTE, - ACTIONS(2747), 1, + ACTIONS(2818), 1, aux_sym_number_token1, - ACTIONS(2750), 1, + ACTIONS(2820), 1, aux_sym_number_token2, - ACTIONS(2753), 1, + ACTIONS(2822), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2756), 1, + ACTIONS(2824), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2759), 1, + ACTIONS(2826), 1, anon_sym_BQUOTE, - ACTIONS(2762), 1, + ACTIONS(2828), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2768), 1, + ACTIONS(2832), 1, sym_test_operator, - ACTIONS(2771), 1, + ACTIONS(2834), 1, sym__brace_start, - STATE(1744), 1, + STATE(1918), 1, aux_sym__literal_repeat1, - ACTIONS(2732), 2, + ACTIONS(2169), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2808), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2765), 2, + ACTIONS(2830), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(627), 2, + STATE(633), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2216), 3, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(2729), 3, + ACTIONS(2806), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1370), 9, + STATE(1421), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84394,7 +84829,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2214), 21, + ACTIONS(2167), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -84404,8 +84839,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -84416,273 +84852,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [9833] = 8, - ACTIONS(3), 1, + [9989] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(2608), 1, - anon_sym_DQUOTE, - ACTIONS(2778), 1, - sym_variable_name, - STATE(1525), 1, - sym_string, - ACTIONS(2776), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + ACTIONS(2836), 2, + anon_sym_esac, + anon_sym_SEMI_SEMI, + ACTIONS(2838), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(2753), 23, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(2774), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 38, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [9906] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2784), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2786), 1, + ACTIONS(2751), 28, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(2788), 1, sym__special_character, - ACTIONS(2790), 1, - anon_sym_DQUOTE, - ACTIONS(2792), 1, aux_sym_number_token1, - ACTIONS(2794), 1, aux_sym_number_token2, - ACTIONS(2796), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2798), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2800), 1, - anon_sym_BQUOTE, - ACTIONS(2802), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2806), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2808), 1, - sym_test_operator, - ACTIONS(2810), 1, - sym__brace_start, - STATE(1860), 1, - aux_sym__literal_repeat1, - ACTIONS(2564), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2782), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2804), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(633), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2780), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(1326), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2562), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + [10056] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2755), 1, anon_sym_SEMI_SEMI, + ACTIONS(2757), 3, + anon_sym_RPAREN, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + ACTIONS(2753), 23, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [10007] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2818), 1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(2821), 1, - anon_sym_DOLLAR, - ACTIONS(2824), 1, - sym__special_character, - ACTIONS(2827), 1, anon_sym_DQUOTE, - ACTIONS(2830), 1, - aux_sym_number_token1, - ACTIONS(2833), 1, - aux_sym_number_token2, - ACTIONS(2836), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(2839), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2842), 1, anon_sym_BQUOTE, - ACTIONS(2845), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2851), 1, - sym_test_operator, - ACTIONS(2854), 1, - sym__brace_start, - STATE(1803), 1, - aux_sym__literal_repeat1, - ACTIONS(2216), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2815), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2848), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(630), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2812), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1381), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2214), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(2751), 28, + anon_sym_for, + anon_sym_select, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [10106] = 21, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [10123] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2861), 1, + ACTIONS(2810), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2863), 1, + ACTIONS(2812), 1, anon_sym_DOLLAR, - ACTIONS(2865), 1, + ACTIONS(2814), 1, sym__special_character, - ACTIONS(2867), 1, + ACTIONS(2816), 1, anon_sym_DQUOTE, - ACTIONS(2869), 1, + ACTIONS(2818), 1, aux_sym_number_token1, - ACTIONS(2871), 1, + ACTIONS(2820), 1, aux_sym_number_token2, - ACTIONS(2873), 1, + ACTIONS(2822), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2875), 1, + ACTIONS(2824), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2877), 1, + ACTIONS(2826), 1, anon_sym_BQUOTE, - ACTIONS(2879), 1, + ACTIONS(2828), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2883), 1, + ACTIONS(2832), 1, sym_test_operator, - ACTIONS(2885), 1, + ACTIONS(2834), 1, sym__brace_start, - STATE(4262), 1, + STATE(1918), 1, aux_sym__literal_repeat1, - STATE(4820), 1, - sym_concatenation, - ACTIONS(2496), 2, + ACTIONS(2173), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2859), 2, + ACTIONS(2808), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2881), 2, + ACTIONS(2830), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2857), 3, + STATE(633), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2806), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4240), 9, + STATE(1421), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84692,7 +85031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2494), 23, + ACTIONS(2171), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -84702,7 +85041,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -84716,54 +85054,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [10205] = 22, + [10222] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 1, + ACTIONS(2846), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2786), 1, + ACTIONS(2849), 1, anon_sym_DOLLAR, - ACTIONS(2788), 1, + ACTIONS(2852), 1, sym__special_character, - ACTIONS(2790), 1, + ACTIONS(2855), 1, anon_sym_DQUOTE, - ACTIONS(2792), 1, + ACTIONS(2858), 1, aux_sym_number_token1, - ACTIONS(2794), 1, + ACTIONS(2861), 1, aux_sym_number_token2, - ACTIONS(2796), 1, + ACTIONS(2864), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2798), 1, + ACTIONS(2867), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2800), 1, + ACTIONS(2870), 1, anon_sym_BQUOTE, - ACTIONS(2802), 1, + ACTIONS(2873), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2808), 1, + ACTIONS(2879), 1, sym_test_operator, - ACTIONS(2810), 1, + ACTIONS(2882), 1, sym__brace_start, - ACTIONS(2887), 1, - aux_sym__simple_variable_name_token1, - STATE(1860), 1, + STATE(1918), 1, aux_sym__literal_repeat1, - ACTIONS(2299), 2, + ACTIONS(2183), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2782), 2, + ACTIONS(2843), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2804), 2, + ACTIONS(2876), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(629), 2, + STATE(633), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2780), 3, + aux_sym_for_statement_repeat1, + ACTIONS(2840), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1326), 9, + STATE(1421), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84773,7 +85109,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2297), 21, + ACTIONS(2181), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -84795,54 +85131,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [10306] = 22, - ACTIONS(3), 1, + anon_sym_LT_LT_LT, + [10321] = 29, + ACTIONS(71), 1, sym_comment, - ACTIONS(2895), 1, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(2645), 1, + sym_word, + ACTIONS(2651), 1, + anon_sym_LT_LT_LT, + ACTIONS(2653), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2898), 1, + ACTIONS(2655), 1, anon_sym_DOLLAR, - ACTIONS(2901), 1, + ACTIONS(2657), 1, sym__special_character, - ACTIONS(2904), 1, + ACTIONS(2659), 1, anon_sym_DQUOTE, - ACTIONS(2907), 1, + ACTIONS(2663), 1, aux_sym_number_token1, - ACTIONS(2910), 1, + ACTIONS(2665), 1, aux_sym_number_token2, - ACTIONS(2913), 1, + ACTIONS(2667), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2916), 1, + ACTIONS(2669), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2919), 1, + ACTIONS(2671), 1, anon_sym_BQUOTE, - ACTIONS(2922), 1, + ACTIONS(2673), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2928), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2931), 1, + ACTIONS(2677), 1, sym_test_operator, - ACTIONS(2934), 1, + ACTIONS(2679), 1, + sym__bare_dollar, + ACTIONS(2681), 1, sym__brace_start, - STATE(1860), 1, + STATE(731), 1, + aux_sym_command_repeat2, + STATE(2425), 1, aux_sym__literal_repeat1, - ACTIONS(2442), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2892), 2, + STATE(2523), 1, + sym_concatenation, + STATE(2525), 1, + sym_herestring_redirect, + STATE(5628), 1, + sym_subshell, + ACTIONS(2647), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2925), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(633), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2889), 3, + ACTIONS(2649), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2661), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(1326), 9, + ACTIONS(2675), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1404), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2159), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84852,138 +85207,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2440), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [10407] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2608), 1, - anon_sym_DQUOTE, - ACTIONS(2778), 1, - sym_variable_name, - STATE(1525), 1, - sym_string, - ACTIONS(2776), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + ACTIONS(1408), 10, sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(2774), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [10480] = 21, + [10436] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2861), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2863), 1, - anon_sym_DOLLAR, - ACTIONS(2865), 1, - sym__special_character, - ACTIONS(2867), 1, - anon_sym_DQUOTE, - ACTIONS(2869), 1, - aux_sym_number_token1, - ACTIONS(2871), 1, - aux_sym_number_token2, - ACTIONS(2873), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2875), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2877), 1, - anon_sym_BQUOTE, - ACTIONS(2879), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2885), 1, - sym__brace_start, - ACTIONS(2939), 1, - sym_test_operator, - STATE(4351), 1, + STATE(1775), 1, aux_sym__literal_repeat1, - STATE(4789), 1, + STATE(625), 2, sym_concatenation, - ACTIONS(2500), 2, + aux_sym_for_statement_repeat1, + ACTIONS(2173), 6, sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2859), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2881), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2937), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(4247), 9, + STATE(1329), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -84993,7 +85243,8 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2498), 23, + ACTIONS(2171), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -85003,10 +85254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -85017,117 +85265,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [10579] = 37, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(71), 1, - sym_comment, - ACTIONS(137), 1, - sym_variable_name, - ACTIONS(288), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(312), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(314), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(316), 1, anon_sym_DOLLAR, - ACTIONS(320), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(324), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(326), 1, aux_sym_number_token2, - ACTIONS(328), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(330), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(332), 1, anon_sym_BQUOTE, - ACTIONS(334), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(344), 1, - sym__brace_start, - ACTIONS(771), 1, - sym__special_character, - ACTIONS(775), 1, - sym_test_operator, - ACTIONS(1394), 1, - anon_sym_LT_LT_LT, - ACTIONS(1396), 1, - sym_file_descriptor, - ACTIONS(2941), 1, - sym_word, - STATE(533), 1, - sym_command_name, - STATE(951), 1, - aux_sym_command_repeat1, - STATE(1267), 1, - aux_sym__literal_repeat1, - STATE(1376), 1, - sym_concatenation, - STATE(1974), 1, - sym_variable_assignment, - STATE(5026), 1, - sym_command, - STATE(6754), 1, - sym_subscript, - ACTIONS(336), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(773), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1392), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3581), 2, - sym_file_redirect, - sym_herestring_redirect, - STATE(5014), 2, - sym_subshell, - sym_test_command, - ACTIONS(1390), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1388), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(938), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [10710] = 8, + sym_word, + [10505] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2307), 1, + ACTIONS(1698), 1, anon_sym_DQUOTE, - ACTIONS(2947), 1, + ACTIONS(2889), 1, sym_variable_name, - STATE(1432), 1, + STATE(1284), 1, sym_string, - ACTIONS(2945), 2, + ACTIONS(2887), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1235), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(2943), 9, + ACTIONS(2885), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -85176,23 +85346,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [10783] = 8, + [10578] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2307), 1, + ACTIONS(1698), 1, anon_sym_DQUOTE, - ACTIONS(2947), 1, + ACTIONS(2889), 1, sym_variable_name, - STATE(1432), 1, + STATE(1284), 1, sym_string, - ACTIONS(2945), 2, + ACTIONS(2887), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1241), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(2943), 9, + ACTIONS(2885), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -85241,23 +85411,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [10856] = 8, + [10651] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2578), 1, + ACTIONS(2468), 1, anon_sym_DQUOTE, - ACTIONS(2953), 1, + ACTIONS(2895), 1, sym_variable_name, - STATE(1585), 1, + STATE(1470), 1, sym_string, - ACTIONS(2951), 2, + ACTIONS(2893), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1235), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(2949), 9, + ACTIONS(2891), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -85278,6 +85448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -85291,7 +85462,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -85306,23 +85476,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [10929] = 8, + [10724] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2578), 1, + ACTIONS(2468), 1, anon_sym_DQUOTE, - ACTIONS(2953), 1, + ACTIONS(2895), 1, sym_variable_name, - STATE(1585), 1, + STATE(1470), 1, sym_string, - ACTIONS(2951), 2, + ACTIONS(2893), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1241), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(2949), 9, + ACTIONS(2891), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -85343,6 +85513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -85356,7 +85527,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -85371,33 +85541,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [11002] = 8, + [10797] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1765), 1, - anon_sym_DQUOTE, - ACTIONS(2959), 1, - sym_variable_name, - STATE(1213), 1, - sym_string, - ACTIONS(2957), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + STATE(1777), 1, + aux_sym__literal_repeat1, + STATE(643), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2173), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(2955), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 38, + aux_sym_heredoc_redirect_token1, + STATE(1415), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2171), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -85408,10 +85576,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -85421,10 +85587,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -85436,32 +85604,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [11075] = 6, + [10866] = 8, ACTIONS(3), 1, sym_comment, - STATE(1801), 1, - aux_sym__literal_repeat1, - STATE(651), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2096), 6, - sym_file_descriptor, + ACTIONS(2695), 1, + anon_sym_DQUOTE, + ACTIONS(2901), 1, sym_variable_name, + STATE(1555), 1, + sym_string, + ACTIONS(2899), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - STATE(1399), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2094), 37, + ACTIONS(2897), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -85472,7 +85641,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -85482,12 +85654,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -85499,23 +85669,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [11144] = 8, + [10939] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1765), 1, + ACTIONS(2695), 1, anon_sym_DQUOTE, - ACTIONS(2959), 1, + ACTIONS(2901), 1, sym_variable_name, - STATE(1213), 1, + STATE(1555), 1, sym_string, - ACTIONS(2957), 2, + ACTIONS(2899), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1241), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(2955), 9, + ACTIONS(2897), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -85564,91 +85734,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [11217] = 37, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(71), 1, + [11012] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(312), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(314), 1, + ACTIONS(2909), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(316), 1, + ACTIONS(2912), 1, anon_sym_DOLLAR, - ACTIONS(320), 1, + ACTIONS(2915), 1, + sym__special_character, + ACTIONS(2918), 1, anon_sym_DQUOTE, - ACTIONS(324), 1, + ACTIONS(2921), 1, aux_sym_number_token1, - ACTIONS(326), 1, + ACTIONS(2924), 1, aux_sym_number_token2, - ACTIONS(328), 1, + ACTIONS(2927), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(330), 1, + ACTIONS(2930), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(332), 1, + ACTIONS(2933), 1, anon_sym_BQUOTE, - ACTIONS(334), 1, + ACTIONS(2936), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(344), 1, - sym__brace_start, - ACTIONS(1015), 1, - sym__special_character, - ACTIONS(1021), 1, - sym_variable_name, - ACTIONS(1023), 1, + ACTIONS(2942), 1, sym_test_operator, - ACTIONS(1394), 1, - anon_sym_LT_LT_LT, - ACTIONS(1396), 1, - sym_file_descriptor, - ACTIONS(2961), 1, - sym_word, - STATE(596), 1, - sym_command_name, - STATE(933), 1, - aux_sym_command_repeat1, - STATE(1267), 1, + ACTIONS(2945), 1, + sym__brace_start, + STATE(1777), 1, aux_sym__literal_repeat1, - STATE(1376), 1, - sym_concatenation, - STATE(1974), 1, - sym_variable_assignment, - STATE(5026), 1, - sym_command, - STATE(6759), 1, - sym_subscript, - ACTIONS(336), 2, + ACTIONS(2906), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2939), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1017), 2, + STATE(643), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2183), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(2903), 3, sym_raw_string, sym_ansi_c_string, - ACTIONS(1392), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3581), 2, - sym_file_redirect, - sym_herestring_redirect, - STATE(5014), 2, - sym_subshell, - sym_test_command, - ACTIONS(1390), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1388), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(1717), 9, + sym_word, + STATE(1415), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -85658,20 +85790,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [11348] = 6, + ACTIONS(2181), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [11111] = 6, ACTIONS(3), 1, sym_comment, - STATE(1643), 1, + STATE(1775), 1, aux_sym__literal_repeat1, - STATE(1776), 1, + STATE(625), 2, sym_concatenation, - ACTIONS(2500), 5, + aux_sym_for_statement_repeat1, + ACTIONS(2169), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(1184), 9, + STATE(1329), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -85681,7 +85837,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2498), 39, + ACTIONS(2167), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -85693,8 +85849,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -85721,31 +85875,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [11417] = 6, + [11180] = 8, ACTIONS(3), 1, sym_comment, - STATE(1744), 1, - aux_sym__literal_repeat1, - STATE(627), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2096), 5, - sym_file_descriptor, + ACTIONS(2950), 1, + anon_sym_DQUOTE, + ACTIONS(2954), 1, sym_variable_name, + STATE(1459), 1, + sym_string, + ACTIONS(2952), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1370), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2094), 38, + ACTIONS(2948), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -85756,8 +85912,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -85767,12 +85924,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -85784,23 +85940,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [11486] = 8, + [11253] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2965), 1, + ACTIONS(2950), 1, anon_sym_DQUOTE, - ACTIONS(2969), 1, + ACTIONS(2954), 1, sym_variable_name, - STATE(1454), 1, + STATE(1459), 1, sym_string, - ACTIONS(2967), 2, + ACTIONS(2952), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1241), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(2963), 9, + ACTIONS(2948), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -85849,30 +86005,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [11559] = 6, + [11326] = 8, ACTIONS(3), 1, sym_comment, - STATE(1606), 1, - aux_sym__literal_repeat1, - STATE(1767), 1, - sym_concatenation, - ACTIONS(2496), 5, - sym_file_descriptor, + ACTIONS(2816), 1, + anon_sym_DQUOTE, + ACTIONS(2960), 1, sym_variable_name, + STATE(1690), 1, + sym_string, + ACTIONS(2958), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1275), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2494), 39, + ACTIONS(2956), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -85895,12 +86054,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -85912,31 +86070,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [11628] = 6, + [11399] = 8, ACTIONS(3), 1, sym_comment, - STATE(1744), 1, - aux_sym__literal_repeat1, - STATE(627), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2074), 5, - sym_file_descriptor, + ACTIONS(2816), 1, + anon_sym_DQUOTE, + ACTIONS(2960), 1, sym_variable_name, + STATE(1690), 1, + sym_string, + ACTIONS(2958), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1370), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2072), 38, + ACTIONS(2956), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -85947,8 +86107,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -85958,12 +86119,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -85975,78 +86135,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [11697] = 37, - ACTIONS(71), 1, - sym_comment, - ACTIONS(671), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(677), 1, + [11472] = 37, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(693), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(695), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(705), 1, + ACTIONS(71), 1, + sym_comment, + ACTIONS(331), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(355), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(707), 1, + ACTIONS(357), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(709), 1, + ACTIONS(359), 1, anon_sym_DOLLAR, - ACTIONS(711), 1, + ACTIONS(361), 1, sym__special_character, - ACTIONS(713), 1, + ACTIONS(363), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(367), 1, aux_sym_number_token1, - ACTIONS(719), 1, + ACTIONS(369), 1, aux_sym_number_token2, - ACTIONS(721), 1, + ACTIONS(371), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(723), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(725), 1, + ACTIONS(375), 1, anon_sym_BQUOTE, - ACTIONS(727), 1, + ACTIONS(377), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(733), 1, + ACTIONS(383), 1, sym_variable_name, - ACTIONS(735), 1, + ACTIONS(385), 1, sym_test_operator, - ACTIONS(737), 1, + ACTIONS(387), 1, sym__brace_start, ACTIONS(1394), 1, anon_sym_LT_LT_LT, ACTIONS(1396), 1, sym_file_descriptor, - ACTIONS(2971), 1, + ACTIONS(2804), 1, sym_word, - STATE(530), 1, + STATE(552), 1, sym_command_name, - STATE(989), 1, + STATE(1001), 1, aux_sym_command_repeat1, - STATE(1026), 1, + STATE(1179), 1, aux_sym__literal_repeat1, - STATE(1169), 1, + STATE(1398), 1, sym_concatenation, - STATE(1909), 1, + STATE(2207), 1, sym_variable_assignment, - STATE(5046), 1, + STATE(5029), 1, sym_command, - STATE(6760), 1, + STATE(6785), 1, sym_subscript, - ACTIONS(715), 2, + ACTIONS(365), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(729), 2, + ACTIONS(379), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1392), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(3581), 2, + STATE(3591), 2, sym_file_redirect, sym_herestring_redirect, - STATE(5071), 2, + STATE(5028), 2, sym_subshell, sym_test_command, ACTIONS(1390), 3, @@ -86059,7 +86219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(852), 9, + STATE(1010), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -86069,54 +86229,91 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [11828] = 21, - ACTIONS(3), 1, + [11603] = 37, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(71), 1, sym_comment, - ACTIONS(2979), 1, + ACTIONS(137), 1, + sym_variable_name, + ACTIONS(331), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(355), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(357), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2982), 1, + ACTIONS(359), 1, anon_sym_DOLLAR, - ACTIONS(2985), 1, - sym__special_character, - ACTIONS(2988), 1, + ACTIONS(363), 1, anon_sym_DQUOTE, - ACTIONS(2991), 1, + ACTIONS(367), 1, aux_sym_number_token1, - ACTIONS(2994), 1, + ACTIONS(369), 1, aux_sym_number_token2, - ACTIONS(2997), 1, + ACTIONS(371), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3000), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3003), 1, + ACTIONS(375), 1, anon_sym_BQUOTE, - ACTIONS(3006), 1, + ACTIONS(377), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3012), 1, - sym_test_operator, - ACTIONS(3015), 1, + ACTIONS(387), 1, sym__brace_start, - STATE(1801), 1, + ACTIONS(777), 1, + sym__special_character, + ACTIONS(781), 1, + sym_test_operator, + ACTIONS(1394), 1, + anon_sym_LT_LT_LT, + ACTIONS(1396), 1, + sym_file_descriptor, + ACTIONS(2962), 1, + sym_word, + STATE(539), 1, + sym_command_name, + STATE(984), 1, + aux_sym_command_repeat1, + STATE(1179), 1, aux_sym__literal_repeat1, - ACTIONS(2976), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3009), 2, + STATE(1398), 1, + sym_concatenation, + STATE(2207), 1, + sym_variable_assignment, + STATE(5029), 1, + sym_command, + STATE(6758), 1, + sym_subscript, + ACTIONS(379), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(651), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2973), 3, + ACTIONS(779), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - ACTIONS(2216), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - STATE(1399), 9, + ACTIONS(1392), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3591), 2, + sym_file_redirect, + sym_herestring_redirect, + STATE(5028), 2, + sym_subshell, + sym_test_command, + ACTIONS(1390), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1388), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(980), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -86126,54 +86323,31 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2214), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [11927] = 8, + [11734] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2965), 1, - anon_sym_DQUOTE, - ACTIONS(2969), 1, - sym_variable_name, - STATE(1454), 1, - sym_string, - ACTIONS(2967), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + STATE(1777), 1, + aux_sym__literal_repeat1, + STATE(643), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2169), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(2963), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 38, + aux_sym_heredoc_redirect_token1, + STATE(1415), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2167), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -86184,9 +86358,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -86196,11 +86369,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -86212,52 +86386,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [12000] = 21, + [11803] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2572), 1, + ACTIONS(2970), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2973), 1, anon_sym_DOLLAR, - ACTIONS(2576), 1, + ACTIONS(2976), 1, sym__special_character, - ACTIONS(2578), 1, + ACTIONS(2979), 1, anon_sym_DQUOTE, - ACTIONS(2580), 1, + ACTIONS(2982), 1, aux_sym_number_token1, - ACTIONS(2582), 1, + ACTIONS(2985), 1, aux_sym_number_token2, - ACTIONS(2584), 1, + ACTIONS(2988), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2586), 1, + ACTIONS(2991), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2588), 1, + ACTIONS(2994), 1, anon_sym_BQUOTE, - ACTIONS(2590), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2594), 1, + ACTIONS(3003), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3006), 1, sym_test_operator, - ACTIONS(2596), 1, + ACTIONS(3009), 1, sym__brace_start, - STATE(1899), 1, + STATE(1784), 1, aux_sym__literal_repeat1, - ACTIONS(2096), 2, + ACTIONS(2353), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2570), 2, + ACTIONS(2967), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2592), 2, + ACTIONS(3000), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(621), 2, + STATE(652), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2568), 3, + aux_sym_unset_command_repeat1, + ACTIONS(2964), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1394), 9, + STATE(1442), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -86267,7 +86443,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2094), 22, + ACTIONS(2351), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86289,80 +86465,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [12099] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1801), 1, - aux_sym__literal_repeat1, - STATE(651), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2074), 6, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - STATE(1399), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2072), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [12168] = 5, + [11904] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(2725), 2, + ACTIONS(2836), 1, + anon_sym_SEMI_SEMI, + ACTIONS(2838), 3, + anon_sym_RPAREN, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(2727), 2, - anon_sym_esac, - anon_sym_SEMI_SEMI, - ACTIONS(2717), 23, + ACTIONS(2753), 23, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -86386,7 +86498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2715), 28, + ACTIONS(2751), 28, anon_sym_for, anon_sym_select, anon_sym_LT, @@ -86415,78 +86527,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [12235] = 37, - ACTIONS(71), 1, - sym_comment, - ACTIONS(409), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(415), 1, + [11971] = 37, + ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(437), 1, + ACTIONS(33), 1, anon_sym_LBRACK, - ACTIONS(439), 1, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(449), 1, + ACTIONS(71), 1, + sym_comment, + ACTIONS(331), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(355), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(451), 1, + ACTIONS(357), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(453), 1, + ACTIONS(359), 1, anon_sym_DOLLAR, - ACTIONS(455), 1, - sym__special_character, - ACTIONS(457), 1, + ACTIONS(363), 1, anon_sym_DQUOTE, - ACTIONS(461), 1, + ACTIONS(367), 1, aux_sym_number_token1, - ACTIONS(463), 1, + ACTIONS(369), 1, aux_sym_number_token2, - ACTIONS(465), 1, + ACTIONS(371), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(467), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(469), 1, + ACTIONS(375), 1, anon_sym_BQUOTE, - ACTIONS(471), 1, + ACTIONS(377), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(477), 1, + ACTIONS(387), 1, + sym__brace_start, + ACTIONS(1015), 1, + sym__special_character, + ACTIONS(1021), 1, sym_variable_name, - ACTIONS(479), 1, + ACTIONS(1023), 1, sym_test_operator, - ACTIONS(481), 1, - sym__brace_start, ACTIONS(1394), 1, anon_sym_LT_LT_LT, ACTIONS(1396), 1, sym_file_descriptor, - ACTIONS(3018), 1, + ACTIONS(3012), 1, sym_word, - STATE(528), 1, + STATE(611), 1, sym_command_name, - STATE(925), 1, + STATE(1004), 1, aux_sym_command_repeat1, - STATE(926), 1, + STATE(1179), 1, aux_sym__literal_repeat1, - STATE(1082), 1, + STATE(1398), 1, sym_concatenation, - STATE(1703), 1, + STATE(2207), 1, sym_variable_assignment, - STATE(4945), 1, + STATE(5029), 1, sym_command, - STATE(6736), 1, + STATE(6779), 1, sym_subscript, - ACTIONS(459), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(473), 2, + ACTIONS(379), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(1017), 2, + sym_raw_string, + sym_ansi_c_string, ACTIONS(1392), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(3581), 2, + STATE(3591), 2, sym_file_redirect, sym_herestring_redirect, - STATE(4943), 2, + STATE(5028), 2, sym_subshell, sym_test_command, ACTIONS(1390), 3, @@ -86499,7 +86611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(815), 9, + STATE(1693), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -86509,299 +86621,148 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [12366] = 21, - ACTIONS(3), 1, + [12102] = 37, + ACTIONS(71), 1, sym_comment, - ACTIONS(2602), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2604), 1, - anon_sym_DOLLAR, - ACTIONS(2606), 1, - sym__special_character, - ACTIONS(2608), 1, - anon_sym_DQUOTE, - ACTIONS(2610), 1, - aux_sym_number_token1, - ACTIONS(2612), 1, - aux_sym_number_token2, - ACTIONS(2614), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2616), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2618), 1, - anon_sym_BQUOTE, - ACTIONS(2620), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2624), 1, - sym_test_operator, - ACTIONS(2626), 1, - sym__brace_start, - STATE(1803), 1, - aux_sym__literal_repeat1, - ACTIONS(2096), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2600), 2, + ACTIONS(169), 1, + anon_sym_LBRACK, + ACTIONS(173), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(217), 1, + sym_variable_name, + ACTIONS(1027), 1, anon_sym_LPAREN_LPAREN, + ACTIONS(1033), 1, + anon_sym_LPAREN, + ACTIONS(1041), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2622), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(630), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2598), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1381), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2094), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [12465] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3024), 1, + ACTIONS(1043), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3026), 1, + ACTIONS(1045), 1, anon_sym_DOLLAR, - ACTIONS(3028), 1, + ACTIONS(1047), 1, sym__special_character, - ACTIONS(3030), 1, + ACTIONS(1049), 1, anon_sym_DQUOTE, - ACTIONS(3032), 1, + ACTIONS(1053), 1, aux_sym_number_token1, - ACTIONS(3034), 1, + ACTIONS(1055), 1, aux_sym_number_token2, - ACTIONS(3036), 1, + ACTIONS(1057), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3038), 1, + ACTIONS(1059), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3040), 1, + ACTIONS(1061), 1, anon_sym_BQUOTE, - ACTIONS(3042), 1, + ACTIONS(1063), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3046), 1, + ACTIONS(1069), 1, sym_test_operator, - ACTIONS(3048), 1, + ACTIONS(1071), 1, sym__brace_start, - STATE(4597), 1, + ACTIONS(1394), 1, + anon_sym_LT_LT_LT, + ACTIONS(1396), 1, + sym_file_descriptor, + ACTIONS(3014), 1, + sym_word, + STATE(634), 1, + sym_command_name, + STATE(950), 1, + aux_sym_command_repeat1, + STATE(2277), 1, aux_sym__literal_repeat1, - STATE(4964), 1, + STATE(2352), 1, sym_concatenation, - ACTIONS(2496), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3022), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3044), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3020), 3, + STATE(2929), 1, + sym_variable_assignment, + STATE(5685), 1, + sym_command, + STATE(6766), 1, + sym_subscript, + ACTIONS(1051), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(4310), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2494), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(1065), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1392), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3591), 2, + sym_file_redirect, + sym_herestring_redirect, + STATE(5682), 2, + sym_subshell, + sym_test_command, + ACTIONS(1390), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1388), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [12563] = 36, - ACTIONS(71), 1, - sym_comment, - ACTIONS(171), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, - sym_test_operator, - ACTIONS(3050), 1, - anon_sym_LPAREN, - ACTIONS(3052), 1, - anon_sym_BANG, - ACTIONS(3058), 1, - anon_sym_TILDE, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - ACTIONS(3062), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3064), 1, - sym_variable_name, - STATE(2387), 1, - sym_command_substitution, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - STATE(3158), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3054), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(3056), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2397), 4, + STATE(1853), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, - STATE(2456), 4, - sym_arithmetic_expansion, - sym_brace_expression, - sym_translated_string, + sym_command_substitution, sym_process_substitution, - STATE(2836), 4, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [12691] = 21, + [12233] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3072), 1, + ACTIONS(2617), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3075), 1, + ACTIONS(2619), 1, anon_sym_DOLLAR, - ACTIONS(3078), 1, + ACTIONS(2621), 1, sym__special_character, - ACTIONS(3081), 1, + ACTIONS(2623), 1, anon_sym_DQUOTE, - ACTIONS(3084), 1, + ACTIONS(2625), 1, aux_sym_number_token1, - ACTIONS(3087), 1, + ACTIONS(2627), 1, aux_sym_number_token2, - ACTIONS(3090), 1, + ACTIONS(2629), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3093), 1, + ACTIONS(2631), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3096), 1, + ACTIONS(2633), 1, anon_sym_BQUOTE, - ACTIONS(3099), 1, + ACTIONS(2635), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3105), 1, + ACTIONS(2641), 1, sym_test_operator, - ACTIONS(3108), 1, + ACTIONS(2643), 1, sym__brace_start, - STATE(2147), 1, + ACTIONS(3016), 1, + aux_sym__simple_variable_name_token1, + STATE(1784), 1, aux_sym__literal_repeat1, - ACTIONS(2216), 2, + ACTIONS(2507), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3069), 2, + ACTIONS(2615), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3102), 2, + ACTIONS(2637), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(660), 2, + STATE(616), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3066), 3, + aux_sym_unset_command_repeat1, + ACTIONS(2613), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1526), 9, + STATE(1442), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -86811,7 +86772,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2214), 21, + ACTIONS(2505), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86833,115 +86794,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [12789] = 36, + [12334] = 37, ACTIONS(71), 1, sym_comment, - ACTIONS(171), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(1141), 1, + ACTIONS(671), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(677), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_LBRACK, + ACTIONS(695), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(705), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(707), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(709), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + ACTIONS(711), 1, + sym__special_character, + ACTIONS(713), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(717), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(719), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(725), 1, + anon_sym_BQUOTE, + ACTIONS(727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, + ACTIONS(733), 1, + sym_variable_name, + ACTIONS(735), 1, + sym_test_operator, + ACTIONS(737), 1, sym__brace_start, - ACTIONS(1171), 1, + ACTIONS(1394), 1, + anon_sym_LT_LT_LT, + ACTIONS(1396), 1, + sym_file_descriptor, + ACTIONS(3018), 1, sym_word, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, - sym_test_operator, - ACTIONS(3050), 1, - anon_sym_LPAREN, - ACTIONS(3052), 1, - anon_sym_BANG, - ACTIONS(3058), 1, - anon_sym_TILDE, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(3111), 1, - aux_sym__simple_variable_name_token1, - STATE(2387), 1, - sym_command_substitution, - STATE(2484), 1, + STATE(531), 1, + sym_command_name, + STATE(992), 1, + aux_sym_command_repeat1, + STATE(1127), 1, aux_sym__literal_repeat1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - STATE(3158), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1183), 2, + STATE(1231), 1, + sym_concatenation, + STATE(1794), 1, + sym_variable_assignment, + STATE(5073), 1, + sym_command, + STATE(6746), 1, + sym_subscript, + ACTIONS(715), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(3054), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(3056), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2397), 4, + ACTIONS(729), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1392), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3591), 2, + sym_file_redirect, + sym_herestring_redirect, + STATE(5072), 2, + sym_subshell, + sym_test_command, + ACTIONS(1390), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1388), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(859), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, - STATE(2456), 4, - sym_arithmetic_expansion, - sym_brace_expression, - sym_translated_string, + sym_command_substitution, sym_process_substitution, - STATE(2799), 4, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [12917] = 8, + [12465] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3115), 1, + ACTIONS(3022), 1, anon_sym_DQUOTE, - ACTIONS(3119), 1, + ACTIONS(3026), 1, sym_variable_name, - STATE(1864), 1, + STATE(1747), 1, sym_string, - ACTIONS(3117), 2, + ACTIONS(3024), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1235), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3113), 9, + ACTIONS(3020), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -86989,119 +86952,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [12989] = 8, + [12537] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1835), 1, + ACTIONS(3022), 1, anon_sym_DQUOTE, - ACTIONS(3125), 1, - sym_variable_name, - STATE(1416), 1, - sym_string, - ACTIONS(3123), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(3121), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [13061] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3133), 1, + ACTIONS(3032), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3136), 1, + ACTIONS(3034), 1, anon_sym_DOLLAR, - ACTIONS(3139), 1, + ACTIONS(3036), 1, sym__special_character, - ACTIONS(3142), 1, - anon_sym_DQUOTE, - ACTIONS(3145), 1, + ACTIONS(3038), 1, aux_sym_number_token1, - ACTIONS(3148), 1, + ACTIONS(3040), 1, aux_sym_number_token2, - ACTIONS(3151), 1, + ACTIONS(3042), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3154), 1, + ACTIONS(3044), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3157), 1, + ACTIONS(3046), 1, anon_sym_BQUOTE, - ACTIONS(3160), 1, + ACTIONS(3048), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3166), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3169), 1, + ACTIONS(3052), 1, sym_test_operator, - ACTIONS(3172), 1, + ACTIONS(3054), 1, sym__brace_start, - STATE(2190), 1, + STATE(2006), 1, aux_sym__literal_repeat1, - ACTIONS(3130), 2, + ACTIONS(2169), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3030), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3163), 2, + ACTIONS(3050), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(664), 2, + STATE(661), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2442), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(3127), 3, + aux_sym_for_statement_repeat1, + ACTIONS(3028), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1681), 9, + STATE(1578), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -87111,7 +87007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2440), 19, + ACTIONS(2167), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87121,6 +87017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -87131,51 +87028,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [13161] = 21, + anon_sym_LT_LT_LT, + [12635] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3024), 1, + ACTIONS(3022), 1, + anon_sym_DQUOTE, + ACTIONS(3032), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3026), 1, + ACTIONS(3034), 1, anon_sym_DOLLAR, - ACTIONS(3028), 1, + ACTIONS(3036), 1, sym__special_character, - ACTIONS(3030), 1, - anon_sym_DQUOTE, - ACTIONS(3032), 1, + ACTIONS(3038), 1, aux_sym_number_token1, - ACTIONS(3034), 1, + ACTIONS(3040), 1, aux_sym_number_token2, - ACTIONS(3036), 1, + ACTIONS(3042), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3038), 1, + ACTIONS(3044), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3040), 1, + ACTIONS(3046), 1, anon_sym_BQUOTE, - ACTIONS(3042), 1, - anon_sym_DOLLAR_BQUOTE, ACTIONS(3048), 1, - sym__brace_start, - ACTIONS(3177), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3052), 1, sym_test_operator, - STATE(4596), 1, + ACTIONS(3054), 1, + sym__brace_start, + STATE(2006), 1, aux_sym__literal_repeat1, - STATE(4914), 1, - sym_concatenation, - ACTIONS(2500), 2, + ACTIONS(2173), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3022), 2, + ACTIONS(3030), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3044), 2, + ACTIONS(3050), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3175), 3, + STATE(661), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3028), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4331), 9, + STATE(1578), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -87185,7 +87084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2498), 22, + ACTIONS(2171), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87195,9 +87094,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -87208,118 +87106,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [13259] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1835), 1, - anon_sym_DQUOTE, - ACTIONS(3125), 1, - sym_variable_name, - STATE(1416), 1, - sym_string, - ACTIONS(3123), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(3121), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [13331] = 22, + [12733] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3183), 1, + ACTIONS(3062), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3185), 1, + ACTIONS(3065), 1, anon_sym_DOLLAR, - ACTIONS(3187), 1, + ACTIONS(3068), 1, sym__special_character, - ACTIONS(3189), 1, + ACTIONS(3071), 1, anon_sym_DQUOTE, - ACTIONS(3191), 1, + ACTIONS(3074), 1, aux_sym_number_token1, - ACTIONS(3193), 1, + ACTIONS(3077), 1, aux_sym_number_token2, - ACTIONS(3195), 1, + ACTIONS(3080), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3197), 1, + ACTIONS(3083), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3199), 1, + ACTIONS(3086), 1, anon_sym_BQUOTE, - ACTIONS(3201), 1, + ACTIONS(3089), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3205), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3207), 1, + ACTIONS(3095), 1, sym_test_operator, - ACTIONS(3209), 1, + ACTIONS(3098), 1, sym__brace_start, - STATE(1966), 1, + STATE(2006), 1, aux_sym__literal_repeat1, - ACTIONS(2564), 2, + ACTIONS(2183), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3181), 2, + ACTIONS(3059), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3203), 2, + ACTIONS(3092), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(709), 2, + STATE(661), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3179), 3, + aux_sym_for_statement_repeat1, + ACTIONS(3056), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1650), 9, + STATE(1578), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -87329,55 +87161,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2562), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [13431] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3115), 1, - anon_sym_DQUOTE, - ACTIONS(3119), 1, - sym_variable_name, - STATE(1864), 1, - sym_string, - ACTIONS(3117), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(3113), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 37, - anon_sym_LPAREN_LPAREN, + ACTIONS(2181), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87398,40 +87182,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [13503] = 8, + [12831] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3213), 1, + ACTIONS(3103), 1, anon_sym_DQUOTE, - ACTIONS(3217), 1, + ACTIONS(3107), 1, sym_variable_name, - STATE(1919), 1, + STATE(1501), 1, sym_string, - ACTIONS(3215), 2, + ACTIONS(3105), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 4, + ACTIONS(1235), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3211), 9, + ACTIONS(3101), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -87441,7 +87209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 36, + ACTIONS(1227), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -87452,6 +87220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -87478,23 +87247,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [13575] = 8, + [12903] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2790), 1, + ACTIONS(3103), 1, anon_sym_DQUOTE, - ACTIONS(3223), 1, + ACTIONS(3107), 1, sym_variable_name, - STATE(1600), 1, + STATE(1501), 1, sym_string, - ACTIONS(3221), 2, + ACTIONS(3105), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1241), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3219), 9, + ACTIONS(3101), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -87515,9 +87284,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -87528,6 +87296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -87542,28 +87311,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [13647] = 36, + [12975] = 36, ACTIONS(71), 1, sym_comment, ACTIONS(231), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(1141), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, + ACTIONS(1139), 1, sym__brace_start, ACTIONS(1171), 1, sym_word, @@ -87571,115 +87340,114 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, ACTIONS(1185), 1, sym_test_operator, - ACTIONS(3050), 1, + ACTIONS(3109), 1, anon_sym_LPAREN, - ACTIONS(3052), 1, + ACTIONS(3111), 1, anon_sym_BANG, - ACTIONS(3058), 1, + ACTIONS(3117), 1, anon_sym_TILDE, - ACTIONS(3060), 1, + ACTIONS(3119), 1, anon_sym_BQUOTE, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(3225), 1, + ACTIONS(3121), 1, aux_sym__simple_variable_name_token1, - STATE(2387), 1, + ACTIONS(3123), 1, + sym_variable_name, + STATE(2369), 1, sym_command_substitution, - STATE(2484), 1, + STATE(2548), 1, aux_sym__literal_repeat1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - STATE(3139), 1, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + STATE(2997), 1, sym__expression, - ACTIONS(1129), 2, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1183), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(3054), 2, + ACTIONS(3113), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(3056), 2, + ACTIONS(3115), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2397), 4, + STATE(2427), 4, sym_string, sym_number, sym_simple_expansion, sym_expansion, - STATE(2456), 4, + STATE(2530), 4, sym_arithmetic_expansion, sym_brace_expression, sym_translated_string, sym_process_substitution, - STATE(2756), 4, + STATE(2779), 4, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, sym__arithmetic_parenthesized_expression, - STATE(2594), 6, + STATE(2674), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [13775] = 21, + [13103] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3129), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3236), 1, + ACTIONS(3131), 1, anon_sym_DOLLAR, - ACTIONS(3239), 1, + ACTIONS(3133), 1, sym__special_character, - ACTIONS(3242), 1, + ACTIONS(3135), 1, anon_sym_DQUOTE, - ACTIONS(3245), 1, + ACTIONS(3137), 1, aux_sym_number_token1, - ACTIONS(3248), 1, + ACTIONS(3139), 1, aux_sym_number_token2, - ACTIONS(3251), 1, + ACTIONS(3141), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3254), 1, + ACTIONS(3143), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3257), 1, + ACTIONS(3145), 1, anon_sym_BQUOTE, - ACTIONS(3260), 1, + ACTIONS(3147), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3266), 1, + ACTIONS(3151), 1, sym_test_operator, - ACTIONS(3269), 1, + ACTIONS(3153), 1, sym__brace_start, - STATE(2161), 1, + STATE(4422), 1, aux_sym__literal_repeat1, - ACTIONS(2216), 2, + STATE(4874), 1, + sym_concatenation, + ACTIONS(2303), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3230), 2, + ACTIONS(3127), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3263), 2, + ACTIONS(3149), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(672), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3227), 3, + ACTIONS(3125), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1711), 9, + STATE(4358), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -87689,7 +87457,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2214), 21, + ACTIONS(2301), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87699,8 +87467,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -87710,22 +87480,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [13873] = 6, + [13201] = 21, ACTIONS(3), 1, sym_comment, - STATE(1744), 1, + ACTIONS(3129), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3131), 1, + anon_sym_DOLLAR, + ACTIONS(3133), 1, + sym__special_character, + ACTIONS(3135), 1, + anon_sym_DQUOTE, + ACTIONS(3137), 1, + aux_sym_number_token1, + ACTIONS(3139), 1, + aux_sym_number_token2, + ACTIONS(3141), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3143), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3145), 1, + anon_sym_BQUOTE, + ACTIONS(3147), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3153), 1, + sym__brace_start, + ACTIONS(3157), 1, + sym_test_operator, + STATE(4429), 1, aux_sym__literal_repeat1, - STATE(704), 2, + STATE(4991), 1, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2074), 5, + ACTIONS(2307), 2, sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, aux_sym_heredoc_redirect_token1, - STATE(1688), 9, + ACTIONS(3127), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3149), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3155), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4372), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -87735,8 +87534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2072), 37, - anon_sym_LPAREN_LPAREN, + ACTIONS(2305), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87746,7 +87544,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -87756,51 +87557,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [13299] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3163), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3165), 1, anon_sym_DOLLAR, + ACTIONS(3167), 1, sym__special_character, + ACTIONS(3169), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3171), 1, aux_sym_number_token1, + ACTIONS(3173), 1, aux_sym_number_token2, + ACTIONS(3175), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3177), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3179), 1, anon_sym_BQUOTE, + ACTIONS(3181), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3185), 1, + sym_test_operator, + ACTIONS(3187), 1, + sym__brace_start, + STATE(1945), 1, + aux_sym__literal_repeat1, + ACTIONS(3161), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3183), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(688), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2169), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(3159), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [13941] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2790), 1, - anon_sym_DQUOTE, - ACTIONS(3223), 1, - sym_variable_name, - STATE(1600), 1, + STATE(1574), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(3221), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(3219), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 37, - anon_sym_LPAREN_LPAREN, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2167), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87811,8 +87624,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -87822,77 +87633,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [14013] = 26, + anon_sym_LT_LT_LT, + [13397] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1549), 1, + ACTIONS(3195), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, + ACTIONS(3198), 1, anon_sym_DOLLAR, - ACTIONS(1555), 1, + ACTIONS(3201), 1, + sym__special_character, + ACTIONS(3204), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, + ACTIONS(3207), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(3210), 1, aux_sym_number_token2, - ACTIONS(1561), 1, + ACTIONS(3213), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, + ACTIONS(3216), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1565), 1, + ACTIONS(3219), 1, anon_sym_BQUOTE, - ACTIONS(1567), 1, + ACTIONS(3222), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1573), 1, - sym__bare_dollar, - ACTIONS(1575), 1, - sym__brace_start, - ACTIONS(2420), 1, - anon_sym_LT_LT_LT, - ACTIONS(2422), 1, - sym__special_character, - ACTIONS(2424), 1, + ACTIONS(3228), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3231), 1, sym_test_operator, - STATE(703), 1, - aux_sym_command_repeat2, - STATE(1321), 1, + ACTIONS(3234), 1, + sym__brace_start, + STATE(2241), 1, aux_sym__literal_repeat1, - STATE(1712), 1, - sym_herestring_redirect, - STATE(1716), 1, - sym_concatenation, - ACTIONS(1543), 2, + ACTIONS(3192), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1569), 2, + ACTIONS(3225), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1615), 2, + STATE(668), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2353), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2418), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2416), 3, + ACTIONS(3189), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1794), 9, + STATE(1695), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -87902,14 +87692,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1613), 16, + ACTIONS(2351), 19, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -87919,33 +87712,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [14121] = 8, + [13497] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3274), 1, - anon_sym_DQUOTE, - ACTIONS(3278), 1, - sym_variable_name, - STATE(1825), 1, - sym_string, - ACTIONS(3276), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + STATE(1787), 1, + aux_sym__literal_repeat1, + STATE(2251), 1, + sym_concatenation, + ACTIONS(2303), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(3272), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 37, + aux_sym_heredoc_redirect_token1, + STATE(1435), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2301), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -87956,9 +87746,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -87968,10 +87757,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -87983,33 +87774,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [14193] = 8, + [13565] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3282), 1, - anon_sym_DQUOTE, - ACTIONS(3286), 1, - sym_variable_name, - STATE(1628), 1, - sym_string, - ACTIONS(3284), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + STATE(1792), 1, + aux_sym__literal_repeat1, + STATE(1944), 1, + sym_concatenation, + ACTIONS(2307), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(3280), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 37, + aux_sym_heredoc_redirect_token1, + STATE(1399), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2305), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -88031,11 +87819,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -88047,53 +87836,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [14265] = 21, + [13633] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3294), 1, + ACTIONS(3241), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3297), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR, - ACTIONS(3300), 1, + ACTIONS(3245), 1, sym__special_character, - ACTIONS(3303), 1, + ACTIONS(3247), 1, anon_sym_DQUOTE, - ACTIONS(3306), 1, + ACTIONS(3249), 1, aux_sym_number_token1, - ACTIONS(3309), 1, + ACTIONS(3251), 1, aux_sym_number_token2, - ACTIONS(3312), 1, + ACTIONS(3253), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3315), 1, + ACTIONS(3255), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3318), 1, + ACTIONS(3257), 1, anon_sym_BQUOTE, - ACTIONS(3321), 1, + ACTIONS(3259), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3327), 1, + ACTIONS(3263), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3265), 1, sym_test_operator, - ACTIONS(3330), 1, + ACTIONS(3267), 1, sym__brace_start, - STATE(2024), 1, + STATE(2250), 1, aux_sym__literal_repeat1, - ACTIONS(3291), 2, + ACTIONS(2460), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3239), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3324), 2, + ACTIONS(3261), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(678), 2, + STATE(697), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2216), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(3288), 3, + aux_sym_unset_command_repeat1, + ACTIONS(3237), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1630), 9, + STATE(1593), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -88103,55 +87893,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2214), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [14363] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3274), 1, - anon_sym_DQUOTE, - ACTIONS(3278), 1, - sym_variable_name, - STATE(1825), 1, - sym_string, - ACTIONS(3276), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(3272), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 37, - anon_sym_LPAREN_LPAREN, + ACTIONS(2458), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -88161,9 +87903,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -88173,67 +87914,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [14435] = 21, + [13733] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3274), 1, - anon_sym_DQUOTE, - ACTIONS(3337), 1, + ACTIONS(3273), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3339), 1, + ACTIONS(3275), 1, anon_sym_DOLLAR, - ACTIONS(3341), 1, + ACTIONS(3277), 1, sym__special_character, - ACTIONS(3343), 1, + ACTIONS(3279), 1, + anon_sym_DQUOTE, + ACTIONS(3281), 1, aux_sym_number_token1, - ACTIONS(3345), 1, + ACTIONS(3283), 1, aux_sym_number_token2, - ACTIONS(3347), 1, + ACTIONS(3285), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3349), 1, + ACTIONS(3287), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3351), 1, + ACTIONS(3289), 1, anon_sym_BQUOTE, - ACTIONS(3353), 1, + ACTIONS(3291), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3357), 1, + ACTIONS(3295), 1, sym_test_operator, - ACTIONS(3359), 1, + ACTIONS(3297), 1, sym__brace_start, - STATE(2147), 1, + STATE(2234), 1, aux_sym__literal_repeat1, - ACTIONS(2074), 2, + ACTIONS(2169), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3335), 2, + ACTIONS(3271), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3355), 2, + ACTIONS(3293), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(660), 2, + STATE(674), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(3333), 3, + ACTIONS(3269), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1526), 9, + STATE(1559), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -88243,7 +87969,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2072), 21, + ACTIONS(2167), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -88265,51 +87991,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [14533] = 21, + [13831] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3365), 1, + ACTIONS(3273), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3367), 1, + ACTIONS(3275), 1, anon_sym_DOLLAR, - ACTIONS(3369), 1, + ACTIONS(3277), 1, sym__special_character, - ACTIONS(3371), 1, + ACTIONS(3279), 1, anon_sym_DQUOTE, - ACTIONS(3373), 1, + ACTIONS(3281), 1, aux_sym_number_token1, - ACTIONS(3375), 1, + ACTIONS(3283), 1, aux_sym_number_token2, - ACTIONS(3377), 1, + ACTIONS(3285), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3379), 1, + ACTIONS(3287), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3381), 1, + ACTIONS(3289), 1, anon_sym_BQUOTE, - ACTIONS(3383), 1, + ACTIONS(3291), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3387), 1, + ACTIONS(3295), 1, sym_test_operator, - ACTIONS(3389), 1, + ACTIONS(3297), 1, sym__brace_start, - STATE(4507), 1, + STATE(2234), 1, aux_sym__literal_repeat1, - STATE(4879), 1, - sym_concatenation, - ACTIONS(2496), 2, + ACTIONS(2173), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3363), 2, + ACTIONS(3271), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3385), 2, + ACTIONS(3293), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3361), 3, + STATE(674), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3269), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4271), 9, + STATE(1559), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -88319,7 +88046,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2494), 22, + ACTIONS(2171), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -88329,7 +88056,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -88342,21 +88068,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [14631] = 6, + [13929] = 21, ACTIONS(3), 1, sym_comment, - STATE(1826), 1, - aux_sym__literal_repeat1, - STATE(2201), 1, - sym_concatenation, - ACTIONS(2496), 6, - sym_file_descriptor, - sym_variable_name, + ACTIONS(3305), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3308), 1, + anon_sym_DOLLAR, + ACTIONS(3311), 1, + sym__special_character, + ACTIONS(3314), 1, + anon_sym_DQUOTE, + ACTIONS(3317), 1, + aux_sym_number_token1, + ACTIONS(3320), 1, + aux_sym_number_token2, + ACTIONS(3323), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3326), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3329), 1, + anon_sym_BQUOTE, + ACTIONS(3332), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3338), 1, sym_test_operator, + ACTIONS(3341), 1, sym__brace_start, - ts_builtin_sym_end, + STATE(2234), 1, + aux_sym__literal_repeat1, + ACTIONS(2183), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(1446), 9, + ACTIONS(3302), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3335), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(674), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3299), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1559), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -88366,8 +88123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2494), 37, - anon_sym_LPAREN_LPAREN, + ACTIONS(2181), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -88378,6 +88134,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -88387,52 +88145,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [14027] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3348), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3350), 1, anon_sym_DOLLAR, + ACTIONS(3352), 1, sym__special_character, + ACTIONS(3354), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3356), 1, aux_sym_number_token1, + ACTIONS(3358), 1, aux_sym_number_token2, + ACTIONS(3360), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3362), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3364), 1, anon_sym_BQUOTE, + ACTIONS(3366), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3370), 1, + sym_test_operator, + ACTIONS(3372), 1, + sym__brace_start, + STATE(4547), 1, + aux_sym__literal_repeat1, + STATE(4929), 1, + sym_concatenation, + ACTIONS(2303), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3346), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3368), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(3344), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [14699] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3213), 1, - anon_sym_DQUOTE, - ACTIONS(3217), 1, - sym_variable_name, - STATE(1919), 1, + STATE(4286), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(3215), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3211), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 36, - anon_sym_LPAREN_LPAREN, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2301), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -88443,6 +88210,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -88452,68 +88221,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [14771] = 21, + [14125] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3115), 1, - anon_sym_DQUOTE, - ACTIONS(3395), 1, + ACTIONS(3348), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3397), 1, + ACTIONS(3350), 1, anon_sym_DOLLAR, - ACTIONS(3399), 1, + ACTIONS(3352), 1, sym__special_character, - ACTIONS(3401), 1, + ACTIONS(3354), 1, + anon_sym_DQUOTE, + ACTIONS(3356), 1, aux_sym_number_token1, - ACTIONS(3403), 1, + ACTIONS(3358), 1, aux_sym_number_token2, - ACTIONS(3405), 1, + ACTIONS(3360), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3407), 1, + ACTIONS(3362), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3409), 1, + ACTIONS(3364), 1, anon_sym_BQUOTE, - ACTIONS(3411), 1, + ACTIONS(3366), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3415), 1, - sym_test_operator, - ACTIONS(3417), 1, + ACTIONS(3372), 1, sym__brace_start, - STATE(2161), 1, + ACTIONS(3376), 1, + sym_test_operator, + STATE(4549), 1, aux_sym__literal_repeat1, - ACTIONS(2074), 2, + STATE(4939), 1, + sym_concatenation, + ACTIONS(2307), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3393), 2, + ACTIONS(3346), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3413), 2, + ACTIONS(3368), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(672), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3391), 3, + ACTIONS(3374), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1711), 9, + STATE(4295), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -88523,7 +88276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2072), 21, + ACTIONS(2305), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -88533,8 +88286,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -88545,28 +88299,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [14869] = 36, + [14223] = 36, ACTIONS(71), 1, sym_comment, - ACTIONS(229), 1, + ACTIONS(225), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(1141), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, + ACTIONS(1139), 1, sym__brace_start, ACTIONS(1171), 1, sym_word, @@ -88574,84 +88328,118 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, ACTIONS(1185), 1, sym_test_operator, - ACTIONS(3050), 1, + ACTIONS(3109), 1, anon_sym_LPAREN, - ACTIONS(3052), 1, + ACTIONS(3111), 1, anon_sym_BANG, - ACTIONS(3058), 1, + ACTIONS(3117), 1, anon_sym_TILDE, - ACTIONS(3060), 1, + ACTIONS(3119), 1, anon_sym_BQUOTE, - ACTIONS(3064), 1, + ACTIONS(3123), 1, sym_variable_name, - ACTIONS(3419), 1, + ACTIONS(3378), 1, aux_sym__simple_variable_name_token1, - STATE(2387), 1, + STATE(2369), 1, sym_command_substitution, - STATE(2484), 1, + STATE(2548), 1, aux_sym__literal_repeat1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - STATE(3033), 1, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + STATE(3039), 1, sym__expression, - ACTIONS(1129), 2, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1183), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(3054), 2, + ACTIONS(3113), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(3056), 2, + ACTIONS(3115), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2397), 4, + STATE(2427), 4, sym_string, sym_number, sym_simple_expansion, sym_expansion, - STATE(2456), 4, + STATE(2530), 4, sym_arithmetic_expansion, sym_brace_expression, sym_translated_string, sym_process_substitution, - STATE(2811), 4, + STATE(2919), 4, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, sym__arithmetic_parenthesized_expression, - STATE(2594), 6, + STATE(2674), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [14997] = 6, + [14351] = 22, ACTIONS(3), 1, sym_comment, - STATE(1744), 1, + ACTIONS(3384), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3386), 1, + anon_sym_DOLLAR, + ACTIONS(3388), 1, + sym__special_character, + ACTIONS(3390), 1, + anon_sym_DQUOTE, + ACTIONS(3392), 1, + aux_sym_number_token1, + ACTIONS(3394), 1, + aux_sym_number_token2, + ACTIONS(3396), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3398), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3400), 1, + anon_sym_BQUOTE, + ACTIONS(3402), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3406), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3408), 1, + sym_test_operator, + ACTIONS(3410), 1, + sym__brace_start, + STATE(2241), 1, aux_sym__literal_repeat1, - STATE(704), 2, + ACTIONS(3382), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3404), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(668), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2096), 5, + aux_sym_unset_command_repeat1, + ACTIONS(2460), 3, sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(1688), 9, + ACTIONS(3380), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1695), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -88661,8 +88449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2094), 37, - anon_sym_LPAREN_LPAREN, + ACTIONS(2458), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -88682,41 +88469,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [14451] = 36, + ACTIONS(71), 1, + sym_comment, + ACTIONS(171), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1119), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, + sym_test_operator, + ACTIONS(3109), 1, + anon_sym_LPAREN, + ACTIONS(3111), 1, + anon_sym_BANG, + ACTIONS(3117), 1, + anon_sym_TILDE, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(3412), 1, + aux_sym__simple_variable_name_token1, + STATE(2369), 1, + sym_command_substitution, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(2776), 1, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + STATE(3038), 1, + sym__expression, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [15065] = 8, + ACTIONS(1183), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(3113), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(3115), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2427), 4, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + STATE(2530), 4, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_process_substitution, + STATE(2897), 4, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [14579] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3423), 1, + ACTIONS(3416), 1, anon_sym_DQUOTE, - ACTIONS(3427), 1, + ACTIONS(3420), 1, sym_variable_name, - STATE(1686), 1, + STATE(1573), 1, sym_string, - ACTIONS(3425), 2, + ACTIONS(3418), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 4, + ACTIONS(1241), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(3421), 9, + ACTIONS(3414), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -88726,7 +88588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 36, + ACTIONS(1239), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -88763,79 +88625,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [15137] = 26, + [14651] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1549), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1551), 1, - anon_sym_DOLLAR, - ACTIONS(1555), 1, + ACTIONS(3169), 1, anon_sym_DQUOTE, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1561), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1563), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1565), 1, - anon_sym_BQUOTE, - ACTIONS(1567), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1573), 1, - sym__bare_dollar, - ACTIONS(1575), 1, - sym__brace_start, - ACTIONS(2420), 1, - anon_sym_LT_LT_LT, - ACTIONS(2422), 1, - sym__special_character, - ACTIONS(2424), 1, + ACTIONS(3426), 1, + sym_variable_name, + STATE(1731), 1, + sym_string, + ACTIONS(3424), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 4, + sym_file_descriptor, sym_test_operator, - STATE(703), 1, - aux_sym_command_repeat2, - STATE(1321), 1, - aux_sym__literal_repeat1, - STATE(1712), 1, - sym_herestring_redirect, - STATE(1716), 1, - sym_concatenation, - ACTIONS(1543), 2, + sym__brace_start, + ts_builtin_sym_end, + ACTIONS(3422), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 36, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1569), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1627), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2418), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2416), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1794), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1625), 16, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -88845,31 +88673,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [15245] = 6, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [14723] = 8, ACTIONS(3), 1, sym_comment, - STATE(1895), 1, - aux_sym__literal_repeat1, - STATE(2117), 1, - sym_concatenation, - ACTIONS(2500), 6, - sym_file_descriptor, + ACTIONS(3416), 1, + anon_sym_DQUOTE, + ACTIONS(3420), 1, sym_variable_name, + STATE(1573), 1, + sym_string, + ACTIONS(3418), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - STATE(1397), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2498), 37, + ACTIONS(3414), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -88890,12 +88737,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -88907,76 +88753,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [15313] = 22, + [14795] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3433), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3435), 1, - anon_sym_DOLLAR, - ACTIONS(3437), 1, - sym__special_character, - ACTIONS(3439), 1, + ACTIONS(1916), 1, anon_sym_DQUOTE, - ACTIONS(3441), 1, - aux_sym_number_token1, - ACTIONS(3443), 1, - aux_sym_number_token2, - ACTIONS(3445), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3447), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3449), 1, - anon_sym_BQUOTE, - ACTIONS(3451), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3455), 1, + ACTIONS(1920), 1, + sym_variable_name, + STATE(1090), 1, + sym_string, + ACTIONS(1918), 2, aux_sym__simple_variable_name_token1, - ACTIONS(3457), 1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 4, + sym_file_descriptor, sym_test_operator, - ACTIONS(3459), 1, + sym__bare_dollar, sym__brace_start, - STATE(2190), 1, - aux_sym__literal_repeat1, - ACTIONS(3431), 2, + ACTIONS(1914), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 36, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3453), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(695), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2299), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(3429), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1681), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2297), 19, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, + anon_sym_LPAREN, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -88985,74 +88801,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [15413] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3115), 1, - anon_sym_DQUOTE, - ACTIONS(3395), 1, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(3397), 1, - anon_sym_DOLLAR, - ACTIONS(3399), 1, sym__special_character, - ACTIONS(3401), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3403), 1, aux_sym_number_token2, - ACTIONS(3405), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3407), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3409), 1, anon_sym_BQUOTE, - ACTIONS(3411), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3415), 1, - sym_test_operator, - ACTIONS(3417), 1, - sym__brace_start, - STATE(2161), 1, - aux_sym__literal_repeat1, - ACTIONS(2096), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3393), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3413), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(672), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3391), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(1711), 9, - sym_arithmetic_expansion, - sym_brace_expression, + [14867] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1916), 1, + anon_sym_DQUOTE, + ACTIONS(1920), 1, + sym_variable_name, + STATE(1090), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2094), 21, - anon_sym_SEMI, + ACTIONS(1918), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 4, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ACTIONS(1914), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 36, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, + anon_sym_LPAREN, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -89061,24 +88865,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - [15511] = 8, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [14939] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3282), 1, + ACTIONS(3022), 1, anon_sym_DQUOTE, - ACTIONS(3286), 1, + ACTIONS(3026), 1, sym_variable_name, - STATE(1628), 1, + STATE(1747), 1, sym_string, - ACTIONS(3284), 2, + ACTIONS(3024), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1241), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3280), 9, + ACTIONS(3020), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -89126,54 +88945,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [15583] = 22, + [15011] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3183), 1, + ACTIONS(3163), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3185), 1, + ACTIONS(3165), 1, anon_sym_DOLLAR, - ACTIONS(3187), 1, + ACTIONS(3167), 1, sym__special_character, - ACTIONS(3189), 1, + ACTIONS(3169), 1, anon_sym_DQUOTE, - ACTIONS(3191), 1, + ACTIONS(3171), 1, aux_sym_number_token1, - ACTIONS(3193), 1, + ACTIONS(3173), 1, aux_sym_number_token2, - ACTIONS(3195), 1, + ACTIONS(3175), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3197), 1, + ACTIONS(3177), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3199), 1, + ACTIONS(3179), 1, anon_sym_BQUOTE, - ACTIONS(3201), 1, + ACTIONS(3181), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3207), 1, + ACTIONS(3185), 1, sym_test_operator, - ACTIONS(3209), 1, + ACTIONS(3187), 1, sym__brace_start, - ACTIONS(3461), 1, - aux_sym__simple_variable_name_token1, - STATE(1966), 1, + STATE(1945), 1, aux_sym__literal_repeat1, - ACTIONS(2299), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3181), 2, + ACTIONS(3161), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3203), 2, + ACTIONS(3183), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(667), 2, + STATE(688), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3179), 3, + aux_sym_for_statement_repeat1, + ACTIONS(2173), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(3159), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1650), 9, + STATE(1574), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -89183,7 +89001,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2297), 20, + ACTIONS(2171), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89193,7 +89011,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -89204,20 +89021,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [15683] = 6, + anon_sym_LT_LT_LT, + [15109] = 6, ACTIONS(3), 1, sym_comment, - STATE(1739), 1, + STATE(1892), 1, aux_sym__literal_repeat1, - STATE(1953), 1, + STATE(2192), 1, sym_concatenation, - ACTIONS(2496), 5, + ACTIONS(2307), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(1320), 9, + STATE(1447), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -89227,7 +89046,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2494), 38, + ACTIONS(2305), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -89238,7 +89057,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -89266,55 +89084,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [15751] = 22, + [15177] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3433), 1, + ACTIONS(3434), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3435), 1, - anon_sym_DOLLAR, ACTIONS(3437), 1, + anon_sym_DOLLAR, + ACTIONS(3440), 1, sym__special_character, - ACTIONS(3439), 1, + ACTIONS(3443), 1, anon_sym_DQUOTE, - ACTIONS(3441), 1, + ACTIONS(3446), 1, aux_sym_number_token1, - ACTIONS(3443), 1, + ACTIONS(3449), 1, aux_sym_number_token2, - ACTIONS(3445), 1, + ACTIONS(3452), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3447), 1, + ACTIONS(3455), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3449), 1, + ACTIONS(3458), 1, anon_sym_BQUOTE, - ACTIONS(3451), 1, + ACTIONS(3461), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3457), 1, + ACTIONS(3467), 1, sym_test_operator, - ACTIONS(3459), 1, + ACTIONS(3470), 1, sym__brace_start, - ACTIONS(3463), 1, - aux_sym__simple_variable_name_token1, - STATE(2190), 1, + STATE(1945), 1, aux_sym__literal_repeat1, ACTIONS(3431), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3453), 2, + ACTIONS(3464), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(664), 2, + STATE(688), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2564), 3, + aux_sym_for_statement_repeat1, + ACTIONS(2183), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3429), 3, + ACTIONS(3428), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1681), 9, + STATE(1574), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -89324,7 +89140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2562), 19, + ACTIONS(2181), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89344,24 +89160,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [15851] = 8, + anon_sym_LT_LT_LT, + [15275] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(1882), 1, anon_sym_DQUOTE, - ACTIONS(1815), 1, + ACTIONS(3477), 1, sym_variable_name, - STATE(1061), 1, + STATE(1334), 1, sym_string, - ACTIONS(1813), 2, + ACTIONS(3475), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 4, + ACTIONS(1235), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ACTIONS(1809), 9, + ACTIONS(3473), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -89371,19 +89187,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 36, + ACTIONS(1227), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -89393,7 +89211,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -89408,208 +89225,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [15923] = 36, - ACTIONS(71), 1, + [15347] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(171), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 1, + ACTIONS(1882), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, - sym_test_operator, - ACTIONS(3050), 1, - anon_sym_LPAREN, - ACTIONS(3052), 1, - anon_sym_BANG, - ACTIONS(3058), 1, - anon_sym_TILDE, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - ACTIONS(3064), 1, + ACTIONS(3477), 1, sym_variable_name, - ACTIONS(3465), 1, + STATE(1334), 1, + sym_string, + ACTIONS(3475), 2, aux_sym__simple_variable_name_token1, - STATE(2387), 1, - sym_command_substitution, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - STATE(3158), 1, - sym__expression, - ACTIONS(1129), 2, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(3473), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1183), 2, + anon_sym_DOLLAR_LBRACK, + sym__special_character, sym_raw_string, sym_ansi_c_string, - ACTIONS(3054), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(3056), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2397), 4, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - STATE(2456), 4, - sym_arithmetic_expansion, - sym_brace_expression, - sym_translated_string, - sym_process_substitution, - STATE(2782), 4, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [16051] = 36, - ACTIONS(71), 1, - sym_comment, - ACTIONS(229), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, aux_sym_number_token1, - ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, - sym_test_operator, - ACTIONS(3050), 1, - anon_sym_LPAREN, - ACTIONS(3052), 1, - anon_sym_BANG, - ACTIONS(3058), 1, - anon_sym_TILDE, - ACTIONS(3060), 1, anon_sym_BQUOTE, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(3467), 1, - aux_sym__simple_variable_name_token1, - STATE(2387), 1, - sym_command_substitution, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - STATE(3033), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3054), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(3056), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2397), 4, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - STATE(2456), 4, - sym_arithmetic_expansion, - sym_brace_expression, - sym_translated_string, - sym_process_substitution, - STATE(2777), 4, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [16179] = 8, + sym_word, + [15419] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(2623), 1, anon_sym_DQUOTE, - ACTIONS(1815), 1, + ACTIONS(3483), 1, sym_variable_name, - STATE(1061), 1, + STATE(1605), 1, sym_string, - ACTIONS(1813), 2, + ACTIONS(3481), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 4, + ACTIONS(1235), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ACTIONS(1809), 9, + ACTIONS(3479), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -89619,19 +89315,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 36, + ACTIONS(1227), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -89641,7 +89339,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -89656,24 +89353,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [16251] = 8, + [15491] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3423), 1, + ACTIONS(2623), 1, anon_sym_DQUOTE, - ACTIONS(3427), 1, + ACTIONS(3483), 1, sym_variable_name, - STATE(1686), 1, + STATE(1605), 1, sym_string, - ACTIONS(3425), 2, + ACTIONS(3481), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 4, + ACTIONS(1241), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3421), 9, + ACTIONS(3479), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -89683,7 +89379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 36, + ACTIONS(1239), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -89695,6 +89391,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -89705,7 +89403,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -89720,28 +89417,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [16323] = 36, + [15563] = 36, ACTIONS(71), 1, sym_comment, - ACTIONS(235), 1, + ACTIONS(233), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(1141), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, + ACTIONS(1139), 1, sym__brace_start, ACTIONS(1171), 1, sym_word, @@ -89749,126 +89446,97 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, ACTIONS(1185), 1, sym_test_operator, - ACTIONS(3050), 1, + ACTIONS(3109), 1, anon_sym_LPAREN, - ACTIONS(3052), 1, + ACTIONS(3111), 1, anon_sym_BANG, - ACTIONS(3058), 1, + ACTIONS(3117), 1, anon_sym_TILDE, - ACTIONS(3060), 1, + ACTIONS(3119), 1, anon_sym_BQUOTE, - ACTIONS(3064), 1, + ACTIONS(3123), 1, sym_variable_name, - ACTIONS(3469), 1, + ACTIONS(3485), 1, aux_sym__simple_variable_name_token1, - STATE(2387), 1, + STATE(2369), 1, sym_command_substitution, - STATE(2484), 1, + STATE(2548), 1, aux_sym__literal_repeat1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - STATE(3150), 1, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + STATE(3034), 1, sym__expression, - ACTIONS(1129), 2, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1183), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(3054), 2, + ACTIONS(3113), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(3056), 2, + ACTIONS(3115), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2397), 4, + STATE(2427), 4, sym_string, sym_number, sym_simple_expansion, sym_expansion, - STATE(2456), 4, + STATE(2530), 4, sym_arithmetic_expansion, sym_brace_expression, sym_translated_string, sym_process_substitution, - STATE(2743), 4, + STATE(2817), 4, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, sym__arithmetic_parenthesized_expression, - STATE(2594), 6, + STATE(2674), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [16451] = 21, + [15691] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3213), 1, + ACTIONS(3279), 1, anon_sym_DQUOTE, - ACTIONS(3475), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3477), 1, - anon_sym_DOLLAR, - ACTIONS(3479), 1, - sym__special_character, - ACTIONS(3481), 1, - aux_sym_number_token1, - ACTIONS(3483), 1, - aux_sym_number_token2, - ACTIONS(3485), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3487), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3489), 1, - anon_sym_BQUOTE, ACTIONS(3491), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3495), 1, + sym_variable_name, + STATE(1800), 1, + sym_string, + ACTIONS(3489), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 3, + sym_file_descriptor, sym_test_operator, - ACTIONS(3497), 1, sym__brace_start, - STATE(2024), 1, - aux_sym__literal_repeat1, - ACTIONS(3473), 2, + ACTIONS(3487), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 37, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3493), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(678), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2074), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(3471), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1630), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2072), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89879,6 +89547,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -89888,81 +89558,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [16549] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1491), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1871), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1874), 1, - anon_sym_DOLLAR, - ACTIONS(1880), 1, - anon_sym_DQUOTE, - ACTIONS(1883), 1, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1886), 1, aux_sym_number_token2, - ACTIONS(1889), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1892), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1895), 1, anon_sym_BQUOTE, - ACTIONS(1898), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1910), 1, - sym__bare_dollar, - ACTIONS(1913), 1, - sym__brace_start, - ACTIONS(3505), 1, - anon_sym_LT_LT_LT, - ACTIONS(3508), 1, - sym__special_character, - ACTIONS(3511), 1, - sym_file_descriptor, - ACTIONS(3514), 1, - sym_test_operator, - STATE(703), 1, - aux_sym_command_repeat2, - STATE(1321), 1, - aux_sym__literal_repeat1, - STATE(1712), 1, - sym_herestring_redirect, - STATE(1716), 1, - sym_concatenation, - ACTIONS(1862), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1901), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3502), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(3499), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(1794), 9, - sym_arithmetic_expansion, - sym_brace_expression, + [15763] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3279), 1, + anon_sym_DQUOTE, + ACTIONS(3491), 1, + sym_variable_name, + STATE(1800), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1486), 16, + ACTIONS(3489), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(3487), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -89972,53 +89622,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [16659] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2735), 1, + aux_sym_heredoc_redirect_token1, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(2738), 1, - anon_sym_DOLLAR, - ACTIONS(2744), 1, - anon_sym_DQUOTE, - ACTIONS(2747), 1, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(2750), 1, aux_sym_number_token2, - ACTIONS(2753), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2756), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2759), 1, anon_sym_BQUOTE, - ACTIONS(2762), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2771), 1, - sym__brace_start, - ACTIONS(3520), 1, - sym__special_character, - ACTIONS(3523), 1, - sym_test_operator, - STATE(1744), 1, - aux_sym__literal_repeat1, - ACTIONS(2732), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2765), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(704), 2, + sym_word, + [15835] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1925), 1, + aux_sym__literal_repeat1, + STATE(2253), 1, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2216), 3, + ACTIONS(2303), 6, sym_file_descriptor, sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3517), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1688), 9, + STATE(1407), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -90028,7 +89661,8 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2214), 20, + ACTIONS(2301), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -90049,53 +89683,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [16757] = 21, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [15903] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3213), 1, - anon_sym_DQUOTE, - ACTIONS(3475), 1, + ACTIONS(3499), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3477), 1, + ACTIONS(3502), 1, anon_sym_DOLLAR, - ACTIONS(3479), 1, + ACTIONS(3505), 1, sym__special_character, - ACTIONS(3481), 1, + ACTIONS(3508), 1, + anon_sym_DQUOTE, + ACTIONS(3511), 1, aux_sym_number_token1, - ACTIONS(3483), 1, + ACTIONS(3514), 1, aux_sym_number_token2, - ACTIONS(3485), 1, + ACTIONS(3517), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3487), 1, + ACTIONS(3520), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3489), 1, + ACTIONS(3523), 1, anon_sym_BQUOTE, - ACTIONS(3491), 1, + ACTIONS(3526), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3495), 1, + ACTIONS(3532), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3535), 1, sym_test_operator, - ACTIONS(3497), 1, + ACTIONS(3538), 1, sym__brace_start, - STATE(2024), 1, + STATE(2250), 1, aux_sym__literal_repeat1, - ACTIONS(3473), 2, + ACTIONS(2353), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3496), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3493), 2, + ACTIONS(3529), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(678), 2, + STATE(697), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2096), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(3471), 3, + aux_sym_unset_command_repeat1, + ACTIONS(3493), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1630), 9, + STATE(1593), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -90105,7 +89756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2094), 20, + ACTIONS(2351), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -90115,6 +89766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -90125,52 +89777,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [16855] = 21, + [16003] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3365), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3367), 1, - anon_sym_DOLLAR, - ACTIONS(3369), 1, - sym__special_character, - ACTIONS(3371), 1, - anon_sym_DQUOTE, - ACTIONS(3373), 1, - aux_sym_number_token1, - ACTIONS(3375), 1, - aux_sym_number_token2, - ACTIONS(3377), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3379), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3381), 1, - anon_sym_BQUOTE, - ACTIONS(3383), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3389), 1, - sym__brace_start, - ACTIONS(3528), 1, - sym_test_operator, - STATE(4554), 1, + STATE(1777), 1, aux_sym__literal_repeat1, - STATE(5004), 1, + STATE(701), 2, sym_concatenation, - ACTIONS(2500), 2, + aux_sym_for_statement_repeat1, + ACTIONS(2169), 5, sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3363), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3385), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3526), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(4370), 9, + STATE(1646), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -90180,7 +89801,8 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2498), 22, + ACTIONS(2167), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -90190,10 +89812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -90203,97 +89822,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [16953] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3274), 1, - anon_sym_DQUOTE, - ACTIONS(3337), 1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(3339), 1, anon_sym_DOLLAR, - ACTIONS(3341), 1, sym__special_character, - ACTIONS(3343), 1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3345), 1, aux_sym_number_token2, - ACTIONS(3347), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3349), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3351), 1, anon_sym_BQUOTE, - ACTIONS(3353), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3357), 1, - sym_test_operator, - ACTIONS(3359), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [16071] = 36, + ACTIONS(71), 1, + sym_comment, + ACTIONS(225), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DOLLAR, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, + aux_sym_number_token1, + ACTIONS(1125), 1, + aux_sym_number_token2, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1133), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, sym__brace_start, - STATE(2147), 1, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, + sym_test_operator, + ACTIONS(3109), 1, + anon_sym_LPAREN, + ACTIONS(3111), 1, + anon_sym_BANG, + ACTIONS(3117), 1, + anon_sym_TILDE, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(3541), 1, + aux_sym__simple_variable_name_token1, + STATE(2369), 1, + sym_command_substitution, + STATE(2548), 1, aux_sym__literal_repeat1, - ACTIONS(2096), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3335), 2, + STATE(2776), 1, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + STATE(3039), 1, + sym__expression, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3355), 2, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(660), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3333), 3, + ACTIONS(1183), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(1526), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(3113), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(3115), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2427), 4, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, - sym_command_substitution, + STATE(2530), 4, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, sym_process_substitution, - ACTIONS(2094), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [17051] = 6, + STATE(2927), 4, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [16199] = 6, ACTIONS(3), 1, sym_comment, - STATE(1740), 1, + STATE(1777), 1, aux_sym__literal_repeat1, - STATE(1957), 1, + STATE(701), 2, sym_concatenation, - ACTIONS(2500), 5, + aux_sym_for_statement_repeat1, + ACTIONS(2173), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - STATE(1336), 9, + STATE(1646), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -90303,7 +89955,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2498), 38, + ACTIONS(2171), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -90314,7 +89966,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -90342,54 +89993,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [17119] = 22, + [16267] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3536), 1, + ACTIONS(2909), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3539), 1, + ACTIONS(2912), 1, anon_sym_DOLLAR, - ACTIONS(3542), 1, - sym__special_character, - ACTIONS(3545), 1, + ACTIONS(2918), 1, anon_sym_DQUOTE, - ACTIONS(3548), 1, + ACTIONS(2921), 1, aux_sym_number_token1, - ACTIONS(3551), 1, + ACTIONS(2924), 1, aux_sym_number_token2, - ACTIONS(3554), 1, + ACTIONS(2927), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3557), 1, + ACTIONS(2930), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3560), 1, + ACTIONS(2933), 1, anon_sym_BQUOTE, - ACTIONS(3563), 1, + ACTIONS(2936), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3569), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3572), 1, - sym_test_operator, - ACTIONS(3575), 1, + ACTIONS(2945), 1, sym__brace_start, - STATE(1966), 1, + ACTIONS(3546), 1, + sym__special_character, + ACTIONS(3549), 1, + sym_test_operator, + STATE(1777), 1, aux_sym__literal_repeat1, - ACTIONS(2442), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3533), 2, + ACTIONS(2906), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3566), 2, + ACTIONS(2939), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(709), 2, + STATE(701), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3530), 3, + aux_sym_for_statement_repeat1, + ACTIONS(2183), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(3543), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1650), 9, + STATE(1646), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -90399,7 +90049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2440), 20, + ACTIONS(2181), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -90409,7 +90059,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -90420,89 +90069,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [17219] = 8, - ACTIONS(3), 1, + anon_sym_LT_LT_LT, + [16365] = 36, + ACTIONS(71), 1, sym_comment, - ACTIONS(3580), 1, - anon_sym_DQUOTE, - ACTIONS(3584), 1, - sym_variable_name, - STATE(2121), 1, - sym_string, - ACTIONS(3582), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(3578), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(171), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [17290] = 35, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 1, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, + ACTIONS(1139), 1, sym__brace_start, ACTIONS(1171), 1, sym_word, @@ -90510,295 +90099,287 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, ACTIONS(1185), 1, sym_test_operator, - ACTIONS(3050), 1, + ACTIONS(3109), 1, anon_sym_LPAREN, - ACTIONS(3052), 1, + ACTIONS(3111), 1, anon_sym_BANG, - ACTIONS(3058), 1, + ACTIONS(3117), 1, anon_sym_TILDE, - ACTIONS(3060), 1, + ACTIONS(3119), 1, anon_sym_BQUOTE, - ACTIONS(3064), 1, + ACTIONS(3123), 1, sym_variable_name, - ACTIONS(3586), 1, + ACTIONS(3552), 1, aux_sym__simple_variable_name_token1, - STATE(2387), 1, + STATE(2369), 1, sym_command_substitution, - STATE(2484), 1, + STATE(2548), 1, aux_sym__literal_repeat1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - STATE(3108), 1, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + STATE(3038), 1, sym__expression, - ACTIONS(1129), 2, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1183), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(3054), 2, + ACTIONS(3113), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(3056), 2, + ACTIONS(3115), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2397), 4, + STATE(2427), 4, sym_string, sym_number, sym_simple_expansion, sym_expansion, - STATE(2456), 4, + STATE(2530), 4, sym_arithmetic_expansion, sym_brace_expression, sym_translated_string, sym_process_substitution, - STATE(2840), 4, + STATE(2876), 4, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, sym__arithmetic_parenthesized_expression, - STATE(2594), 6, + STATE(2674), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [17415] = 35, - ACTIONS(71), 1, + [16493] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(237), 1, - sym_word, - ACTIONS(258), 1, + ACTIONS(3384), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3386), 1, anon_sym_DOLLAR, - ACTIONS(264), 1, + ACTIONS(3388), 1, + sym__special_character, + ACTIONS(3390), 1, + anon_sym_DQUOTE, + ACTIONS(3392), 1, aux_sym_number_token1, - ACTIONS(266), 1, + ACTIONS(3394), 1, aux_sym_number_token2, - ACTIONS(270), 1, + ACTIONS(3396), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3398), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + ACTIONS(3400), 1, + anon_sym_BQUOTE, + ACTIONS(3402), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3408), 1, sym_test_operator, - ACTIONS(284), 1, + ACTIONS(3410), 1, sym__brace_start, - ACTIONS(1075), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1079), 1, - sym__special_character, - ACTIONS(1081), 1, - anon_sym_DQUOTE, - ACTIONS(1085), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1087), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3588), 1, - anon_sym_LPAREN, - ACTIONS(3590), 1, - anon_sym_BANG, - ACTIONS(3596), 1, - anon_sym_TILDE, - ACTIONS(3598), 1, - anon_sym_BQUOTE, - ACTIONS(3600), 1, + ACTIONS(3554), 1, aux_sym__simple_variable_name_token1, - ACTIONS(3602), 1, - sym_variable_name, - STATE(2509), 1, - sym_command_substitution, - STATE(2690), 1, + STATE(2241), 1, aux_sym__literal_repeat1, - STATE(3130), 1, - sym__expression, - STATE(3359), 1, - sym__arithmetic_postfix_expression, - STATE(3361), 1, - sym__arithmetic_unary_expression, - STATE(3367), 1, - sym__arithmetic_ternary_expression, - STATE(3375), 1, - sym__arithmetic_binary_expression, - ACTIONS(1073), 2, + ACTIONS(3382), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1083), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1089), 2, + ACTIONS(3404), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3592), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(3594), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2500), 4, + STATE(678), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2507), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(3380), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1695), 9, sym_arithmetic_expansion, sym_brace_expression, - sym_translated_string, - sym_process_substitution, - STATE(2506), 4, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, - STATE(3281), 4, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - STATE(3053), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [17540] = 35, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2505), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [16593] = 36, ACTIONS(71), 1, sym_comment, - ACTIONS(237), 1, - sym_word, - ACTIONS(258), 1, + ACTIONS(171), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(264), 1, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(266), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(270), 1, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym_test_operator, - ACTIONS(284), 1, + ACTIONS(1133), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, sym__brace_start, - ACTIONS(1075), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1079), 1, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1181), 1, sym__special_character, - ACTIONS(1081), 1, - anon_sym_DQUOTE, - ACTIONS(1085), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1087), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3588), 1, + ACTIONS(1185), 1, + sym_test_operator, + ACTIONS(3109), 1, anon_sym_LPAREN, - ACTIONS(3590), 1, + ACTIONS(3111), 1, anon_sym_BANG, - ACTIONS(3596), 1, + ACTIONS(3117), 1, anon_sym_TILDE, - ACTIONS(3598), 1, + ACTIONS(3119), 1, anon_sym_BQUOTE, - ACTIONS(3602), 1, + ACTIONS(3123), 1, sym_variable_name, - ACTIONS(3604), 1, + ACTIONS(3556), 1, aux_sym__simple_variable_name_token1, - STATE(2509), 1, + STATE(2369), 1, sym_command_substitution, - STATE(2690), 1, + STATE(2548), 1, aux_sym__literal_repeat1, - STATE(3100), 1, - sym__expression, - STATE(3359), 1, - sym__arithmetic_postfix_expression, - STATE(3361), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(3367), 1, - sym__arithmetic_ternary_expression, - STATE(3375), 1, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, sym__arithmetic_binary_expression, - ACTIONS(1073), 2, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + STATE(3038), 1, + sym__expression, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1083), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1089), 2, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3592), 2, + ACTIONS(1183), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(3113), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(3594), 2, + ACTIONS(3115), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2500), 4, - sym_arithmetic_expansion, - sym_brace_expression, - sym_translated_string, - sym_process_substitution, - STATE(2506), 4, + STATE(2427), 4, sym_string, sym_number, sym_simple_expansion, sym_expansion, - STATE(3283), 4, + STATE(2530), 4, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_process_substitution, + STATE(2824), 4, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, sym__arithmetic_parenthesized_expression, - STATE(3053), 6, + STATE(2674), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [17665] = 21, + [16721] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3580), 1, - anon_sym_DQUOTE, - ACTIONS(3610), 1, + ACTIONS(3241), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3612), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR, - ACTIONS(3614), 1, + ACTIONS(3245), 1, sym__special_character, - ACTIONS(3616), 1, + ACTIONS(3247), 1, + anon_sym_DQUOTE, + ACTIONS(3249), 1, aux_sym_number_token1, - ACTIONS(3618), 1, + ACTIONS(3251), 1, aux_sym_number_token2, - ACTIONS(3620), 1, + ACTIONS(3253), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3622), 1, + ACTIONS(3255), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3257), 1, anon_sym_BQUOTE, - ACTIONS(3626), 1, + ACTIONS(3259), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3630), 1, + ACTIONS(3265), 1, sym_test_operator, - ACTIONS(3632), 1, + ACTIONS(3267), 1, sym__brace_start, - STATE(2270), 1, + ACTIONS(3558), 1, + aux_sym__simple_variable_name_token1, + STATE(2250), 1, aux_sym__literal_repeat1, - ACTIONS(2074), 2, + ACTIONS(2507), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3608), 2, + ACTIONS(3239), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3628), 2, + ACTIONS(3261), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(741), 2, + STATE(671), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3606), 3, + aux_sym_unset_command_repeat1, + ACTIONS(3237), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1839), 9, + STATE(1593), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -90808,7 +90389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2072), 20, + ACTIONS(2505), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -90829,52 +90410,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [17762] = 21, + [16821] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(1492), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3236), 1, + ACTIONS(1494), 1, anon_sym_DOLLAR, - ACTIONS(3242), 1, + ACTIONS(1498), 1, anon_sym_DQUOTE, - ACTIONS(3245), 1, + ACTIONS(1500), 1, aux_sym_number_token1, - ACTIONS(3248), 1, + ACTIONS(1502), 1, aux_sym_number_token2, - ACTIONS(3251), 1, + ACTIONS(1504), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3254), 1, + ACTIONS(1506), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3257), 1, + ACTIONS(1508), 1, anon_sym_BQUOTE, - ACTIONS(3260), 1, + ACTIONS(1510), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3269), 1, + ACTIONS(1516), 1, + sym__bare_dollar, + ACTIONS(1518), 1, sym__brace_start, - ACTIONS(3637), 1, + ACTIONS(2515), 1, + anon_sym_LT_LT_LT, + ACTIONS(2517), 1, sym__special_character, - ACTIONS(3640), 1, + ACTIONS(2519), 1, sym_test_operator, - STATE(2161), 1, + STATE(707), 1, + aux_sym_command_repeat2, + STATE(1457), 1, aux_sym__literal_repeat1, - ACTIONS(2216), 2, + STATE(1626), 1, + sym_concatenation, + STATE(1633), 1, + sym_herestring_redirect, + ACTIONS(1486), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1512), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1619), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3230), 2, + ACTIONS(2513), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2511), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1921), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1617), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [16929] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1567), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1827), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1830), 1, + anon_sym_DOLLAR, + ACTIONS(1836), 1, + anon_sym_DQUOTE, + ACTIONS(1839), 1, + aux_sym_number_token1, + ACTIONS(1842), 1, + aux_sym_number_token2, + ACTIONS(1845), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1848), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1851), 1, + anon_sym_BQUOTE, + ACTIONS(1854), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1866), 1, + sym__bare_dollar, + ACTIONS(1869), 1, + sym__brace_start, + ACTIONS(3566), 1, + anon_sym_LT_LT_LT, + ACTIONS(3569), 1, + sym__special_character, + ACTIONS(3572), 1, + sym_file_descriptor, + ACTIONS(3575), 1, + sym_test_operator, + STATE(707), 1, + aux_sym_command_repeat2, + STATE(1457), 1, + aux_sym__literal_repeat1, + STATE(1626), 1, + sym_concatenation, + STATE(1633), 1, + sym_herestring_redirect, + ACTIONS(1818), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3263), 2, + ACTIONS(1857), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(715), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3634), 3, + ACTIONS(3563), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(3560), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1918), 9, + STATE(1921), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -90884,17 +90558,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2214), 20, - anon_sym_SEMI, + ACTIONS(1562), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -90904,25 +90575,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [17039] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1492), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1494), 1, + anon_sym_DOLLAR, + ACTIONS(1498), 1, + anon_sym_DQUOTE, + ACTIONS(1500), 1, + aux_sym_number_token1, + ACTIONS(1502), 1, + aux_sym_number_token2, + ACTIONS(1504), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1506), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1508), 1, + anon_sym_BQUOTE, + ACTIONS(1510), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1516), 1, + sym__bare_dollar, + ACTIONS(1518), 1, + sym__brace_start, + ACTIONS(2515), 1, anon_sym_LT_LT_LT, - [17859] = 8, + ACTIONS(2517), 1, + sym__special_character, + ACTIONS(2519), 1, + sym_test_operator, + STATE(707), 1, + aux_sym_command_repeat2, + STATE(1457), 1, + aux_sym__literal_repeat1, + STATE(1626), 1, + sym_concatenation, + STATE(1633), 1, + sym_herestring_redirect, + ACTIONS(1482), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1486), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1512), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2513), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2511), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1921), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1480), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [17147] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2042), 1, + ACTIONS(3169), 1, anon_sym_DQUOTE, - ACTIONS(3647), 1, + ACTIONS(3426), 1, sym_variable_name, - STATE(1547), 1, + STATE(1731), 1, sym_string, - ACTIONS(3645), 2, + ACTIONS(3424), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 4, + ACTIONS(1241), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(3643), 9, + ACTIONS(3422), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -90932,7 +90684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 35, + ACTIONS(1239), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -90954,6 +90706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -90968,24 +90721,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [17930] = 8, + [17219] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3439), 1, + ACTIONS(3580), 1, anon_sym_DQUOTE, - ACTIONS(3653), 1, + ACTIONS(3584), 1, sym_variable_name, - STATE(1878), 1, + STATE(1952), 1, sym_string, - ACTIONS(3651), 2, + ACTIONS(3582), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 4, + ACTIONS(1241), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(3649), 9, + ACTIONS(3578), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -90995,7 +90748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 35, + ACTIONS(1239), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -91031,64 +90784,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [18001] = 22, - ACTIONS(3), 1, + [17290] = 35, + ACTIONS(71), 1, sym_comment, - ACTIONS(3183), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3185), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(3189), 1, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(3191), 1, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(3193), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(3195), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3197), 1, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3199), 1, - anon_sym_BQUOTE, - ACTIONS(3201), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3209), 1, + ACTIONS(1139), 1, sym__brace_start, - ACTIONS(3657), 1, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1181), 1, sym__special_character, - ACTIONS(3659), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3661), 1, + ACTIONS(1185), 1, sym_test_operator, - STATE(1966), 1, + ACTIONS(3109), 1, + anon_sym_LPAREN, + ACTIONS(3111), 1, + anon_sym_BANG, + ACTIONS(3117), 1, + anon_sym_TILDE, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(3586), 1, + aux_sym__simple_variable_name_token1, + STATE(2369), 1, + sym_command_substitution, + STATE(2548), 1, aux_sym__literal_repeat1, - ACTIONS(2299), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3181), 2, + STATE(2776), 1, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + STATE(3096), 1, + sym__expression, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3203), 2, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(743), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3655), 3, + ACTIONS(1183), 2, sym_raw_string, sym_ansi_c_string, + ACTIONS(3113), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(3115), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2427), 4, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + STATE(2530), 4, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_process_substitution, + STATE(2868), 4, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [17415] = 35, + ACTIONS(71), 1, + sym_comment, + ACTIONS(237), 1, sym_word, - STATE(1902), 9, + ACTIONS(258), 1, + anon_sym_DOLLAR, + ACTIONS(264), 1, + aux_sym_number_token1, + ACTIONS(266), 1, + aux_sym_number_token2, + ACTIONS(270), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym_test_operator, + ACTIONS(284), 1, + sym__brace_start, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1159), 1, + sym__special_character, + ACTIONS(1161), 1, + anon_sym_DQUOTE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3588), 1, + anon_sym_LPAREN, + ACTIONS(3590), 1, + anon_sym_BANG, + ACTIONS(3596), 1, + anon_sym_TILDE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + ACTIONS(3600), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3602), 1, + sym_variable_name, + STATE(2500), 1, + sym_command_substitution, + STATE(2623), 1, + aux_sym__literal_repeat1, + STATE(3126), 1, + sym__expression, + STATE(3375), 1, + sym__arithmetic_binary_expression, + STATE(3378), 1, + sym__arithmetic_ternary_expression, + STATE(3407), 1, + sym__arithmetic_unary_expression, + STATE(3409), 1, + sym__arithmetic_postfix_expression, + ACTIONS(1153), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1163), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1169), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3592), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(3594), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2498), 4, sym_arithmetic_expansion, sym_brace_expression, - sym_string, sym_translated_string, + sym_process_substitution, + STATE(2499), 4, + sym_string, sym_number, sym_simple_expansion, sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2297), 19, + STATE(3254), 4, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + STATE(2976), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [17540] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3390), 1, + anon_sym_DQUOTE, + ACTIONS(3608), 1, + sym_variable_name, + STATE(1816), 1, + sym_string, + ACTIONS(3606), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + ACTIONS(3604), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 35, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -91108,73 +91012,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [18100] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3115), 1, - anon_sym_DQUOTE, - ACTIONS(3395), 1, + aux_sym_heredoc_redirect_token1, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(3397), 1, - anon_sym_DOLLAR, - ACTIONS(3401), 1, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3403), 1, aux_sym_number_token2, - ACTIONS(3405), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3407), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3409), 1, anon_sym_BQUOTE, - ACTIONS(3411), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3417), 1, - sym__brace_start, - ACTIONS(3665), 1, - sym__special_character, - ACTIONS(3667), 1, - sym_test_operator, - STATE(2161), 1, - aux_sym__literal_repeat1, - ACTIONS(2074), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3393), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3413), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(715), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3663), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(1918), 9, - sym_arithmetic_expansion, - sym_brace_expression, + [17611] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3612), 1, + anon_sym_DQUOTE, + ACTIONS(3616), 1, + sym_variable_name, + STATE(2249), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2072), 20, - anon_sym_SEMI, + ACTIONS(3614), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 4, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ACTIONS(3610), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 35, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, + anon_sym_LPAREN, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -91184,73 +91076,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [18197] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3115), 1, - anon_sym_DQUOTE, - ACTIONS(3395), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(3397), 1, - anon_sym_DOLLAR, - ACTIONS(3401), 1, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3403), 1, aux_sym_number_token2, - ACTIONS(3405), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3407), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3409), 1, anon_sym_BQUOTE, - ACTIONS(3411), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3417), 1, - sym__brace_start, - ACTIONS(3665), 1, - sym__special_character, - ACTIONS(3667), 1, - sym_test_operator, - STATE(2161), 1, - aux_sym__literal_repeat1, - ACTIONS(2096), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3393), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3413), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(715), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3663), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(1918), 9, - sym_arithmetic_expansion, - sym_brace_expression, + [17682] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3612), 1, + anon_sym_DQUOTE, + ACTIONS(3616), 1, + sym_variable_name, + STATE(2249), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2094), 20, - anon_sym_SEMI, + ACTIONS(3614), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 4, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ACTIONS(3610), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 35, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, + anon_sym_LPAREN, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -91260,24 +91139,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [18294] = 8, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [17753] = 35, + ACTIONS(71), 1, + sym_comment, + ACTIONS(237), 1, + sym_word, + ACTIONS(258), 1, + anon_sym_DOLLAR, + ACTIONS(264), 1, + aux_sym_number_token1, + ACTIONS(266), 1, + aux_sym_number_token2, + ACTIONS(270), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym_test_operator, + ACTIONS(284), 1, + sym__brace_start, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1159), 1, + sym__special_character, + ACTIONS(1161), 1, + anon_sym_DQUOTE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3588), 1, + anon_sym_LPAREN, + ACTIONS(3590), 1, + anon_sym_BANG, + ACTIONS(3596), 1, + anon_sym_TILDE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + ACTIONS(3602), 1, + sym_variable_name, + ACTIONS(3618), 1, + aux_sym__simple_variable_name_token1, + STATE(2500), 1, + sym_command_substitution, + STATE(2623), 1, + aux_sym__literal_repeat1, + STATE(3113), 1, + sym__expression, + STATE(3375), 1, + sym__arithmetic_binary_expression, + STATE(3378), 1, + sym__arithmetic_ternary_expression, + STATE(3407), 1, + sym__arithmetic_unary_expression, + STATE(3409), 1, + sym__arithmetic_postfix_expression, + ACTIONS(1153), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1163), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1169), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3592), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(3594), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2498), 4, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_process_substitution, + STATE(2499), 4, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + STATE(3267), 4, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + STATE(2976), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [17878] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3439), 1, + ACTIONS(3580), 1, anon_sym_DQUOTE, - ACTIONS(3653), 1, + ACTIONS(3584), 1, sym_variable_name, - STATE(1878), 1, + STATE(1952), 1, sym_string, - ACTIONS(3651), 2, + ACTIONS(3582), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 4, + ACTIONS(1235), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, ts_builtin_sym_end, - ACTIONS(3649), 9, + ACTIONS(3578), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -91287,7 +91270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 35, + ACTIONS(1227), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -91323,51 +91306,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [18365] = 21, + [17949] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3673), 1, + ACTIONS(3624), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3675), 1, + ACTIONS(3626), 1, anon_sym_DOLLAR, - ACTIONS(3677), 1, + ACTIONS(3628), 1, sym__special_character, - ACTIONS(3679), 1, + ACTIONS(3630), 1, anon_sym_DQUOTE, - ACTIONS(3681), 1, + ACTIONS(3632), 1, aux_sym_number_token1, - ACTIONS(3683), 1, + ACTIONS(3634), 1, aux_sym_number_token2, - ACTIONS(3685), 1, + ACTIONS(3636), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3687), 1, + ACTIONS(3638), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3689), 1, + ACTIONS(3640), 1, anon_sym_BQUOTE, - ACTIONS(3691), 1, + ACTIONS(3642), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3695), 1, + ACTIONS(3646), 1, sym_test_operator, - ACTIONS(3697), 1, + ACTIONS(3648), 1, sym__brace_start, - STATE(4767), 1, + STATE(4378), 1, aux_sym__literal_repeat1, - STATE(5114), 1, + STATE(4788), 1, sym_concatenation, - ACTIONS(2500), 2, + ACTIONS(2303), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3671), 2, + ACTIONS(3622), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3693), 2, + ACTIONS(3644), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3669), 3, + ACTIONS(3620), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4504), 9, + STATE(4577), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -91377,7 +91360,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2498), 21, + ACTIONS(2301), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -91387,9 +91370,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -91399,114 +91381,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [18462] = 8, + anon_sym_LT_LT_LT, + [18046] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3701), 1, + ACTIONS(3662), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3664), 1, + anon_sym_LT_LT_LT, + ACTIONS(3666), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3668), 1, + anon_sym_DOLLAR, + ACTIONS(3670), 1, + sym__special_character, + ACTIONS(3672), 1, anon_sym_DQUOTE, - ACTIONS(3705), 1, - sym_variable_name, - STATE(2025), 1, - sym_string, - ACTIONS(3703), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 4, + ACTIONS(3674), 1, + aux_sym_number_token1, + ACTIONS(3676), 1, + aux_sym_number_token2, + ACTIONS(3678), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3680), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3682), 1, + anon_sym_BQUOTE, + ACTIONS(3684), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3688), 1, sym_file_descriptor, + ACTIONS(3690), 1, sym_test_operator, + ACTIONS(3692), 1, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3699), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 35, + STATE(3553), 1, + aux_sym__heredoc_command, + STATE(5280), 1, + aux_sym__literal_repeat1, + STATE(5411), 1, + sym_concatenation, + STATE(7190), 1, + sym__heredoc_pipeline, + STATE(7193), 1, + sym__heredoc_expression, + ACTIONS(3652), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3654), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(3656), 2, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PIPE_AMP, + ACTIONS(3660), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3686), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3650), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5507), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3658), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [18533] = 21, + STATE(5109), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [18161] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3673), 1, + ACTIONS(3022), 1, + anon_sym_DQUOTE, + ACTIONS(3032), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3675), 1, + ACTIONS(3034), 1, anon_sym_DOLLAR, - ACTIONS(3677), 1, - sym__special_character, - ACTIONS(3679), 1, - anon_sym_DQUOTE, - ACTIONS(3681), 1, + ACTIONS(3038), 1, aux_sym_number_token1, - ACTIONS(3683), 1, + ACTIONS(3040), 1, aux_sym_number_token2, - ACTIONS(3685), 1, + ACTIONS(3042), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3687), 1, + ACTIONS(3044), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3689), 1, - anon_sym_BQUOTE, - ACTIONS(3691), 1, + ACTIONS(3048), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3697), 1, + ACTIONS(3054), 1, sym__brace_start, - ACTIONS(3709), 1, + ACTIONS(3696), 1, + sym__special_character, + ACTIONS(3698), 1, sym_test_operator, - STATE(4695), 1, + STATE(2006), 1, aux_sym__literal_repeat1, - STATE(5096), 1, - sym_concatenation, - ACTIONS(2496), 2, + ACTIONS(2169), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3671), 2, + ACTIONS(3030), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3693), 2, + ACTIONS(3050), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3707), 3, + STATE(768), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3694), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4555), 9, + STATE(1858), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -91516,7 +91520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2494), 21, + ACTIONS(2167), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -91527,8 +91531,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -91538,24 +91540,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [18630] = 8, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [18256] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3701), 1, + ACTIONS(3022), 1, anon_sym_DQUOTE, - ACTIONS(3705), 1, + ACTIONS(3026), 1, sym_variable_name, - STATE(2025), 1, + STATE(1747), 1, sym_string, - ACTIONS(3703), 2, + ACTIONS(3024), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 4, + ACTIONS(1235), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3699), 9, + ACTIONS(3020), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -91565,7 +91568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 35, + ACTIONS(1227), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -91587,6 +91590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -91601,62 +91605,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [18701] = 21, + [18327] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3183), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3185), 1, - anon_sym_DOLLAR, - ACTIONS(3189), 1, + ACTIONS(3022), 1, anon_sym_DQUOTE, - ACTIONS(3191), 1, - aux_sym_number_token1, - ACTIONS(3193), 1, - aux_sym_number_token2, - ACTIONS(3195), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3197), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3201), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3209), 1, - sym__brace_start, - ACTIONS(3657), 1, - sym__special_character, - ACTIONS(3661), 1, - sym_test_operator, - ACTIONS(3711), 1, + ACTIONS(3026), 1, + sym_variable_name, + STATE(1747), 1, + sym_string, + ACTIONS(3024), 2, aux_sym__simple_variable_name_token1, - STATE(1966), 1, - aux_sym__literal_repeat1, - ACTIONS(2564), 2, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3181), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(3020), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 36, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3203), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(731), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3655), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1902), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2562), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -91676,156 +91652,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [18798] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2628), 1, - sym_word, - ACTIONS(2634), 1, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - ACTIONS(2636), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(2638), 1, - anon_sym_DOLLAR, - ACTIONS(2640), 1, sym__special_character, - ACTIONS(2642), 1, - anon_sym_DQUOTE, - ACTIONS(2646), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(2648), 1, aux_sym_number_token2, - ACTIONS(2650), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2652), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2654), 1, anon_sym_BQUOTE, - ACTIONS(2656), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2660), 1, - sym_test_operator, - ACTIONS(2662), 1, - sym__bare_dollar, - ACTIONS(2664), 1, - sym__brace_start, - STATE(751), 1, - aux_sym_command_repeat2, - STATE(2417), 1, - aux_sym__literal_repeat1, - STATE(2558), 1, - sym_concatenation, - STATE(2562), 1, - sym_herestring_redirect, - ACTIONS(2630), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2632), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2644), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2658), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1625), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2211), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1627), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [18907] = 30, + sym_word, + [18398] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3725), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(3727), 1, + ACTIONS(3664), 1, anon_sym_LT_LT_LT, - ACTIONS(3729), 1, + ACTIONS(3666), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3731), 1, + ACTIONS(3668), 1, anon_sym_DOLLAR, - ACTIONS(3733), 1, + ACTIONS(3670), 1, sym__special_character, - ACTIONS(3735), 1, + ACTIONS(3672), 1, anon_sym_DQUOTE, - ACTIONS(3737), 1, + ACTIONS(3674), 1, aux_sym_number_token1, - ACTIONS(3739), 1, + ACTIONS(3676), 1, aux_sym_number_token2, - ACTIONS(3741), 1, + ACTIONS(3678), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3743), 1, + ACTIONS(3680), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3745), 1, + ACTIONS(3682), 1, anon_sym_BQUOTE, - ACTIONS(3747), 1, + ACTIONS(3684), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3751), 1, + ACTIONS(3688), 1, sym_file_descriptor, - ACTIONS(3753), 1, + ACTIONS(3690), 1, sym_test_operator, - ACTIONS(3755), 1, + ACTIONS(3692), 1, sym__brace_start, - STATE(3570), 1, + ACTIONS(3700), 1, + aux_sym_heredoc_redirect_token1, + STATE(3555), 1, aux_sym__heredoc_command, - STATE(5351), 1, + STATE(5280), 1, aux_sym__literal_repeat1, - STATE(5456), 1, + STATE(5411), 1, sym_concatenation, - STATE(7036), 1, - sym__heredoc_expression, - STATE(7039), 1, + STATE(7204), 1, sym__heredoc_pipeline, - ACTIONS(3715), 2, + STATE(7208), 1, + sym__heredoc_expression, + ACTIONS(3652), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3717), 2, + ACTIONS(3654), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3719), 2, + ACTIONS(3656), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(3723), 2, + ACTIONS(3660), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(3749), 2, + ACTIONS(3686), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3713), 3, + ACTIONS(3650), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(5505), 3, + STATE(5509), 3, sym_file_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(3721), 8, + ACTIONS(3658), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -91834,7 +91743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(5062), 9, + STATE(5109), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -91844,82 +91753,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [19022] = 30, + [18513] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3727), 1, - anon_sym_LT_LT_LT, - ACTIONS(3729), 1, + ACTIONS(3022), 1, + anon_sym_DQUOTE, + ACTIONS(3032), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3731), 1, + ACTIONS(3034), 1, anon_sym_DOLLAR, - ACTIONS(3733), 1, - sym__special_character, - ACTIONS(3735), 1, - anon_sym_DQUOTE, - ACTIONS(3737), 1, + ACTIONS(3038), 1, aux_sym_number_token1, - ACTIONS(3739), 1, + ACTIONS(3040), 1, aux_sym_number_token2, - ACTIONS(3741), 1, + ACTIONS(3042), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3743), 1, + ACTIONS(3044), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3745), 1, - anon_sym_BQUOTE, - ACTIONS(3747), 1, + ACTIONS(3048), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3751), 1, - sym_file_descriptor, - ACTIONS(3753), 1, - sym_test_operator, - ACTIONS(3755), 1, + ACTIONS(3054), 1, sym__brace_start, - ACTIONS(3757), 1, - aux_sym_heredoc_redirect_token1, - STATE(3605), 1, - aux_sym__heredoc_command, - STATE(5351), 1, + ACTIONS(3696), 1, + sym__special_character, + ACTIONS(3698), 1, + sym_test_operator, + STATE(2006), 1, aux_sym__literal_repeat1, - STATE(5456), 1, - sym_concatenation, - STATE(7041), 1, - sym__heredoc_expression, - STATE(7042), 1, - sym__heredoc_pipeline, - ACTIONS(3715), 2, + ACTIONS(2173), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3030), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3717), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3719), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3723), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(3749), 2, + ACTIONS(3050), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3713), 3, + STATE(768), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3694), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(5504), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3721), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(5062), 9, + STATE(1858), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -91929,144 +91806,104 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [19137] = 35, - ACTIONS(71), 1, - sym_comment, - ACTIONS(237), 1, - sym_word, - ACTIONS(258), 1, - anon_sym_DOLLAR, - ACTIONS(264), 1, - aux_sym_number_token1, - ACTIONS(266), 1, - aux_sym_number_token2, - ACTIONS(270), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym_test_operator, - ACTIONS(284), 1, - sym__brace_start, - ACTIONS(1075), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1079), 1, - sym__special_character, - ACTIONS(1081), 1, - anon_sym_DQUOTE, - ACTIONS(1085), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1087), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3588), 1, - anon_sym_LPAREN, - ACTIONS(3590), 1, - anon_sym_BANG, - ACTIONS(3596), 1, - anon_sym_TILDE, - ACTIONS(3598), 1, + ACTIONS(2171), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - ACTIONS(3602), 1, - sym_variable_name, - ACTIONS(3759), 1, - aux_sym__simple_variable_name_token1, - STATE(2509), 1, - sym_command_substitution, - STATE(2690), 1, - aux_sym__literal_repeat1, - STATE(3107), 1, - sym__expression, - STATE(3359), 1, - sym__arithmetic_postfix_expression, - STATE(3361), 1, - sym__arithmetic_unary_expression, - STATE(3367), 1, - sym__arithmetic_ternary_expression, - STATE(3375), 1, - sym__arithmetic_binary_expression, - ACTIONS(1073), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1083), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1089), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3592), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(3594), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2500), 4, - sym_arithmetic_expansion, - sym_brace_expression, - sym_translated_string, - sym_process_substitution, - STATE(2506), 4, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - STATE(3278), 4, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - STATE(3053), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [19262] = 22, + [18608] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3536), 1, + ACTIONS(3664), 1, + anon_sym_LT_LT_LT, + ACTIONS(3666), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3539), 1, + ACTIONS(3668), 1, anon_sym_DOLLAR, - ACTIONS(3545), 1, + ACTIONS(3670), 1, + sym__special_character, + ACTIONS(3672), 1, anon_sym_DQUOTE, - ACTIONS(3548), 1, + ACTIONS(3674), 1, aux_sym_number_token1, - ACTIONS(3551), 1, + ACTIONS(3676), 1, aux_sym_number_token2, - ACTIONS(3554), 1, + ACTIONS(3678), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3557), 1, + ACTIONS(3680), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3560), 1, + ACTIONS(3682), 1, anon_sym_BQUOTE, - ACTIONS(3563), 1, + ACTIONS(3684), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3575), 1, - sym__brace_start, - ACTIONS(3764), 1, - sym__special_character, - ACTIONS(3767), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3770), 1, - sym_test_operator, - STATE(1966), 1, - aux_sym__literal_repeat1, - ACTIONS(2442), 2, + ACTIONS(3688), 1, sym_file_descriptor, + ACTIONS(3690), 1, + sym_test_operator, + ACTIONS(3692), 1, + sym__brace_start, + ACTIONS(3702), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(3533), 2, + STATE(3593), 1, + aux_sym__heredoc_command, + STATE(5280), 1, + aux_sym__literal_repeat1, + STATE(5411), 1, + sym_concatenation, + STATE(7418), 1, + sym__heredoc_pipeline, + STATE(7419), 1, + sym__heredoc_expression, + ACTIONS(3652), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3566), 2, + ACTIONS(3654), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3656), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3660), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3686), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(731), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3761), 3, + ACTIONS(3650), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1902), 9, + STATE(5503), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3658), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(5109), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -92076,36 +91913,16 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2440), 19, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [19361] = 8, + [18723] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3775), 1, + ACTIONS(1498), 1, anon_sym_DQUOTE, - ACTIONS(3779), 1, + ACTIONS(2165), 1, sym_variable_name, - STATE(2093), 1, + STATE(1215), 1, sym_string, - ACTIONS(3777), 2, + ACTIONS(2163), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1235), 4, @@ -92113,7 +91930,7 @@ static const uint16_t ts_small_parse_table[] = { sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(3773), 9, + ACTIONS(2161), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -92133,7 +91950,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -92144,6 +91960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -92159,73 +91976,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [19432] = 21, + [18794] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3785), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3787), 1, - anon_sym_DOLLAR, - ACTIONS(3789), 1, - sym__special_character, - ACTIONS(3791), 1, + ACTIONS(1498), 1, anon_sym_DQUOTE, - ACTIONS(3793), 1, - aux_sym_number_token1, - ACTIONS(3795), 1, - aux_sym_number_token2, - ACTIONS(3797), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3799), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3801), 1, - anon_sym_BQUOTE, - ACTIONS(3803), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3807), 1, + ACTIONS(2165), 1, + sym_variable_name, + STATE(1215), 1, + sym_string, + ACTIONS(2163), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 4, + sym_file_descriptor, sym_test_operator, - ACTIONS(3809), 1, + sym__bare_dollar, sym__brace_start, - STATE(4277), 1, - aux_sym__literal_repeat1, - STATE(4782), 1, - sym_concatenation, - ACTIONS(2496), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3783), 2, + ACTIONS(2161), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 35, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3805), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3781), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(4522), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2494), 21, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -92234,115 +92023,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - [19529] = 35, - ACTIONS(71), 1, - sym_comment, - ACTIONS(237), 1, - sym_word, - ACTIONS(258), 1, - anon_sym_DOLLAR, - ACTIONS(264), 1, - aux_sym_number_token1, - ACTIONS(266), 1, - aux_sym_number_token2, - ACTIONS(270), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym_test_operator, - ACTIONS(284), 1, - sym__brace_start, - ACTIONS(1075), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1079), 1, sym__special_character, - ACTIONS(1081), 1, - anon_sym_DQUOTE, - ACTIONS(1085), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1087), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3588), 1, - anon_sym_LPAREN, - ACTIONS(3590), 1, - anon_sym_BANG, - ACTIONS(3596), 1, - anon_sym_TILDE, - ACTIONS(3598), 1, - anon_sym_BQUOTE, - ACTIONS(3602), 1, - sym_variable_name, - ACTIONS(3811), 1, - aux_sym__simple_variable_name_token1, - STATE(2509), 1, - sym_command_substitution, - STATE(2690), 1, - aux_sym__literal_repeat1, - STATE(3126), 1, - sym__expression, - STATE(3359), 1, - sym__arithmetic_postfix_expression, - STATE(3361), 1, - sym__arithmetic_unary_expression, - STATE(3367), 1, - sym__arithmetic_ternary_expression, - STATE(3375), 1, - sym__arithmetic_binary_expression, - ACTIONS(1073), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1083), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1089), 2, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3592), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(3594), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2500), 4, - sym_arithmetic_expansion, - sym_brace_expression, - sym_translated_string, - sym_process_substitution, - STATE(2506), 4, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - STATE(3365), 4, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - STATE(3053), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [19654] = 8, + sym_word, + [18865] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2042), 1, + ACTIONS(3706), 1, anon_sym_DQUOTE, - ACTIONS(3647), 1, + ACTIONS(3710), 1, sym_variable_name, - STATE(1547), 1, + STATE(1942), 1, sym_string, - ACTIONS(3645), 2, + ACTIONS(3708), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 4, + ACTIONS(1235), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3643), 9, + ACTIONS(3704), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -92352,7 +92065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 35, + ACTIONS(1227), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -92363,6 +92076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -92388,109 +92102,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [19725] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3727), 1, - anon_sym_LT_LT_LT, - ACTIONS(3729), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3731), 1, - anon_sym_DOLLAR, - ACTIONS(3733), 1, - sym__special_character, - ACTIONS(3735), 1, - anon_sym_DQUOTE, - ACTIONS(3737), 1, - aux_sym_number_token1, - ACTIONS(3739), 1, - aux_sym_number_token2, - ACTIONS(3741), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3743), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3745), 1, - anon_sym_BQUOTE, - ACTIONS(3747), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3751), 1, - sym_file_descriptor, - ACTIONS(3753), 1, - sym_test_operator, - ACTIONS(3755), 1, - sym__brace_start, - ACTIONS(3813), 1, - aux_sym_heredoc_redirect_token1, - STATE(3603), 1, - aux_sym__heredoc_command, - STATE(5351), 1, - aux_sym__literal_repeat1, - STATE(5456), 1, - sym_concatenation, - STATE(6792), 1, - sym__heredoc_expression, - STATE(6806), 1, - sym__heredoc_pipeline, - ACTIONS(3715), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3717), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3719), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3723), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(3749), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3713), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5531), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3721), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(5062), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [19840] = 8, + [18936] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3775), 1, + ACTIONS(2129), 1, anon_sym_DQUOTE, - ACTIONS(3779), 1, + ACTIONS(3716), 1, sym_variable_name, - STATE(2093), 1, + STATE(1725), 1, sym_string, - ACTIONS(3777), 2, + ACTIONS(3714), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 4, + ACTIONS(1235), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ACTIONS(3773), 9, + ts_builtin_sym_end, + ACTIONS(3712), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -92500,19 +92129,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 35, + ACTIONS(1227), 35, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -92521,7 +92150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -92536,128 +92165,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [19911] = 21, - ACTIONS(3), 1, + [19007] = 35, + ACTIONS(71), 1, sym_comment, - ACTIONS(3785), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3787), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(3791), 1, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(3793), 1, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(3795), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(3797), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3799), 1, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3801), 1, - anon_sym_BQUOTE, - ACTIONS(3803), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3809), 1, + ACTIONS(1139), 1, sym__brace_start, - ACTIONS(3817), 1, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1181), 1, sym__special_character, - ACTIONS(3819), 1, + ACTIONS(1185), 1, sym_test_operator, - STATE(4305), 1, + ACTIONS(3109), 1, + anon_sym_LPAREN, + ACTIONS(3111), 1, + anon_sym_BANG, + ACTIONS(3117), 1, + anon_sym_TILDE, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(3718), 1, + aux_sym__simple_variable_name_token1, + STATE(2369), 1, + sym_command_substitution, + STATE(2548), 1, aux_sym__literal_repeat1, - STATE(4736), 1, - sym_concatenation, - ACTIONS(3783), 2, + STATE(2776), 1, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + STATE(2995), 1, + sym__expression, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3805), 2, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2500), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(3815), 3, + ACTIONS(1183), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(4518), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(3113), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(3115), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2427), 4, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, - sym_command_substitution, + STATE(2530), 4, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, sym_process_substitution, - ACTIONS(2498), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [20008] = 21, - ACTIONS(3), 1, + STATE(2761), 4, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [19132] = 27, + ACTIONS(71), 1, sym_comment, - ACTIONS(3785), 1, + ACTIONS(2645), 1, + sym_word, + ACTIONS(2651), 1, + anon_sym_LT_LT_LT, + ACTIONS(2653), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3787), 1, + ACTIONS(2655), 1, anon_sym_DOLLAR, - ACTIONS(3791), 1, + ACTIONS(2657), 1, + sym__special_character, + ACTIONS(2659), 1, anon_sym_DQUOTE, - ACTIONS(3793), 1, + ACTIONS(2663), 1, aux_sym_number_token1, - ACTIONS(3795), 1, + ACTIONS(2665), 1, aux_sym_number_token2, - ACTIONS(3797), 1, + ACTIONS(2667), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3799), 1, + ACTIONS(2669), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3801), 1, + ACTIONS(2671), 1, anon_sym_BQUOTE, - ACTIONS(3803), 1, + ACTIONS(2673), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3809), 1, - sym__brace_start, - ACTIONS(3817), 1, - sym__special_character, - ACTIONS(3823), 1, + ACTIONS(2677), 1, sym_test_operator, - STATE(4277), 1, + ACTIONS(2679), 1, + sym__bare_dollar, + ACTIONS(2681), 1, + sym__brace_start, + STATE(747), 1, + aux_sym_command_repeat2, + STATE(2425), 1, aux_sym__literal_repeat1, - STATE(4782), 1, + STATE(2523), 1, sym_concatenation, - ACTIONS(3783), 2, + STATE(2525), 1, + sym_herestring_redirect, + ACTIONS(2647), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3805), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2496), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(3821), 3, + ACTIONS(2649), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2661), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(4486), 9, + ACTIONS(2675), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1617), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2159), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -92667,44 +92326,34 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2494), 20, - anon_sym_SEMI, + ACTIONS(1619), 10, + sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [20105] = 8, + [19241] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2267), 1, + ACTIONS(3247), 1, anon_sym_DQUOTE, - ACTIONS(3829), 1, + ACTIONS(3724), 1, sym_variable_name, - STATE(1595), 1, + STATE(1876), 1, sym_string, - ACTIONS(3827), 2, + ACTIONS(3722), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1235), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3825), 9, + ACTIONS(3720), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -92751,62 +92400,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [20176] = 21, + [19312] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3837), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3840), 1, - anon_sym_DOLLAR, - ACTIONS(3843), 1, - sym__special_character, - ACTIONS(3846), 1, + ACTIONS(3247), 1, anon_sym_DQUOTE, - ACTIONS(3849), 1, - aux_sym_number_token1, - ACTIONS(3852), 1, - aux_sym_number_token2, - ACTIONS(3855), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3858), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3861), 1, - anon_sym_BQUOTE, - ACTIONS(3864), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3870), 1, + ACTIONS(3724), 1, + sym_variable_name, + STATE(1876), 1, + sym_string, + ACTIONS(3722), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, + sym_file_descriptor, sym_test_operator, - ACTIONS(3873), 1, sym__brace_start, - STATE(2270), 1, - aux_sym__literal_repeat1, - ACTIONS(2216), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3834), 2, + ACTIONS(3720), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 36, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3867), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(741), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3831), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1839), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2214), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92827,53 +92448,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [20273] = 21, + aux_sym_heredoc_redirect_token1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [19383] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3701), 1, - anon_sym_DQUOTE, - ACTIONS(3880), 1, + ACTIONS(3624), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3882), 1, + ACTIONS(3626), 1, anon_sym_DOLLAR, - ACTIONS(3884), 1, - sym__special_character, - ACTIONS(3886), 1, + ACTIONS(3630), 1, + anon_sym_DQUOTE, + ACTIONS(3632), 1, aux_sym_number_token1, - ACTIONS(3888), 1, + ACTIONS(3634), 1, aux_sym_number_token2, - ACTIONS(3890), 1, + ACTIONS(3636), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3892), 1, + ACTIONS(3638), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3894), 1, + ACTIONS(3640), 1, anon_sym_BQUOTE, - ACTIONS(3896), 1, + ACTIONS(3642), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3900), 1, - sym_test_operator, - ACTIONS(3902), 1, + ACTIONS(3648), 1, sym__brace_start, - STATE(2281), 1, + ACTIONS(3728), 1, + sym__special_character, + ACTIONS(3730), 1, + sym_test_operator, + STATE(4395), 1, aux_sym__literal_repeat1, - ACTIONS(3878), 2, + STATE(4818), 1, + sym_concatenation, + ACTIONS(3622), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3898), 2, + ACTIONS(3644), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(747), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2096), 3, + ACTIONS(2307), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3876), 3, + ACTIONS(3726), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1846), 9, + STATE(4586), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -92883,7 +92518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2094), 19, + ACTIONS(2305), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92903,54 +92538,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [20370] = 22, + anon_sym_LT_LT_LT, + [19480] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3183), 1, + ACTIONS(3580), 1, + anon_sym_DQUOTE, + ACTIONS(3736), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3185), 1, + ACTIONS(3738), 1, anon_sym_DOLLAR, - ACTIONS(3189), 1, - anon_sym_DQUOTE, - ACTIONS(3191), 1, + ACTIONS(3740), 1, + sym__special_character, + ACTIONS(3742), 1, aux_sym_number_token1, - ACTIONS(3193), 1, + ACTIONS(3744), 1, aux_sym_number_token2, - ACTIONS(3195), 1, + ACTIONS(3746), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3197), 1, + ACTIONS(3748), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3199), 1, + ACTIONS(3750), 1, anon_sym_BQUOTE, - ACTIONS(3201), 1, + ACTIONS(3752), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3209), 1, - sym__brace_start, - ACTIONS(3657), 1, - sym__special_character, - ACTIONS(3661), 1, + ACTIONS(3756), 1, sym_test_operator, - ACTIONS(3711), 1, - aux_sym__simple_variable_name_token1, - STATE(1966), 1, + ACTIONS(3758), 1, + sym__brace_start, + STATE(2287), 1, aux_sym__literal_repeat1, - ACTIONS(2564), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3181), 2, + ACTIONS(3734), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3203), 2, + ACTIONS(3754), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(731), 2, + STATE(752), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3655), 3, + aux_sym_for_statement_repeat1, + ACTIONS(2169), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(3732), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1902), 9, + STATE(1780), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -92960,7 +92595,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2562), 19, + ACTIONS(2167), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92980,73 +92615,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [20469] = 30, + [19577] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3727), 1, + ACTIONS(3664), 1, anon_sym_LT_LT_LT, - ACTIONS(3729), 1, + ACTIONS(3666), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3731), 1, + ACTIONS(3668), 1, anon_sym_DOLLAR, - ACTIONS(3733), 1, + ACTIONS(3670), 1, sym__special_character, - ACTIONS(3735), 1, + ACTIONS(3672), 1, anon_sym_DQUOTE, - ACTIONS(3737), 1, + ACTIONS(3674), 1, aux_sym_number_token1, - ACTIONS(3739), 1, + ACTIONS(3676), 1, aux_sym_number_token2, - ACTIONS(3741), 1, + ACTIONS(3678), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3743), 1, + ACTIONS(3680), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3745), 1, + ACTIONS(3682), 1, anon_sym_BQUOTE, - ACTIONS(3747), 1, + ACTIONS(3684), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3751), 1, + ACTIONS(3688), 1, sym_file_descriptor, - ACTIONS(3753), 1, + ACTIONS(3690), 1, sym_test_operator, - ACTIONS(3755), 1, + ACTIONS(3692), 1, sym__brace_start, - ACTIONS(3904), 1, + ACTIONS(3760), 1, aux_sym_heredoc_redirect_token1, - STATE(3583), 1, + STATE(3602), 1, aux_sym__heredoc_command, - STATE(5351), 1, + STATE(5280), 1, aux_sym__literal_repeat1, - STATE(5456), 1, + STATE(5411), 1, sym_concatenation, - STATE(6939), 1, - sym__heredoc_expression, - STATE(6941), 1, + STATE(7043), 1, sym__heredoc_pipeline, - ACTIONS(3715), 2, + STATE(7059), 1, + sym__heredoc_expression, + ACTIONS(3652), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3717), 2, + ACTIONS(3654), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3719), 2, + ACTIONS(3656), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(3723), 2, + ACTIONS(3660), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(3749), 2, + ACTIONS(3686), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3713), 3, + ACTIONS(3650), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(5515), 3, + STATE(5527), 3, sym_file_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(3721), 8, + ACTIONS(3658), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -93055,7 +92690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(5062), 9, + STATE(5109), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -93065,73 +92700,73 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [20584] = 30, + [19692] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3727), 1, + ACTIONS(3664), 1, anon_sym_LT_LT_LT, - ACTIONS(3729), 1, + ACTIONS(3666), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3731), 1, + ACTIONS(3668), 1, anon_sym_DOLLAR, - ACTIONS(3733), 1, + ACTIONS(3670), 1, sym__special_character, - ACTIONS(3735), 1, + ACTIONS(3672), 1, anon_sym_DQUOTE, - ACTIONS(3737), 1, + ACTIONS(3674), 1, aux_sym_number_token1, - ACTIONS(3739), 1, + ACTIONS(3676), 1, aux_sym_number_token2, - ACTIONS(3741), 1, + ACTIONS(3678), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3743), 1, + ACTIONS(3680), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3745), 1, + ACTIONS(3682), 1, anon_sym_BQUOTE, - ACTIONS(3747), 1, + ACTIONS(3684), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3751), 1, + ACTIONS(3688), 1, sym_file_descriptor, - ACTIONS(3753), 1, + ACTIONS(3690), 1, sym_test_operator, - ACTIONS(3755), 1, + ACTIONS(3692), 1, sym__brace_start, - ACTIONS(3906), 1, + ACTIONS(3762), 1, aux_sym_heredoc_redirect_token1, - STATE(3585), 1, + STATE(3607), 1, aux_sym__heredoc_command, - STATE(5351), 1, + STATE(5280), 1, aux_sym__literal_repeat1, - STATE(5456), 1, + STATE(5411), 1, sym_concatenation, - STATE(6935), 1, + STATE(7309), 1, sym__heredoc_expression, - STATE(6936), 1, + STATE(7670), 1, sym__heredoc_pipeline, - ACTIONS(3715), 2, + ACTIONS(3652), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3717), 2, + ACTIONS(3654), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3719), 2, + ACTIONS(3656), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(3723), 2, + ACTIONS(3660), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(3749), 2, + ACTIONS(3686), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3713), 3, + ACTIONS(3650), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(5516), 3, + STATE(5528), 3, sym_file_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(3721), 8, + ACTIONS(3658), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -93140,7 +92775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(5062), 9, + STATE(5109), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -93150,59 +92785,82 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [20699] = 24, + [19807] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2163), 1, + ACTIONS(3664), 1, + anon_sym_LT_LT_LT, + ACTIONS(3666), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2166), 1, + ACTIONS(3668), 1, anon_sym_DOLLAR, - ACTIONS(2172), 1, + ACTIONS(3670), 1, + sym__special_character, + ACTIONS(3672), 1, anon_sym_DQUOTE, - ACTIONS(2175), 1, + ACTIONS(3674), 1, aux_sym_number_token1, - ACTIONS(2178), 1, + ACTIONS(3676), 1, aux_sym_number_token2, - ACTIONS(2181), 1, + ACTIONS(3678), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2184), 1, + ACTIONS(3680), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2187), 1, + ACTIONS(3682), 1, anon_sym_BQUOTE, - ACTIONS(2190), 1, + ACTIONS(3684), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2205), 1, - sym__brace_start, - ACTIONS(3911), 1, - sym__special_character, - ACTIONS(3914), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3917), 1, - sym_variable_name, - ACTIONS(3920), 1, - sym_test_operator, - STATE(1743), 1, - aux_sym__literal_repeat1, - STATE(6739), 1, - sym_subscript, - ACTIONS(1704), 2, + ACTIONS(3688), 1, sym_file_descriptor, + ACTIONS(3690), 1, + sym_test_operator, + ACTIONS(3692), 1, + sym__brace_start, + ACTIONS(3764), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(2160), 2, + STATE(3613), 1, + aux_sym__heredoc_command, + STATE(5280), 1, + aux_sym__literal_repeat1, + STATE(5411), 1, + sym_concatenation, + STATE(7425), 1, + sym__heredoc_pipeline, + STATE(7426), 1, + sym__heredoc_expression, + ACTIONS(3652), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2193), 2, + ACTIONS(3654), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3656), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3660), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3686), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3908), 3, + ACTIONS(3650), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(746), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(2330), 9, + STATE(5508), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3658), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(5109), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -93212,70 +92870,82 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1702), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [20802] = 21, + [19922] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3929), 1, + ACTIONS(3664), 1, + anon_sym_LT_LT_LT, + ACTIONS(3666), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3932), 1, + ACTIONS(3668), 1, anon_sym_DOLLAR, - ACTIONS(3935), 1, + ACTIONS(3670), 1, sym__special_character, - ACTIONS(3938), 1, + ACTIONS(3672), 1, anon_sym_DQUOTE, - ACTIONS(3941), 1, + ACTIONS(3674), 1, aux_sym_number_token1, - ACTIONS(3944), 1, + ACTIONS(3676), 1, aux_sym_number_token2, - ACTIONS(3947), 1, + ACTIONS(3678), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3950), 1, + ACTIONS(3680), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3953), 1, + ACTIONS(3682), 1, anon_sym_BQUOTE, - ACTIONS(3956), 1, + ACTIONS(3684), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3962), 1, + ACTIONS(3688), 1, + sym_file_descriptor, + ACTIONS(3690), 1, sym_test_operator, - ACTIONS(3965), 1, + ACTIONS(3692), 1, sym__brace_start, - STATE(2281), 1, + ACTIONS(3766), 1, + aux_sym_heredoc_redirect_token1, + STATE(3564), 1, + aux_sym__heredoc_command, + STATE(5280), 1, aux_sym__literal_repeat1, - ACTIONS(3926), 2, + STATE(5411), 1, + sym_concatenation, + STATE(7368), 1, + sym__heredoc_expression, + STATE(7493), 1, + sym__heredoc_pipeline, + ACTIONS(3652), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3959), 2, + ACTIONS(3654), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3656), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3660), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3686), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(747), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2216), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(3923), 3, + ACTIONS(3650), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1846), 9, + STATE(5502), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3658), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(5109), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -93285,79 +92955,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2214), 19, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [20899] = 24, + [20037] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2261), 1, + ACTIONS(3241), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2263), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR, - ACTIONS(2267), 1, + ACTIONS(3247), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(3249), 1, aux_sym_number_token1, - ACTIONS(2271), 1, + ACTIONS(3251), 1, aux_sym_number_token2, - ACTIONS(2273), 1, + ACTIONS(3253), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2275), 1, + ACTIONS(3255), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2277), 1, - anon_sym_BQUOTE, - ACTIONS(2279), 1, + ACTIONS(3259), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2289), 1, + ACTIONS(3267), 1, sym__brace_start, - ACTIONS(3970), 1, + ACTIONS(3770), 1, sym__special_character, - ACTIONS(3972), 1, + ACTIONS(3772), 1, aux_sym__simple_variable_name_token1, - ACTIONS(3974), 1, - sym_variable_name, - ACTIONS(3976), 1, + ACTIONS(3774), 1, sym_test_operator, - STATE(1743), 1, + STATE(2250), 1, aux_sym__literal_repeat1, - STATE(6739), 1, - sym_subscript, - ACTIONS(1757), 2, + ACTIONS(2460), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2259), 2, + ACTIONS(3239), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2281), 2, + ACTIONS(3261), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3968), 3, + STATE(758), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(3768), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(777), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(2330), 9, + STATE(1915), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -93367,14 +93010,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1755), 16, + ACTIONS(2458), 20, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -93384,23 +93030,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [21002] = 8, + anon_sym_BQUOTE, + [20134] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3115), 1, + ACTIONS(2129), 1, anon_sym_DQUOTE, - ACTIONS(3119), 1, + ACTIONS(3716), 1, sym_variable_name, - STATE(1864), 1, + STATE(1725), 1, sym_string, - ACTIONS(3117), 2, + ACTIONS(3714), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + ACTIONS(1241), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3113), 9, + ts_builtin_sym_end, + ACTIONS(3712), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -93410,7 +93058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 36, + ACTIONS(1239), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -93432,7 +93080,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -93447,23 +93094,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [21073] = 8, + [20205] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3115), 1, + ACTIONS(3706), 1, anon_sym_DQUOTE, - ACTIONS(3119), 1, + ACTIONS(3710), 1, sym_variable_name, - STATE(1864), 1, + STATE(1942), 1, sym_string, - ACTIONS(3117), 2, + ACTIONS(3708), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1241), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3113), 9, + ACTIONS(3704), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -93484,6 +93131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -93495,7 +93143,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -93510,151 +93157,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [21144] = 28, - ACTIONS(71), 1, + [20276] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, - sym_word, - ACTIONS(3987), 1, - anon_sym_LT_LT_LT, - ACTIONS(3990), 1, + ACTIONS(3022), 1, + anon_sym_DQUOTE, + ACTIONS(3032), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3993), 1, + ACTIONS(3034), 1, anon_sym_DOLLAR, - ACTIONS(3996), 1, - sym__special_character, - ACTIONS(3999), 1, - anon_sym_DQUOTE, - ACTIONS(4005), 1, + ACTIONS(3038), 1, aux_sym_number_token1, - ACTIONS(4008), 1, + ACTIONS(3040), 1, aux_sym_number_token2, - ACTIONS(4011), 1, + ACTIONS(3042), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4014), 1, + ACTIONS(3044), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4017), 1, + ACTIONS(3046), 1, anon_sym_BQUOTE, - ACTIONS(4020), 1, + ACTIONS(3048), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4026), 1, - sym_file_descriptor, - ACTIONS(4029), 1, - sym_test_operator, - ACTIONS(4032), 1, - sym__bare_dollar, - ACTIONS(4035), 1, + ACTIONS(3054), 1, sym__brace_start, - STATE(751), 1, - aux_sym_command_repeat2, - STATE(2417), 1, + ACTIONS(3696), 1, + sym__special_character, + ACTIONS(3698), 1, + sym_test_operator, + STATE(2006), 1, aux_sym__literal_repeat1, - STATE(2558), 1, - sym_concatenation, - STATE(2562), 1, - sym_herestring_redirect, - ACTIONS(3981), 2, + ACTIONS(2169), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3030), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3984), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(4002), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4023), 2, + ACTIONS(3050), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1486), 7, + STATE(768), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3694), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1858), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2167), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1491), 9, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - STATE(2211), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [21255] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2628), 1, - sym_word, - ACTIONS(2634), 1, anon_sym_LT_LT_LT, - ACTIONS(2636), 1, + [20373] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3022), 1, + anon_sym_DQUOTE, + ACTIONS(3032), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2638), 1, + ACTIONS(3034), 1, anon_sym_DOLLAR, - ACTIONS(2640), 1, - sym__special_character, - ACTIONS(2642), 1, - anon_sym_DQUOTE, - ACTIONS(2646), 1, + ACTIONS(3038), 1, aux_sym_number_token1, - ACTIONS(2648), 1, + ACTIONS(3040), 1, aux_sym_number_token2, - ACTIONS(2650), 1, + ACTIONS(3042), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2652), 1, + ACTIONS(3044), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2654), 1, + ACTIONS(3046), 1, anon_sym_BQUOTE, - ACTIONS(2656), 1, + ACTIONS(3048), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2660), 1, - sym_test_operator, - ACTIONS(2662), 1, - sym__bare_dollar, - ACTIONS(2664), 1, + ACTIONS(3054), 1, sym__brace_start, - STATE(751), 1, - aux_sym_command_repeat2, - STATE(2417), 1, + ACTIONS(3696), 1, + sym__special_character, + ACTIONS(3698), 1, + sym_test_operator, + STATE(2006), 1, aux_sym__literal_repeat1, - STATE(2558), 1, - sym_concatenation, - STATE(2562), 1, - sym_herestring_redirect, - ACTIONS(2630), 2, + ACTIONS(2173), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3030), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2632), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2644), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2658), 2, + ACTIONS(3050), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1613), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2211), 9, + STATE(768), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3694), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1858), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -93664,146 +93288,162 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1615), 10, - sym_file_descriptor, + ACTIONS(2171), 20, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [21364] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3727), 1, anon_sym_LT_LT_LT, - ACTIONS(3729), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3731), 1, + [20470] = 35, + ACTIONS(71), 1, + sym_comment, + ACTIONS(237), 1, + sym_word, + ACTIONS(258), 1, anon_sym_DOLLAR, - ACTIONS(3733), 1, - sym__special_character, - ACTIONS(3735), 1, - anon_sym_DQUOTE, - ACTIONS(3737), 1, + ACTIONS(264), 1, aux_sym_number_token1, - ACTIONS(3739), 1, + ACTIONS(266), 1, aux_sym_number_token2, - ACTIONS(3741), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3743), 1, + ACTIONS(270), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3745), 1, - anon_sym_BQUOTE, - ACTIONS(3747), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3751), 1, - sym_file_descriptor, - ACTIONS(3753), 1, + ACTIONS(282), 1, sym_test_operator, - ACTIONS(3755), 1, + ACTIONS(284), 1, sym__brace_start, - ACTIONS(4038), 1, - aux_sym_heredoc_redirect_token1, - STATE(3565), 1, - aux_sym__heredoc_command, - STATE(5351), 1, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1159), 1, + sym__special_character, + ACTIONS(1161), 1, + anon_sym_DQUOTE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3588), 1, + anon_sym_LPAREN, + ACTIONS(3590), 1, + anon_sym_BANG, + ACTIONS(3596), 1, + anon_sym_TILDE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + ACTIONS(3602), 1, + sym_variable_name, + ACTIONS(3776), 1, + aux_sym__simple_variable_name_token1, + STATE(2500), 1, + sym_command_substitution, + STATE(2623), 1, aux_sym__literal_repeat1, - STATE(5456), 1, - sym_concatenation, - STATE(6837), 1, - sym__heredoc_expression, - STATE(6839), 1, - sym__heredoc_pipeline, - ACTIONS(3715), 2, + STATE(3059), 1, + sym__expression, + STATE(3375), 1, + sym__arithmetic_binary_expression, + STATE(3378), 1, + sym__arithmetic_ternary_expression, + STATE(3407), 1, + sym__arithmetic_unary_expression, + STATE(3409), 1, + sym__arithmetic_postfix_expression, + ACTIONS(1153), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3717), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3719), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3723), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(3749), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3713), 3, + ACTIONS(1163), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(5545), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3721), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(5062), 9, + ACTIONS(1169), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3592), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(3594), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2498), 4, sym_arithmetic_expansion, sym_brace_expression, - sym_string, sym_translated_string, + sym_process_substitution, + STATE(2499), 4, + sym_string, sym_number, sym_simple_expansion, sym_expansion, - sym_command_substitution, - sym_process_substitution, - [21479] = 20, + STATE(3251), 4, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + STATE(2976), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [20595] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3115), 1, - anon_sym_DQUOTE, - ACTIONS(3395), 1, + ACTIONS(3624), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3397), 1, + ACTIONS(3626), 1, anon_sym_DOLLAR, - ACTIONS(3401), 1, + ACTIONS(3628), 1, + sym__special_character, + ACTIONS(3630), 1, + anon_sym_DQUOTE, + ACTIONS(3632), 1, aux_sym_number_token1, - ACTIONS(3403), 1, + ACTIONS(3634), 1, aux_sym_number_token2, - ACTIONS(3405), 1, + ACTIONS(3636), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3407), 1, + ACTIONS(3638), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3411), 1, + ACTIONS(3640), 1, + anon_sym_BQUOTE, + ACTIONS(3642), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3417), 1, + ACTIONS(3648), 1, sym__brace_start, - ACTIONS(3665), 1, - sym__special_character, - ACTIONS(3667), 1, + ACTIONS(3780), 1, sym_test_operator, - STATE(2161), 1, + STATE(4395), 1, aux_sym__literal_repeat1, - ACTIONS(2074), 2, + STATE(4818), 1, + sym_concatenation, + ACTIONS(2307), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3393), 2, + ACTIONS(3622), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3413), 2, + ACTIONS(3644), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(715), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3663), 3, + ACTIONS(3778), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1918), 9, + STATE(4579), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -93813,7 +93453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2072), 21, + ACTIONS(2305), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -93823,6 +93463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -93834,51 +93475,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [21574] = 20, - ACTIONS(3), 1, + [20692] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(3115), 1, - anon_sym_DQUOTE, - ACTIONS(3395), 1, + ACTIONS(3782), 1, + sym_word, + ACTIONS(3791), 1, + anon_sym_LT_LT_LT, + ACTIONS(3794), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3397), 1, + ACTIONS(3797), 1, anon_sym_DOLLAR, - ACTIONS(3401), 1, + ACTIONS(3800), 1, + sym__special_character, + ACTIONS(3803), 1, + anon_sym_DQUOTE, + ACTIONS(3809), 1, aux_sym_number_token1, - ACTIONS(3403), 1, + ACTIONS(3812), 1, aux_sym_number_token2, - ACTIONS(3405), 1, + ACTIONS(3815), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3407), 1, + ACTIONS(3818), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3411), 1, + ACTIONS(3821), 1, + anon_sym_BQUOTE, + ACTIONS(3824), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3417), 1, + ACTIONS(3830), 1, + sym_file_descriptor, + ACTIONS(3833), 1, + sym_test_operator, + ACTIONS(3836), 1, + sym__bare_dollar, + ACTIONS(3839), 1, sym__brace_start, - ACTIONS(3665), 1, + STATE(747), 1, + aux_sym_command_repeat2, + STATE(2425), 1, + aux_sym__literal_repeat1, + STATE(2523), 1, + sym_concatenation, + STATE(2525), 1, + sym_herestring_redirect, + ACTIONS(3785), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3788), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(3806), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(3827), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1562), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1567), 9, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + STATE(2159), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [20803] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3846), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3848), 1, + anon_sym_DOLLAR, + ACTIONS(3850), 1, sym__special_character, - ACTIONS(3667), 1, + ACTIONS(3852), 1, + anon_sym_DQUOTE, + ACTIONS(3854), 1, + aux_sym_number_token1, + ACTIONS(3856), 1, + aux_sym_number_token2, + ACTIONS(3858), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3860), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3862), 1, + anon_sym_BQUOTE, + ACTIONS(3864), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3868), 1, sym_test_operator, - STATE(2161), 1, + ACTIONS(3870), 1, + sym__brace_start, + STATE(4706), 1, aux_sym__literal_repeat1, - ACTIONS(2096), 2, + STATE(5084), 1, + sym_concatenation, + ACTIONS(2303), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3393), 2, + ACTIONS(3844), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3413), 2, + ACTIONS(3866), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(715), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3663), 3, + ACTIONS(3842), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1918), 9, + STATE(4526), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -93888,7 +93612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2094), 21, + ACTIONS(2301), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -93899,6 +93623,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -93908,36 +93634,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [21669] = 8, + [20900] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2267), 1, + ACTIONS(3241), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3243), 1, + anon_sym_DOLLAR, + ACTIONS(3247), 1, anon_sym_DQUOTE, - ACTIONS(3829), 1, - sym_variable_name, - STATE(1595), 1, - sym_string, - ACTIONS(3827), 2, + ACTIONS(3249), 1, + aux_sym_number_token1, + ACTIONS(3251), 1, + aux_sym_number_token2, + ACTIONS(3253), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3255), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3257), 1, + anon_sym_BQUOTE, + ACTIONS(3259), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3267), 1, + sym__brace_start, + ACTIONS(3770), 1, + sym__special_character, + ACTIONS(3774), 1, + sym_test_operator, + ACTIONS(3872), 1, aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + STATE(2250), 1, + aux_sym__literal_repeat1, + ACTIONS(2507), 2, sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(3825), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 36, + aux_sym_heredoc_redirect_token1, + ACTIONS(3239), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3261), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(753), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(3768), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1915), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2505), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -93947,7 +93701,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -93958,68 +93711,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [21740] = 21, + [20999] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3701), 1, + ACTIONS(3580), 1, anon_sym_DQUOTE, - ACTIONS(3880), 1, + ACTIONS(3736), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3882), 1, + ACTIONS(3738), 1, anon_sym_DOLLAR, - ACTIONS(3884), 1, + ACTIONS(3740), 1, sym__special_character, - ACTIONS(3886), 1, + ACTIONS(3742), 1, aux_sym_number_token1, - ACTIONS(3888), 1, + ACTIONS(3744), 1, aux_sym_number_token2, - ACTIONS(3890), 1, + ACTIONS(3746), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3892), 1, + ACTIONS(3748), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3894), 1, + ACTIONS(3750), 1, anon_sym_BQUOTE, - ACTIONS(3896), 1, + ACTIONS(3752), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3900), 1, + ACTIONS(3756), 1, sym_test_operator, - ACTIONS(3902), 1, + ACTIONS(3758), 1, sym__brace_start, - STATE(2281), 1, + STATE(2287), 1, aux_sym__literal_repeat1, - ACTIONS(3878), 2, + ACTIONS(3734), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3898), 2, + ACTIONS(3754), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(747), 2, + STATE(752), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2074), 3, + ACTIONS(2173), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3876), 3, + ACTIONS(3732), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1846), 9, + STATE(1780), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -94029,7 +93767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2072), 19, + ACTIONS(2171), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -94049,115 +93787,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [21837] = 30, + [21096] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3727), 1, - anon_sym_LT_LT_LT, - ACTIONS(3729), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3731), 1, - anon_sym_DOLLAR, - ACTIONS(3733), 1, - sym__special_character, - ACTIONS(3735), 1, + ACTIONS(2042), 1, anon_sym_DQUOTE, - ACTIONS(3737), 1, - aux_sym_number_token1, - ACTIONS(3739), 1, - aux_sym_number_token2, - ACTIONS(3741), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3743), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3745), 1, - anon_sym_BQUOTE, - ACTIONS(3747), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3751), 1, - sym_file_descriptor, - ACTIONS(3753), 1, - sym_test_operator, - ACTIONS(3755), 1, - sym__brace_start, - ACTIONS(4040), 1, - aux_sym_heredoc_redirect_token1, - STATE(3567), 1, - aux_sym__heredoc_command, - STATE(5351), 1, - aux_sym__literal_repeat1, - STATE(5456), 1, - sym_concatenation, - STATE(6843), 1, - sym__heredoc_expression, - STATE(6844), 1, - sym__heredoc_pipeline, - ACTIONS(3715), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3717), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3719), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3723), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(3749), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3713), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5546), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3721), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(5062), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(3878), 1, + sym_variable_name, + STATE(1683), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [21952] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1739), 1, - aux_sym__literal_repeat1, - STATE(1953), 1, - sym_concatenation, - ACTIONS(2496), 5, + ACTIONS(3876), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 3, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1601), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2494), 37, + ACTIONS(3874), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -94168,6 +93824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -94178,12 +93835,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -94195,142 +93850,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [22019] = 35, - ACTIONS(71), 1, - sym_comment, - ACTIONS(237), 1, - sym_word, - ACTIONS(258), 1, - anon_sym_DOLLAR, - ACTIONS(264), 1, - aux_sym_number_token1, - ACTIONS(266), 1, - aux_sym_number_token2, - ACTIONS(270), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym_test_operator, - ACTIONS(284), 1, - sym__brace_start, - ACTIONS(1075), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1079), 1, - sym__special_character, - ACTIONS(1081), 1, - anon_sym_DQUOTE, - ACTIONS(1085), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1087), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3588), 1, - anon_sym_LPAREN, - ACTIONS(3590), 1, - anon_sym_BANG, - ACTIONS(3596), 1, - anon_sym_TILDE, - ACTIONS(3598), 1, - anon_sym_BQUOTE, - ACTIONS(3602), 1, - sym_variable_name, - ACTIONS(4042), 1, - aux_sym__simple_variable_name_token1, - STATE(2509), 1, - sym_command_substitution, - STATE(2690), 1, - aux_sym__literal_repeat1, - STATE(3111), 1, - sym__expression, - STATE(3359), 1, - sym__arithmetic_postfix_expression, - STATE(3361), 1, - sym__arithmetic_unary_expression, - STATE(3367), 1, - sym__arithmetic_ternary_expression, - STATE(3375), 1, - sym__arithmetic_binary_expression, - ACTIONS(1073), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1083), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1089), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3592), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(3594), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2500), 4, - sym_arithmetic_expansion, - sym_brace_expression, - sym_translated_string, - sym_process_substitution, - STATE(2506), 4, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - STATE(3368), 4, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - STATE(3053), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [22144] = 21, + [21167] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3183), 1, + ACTIONS(3886), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3185), 1, + ACTIONS(3889), 1, anon_sym_DOLLAR, - ACTIONS(3189), 1, + ACTIONS(3892), 1, + sym__special_character, + ACTIONS(3895), 1, anon_sym_DQUOTE, - ACTIONS(3191), 1, + ACTIONS(3898), 1, aux_sym_number_token1, - ACTIONS(3193), 1, + ACTIONS(3901), 1, aux_sym_number_token2, - ACTIONS(3195), 1, + ACTIONS(3904), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3197), 1, + ACTIONS(3907), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3201), 1, + ACTIONS(3910), 1, + anon_sym_BQUOTE, + ACTIONS(3913), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3209), 1, - sym__brace_start, - ACTIONS(3657), 1, - sym__special_character, - ACTIONS(3661), 1, + ACTIONS(3919), 1, sym_test_operator, - ACTIONS(4044), 1, - aux_sym__simple_variable_name_token1, - STATE(1966), 1, + ACTIONS(3922), 1, + sym__brace_start, + STATE(2287), 1, aux_sym__literal_repeat1, - ACTIONS(2299), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3181), 2, + ACTIONS(3883), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3203), 2, + ACTIONS(3916), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(726), 2, + STATE(752), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3655), 3, + aux_sym_for_statement_repeat1, + ACTIONS(2183), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(3880), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1902), 9, + STATE(1780), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -94340,7 +93906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2297), 20, + ACTIONS(2181), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -94360,232 +93926,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [22241] = 35, - ACTIONS(71), 1, + [21264] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(1141), 1, + ACTIONS(3241), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + ACTIONS(3247), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(3249), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(3251), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(3253), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(3255), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(3257), 1, + anon_sym_BQUOTE, + ACTIONS(3259), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, + ACTIONS(3267), 1, sym__brace_start, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1181), 1, + ACTIONS(3770), 1, sym__special_character, - ACTIONS(1185), 1, - sym_test_operator, - ACTIONS(3050), 1, - anon_sym_LPAREN, - ACTIONS(3052), 1, - anon_sym_BANG, - ACTIONS(3058), 1, - anon_sym_TILDE, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(4046), 1, + ACTIONS(3772), 1, aux_sym__simple_variable_name_token1, - STATE(2387), 1, - sym_command_substitution, - STATE(2484), 1, + ACTIONS(3774), 1, + sym_test_operator, + STATE(2250), 1, aux_sym__literal_repeat1, - STATE(2621), 1, - sym__expression, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(1129), 2, + ACTIONS(2460), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3239), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, + ACTIONS(3261), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1183), 2, + STATE(758), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(3768), 3, sym_raw_string, sym_ansi_c_string, - ACTIONS(3054), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(3056), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2397), 4, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - STATE(2456), 4, + sym_word, + STATE(1915), 9, sym_arithmetic_expansion, sym_brace_expression, - sym_translated_string, - sym_process_substitution, - STATE(2843), 4, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [22366] = 35, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, - sym_test_operator, - ACTIONS(3050), 1, - anon_sym_LPAREN, - ACTIONS(3052), 1, - anon_sym_BANG, - ACTIONS(3058), 1, - anon_sym_TILDE, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(4048), 1, - aux_sym__simple_variable_name_token1, - STATE(2387), 1, - sym_command_substitution, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - STATE(3101), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3054), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(3056), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2397), 4, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, - STATE(2456), 4, - sym_arithmetic_expansion, - sym_brace_expression, - sym_translated_string, + sym_command_substitution, sym_process_substitution, - STATE(2848), 4, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [22491] = 21, + ACTIONS(2458), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [21363] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3785), 1, + ACTIONS(3846), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3787), 1, + ACTIONS(3848), 1, anon_sym_DOLLAR, - ACTIONS(3789), 1, + ACTIONS(3850), 1, sym__special_character, - ACTIONS(3791), 1, + ACTIONS(3852), 1, anon_sym_DQUOTE, - ACTIONS(3793), 1, + ACTIONS(3854), 1, aux_sym_number_token1, - ACTIONS(3795), 1, + ACTIONS(3856), 1, aux_sym_number_token2, - ACTIONS(3797), 1, + ACTIONS(3858), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3799), 1, + ACTIONS(3860), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3801), 1, + ACTIONS(3862), 1, anon_sym_BQUOTE, - ACTIONS(3803), 1, + ACTIONS(3864), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3809), 1, + ACTIONS(3870), 1, sym__brace_start, - ACTIONS(4052), 1, + ACTIONS(3927), 1, sym_test_operator, - STATE(4305), 1, + STATE(4714), 1, aux_sym__literal_repeat1, - STATE(4736), 1, + STATE(5095), 1, sym_concatenation, - ACTIONS(2500), 2, + ACTIONS(2307), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3783), 2, + ACTIONS(3844), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3805), 2, + ACTIONS(3866), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4050), 3, + ACTIONS(3925), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4582), 9, + STATE(4533), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -94595,7 +94057,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2498), 21, + ACTIONS(2305), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -94605,8 +94067,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -94616,214 +94079,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [22588] = 8, - ACTIONS(3), 1, + [21460] = 27, + ACTIONS(71), 1, sym_comment, - ACTIONS(3189), 1, - anon_sym_DQUOTE, - ACTIONS(4058), 1, - sym_variable_name, - STATE(1737), 1, - sym_string, - ACTIONS(4056), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(4054), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2645), 1, + sym_word, + ACTIONS(2651), 1, + anon_sym_LT_LT_LT, + ACTIONS(2653), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOLLAR, + ACTIONS(2657), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2659), 1, + anon_sym_DQUOTE, + ACTIONS(2663), 1, aux_sym_number_token1, + ACTIONS(2665), 1, aux_sym_number_token2, + ACTIONS(2667), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2669), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2671), 1, anon_sym_BQUOTE, + ACTIONS(2673), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [22659] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3189), 1, - anon_sym_DQUOTE, - ACTIONS(4058), 1, - sym_variable_name, - STATE(1737), 1, - sym_string, - ACTIONS(4056), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, - sym_file_descriptor, + ACTIONS(2677), 1, sym_test_operator, + ACTIONS(2679), 1, + sym__bare_dollar, + ACTIONS(2681), 1, sym__brace_start, - ACTIONS(4054), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 36, + STATE(747), 1, + aux_sym_command_repeat2, + STATE(2425), 1, + aux_sym__literal_repeat1, + STATE(2523), 1, + sym_concatenation, + STATE(2525), 1, + sym_herestring_redirect, + ACTIONS(2647), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2649), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2661), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2675), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1480), 7, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [22730] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1555), 1, - anon_sym_DQUOTE, - ACTIONS(2070), 1, - sym_variable_name, - STATE(1176), 1, + STATE(2159), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(2068), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 4, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1482), 10, sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ACTIONS(2066), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 35, - anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [22801] = 8, + [21569] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, + ACTIONS(2042), 1, anon_sym_DQUOTE, - ACTIONS(2070), 1, + ACTIONS(3878), 1, sym_variable_name, - STATE(1176), 1, + STATE(1683), 1, sym_string, - ACTIONS(2068), 2, + ACTIONS(3876), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 4, + ACTIONS(1241), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ACTIONS(2066), 9, + ACTIONS(3874), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -94833,18 +94187,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 35, + ACTIONS(1239), 36, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -94854,7 +94210,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -94869,73 +94224,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [22872] = 30, + [21640] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3727), 1, + ACTIONS(3664), 1, anon_sym_LT_LT_LT, - ACTIONS(3729), 1, + ACTIONS(3666), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3731), 1, + ACTIONS(3668), 1, anon_sym_DOLLAR, - ACTIONS(3733), 1, + ACTIONS(3670), 1, sym__special_character, - ACTIONS(3735), 1, + ACTIONS(3672), 1, anon_sym_DQUOTE, - ACTIONS(3737), 1, + ACTIONS(3674), 1, aux_sym_number_token1, - ACTIONS(3739), 1, + ACTIONS(3676), 1, aux_sym_number_token2, - ACTIONS(3741), 1, + ACTIONS(3678), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3743), 1, + ACTIONS(3680), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3745), 1, + ACTIONS(3682), 1, anon_sym_BQUOTE, - ACTIONS(3747), 1, + ACTIONS(3684), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3751), 1, + ACTIONS(3688), 1, sym_file_descriptor, - ACTIONS(3753), 1, + ACTIONS(3690), 1, sym_test_operator, - ACTIONS(3755), 1, + ACTIONS(3692), 1, sym__brace_start, - ACTIONS(4060), 1, + ACTIONS(3929), 1, aux_sym_heredoc_redirect_token1, - STATE(3596), 1, + STATE(3548), 1, aux_sym__heredoc_command, - STATE(5351), 1, + STATE(5280), 1, aux_sym__literal_repeat1, - STATE(5456), 1, + STATE(5411), 1, sym_concatenation, - STATE(6944), 1, - sym__heredoc_expression, - STATE(6945), 1, + STATE(6955), 1, sym__heredoc_pipeline, - ACTIONS(3715), 2, + STATE(6958), 1, + sym__heredoc_expression, + ACTIONS(3652), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3717), 2, + ACTIONS(3654), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3719), 2, + ACTIONS(3656), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(3723), 2, + ACTIONS(3660), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(3749), 2, + ACTIONS(3686), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3713), 3, + ACTIONS(3650), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(5517), 3, + STATE(5546), 3, sym_file_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(3721), 8, + ACTIONS(3658), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -94944,7 +94299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(5062), 9, + STATE(5109), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -94954,82 +94309,54 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [22987] = 30, + [21755] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3727), 1, - anon_sym_LT_LT_LT, - ACTIONS(3729), 1, + ACTIONS(3499), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3731), 1, + ACTIONS(3502), 1, anon_sym_DOLLAR, - ACTIONS(3733), 1, - sym__special_character, - ACTIONS(3735), 1, + ACTIONS(3508), 1, anon_sym_DQUOTE, - ACTIONS(3737), 1, + ACTIONS(3511), 1, aux_sym_number_token1, - ACTIONS(3739), 1, + ACTIONS(3514), 1, aux_sym_number_token2, - ACTIONS(3741), 1, + ACTIONS(3517), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3743), 1, + ACTIONS(3520), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3745), 1, + ACTIONS(3523), 1, anon_sym_BQUOTE, - ACTIONS(3747), 1, + ACTIONS(3526), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3751), 1, - sym_file_descriptor, - ACTIONS(3753), 1, - sym_test_operator, - ACTIONS(3755), 1, + ACTIONS(3538), 1, sym__brace_start, - ACTIONS(4062), 1, - aux_sym_heredoc_redirect_token1, - STATE(3608), 1, - aux_sym__heredoc_command, - STATE(5351), 1, + ACTIONS(3934), 1, + sym__special_character, + ACTIONS(3937), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3940), 1, + sym_test_operator, + STATE(2250), 1, aux_sym__literal_repeat1, - STATE(5456), 1, - sym_concatenation, - STATE(6870), 1, - sym__heredoc_expression, - STATE(6871), 1, - sym__heredoc_pipeline, - ACTIONS(3715), 2, + ACTIONS(2353), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3496), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3717), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3719), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3723), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(3749), 2, + ACTIONS(3529), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3713), 3, + STATE(758), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(3931), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(5540), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3721), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(5062), 9, + STATE(1915), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -95039,73 +94366,93 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [23102] = 30, + ACTIONS(2351), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [21854] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3727), 1, + ACTIONS(3664), 1, anon_sym_LT_LT_LT, - ACTIONS(3729), 1, + ACTIONS(3666), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3731), 1, + ACTIONS(3668), 1, anon_sym_DOLLAR, - ACTIONS(3733), 1, + ACTIONS(3670), 1, sym__special_character, - ACTIONS(3735), 1, + ACTIONS(3672), 1, anon_sym_DQUOTE, - ACTIONS(3737), 1, + ACTIONS(3674), 1, aux_sym_number_token1, - ACTIONS(3739), 1, + ACTIONS(3676), 1, aux_sym_number_token2, - ACTIONS(3741), 1, + ACTIONS(3678), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3743), 1, + ACTIONS(3680), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3745), 1, + ACTIONS(3682), 1, anon_sym_BQUOTE, - ACTIONS(3747), 1, + ACTIONS(3684), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3751), 1, + ACTIONS(3688), 1, sym_file_descriptor, - ACTIONS(3753), 1, + ACTIONS(3690), 1, sym_test_operator, - ACTIONS(3755), 1, + ACTIONS(3692), 1, sym__brace_start, - ACTIONS(4064), 1, + ACTIONS(3943), 1, aux_sym_heredoc_redirect_token1, - STATE(3591), 1, + STATE(3556), 1, aux_sym__heredoc_command, - STATE(5351), 1, + STATE(5280), 1, aux_sym__literal_repeat1, - STATE(5456), 1, + STATE(5411), 1, sym_concatenation, - STATE(6873), 1, - sym__heredoc_expression, - STATE(6875), 1, + STATE(6980), 1, sym__heredoc_pipeline, - ACTIONS(3715), 2, + STATE(6982), 1, + sym__heredoc_expression, + ACTIONS(3652), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3717), 2, + ACTIONS(3654), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3719), 2, + ACTIONS(3656), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(3723), 2, + ACTIONS(3660), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(3749), 2, + ACTIONS(3686), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3713), 3, + ACTIONS(3650), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(5538), 3, + STATE(5524), 3, sym_file_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(3721), 8, + ACTIONS(3658), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -95114,7 +94461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(5062), 9, + STATE(5109), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -95124,113 +94471,142 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [23217] = 6, - ACTIONS(3), 1, + [21969] = 35, + ACTIONS(71), 1, sym_comment, - STATE(1740), 1, - aux_sym__literal_repeat1, - STATE(1957), 1, - sym_concatenation, - ACTIONS(2500), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1560), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2498), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1119), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, + sym_test_operator, + ACTIONS(3109), 1, + anon_sym_LPAREN, + ACTIONS(3111), 1, + anon_sym_BANG, + ACTIONS(3117), 1, + anon_sym_TILDE, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(3945), 1, + aux_sym__simple_variable_name_token1, + STATE(2369), 1, + sym_command_substitution, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(2685), 1, + sym__expression, + STATE(2776), 1, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [23284] = 21, + ACTIONS(1183), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(3113), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(3115), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2427), 4, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + STATE(2530), 4, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_process_substitution, + STATE(2844), 4, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [22094] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3580), 1, - anon_sym_DQUOTE, - ACTIONS(3610), 1, + ACTIONS(3953), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3612), 1, + ACTIONS(3956), 1, anon_sym_DOLLAR, - ACTIONS(3614), 1, + ACTIONS(3959), 1, sym__special_character, - ACTIONS(3616), 1, + ACTIONS(3962), 1, + anon_sym_DQUOTE, + ACTIONS(3965), 1, aux_sym_number_token1, - ACTIONS(3618), 1, + ACTIONS(3968), 1, aux_sym_number_token2, - ACTIONS(3620), 1, + ACTIONS(3971), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3622), 1, + ACTIONS(3974), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3977), 1, anon_sym_BQUOTE, - ACTIONS(3626), 1, + ACTIONS(3980), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3630), 1, + ACTIONS(3986), 1, sym_test_operator, - ACTIONS(3632), 1, + ACTIONS(3989), 1, sym__brace_start, - STATE(2270), 1, + STATE(2307), 1, aux_sym__literal_repeat1, - ACTIONS(2096), 2, + ACTIONS(2183), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3608), 2, + ACTIONS(3950), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3628), 2, + ACTIONS(3983), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(741), 2, + STATE(761), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(3606), 3, + ACTIONS(3947), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1839), 9, + STATE(1836), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -95240,7 +94616,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2094), 20, + ACTIONS(2181), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -95261,97 +94637,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [23381] = 8, + [22191] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3580), 1, + ACTIONS(3706), 1, anon_sym_DQUOTE, - ACTIONS(3584), 1, - sym_variable_name, - STATE(2121), 1, - sym_string, - ACTIONS(3582), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(3578), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3996), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOLLAR, + ACTIONS(4000), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4002), 1, aux_sym_number_token1, + ACTIONS(4004), 1, aux_sym_number_token2, + ACTIONS(4006), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4008), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4010), 1, anon_sym_BQUOTE, + ACTIONS(4012), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4016), 1, + sym_test_operator, + ACTIONS(4018), 1, + sym__brace_start, + STATE(2307), 1, + aux_sym__literal_repeat1, + ACTIONS(2169), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3994), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4014), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(761), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3992), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [23452] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3282), 1, - anon_sym_DQUOTE, - ACTIONS(3286), 1, - sym_variable_name, - STATE(1628), 1, + STATE(1836), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(3284), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(3280), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 36, - anon_sym_LPAREN_LPAREN, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2167), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -95361,6 +94702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -95371,60 +94713,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [22288] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2036), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2038), 1, + anon_sym_DOLLAR, + ACTIONS(2042), 1, + anon_sym_DQUOTE, + ACTIONS(2044), 1, aux_sym_number_token1, + ACTIONS(2046), 1, aux_sym_number_token2, + ACTIONS(2048), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2050), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2052), 1, anon_sym_BQUOTE, + ACTIONS(2054), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(2064), 1, + sym__brace_start, + ACTIONS(4022), 1, + sym__special_character, + ACTIONS(4024), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(4026), 1, + sym_variable_name, + ACTIONS(4028), 1, + sym_test_operator, + STATE(1786), 1, + aux_sym__literal_repeat1, + STATE(6787), 1, + sym_subscript, + ACTIONS(1690), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2034), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2056), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(4020), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [23523] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3282), 1, - anon_sym_DQUOTE, - ACTIONS(3286), 1, - sym_variable_name, - STATE(1628), 1, + STATE(765), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(2326), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(3284), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(3280), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1688), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -95434,75 +94792,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + [22391] = 35, + ACTIONS(71), 1, + sym_comment, + ACTIONS(237), 1, + sym_word, + ACTIONS(258), 1, + anon_sym_DOLLAR, + ACTIONS(264), 1, aux_sym_number_token1, + ACTIONS(266), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(270), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(282), 1, + sym_test_operator, + ACTIONS(284), 1, + sym__brace_start, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1159), 1, + sym__special_character, + ACTIONS(1161), 1, + anon_sym_DQUOTE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1167), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3588), 1, + anon_sym_LPAREN, + ACTIONS(3590), 1, + anon_sym_BANG, + ACTIONS(3596), 1, + anon_sym_TILDE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + ACTIONS(3602), 1, + sym_variable_name, + ACTIONS(4030), 1, + aux_sym__simple_variable_name_token1, + STATE(2500), 1, + sym_command_substitution, + STATE(2623), 1, + aux_sym__literal_repeat1, + STATE(2983), 1, + sym__expression, + STATE(3375), 1, + sym__arithmetic_binary_expression, + STATE(3378), 1, + sym__arithmetic_ternary_expression, + STATE(3407), 1, + sym__arithmetic_unary_expression, + STATE(3409), 1, + sym__arithmetic_postfix_expression, + ACTIONS(1153), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1163), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1169), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [23594] = 24, + ACTIONS(3592), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(3594), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2498), 4, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_process_substitution, + STATE(2499), 4, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + STATE(3271), 4, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + STATE(2976), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [22516] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2261), 1, + ACTIONS(2036), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2263), 1, + ACTIONS(2038), 1, anon_sym_DOLLAR, - ACTIONS(2267), 1, + ACTIONS(2042), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2044), 1, aux_sym_number_token1, - ACTIONS(2271), 1, + ACTIONS(2046), 1, aux_sym_number_token2, - ACTIONS(2273), 1, + ACTIONS(2048), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2275), 1, + ACTIONS(2050), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2277), 1, + ACTIONS(2052), 1, anon_sym_BQUOTE, - ACTIONS(2279), 1, + ACTIONS(2054), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2289), 1, + ACTIONS(2064), 1, sym__brace_start, - ACTIONS(3970), 1, + ACTIONS(4022), 1, sym__special_character, - ACTIONS(3974), 1, + ACTIONS(4026), 1, sym_variable_name, - ACTIONS(3976), 1, + ACTIONS(4028), 1, sym_test_operator, - ACTIONS(4066), 1, + ACTIONS(4032), 1, aux_sym__simple_variable_name_token1, - STATE(1743), 1, + STATE(1786), 1, aux_sym__literal_repeat1, - STATE(6739), 1, + STATE(6787), 1, sym_subscript, - ACTIONS(1799), 2, + ACTIONS(1724), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2259), 2, + ACTIONS(2034), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2281), 2, + ACTIONS(2056), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3968), 3, + ACTIONS(4020), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(746), 3, + STATE(770), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(2330), 9, + STATE(2326), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -95512,7 +94944,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1797), 16, + ACTIONS(1722), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -95529,49 +94961,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [23697] = 20, + [22619] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3785), 1, + ACTIONS(3706), 1, + anon_sym_DQUOTE, + ACTIONS(3996), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3787), 1, + ACTIONS(3998), 1, anon_sym_DOLLAR, - ACTIONS(3791), 1, - anon_sym_DQUOTE, - ACTIONS(3793), 1, + ACTIONS(4000), 1, + sym__special_character, + ACTIONS(4002), 1, aux_sym_number_token1, - ACTIONS(3795), 1, + ACTIONS(4004), 1, aux_sym_number_token2, - ACTIONS(3797), 1, + ACTIONS(4006), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3799), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3803), 1, + ACTIONS(4010), 1, + anon_sym_BQUOTE, + ACTIONS(4012), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3809), 1, - sym__brace_start, - ACTIONS(4070), 1, - sym__special_character, - ACTIONS(4072), 1, + ACTIONS(4016), 1, sym_test_operator, - STATE(4305), 1, + ACTIONS(4018), 1, + sym__brace_start, + STATE(2307), 1, aux_sym__literal_repeat1, - STATE(4736), 1, - sym_concatenation, - ACTIONS(2500), 2, + ACTIONS(2173), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3783), 2, + ACTIONS(3994), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3805), 2, + ACTIONS(4014), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4068), 3, + STATE(761), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3992), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4472), 9, + STATE(1836), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -95581,7 +95016,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2498), 21, + ACTIONS(2171), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -95591,6 +95026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -95601,53 +95037,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [23791] = 21, + [22716] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4078), 1, + ACTIONS(3241), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4080), 1, + ACTIONS(3243), 1, anon_sym_DOLLAR, - ACTIONS(4082), 1, - sym__special_character, - ACTIONS(4084), 1, + ACTIONS(3247), 1, anon_sym_DQUOTE, - ACTIONS(4086), 1, + ACTIONS(3249), 1, aux_sym_number_token1, - ACTIONS(4088), 1, + ACTIONS(3251), 1, aux_sym_number_token2, - ACTIONS(4090), 1, + ACTIONS(3253), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4092), 1, + ACTIONS(3255), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4094), 1, - anon_sym_BQUOTE, - ACTIONS(4096), 1, + ACTIONS(3259), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4100), 1, - sym_test_operator, - ACTIONS(4102), 1, + ACTIONS(3267), 1, sym__brace_start, - STATE(4521), 1, + ACTIONS(3770), 1, + sym__special_character, + ACTIONS(3774), 1, + sym_test_operator, + ACTIONS(4034), 1, + aux_sym__simple_variable_name_token1, + STATE(2250), 1, aux_sym__literal_repeat1, - STATE(5023), 1, - sym_concatenation, - ACTIONS(2496), 2, + ACTIONS(2507), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4076), 2, + ACTIONS(3239), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4098), 2, + ACTIONS(3261), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4074), 3, + STATE(740), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(3768), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4828), 9, + STATE(1915), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -95657,7 +95092,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2494), 20, + ACTIONS(2505), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -95667,7 +95102,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -95678,109 +95112,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [23887] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(809), 24, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(579), 28, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [23947] = 21, + [22813] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3837), 1, + ACTIONS(3062), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3840), 1, + ACTIONS(3065), 1, anon_sym_DOLLAR, - ACTIONS(3846), 1, + ACTIONS(3071), 1, anon_sym_DQUOTE, - ACTIONS(3849), 1, + ACTIONS(3074), 1, aux_sym_number_token1, - ACTIONS(3852), 1, + ACTIONS(3077), 1, aux_sym_number_token2, - ACTIONS(3855), 1, + ACTIONS(3080), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3858), 1, + ACTIONS(3083), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3861), 1, + ACTIONS(3086), 1, anon_sym_BQUOTE, - ACTIONS(3864), 1, + ACTIONS(3089), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3873), 1, + ACTIONS(3098), 1, sym__brace_start, - ACTIONS(4107), 1, + ACTIONS(4039), 1, sym__special_character, - ACTIONS(4110), 1, + ACTIONS(4042), 1, sym_test_operator, - STATE(2270), 1, + STATE(2006), 1, aux_sym__literal_repeat1, - ACTIONS(2216), 2, + ACTIONS(2183), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3834), 2, + ACTIONS(3059), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3867), 2, + ACTIONS(3092), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(781), 2, + STATE(768), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(4104), 3, + ACTIONS(4036), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1968), 9, + STATE(1858), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -95790,7 +95168,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2214), 19, + ACTIONS(2181), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -95810,45 +95188,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [24043] = 8, + anon_sym_LT_LT_LT, + [22910] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4115), 1, + ACTIONS(3624), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3626), 1, + anon_sym_DOLLAR, + ACTIONS(3630), 1, anon_sym_DQUOTE, - ACTIONS(4119), 1, - sym_variable_name, - STATE(2334), 1, - sym_string, - ACTIONS(4117), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 4, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, + ACTIONS(3632), 1, + aux_sym_number_token1, + ACTIONS(3634), 1, + aux_sym_number_token2, + ACTIONS(3636), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3638), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3640), 1, + anon_sym_BQUOTE, + ACTIONS(3642), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3648), 1, sym__brace_start, - ACTIONS(4113), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 34, + ACTIONS(3728), 1, + sym__special_character, + ACTIONS(4047), 1, + sym_test_operator, + STATE(4378), 1, + aux_sym__literal_repeat1, + STATE(4788), 1, + sym_concatenation, + ACTIONS(3622), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3644), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2303), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4045), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4573), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2301), 20, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -95858,66 +95265,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [24113] = 21, + [23007] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4078), 1, + ACTIONS(2072), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4080), 1, + ACTIONS(2075), 1, anon_sym_DOLLAR, - ACTIONS(4084), 1, + ACTIONS(2081), 1, anon_sym_DQUOTE, - ACTIONS(4086), 1, + ACTIONS(2084), 1, aux_sym_number_token1, - ACTIONS(4088), 1, + ACTIONS(2087), 1, aux_sym_number_token2, - ACTIONS(4090), 1, + ACTIONS(2090), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4092), 1, + ACTIONS(2093), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4094), 1, + ACTIONS(2096), 1, anon_sym_BQUOTE, - ACTIONS(4096), 1, + ACTIONS(2099), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4102), 1, + ACTIONS(2114), 1, sym__brace_start, - ACTIONS(4123), 1, + ACTIONS(4052), 1, sym__special_character, - ACTIONS(4125), 1, + ACTIONS(4055), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(4058), 1, + sym_variable_name, + ACTIONS(4061), 1, sym_test_operator, - STATE(4521), 1, + STATE(1786), 1, aux_sym__literal_repeat1, - STATE(5023), 1, - sym_concatenation, - ACTIONS(4076), 2, + STATE(6787), 1, + sym_subscript, + ACTIONS(1637), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2069), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4098), 2, + ACTIONS(2102), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2496), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(4121), 3, + ACTIONS(4049), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4705), 9, + STATE(770), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(2326), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -95927,17 +95327,14 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2494), 19, - anon_sym_SEMI, + ACTIONS(1635), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -95947,23 +95344,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [24209] = 8, + [23110] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3189), 1, + ACTIONS(3103), 1, anon_sym_DQUOTE, - ACTIONS(4058), 1, + ACTIONS(3107), 1, sym_variable_name, - STATE(1737), 1, + STATE(1501), 1, sym_string, - ACTIONS(4056), 2, + ACTIONS(3105), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1235), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(4054), 9, + ACTIONS(3101), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -95973,7 +95370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 35, + ACTIONS(1227), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -95995,6 +95392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -96009,59 +95407,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [24279] = 20, + [23181] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3785), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3787), 1, - anon_sym_DOLLAR, - ACTIONS(3791), 1, + ACTIONS(3103), 1, anon_sym_DQUOTE, - ACTIONS(3793), 1, - aux_sym_number_token1, - ACTIONS(3795), 1, - aux_sym_number_token2, - ACTIONS(3797), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3799), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3803), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3809), 1, - sym__brace_start, - ACTIONS(4070), 1, - sym__special_character, - ACTIONS(4129), 1, - sym_test_operator, - STATE(4277), 1, - aux_sym__literal_repeat1, - STATE(4782), 1, - sym_concatenation, - ACTIONS(2496), 2, + ACTIONS(3107), 1, + sym_variable_name, + STATE(1501), 1, + sym_string, + ACTIONS(3105), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3783), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(3101), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 36, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3805), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4127), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(4479), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2494), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -96081,99 +95454,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [24373] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3580), 1, - anon_sym_DQUOTE, - ACTIONS(3610), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(3612), 1, - anon_sym_DOLLAR, - ACTIONS(3616), 1, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3618), 1, aux_sym_number_token2, - ACTIONS(3620), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3622), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3626), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3632), 1, - sym__brace_start, - ACTIONS(4133), 1, - sym__special_character, - ACTIONS(4135), 1, - sym_test_operator, - STATE(2270), 1, - aux_sym__literal_repeat1, - ACTIONS(2074), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3608), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3628), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(781), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4131), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(1968), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2072), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [24467] = 8, + [23252] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3189), 1, + ACTIONS(3390), 1, anon_sym_DQUOTE, - ACTIONS(4058), 1, + ACTIONS(3608), 1, sym_variable_name, - STATE(1737), 1, + STATE(1816), 1, sym_string, - ACTIONS(4056), 2, + ACTIONS(3606), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + ACTIONS(1235), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(4054), 9, + ts_builtin_sym_end, + ACTIONS(3604), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -96183,7 +95497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 35, + ACTIONS(1227), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -96219,52 +95533,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [24537] = 21, + [23323] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3580), 1, - anon_sym_DQUOTE, - ACTIONS(3610), 1, + ACTIONS(3664), 1, + anon_sym_LT_LT_LT, + ACTIONS(3666), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3612), 1, + ACTIONS(3668), 1, anon_sym_DOLLAR, - ACTIONS(3616), 1, + ACTIONS(3670), 1, + sym__special_character, + ACTIONS(3672), 1, + anon_sym_DQUOTE, + ACTIONS(3674), 1, aux_sym_number_token1, - ACTIONS(3618), 1, + ACTIONS(3676), 1, aux_sym_number_token2, - ACTIONS(3620), 1, + ACTIONS(3678), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3622), 1, + ACTIONS(3680), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3682), 1, anon_sym_BQUOTE, - ACTIONS(3626), 1, + ACTIONS(3684), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3632), 1, - sym__brace_start, - ACTIONS(4133), 1, - sym__special_character, - ACTIONS(4135), 1, - sym_test_operator, - STATE(2270), 1, - aux_sym__literal_repeat1, - ACTIONS(2074), 2, + ACTIONS(3688), 1, sym_file_descriptor, + ACTIONS(3690), 1, + sym_test_operator, + ACTIONS(3692), 1, + sym__brace_start, + ACTIONS(4064), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(3608), 2, + STATE(3562), 1, + aux_sym__heredoc_command, + STATE(5280), 1, + aux_sym__literal_repeat1, + STATE(5411), 1, + sym_concatenation, + STATE(6998), 1, + sym__heredoc_pipeline, + STATE(7053), 1, + sym__heredoc_expression, + ACTIONS(3652), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3628), 2, + ACTIONS(3654), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3656), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3660), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3686), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(781), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4131), 3, + ACTIONS(3650), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1968), 9, + STATE(5544), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3658), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(5109), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [23438] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1787), 1, + aux_sym__literal_repeat1, + STATE(2251), 1, + sym_concatenation, + ACTIONS(2303), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + STATE(1652), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -96274,7 +95641,8 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2072), 19, + ACTIONS(2301), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -96294,52 +95662,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [24633] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3580), 1, - anon_sym_DQUOTE, - ACTIONS(3610), 1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(3612), 1, anon_sym_DOLLAR, - ACTIONS(3616), 1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3618), 1, aux_sym_number_token2, - ACTIONS(3620), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3622), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3624), 1, anon_sym_BQUOTE, - ACTIONS(3626), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3632), 1, - sym__brace_start, - ACTIONS(4133), 1, - sym__special_character, - ACTIONS(4135), 1, - sym_test_operator, - STATE(2270), 1, - aux_sym__literal_repeat1, - ACTIONS(2096), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3608), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3628), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(781), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4131), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(1968), 9, + [23505] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1792), 1, + aux_sym__literal_repeat1, + STATE(1944), 1, + sym_concatenation, + ACTIONS(2307), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + STATE(1662), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -96349,7 +95702,8 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2094), 19, + ACTIONS(2305), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -96369,125 +95723,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [24729] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3785), 1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(3787), 1, anon_sym_DOLLAR, - ACTIONS(3791), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(3793), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3795), 1, aux_sym_number_token2, - ACTIONS(3797), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3799), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3801), 1, anon_sym_BQUOTE, - ACTIONS(3803), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3809), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [23572] = 35, + ACTIONS(71), 1, + sym_comment, + ACTIONS(237), 1, + sym_word, + ACTIONS(258), 1, + anon_sym_DOLLAR, + ACTIONS(264), 1, + aux_sym_number_token1, + ACTIONS(266), 1, + aux_sym_number_token2, + ACTIONS(270), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym_test_operator, + ACTIONS(284), 1, sym__brace_start, - ACTIONS(4139), 1, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1159), 1, sym__special_character, - ACTIONS(4141), 1, - sym_test_operator, - STATE(4277), 1, + ACTIONS(1161), 1, + anon_sym_DQUOTE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3588), 1, + anon_sym_LPAREN, + ACTIONS(3590), 1, + anon_sym_BANG, + ACTIONS(3596), 1, + anon_sym_TILDE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + ACTIONS(3602), 1, + sym_variable_name, + ACTIONS(4066), 1, + aux_sym__simple_variable_name_token1, + STATE(2500), 1, + sym_command_substitution, + STATE(2623), 1, aux_sym__literal_repeat1, - STATE(4782), 1, - sym_concatenation, - ACTIONS(2496), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3783), 2, + STATE(3076), 1, + sym__expression, + STATE(3375), 1, + sym__arithmetic_binary_expression, + STATE(3378), 1, + sym__arithmetic_ternary_expression, + STATE(3407), 1, + sym__arithmetic_unary_expression, + STATE(3409), 1, + sym__arithmetic_postfix_expression, + ACTIONS(1153), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3805), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4137), 3, + ACTIONS(1163), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(4834), 9, + ACTIONS(1169), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3592), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(3594), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2498), 4, sym_arithmetic_expansion, sym_brace_expression, - sym_string, sym_translated_string, + sym_process_substitution, + STATE(2499), 4, + sym_string, sym_number, sym_simple_expansion, sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2494), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [24825] = 20, + STATE(3252), 4, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + STATE(2976), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [23697] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3580), 1, - anon_sym_DQUOTE, - ACTIONS(3610), 1, + ACTIONS(4072), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3612), 1, + ACTIONS(4074), 1, anon_sym_DOLLAR, - ACTIONS(3616), 1, + ACTIONS(4076), 1, + sym__special_character, + ACTIONS(4078), 1, + anon_sym_DQUOTE, + ACTIONS(4080), 1, aux_sym_number_token1, - ACTIONS(3618), 1, + ACTIONS(4082), 1, aux_sym_number_token2, - ACTIONS(3620), 1, + ACTIONS(4084), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3622), 1, + ACTIONS(4086), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3626), 1, + ACTIONS(4088), 1, + anon_sym_BQUOTE, + ACTIONS(4090), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3632), 1, - sym__brace_start, - ACTIONS(4133), 1, - sym__special_character, - ACTIONS(4135), 1, + ACTIONS(4094), 1, sym_test_operator, - STATE(2270), 1, + ACTIONS(4096), 1, + sym__brace_start, + STATE(4503), 1, aux_sym__literal_repeat1, - ACTIONS(2096), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3608), 2, + STATE(4987), 1, + sym_concatenation, + ACTIONS(4070), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3628), 2, + ACTIONS(4092), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(781), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4131), 3, + ACTIONS(2303), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4068), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(1968), 9, + STATE(4663), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -96497,7 +95885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2094), 20, + ACTIONS(2301), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -96517,52 +95905,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [24919] = 21, + [23793] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3785), 1, + ACTIONS(3706), 1, + anon_sym_DQUOTE, + ACTIONS(3996), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3787), 1, + ACTIONS(3998), 1, anon_sym_DOLLAR, - ACTIONS(3791), 1, - anon_sym_DQUOTE, - ACTIONS(3793), 1, + ACTIONS(4002), 1, aux_sym_number_token1, - ACTIONS(3795), 1, + ACTIONS(4004), 1, aux_sym_number_token2, - ACTIONS(3797), 1, + ACTIONS(4006), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3799), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3801), 1, + ACTIONS(4010), 1, anon_sym_BQUOTE, - ACTIONS(3803), 1, + ACTIONS(4012), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3809), 1, + ACTIONS(4018), 1, sym__brace_start, - ACTIONS(4139), 1, + ACTIONS(4100), 1, sym__special_character, - ACTIONS(4145), 1, + ACTIONS(4102), 1, sym_test_operator, - STATE(4305), 1, + STATE(2307), 1, aux_sym__literal_repeat1, - STATE(4736), 1, - sym_concatenation, - ACTIONS(2500), 2, + ACTIONS(2173), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3783), 2, + ACTIONS(3994), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3805), 2, + ACTIONS(4014), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4143), 3, + STATE(784), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4098), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4838), 9, + STATE(2129), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -96572,7 +95960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2498), 20, + ACTIONS(2171), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -96592,24 +95980,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [25015] = 8, + [23889] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3580), 1, + ACTIONS(3247), 1, anon_sym_DQUOTE, - ACTIONS(3584), 1, + ACTIONS(3724), 1, sym_variable_name, - STATE(2121), 1, + STATE(1876), 1, sym_string, - ACTIONS(3582), 2, + ACTIONS(3722), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1241), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3578), 9, + ACTIONS(3720), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -96655,81 +96042,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [25085] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2725), 1, - ts_builtin_sym_end, - ACTIONS(2717), 23, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2715), 28, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [25147] = 8, + [23959] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2267), 1, + ACTIONS(4106), 1, anon_sym_DQUOTE, - ACTIONS(3829), 1, + ACTIONS(4110), 1, sym_variable_name, - STATE(1595), 1, + STATE(2268), 1, sym_string, - ACTIONS(3827), 2, + ACTIONS(4108), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + ACTIONS(1235), 4, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(3825), 9, + ACTIONS(4104), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -96739,19 +96069,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 35, + ACTIONS(1227), 34, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -96760,7 +96089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -96775,23 +96104,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [25217] = 8, + [24029] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3580), 1, + ACTIONS(4106), 1, anon_sym_DQUOTE, - ACTIONS(3584), 1, + ACTIONS(4110), 1, sym_variable_name, - STATE(2121), 1, + STATE(2268), 1, sym_string, - ACTIONS(3582), 2, + ACTIONS(4108), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + ACTIONS(1241), 4, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(3578), 9, + ACTIONS(4104), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -96801,19 +96131,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 35, + ACTIONS(1239), 34, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -96822,7 +96151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -96837,57 +96166,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [25287] = 25, + [24099] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(4147), 1, + ACTIONS(4112), 1, sym_word, - ACTIONS(4151), 1, + ACTIONS(4118), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4153), 1, + ACTIONS(4121), 1, anon_sym_DOLLAR, - ACTIONS(4155), 1, + ACTIONS(4124), 1, sym__special_character, - ACTIONS(4157), 1, + ACTIONS(4127), 1, anon_sym_DQUOTE, - ACTIONS(4161), 1, + ACTIONS(4133), 1, aux_sym_number_token1, - ACTIONS(4163), 1, + ACTIONS(4136), 1, aux_sym_number_token2, - ACTIONS(4165), 1, + ACTIONS(4139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4167), 1, + ACTIONS(4142), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4169), 1, + ACTIONS(4145), 1, anon_sym_BQUOTE, - ACTIONS(4171), 1, + ACTIONS(4148), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4175), 1, + ACTIONS(4154), 1, aux_sym__simple_variable_name_token1, - ACTIONS(4177), 1, + ACTIONS(4157), 1, sym_variable_name, - ACTIONS(4179), 1, + ACTIONS(4160), 1, sym_test_operator, - ACTIONS(4181), 1, + ACTIONS(4163), 1, sym__brace_start, - STATE(2688), 1, + STATE(2629), 1, aux_sym__literal_repeat1, - STATE(6751), 1, + STATE(6791), 1, sym_subscript, - ACTIONS(4149), 2, + ACTIONS(4115), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4159), 2, + ACTIONS(4130), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4173), 2, + ACTIONS(4151), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(803), 3, + STATE(783), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - ACTIONS(1797), 7, + ACTIONS(1635), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -96895,7 +96224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(2419), 9, + STATE(2357), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -96905,7 +96234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1799), 10, + ACTIONS(1637), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -96916,51 +96245,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [25391] = 21, + [24203] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4078), 1, + ACTIONS(3953), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4080), 1, + ACTIONS(3956), 1, anon_sym_DOLLAR, - ACTIONS(4082), 1, - sym__special_character, - ACTIONS(4084), 1, + ACTIONS(3962), 1, anon_sym_DQUOTE, - ACTIONS(4086), 1, + ACTIONS(3965), 1, aux_sym_number_token1, - ACTIONS(4088), 1, + ACTIONS(3968), 1, aux_sym_number_token2, - ACTIONS(4090), 1, + ACTIONS(3971), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4092), 1, + ACTIONS(3974), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4094), 1, + ACTIONS(3977), 1, anon_sym_BQUOTE, - ACTIONS(4096), 1, + ACTIONS(3980), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4102), 1, + ACTIONS(3989), 1, sym__brace_start, - ACTIONS(4185), 1, + ACTIONS(4169), 1, + sym__special_character, + ACTIONS(4172), 1, sym_test_operator, - STATE(4546), 1, + STATE(2307), 1, aux_sym__literal_repeat1, - STATE(4907), 1, - sym_concatenation, - ACTIONS(2500), 2, + ACTIONS(2183), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4076), 2, + ACTIONS(3950), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4098), 2, + ACTIONS(3983), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4183), 3, + STATE(784), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4166), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4692), 9, + STATE(2129), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -96970,7 +96300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2498), 20, + ACTIONS(2181), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -96980,7 +96310,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -96991,160 +96320,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [25487] = 25, - ACTIONS(71), 1, + [24299] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(4147), 1, - sym_word, - ACTIONS(4151), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4153), 1, - anon_sym_DOLLAR, - ACTIONS(4155), 1, - sym__special_character, - ACTIONS(4157), 1, + ACTIONS(3706), 1, anon_sym_DQUOTE, - ACTIONS(4161), 1, - aux_sym_number_token1, - ACTIONS(4163), 1, - aux_sym_number_token2, - ACTIONS(4165), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4167), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4169), 1, - anon_sym_BQUOTE, - ACTIONS(4171), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4177), 1, + ACTIONS(3710), 1, sym_variable_name, - ACTIONS(4179), 1, + STATE(1942), 1, + sym_string, + ACTIONS(3708), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 3, + sym_file_descriptor, sym_test_operator, - ACTIONS(4181), 1, sym__brace_start, - ACTIONS(4187), 1, - aux_sym__simple_variable_name_token1, - STATE(2688), 1, - aux_sym__literal_repeat1, - STATE(6751), 1, - sym_subscript, - ACTIONS(4149), 2, + ACTIONS(3704), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 35, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4159), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4173), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(797), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - ACTIONS(1755), 7, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2419), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1757), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [25591] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2721), 1, - ts_builtin_sym_end, - ACTIONS(2717), 23, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, + sym__special_character, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2715), 28, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, sym_word, - [25653] = 8, + [24369] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2267), 1, + ACTIONS(3706), 1, anon_sym_DQUOTE, - ACTIONS(3829), 1, + ACTIONS(3710), 1, sym_variable_name, - STATE(1595), 1, + STATE(1942), 1, sym_string, - ACTIONS(3827), 2, + ACTIONS(3708), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1241), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3825), 9, + ACTIONS(3704), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -97190,122 +96444,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [25723] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(809), 23, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(579), 29, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_done, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [25783] = 25, - ACTIONS(71), 1, + [24439] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(4189), 1, - sym_word, - ACTIONS(4195), 1, + ACTIONS(4072), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4198), 1, + ACTIONS(4074), 1, anon_sym_DOLLAR, - ACTIONS(4201), 1, - sym__special_character, - ACTIONS(4204), 1, + ACTIONS(4078), 1, anon_sym_DQUOTE, - ACTIONS(4210), 1, + ACTIONS(4080), 1, aux_sym_number_token1, - ACTIONS(4213), 1, + ACTIONS(4082), 1, aux_sym_number_token2, - ACTIONS(4216), 1, + ACTIONS(4084), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4219), 1, + ACTIONS(4086), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4222), 1, + ACTIONS(4088), 1, anon_sym_BQUOTE, - ACTIONS(4225), 1, + ACTIONS(4090), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4231), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(4234), 1, - sym_variable_name, - ACTIONS(4237), 1, - sym_test_operator, - ACTIONS(4240), 1, + ACTIONS(4096), 1, sym__brace_start, - STATE(2688), 1, + ACTIONS(4177), 1, + sym__special_character, + ACTIONS(4179), 1, + sym_test_operator, + STATE(4503), 1, aux_sym__literal_repeat1, - STATE(6751), 1, - sym_subscript, - ACTIONS(4192), 2, + STATE(4987), 1, + sym_concatenation, + ACTIONS(2303), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4070), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4207), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4228), 2, + ACTIONS(4092), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(803), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - ACTIONS(1702), 7, - anon_sym_PIPE, - anon_sym_LT, + ACTIONS(4175), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4798), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2301), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(2419), 9, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [24535] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3706), 1, + anon_sym_DQUOTE, + ACTIONS(3996), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOLLAR, + ACTIONS(4002), 1, + aux_sym_number_token1, + ACTIONS(4004), 1, + aux_sym_number_token2, + ACTIONS(4006), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4008), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4012), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4018), 1, + sym__brace_start, + ACTIONS(4100), 1, + sym__special_character, + ACTIONS(4102), 1, + sym_test_operator, + STATE(2307), 1, + aux_sym__literal_repeat1, + ACTIONS(2169), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3994), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4014), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(784), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4098), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2129), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -97315,63 +96572,222 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1704), 10, - sym_file_descriptor, + ACTIONS(2167), 20, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [25887] = 21, + anon_sym_BQUOTE, + [24629] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4078), 1, + ACTIONS(4072), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4080), 1, + ACTIONS(4074), 1, anon_sym_DOLLAR, - ACTIONS(4084), 1, + ACTIONS(4078), 1, anon_sym_DQUOTE, - ACTIONS(4086), 1, + ACTIONS(4080), 1, aux_sym_number_token1, - ACTIONS(4088), 1, + ACTIONS(4082), 1, aux_sym_number_token2, - ACTIONS(4090), 1, + ACTIONS(4084), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4092), 1, + ACTIONS(4086), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4094), 1, + ACTIONS(4088), 1, anon_sym_BQUOTE, + ACTIONS(4090), 1, + anon_sym_DOLLAR_BQUOTE, ACTIONS(4096), 1, + sym__brace_start, + ACTIONS(4177), 1, + sym__special_character, + ACTIONS(4183), 1, + sym_test_operator, + STATE(4525), 1, + aux_sym__literal_repeat1, + STATE(4872), 1, + sym_concatenation, + ACTIONS(2307), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4070), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4092), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4181), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4802), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2305), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [24725] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3624), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3626), 1, + anon_sym_DOLLAR, + ACTIONS(3630), 1, + anon_sym_DQUOTE, + ACTIONS(3632), 1, + aux_sym_number_token1, + ACTIONS(3634), 1, + aux_sym_number_token2, + ACTIONS(3636), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3638), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3640), 1, + anon_sym_BQUOTE, + ACTIONS(3642), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4102), 1, + ACTIONS(3648), 1, sym__brace_start, - ACTIONS(4123), 1, + ACTIONS(4187), 1, sym__special_character, - ACTIONS(4245), 1, + ACTIONS(4189), 1, sym_test_operator, - STATE(4546), 1, + STATE(4378), 1, aux_sym__literal_repeat1, - STATE(4907), 1, + STATE(4788), 1, sym_concatenation, - ACTIONS(4076), 2, + ACTIONS(2303), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3622), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4098), 2, + ACTIONS(3644), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2500), 3, + ACTIONS(4185), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4832), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2301), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [24821] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3624), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3626), 1, + anon_sym_DOLLAR, + ACTIONS(3630), 1, + anon_sym_DQUOTE, + ACTIONS(3632), 1, + aux_sym_number_token1, + ACTIONS(3634), 1, + aux_sym_number_token2, + ACTIONS(3636), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3638), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3640), 1, + anon_sym_BQUOTE, + ACTIONS(3642), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3648), 1, + sym__brace_start, + ACTIONS(4187), 1, + sym__special_character, + ACTIONS(4193), 1, + sym_test_operator, + STATE(4395), 1, + aux_sym__literal_repeat1, + STATE(4818), 1, + sym_concatenation, + ACTIONS(2307), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4243), 3, + ACTIONS(3622), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3644), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4191), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(4614), 9, + STATE(4834), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -97381,7 +96797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2498), 19, + ACTIONS(2305), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -97401,24 +96817,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [25983] = 8, + anon_sym_LT_LT_LT, + [24917] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4115), 1, + ACTIONS(2042), 1, anon_sym_DQUOTE, - ACTIONS(4119), 1, + ACTIONS(3878), 1, sym_variable_name, - STATE(2334), 1, + STATE(1683), 1, sym_string, - ACTIONS(4117), 2, + ACTIONS(3876), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 4, + ACTIONS(1235), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ACTIONS(4113), 9, + ACTIONS(3874), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -97428,18 +96844,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 34, + ACTIONS(1227), 35, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -97448,7 +96865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -97463,39 +96880,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [26053] = 6, + [24987] = 8, ACTIONS(3), 1, sym_comment, - STATE(1744), 1, - aux_sym__literal_repeat1, - STATE(811), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2074), 5, - sym_file_descriptor, + ACTIONS(2042), 1, + anon_sym_DQUOTE, + ACTIONS(3878), 1, sym_variable_name, + STATE(1683), 1, + sym_string, + ACTIONS(3876), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(2337), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2072), 34, + ACTIONS(3874), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 35, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -97505,12 +96927,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -97522,106 +96942,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [26118] = 13, + [25057] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4259), 1, + ACTIONS(3706), 1, + anon_sym_DQUOTE, + ACTIONS(3996), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3998), 1, + anon_sym_DOLLAR, + ACTIONS(4002), 1, + aux_sym_number_token1, + ACTIONS(4004), 1, + aux_sym_number_token2, + ACTIONS(4006), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4008), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4012), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4018), 1, + sym__brace_start, + ACTIONS(4100), 1, + sym__special_character, + ACTIONS(4102), 1, + sym_test_operator, + STATE(2307), 1, + aux_sym__literal_repeat1, + ACTIONS(2173), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4263), 1, - sym_variable_name, - STATE(6726), 1, - sym_subscript, - ACTIONS(4249), 2, + ACTIONS(3994), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4014), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(784), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4098), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2129), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2171), 20, anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(4251), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4253), 2, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4255), 2, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - STATE(4237), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4261), 3, + anon_sym_BQUOTE, + [25151] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2757), 1, + ts_builtin_sym_end, + ACTIONS(2753), 23, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - STATE(4283), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4257), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(4247), 28, anon_sym_LPAREN_LPAREN, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(2751), 28, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, sym_word, - [26197] = 6, + [25213] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4266), 1, - aux_sym_concatenation_token1, - ACTIONS(4268), 1, - sym__concat, - STATE(820), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, + ACTIONS(3624), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3626), 1, + anon_sym_DOLLAR, + ACTIONS(3630), 1, + anon_sym_DQUOTE, + ACTIONS(3632), 1, + aux_sym_number_token1, + ACTIONS(3634), 1, + aux_sym_number_token2, + ACTIONS(3636), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3638), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3642), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3648), 1, sym__brace_start, + ACTIONS(4197), 1, + sym__special_character, + ACTIONS(4199), 1, + sym_test_operator, + STATE(4378), 1, + aux_sym__literal_repeat1, + STATE(4788), 1, + sym_concatenation, + ACTIONS(2303), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 43, + ACTIONS(3622), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3644), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4195), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4599), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2301), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -97631,61 +97147,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_BQUOTE, + [25307] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3624), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3626), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(3630), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3632), 1, aux_sym_number_token1, + ACTIONS(3634), 1, aux_sym_number_token2, + ACTIONS(3636), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3638), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(3642), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3648), 1, + sym__brace_start, + ACTIONS(4197), 1, + sym__special_character, + ACTIONS(4203), 1, + sym_test_operator, + STATE(4395), 1, + aux_sym__literal_repeat1, + STATE(4818), 1, + sym_concatenation, + ACTIONS(2307), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3622), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3644), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(4201), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [26262] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4263), 1, - sym_variable_name, - ACTIONS(4272), 1, - aux_sym_heredoc_redirect_token1, - STATE(6726), 1, - sym_subscript, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(4237), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4261), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - STATE(4283), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4270), 10, + STATE(4601), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2305), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4247), 28, - anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -97693,29 +97219,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_BQUOTE, + [25401] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4072), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4074), 1, anon_sym_DOLLAR, + ACTIONS(4076), 1, sym__special_character, + ACTIONS(4078), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4080), 1, aux_sym_number_token1, + ACTIONS(4082), 1, aux_sym_number_token2, + ACTIONS(4084), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4086), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4088), 1, anon_sym_BQUOTE, + ACTIONS(4090), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4096), 1, + sym__brace_start, + ACTIONS(4207), 1, + sym_test_operator, + STATE(4525), 1, + aux_sym__literal_repeat1, + STATE(4872), 1, + sym_concatenation, + ACTIONS(4070), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4092), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(2307), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4205), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [26335] = 4, + STATE(4698), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2305), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [25497] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(2725), 1, - anon_sym_BQUOTE, - ACTIONS(2717), 22, + ACTIONS(2838), 1, + ts_builtin_sym_end, + ACTIONS(2753), 23, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -97735,10 +97322,11 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2715), 28, + ACTIONS(2751), 28, anon_sym_for, anon_sym_select, anon_sym_LT, @@ -97767,53 +97355,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [26396] = 21, + [25559] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 1, + ACTIONS(3706), 1, + anon_sym_DQUOTE, + ACTIONS(3996), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2738), 1, + ACTIONS(3998), 1, anon_sym_DOLLAR, - ACTIONS(2744), 1, - anon_sym_DQUOTE, - ACTIONS(2747), 1, + ACTIONS(4002), 1, aux_sym_number_token1, - ACTIONS(2750), 1, + ACTIONS(4004), 1, aux_sym_number_token2, - ACTIONS(2753), 1, + ACTIONS(4006), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2756), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2759), 1, + ACTIONS(4010), 1, anon_sym_BQUOTE, - ACTIONS(2762), 1, + ACTIONS(4012), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2771), 1, + ACTIONS(4018), 1, sym__brace_start, - ACTIONS(4277), 1, + ACTIONS(4100), 1, sym__special_character, - ACTIONS(4280), 1, + ACTIONS(4102), 1, sym_test_operator, - STATE(1744), 1, + STATE(2307), 1, aux_sym__literal_repeat1, - ACTIONS(2732), 2, + ACTIONS(2169), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3994), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2765), 2, + ACTIONS(4014), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(811), 2, + STATE(784), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2216), 3, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(4274), 3, + ACTIONS(4098), 3, sym_raw_string, sym_ansi_c_string, sym_word, - STATE(2337), 9, + STATE(2129), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -97823,14 +97410,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2214), 17, + ACTIONS(2167), 19, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -97840,13 +97430,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [26491] = 4, + [25655] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(2721), 1, - anon_sym_BQUOTE, - ACTIONS(2717), 22, + ACTIONS(819), 23, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -97866,10 +97453,11 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2715), 28, + ACTIONS(579), 29, anon_sym_for, anon_sym_select, anon_sym_LT, @@ -97877,6 +97465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_while, anon_sym_until, + anon_sym_done, anon_sym_if, anon_sym_case, anon_sym_function, @@ -97898,41 +97487,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [26552] = 7, + [25715] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4266), 1, - aux_sym_concatenation_token1, - ACTIONS(4283), 1, - anon_sym_LPAREN, - ACTIONS(4286), 1, - sym__concat, - STATE(814), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1281), 5, + ACTIONS(3247), 1, + anon_sym_DQUOTE, + ACTIONS(3724), 1, + sym_variable_name, + STATE(1876), 1, + sym_string, + ACTIONS(3722), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1271), 42, + ACTIONS(3720), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -97941,12 +97534,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -97958,139 +97549,268 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [26619] = 6, - ACTIONS(3), 1, + [25785] = 25, + ACTIONS(71), 1, sym_comment, - ACTIONS(4266), 1, - aux_sym_concatenation_token1, - ACTIONS(4288), 1, - sym__concat, - STATE(820), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, - sym_file_descriptor, + ACTIONS(4209), 1, + sym_word, + ACTIONS(4213), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4215), 1, + anon_sym_DOLLAR, + ACTIONS(4217), 1, + sym__special_character, + ACTIONS(4219), 1, + anon_sym_DQUOTE, + ACTIONS(4223), 1, + aux_sym_number_token1, + ACTIONS(4225), 1, + aux_sym_number_token2, + ACTIONS(4227), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4229), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4231), 1, + anon_sym_BQUOTE, + ACTIONS(4233), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4237), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(4239), 1, + sym_variable_name, + ACTIONS(4241), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(4243), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 43, + STATE(2629), 1, + aux_sym__literal_repeat1, + STATE(6791), 1, + sym_subscript, + ACTIONS(4211), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4221), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4235), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(783), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + ACTIONS(1722), 7, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(2357), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1724), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [25889] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4209), 1, + sym_word, + ACTIONS(4213), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4215), 1, anon_sym_DOLLAR, + ACTIONS(4217), 1, sym__special_character, + ACTIONS(4219), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4223), 1, aux_sym_number_token1, + ACTIONS(4225), 1, aux_sym_number_token2, + ACTIONS(4227), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4229), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4231), 1, anon_sym_BQUOTE, + ACTIONS(4233), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [26684] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4266), 1, - aux_sym_concatenation_token1, - ACTIONS(4286), 1, - sym__concat, - STATE(814), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1281), 5, - sym_file_descriptor, + ACTIONS(4239), 1, + sym_variable_name, + ACTIONS(4241), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(4243), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1271), 43, + ACTIONS(4245), 1, + aux_sym__simple_variable_name_token1, + STATE(2629), 1, + aux_sym__literal_repeat1, + STATE(6791), 1, + sym_subscript, + ACTIONS(4211), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4221), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4235), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(803), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + ACTIONS(1688), 7, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(2357), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1690), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [25993] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(819), 24, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(579), 28, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, sym_word, - [26749] = 6, + [26053] = 21, ACTIONS(3), 1, sym_comment, - STATE(1744), 1, + ACTIONS(2909), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2912), 1, + anon_sym_DOLLAR, + ACTIONS(2918), 1, + anon_sym_DQUOTE, + ACTIONS(2921), 1, + aux_sym_number_token1, + ACTIONS(2924), 1, + aux_sym_number_token2, + ACTIONS(2927), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2930), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2933), 1, + anon_sym_BQUOTE, + ACTIONS(2936), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2945), 1, + sym__brace_start, + ACTIONS(4250), 1, + sym__special_character, + ACTIONS(4253), 1, + sym_test_operator, + STATE(1777), 1, aux_sym__literal_repeat1, - STATE(811), 2, + ACTIONS(2906), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2939), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(806), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2096), 5, + ACTIONS(2183), 3, sym_file_descriptor, sym_variable_name, - sym_test_operator, - sym__brace_start, aux_sym_heredoc_redirect_token1, - STATE(2337), 9, + ACTIONS(4247), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2324), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -98100,8 +97820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2094), 34, - anon_sym_LPAREN_LPAREN, + ACTIONS(2181), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -98119,66 +97838,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [26814] = 22, + [26148] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(4290), 1, + ACTIONS(4256), 1, sym_word, - ACTIONS(4296), 1, + ACTIONS(4262), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4299), 1, + ACTIONS(4265), 1, anon_sym_DOLLAR, - ACTIONS(4302), 1, + ACTIONS(4268), 1, sym__special_character, - ACTIONS(4305), 1, + ACTIONS(4271), 1, anon_sym_DQUOTE, - ACTIONS(4311), 1, + ACTIONS(4277), 1, aux_sym_number_token1, - ACTIONS(4314), 1, + ACTIONS(4280), 1, aux_sym_number_token2, - ACTIONS(4317), 1, + ACTIONS(4283), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4320), 1, + ACTIONS(4286), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4323), 1, + ACTIONS(4289), 1, anon_sym_BQUOTE, - ACTIONS(4326), 1, + ACTIONS(4292), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4332), 1, + ACTIONS(4298), 1, sym_test_operator, - ACTIONS(4335), 1, + ACTIONS(4301), 1, sym__brace_start, - STATE(2457), 1, + STATE(2560), 1, aux_sym__literal_repeat1, - ACTIONS(4293), 2, + ACTIONS(4259), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4308), 2, + ACTIONS(4274), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4329), 2, + ACTIONS(4295), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(817), 2, + STATE(807), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2214), 7, + ACTIONS(2181), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -98186,7 +97889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(2271), 9, + STATE(2302), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -98196,7 +97899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2216), 13, + ACTIONS(2183), 13, sym_file_descriptor, sym_variable_name, anon_sym_PIPE_PIPE, @@ -98210,44 +97913,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [26911] = 13, + [26245] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4263), 1, - sym_variable_name, - ACTIONS(4340), 1, + ACTIONS(4316), 1, aux_sym_heredoc_redirect_token1, - STATE(6726), 1, + ACTIONS(4320), 1, + sym_variable_name, + STATE(6744), 1, sym_subscript, - ACTIONS(4251), 2, + ACTIONS(4306), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(4308), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4253), 2, + ACTIONS(4310), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4255), 2, + ACTIONS(4312), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(4338), 2, - anon_sym_SEMI, - anon_sym_AMP, - STATE(4237), 2, + STATE(4232), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(4261), 3, + ACTIONS(4318), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - STATE(4283), 3, + STATE(4407), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(2719), 4, + ACTIONS(4314), 4, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(4247), 28, + ACTIONS(4304), 28, anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, @@ -98276,48 +97979,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [26990] = 6, + [26324] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4266), 1, - aux_sym_concatenation_token1, - ACTIONS(4286), 1, - sym__concat, - STATE(808), 1, - aux_sym_concatenation_repeat1, - ACTIONS(278), 5, - sym_file_descriptor, + ACTIONS(4320), 1, + sym_variable_name, + STATE(6744), 1, + sym_subscript, + ACTIONS(4318), 2, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ACTIONS(4323), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(241), 43, + STATE(4232), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(4407), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4304), 18, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -98335,40 +98018,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [27055] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4342), 1, - aux_sym_concatenation_token1, - ACTIONS(4345), 1, - sym__concat, - STATE(820), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1253), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 43, - anon_sym_LPAREN_LPAREN, + ACTIONS(4310), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -98377,122 +98041,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [27120] = 6, - ACTIONS(71), 1, + [26395] = 10, + ACTIONS(3), 1, sym_comment, - STATE(2457), 1, - aux_sym__literal_repeat1, - STATE(817), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2271), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2094), 13, + ACTIONS(4320), 1, + sym_variable_name, + ACTIONS(4327), 1, + aux_sym_heredoc_redirect_token1, + STATE(6744), 1, + sym_subscript, + ACTIONS(4310), 2, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2096), 26, + anon_sym_PIPE_AMP, + STATE(4232), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4318), 3, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + STATE(4407), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4325), 10, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4304), 28, + anon_sym_LPAREN_LPAREN, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [27185] = 9, + sym_word, + [26468] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4263), 1, - sym_variable_name, - STATE(6726), 1, - sym_subscript, - ACTIONS(4261), 2, - sym_test_operator, - sym__brace_start, - ACTIONS(4348), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(4237), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(4283), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4247), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4072), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4074), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(4078), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4080), 1, aux_sym_number_token1, + ACTIONS(4082), 1, aux_sym_number_token2, + ACTIONS(4084), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4086), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(4090), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4096), 1, + sym__brace_start, + ACTIONS(4331), 1, + sym__special_character, + ACTIONS(4333), 1, + sym_test_operator, + STATE(4503), 1, + aux_sym__literal_repeat1, + STATE(4987), 1, + sym_concatenation, + ACTIONS(2303), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4070), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4092), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(4329), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - ACTIONS(4253), 22, + STATE(4848), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2301), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -98502,10 +98166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -98515,15 +98176,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [27256] = 6, + anon_sym_BQUOTE, + [26561] = 6, ACTIONS(71), 1, sym_comment, - STATE(2457), 1, + STATE(2560), 1, aux_sym__literal_repeat1, - STATE(817), 2, + STATE(807), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2271), 9, + STATE(2302), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -98533,7 +98195,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2072), 13, + ACTIONS(2167), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -98547,7 +98209,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(2074), 26, + ACTIONS(2169), 26, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -98574,22 +98236,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [27321] = 6, + [26626] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4266), 1, + ACTIONS(4335), 1, aux_sym_concatenation_token1, - ACTIONS(4286), 1, + ACTIONS(4337), 1, sym__concat, - STATE(808), 1, + STATE(822), 1, aux_sym_concatenation_repeat1, - ACTIONS(1263), 5, + ACTIONS(1258), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 43, + ACTIONS(1251), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -98633,51 +98295,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [27386] = 21, + [26691] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4078), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4080), 1, - anon_sym_DOLLAR, - ACTIONS(4084), 1, - anon_sym_DQUOTE, - ACTIONS(4086), 1, - aux_sym_number_token1, - ACTIONS(4088), 1, - aux_sym_number_token2, - ACTIONS(4090), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4092), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4094), 1, - anon_sym_BQUOTE, - ACTIONS(4096), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4102), 1, - sym__brace_start, - ACTIONS(4352), 1, - sym__special_character, - ACTIONS(4354), 1, - sym_test_operator, - STATE(4521), 1, + STATE(1777), 1, aux_sym__literal_repeat1, - STATE(5023), 1, + STATE(806), 2, sym_concatenation, - ACTIONS(2496), 2, + aux_sym_for_statement_repeat1, + ACTIONS(2169), 5, sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4076), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4098), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4350), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(4921), 9, + STATE(2324), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -98687,17 +98319,15 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2494), 19, - anon_sym_SEMI, + ACTIONS(2167), 34, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -98707,72 +98337,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [27481] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4078), 1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(4084), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(4086), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(4088), 1, aux_sym_number_token2, - ACTIONS(4090), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4092), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4094), 1, anon_sym_BQUOTE, - ACTIONS(4096), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4102), 1, - sym__brace_start, - ACTIONS(4352), 1, - sym__special_character, - ACTIONS(4358), 1, - sym_test_operator, - STATE(4546), 1, - aux_sym__literal_repeat1, - STATE(4907), 1, - sym_concatenation, - ACTIONS(2500), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [26756] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4335), 1, + aux_sym_concatenation_token1, + ACTIONS(4337), 1, + sym__concat, + STATE(818), 1, + aux_sym_concatenation_repeat1, + ACTIONS(278), 5, sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4076), 2, + ACTIONS(241), 43, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4098), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4356), 3, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - STATE(4901), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2498), 19, + [26821] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4335), 1, + aux_sym_concatenation_token1, + ACTIONS(4337), 1, + sym__concat, + ACTIONS(4339), 1, + anon_sym_LPAREN, + STATE(822), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1258), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 42, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -98781,10 +98456,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [27576] = 3, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [26888] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(2717), 23, + ACTIONS(2838), 1, + anon_sym_BQUOTE, + ACTIONS(2753), 22, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -98804,11 +98498,10 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2715), 28, + ACTIONS(2751), 28, anon_sym_for, anon_sym_select, anon_sym_LT, @@ -98837,70 +98530,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [27635] = 20, + [26949] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4078), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4080), 1, - anon_sym_DOLLAR, - ACTIONS(4084), 1, - anon_sym_DQUOTE, - ACTIONS(4086), 1, - aux_sym_number_token1, - ACTIONS(4088), 1, - aux_sym_number_token2, - ACTIONS(4090), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4092), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4096), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4102), 1, - sym__brace_start, - ACTIONS(4362), 1, - sym__special_character, - ACTIONS(4364), 1, - sym_test_operator, - STATE(4546), 1, - aux_sym__literal_repeat1, - STATE(4907), 1, - sym_concatenation, - ACTIONS(2500), 2, + ACTIONS(4335), 1, + aux_sym_concatenation_token1, + ACTIONS(4342), 1, + sym__concat, + STATE(823), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 5, sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4076), 2, + ACTIONS(1266), 43, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4098), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4360), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(4640), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2498), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -98909,71 +98572,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [27728] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4078), 1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(4084), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(4086), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(4088), 1, aux_sym_number_token2, - ACTIONS(4090), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4092), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4096), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4102), 1, - sym__brace_start, - ACTIONS(4362), 1, - sym__special_character, - ACTIONS(4368), 1, - sym_test_operator, - STATE(4521), 1, - aux_sym__literal_repeat1, - STATE(5023), 1, - sym_concatenation, - ACTIONS(2496), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4076), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4098), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4366), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(4627), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2494), 20, - anon_sym_SEMI, + [27014] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4320), 1, + sym_variable_name, + ACTIONS(4346), 1, + aux_sym_heredoc_redirect_token1, + STATE(6744), 1, + sym_subscript, + ACTIONS(4308), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(4310), 2, anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4312), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4344), 2, + anon_sym_SEMI, anon_sym_AMP, + STATE(4232), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4318), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + STATE(4407), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2755), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(4304), 28, + anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -98981,16 +98638,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [27821] = 6, - ACTIONS(71), 1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [27093] = 6, + ACTIONS(3), 1, sym_comment, - STATE(2476), 1, + STATE(1777), 1, aux_sym__literal_repeat1, - STATE(2637), 1, + STATE(806), 2, sym_concatenation, - STATE(2303), 9, + aux_sym_for_statement_repeat1, + ACTIONS(2173), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + STATE(2324), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -99000,36 +98679,59 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2494), 13, + ACTIONS(2171), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(2496), 26, + [27158] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2757), 1, + anon_sym_BQUOTE, + ACTIONS(2753), 22, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -99037,21 +98739,54 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [27885] = 3, + ACTIONS(2751), 28, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [27219] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, + ACTIONS(4335), 1, + aux_sym_concatenation_token1, + ACTIONS(4348), 1, sym__concat, + STATE(823), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 44, + ACTIONS(1286), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -99081,7 +98816,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -99096,22 +98830,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [27943] = 6, + [27284] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4374), 1, + ACTIONS(4350), 1, aux_sym_concatenation_token1, - ACTIONS(4376), 1, + ACTIONS(4353), 1, sym__concat, - STATE(893), 1, + STATE(823), 1, aux_sym_concatenation_repeat1, - ACTIONS(4372), 5, + ACTIONS(1278), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 42, + ACTIONS(1276), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -99123,6 +98857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -99154,39 +98889,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28007] = 6, + [27349] = 6, ACTIONS(3), 1, sym_comment, - STATE(1740), 1, - aux_sym__literal_repeat1, - STATE(1957), 1, - sym_concatenation, - ACTIONS(2500), 5, + ACTIONS(4335), 1, + aux_sym_concatenation_token1, + ACTIONS(4337), 1, + sym__concat, + STATE(818), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - STATE(2291), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2498), 34, + ACTIONS(1272), 43, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -99212,39 +98948,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28071] = 6, + [27414] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4374), 1, - aux_sym_concatenation_token1, - ACTIONS(4376), 1, - sym__concat, - STATE(891), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, + ACTIONS(4072), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4074), 1, + anon_sym_DOLLAR, + ACTIONS(4078), 1, + anon_sym_DQUOTE, + ACTIONS(4080), 1, + aux_sym_number_token1, + ACTIONS(4082), 1, + aux_sym_number_token2, + ACTIONS(4084), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4086), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4090), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4096), 1, sym__brace_start, + ACTIONS(4331), 1, + sym__special_character, + ACTIONS(4358), 1, + sym_test_operator, + STATE(4525), 1, + aux_sym__literal_repeat1, + STATE(4872), 1, + sym_concatenation, + ACTIONS(2307), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 42, + ACTIONS(4070), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4092), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4356), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4852), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2305), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -99253,102 +99020,318 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [27507] = 6, + ACTIONS(71), 1, + sym_comment, + STATE(2560), 1, + aux_sym__literal_repeat1, + STATE(807), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2302), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2171), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2173), 26, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [27572] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4072), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4074), 1, + anon_sym_DOLLAR, + ACTIONS(4078), 1, + anon_sym_DQUOTE, + ACTIONS(4080), 1, aux_sym_number_token1, + ACTIONS(4082), 1, aux_sym_number_token2, + ACTIONS(4084), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4086), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4088), 1, anon_sym_BQUOTE, + ACTIONS(4090), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4096), 1, + sym__brace_start, + ACTIONS(4362), 1, + sym__special_character, + ACTIONS(4364), 1, + sym_test_operator, + STATE(4503), 1, + aux_sym__literal_repeat1, + STATE(4987), 1, + sym_concatenation, + ACTIONS(2303), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4070), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4092), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(4360), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [28135] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4384), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4386), 1, - sym_variable_name, - STATE(6772), 1, - sym_subscript, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4378), 2, + STATE(5005), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2301), 19, anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(4380), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4382), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(4358), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(2719), 3, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(4261), 3, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [27667] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2753), 23, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - STATE(4455), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4247), 28, anon_sym_LPAREN_LPAREN, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2751), 28, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [27726] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4072), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4074), 1, + anon_sym_DOLLAR, + ACTIONS(4078), 1, + anon_sym_DQUOTE, + ACTIONS(4080), 1, aux_sym_number_token1, + ACTIONS(4082), 1, aux_sym_number_token2, + ACTIONS(4084), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4086), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4088), 1, anon_sym_BQUOTE, + ACTIONS(4090), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4096), 1, + sym__brace_start, + ACTIONS(4362), 1, + sym__special_character, + ACTIONS(4368), 1, + sym_test_operator, + STATE(4525), 1, + aux_sym__literal_repeat1, + STATE(4872), 1, + sym_concatenation, + ACTIONS(2307), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4070), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4092), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(4366), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [28213] = 6, + STATE(5009), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2305), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [27821] = 22, ACTIONS(3), 1, sym_comment, - STATE(1739), 1, + ACTIONS(3241), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3243), 1, + anon_sym_DOLLAR, + ACTIONS(3247), 1, + anon_sym_DQUOTE, + ACTIONS(3249), 1, + aux_sym_number_token1, + ACTIONS(3251), 1, + aux_sym_number_token2, + ACTIONS(3253), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3255), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3257), 1, + anon_sym_BQUOTE, + ACTIONS(3259), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3267), 1, + sym__brace_start, + ACTIONS(4372), 1, + sym__special_character, + ACTIONS(4374), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(4376), 1, + sym_test_operator, + STATE(2250), 1, aux_sym__literal_repeat1, - STATE(1953), 1, - sym_concatenation, - ACTIONS(2496), 5, + ACTIONS(2507), 2, sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, aux_sym_heredoc_redirect_token1, - STATE(2328), 9, + ACTIONS(3239), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3261), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(877), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(4370), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2409), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -99358,8 +99341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2494), 34, - anon_sym_LPAREN_LPAREN, + ACTIONS(2505), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -99376,39 +99358,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [27917] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4378), 1, + sym_word, + ACTIONS(4384), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4387), 1, anon_sym_DOLLAR, + ACTIONS(4390), 1, sym__special_character, + ACTIONS(4393), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4399), 1, aux_sym_number_token1, + ACTIONS(4402), 1, aux_sym_number_token2, + ACTIONS(4405), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4408), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4411), 1, anon_sym_BQUOTE, + ACTIONS(4414), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4420), 1, + sym_test_operator, + ACTIONS(4423), 1, + sym__brace_start, + STATE(2607), 1, + aux_sym__literal_repeat1, + ACTIONS(4381), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4396), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4417), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [28277] = 6, + STATE(831), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2181), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2381), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2183), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [28013] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4389), 1, + ACTIONS(4430), 1, aux_sym_concatenation_token1, - ACTIONS(4391), 1, + ACTIONS(4432), 1, sym__concat, - STATE(841), 1, + STATE(850), 1, aux_sym_concatenation_repeat1, - ACTIONS(1267), 5, + ACTIONS(4428), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 42, + ACTIONS(4426), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -99420,7 +99459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -99451,22 +99490,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28341] = 6, + [28077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4389), 1, - aux_sym_concatenation_token1, - ACTIONS(4393), 1, - sym__concat, - STATE(841), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, + ACTIONS(1306), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 42, + ACTIONS(1304), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -99479,6 +99513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -99495,6 +99530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -99509,44 +99545,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28405] = 10, + [28135] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4272), 1, + ACTIONS(3022), 1, + anon_sym_DQUOTE, + ACTIONS(3032), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3034), 1, + anon_sym_DOLLAR, + ACTIONS(3038), 1, + aux_sym_number_token1, + ACTIONS(3040), 1, + aux_sym_number_token2, + ACTIONS(3042), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3044), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3046), 1, + anon_sym_BQUOTE, + ACTIONS(3048), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3054), 1, + sym__brace_start, + ACTIONS(4436), 1, + sym__special_character, + ACTIONS(4438), 1, + sym_test_operator, + STATE(2006), 1, + aux_sym__literal_repeat1, + ACTIONS(2169), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4386), 1, - sym_variable_name, - STATE(6772), 1, - sym_subscript, - ACTIONS(4253), 2, + ACTIONS(3030), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3050), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(844), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4434), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2361), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2167), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PIPE_AMP, - STATE(4358), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4261), 3, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [28229] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3022), 1, + anon_sym_DQUOTE, + ACTIONS(3032), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3034), 1, + anon_sym_DOLLAR, + ACTIONS(3038), 1, + aux_sym_number_token1, + ACTIONS(3040), 1, + aux_sym_number_token2, + ACTIONS(3042), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3044), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3046), 1, + anon_sym_BQUOTE, + ACTIONS(3048), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3054), 1, + sym__brace_start, + ACTIONS(4436), 1, + sym__special_character, + ACTIONS(4438), 1, + sym_test_operator, + STATE(2006), 1, + aux_sym__literal_repeat1, + ACTIONS(2173), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3030), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3050), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(844), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4434), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2361), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2171), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [28323] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1278), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - STATE(4455), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4270), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1276), 44, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4247), 28, - anon_sym_LPAREN_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -99554,9 +99727,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -99571,23 +99746,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28477] = 8, + [28381] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4397), 1, + ACTIONS(4442), 1, anon_sym_DQUOTE, - ACTIONS(4401), 1, + ACTIONS(4446), 1, sym_variable_name, - STATE(2412), 1, + STATE(2392), 1, sym_string, - ACTIONS(4399), 2, + ACTIONS(4444), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1235), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(4395), 9, + ACTIONS(4440), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -99631,22 +99806,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28545] = 6, + [28449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4403), 1, - aux_sym_concatenation_token1, - ACTIONS(4406), 1, - sym__concat, - STATE(841), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1253), 5, + ACTIONS(1298), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 42, + ACTIONS(1296), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -99659,6 +99829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -99675,6 +99846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -99689,43 +99861,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28609] = 8, + [28507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4397), 1, - anon_sym_DQUOTE, - ACTIONS(4401), 1, - sym_variable_name, - STATE(2412), 1, - sym_string, - ACTIONS(4399), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + ACTIONS(1310), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4395), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 33, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 44, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -99737,7 +99901,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -99749,17 +99916,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28677] = 3, + [28565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 6, + ACTIONS(1314), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 44, + ACTIONS(1312), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -99804,35 +99971,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28735] = 3, + [28623] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 6, + ACTIONS(4442), 1, + anon_sym_DQUOTE, + ACTIONS(4446), 1, + sym_variable_name, + STATE(2392), 1, + sym_string, + ACTIONS(4444), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 44, + ACTIONS(4440), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 33, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, + anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -99844,10 +100019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -99859,17 +100031,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28793] = 3, + [28691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 6, + ACTIONS(1318), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 44, + ACTIONS(1316), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -99914,17 +100086,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28851] = 3, + [28749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(1302), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 44, + ACTIONS(1300), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -99969,58 +100141,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28909] = 9, + [28807] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4386), 1, - sym_variable_name, - STATE(6772), 1, - sym_subscript, - ACTIONS(4261), 2, - sym_test_operator, - sym__brace_start, - ACTIONS(4348), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(4358), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(4455), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4247), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3062), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3065), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(3071), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3074), 1, aux_sym_number_token1, + ACTIONS(3077), 1, aux_sym_number_token2, + ACTIONS(3080), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3083), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3086), 1, anon_sym_BQUOTE, + ACTIONS(3089), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3098), 1, + sym__brace_start, + ACTIONS(4451), 1, + sym__special_character, + ACTIONS(4454), 1, + sym_test_operator, + STATE(2006), 1, + aux_sym__literal_repeat1, + ACTIONS(2183), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3059), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3092), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(844), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4448), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - ACTIONS(4253), 21, - anon_sym_SEMI, + STATE(2361), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2181), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -100030,35 +100213,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [28979] = 3, + anon_sym_LT_LT_LT, + [28901] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 6, + ACTIONS(4459), 1, + anon_sym_DQUOTE, + ACTIONS(4463), 1, + sym_variable_name, + STATE(2520), 1, + sym_string, + ACTIONS(4461), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 44, + ACTIONS(4457), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 33, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, + anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -100070,10 +100262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -100085,43 +100274,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29037] = 13, + [28969] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4386), 1, - sym_variable_name, - ACTIONS(4411), 1, + ACTIONS(4471), 1, aux_sym_heredoc_redirect_token1, - STATE(6772), 1, + ACTIONS(4473), 1, + sym_variable_name, + STATE(6765), 1, sym_subscript, - ACTIONS(4253), 2, + ACTIONS(4310), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4380), 2, + ACTIONS(4465), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(4467), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4382), 2, + ACTIONS(4469), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(4409), 2, - anon_sym_SEMI, - anon_sym_AMP, - STATE(4358), 2, + STATE(4369), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(4257), 3, + ACTIONS(2755), 3, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(4261), 3, + ACTIONS(4318), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - STATE(4455), 3, + STATE(4509), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(4247), 28, + ACTIONS(4304), 28, anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, @@ -100150,39 +100339,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29115] = 6, + [29047] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4389), 1, - aux_sym_concatenation_token1, - ACTIONS(4413), 1, - sym__concat, - STATE(837), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 5, + ACTIONS(4459), 1, + anon_sym_DQUOTE, + ACTIONS(4463), 1, + sym_variable_name, + STATE(2520), 1, + sym_string, + ACTIONS(4461), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 42, + ACTIONS(4457), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 33, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, + anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -100194,9 +100387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -100208,96 +100399,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29179] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4415), 1, - sym_word, - ACTIONS(4421), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4424), 1, - anon_sym_DOLLAR, - ACTIONS(4427), 1, - sym__special_character, - ACTIONS(4430), 1, - anon_sym_DQUOTE, - ACTIONS(4436), 1, - aux_sym_number_token1, - ACTIONS(4439), 1, - aux_sym_number_token2, - ACTIONS(4442), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4445), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4448), 1, - anon_sym_BQUOTE, - ACTIONS(4451), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4457), 1, - sym_test_operator, - ACTIONS(4460), 1, - sym__brace_start, - STATE(2671), 1, - aux_sym__literal_repeat1, - ACTIONS(4418), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4433), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4454), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(851), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2214), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2369), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2216), 12, - sym_file_descriptor, - sym_variable_name, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [29275] = 6, + [29115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4389), 1, - aux_sym_concatenation_token1, - ACTIONS(4413), 1, - sym__concat, - STATE(838), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1281), 5, + ACTIONS(1322), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1271), 42, + ACTIONS(1320), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -100310,6 +100422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -100326,6 +100439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -100340,22 +100454,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29339] = 6, + [29173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4389), 1, - aux_sym_concatenation_token1, - ACTIONS(4413), 1, - sym__concat, - STATE(837), 1, - aux_sym_concatenation_repeat1, - ACTIONS(278), 5, + ACTIONS(1330), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(241), 42, + ACTIONS(1328), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -100368,6 +100477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -100384,6 +100494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -100398,22 +100509,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29403] = 6, + [29231] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4374), 1, + ACTIONS(4430), 1, aux_sym_concatenation_token1, - ACTIONS(4376), 1, + ACTIONS(4476), 1, sym__concat, - STATE(893), 1, + STATE(852), 1, aux_sym_concatenation_repeat1, - ACTIONS(4465), 5, + ACTIONS(1268), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4463), 42, + ACTIONS(1266), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -100456,17 +100567,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29467] = 3, + [29295] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, - sym_file_descriptor, + ACTIONS(4430), 1, + aux_sym_concatenation_token1, + ACTIONS(4478), 1, sym__concat, + STATE(852), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 44, + ACTIONS(1286), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -100478,7 +100594,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -100496,7 +100611,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -100511,17 +100625,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29525] = 3, + [29359] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, - sym_file_descriptor, + ACTIONS(4480), 1, + aux_sym_concatenation_token1, + ACTIONS(4483), 1, sym__concat, + STATE(852), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 44, + ACTIONS(1276), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -100533,7 +100652,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -100551,7 +100669,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -100566,17 +100683,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29583] = 3, + [29423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1342), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 44, + ACTIONS(1340), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -100621,48 +100738,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29641] = 6, - ACTIONS(71), 1, + [29481] = 3, + ACTIONS(3), 1, sym_comment, - STATE(2671), 1, - aux_sym__literal_repeat1, - STATE(851), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2369), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2072), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2074), 26, + ACTIONS(1294), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1292), 44, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -100670,31 +100778,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [29705] = 6, + sym_word, + [29539] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4374), 1, + ACTIONS(4430), 1, aux_sym_concatenation_token1, - ACTIONS(4376), 1, + ACTIONS(4432), 1, sym__concat, - STATE(891), 1, + STATE(850), 1, aux_sym_concatenation_repeat1, - ACTIONS(4469), 5, + ACTIONS(1274), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 42, + ACTIONS(1272), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -100737,95 +100851,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29769] = 21, + [29603] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3236), 1, - anon_sym_DOLLAR, - ACTIONS(3242), 1, - anon_sym_DQUOTE, - ACTIONS(3245), 1, - aux_sym_number_token1, - ACTIONS(3248), 1, - aux_sym_number_token2, - ACTIONS(3251), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3254), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3257), 1, - anon_sym_BQUOTE, - ACTIONS(3260), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3269), 1, - sym__brace_start, - ACTIONS(4474), 1, - sym__special_character, - ACTIONS(4477), 1, - sym_test_operator, - STATE(2161), 1, - aux_sym__literal_repeat1, - ACTIONS(2216), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3230), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3263), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(860), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4471), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2422), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2214), 17, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [29863] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4374), 1, + ACTIONS(4486), 1, aux_sym_concatenation_token1, - ACTIONS(4376), 1, + ACTIONS(4488), 1, sym__concat, - STATE(891), 1, + STATE(858), 1, aux_sym_concatenation_repeat1, - ACTIONS(4482), 5, + ACTIONS(1268), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4480), 42, + ACTIONS(1266), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -100837,7 +100878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -100868,163 +100909,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29927] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3115), 1, - anon_sym_DQUOTE, - ACTIONS(3395), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3397), 1, - anon_sym_DOLLAR, - ACTIONS(3401), 1, - aux_sym_number_token1, - ACTIONS(3403), 1, - aux_sym_number_token2, - ACTIONS(3405), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3407), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3409), 1, - anon_sym_BQUOTE, - ACTIONS(3411), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3417), 1, - sym__brace_start, - ACTIONS(4486), 1, - sym__special_character, - ACTIONS(4488), 1, - sym_test_operator, - STATE(2161), 1, - aux_sym__literal_repeat1, - ACTIONS(2074), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3393), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3413), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(860), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4484), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2422), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2072), 17, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [30021] = 21, + [29667] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3115), 1, - anon_sym_DQUOTE, - ACTIONS(3395), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3397), 1, - anon_sym_DOLLAR, - ACTIONS(3401), 1, - aux_sym_number_token1, - ACTIONS(3403), 1, - aux_sym_number_token2, - ACTIONS(3405), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3407), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3409), 1, - anon_sym_BQUOTE, - ACTIONS(3411), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3417), 1, - sym__brace_start, ACTIONS(4486), 1, - sym__special_character, - ACTIONS(4488), 1, - sym_test_operator, - STATE(2161), 1, - aux_sym__literal_repeat1, - ACTIONS(2096), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3393), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3413), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(860), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4484), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2422), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2094), 17, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [30115] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1326), 6, - sym_file_descriptor, + aux_sym_concatenation_token1, + ACTIONS(4490), 1, sym__concat, + STATE(858), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 44, + ACTIONS(1286), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -101037,7 +100937,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -101054,7 +100953,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -101069,91 +100967,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30173] = 22, + [29731] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3183), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3185), 1, - anon_sym_DOLLAR, - ACTIONS(3189), 1, - anon_sym_DQUOTE, - ACTIONS(3191), 1, - aux_sym_number_token1, - ACTIONS(3193), 1, - aux_sym_number_token2, - ACTIONS(3195), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3197), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3199), 1, - anon_sym_BQUOTE, - ACTIONS(3201), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3209), 1, - sym__brace_start, ACTIONS(4492), 1, - sym__special_character, - ACTIONS(4494), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(4496), 1, - sym_test_operator, - STATE(1966), 1, - aux_sym__literal_repeat1, - ACTIONS(2564), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3181), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3203), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(875), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(4490), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2367), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2562), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [30269] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1253), 6, - sym_file_descriptor, + aux_sym_concatenation_token1, + ACTIONS(4495), 1, sym__concat, + STATE(858), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 44, + ACTIONS(1276), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -101166,7 +100995,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -101183,7 +101011,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -101198,91 +101025,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30327] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4498), 1, - sym_word, - ACTIONS(4502), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4504), 1, - anon_sym_DOLLAR, - ACTIONS(4506), 1, - sym__special_character, - ACTIONS(4508), 1, - anon_sym_DQUOTE, - ACTIONS(4512), 1, - aux_sym_number_token1, - ACTIONS(4514), 1, - aux_sym_number_token2, - ACTIONS(4516), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4518), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4520), 1, - anon_sym_BQUOTE, - ACTIONS(4522), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4526), 1, - sym_test_operator, - ACTIONS(4528), 1, - sym__brace_start, - STATE(2715), 1, - aux_sym__literal_repeat1, - ACTIONS(4500), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4510), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(895), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2072), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2438), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2074), 12, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [30423] = 3, + [29795] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 6, - sym_file_descriptor, + ACTIONS(4486), 1, + aux_sym_concatenation_token1, + ACTIONS(4498), 1, sym__concat, + STATE(857), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1258), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 44, + ACTIONS(1251), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -101295,7 +101053,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -101312,7 +101069,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -101327,17 +101083,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30481] = 3, + [29859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(1326), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 44, + ACTIONS(1324), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -101382,75 +101138,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30539] = 6, - ACTIONS(71), 1, + [29917] = 10, + ACTIONS(3), 1, sym_comment, - STATE(2671), 1, - aux_sym__literal_repeat1, - STATE(851), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2369), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2094), 12, + ACTIONS(4327), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4473), 1, + sym_variable_name, + STATE(6765), 1, + sym_subscript, + ACTIONS(4310), 2, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2096), 26, + anon_sym_PIPE_AMP, + STATE(4369), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4318), 3, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + STATE(4509), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4325), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4304), 28, + anon_sym_LPAREN_LPAREN, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [30603] = 3, + sym_word, + [29989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 6, + ACTIONS(1350), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 44, + ACTIONS(1348), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -101495,17 +101255,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30661] = 3, + [30047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(1334), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 44, + ACTIONS(1332), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -101550,42 +101310,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30719] = 8, + [30105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3115), 1, - anon_sym_DQUOTE, - ACTIONS(3119), 1, - sym_variable_name, - STATE(1864), 1, - sym_string, - ACTIONS(3117), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + ACTIONS(1354), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(3113), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 33, + aux_sym_heredoc_redirect_token1, + ACTIONS(1352), 44, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -101594,11 +101347,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -101610,22 +101365,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30787] = 6, + [30163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4374), 1, - aux_sym_concatenation_token1, - ACTIONS(4376), 1, - sym__concat, - STATE(893), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4532), 5, + ACTIONS(1338), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4530), 42, + ACTIONS(1336), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -101637,6 +101387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -101654,6 +101405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -101668,96 +101420,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30851] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3536), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3539), 1, - anon_sym_DOLLAR, - ACTIONS(3545), 1, - anon_sym_DQUOTE, - ACTIONS(3548), 1, - aux_sym_number_token1, - ACTIONS(3551), 1, - aux_sym_number_token2, - ACTIONS(3554), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3557), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3560), 1, - anon_sym_BQUOTE, - ACTIONS(3563), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3575), 1, - sym__brace_start, - ACTIONS(4537), 1, - sym__special_character, - ACTIONS(4540), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(4543), 1, - sym_test_operator, - STATE(1966), 1, - aux_sym__literal_repeat1, - ACTIONS(2442), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3533), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3566), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(875), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(4534), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2367), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2440), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [30947] = 6, + [30221] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4374), 1, + ACTIONS(4486), 1, aux_sym_concatenation_token1, - ACTIONS(4376), 1, + ACTIONS(4498), 1, sym__concat, - STATE(891), 1, + STATE(856), 1, aux_sym_concatenation_repeat1, - ACTIONS(4548), 5, + ACTIONS(278), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4546), 42, + ACTIONS(241), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -101769,7 +101447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -101800,42 +101478,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31011] = 8, + [30285] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3115), 1, - anon_sym_DQUOTE, - ACTIONS(3119), 1, - sym_variable_name, - STATE(1864), 1, - sym_string, - ACTIONS(3117), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + ACTIONS(4430), 1, + aux_sym_concatenation_token1, + ACTIONS(4432), 1, + sym__concat, + STATE(850), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4502), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(3113), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 33, + aux_sym_heredoc_redirect_token1, + ACTIONS(4500), 42, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -101844,186 +101519,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [31079] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3183), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3185), 1, anon_sym_DOLLAR, - ACTIONS(3189), 1, - anon_sym_DQUOTE, - ACTIONS(3191), 1, - aux_sym_number_token1, - ACTIONS(3193), 1, - aux_sym_number_token2, - ACTIONS(3195), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3197), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3199), 1, - anon_sym_BQUOTE, - ACTIONS(3201), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3209), 1, - sym__brace_start, - ACTIONS(4492), 1, sym__special_character, - ACTIONS(4496), 1, - sym_test_operator, - ACTIONS(4550), 1, - aux_sym__simple_variable_name_token1, - STATE(1966), 1, - aux_sym__literal_repeat1, - ACTIONS(2299), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3181), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3203), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(865), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(4490), 3, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(2367), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2297), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [31175] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4498), 1, - sym_word, - ACTIONS(4502), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4504), 1, - anon_sym_DOLLAR, - ACTIONS(4506), 1, - sym__special_character, - ACTIONS(4508), 1, - anon_sym_DQUOTE, - ACTIONS(4512), 1, aux_sym_number_token1, - ACTIONS(4514), 1, aux_sym_number_token2, - ACTIONS(4516), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4518), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4520), 1, anon_sym_BQUOTE, - ACTIONS(4522), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4526), 1, - sym_test_operator, - ACTIONS(4528), 1, - sym__brace_start, - STATE(2715), 1, - aux_sym__literal_repeat1, - ACTIONS(4500), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4510), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4524), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(895), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2094), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2438), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2096), 12, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [31271] = 6, + sym_word, + [30349] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4374), 1, + ACTIONS(4430), 1, aux_sym_concatenation_token1, - ACTIONS(4376), 1, + ACTIONS(4432), 1, sym__concat, - STATE(893), 1, + STATE(850), 1, aux_sym_concatenation_repeat1, - ACTIONS(4554), 5, + ACTIONS(4506), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 42, + ACTIONS(4504), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -102066,43 +101594,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31335] = 8, + [30413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4558), 1, - anon_sym_DQUOTE, - ACTIONS(4562), 1, - sym_variable_name, - STATE(2447), 1, - sym_string, - ACTIONS(4560), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + ACTIONS(1358), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4556), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 33, + aux_sym_heredoc_redirect_token1, + ACTIONS(1356), 44, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -102114,125 +101634,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [31403] = 6, - ACTIONS(71), 1, - sym_comment, - STATE(2541), 1, - aux_sym__literal_repeat1, - STATE(2622), 1, - sym_concatenation, - STATE(2300), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2498), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2500), 26, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [31467] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4558), 1, anon_sym_DQUOTE, - ACTIONS(4562), 1, - sym_variable_name, - STATE(2447), 1, - sym_string, - ACTIONS(4560), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(4556), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 33, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -102244,17 +101649,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31535] = 3, + [30471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 6, + ACTIONS(1346), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 44, + ACTIONS(1344), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -102299,22 +101704,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31593] = 6, + [30529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4374), 1, - aux_sym_concatenation_token1, - ACTIONS(4376), 1, - sym__concat, - STATE(891), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4566), 5, + ACTIONS(1358), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 42, + ACTIONS(1356), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -102326,6 +101726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -102343,6 +101744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -102357,24 +101759,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31657] = 7, + [30587] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4389), 1, + ACTIONS(4486), 1, aux_sym_concatenation_token1, - ACTIONS(4413), 1, + ACTIONS(4498), 1, sym__concat, - ACTIONS(4568), 1, + ACTIONS(4508), 1, anon_sym_LPAREN, - STATE(838), 1, + STATE(857), 1, aux_sym_concatenation_repeat1, - ACTIONS(1281), 5, + ACTIONS(1258), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1271), 41, + ACTIONS(1251), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -102416,17 +101818,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31723] = 3, + [30653] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 6, - sym_file_descriptor, + ACTIONS(4430), 1, + aux_sym_concatenation_token1, + ACTIONS(4432), 1, sym__concat, + STATE(851), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4513), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 44, + ACTIONS(4511), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -102438,7 +101845,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -102456,7 +101862,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -102471,47 +101876,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31781] = 3, + [30717] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(4473), 1, + sym_variable_name, + STATE(6765), 1, + sym_subscript, + ACTIONS(4318), 2, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ACTIONS(4323), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 44, + STATE(4369), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(4509), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4304), 18, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -102526,35 +101915,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31839] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1358), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 44, - anon_sym_LPAREN_LPAREN, + ACTIONS(4310), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -102563,41 +101937,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [31897] = 8, + [30787] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3282), 1, + ACTIONS(3103), 1, anon_sym_DQUOTE, - ACTIONS(3286), 1, + ACTIONS(3107), 1, sym_variable_name, - STATE(1628), 1, + STATE(1501), 1, sym_string, - ACTIONS(3284), 2, + ACTIONS(3105), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + ACTIONS(1235), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3280), 9, + ACTIONS(3101), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -102607,7 +101963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 33, + ACTIONS(1227), 33, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102641,39 +101997,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31965] = 6, + [30855] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4374), 1, - aux_sym_concatenation_token1, - ACTIONS(4571), 1, - sym__concat, - STATE(894), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 5, + ACTIONS(3103), 1, + anon_sym_DQUOTE, + ACTIONS(3107), 1, + sym_variable_name, + STATE(1501), 1, + sym_string, + ACTIONS(3105), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 42, + ACTIONS(3101), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 33, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -102682,12 +102041,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -102699,34 +102057,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32029] = 8, + [30923] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3282), 1, + ACTIONS(3241), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3243), 1, + anon_sym_DOLLAR, + ACTIONS(3247), 1, anon_sym_DQUOTE, - ACTIONS(3286), 1, - sym_variable_name, - STATE(1628), 1, - sym_string, - ACTIONS(3284), 2, + ACTIONS(3249), 1, + aux_sym_number_token1, + ACTIONS(3251), 1, + aux_sym_number_token2, + ACTIONS(3253), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3255), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3257), 1, + anon_sym_BQUOTE, + ACTIONS(3259), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3267), 1, + sym__brace_start, + ACTIONS(4372), 1, + sym__special_character, + ACTIONS(4376), 1, + sym_test_operator, + ACTIONS(4515), 1, aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + STATE(2250), 1, + aux_sym__literal_repeat1, + ACTIONS(2460), 2, sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(3280), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 33, + aux_sym_heredoc_redirect_token1, + ACTIONS(3239), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3261), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(885), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(4370), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2409), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2458), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -102743,38 +102131,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [32097] = 6, + [31019] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4374), 1, + ACTIONS(4430), 1, aux_sym_concatenation_token1, - ACTIONS(4573), 1, + ACTIONS(4432), 1, sym__concat, - STATE(894), 1, + STATE(851), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, + ACTIONS(4519), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 42, + ACTIONS(4517), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -102817,22 +102189,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32161] = 6, + [31083] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4575), 1, + ACTIONS(4430), 1, aux_sym_concatenation_token1, - ACTIONS(4578), 1, + ACTIONS(4432), 1, sym__concat, - STATE(894), 1, + STATE(851), 1, aux_sym_concatenation_repeat1, - ACTIONS(1253), 5, + ACTIONS(4523), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 42, + ACTIONS(4521), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -102875,58 +102247,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32225] = 22, - ACTIONS(71), 1, + [31147] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(4581), 1, - sym_word, - ACTIONS(4587), 1, + ACTIONS(4473), 1, + sym_variable_name, + ACTIONS(4527), 1, + aux_sym_heredoc_redirect_token1, + STATE(6765), 1, + sym_subscript, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4467), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4469), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4525), 2, + anon_sym_SEMI, + anon_sym_AMP, + STATE(4369), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4314), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(4318), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + STATE(4509), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4304), 28, + anon_sym_LPAREN_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(4590), 1, anon_sym_DOLLAR, - ACTIONS(4593), 1, sym__special_character, - ACTIONS(4596), 1, anon_sym_DQUOTE, - ACTIONS(4602), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(4605), 1, aux_sym_number_token2, - ACTIONS(4608), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4611), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4614), 1, anon_sym_BQUOTE, - ACTIONS(4617), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4623), 1, - sym_test_operator, - ACTIONS(4626), 1, - sym__brace_start, - STATE(2715), 1, - aux_sym__literal_repeat1, - ACTIONS(4584), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4599), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4620), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(895), 2, + sym_word, + [31225] = 6, + ACTIONS(71), 1, + sym_comment, + STATE(2633), 1, + aux_sym__literal_repeat1, + STATE(883), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2214), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2438), 9, + STATE(2362), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -102936,122 +102330,148 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2216), 12, + ACTIONS(2167), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2169), 26, sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [32321] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2267), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(3829), 1, - sym_variable_name, - STATE(1595), 1, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [31289] = 6, + ACTIONS(71), 1, + sym_comment, + STATE(2633), 1, + aux_sym__literal_repeat1, + STATE(883), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2362), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(3827), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2171), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2173), 26, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(3825), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 32, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [32388] = 22, + [31353] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(4629), 1, + ACTIONS(4529), 1, sym_word, - ACTIONS(4633), 1, + ACTIONS(4535), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4635), 1, + ACTIONS(4538), 1, anon_sym_DOLLAR, - ACTIONS(4637), 1, + ACTIONS(4541), 1, sym__special_character, - ACTIONS(4639), 1, + ACTIONS(4544), 1, anon_sym_DQUOTE, - ACTIONS(4643), 1, + ACTIONS(4550), 1, aux_sym_number_token1, - ACTIONS(4645), 1, + ACTIONS(4553), 1, aux_sym_number_token2, - ACTIONS(4647), 1, + ACTIONS(4556), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4649), 1, + ACTIONS(4559), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4651), 1, + ACTIONS(4562), 1, anon_sym_BQUOTE, - ACTIONS(4653), 1, + ACTIONS(4565), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4657), 1, + ACTIONS(4571), 1, sym_test_operator, - ACTIONS(4659), 1, + ACTIONS(4574), 1, sym__brace_start, - STATE(2914), 1, + STATE(2633), 1, aux_sym__literal_repeat1, - ACTIONS(4631), 2, + ACTIONS(4532), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4641), 2, + ACTIONS(4547), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4655), 2, + ACTIONS(4568), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(936), 2, + STATE(883), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2072), 7, + ACTIONS(2181), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -103059,7 +102479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(2487), 9, + STATE(2362), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -103069,8 +102489,9 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2074), 11, + ACTIONS(2183), 12, sym_file_descriptor, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -103081,17 +102502,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [32483] = 3, + [31449] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, - sym_file_descriptor, + ACTIONS(4430), 1, + aux_sym_concatenation_token1, + ACTIONS(4432), 1, sym__concat, + STATE(850), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4579), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 43, + ACTIONS(4577), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -103120,7 +102546,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -103135,34 +102560,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32540] = 8, + [31513] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2267), 1, + ACTIONS(3499), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3502), 1, + anon_sym_DOLLAR, + ACTIONS(3508), 1, anon_sym_DQUOTE, - ACTIONS(3829), 1, - sym_variable_name, - STATE(1595), 1, - sym_string, - ACTIONS(3827), 2, + ACTIONS(3511), 1, + aux_sym_number_token1, + ACTIONS(3514), 1, + aux_sym_number_token2, + ACTIONS(3517), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3520), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3523), 1, + anon_sym_BQUOTE, + ACTIONS(3526), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3538), 1, + sym__brace_start, + ACTIONS(4584), 1, + sym__special_character, + ACTIONS(4587), 1, aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, - sym_file_descriptor, + ACTIONS(4590), 1, sym_test_operator, - sym__brace_start, - ACTIONS(3825), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 32, + STATE(2250), 1, + aux_sym__literal_repeat1, + ACTIONS(2353), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3496), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3529), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(885), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(4581), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2409), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2351), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -103179,32 +102634,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [32607] = 3, + [31609] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, - sym_file_descriptor, + ACTIONS(4430), 1, + aux_sym_concatenation_token1, + ACTIONS(4432), 1, sym__concat, + STATE(851), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4595), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 43, + ACTIONS(4593), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -103233,7 +102678,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -103248,163 +102692,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32664] = 3, - ACTIONS(3), 1, + [31673] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1310), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 43, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4597), 1, + sym_word, + ACTIONS(4601), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(4603), 1, anon_sym_DOLLAR, + ACTIONS(4605), 1, sym__special_character, + ACTIONS(4607), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4611), 1, aux_sym_number_token1, + ACTIONS(4613), 1, aux_sym_number_token2, + ACTIONS(4615), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4617), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4619), 1, anon_sym_BQUOTE, + ACTIONS(4621), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4625), 1, + sym_test_operator, + ACTIONS(4627), 1, + sym__brace_start, + STATE(2607), 1, + aux_sym__literal_repeat1, + ACTIONS(4599), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4609), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4623), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [32721] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4663), 1, - anon_sym_DQUOTE, - ACTIONS(4667), 1, - sym_variable_name, - STATE(2716), 1, - sym_string, - ACTIONS(1241), 2, - sym__concat, - sym_test_operator, - ACTIONS(4665), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4661), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(831), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2171), 7, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2381), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2173), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_PIPE_AMP, anon_sym_RBRACK, - anon_sym_EQ_TILDE, - [32788] = 22, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [31769] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(4629), 1, + ACTIONS(4597), 1, sym_word, - ACTIONS(4633), 1, + ACTIONS(4601), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4635), 1, + ACTIONS(4603), 1, anon_sym_DOLLAR, - ACTIONS(4637), 1, + ACTIONS(4605), 1, sym__special_character, - ACTIONS(4639), 1, + ACTIONS(4607), 1, anon_sym_DQUOTE, - ACTIONS(4643), 1, + ACTIONS(4611), 1, aux_sym_number_token1, - ACTIONS(4645), 1, + ACTIONS(4613), 1, aux_sym_number_token2, - ACTIONS(4647), 1, + ACTIONS(4615), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4649), 1, + ACTIONS(4617), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4651), 1, + ACTIONS(4619), 1, anon_sym_BQUOTE, - ACTIONS(4653), 1, + ACTIONS(4621), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4657), 1, + ACTIONS(4625), 1, sym_test_operator, - ACTIONS(4659), 1, + ACTIONS(4627), 1, sym__brace_start, - STATE(2914), 1, + STATE(2607), 1, aux_sym__literal_repeat1, - ACTIONS(4631), 2, + ACTIONS(4599), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4641), 2, + ACTIONS(4609), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4655), 2, + ACTIONS(4623), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(936), 2, + STATE(831), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2094), 7, + ACTIONS(2167), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -103412,7 +102817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(2487), 9, + STATE(2381), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -103422,34 +102827,36 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2096), 11, + ACTIONS(2169), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [32883] = 8, + [31865] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4663), 1, + ACTIONS(3022), 1, anon_sym_DQUOTE, - ACTIONS(4667), 1, + ACTIONS(3026), 1, sym_variable_name, - STATE(2716), 1, + STATE(1747), 1, sym_string, - ACTIONS(1235), 2, - sym__concat, - sym_test_operator, - ACTIONS(4665), 2, + ACTIONS(3024), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4661), 9, + ACTIONS(1235), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(3020), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -103460,113 +102867,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0, anon_sym__, ACTIONS(1227), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - [32950] = 6, - ACTIONS(71), 1, - sym_comment, - STATE(2718), 1, - aux_sym__literal_repeat1, - STATE(2864), 1, - sym_concatenation, - STATE(2357), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2494), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2496), 26, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [33013] = 8, + sym_word, + [31933] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3189), 1, + ACTIONS(3022), 1, anon_sym_DQUOTE, - ACTIONS(4058), 1, + ACTIONS(3026), 1, sym_variable_name, - STATE(1737), 1, + STATE(1747), 1, sym_string, - ACTIONS(4056), 2, + ACTIONS(3024), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1241), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(4054), 9, + ACTIONS(3020), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -103576,7 +102926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 32, + ACTIONS(1239), 33, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -103595,6 +102945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -103609,43 +102960,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33080] = 7, - ACTIONS(3), 1, + [32001] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(4669), 1, - anon_sym_LPAREN, - ACTIONS(4672), 1, - aux_sym_concatenation_token1, - ACTIONS(4674), 1, - sym__concat, - STATE(983), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1281), 6, + STATE(2460), 1, + aux_sym__literal_repeat1, + STATE(2700), 1, + sym_concatenation, + STATE(2289), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2305), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2307), 26, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1271), 39, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -103653,65 +103010,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [33145] = 21, - ACTIONS(3), 1, + [32065] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(3785), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3787), 1, + STATE(2569), 1, + aux_sym__literal_repeat1, + STATE(2720), 1, + sym_concatenation, + STATE(2319), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2301), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(3791), 1, - anon_sym_DQUOTE, - ACTIONS(3793), 1, + sym__special_character, aux_sym_number_token1, - ACTIONS(3795), 1, aux_sym_number_token2, - ACTIONS(3797), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3799), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3801), 1, + sym_word, + ACTIONS(2303), 26, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(3803), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3809), 1, - sym__brace_start, - ACTIONS(4678), 1, - sym__special_character, - ACTIONS(4680), 1, - sym_test_operator, - STATE(4277), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [32129] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1787), 1, aux_sym__literal_repeat1, - STATE(4782), 1, + STATE(2251), 1, sym_concatenation, - ACTIONS(2496), 2, + ACTIONS(2303), 5, sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3783), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3805), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4676), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5135), 9, + STATE(2328), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -103721,7 +103099,8 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2494), 17, + ACTIONS(2301), 34, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -103739,51 +103118,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [33238] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3785), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(3787), 1, anon_sym_DOLLAR, - ACTIONS(3791), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(3793), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3795), 1, aux_sym_number_token2, - ACTIONS(3797), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3799), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3801), 1, anon_sym_BQUOTE, - ACTIONS(3803), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3809), 1, - sym__brace_start, - ACTIONS(4678), 1, - sym__special_character, - ACTIONS(4684), 1, - sym_test_operator, - STATE(4305), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [32193] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1792), 1, aux_sym__literal_repeat1, - STATE(4736), 1, + STATE(1944), 1, sym_concatenation, - ACTIONS(2500), 2, + ACTIONS(2307), 5, sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3783), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3805), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4682), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5133), 9, + STATE(2331), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -103793,7 +103157,8 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2498), 17, + ACTIONS(2305), 34, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -103811,17 +103176,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [33331] = 3, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [32257] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 6, - sym_file_descriptor, + ACTIONS(4486), 1, + aux_sym_concatenation_token1, + ACTIONS(4498), 1, sym__concat, + STATE(856), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 43, + ACTIONS(1272), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -103833,7 +103219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -103850,7 +103236,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -103865,42 +103250,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33388] = 8, + [32321] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3189), 1, - anon_sym_DQUOTE, - ACTIONS(4058), 1, - sym_variable_name, - STATE(1737), 1, - sym_string, - ACTIONS(4056), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + ACTIONS(4629), 1, + aux_sym_concatenation_token1, + ACTIONS(4631), 1, + sym__concat, + STATE(912), 1, + aux_sym_concatenation_repeat1, + ACTIONS(278), 6, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4054), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 32, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(241), 40, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -103909,10 +103290,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -103924,17 +103307,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33455] = 3, + [32384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 6, + ACTIONS(1314), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 43, + ACTIONS(1312), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -103978,46 +103361,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33512] = 13, + [32441] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4686), 1, - ts_builtin_sym_end, - ACTIONS(4694), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4696), 1, - sym_variable_name, - STATE(6757), 1, - sym_subscript, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4690), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(4574), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4261), 3, + ACTIONS(4633), 1, + aux_sym_concatenation_token1, + ACTIONS(4635), 1, + sym__concat, + STATE(914), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4502), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4688), 3, + aux_sym_heredoc_redirect_token1, + ACTIONS(4500), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4650), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4247), 28, - anon_sym_LPAREN_LPAREN, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -104025,6 +103400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -104042,17 +103418,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33589] = 3, + [32504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 6, + ACTIONS(1318), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 43, + ACTIONS(1316), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -104064,7 +103440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -104096,17 +103472,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33646] = 3, + [32561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 6, + ACTIONS(1302), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 43, + ACTIONS(1300), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -104118,7 +103494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -104150,17 +103526,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33703] = 3, + [32618] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 6, - sym_file_descriptor, + ACTIONS(4633), 1, + aux_sym_concatenation_token1, + ACTIONS(4635), 1, sym__concat, + STATE(917), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4519), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 43, + ACTIONS(4517), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -104172,7 +103553,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -104189,7 +103569,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -104204,17 +103583,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33760] = 3, + [32681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 6, + ACTIONS(1306), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 43, + ACTIONS(1304), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -104226,7 +103605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -104258,17 +103637,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33817] = 3, + [32738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(1278), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 43, + ACTIONS(1276), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -104280,7 +103659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -104312,17 +103691,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33874] = 3, + [32795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 6, + ACTIONS(1298), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 43, + ACTIONS(1296), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -104334,7 +103713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -104366,22 +103745,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33931] = 6, + [32852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_concatenation_token1, - ACTIONS(4701), 1, - sym__concat, - STATE(935), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 5, + ACTIONS(1310), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 41, + ACTIONS(1308), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -104394,8 +103768,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -104409,6 +103784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -104423,7 +103799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33994] = 3, + [32909] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1314), 6, @@ -104477,17 +103853,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34051] = 3, + [32966] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 6, + ACTIONS(1322), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 43, + ACTIONS(1320), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -104531,17 +103907,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34108] = 3, + [33023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 6, + ACTIONS(1330), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 43, + ACTIONS(1328), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -104553,7 +103929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -104585,17 +103961,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34165] = 3, + [33080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 6, + ACTIONS(1318), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 43, + ACTIONS(1316), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -104607,7 +103983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -104639,101 +104015,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34222] = 30, - ACTIONS(71), 1, - sym_comment, - ACTIONS(451), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(453), 1, - anon_sym_DOLLAR, - ACTIONS(457), 1, - anon_sym_DQUOTE, - ACTIONS(461), 1, - aux_sym_number_token1, - ACTIONS(463), 1, - aux_sym_number_token2, - ACTIONS(465), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(467), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(469), 1, - anon_sym_BQUOTE, - ACTIONS(471), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(479), 1, - sym_test_operator, - ACTIONS(481), 1, - sym__brace_start, - ACTIONS(1394), 1, - anon_sym_LT_LT_LT, - ACTIONS(1396), 1, - sym_file_descriptor, - ACTIONS(3018), 1, - sym_word, - ACTIONS(4703), 1, - sym__special_character, - ACTIONS(4705), 1, - sym_variable_name, - STATE(529), 1, - sym_command_name, - STATE(926), 1, - aux_sym__literal_repeat1, - STATE(1082), 1, - sym_concatenation, - STATE(6771), 1, - sym_subscript, - ACTIONS(449), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(459), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(473), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1392), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3127), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - STATE(3581), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(1390), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1388), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(815), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [34333] = 5, + [33137] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4707), 1, - sym__special_character, - STATE(952), 1, - aux_sym__literal_repeat1, - ACTIONS(278), 5, + ACTIONS(4629), 1, + aux_sym_concatenation_token1, + ACTIONS(4631), 1, + sym__concat, + STATE(912), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 6, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(241), 42, + ACTIONS(1272), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -104746,10 +104044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -104764,6 +104059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -104776,17 +104072,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34394] = 3, + [33200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1302), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 43, + ACTIONS(1300), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -104830,17 +104126,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34451] = 3, + [33257] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, - sym_file_descriptor, + ACTIONS(4629), 1, + aux_sym_concatenation_token1, + ACTIONS(4637), 1, sym__concat, + STATE(966), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 6, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 43, + ACTIONS(1266), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -104854,8 +104156,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -104869,7 +104169,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -104884,17 +104183,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34508] = 3, + [33320] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(4327), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4639), 1, + sym_variable_name, + STATE(6748), 1, + sym_subscript, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(4569), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4318), 3, sym_file_descriptor, + sym_test_operator, + sym__brace_start, + STATE(4669), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4325), 8, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_LT_LT_DASH, + ACTIONS(4304), 28, + anon_sym_LPAREN_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [33391] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4633), 1, + aux_sym_concatenation_token1, + ACTIONS(4642), 1, sym__concat, + STATE(918), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 43, + ACTIONS(1266), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -104906,7 +104271,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -104923,7 +104287,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -104938,17 +104301,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34565] = 3, + [33454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 6, + ACTIONS(1342), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 43, + ACTIONS(1340), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -104992,17 +104355,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34622] = 3, + [33511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 6, + ACTIONS(1294), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 43, + ACTIONS(1292), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -105014,7 +104377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -105046,22 +104409,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34679] = 6, + [33568] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, + ACTIONS(4633), 1, aux_sym_concatenation_token1, - ACTIONS(4701), 1, + ACTIONS(4644), 1, sym__concat, - STATE(935), 1, + STATE(918), 1, aux_sym_concatenation_repeat1, - ACTIONS(278), 5, + ACTIONS(1288), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(241), 41, + ACTIONS(1286), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -105073,9 +104436,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -105103,98 +104466,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34742] = 30, - ACTIONS(71), 1, - sym_comment, - ACTIONS(314), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(316), 1, - anon_sym_DOLLAR, - ACTIONS(320), 1, - anon_sym_DQUOTE, - ACTIONS(324), 1, - aux_sym_number_token1, - ACTIONS(326), 1, - aux_sym_number_token2, - ACTIONS(328), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(330), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(332), 1, - anon_sym_BQUOTE, - ACTIONS(334), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(344), 1, - sym__brace_start, - ACTIONS(1023), 1, - sym_test_operator, - ACTIONS(1394), 1, - anon_sym_LT_LT_LT, - ACTIONS(1396), 1, - sym_file_descriptor, - ACTIONS(2961), 1, - sym_word, - ACTIONS(4705), 1, - sym_variable_name, - ACTIONS(4709), 1, - sym__special_character, - STATE(600), 1, - sym_command_name, - STATE(1267), 1, - aux_sym__literal_repeat1, - STATE(1376), 1, - sym_concatenation, - STATE(6771), 1, - sym_subscript, - ACTIONS(312), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(336), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1017), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1392), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3127), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - STATE(3581), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(1390), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1388), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(1717), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [34853] = 3, + [33631] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 6, - sym_file_descriptor, + ACTIONS(4646), 1, + aux_sym_concatenation_token1, + ACTIONS(4649), 1, sym__concat, + STATE(918), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 43, + ACTIONS(1276), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -105206,7 +104493,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -105223,7 +104509,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -105238,22 +104523,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34910] = 6, + [33694] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, + ACTIONS(4633), 1, aux_sym_concatenation_token1, - ACTIONS(4711), 1, + ACTIONS(4635), 1, sym__concat, - STATE(965), 1, + STATE(914), 1, aux_sym_concatenation_repeat1, - ACTIONS(1267), 5, + ACTIONS(1274), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 41, + ACTIONS(1272), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -105265,9 +104550,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -105295,176 +104580,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34973] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4713), 1, - sym_word, - ACTIONS(4719), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4722), 1, - anon_sym_DOLLAR, - ACTIONS(4725), 1, - sym__special_character, - ACTIONS(4728), 1, - anon_sym_DQUOTE, - ACTIONS(4734), 1, - aux_sym_number_token1, - ACTIONS(4737), 1, - aux_sym_number_token2, - ACTIONS(4740), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4743), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4746), 1, - anon_sym_BQUOTE, - ACTIONS(4749), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4755), 1, - sym_test_operator, - ACTIONS(4758), 1, - sym__brace_start, - STATE(2914), 1, - aux_sym__literal_repeat1, - ACTIONS(4716), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4731), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4752), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(936), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2214), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2487), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2216), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [35068] = 30, - ACTIONS(47), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(49), 1, - anon_sym_DOLLAR, - ACTIONS(53), 1, - anon_sym_DQUOTE, - ACTIONS(57), 1, - aux_sym_number_token1, - ACTIONS(59), 1, - aux_sym_number_token2, - ACTIONS(61), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(63), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(65), 1, - anon_sym_BQUOTE, - ACTIONS(67), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(71), 1, - sym_comment, - ACTIONS(77), 1, - sym_test_operator, - ACTIONS(79), 1, - sym__brace_start, - ACTIONS(1394), 1, - anon_sym_LT_LT_LT, - ACTIONS(1396), 1, - sym_file_descriptor, - ACTIONS(2666), 1, - sym_word, - ACTIONS(4705), 1, - sym_variable_name, - ACTIONS(4761), 1, - sym__special_character, - STATE(537), 1, - sym_command_name, - STATE(1212), 1, - aux_sym__literal_repeat1, - STATE(1386), 1, - sym_concatenation, - STATE(6771), 1, - sym_subscript, - ACTIONS(45), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(55), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(69), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1392), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3127), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - STATE(3581), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(1390), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1388), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(957), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [35179] = 6, + [33757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_concatenation_token1, - ACTIONS(4701), 1, - sym__concat, - STATE(947), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1281), 5, + ACTIONS(1322), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1271), 41, + ACTIONS(1320), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -105477,8 +104603,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -105492,6 +104619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -105506,97 +104634,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35242] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4763), 1, - sym_word, - ACTIONS(4767), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4769), 1, - anon_sym_DOLLAR, - ACTIONS(4771), 1, - sym__special_character, - ACTIONS(4773), 1, - anon_sym_DQUOTE, - ACTIONS(4777), 1, - aux_sym_number_token1, - ACTIONS(4779), 1, - aux_sym_number_token2, - ACTIONS(4781), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4783), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4785), 1, - anon_sym_BQUOTE, - ACTIONS(4787), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4791), 1, - sym_test_operator, - ACTIONS(4793), 1, - sym__brace_start, - STATE(5357), 1, - aux_sym__literal_repeat1, - STATE(5539), 1, - sym_concatenation, - ACTIONS(4765), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4775), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4789), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2498), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(5178), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2500), 12, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [35337] = 7, + [33814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 1, - anon_sym_LPAREN, - ACTIONS(4699), 1, - aux_sym_concatenation_token1, - ACTIONS(4701), 1, - sym__concat, - STATE(947), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1281), 5, + ACTIONS(1330), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1271), 40, + ACTIONS(1328), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -105608,8 +104656,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -105623,6 +104673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -105637,23 +104688,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35402] = 8, + [33871] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3580), 1, + ACTIONS(4654), 1, anon_sym_DQUOTE, - ACTIONS(3584), 1, + ACTIONS(4658), 1, sym_variable_name, - STATE(2121), 1, + STATE(2645), 1, sym_string, - ACTIONS(3582), 2, + ACTIONS(4656), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + ACTIONS(1235), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3578), 9, + ACTIONS(4652), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -105663,7 +104714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 32, + ACTIONS(1227), 32, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -105681,7 +104732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -105696,23 +104747,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35469] = 8, + [33938] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3580), 1, + ACTIONS(4654), 1, anon_sym_DQUOTE, - ACTIONS(3584), 1, + ACTIONS(4658), 1, sym_variable_name, - STATE(2121), 1, + STATE(2645), 1, sym_string, - ACTIONS(3582), 2, + ACTIONS(4656), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + ACTIONS(1241), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3578), 9, + ACTIONS(4652), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -105722,7 +104773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 32, + ACTIONS(1239), 32, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -105740,7 +104791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -105755,43 +104806,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35536] = 8, + [34005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4797), 1, - anon_sym_DQUOTE, - ACTIONS(4801), 1, - sym_variable_name, - STATE(2585), 1, - sym_string, - ACTIONS(4799), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + ACTIONS(1342), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4795), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 32, + aux_sym_heredoc_redirect_token1, + ACTIONS(1340), 43, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -105800,9 +104842,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -105814,119 +104860,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35603] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4767), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4769), 1, - anon_sym_DOLLAR, - ACTIONS(4771), 1, - sym__special_character, - ACTIONS(4773), 1, - anon_sym_DQUOTE, - ACTIONS(4777), 1, - aux_sym_number_token1, - ACTIONS(4779), 1, - aux_sym_number_token2, - ACTIONS(4781), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4783), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4785), 1, - anon_sym_BQUOTE, - ACTIONS(4787), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4793), 1, - sym__brace_start, - ACTIONS(4803), 1, - sym_word, - ACTIONS(4807), 1, - sym_test_operator, - STATE(5376), 1, - aux_sym__literal_repeat1, - STATE(5530), 1, - sym_concatenation, - ACTIONS(4765), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4789), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4805), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2494), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(5182), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2496), 12, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [35698] = 13, + [34062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - anon_sym_RPAREN, - ACTIONS(4411), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4811), 1, - sym_variable_name, - STATE(6786), 1, - sym_subscript, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4809), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(4534), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4261), 3, + ACTIONS(1294), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4409), 3, + aux_sym_heredoc_redirect_token1, + ACTIONS(1292), 43, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4746), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4247), 28, - anon_sym_LPAREN_LPAREN, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -105934,9 +104895,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -105951,43 +104914,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35775] = 8, + [34119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4797), 1, - anon_sym_DQUOTE, - ACTIONS(4801), 1, - sym_variable_name, - STATE(2585), 1, - sym_string, - ACTIONS(4799), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + ACTIONS(1326), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4795), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 32, + aux_sym_heredoc_redirect_token1, + ACTIONS(1324), 43, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -105996,9 +104950,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -106010,22 +104968,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35842] = 6, + [34176] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_concatenation_token1, - ACTIONS(4814), 1, - sym__concat, - STATE(965), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, + ACTIONS(1350), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 41, + ACTIONS(1348), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -106037,9 +104990,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -106053,6 +105007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -106067,43 +105022,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35905] = 10, + [34233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4272), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4811), 1, - sym_variable_name, - STATE(6786), 1, - sym_subscript, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(4534), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4261), 3, + ACTIONS(1334), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - STATE(4746), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4270), 8, + aux_sym_heredoc_redirect_token1, + ACTIONS(1332), 43, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_LT_LT_DASH, - ACTIONS(4247), 28, - anon_sym_LPAREN_LPAREN, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -106111,9 +105057,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -106128,47 +105076,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35976] = 6, - ACTIONS(71), 1, + [34290] = 3, + ACTIONS(3), 1, sym_comment, - STATE(2726), 1, - aux_sym__literal_repeat1, - STATE(2846), 1, - sym_concatenation, - STATE(2427), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2498), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2500), 26, + ACTIONS(1354), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1352), 43, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -106176,184 +105115,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [36039] = 23, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4820), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4822), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(4824), 1, sym__special_character, - ACTIONS(4826), 1, anon_sym_DQUOTE, - ACTIONS(4830), 1, - aux_sym_number_token1, - ACTIONS(4832), 1, - aux_sym_number_token2, - ACTIONS(4834), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4836), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4838), 1, - anon_sym_BQUOTE, - ACTIONS(4840), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4844), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(4846), 1, - sym_test_operator, - ACTIONS(4848), 1, - sym__brace_start, - STATE(2939), 1, - aux_sym__literal_repeat1, - ACTIONS(4818), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4828), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4842), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(962), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2297), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2539), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2299), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [36136] = 30, - ACTIONS(71), 1, - sym_comment, - ACTIONS(314), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(316), 1, - anon_sym_DOLLAR, - ACTIONS(320), 1, - anon_sym_DQUOTE, - ACTIONS(324), 1, aux_sym_number_token1, - ACTIONS(326), 1, aux_sym_number_token2, - ACTIONS(328), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(330), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(332), 1, anon_sym_BQUOTE, - ACTIONS(334), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(344), 1, - sym__brace_start, - ACTIONS(775), 1, - sym_test_operator, - ACTIONS(1394), 1, - anon_sym_LT_LT_LT, - ACTIONS(1396), 1, - sym_file_descriptor, - ACTIONS(2941), 1, - sym_word, - ACTIONS(4705), 1, - sym_variable_name, - ACTIONS(4850), 1, - sym__special_character, - STATE(536), 1, - sym_command_name, - STATE(1267), 1, - aux_sym__literal_repeat1, - STATE(1376), 1, - sym_concatenation, - STATE(6771), 1, - sym_subscript, - ACTIONS(312), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(336), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(773), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1392), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3127), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - STATE(3581), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(1390), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1388), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(938), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [36247] = 5, + sym_word, + [34347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4852), 1, - sym__special_character, - STATE(952), 1, - aux_sym__literal_repeat1, - ACTIONS(1364), 5, + ACTIONS(1338), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 42, + ACTIONS(1336), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -106365,7 +105152,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -106383,7 +105169,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -106396,23 +105184,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [36308] = 8, + [34404] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4857), 1, + ACTIONS(2042), 1, anon_sym_DQUOTE, - ACTIONS(4861), 1, + ACTIONS(3878), 1, sym_variable_name, - STATE(2638), 1, + STATE(1683), 1, sym_string, - ACTIONS(4859), 2, + ACTIONS(3876), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1235), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(4855), 9, + ACTIONS(3874), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -106440,7 +105228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -106455,23 +105243,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [36375] = 8, + [34471] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4857), 1, + ACTIONS(2042), 1, anon_sym_DQUOTE, - ACTIONS(4861), 1, + ACTIONS(3878), 1, sym_variable_name, - STATE(2638), 1, + STATE(1683), 1, sym_string, - ACTIONS(4859), 2, + ACTIONS(3876), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, ACTIONS(1241), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(4855), 9, + ACTIONS(3874), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -106499,7 +105287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -106514,123 +105302,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [36442] = 30, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1043), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1045), 1, - anon_sym_DOLLAR, - ACTIONS(1049), 1, - anon_sym_DQUOTE, - ACTIONS(1053), 1, - aux_sym_number_token1, - ACTIONS(1055), 1, - aux_sym_number_token2, - ACTIONS(1057), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1059), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1061), 1, - anon_sym_BQUOTE, - ACTIONS(1063), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1069), 1, - sym_test_operator, - ACTIONS(1071), 1, - sym__brace_start, - ACTIONS(1394), 1, - anon_sym_LT_LT_LT, - ACTIONS(1396), 1, - sym_file_descriptor, - ACTIONS(2668), 1, - sym_word, - ACTIONS(4705), 1, - sym_variable_name, - ACTIONS(4863), 1, - sym__special_character, - STATE(617), 1, - sym_command_name, - STATE(2332), 1, - aux_sym__literal_repeat1, - STATE(2368), 1, - sym_concatenation, - STATE(6771), 1, - sym_subscript, - ACTIONS(1041), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1051), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1065), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1392), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3127), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - STATE(3581), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(1390), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1388), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(1799), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [36553] = 8, + [34538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, - anon_sym_DQUOTE, - ACTIONS(4871), 1, - sym_variable_name, - STATE(2525), 1, - sym_string, - ACTIONS(4869), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + ACTIONS(1358), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4865), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 32, + aux_sym_heredoc_redirect_token1, + ACTIONS(1356), 43, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -106642,7 +105341,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -106654,23 +105356,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [36620] = 6, + [34595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4672), 1, - aux_sym_concatenation_token1, - ACTIONS(4674), 1, - sym__concat, - STATE(983), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1281), 6, + ACTIONS(1346), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1271), 40, + ACTIONS(1344), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -106682,8 +105378,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -106697,6 +105395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -106711,104 +105410,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [36683] = 30, - ACTIONS(71), 1, - sym_comment, - ACTIONS(314), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(316), 1, - anon_sym_DOLLAR, - ACTIONS(320), 1, - anon_sym_DQUOTE, - ACTIONS(324), 1, - aux_sym_number_token1, - ACTIONS(326), 1, - aux_sym_number_token2, - ACTIONS(328), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(330), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(332), 1, - anon_sym_BQUOTE, - ACTIONS(334), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(342), 1, - sym_test_operator, - ACTIONS(344), 1, - sym__brace_start, - ACTIONS(1394), 1, - anon_sym_LT_LT_LT, - ACTIONS(1396), 1, - sym_file_descriptor, - ACTIONS(2723), 1, - sym_word, - ACTIONS(4705), 1, - sym_variable_name, - ACTIONS(4873), 1, - sym__special_character, - STATE(543), 1, - sym_command_name, - STATE(1267), 1, - aux_sym__literal_repeat1, - STATE(1376), 1, - sym_concatenation, - STATE(6771), 1, - sym_subscript, - ACTIONS(312), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(322), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(336), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1392), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3127), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - STATE(3581), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(1390), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1388), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(1078), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [36794] = 6, + [34652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4672), 1, - aux_sym_concatenation_token1, - ACTIONS(4875), 1, - sym__concat, - STATE(996), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 6, + ACTIONS(1358), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 40, + ACTIONS(1356), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -106820,8 +105432,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -106835,6 +105449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -106849,23 +105464,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [36857] = 8, + [34709] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, + ACTIONS(3247), 1, anon_sym_DQUOTE, - ACTIONS(4871), 1, + ACTIONS(3724), 1, sym_variable_name, - STATE(2525), 1, + STATE(1876), 1, sym_string, - ACTIONS(4869), 2, + ACTIONS(3722), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + ACTIONS(1235), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(4865), 9, + ACTIONS(3720), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -106875,7 +105490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 32, + ACTIONS(1227), 32, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -106893,7 +105508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -106908,57 +105523,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [36924] = 9, + [34776] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4811), 1, + ACTIONS(3247), 1, + anon_sym_DQUOTE, + ACTIONS(3724), 1, sym_variable_name, - STATE(6786), 1, - sym_subscript, - ACTIONS(4261), 2, + STATE(1876), 1, + sym_string, + ACTIONS(3722), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(4348), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(4534), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(4746), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4247), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(3720), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - ACTIONS(4253), 20, - anon_sym_SEMI, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 32, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -106968,91 +105567,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [36993] = 23, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4816), 1, - sym_word, - ACTIONS(4820), 1, + aux_sym_heredoc_redirect_token1, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(4822), 1, - anon_sym_DOLLAR, - ACTIONS(4824), 1, sym__special_character, - ACTIONS(4826), 1, - anon_sym_DQUOTE, - ACTIONS(4830), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(4832), 1, aux_sym_number_token2, - ACTIONS(4834), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4836), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4838), 1, anon_sym_BQUOTE, - ACTIONS(4840), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4846), 1, - sym_test_operator, - ACTIONS(4848), 1, - sym__brace_start, - ACTIONS(4877), 1, - aux_sym__simple_variable_name_token1, - STATE(2939), 1, - aux_sym__literal_repeat1, - ACTIONS(4818), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4828), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4842), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(979), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2562), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2539), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2564), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [37090] = 3, + sym_word, + [34843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(1326), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 43, + ACTIONS(1324), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -107064,7 +105604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -107096,17 +105636,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37147] = 3, + [34900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 6, + ACTIONS(1350), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 43, + ACTIONS(1348), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -107150,22 +105690,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37204] = 6, + [34957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4879), 1, - aux_sym_concatenation_token1, - ACTIONS(4882), 1, - sym__concat, - STATE(965), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1253), 5, + ACTIONS(1334), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 41, + ACTIONS(1332), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -107178,8 +105713,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -107193,6 +105729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -107207,23 +105744,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37267] = 6, + [35014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4672), 1, - aux_sym_concatenation_token1, - ACTIONS(4674), 1, - sym__concat, - STATE(959), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 6, + ACTIONS(1354), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 40, + ACTIONS(1352), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -107237,6 +105768,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -107250,6 +105783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -107264,90 +105798,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37330] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4885), 1, - sym_word, - ACTIONS(4891), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4894), 1, - anon_sym_DOLLAR, - ACTIONS(4897), 1, - sym__special_character, - ACTIONS(4900), 1, - anon_sym_DQUOTE, - ACTIONS(4906), 1, - aux_sym_number_token1, - ACTIONS(4909), 1, - aux_sym_number_token2, - ACTIONS(4912), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4915), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4918), 1, - anon_sym_BQUOTE, - ACTIONS(4921), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4927), 1, - sym_test_operator, - ACTIONS(4930), 1, - sym__brace_start, - STATE(2776), 1, - aux_sym__literal_repeat1, - ACTIONS(4888), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4903), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4924), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(967), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2214), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2489), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2216), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [37425] = 3, + [35071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 6, + ACTIONS(1338), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 43, + ACTIONS(1336), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -107391,22 +105852,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37482] = 6, + [35128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4933), 1, - aux_sym_concatenation_token1, - ACTIONS(4935), 1, - sym__concat, - STATE(978), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 5, + ACTIONS(1358), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 41, + ACTIONS(1356), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -107418,6 +105874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -107434,6 +105891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -107448,22 +105906,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37545] = 6, + [35185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4937), 1, - aux_sym_concatenation_token1, - ACTIONS(4940), 1, - sym__concat, - STATE(970), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1253), 5, + ACTIONS(1346), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 41, + ACTIONS(1344), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -107475,6 +105928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -107491,6 +105945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -107505,239 +105960,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37608] = 22, - ACTIONS(71), 1, + [35242] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4943), 1, - sym_word, - ACTIONS(4947), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4949), 1, - anon_sym_DOLLAR, - ACTIONS(4951), 1, - sym__special_character, - ACTIONS(4953), 1, - anon_sym_DQUOTE, - ACTIONS(4957), 1, - aux_sym_number_token1, - ACTIONS(4959), 1, - aux_sym_number_token2, - ACTIONS(4961), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4963), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4965), 1, - anon_sym_BQUOTE, - ACTIONS(4967), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4971), 1, - sym_test_operator, - ACTIONS(4973), 1, - sym__brace_start, - STATE(2776), 1, - aux_sym__literal_repeat1, - ACTIONS(4945), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4955), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4969), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(967), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2072), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2489), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2074), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [37703] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3580), 1, - anon_sym_DQUOTE, - ACTIONS(3610), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3612), 1, - anon_sym_DOLLAR, - ACTIONS(3616), 1, - aux_sym_number_token1, - ACTIONS(3618), 1, - aux_sym_number_token2, - ACTIONS(3620), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3622), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3624), 1, - anon_sym_BQUOTE, - ACTIONS(3626), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3632), 1, - sym__brace_start, - ACTIONS(4977), 1, - sym__special_character, - ACTIONS(4979), 1, - sym_test_operator, - STATE(2270), 1, - aux_sym__literal_repeat1, - ACTIONS(2096), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3608), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3628), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(976), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4975), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2572), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2094), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [37796] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3580), 1, - anon_sym_DQUOTE, - ACTIONS(3610), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3612), 1, - anon_sym_DOLLAR, - ACTIONS(3616), 1, - aux_sym_number_token1, - ACTIONS(3618), 1, - aux_sym_number_token2, - ACTIONS(3620), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3622), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3624), 1, - anon_sym_BQUOTE, - ACTIONS(3626), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3632), 1, - sym__brace_start, - ACTIONS(4977), 1, - sym__special_character, - ACTIONS(4979), 1, - sym_test_operator, - STATE(2270), 1, - aux_sym__literal_repeat1, - ACTIONS(2074), 2, + ACTIONS(1358), 6, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3608), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3628), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(976), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4975), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2572), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2072), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [37889] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4933), 1, - aux_sym_concatenation_token1, - ACTIONS(4981), 1, sym__concat, - STATE(970), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, - sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 41, + ACTIONS(1356), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -107749,6 +105982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -107765,6 +105999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -107779,34 +106014,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37952] = 3, + [35299] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 6, + ACTIONS(3706), 1, + anon_sym_DQUOTE, + ACTIONS(3710), 1, + sym_variable_name, + STATE(1942), 1, + sym_string, + ACTIONS(3708), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 43, + ACTIONS(3704), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 32, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -107815,13 +106058,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -107833,106 +106073,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38009] = 21, + [35366] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3837), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3840), 1, - anon_sym_DOLLAR, - ACTIONS(3846), 1, + ACTIONS(3706), 1, anon_sym_DQUOTE, - ACTIONS(3849), 1, - aux_sym_number_token1, - ACTIONS(3852), 1, - aux_sym_number_token2, - ACTIONS(3855), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3858), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3861), 1, - anon_sym_BQUOTE, - ACTIONS(3864), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3873), 1, - sym__brace_start, - ACTIONS(4986), 1, - sym__special_character, - ACTIONS(4989), 1, - sym_test_operator, - STATE(2270), 1, - aux_sym__literal_repeat1, - ACTIONS(2216), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3834), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3867), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(976), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4983), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2572), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(3710), 1, + sym_variable_name, + STATE(1942), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2214), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [38102] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1358), 6, + ACTIONS(3708), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 43, + ACTIONS(3704), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 32, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -107941,13 +106117,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -107959,22 +106132,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38159] = 6, + [35433] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4933), 1, + ACTIONS(4629), 1, aux_sym_concatenation_token1, - ACTIONS(4992), 1, + ACTIONS(4631), 1, sym__concat, - STATE(970), 1, + ACTIONS(4660), 1, + anon_sym_LPAREN, + STATE(1002), 1, aux_sym_concatenation_repeat1, - ACTIONS(1267), 5, + ACTIONS(1258), 6, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 41, + ACTIONS(1251), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -107987,8 +106163,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -108016,52 +106190,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38222] = 23, + [35498] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(4994), 1, + ACTIONS(4663), 1, sym_word, - ACTIONS(5000), 1, + ACTIONS(4667), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5003), 1, + ACTIONS(4669), 1, anon_sym_DOLLAR, - ACTIONS(5006), 1, + ACTIONS(4671), 1, sym__special_character, - ACTIONS(5009), 1, + ACTIONS(4673), 1, anon_sym_DQUOTE, - ACTIONS(5015), 1, + ACTIONS(4677), 1, aux_sym_number_token1, - ACTIONS(5018), 1, + ACTIONS(4679), 1, aux_sym_number_token2, - ACTIONS(5021), 1, + ACTIONS(4681), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5024), 1, + ACTIONS(4683), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5027), 1, + ACTIONS(4685), 1, anon_sym_BQUOTE, - ACTIONS(5030), 1, + ACTIONS(4687), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5036), 1, + ACTIONS(4691), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5039), 1, + ACTIONS(4693), 1, sym_test_operator, - ACTIONS(5042), 1, + ACTIONS(4695), 1, sym__brace_start, - STATE(2939), 1, + STATE(2753), 1, aux_sym__literal_repeat1, - ACTIONS(4997), 2, + ACTIONS(4665), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5012), 2, + ACTIONS(4675), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5033), 2, + ACTIONS(4689), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(979), 2, + STATE(953), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(2440), 7, + ACTIONS(2505), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -108069,7 +106243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(2539), 9, + STATE(2517), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -108079,7 +106253,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2442), 10, + ACTIONS(2507), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -108090,34 +106264,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [38319] = 3, - ACTIONS(3), 1, + [35595] = 30, + ACTIONS(71), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(1043), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1045), 1, + anon_sym_DOLLAR, + ACTIONS(1049), 1, + anon_sym_DQUOTE, + ACTIONS(1053), 1, + aux_sym_number_token1, + ACTIONS(1055), 1, + aux_sym_number_token2, + ACTIONS(1057), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1059), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1061), 1, + anon_sym_BQUOTE, + ACTIONS(1063), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1069), 1, + sym_test_operator, + ACTIONS(1071), 1, + sym__brace_start, + ACTIONS(1394), 1, + anon_sym_LT_LT_LT, + ACTIONS(1396), 1, sym_file_descriptor, - sym__concat, + ACTIONS(3014), 1, + sym_word, + ACTIONS(4697), 1, + sym__special_character, + ACTIONS(4699), 1, + sym_variable_name, + STATE(617), 1, + sym_command_name, + STATE(2277), 1, + aux_sym__literal_repeat1, + STATE(2352), 1, + sym_concatenation, + STATE(6731), 1, + sym_subscript, + ACTIONS(1041), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1051), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1065), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1392), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3005), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3591), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(1390), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1388), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1853), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [35706] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4639), 1, + sym_variable_name, + STATE(6748), 1, + sym_subscript, + ACTIONS(4318), 2, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ACTIONS(4323), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 43, + STATE(4569), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(4669), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4304), 18, anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + ACTIONS(4310), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -108126,10 +106405,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [35775] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2757), 1, + ts_builtin_sym_end, + ACTIONS(4707), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4709), 1, + sym_variable_name, + STATE(6770), 1, + sym_subscript, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4703), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4705), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(4570), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4318), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(4701), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4634), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4304), 28, + anon_sym_LPAREN_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -108144,50 +106469,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38376] = 22, + [35852] = 23, ACTIONS(71), 1, sym_comment, - ACTIONS(4943), 1, + ACTIONS(4663), 1, sym_word, - ACTIONS(4947), 1, + ACTIONS(4667), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4949), 1, + ACTIONS(4669), 1, anon_sym_DOLLAR, - ACTIONS(4951), 1, + ACTIONS(4671), 1, sym__special_character, - ACTIONS(4953), 1, + ACTIONS(4673), 1, anon_sym_DQUOTE, - ACTIONS(4957), 1, + ACTIONS(4677), 1, aux_sym_number_token1, - ACTIONS(4959), 1, + ACTIONS(4679), 1, aux_sym_number_token2, - ACTIONS(4961), 1, + ACTIONS(4681), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4963), 1, + ACTIONS(4683), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4965), 1, + ACTIONS(4685), 1, anon_sym_BQUOTE, - ACTIONS(4967), 1, + ACTIONS(4687), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4971), 1, + ACTIONS(4693), 1, sym_test_operator, - ACTIONS(4973), 1, + ACTIONS(4695), 1, sym__brace_start, - STATE(2776), 1, + ACTIONS(4712), 1, + aux_sym__simple_variable_name_token1, + STATE(2753), 1, aux_sym__literal_repeat1, - ACTIONS(4945), 2, + ACTIONS(4665), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4955), 2, + ACTIONS(4675), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4969), 2, + ACTIONS(4689), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(967), 2, + STATE(957), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2094), 7, + aux_sym_unset_command_repeat1, + ACTIONS(2458), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -108195,7 +106522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(2489), 9, + STATE(2517), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -108205,29 +106532,34 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2096), 11, + ACTIONS(2460), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [38471] = 3, + [35949] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 6, - sym_file_descriptor, + ACTIONS(4629), 1, + aux_sym_concatenation_token1, + ACTIONS(4631), 1, sym__concat, + STATE(1002), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1258), 6, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 43, + ACTIONS(1251), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -108241,8 +106573,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -108256,7 +106586,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -108271,38 +106600,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38528] = 6, + [36012] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4672), 1, - aux_sym_concatenation_token1, - ACTIONS(5045), 1, - sym__concat, - STATE(996), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 6, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, + ACTIONS(4709), 1, + sym_variable_name, + ACTIONS(4714), 1, ts_builtin_sym_end, + ACTIONS(4718), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + STATE(6770), 1, + sym_subscript, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4703), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(4705), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(4570), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4318), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(4716), 3, + anon_sym_SEMI, anon_sym_AMP, - anon_sym_EQ_EQ, + anon_sym_SEMI_SEMI, + STATE(4634), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4304), 28, + anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -108310,7 +106647,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -108328,17 +106664,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38591] = 3, + [36089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 6, + ACTIONS(1310), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 43, + ACTIONS(1308), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -108382,303 +106718,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38648] = 6, - ACTIONS(3), 1, + [36146] = 23, + ACTIONS(71), 1, sym_comment, - ACTIONS(4933), 1, - aux_sym_concatenation_token1, - ACTIONS(4935), 1, - sym__concat, - STATE(974), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4532), 5, - sym_file_descriptor, + ACTIONS(4720), 1, + sym_word, + ACTIONS(4726), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4729), 1, + anon_sym_DOLLAR, + ACTIONS(4732), 1, + sym__special_character, + ACTIONS(4735), 1, + anon_sym_DQUOTE, + ACTIONS(4741), 1, + aux_sym_number_token1, + ACTIONS(4744), 1, + aux_sym_number_token2, + ACTIONS(4747), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4750), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4753), 1, + anon_sym_BQUOTE, + ACTIONS(4756), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4762), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(4765), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(4768), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4530), 41, + STATE(2753), 1, + aux_sym__literal_repeat1, + ACTIONS(4723), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4738), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4759), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(957), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2351), 7, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(2517), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2353), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [36243] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4771), 1, + sym_word, + ACTIONS(4775), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4777), 1, anon_sym_DOLLAR, + ACTIONS(4779), 1, sym__special_character, + ACTIONS(4781), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4785), 1, aux_sym_number_token1, + ACTIONS(4787), 1, aux_sym_number_token2, + ACTIONS(4789), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4791), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4793), 1, anon_sym_BQUOTE, + ACTIONS(4795), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [38711] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4696), 1, - sym_variable_name, - STATE(6757), 1, - sym_subscript, - ACTIONS(4261), 2, + ACTIONS(4799), 1, sym_test_operator, + ACTIONS(4801), 1, sym__brace_start, - STATE(4574), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4348), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - STATE(4650), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4247), 18, + STATE(2891), 1, + aux_sym__literal_repeat1, + ACTIONS(4773), 2, anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(4783), 2, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(4797), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - ACTIONS(4253), 19, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(965), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2167), 7, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [38780] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1318), 6, + STATE(2482), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2169), 11, sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 43, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [36338] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4771), 1, + sym_word, + ACTIONS(4775), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(4777), 1, anon_sym_DOLLAR, + ACTIONS(4779), 1, sym__special_character, + ACTIONS(4781), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4785), 1, aux_sym_number_token1, + ACTIONS(4787), 1, aux_sym_number_token2, + ACTIONS(4789), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4791), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4793), 1, anon_sym_BQUOTE, + ACTIONS(4795), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [38837] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(4799), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(4801), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 43, + STATE(2891), 1, + aux_sym__literal_repeat1, + ACTIONS(4773), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4783), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4797), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(965), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2171), 7, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(2482), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2173), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [38894] = 30, + [36433] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(707), 1, + ACTIONS(4803), 1, + sym_word, + ACTIONS(4807), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(709), 1, + ACTIONS(4809), 1, anon_sym_DOLLAR, - ACTIONS(713), 1, + ACTIONS(4811), 1, + sym__special_character, + ACTIONS(4813), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(4817), 1, aux_sym_number_token1, - ACTIONS(719), 1, + ACTIONS(4819), 1, aux_sym_number_token2, - ACTIONS(721), 1, + ACTIONS(4821), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(723), 1, + ACTIONS(4823), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(725), 1, + ACTIONS(4825), 1, anon_sym_BQUOTE, - ACTIONS(727), 1, + ACTIONS(4827), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(735), 1, + ACTIONS(4831), 1, sym_test_operator, - ACTIONS(737), 1, + ACTIONS(4833), 1, sym__brace_start, - ACTIONS(1394), 1, - anon_sym_LT_LT_LT, - ACTIONS(1396), 1, - sym_file_descriptor, - ACTIONS(2971), 1, - sym_word, - ACTIONS(4705), 1, - sym_variable_name, - ACTIONS(5047), 1, - sym__special_character, - STATE(531), 1, - sym_command_name, - STATE(1026), 1, + STATE(5268), 1, aux_sym__literal_repeat1, - STATE(1169), 1, + STATE(5537), 1, sym_concatenation, - STATE(6771), 1, - sym_subscript, - ACTIONS(705), 2, + ACTIONS(4805), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(715), 2, + ACTIONS(4815), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(729), 2, + ACTIONS(4829), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1392), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3127), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - STATE(3581), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(1390), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1388), 5, + ACTIONS(2301), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(852), 9, + STATE(5124), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -108688,156 +106998,156 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [39005] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1298), 6, + ACTIONS(2303), 12, sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 43, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [36528] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4807), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(4809), 1, anon_sym_DOLLAR, + ACTIONS(4811), 1, sym__special_character, + ACTIONS(4813), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4817), 1, aux_sym_number_token1, + ACTIONS(4819), 1, aux_sym_number_token2, + ACTIONS(4821), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4823), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4825), 1, anon_sym_BQUOTE, + ACTIONS(4827), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(4833), 1, + sym__brace_start, + ACTIONS(4835), 1, sym_word, - [39062] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2721), 1, - ts_builtin_sym_end, - ACTIONS(4696), 1, - sym_variable_name, - ACTIONS(5051), 1, - aux_sym_heredoc_redirect_token1, - STATE(6757), 1, - sym_subscript, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4690), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(4574), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4261), 3, - sym_file_descriptor, + ACTIONS(4839), 1, sym_test_operator, - sym__brace_start, - ACTIONS(5049), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4650), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4247), 28, + STATE(5309), 1, + aux_sym__literal_repeat1, + STATE(5541), 1, + sym_concatenation, + ACTIONS(4805), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4829), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4837), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2305), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(5249), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2307), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [36623] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3706), 1, + anon_sym_DQUOTE, + ACTIONS(3996), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3998), 1, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4002), 1, aux_sym_number_token1, + ACTIONS(4004), 1, aux_sym_number_token2, + ACTIONS(4006), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4008), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4010), 1, anon_sym_BQUOTE, + ACTIONS(4012), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [39139] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4933), 1, - aux_sym_concatenation_token1, - ACTIONS(4935), 1, - sym__concat, - STATE(978), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4469), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, + ACTIONS(4018), 1, sym__brace_start, + ACTIONS(4843), 1, + sym__special_character, + ACTIONS(4845), 1, + sym_test_operator, + STATE(2307), 1, + aux_sym__literal_repeat1, + ACTIONS(2169), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 41, + ACTIONS(3994), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4014), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(964), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4841), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2516), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2167), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -108846,55 +107156,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [36716] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3706), 1, + anon_sym_DQUOTE, + ACTIONS(3996), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3998), 1, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4002), 1, aux_sym_number_token1, + ACTIONS(4004), 1, aux_sym_number_token2, + ACTIONS(4006), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4008), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4010), 1, anon_sym_BQUOTE, + ACTIONS(4012), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [39202] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4933), 1, - aux_sym_concatenation_token1, - ACTIONS(4935), 1, - sym__concat, - STATE(974), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4372), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, + ACTIONS(4018), 1, sym__brace_start, + ACTIONS(4843), 1, + sym__special_character, + ACTIONS(4845), 1, + sym_test_operator, + STATE(2307), 1, + aux_sym__literal_repeat1, + ACTIONS(2173), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 41, + ACTIONS(3994), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4014), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(964), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4841), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2516), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2171), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -108903,55 +107228,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [36809] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3953), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3956), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(3962), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3965), 1, aux_sym_number_token1, + ACTIONS(3968), 1, aux_sym_number_token2, + ACTIONS(3971), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3974), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3977), 1, anon_sym_BQUOTE, + ACTIONS(3980), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [39265] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4933), 1, - aux_sym_concatenation_token1, - ACTIONS(4935), 1, - sym__concat, - STATE(978), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4566), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, + ACTIONS(3989), 1, sym__brace_start, + ACTIONS(4850), 1, + sym__special_character, + ACTIONS(4853), 1, + sym_test_operator, + STATE(2307), 1, + aux_sym__literal_repeat1, + ACTIONS(2183), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 41, + ACTIONS(3950), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3983), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(964), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4847), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2516), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2181), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -108960,39 +107300,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [36902] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4856), 1, + sym_word, + ACTIONS(4862), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4865), 1, anon_sym_DOLLAR, + ACTIONS(4868), 1, sym__special_character, + ACTIONS(4871), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4877), 1, aux_sym_number_token1, + ACTIONS(4880), 1, aux_sym_number_token2, + ACTIONS(4883), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4886), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4889), 1, anon_sym_BQUOTE, + ACTIONS(4892), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4898), 1, + sym_test_operator, + ACTIONS(4901), 1, + sym__brace_start, + STATE(2891), 1, + aux_sym__literal_repeat1, + ACTIONS(4859), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4874), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4895), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [39328] = 6, + STATE(965), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2181), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2482), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2183), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [36997] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4933), 1, + ACTIONS(4904), 1, aux_sym_concatenation_token1, - ACTIONS(4935), 1, + ACTIONS(4907), 1, sym__concat, - STATE(974), 1, + STATE(966), 1, aux_sym_concatenation_repeat1, - ACTIONS(4554), 5, + ACTIONS(1278), 6, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 41, + ACTIONS(1276), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -109004,9 +107401,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -109034,23 +107430,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39391] = 6, + [37060] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5053), 1, + ACTIONS(4910), 1, aux_sym_concatenation_token1, - ACTIONS(5056), 1, + ACTIONS(4912), 1, sym__concat, - STATE(996), 1, + STATE(979), 1, aux_sym_concatenation_repeat1, - ACTIONS(1253), 6, + ACTIONS(1274), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 40, + ACTIONS(1272), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -109063,6 +107458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -109091,65 +107487,297 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39454] = 30, + [37123] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4916), 1, + anon_sym_DQUOTE, + ACTIONS(4920), 1, + sym_variable_name, + STATE(2612), 1, + sym_string, + ACTIONS(1235), 2, + sym__concat, + sym_test_operator, + ACTIONS(4918), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4914), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + [37190] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4916), 1, + anon_sym_DQUOTE, + ACTIONS(4920), 1, + sym_variable_name, + STATE(2612), 1, + sym_string, + ACTIONS(1241), 2, + sym__concat, + sym_test_operator, + ACTIONS(4918), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4914), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + [37257] = 6, + ACTIONS(71), 1, + sym_comment, + STATE(2671), 1, + aux_sym__literal_repeat1, + STATE(2789), 1, + sym_concatenation, + STATE(2441), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2301), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2303), 26, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [37320] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(314), 1, + STATE(2697), 1, + aux_sym__literal_repeat1, + STATE(2874), 1, + sym_concatenation, + STATE(2400), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2305), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2307), 26, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(316), 1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [37383] = 30, + ACTIONS(47), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(49), 1, anon_sym_DOLLAR, - ACTIONS(320), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(324), 1, + ACTIONS(57), 1, aux_sym_number_token1, - ACTIONS(326), 1, + ACTIONS(59), 1, aux_sym_number_token2, - ACTIONS(328), 1, + ACTIONS(61), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(330), 1, + ACTIONS(63), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(332), 1, + ACTIONS(65), 1, anon_sym_BQUOTE, - ACTIONS(334), 1, + ACTIONS(67), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(342), 1, + ACTIONS(71), 1, + sym_comment, + ACTIONS(77), 1, sym_test_operator, - ACTIONS(344), 1, + ACTIONS(79), 1, sym__brace_start, ACTIONS(1394), 1, anon_sym_LT_LT_LT, ACTIONS(1396), 1, sym_file_descriptor, - ACTIONS(2723), 1, + ACTIONS(2715), 1, sym_word, - ACTIONS(4705), 1, + ACTIONS(4699), 1, sym_variable_name, - ACTIONS(4873), 1, + ACTIONS(4922), 1, sym__special_character, - STATE(545), 1, + STATE(540), 1, sym_command_name, - STATE(1267), 1, + STATE(1257), 1, aux_sym__literal_repeat1, - STATE(1376), 1, + STATE(1432), 1, sym_concatenation, - STATE(6771), 1, + STATE(6731), 1, sym_subscript, - ACTIONS(312), 2, + ACTIONS(45), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(322), 2, + ACTIONS(55), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(336), 2, + ACTIONS(69), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1392), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(3127), 2, + STATE(3005), 2, sym_variable_assignment, aux_sym_command_repeat1, - STATE(3581), 2, + STATE(3591), 2, sym_file_redirect, sym_herestring_redirect, ACTIONS(1390), 3, @@ -109162,7 +107790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(1078), 9, + STATE(954), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -109172,17 +107800,22 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [39565] = 3, + [37494] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 6, - sym_file_descriptor, + ACTIONS(4910), 1, + aux_sym_concatenation_token1, + ACTIONS(4912), 1, sym__concat, + STATE(979), 1, + aux_sym_concatenation_repeat1, + ACTIONS(278), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 43, + ACTIONS(241), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -109195,9 +107828,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -109211,7 +107843,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -109226,133 +107857,320 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39622] = 3, - ACTIONS(3), 1, + [37557] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1253), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(4924), 1, + sym_word, + ACTIONS(4928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4930), 1, + anon_sym_DOLLAR, + ACTIONS(4932), 1, + sym__special_character, + ACTIONS(4934), 1, + anon_sym_DQUOTE, + ACTIONS(4938), 1, + aux_sym_number_token1, + ACTIONS(4940), 1, + aux_sym_number_token2, + ACTIONS(4942), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4944), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4946), 1, + anon_sym_BQUOTE, + ACTIONS(4948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4952), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(4954), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 43, + STATE(2818), 1, + aux_sym__literal_repeat1, + ACTIONS(4926), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4936), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4950), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(976), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2167), 7, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(2532), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2169), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [37652] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4924), 1, + sym_word, + ACTIONS(4928), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(4930), 1, anon_sym_DOLLAR, + ACTIONS(4932), 1, sym__special_character, + ACTIONS(4934), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4938), 1, aux_sym_number_token1, + ACTIONS(4940), 1, aux_sym_number_token2, + ACTIONS(4942), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4944), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4946), 1, anon_sym_BQUOTE, + ACTIONS(4948), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [39679] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4933), 1, - aux_sym_concatenation_token1, - ACTIONS(4935), 1, - sym__concat, - STATE(974), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4465), 5, - sym_file_descriptor, + ACTIONS(4952), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(4954), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4463), 41, + STATE(2818), 1, + aux_sym__literal_repeat1, + ACTIONS(4926), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4936), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(4950), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(976), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2171), 7, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(2532), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2173), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [37747] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4956), 1, + sym_word, + ACTIONS(4962), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4965), 1, anon_sym_DOLLAR, + ACTIONS(4968), 1, sym__special_character, + ACTIONS(4971), 1, anon_sym_DQUOTE, + ACTIONS(4977), 1, + aux_sym_number_token1, + ACTIONS(4980), 1, + aux_sym_number_token2, + ACTIONS(4983), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4986), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4989), 1, + anon_sym_BQUOTE, + ACTIONS(4992), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4998), 1, + sym_test_operator, + ACTIONS(5001), 1, + sym__brace_start, + STATE(2818), 1, + aux_sym__literal_repeat1, + ACTIONS(4959), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4974), 2, sym_raw_string, sym_ansi_c_string, + ACTIONS(4995), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(976), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2181), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2532), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2183), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [37842] = 30, + ACTIONS(71), 1, + sym_comment, + ACTIONS(449), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(451), 1, + anon_sym_DOLLAR, + ACTIONS(455), 1, + anon_sym_DQUOTE, + ACTIONS(459), 1, aux_sym_number_token1, + ACTIONS(461), 1, aux_sym_number_token2, + ACTIONS(463), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(465), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(467), 1, anon_sym_BQUOTE, + ACTIONS(469), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(477), 1, + sym_test_operator, + ACTIONS(479), 1, + sym__brace_start, + ACTIONS(1394), 1, + anon_sym_LT_LT_LT, + ACTIONS(1396), 1, + sym_file_descriptor, + ACTIONS(2683), 1, + sym_word, + ACTIONS(4699), 1, + sym_variable_name, + ACTIONS(5004), 1, + sym__special_character, + STATE(529), 1, + sym_command_name, + STATE(978), 1, + aux_sym__literal_repeat1, + STATE(1073), 1, + sym_concatenation, + STATE(6731), 1, + sym_subscript, + ACTIONS(447), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(457), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(471), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [39742] = 6, + ACTIONS(1392), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3005), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3591), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(1390), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1388), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(813), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [37953] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4933), 1, - aux_sym_concatenation_token1, - ACTIONS(4935), 1, - sym__concat, - STATE(978), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4482), 5, + ACTIONS(5006), 1, + sym__special_character, + STATE(997), 1, + aux_sym__literal_repeat1, + ACTIONS(278), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4480), 41, + ACTIONS(241), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -109364,6 +108182,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -109381,7 +108201,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -109394,46 +108213,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39805] = 13, + [38014] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2719), 1, - anon_sym_RPAREN, - ACTIONS(4384), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4811), 1, - sym_variable_name, - STATE(6786), 1, - sym_subscript, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4809), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(4534), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4261), 3, + ACTIONS(4910), 1, + aux_sym_concatenation_token1, + ACTIONS(5008), 1, + sym__concat, + STATE(985), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4378), 3, + aux_sym_heredoc_redirect_token1, + ACTIONS(1266), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4746), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4247), 28, - anon_sym_LPAREN_LPAREN, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -109441,6 +108252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -109458,22 +108270,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39882] = 6, + [38077] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4933), 1, + ACTIONS(4910), 1, aux_sym_concatenation_token1, - ACTIONS(4935), 1, + ACTIONS(4912), 1, sym__concat, - STATE(978), 1, + STATE(981), 1, aux_sym_concatenation_repeat1, - ACTIONS(4548), 5, + ACTIONS(1258), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4546), 41, + ACTIONS(1251), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -109485,9 +108297,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -109515,17 +108327,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39945] = 3, + [38140] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 6, - sym_file_descriptor, + ACTIONS(4910), 1, + aux_sym_concatenation_token1, + ACTIONS(5010), 1, sym__concat, + STATE(985), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 43, + ACTIONS(1286), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -109538,9 +108355,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -109554,7 +108370,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -109569,17 +108384,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40002] = 3, + [38203] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, - sym_file_descriptor, + ACTIONS(1263), 1, + anon_sym_LPAREN, + ACTIONS(4910), 1, + aux_sym_concatenation_token1, + ACTIONS(4912), 1, sym__concat, + STATE(981), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1258), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 43, + ACTIONS(1251), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -109591,10 +108413,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -109608,7 +108428,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -109623,39 +108442,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40059] = 10, + [38268] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4696), 1, + ACTIONS(4314), 1, + anon_sym_RPAREN, + ACTIONS(4527), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4639), 1, sym_variable_name, - STATE(6757), 1, + STATE(6748), 1, sym_subscript, - ACTIONS(4253), 2, + ACTIONS(4310), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4272), 2, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - STATE(4574), 2, + ACTIONS(4705), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5012), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4569), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(4261), 3, + ACTIONS(4318), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - STATE(4650), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4270), 7, + ACTIONS(4525), 3, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_SEMI_SEMI, - anon_sym_LT_LT_DASH, - ACTIONS(4247), 28, + STATE(4669), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4304), 28, anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, @@ -109684,23 +108506,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40130] = 6, + [38345] = 30, + ACTIONS(71), 1, + sym_comment, + ACTIONS(357), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(359), 1, + anon_sym_DOLLAR, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(367), 1, + aux_sym_number_token1, + ACTIONS(369), 1, + aux_sym_number_token2, + ACTIONS(371), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(373), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(375), 1, + anon_sym_BQUOTE, + ACTIONS(377), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(387), 1, + sym__brace_start, + ACTIONS(781), 1, + sym_test_operator, + ACTIONS(1394), 1, + anon_sym_LT_LT_LT, + ACTIONS(1396), 1, + sym_file_descriptor, + ACTIONS(2962), 1, + sym_word, + ACTIONS(4699), 1, + sym_variable_name, + ACTIONS(5014), 1, + sym__special_character, + STATE(533), 1, + sym_command_name, + STATE(1179), 1, + aux_sym__literal_repeat1, + STATE(1398), 1, + sym_concatenation, + STATE(6731), 1, + sym_subscript, + ACTIONS(355), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(379), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(779), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1392), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3005), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3591), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(1390), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1388), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(980), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [38456] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4672), 1, + ACTIONS(5016), 1, aux_sym_concatenation_token1, - ACTIONS(4674), 1, + ACTIONS(5019), 1, sym__concat, - STATE(959), 1, + STATE(985), 1, aux_sym_concatenation_repeat1, - ACTIONS(278), 6, + ACTIONS(1278), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(241), 40, + ACTIONS(1276), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -109713,6 +108615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -109741,34 +108644,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40193] = 3, + [38519] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 6, + ACTIONS(4709), 1, + sym_variable_name, + STATE(6770), 1, + sym_subscript, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4327), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(4570), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4318), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 43, - anon_sym_LPAREN_LPAREN, + STATE(4634), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4325), 7, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_LT_LT_DASH, + ACTIONS(4304), 28, + anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -109776,11 +108688,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -109795,17 +108705,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40250] = 3, + [38590] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, + ACTIONS(4633), 1, + aux_sym_concatenation_token1, + ACTIONS(4635), 1, sym__concat, + STATE(914), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4428), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 43, + ACTIONS(4426), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -109817,7 +108732,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -109834,7 +108748,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -109849,42 +108762,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40307] = 8, + [38653] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5061), 1, - anon_sym_DQUOTE, - ACTIONS(5065), 1, - sym_variable_name, - STATE(2712), 1, - sym_string, - ACTIONS(5063), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + ACTIONS(4633), 1, + aux_sym_concatenation_token1, + ACTIONS(4635), 1, + sym__concat, + STATE(917), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4513), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5059), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 31, + aux_sym_heredoc_redirect_token1, + ACTIONS(4511), 41, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -109893,9 +108802,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -109907,23 +108819,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40373] = 6, + [38716] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5071), 1, - aux_sym_concatenation_token1, - ACTIONS(5073), 1, - sym__concat, - STATE(1086), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5069), 5, - sym_file_descriptor, + ACTIONS(4709), 1, sym_variable_name, + STATE(6770), 1, + sym_subscript, + ACTIONS(4318), 2, sym_test_operator, sym__brace_start, + STATE(4570), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4323), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5067), 40, + STATE(4634), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4304), 18, anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + ACTIONS(4310), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -109933,10 +108869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -109946,41 +108879,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [40435] = 7, + [38785] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, + ACTIONS(4633), 1, aux_sym_concatenation_token1, - ACTIONS(4701), 1, + ACTIONS(4635), 1, sym__concat, - ACTIONS(5075), 1, - anon_sym_LPAREN, - STATE(1054), 1, + STATE(914), 1, aux_sym_concatenation_repeat1, - ACTIONS(1281), 5, + ACTIONS(4579), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1271), 39, + ACTIONS(4577), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -109993,6 +108907,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -110020,17 +108936,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40499] = 3, + [38848] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, + ACTIONS(4633), 1, + aux_sym_concatenation_token1, + ACTIONS(4635), 1, sym__concat, + STATE(917), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4595), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 42, + ACTIONS(4593), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -110042,9 +108963,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -110058,7 +108979,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -110073,20 +108993,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40555] = 5, - ACTIONS(3), 1, + [38911] = 30, + ACTIONS(71), 1, sym_comment, - ACTIONS(5078), 1, + ACTIONS(707), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(709), 1, + anon_sym_DOLLAR, + ACTIONS(713), 1, + anon_sym_DQUOTE, + ACTIONS(717), 1, + aux_sym_number_token1, + ACTIONS(719), 1, + aux_sym_number_token2, + ACTIONS(721), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(723), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(725), 1, + anon_sym_BQUOTE, + ACTIONS(727), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(735), 1, + sym_test_operator, + ACTIONS(737), 1, + sym__brace_start, + ACTIONS(1394), 1, + anon_sym_LT_LT_LT, + ACTIONS(1396), 1, + sym_file_descriptor, + ACTIONS(3018), 1, + sym_word, + ACTIONS(4699), 1, + sym_variable_name, + ACTIONS(5022), 1, sym__special_character, - STATE(1095), 1, + STATE(530), 1, + sym_command_name, + STATE(1127), 1, aux_sym__literal_repeat1, - ACTIONS(4482), 5, + STATE(1231), 1, + sym_concatenation, + STATE(6731), 1, + sym_subscript, + ACTIONS(705), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(715), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(729), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1392), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3005), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3591), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(1390), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1388), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(859), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [39022] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4633), 1, + aux_sym_concatenation_token1, + ACTIONS(4635), 1, + sym__concat, + STATE(914), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4506), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4480), 41, + ACTIONS(4504), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -110098,7 +109101,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -110116,6 +109118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -110128,17 +109131,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40615] = 3, + [39085] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, - sym_file_descriptor, + ACTIONS(4633), 1, + aux_sym_concatenation_token1, + ACTIONS(4635), 1, sym__concat, + STATE(917), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4523), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 42, + ACTIONS(4521), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -110150,9 +109158,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -110166,7 +109174,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -110181,33 +109188,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40671] = 3, + [39148] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(5026), 1, + anon_sym_DQUOTE, + ACTIONS(5030), 1, + sym_variable_name, + STATE(2466), 1, + sym_string, + ACTIONS(5028), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 42, + ACTIONS(5024), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 32, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -110219,10 +109235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -110234,33 +109247,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40727] = 3, + [39215] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, + ACTIONS(5026), 1, + anon_sym_DQUOTE, + ACTIONS(5030), 1, + sym_variable_name, + STATE(2466), 1, + sym_string, + ACTIONS(5028), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, + sym_file_descriptor, + sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 42, + ACTIONS(5024), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 32, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -110272,10 +109294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -110287,17 +109306,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40783] = 3, + [39282] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(5032), 1, + sym__special_character, + STATE(997), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 5, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 42, + ACTIONS(1360), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -110310,8 +109332,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -110325,9 +109349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -110340,33 +109362,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40839] = 3, + [39343] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(5037), 1, + anon_sym_DQUOTE, + ACTIONS(5041), 1, + sym_variable_name, + STATE(2596), 1, + sym_string, + ACTIONS(5039), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 42, + ACTIONS(5035), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 32, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, + anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -110375,13 +109407,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -110393,33 +109421,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40895] = 3, + [39410] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(5037), 1, + anon_sym_DQUOTE, + ACTIONS(5041), 1, + sym_variable_name, + STATE(2596), 1, + sym_string, + ACTIONS(5039), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 42, + ACTIONS(5035), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 32, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, + anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -110428,13 +109466,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -110446,22 +109480,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40951] = 6, + [39477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5080), 1, - aux_sym_concatenation_token1, - ACTIONS(5082), 1, - sym__concat, - STATE(1032), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4548), 5, + ACTIONS(1298), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4546), 40, + ACTIONS(1296), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -110473,8 +109502,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -110488,6 +109519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -110502,17 +109534,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41013] = 3, - ACTIONS(3), 1, + [39534] = 30, + ACTIONS(71), 1, sym_comment, - ACTIONS(1342), 6, + ACTIONS(357), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(359), 1, + anon_sym_DOLLAR, + ACTIONS(363), 1, + anon_sym_DQUOTE, + ACTIONS(367), 1, + aux_sym_number_token1, + ACTIONS(369), 1, + aux_sym_number_token2, + ACTIONS(371), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(373), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(375), 1, + anon_sym_BQUOTE, + ACTIONS(377), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(385), 1, + sym_test_operator, + ACTIONS(387), 1, + sym__brace_start, + ACTIONS(1394), 1, + anon_sym_LT_LT_LT, + ACTIONS(1396), 1, sym_file_descriptor, + ACTIONS(2804), 1, + sym_word, + ACTIONS(4699), 1, + sym_variable_name, + ACTIONS(5043), 1, + sym__special_character, + STATE(553), 1, + sym_command_name, + STATE(1179), 1, + aux_sym__literal_repeat1, + STATE(1398), 1, + sym_concatenation, + STATE(6731), 1, + sym_subscript, + ACTIONS(355), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(365), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(379), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1392), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3005), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3591), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(1390), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1388), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1010), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [39645] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4629), 1, + aux_sym_concatenation_token1, + ACTIONS(5045), 1, sym__concat, + STATE(966), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 6, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 42, + ACTIONS(1286), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -110525,7 +109644,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -110540,7 +109658,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -110555,37 +109672,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41069] = 6, + [39708] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5080), 1, - aux_sym_concatenation_token1, - ACTIONS(5082), 1, - sym__concat, - STATE(1040), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4532), 5, + ACTIONS(2755), 1, + anon_sym_RPAREN, + ACTIONS(4471), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4639), 1, + sym_variable_name, + STATE(6748), 1, + sym_subscript, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4705), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5012), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4569), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4318), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4530), 40, - anon_sym_LPAREN_LPAREN, + ACTIONS(4465), 3, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, + anon_sym_SEMI_SEMI, + STATE(4669), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4304), 28, + anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -110593,7 +109719,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -110611,136 +109736,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41131] = 8, - ACTIONS(3), 1, + [39785] = 30, + ACTIONS(71), 1, sym_comment, - ACTIONS(1235), 1, - sym_test_operator, - ACTIONS(5086), 1, - anon_sym_DQUOTE, - ACTIONS(5090), 1, - sym_variable_name, - STATE(2442), 1, - sym_string, - ACTIONS(5088), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5084), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(357), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(359), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_COLON, - [41197] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1241), 1, - sym_test_operator, - ACTIONS(5086), 1, + ACTIONS(363), 1, anon_sym_DQUOTE, - ACTIONS(5090), 1, + ACTIONS(367), 1, + aux_sym_number_token1, + ACTIONS(369), 1, + aux_sym_number_token2, + ACTIONS(371), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(373), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(375), 1, + anon_sym_BQUOTE, + ACTIONS(377), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(387), 1, + sym__brace_start, + ACTIONS(1023), 1, + sym_test_operator, + ACTIONS(1394), 1, + anon_sym_LT_LT_LT, + ACTIONS(1396), 1, + sym_file_descriptor, + ACTIONS(3012), 1, + sym_word, + ACTIONS(4699), 1, sym_variable_name, - STATE(2442), 1, - sym_string, - ACTIONS(5088), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5084), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(5047), 1, + sym__special_character, + STATE(613), 1, + sym_command_name, + STATE(1179), 1, + aux_sym__literal_repeat1, + STATE(1398), 1, + sym_concatenation, + STATE(6731), 1, + sym_subscript, + ACTIONS(355), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(379), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1017), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1392), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3005), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3591), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(1390), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1388), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_COLON, - [41263] = 5, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1693), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [39896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5092), 1, - sym__special_character, - STATE(1097), 1, - aux_sym__literal_repeat1, - ACTIONS(278), 5, + ACTIONS(1306), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(241), 41, + ACTIONS(1304), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -110752,7 +109839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -110769,7 +109856,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -110782,17 +109871,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41323] = 3, + [39953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 6, + ACTIONS(1278), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 42, + ACTIONS(1276), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -110804,9 +109893,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -110835,55 +109925,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41379] = 9, + [40010] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5094), 1, - sym_variable_name, - STATE(6758), 1, - sym_subscript, - ACTIONS(4261), 2, - sym_test_operator, - sym__brace_start, - ACTIONS(4348), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(4568), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(4697), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4247), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3624), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3626), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(3630), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3632), 1, aux_sym_number_token1, + ACTIONS(3634), 1, aux_sym_number_token2, + ACTIONS(3636), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3638), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3640), 1, + anon_sym_BQUOTE, + ACTIONS(3642), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3648), 1, + sym__brace_start, + ACTIONS(5051), 1, + sym__special_character, + ACTIONS(5053), 1, + sym_test_operator, + STATE(4378), 1, + aux_sym__literal_repeat1, + STATE(4788), 1, + sym_concatenation, + ACTIONS(2303), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3622), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3644), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(5049), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - ACTIONS(4253), 20, - anon_sym_SEMI, + STATE(5236), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2301), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -110893,34 +109996,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [41447] = 3, + anon_sym_LT_LT_LT, + [40103] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 7, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, + ACTIONS(3624), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3626), 1, + anon_sym_DOLLAR, + ACTIONS(3630), 1, + anon_sym_DQUOTE, + ACTIONS(3632), 1, + aux_sym_number_token1, + ACTIONS(3634), 1, + aux_sym_number_token2, + ACTIONS(3636), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3638), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3640), 1, + anon_sym_BQUOTE, + ACTIONS(3642), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3648), 1, sym__brace_start, - ts_builtin_sym_end, + ACTIONS(5051), 1, + sym__special_character, + ACTIONS(5057), 1, + sym_test_operator, + STATE(4395), 1, + aux_sym__literal_repeat1, + STATE(4818), 1, + sym_concatenation, + ACTIONS(2307), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 41, + ACTIONS(3622), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3644), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5055), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5238), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2305), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -110930,97 +110069,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [40196] = 30, + ACTIONS(71), 1, + sym_comment, + ACTIONS(357), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(359), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(363), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(367), 1, aux_sym_number_token1, + ACTIONS(369), 1, aux_sym_number_token2, + ACTIONS(371), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(373), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(375), 1, anon_sym_BQUOTE, + ACTIONS(377), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(385), 1, + sym_test_operator, + ACTIONS(387), 1, + sym__brace_start, + ACTIONS(1394), 1, + anon_sym_LT_LT_LT, + ACTIONS(1396), 1, + sym_file_descriptor, + ACTIONS(2804), 1, sym_word, - [41503] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5101), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5103), 1, + ACTIONS(4699), 1, sym_variable_name, - STATE(6727), 1, + ACTIONS(5043), 1, + sym__special_character, + STATE(545), 1, + sym_command_name, + STATE(1179), 1, + aux_sym__literal_repeat1, + STATE(1398), 1, + sym_concatenation, + STATE(6731), 1, sym_subscript, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5099), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(4787), 2, + ACTIONS(355), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(365), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(379), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1392), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3005), 2, sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4261), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(5097), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4986), 3, + aux_sym_command_repeat1, + STATE(3591), 2, sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4247), 28, - anon_sym_LPAREN_LPAREN, + sym_herestring_redirect, + ACTIONS(1390), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1388), 5, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [41577] = 3, + STATE(1010), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [40307] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 7, - sym_file_descriptor, + ACTIONS(4910), 1, + aux_sym_concatenation_token1, + ACTIONS(4912), 1, sym__concat, + STATE(1049), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1258), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 41, + ACTIONS(1251), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -111047,7 +110192,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -111062,22 +110206,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41633] = 6, + [40369] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5080), 1, + ACTIONS(5059), 1, aux_sym_concatenation_token1, - ACTIONS(5106), 1, + ACTIONS(5061), 1, sym__concat, - STATE(1065), 1, + STATE(1046), 1, aux_sym_concatenation_repeat1, - ACTIONS(1267), 5, + ACTIONS(4513), 6, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 40, + ACTIONS(4511), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -111089,7 +110234,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -111118,18 +110262,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41695] = 3, + [40431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 7, + ACTIONS(1306), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 41, + ACTIONS(1304), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -111141,8 +110284,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -111171,18 +110315,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41751] = 3, + [40487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 7, + ACTIONS(1278), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 41, + ACTIONS(1276), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -111194,8 +110337,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -111224,116 +110368,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41807] = 22, - ACTIONS(71), 1, + [40543] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5108), 1, - sym_word, - ACTIONS(5112), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5114), 1, - anon_sym_DOLLAR, - ACTIONS(5116), 1, - sym__special_character, - ACTIONS(5118), 1, - anon_sym_DQUOTE, - ACTIONS(5122), 1, - aux_sym_number_token1, - ACTIONS(5124), 1, - aux_sym_number_token2, - ACTIONS(5126), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5128), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5130), 1, - anon_sym_BQUOTE, - ACTIONS(5132), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5136), 1, + ACTIONS(1326), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(5138), 1, + sym__bare_dollar, sym__brace_start, - STATE(3114), 1, - aux_sym__literal_repeat1, - ACTIONS(5110), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1324), 42, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5120), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5134), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1075), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2094), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2613), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2096), 10, - sym_file_descriptor, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [41901] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5103), 1, - sym_variable_name, - ACTIONS(5142), 1, - aux_sym_heredoc_redirect_token1, - STATE(6727), 1, - sym_subscript, - ACTIONS(4253), 2, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5099), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(4787), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4261), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(5140), 3, - anon_sym_SEMI, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4986), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4247), 28, - anon_sym_LPAREN_LPAREN, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111341,9 +110402,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -111358,17 +110421,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41975] = 3, + [40599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 6, + ACTIONS(1350), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 42, + ACTIONS(1348), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -111380,9 +110443,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -111411,17 +110474,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42031] = 3, + [40655] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 6, + ACTIONS(1334), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 42, + ACTIONS(1332), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -111433,9 +110496,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -111464,23 +110527,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42087] = 6, + [40711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5144), 1, - aux_sym_concatenation_token1, - ACTIONS(5146), 1, - sym__concat, - STATE(1131), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4465), 6, + ACTIONS(1354), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4463), 39, + ACTIONS(1352), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -111493,6 +110550,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -111506,6 +110565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -111520,22 +110580,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42149] = 6, + [40767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5080), 1, - aux_sym_concatenation_token1, - ACTIONS(5148), 1, - sym__concat, - STATE(1065), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, + ACTIONS(1338), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 40, + ACTIONS(1336), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -111547,8 +110602,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -111562,6 +110618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -111576,23 +110633,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42211] = 8, + [40823] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5061), 1, - anon_sym_DQUOTE, + ACTIONS(1235), 1, + sym_test_operator, ACTIONS(5065), 1, + anon_sym_DQUOTE, + ACTIONS(5069), 1, sym_variable_name, - STATE(2712), 1, + STATE(2433), 1, sym_string, - ACTIONS(5063), 2, + ACTIONS(5067), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, - sym_file_descriptor, + ACTIONS(5063), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 33, + anon_sym_RPAREN_RPAREN, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + [40889] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1241), 1, sym_test_operator, - sym__brace_start, - ACTIONS(5059), 9, + ACTIONS(5065), 1, + anon_sym_DQUOTE, + ACTIONS(5069), 1, + sym_variable_name, + STATE(2433), 1, + sym_string, + ACTIONS(5067), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5063), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -111602,16 +110715,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 31, + ACTIONS(1239), 33, + anon_sym_RPAREN_RPAREN, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + [40955] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1358), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1356), 42, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111620,9 +110784,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -111634,23 +110802,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42277] = 6, + [41011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5144), 1, - aux_sym_concatenation_token1, - ACTIONS(5146), 1, - sym__concat, - STATE(1123), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4482), 6, + ACTIONS(1346), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4480), 39, + ACTIONS(1344), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -111663,6 +110825,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -111676,6 +110840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -111690,18 +110855,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42339] = 3, + [41067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 7, + ACTIONS(1358), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 41, + ACTIONS(1356), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -111713,8 +110877,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -111743,18 +110908,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42395] = 3, + [41123] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 7, - sym_file_descriptor, + ACTIONS(5071), 1, + aux_sym_concatenation_token1, + ACTIONS(5073), 1, sym__concat, + STATE(1067), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4502), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 41, + ACTIONS(4500), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -111766,7 +110935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -111781,7 +110950,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -111796,37 +110964,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42451] = 5, + [41185] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5078), 1, - sym__special_character, - STATE(1095), 1, - aux_sym__literal_repeat1, - ACTIONS(4548), 5, + ACTIONS(4314), 1, + anon_sym_BQUOTE, + ACTIONS(5079), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5081), 1, + sym_variable_name, + STATE(6774), 1, + sym_subscript, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4705), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5077), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4593), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4318), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4546), 41, - anon_sym_LPAREN_LPAREN, + ACTIONS(5075), 3, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, + anon_sym_SEMI_SEMI, + STATE(4670), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4304), 27, + anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111834,11 +111011,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -111846,23 +111023,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42511] = 3, + [41261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 7, + ACTIONS(1298), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 41, + ACTIONS(1296), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -111874,8 +111049,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -111904,18 +111080,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42567] = 3, + [41317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 7, + ACTIONS(1310), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 41, + ACTIONS(1308), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -111927,8 +111102,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -111957,42 +111133,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42623] = 8, + [41373] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5152), 1, - anon_sym_DQUOTE, - ACTIONS(5156), 1, - sym_variable_name, - STATE(2566), 1, - sym_string, - ACTIONS(5154), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + ACTIONS(5059), 1, + aux_sym_concatenation_token1, + ACTIONS(5061), 1, + sym__concat, + STATE(1045), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4579), 6, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5150), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 31, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4577), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -112001,9 +111172,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -112015,18 +111189,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42689] = 3, + [41435] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 7, - sym_file_descriptor, + ACTIONS(5059), 1, + aux_sym_concatenation_token1, + ACTIONS(5061), 1, sym__concat, + STATE(1046), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4595), 6, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 41, + ACTIONS(4593), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -112038,7 +111217,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -112053,7 +111231,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -112068,23 +111245,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42745] = 8, + [41497] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5152), 1, + ACTIONS(5086), 1, anon_sym_DQUOTE, - ACTIONS(5156), 1, + ACTIONS(5090), 1, sym_variable_name, - STATE(2566), 1, + STATE(2862), 1, sym_string, - ACTIONS(5154), 2, + ACTIONS(5088), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + ACTIONS(1235), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(5150), 9, + ACTIONS(5084), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -112094,7 +111271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 31, + ACTIONS(1227), 31, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -112126,132 +111303,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42811] = 8, + [41563] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(262), 1, + ACTIONS(5086), 1, anon_sym_DQUOTE, - ACTIONS(1235), 1, - sym_test_operator, - ACTIONS(5162), 1, + ACTIONS(5090), 1, sym_variable_name, - STATE(2734), 1, + STATE(2862), 1, sym_string, - ACTIONS(5160), 2, + ACTIONS(5088), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5158), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - [42877] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 5, + ACTIONS(1241), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 43, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [42933] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(262), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - sym_test_operator, - ACTIONS(5162), 1, - sym_variable_name, - STATE(2734), 1, - sym_string, - ACTIONS(5160), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5158), 9, + ACTIONS(5084), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -112261,71 +111329,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - [42999] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4699), 1, - aux_sym_concatenation_token1, - ACTIONS(5164), 1, - sym__concat, - STATE(965), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 40, + ACTIONS(1239), 31, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -112334,12 +111347,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -112351,161 +111361,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43061] = 6, + [41629] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_concatenation_token1, - ACTIONS(5166), 1, - sym__concat, - STATE(965), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, + ACTIONS(5096), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(5098), 1, + sym_variable_name, + STATE(6757), 1, + sym_subscript, + ACTIONS(4310), 2, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [43123] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5108), 1, - sym_word, - ACTIONS(5112), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5114), 1, - anon_sym_DOLLAR, - ACTIONS(5116), 1, - sym__special_character, - ACTIONS(5118), 1, - anon_sym_DQUOTE, - ACTIONS(5122), 1, - aux_sym_number_token1, - ACTIONS(5124), 1, - aux_sym_number_token2, - ACTIONS(5126), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5128), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5130), 1, - anon_sym_BQUOTE, - ACTIONS(5132), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5136), 1, - sym_test_operator, - ACTIONS(5138), 1, - sym__brace_start, - STATE(3114), 1, - aux_sym__literal_repeat1, - ACTIONS(5110), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5120), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5134), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1075), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2072), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4705), 2, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2613), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2074), 10, - sym_file_descriptor, + anon_sym_LT_LT_DASH, + ACTIONS(5094), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [43217] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1338), 6, + STATE(4816), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4318), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 42, - anon_sym_LPAREN_LPAREN, + ACTIONS(5092), 3, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, + anon_sym_SEMI_SEMI, + STATE(5016), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4304), 28, + anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -112513,11 +111406,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -112532,17 +111423,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43273] = 3, + [41703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 6, + ACTIONS(1314), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 42, + ACTIONS(1312), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -112554,9 +111445,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -112585,38 +111476,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43329] = 10, + [41759] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4272), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5094), 1, + ACTIONS(5098), 1, sym_variable_name, - STATE(6758), 1, + ACTIONS(5103), 1, + aux_sym_heredoc_redirect_token1, + STATE(6757), 1, sym_subscript, - ACTIONS(4253), 2, + ACTIONS(4310), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - STATE(4568), 2, + ACTIONS(4705), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5094), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4816), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(4261), 3, + ACTIONS(4318), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - STATE(4697), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4270), 7, + ACTIONS(5101), 3, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_SEMI_SEMI, - anon_sym_LT_LT_DASH, - ACTIONS(4247), 28, + STATE(5016), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4304), 28, anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, @@ -112645,139 +111538,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43399] = 3, + [41833] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, + ACTIONS(2755), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + sym_variable_name, + ACTIONS(5107), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 42, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(6774), 1, + sym_subscript, + ACTIONS(4310), 2, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(4705), 2, + anon_sym_LT_LT, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [43455] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1350), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 42, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + ACTIONS(5077), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [43511] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1346), 6, + STATE(4593), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4318), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 42, - anon_sym_LPAREN_LPAREN, + ACTIONS(5105), 3, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, + anon_sym_SEMI_SEMI, + STATE(4670), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4304), 27, + anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -112785,11 +111585,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -112799,91 +111597,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43567] = 3, + [41909] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, + ACTIONS(5098), 1, + sym_variable_name, + ACTIONS(5111), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 42, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(6757), 1, + sym_subscript, + ACTIONS(4310), 2, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(4705), 2, + anon_sym_LT_LT, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [43623] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1334), 7, + ACTIONS(5094), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4816), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4318), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 41, - anon_sym_LPAREN_LPAREN, + ACTIONS(5109), 3, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, + anon_sym_SEMI_SEMI, + STATE(5016), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4304), 28, + anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -112891,11 +111646,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -112910,22 +111663,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43679] = 6, + [41983] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 1, + ACTIONS(5071), 1, aux_sym_concatenation_token1, - ACTIONS(5171), 1, + ACTIONS(5073), 1, sym__concat, - STATE(1065), 1, + STATE(1067), 1, aux_sym_concatenation_repeat1, - ACTIONS(1253), 5, + ACTIONS(4428), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 40, + ACTIONS(4426), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -112966,23 +111719,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43741] = 6, + [42045] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5144), 1, + ACTIONS(5071), 1, aux_sym_concatenation_token1, - ACTIONS(5146), 1, + ACTIONS(5073), 1, sym__concat, - STATE(1123), 1, + STATE(1069), 1, aux_sym_concatenation_repeat1, - ACTIONS(4469), 6, + ACTIONS(4513), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 39, + ACTIONS(4511), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -112994,6 +111746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -113022,37 +111775,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43803] = 6, + [42107] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5071), 1, aux_sym_concatenation_token1, ACTIONS(5073), 1, sym__concat, - STATE(1087), 1, + STATE(1067), 1, aux_sym_concatenation_repeat1, - ACTIONS(5176), 5, + ACTIONS(4579), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5174), 40, + ACTIONS(4577), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -113061,6 +111814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -113076,81 +111830,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [43865] = 6, + [42169] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5071), 1, aux_sym_concatenation_token1, ACTIONS(5073), 1, sym__concat, - STATE(1086), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5180), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5178), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [43927] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5144), 1, - aux_sym_concatenation_token1, - ACTIONS(5146), 1, - sym__concat, - STATE(1131), 1, + STATE(1069), 1, aux_sym_concatenation_repeat1, - ACTIONS(4372), 6, + ACTIONS(4595), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 39, + ACTIONS(4593), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -113162,6 +111858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -113190,21 +111887,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43989] = 8, + [42231] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1235), 1, sym_test_operator, - ACTIONS(4663), 1, + ACTIONS(5065), 1, anon_sym_DQUOTE, - ACTIONS(4667), 1, + ACTIONS(5069), 1, sym_variable_name, - STATE(2716), 1, + STATE(2433), 1, sym_string, - ACTIONS(4665), 2, + ACTIONS(5067), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4661), 9, + ACTIONS(5063), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -113246,23 +111943,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, - [44055] = 8, + [42297] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1241), 1, sym_test_operator, - ACTIONS(4663), 1, + ACTIONS(5065), 1, anon_sym_DQUOTE, - ACTIONS(4667), 1, + ACTIONS(5069), 1, sym_variable_name, - STATE(2716), 1, + STATE(2433), 1, sym_string, - ACTIONS(4665), 2, + ACTIONS(5067), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4661), 9, + ACTIONS(5063), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -113304,95 +112001,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, - [44121] = 6, - ACTIONS(3), 1, + [42363] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(5144), 1, - aux_sym_concatenation_token1, - ACTIONS(5146), 1, - sym__concat, - STATE(1123), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4566), 6, - sym_file_descriptor, + ACTIONS(5113), 1, + sym_word, + ACTIONS(5117), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5119), 1, + anon_sym_DOLLAR, + ACTIONS(5121), 1, + sym__special_character, + ACTIONS(5123), 1, + anon_sym_DQUOTE, + ACTIONS(5127), 1, + aux_sym_number_token1, + ACTIONS(5129), 1, + aux_sym_number_token2, + ACTIONS(5131), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5133), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5135), 1, + anon_sym_BQUOTE, + ACTIONS(5137), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5141), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(5143), 1, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 39, + STATE(5435), 1, + aux_sym__literal_repeat1, + STATE(5605), 1, + sym_concatenation, + ACTIONS(5115), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5125), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5139), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2301), 7, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(5329), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2303), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [42457] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5117), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(5119), 1, anon_sym_DOLLAR, + ACTIONS(5121), 1, sym__special_character, + ACTIONS(5123), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5127), 1, aux_sym_number_token1, + ACTIONS(5129), 1, aux_sym_number_token2, + ACTIONS(5131), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5133), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5135), 1, anon_sym_BQUOTE, + ACTIONS(5137), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(5143), 1, + sym__brace_start, + ACTIONS(5145), 1, + sym_word, + ACTIONS(5149), 1, + sym_test_operator, + STATE(5482), 1, + aux_sym__literal_repeat1, + STATE(5574), 1, + sym_concatenation, + ACTIONS(5115), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5139), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [44183] = 6, + ACTIONS(5147), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2305), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(5263), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2307), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [42551] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 1, + ACTIONS(5059), 1, aux_sym_concatenation_token1, - ACTIONS(5184), 1, + ACTIONS(5151), 1, sym__concat, - STATE(1079), 1, + STATE(1050), 1, aux_sym_concatenation_repeat1, - ACTIONS(1267), 5, + ACTIONS(1268), 6, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 40, + ACTIONS(1266), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -113418,37 +112203,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44245] = 6, + [42613] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 1, + ACTIONS(5059), 1, aux_sym_concatenation_token1, - ACTIONS(5186), 1, + ACTIONS(5153), 1, sym__concat, - STATE(1079), 1, + STATE(1050), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, + ACTIONS(1288), 6, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 40, + ACTIONS(1286), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -113474,109 +112259,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44307] = 22, - ACTIONS(71), 1, + [42675] = 10, + ACTIONS(3), 1, sym_comment, - ACTIONS(5188), 1, - sym_word, - ACTIONS(5194), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5197), 1, - anon_sym_DOLLAR, - ACTIONS(5200), 1, - sym__special_character, - ACTIONS(5203), 1, - anon_sym_DQUOTE, - ACTIONS(5209), 1, - aux_sym_number_token1, - ACTIONS(5212), 1, - aux_sym_number_token2, - ACTIONS(5215), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5218), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5221), 1, - anon_sym_BQUOTE, - ACTIONS(5224), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5230), 1, - sym_test_operator, - ACTIONS(5233), 1, - sym__brace_start, - STATE(3114), 1, - aux_sym__literal_repeat1, - ACTIONS(5191), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5227), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1075), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2214), 7, + ACTIONS(4327), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5081), 1, + sym_variable_name, + STATE(6774), 1, + sym_subscript, + ACTIONS(4310), 2, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2613), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2216), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [44401] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5144), 1, - aux_sym_concatenation_token1, - ACTIONS(5146), 1, - sym__concat, - STATE(1131), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4554), 6, + STATE(4593), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4318), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 39, - anon_sym_LPAREN_LPAREN, + STATE(4670), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4325), 7, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_LT_LT_DASH, + ACTIONS(4304), 28, + anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -113584,7 +112302,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -113602,22 +112319,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44463] = 6, + [42745] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, + ACTIONS(4910), 1, aux_sym_concatenation_token1, - ACTIONS(4701), 1, + ACTIONS(5155), 1, sym__concat, - STATE(1055), 1, + STATE(985), 1, aux_sym_concatenation_repeat1, - ACTIONS(278), 5, + ACTIONS(1268), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(241), 40, + ACTIONS(1266), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -113658,22 +112375,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44525] = 6, + [42807] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, + ACTIONS(4910), 1, aux_sym_concatenation_token1, - ACTIONS(4701), 1, + ACTIONS(5157), 1, sym__concat, - STATE(1054), 1, + STATE(985), 1, aux_sym_concatenation_repeat1, - ACTIONS(1281), 5, + ACTIONS(1288), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1271), 40, + ACTIONS(1286), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -113714,37 +112431,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44587] = 6, + [42869] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5236), 1, + ACTIONS(5159), 1, aux_sym_concatenation_token1, - ACTIONS(5239), 1, + ACTIONS(5162), 1, sym__concat, - STATE(1079), 1, + STATE(1050), 1, aux_sym_concatenation_repeat1, - ACTIONS(1253), 5, + ACTIONS(1278), 6, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 40, + ACTIONS(1276), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -113770,24 +112487,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44649] = 7, + [42931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_concatenation_token1, - ACTIONS(4701), 1, - sym__concat, - ACTIONS(5242), 1, - anon_sym_LPAREN, - STATE(1054), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1281), 5, + ACTIONS(1318), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1271), 39, + ACTIONS(1316), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -113800,6 +112510,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -113813,6 +112525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -113827,37 +112540,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44713] = 6, + [42987] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 1, + ACTIONS(5059), 1, aux_sym_concatenation_token1, - ACTIONS(5245), 1, + ACTIONS(5061), 1, sym__concat, - STATE(1074), 1, + STATE(1045), 1, aux_sym_concatenation_repeat1, - ACTIONS(2074), 5, + ACTIONS(1274), 6, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2072), 40, + ACTIONS(1272), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -113883,34 +112596,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44775] = 3, + [43049] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 5, + ACTIONS(5169), 1, + aux_sym_concatenation_token1, + ACTIONS(5171), 1, + sym__concat, + STATE(1143), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5167), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1271), 43, + ACTIONS(5165), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -113936,33 +112652,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44831] = 3, + [43111] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 7, - sym_file_descriptor, + ACTIONS(5169), 1, + aux_sym_concatenation_token1, + ACTIONS(5171), 1, sym__concat, + STATE(1144), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5175), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 41, + ACTIONS(5173), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -113974,7 +112694,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -113989,18 +112708,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44887] = 3, + [43173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 7, + ACTIONS(1302), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 41, + ACTIONS(1300), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -114012,8 +112730,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -114042,17 +112761,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44943] = 3, + [43229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 6, + ACTIONS(1322), 7, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 42, + ACTIONS(1320), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -114065,7 +112785,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -114095,37 +112814,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44999] = 6, + [43285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5071), 1, - aux_sym_concatenation_token1, - ACTIONS(5247), 1, - sym__concat, - STATE(1088), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 5, + ACTIONS(1306), 7, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 40, + ACTIONS(1304), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -114134,8 +112849,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -114149,39 +112866,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [45061] = 6, + [43341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5071), 1, - aux_sym_concatenation_token1, - ACTIONS(5249), 1, - sym__concat, - STATE(1088), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, + ACTIONS(1278), 7, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 40, + ACTIONS(1276), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -114190,8 +112902,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -114205,24 +112919,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [45123] = 6, + [43397] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5251), 1, + ACTIONS(5177), 1, aux_sym_concatenation_token1, - ACTIONS(5254), 1, + ACTIONS(5179), 1, sym__concat, - STATE(1088), 1, + STATE(1146), 1, aux_sym_concatenation_repeat1, - ACTIONS(1253), 5, + ACTIONS(5167), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 40, + ACTIONS(5165), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -114263,22 +112976,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [45185] = 6, + [43459] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 1, + ACTIONS(5177), 1, aux_sym_concatenation_token1, - ACTIONS(5245), 1, + ACTIONS(5179), 1, sym__concat, - STATE(1073), 1, + STATE(1147), 1, aux_sym_concatenation_repeat1, - ACTIONS(1263), 5, + ACTIONS(5175), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 40, + ACTIONS(5173), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -114302,7 +113015,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -114318,95 +113030,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [45247] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5257), 1, - sym_word, - ACTIONS(5261), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5263), 1, - anon_sym_DOLLAR, - ACTIONS(5265), 1, - sym__special_character, - ACTIONS(5267), 1, - anon_sym_DQUOTE, - ACTIONS(5271), 1, - aux_sym_number_token1, - ACTIONS(5273), 1, - aux_sym_number_token2, - ACTIONS(5275), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5277), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5279), 1, - anon_sym_BQUOTE, - ACTIONS(5281), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5285), 1, - sym_test_operator, - ACTIONS(5287), 1, - sym__brace_start, - STATE(5437), 1, - aux_sym__literal_repeat1, - STATE(5604), 1, - sym_concatenation, - ACTIONS(5259), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5269), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5283), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2494), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(5378), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2496), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [45341] = 6, + [43521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5080), 1, - aux_sym_concatenation_token1, - ACTIONS(5082), 1, - sym__concat, - STATE(1032), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 5, + ACTIONS(1318), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 40, + ACTIONS(1316), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -114418,7 +113055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -114433,6 +113070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -114447,22 +113085,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45403] = 6, + [43577] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5071), 1, + ACTIONS(5169), 1, aux_sym_concatenation_token1, - ACTIONS(5073), 1, + ACTIONS(5171), 1, sym__concat, - STATE(1086), 1, + STATE(1144), 1, aux_sym_concatenation_repeat1, - ACTIONS(1263), 5, + ACTIONS(2169), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 40, + ACTIONS(2167), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -114486,6 +113124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -114501,25 +113140,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [45465] = 6, + [43639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5144), 1, - aux_sym_concatenation_token1, - ACTIONS(5146), 1, - sym__concat, - STATE(1131), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4532), 6, + ACTIONS(1322), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4530), 39, + ACTIONS(1320), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -114531,6 +113163,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -114545,6 +113179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -114559,37 +113194,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45527] = 6, + [43695] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5144), 1, + ACTIONS(5169), 1, aux_sym_concatenation_token1, - ACTIONS(5146), 1, + ACTIONS(5171), 1, sym__concat, - STATE(1123), 1, + STATE(1144), 1, aux_sym_concatenation_repeat1, - ACTIONS(4548), 6, + ACTIONS(2173), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4546), 39, + ACTIONS(2171), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -114615,20 +113250,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45589] = 5, + [43757] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5289), 1, - sym__special_character, - STATE(1095), 1, - aux_sym__literal_repeat1, - ACTIONS(1364), 5, - sym_file_descriptor, + ACTIONS(262), 1, + anon_sym_DQUOTE, + ACTIONS(1235), 1, sym_test_operator, - sym__bare_dollar, - sym__brace_start, + ACTIONS(5185), 1, + sym_variable_name, + STATE(2710), 1, + sym_string, + ACTIONS(5183), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5181), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + [43823] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(262), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + sym_test_operator, + ACTIONS(5185), 1, + sym_variable_name, + STATE(2710), 1, + sym_string, + ACTIONS(5183), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5181), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + [43889] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5071), 1, + aux_sym_concatenation_token1, + ACTIONS(5187), 1, + sym__concat, + STATE(1071), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 41, + ACTIONS(1266), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -114640,10 +113393,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -114658,6 +113409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -114670,80 +113422,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45649] = 10, - ACTIONS(3), 1, + [43951] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(4272), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5103), 1, - sym_variable_name, - STATE(6727), 1, - sym_subscript, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(4787), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4261), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - STATE(4986), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4270), 7, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_LT_LT_DASH, - ACTIONS(4247), 28, - anon_sym_LPAREN_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5189), 1, + sym_word, + ACTIONS(5193), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(5195), 1, anon_sym_DOLLAR, + ACTIONS(5197), 1, sym__special_character, + ACTIONS(5199), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5203), 1, aux_sym_number_token1, + ACTIONS(5205), 1, aux_sym_number_token2, + ACTIONS(5207), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5209), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5211), 1, anon_sym_BQUOTE, + ACTIONS(5213), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(5217), 1, + sym_test_operator, + ACTIONS(5219), 1, + sym__brace_start, + STATE(3035), 1, + aux_sym__literal_repeat1, + ACTIONS(5191), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5201), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5215), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [45719] = 5, + STATE(1072), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2167), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2664), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2169), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [44045] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, - sym__special_character, - STATE(1097), 1, - aux_sym__literal_repeat1, - ACTIONS(1364), 5, + ACTIONS(5071), 1, + aux_sym_concatenation_token1, + ACTIONS(5221), 1, + sym__concat, + STATE(1071), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 41, + ACTIONS(1286), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -114755,10 +113521,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -114773,6 +113537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -114785,76 +113550,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45779] = 9, - ACTIONS(3), 1, + [44107] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(5103), 1, - sym_variable_name, - STATE(6727), 1, - sym_subscript, - ACTIONS(4261), 2, - sym_test_operator, - sym__brace_start, - ACTIONS(4348), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(4787), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(4986), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4247), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5189), 1, + sym_word, + ACTIONS(5193), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(5195), 1, anon_sym_DOLLAR, + ACTIONS(5197), 1, sym__special_character, + ACTIONS(5199), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5203), 1, aux_sym_number_token1, + ACTIONS(5205), 1, aux_sym_number_token2, + ACTIONS(5207), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5209), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5211), 1, anon_sym_BQUOTE, + ACTIONS(5213), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(5217), 1, + sym_test_operator, + ACTIONS(5219), 1, + sym__brace_start, + STATE(3035), 1, + aux_sym__literal_repeat1, + ACTIONS(5191), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5201), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5215), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - ACTIONS(4253), 19, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(1072), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2171), 7, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(2664), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2173), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [45847] = 3, + [44201] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, - sym_file_descriptor, + ACTIONS(5223), 1, + aux_sym_concatenation_token1, + ACTIONS(5226), 1, sym__concat, + STATE(1071), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 42, + ACTIONS(1276), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -114866,9 +113649,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -114882,7 +113664,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -114897,37 +113678,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45903] = 6, + [44263] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5229), 1, + sym_word, + ACTIONS(5235), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5238), 1, + anon_sym_DOLLAR, + ACTIONS(5241), 1, + sym__special_character, + ACTIONS(5244), 1, + anon_sym_DQUOTE, + ACTIONS(5250), 1, + aux_sym_number_token1, + ACTIONS(5253), 1, + aux_sym_number_token2, + ACTIONS(5256), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5259), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5262), 1, + anon_sym_BQUOTE, + ACTIONS(5265), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5271), 1, + sym_test_operator, + ACTIONS(5274), 1, + sym__brace_start, + STATE(3035), 1, + aux_sym__literal_repeat1, + ACTIONS(5232), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5247), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5268), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1072), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2181), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2664), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2183), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [44357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 1, - aux_sym_concatenation_token1, - ACTIONS(5245), 1, - sym__concat, - STATE(1074), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2096), 5, + ACTIONS(1258), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2094), 40, + ACTIONS(1251), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -114953,17 +113803,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45965] = 3, - ACTIONS(3), 1, + [44413] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(5277), 1, + sym_word, + ACTIONS(5281), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5283), 1, + anon_sym_DOLLAR, + ACTIONS(5285), 1, + sym__special_character, + ACTIONS(5287), 1, + anon_sym_DQUOTE, + ACTIONS(5291), 1, + aux_sym_number_token1, + ACTIONS(5293), 1, + aux_sym_number_token2, + ACTIONS(5295), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5297), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5299), 1, + anon_sym_BQUOTE, + ACTIONS(5301), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5305), 1, + sym_test_operator, + ACTIONS(5307), 1, + sym__brace_start, + STATE(5408), 1, + aux_sym__literal_repeat1, + STATE(5582), 1, + sym_concatenation, + ACTIONS(5279), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5289), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5303), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2301), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(5261), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2303), 11, sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [44507] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5071), 1, + aux_sym_concatenation_token1, + ACTIONS(5073), 1, sym__concat, + STATE(1067), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 42, + ACTIONS(1272), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -114975,9 +113902,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -114991,7 +113917,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -115006,49 +113931,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46021] = 22, + [44569] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(5261), 1, + ACTIONS(5281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5263), 1, + ACTIONS(5283), 1, anon_sym_DOLLAR, - ACTIONS(5265), 1, + ACTIONS(5285), 1, sym__special_character, - ACTIONS(5267), 1, + ACTIONS(5287), 1, anon_sym_DQUOTE, - ACTIONS(5271), 1, + ACTIONS(5291), 1, aux_sym_number_token1, - ACTIONS(5273), 1, + ACTIONS(5293), 1, aux_sym_number_token2, - ACTIONS(5275), 1, + ACTIONS(5295), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5277), 1, + ACTIONS(5297), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5279), 1, + ACTIONS(5299), 1, anon_sym_BQUOTE, - ACTIONS(5281), 1, + ACTIONS(5301), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5287), 1, + ACTIONS(5307), 1, sym__brace_start, - ACTIONS(5295), 1, + ACTIONS(5309), 1, sym_word, - ACTIONS(5299), 1, + ACTIONS(5313), 1, sym_test_operator, - STATE(5494), 1, + STATE(5497), 1, aux_sym__literal_repeat1, - STATE(5601), 1, + STATE(5612), 1, sym_concatenation, - ACTIONS(5259), 2, + ACTIONS(5279), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5283), 2, + ACTIONS(5303), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5297), 2, + ACTIONS(5311), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(2498), 7, + ACTIONS(2305), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -115056,7 +113981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(5352), 9, + STATE(5270), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -115066,7 +113991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2500), 11, + ACTIONS(2307), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -115078,33 +114003,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [46115] = 3, + [44663] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, - sym_file_descriptor, + ACTIONS(5169), 1, + aux_sym_concatenation_token1, + ACTIONS(5171), 1, sym__concat, + STATE(1143), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4428), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 42, + ACTIONS(4426), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -115116,7 +114045,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -115131,33 +114059,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46171] = 3, + [44725] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 7, - sym_file_descriptor, + ACTIONS(5169), 1, + aux_sym_concatenation_token1, + ACTIONS(5171), 1, sym__concat, + STATE(1144), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4513), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 41, + ACTIONS(4511), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -115169,7 +114101,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -115184,37 +114115,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46227] = 6, + [44787] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, + ACTIONS(5169), 1, aux_sym_concatenation_token1, - ACTIONS(4701), 1, + ACTIONS(5171), 1, sym__concat, - STATE(1055), 1, + STATE(1143), 1, aux_sym_concatenation_repeat1, - ACTIONS(1263), 5, + ACTIONS(4579), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 40, + ACTIONS(4577), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -115240,37 +114171,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46289] = 6, + [44849] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5080), 1, + ACTIONS(5169), 1, aux_sym_concatenation_token1, - ACTIONS(5082), 1, + ACTIONS(5171), 1, sym__concat, - STATE(1032), 1, + STATE(1144), 1, aux_sym_concatenation_repeat1, - ACTIONS(4469), 5, + ACTIONS(4595), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 40, + ACTIONS(4593), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -115296,37 +114227,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46351] = 6, + [44911] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5080), 1, + ACTIONS(5169), 1, aux_sym_concatenation_token1, - ACTIONS(5082), 1, + ACTIONS(5171), 1, sym__concat, - STATE(1040), 1, + STATE(1143), 1, aux_sym_concatenation_repeat1, - ACTIONS(4372), 5, + ACTIONS(5317), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 40, + ACTIONS(5315), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -115352,37 +114283,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46413] = 6, + [44973] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5080), 1, + ACTIONS(5169), 1, aux_sym_concatenation_token1, - ACTIONS(5082), 1, + ACTIONS(5171), 1, sym__concat, - STATE(1032), 1, + STATE(1144), 1, aux_sym_concatenation_repeat1, - ACTIONS(4566), 5, + ACTIONS(5321), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 40, + ACTIONS(5319), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -115408,22 +114339,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46475] = 6, + [45035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5080), 1, - aux_sym_concatenation_token1, - ACTIONS(5082), 1, - sym__concat, - STATE(1040), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4554), 5, + ACTIONS(1334), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 40, + ACTIONS(1332), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -115435,7 +114362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -115450,6 +114377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -115464,68 +114392,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46537] = 21, + [45091] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4078), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4080), 1, - anon_sym_DOLLAR, - ACTIONS(4084), 1, - anon_sym_DQUOTE, - ACTIONS(4086), 1, - aux_sym_number_token1, - ACTIONS(4088), 1, - aux_sym_number_token2, - ACTIONS(4090), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4092), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4094), 1, - anon_sym_BQUOTE, - ACTIONS(4096), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4102), 1, - sym__brace_start, - ACTIONS(5303), 1, - sym__special_character, - ACTIONS(5305), 1, - sym_test_operator, - STATE(4546), 1, - aux_sym__literal_repeat1, - STATE(4907), 1, - sym_concatenation, - ACTIONS(2500), 2, + ACTIONS(5177), 1, + aux_sym_concatenation_token1, + ACTIONS(5179), 1, + sym__concat, + STATE(1146), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5325), 5, sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4076), 2, + ACTIONS(5323), 40, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4098), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5301), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5293), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2498), 16, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -115535,104 +114431,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [46629] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4078), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(4080), 1, anon_sym_DOLLAR, - ACTIONS(4084), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(4086), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(4088), 1, aux_sym_number_token2, - ACTIONS(4090), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4092), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4094), 1, anon_sym_BQUOTE, - ACTIONS(4096), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4102), 1, - sym__brace_start, - ACTIONS(5303), 1, - sym__special_character, - ACTIONS(5309), 1, - sym_test_operator, - STATE(4521), 1, - aux_sym__literal_repeat1, - STATE(5023), 1, - sym_concatenation, - ACTIONS(2496), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4076), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4098), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5307), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(5398), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2494), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [46721] = 3, + [45153] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 7, - sym_file_descriptor, + ACTIONS(5177), 1, + aux_sym_concatenation_token1, + ACTIONS(5179), 1, sym__concat, + STATE(1147), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5329), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 41, + ACTIONS(5327), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -115641,10 +114487,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -115658,11 +114502,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [46777] = 3, + [45215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 7, + ACTIONS(1354), 7, sym_file_descriptor, sym__concat, sym_test_operator, @@ -115670,7 +114515,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 41, + ACTIONS(1352), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -115712,134 +114557,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46833] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1241), 1, - sym_test_operator, - ACTIONS(5086), 1, - anon_sym_DQUOTE, - ACTIONS(5090), 1, - sym_variable_name, - STATE(2442), 1, - sym_string, - ACTIONS(5088), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5084), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - [46899] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 1, - sym_test_operator, - ACTIONS(5086), 1, - anon_sym_DQUOTE, - ACTIONS(5090), 1, - sym_variable_name, - STATE(2442), 1, - sym_string, - ACTIONS(5088), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5084), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - [46965] = 3, + [45271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 7, + ACTIONS(1342), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 41, + ACTIONS(1340), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -115852,6 +114580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -115881,161 +114610,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47021] = 22, - ACTIONS(71), 1, + [45327] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(5311), 1, - sym_word, - ACTIONS(5315), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5317), 1, - anon_sym_DOLLAR, - ACTIONS(5319), 1, - sym__special_character, - ACTIONS(5321), 1, - anon_sym_DQUOTE, - ACTIONS(5325), 1, - aux_sym_number_token1, - ACTIONS(5327), 1, - aux_sym_number_token2, - ACTIONS(5329), 1, - anon_sym_DOLLAR_LBRACE, ACTIONS(5331), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5333), 1, - anon_sym_BQUOTE, - ACTIONS(5335), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5339), 1, + sym__special_character, + STATE(1161), 1, + aux_sym__literal_repeat1, + ACTIONS(4428), 5, + sym_file_descriptor, sym_test_operator, - ACTIONS(5341), 1, + sym__bare_dollar, sym__brace_start, - STATE(5424), 1, - aux_sym__literal_repeat1, - STATE(5575), 1, - sym_concatenation, - ACTIONS(5313), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(4426), 41, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5323), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5337), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2494), 7, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(5379), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2496), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [47115] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5315), 1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(5317), 1, anon_sym_DOLLAR, - ACTIONS(5319), 1, - sym__special_character, - ACTIONS(5321), 1, anon_sym_DQUOTE, - ACTIONS(5325), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(5327), 1, aux_sym_number_token2, - ACTIONS(5329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5333), 1, anon_sym_BQUOTE, - ACTIONS(5335), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5341), 1, - sym__brace_start, - ACTIONS(5343), 1, - sym_word, - ACTIONS(5347), 1, - sym_test_operator, - STATE(5496), 1, - aux_sym__literal_repeat1, - STATE(5563), 1, - sym_concatenation, - ACTIONS(5313), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5337), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5345), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2498), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(5331), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2500), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [47209] = 3, + sym_word, + [45387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 6, + ACTIONS(1294), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 42, + ACTIONS(1292), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -116047,9 +114687,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -116078,17 +114718,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47265] = 3, + [45443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 6, + ACTIONS(1298), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 42, + ACTIONS(1296), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -116100,9 +114740,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -116131,37 +114771,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47321] = 6, + [45499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 1, - aux_sym_concatenation_token1, - ACTIONS(5245), 1, - sym__concat, - STATE(1073), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4469), 5, + ACTIONS(1326), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 40, + ACTIONS(1324), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -116173,6 +114809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -116187,22 +114824,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47383] = 6, + [45555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5080), 1, - aux_sym_concatenation_token1, - ACTIONS(5082), 1, - sym__concat, - STATE(1032), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4482), 5, + ACTIONS(1330), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4480), 40, + ACTIONS(1328), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -116214,6 +114846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -116229,6 +114862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -116243,23 +114877,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47445] = 6, + [45611] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5144), 1, - aux_sym_concatenation_token1, - ACTIONS(5349), 1, - sym__concat, - STATE(1140), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 6, + ACTIONS(5331), 1, + sym__special_character, + STATE(1161), 1, + aux_sym__literal_repeat1, + ACTIONS(4579), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 39, + ACTIONS(4577), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -116271,7 +114902,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -116286,7 +114920,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -116299,22 +114932,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47507] = 6, + [45671] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5080), 1, + ACTIONS(5059), 1, aux_sym_concatenation_token1, - ACTIONS(5082), 1, + ACTIONS(5061), 1, sym__concat, - STATE(1040), 1, + STATE(1045), 1, aux_sym_concatenation_repeat1, - ACTIONS(4465), 5, + ACTIONS(4428), 6, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4463), 40, + ACTIONS(4426), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -116326,7 +114960,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -116355,10 +114988,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47569] = 3, + [45733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 7, + ACTIONS(1358), 7, sym_file_descriptor, sym__concat, sym_test_operator, @@ -116366,7 +114999,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 41, + ACTIONS(1356), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -116408,7 +115041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47625] = 3, + [45789] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1346), 7, @@ -116461,28 +115094,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47681] = 6, + [45845] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 1, - aux_sym_concatenation_token1, - ACTIONS(5245), 1, - sym__concat, - STATE(1074), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4372), 5, + ACTIONS(5331), 1, + sym__special_character, + STATE(1161), 1, + aux_sym__literal_repeat1, + ACTIONS(4506), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 40, + ACTIONS(4504), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -116492,6 +115124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -116504,7 +115137,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -116517,7 +115149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47743] = 3, + [45905] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1358), 7, @@ -116570,17 +115202,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47799] = 3, + [45961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 6, + ACTIONS(1310), 7, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 42, + ACTIONS(1308), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -116592,9 +115225,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -116623,17 +115255,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47855] = 3, + [46017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 6, + ACTIONS(1306), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 42, + ACTIONS(1304), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -116645,9 +115277,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -116676,23 +115308,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47911] = 6, + [46073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5144), 1, - aux_sym_concatenation_token1, - ACTIONS(5351), 1, - sym__concat, - STATE(1140), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 6, + ACTIONS(1278), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 39, + ACTIONS(1276), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -116704,6 +115330,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -116718,6 +115346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -116732,46 +115361,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47973] = 13, + [46129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2719), 1, - anon_sym_BQUOTE, - ACTIONS(5094), 1, - sym_variable_name, - ACTIONS(5357), 1, - aux_sym_heredoc_redirect_token1, - STATE(6758), 1, - sym_subscript, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5355), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(4568), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4261), 3, + ACTIONS(1318), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5353), 3, + aux_sym_heredoc_redirect_token1, + ACTIONS(1316), 42, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4697), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4247), 27, - anon_sym_LPAREN_LPAREN, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -116779,9 +115395,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -116791,21 +115409,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48049] = 3, + [46185] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, - sym_file_descriptor, + ACTIONS(5071), 1, + aux_sym_concatenation_token1, + ACTIONS(5073), 1, sym__concat, + STATE(1069), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4519), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 42, + ACTIONS(4517), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -116817,9 +115441,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -116833,7 +115456,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -116848,100 +115470,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48105] = 8, + [46247] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1241), 1, + ACTIONS(5059), 1, + aux_sym_concatenation_token1, + ACTIONS(5061), 1, + sym__concat, + STATE(1045), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4502), 6, + sym_file_descriptor, sym_test_operator, - ACTIONS(5086), 1, - anon_sym_DQUOTE, - ACTIONS(5090), 1, - sym_variable_name, - STATE(2442), 1, - sym_string, - ACTIONS(5088), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5084), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 33, - anon_sym_RPAREN_RPAREN, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__bare_dollar, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4500), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, - [48171] = 8, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [46309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5361), 1, - anon_sym_DQUOTE, - ACTIONS(5365), 1, - sym_variable_name, - STATE(2850), 1, - sym_string, - ACTIONS(5363), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + ACTIONS(1334), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5359), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + aux_sym_heredoc_redirect_token1, + ACTIONS(1332), 42, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 31, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [46365] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1354), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1352), 42, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -116950,9 +115614,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -116964,17 +115632,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48237] = 3, + [46421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(1358), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 42, + ACTIONS(1356), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -116986,9 +115654,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -117017,17 +115685,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48293] = 3, + [46477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 6, + ACTIONS(1346), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 42, + ACTIONS(1344), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -117039,9 +115707,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -117070,17 +115738,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48349] = 3, + [46533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 6, + ACTIONS(1358), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 42, + ACTIONS(1356), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -117092,9 +115760,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -117123,17 +115791,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48405] = 3, + [46589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 6, + ACTIONS(1310), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 42, + ACTIONS(1308), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -117145,9 +115813,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -117176,23 +115844,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48461] = 6, + [46645] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5367), 1, + ACTIONS(5331), 1, + sym__special_character, + STATE(1161), 1, + aux_sym__literal_repeat1, + ACTIONS(4502), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4500), 41, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [46705] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5059), 1, aux_sym_concatenation_token1, - ACTIONS(5370), 1, + ACTIONS(5061), 1, sym__concat, - STATE(1140), 1, + STATE(1046), 1, aux_sym_concatenation_repeat1, - ACTIONS(1253), 6, + ACTIONS(4519), 6, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 39, + ACTIONS(4517), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -117232,42 +115955,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48523] = 8, + [46767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5361), 1, - anon_sym_DQUOTE, - ACTIONS(5365), 1, - sym_variable_name, - STATE(2850), 1, - sym_string, - ACTIONS(5363), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + ACTIONS(1302), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5359), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 31, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 42, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -117276,9 +115990,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -117290,17 +116008,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48589] = 3, + [46823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1338), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 42, + ACTIONS(1336), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -117312,9 +116030,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -117343,17 +116061,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48645] = 3, + [46879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 6, + ACTIONS(1322), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 42, + ACTIONS(1320), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -117396,23 +116114,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48701] = 6, + [46935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5144), 1, - aux_sym_concatenation_token1, - ACTIONS(5146), 1, - sym__concat, - STATE(1123), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 6, + ACTIONS(1330), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 39, + ACTIONS(1328), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -117425,6 +116137,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -117438,6 +116152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -117452,17 +116167,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48763] = 3, + [46991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(1314), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 42, + ACTIONS(1312), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -117474,9 +116189,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -117505,20 +116220,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48819] = 5, + [47047] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5078), 1, + ACTIONS(5098), 1, + sym_variable_name, + ACTIONS(5335), 1, + aux_sym_heredoc_redirect_token1, + STATE(6757), 1, + sym_subscript, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4705), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5094), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4816), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4318), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(5333), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5016), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4304), 28, + anon_sym_LPAREN_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, - STATE(1095), 1, - aux_sym__literal_repeat1, - ACTIONS(4566), 5, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [47121] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1235), 1, + sym_test_operator, + ACTIONS(4916), 1, + anon_sym_DQUOTE, + ACTIONS(4920), 1, + sym_variable_name, + STATE(2612), 1, + sym_string, + ACTIONS(4918), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4914), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + [47187] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1241), 1, + sym_test_operator, + ACTIONS(4916), 1, + anon_sym_DQUOTE, + ACTIONS(4920), 1, + sym_variable_name, + STATE(2612), 1, + sym_string, + ACTIONS(4918), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(4914), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + [47253] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1342), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 41, + ACTIONS(1340), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -117530,10 +116421,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -117547,7 +116436,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -117560,37 +116451,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48879] = 6, + [47309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 1, - aux_sym_concatenation_token1, - ACTIONS(5245), 1, - sym__concat, - STATE(1073), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5069), 5, + ACTIONS(1294), 7, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5067), 40, + ACTIONS(1292), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -117602,6 +116489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -117616,36 +116504,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48941] = 6, + [47365] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 1, - aux_sym_concatenation_token1, - ACTIONS(5245), 1, - sym__concat, - STATE(1074), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5375), 5, - sym_file_descriptor, + ACTIONS(5339), 1, + anon_sym_DQUOTE, + ACTIONS(5343), 1, sym_variable_name, + STATE(2538), 1, + sym_string, + ACTIONS(5341), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5373), 40, + ACTIONS(5337), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 31, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -117655,12 +116548,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -117672,37 +116562,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49003] = 5, + [47431] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5078), 1, - sym__special_character, - STATE(1095), 1, - aux_sym__literal_repeat1, - ACTIONS(4469), 5, + ACTIONS(5339), 1, + anon_sym_DQUOTE, + ACTIONS(5343), 1, + sym_variable_name, + STATE(2538), 1, + sym_string, + ACTIONS(5341), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 41, + ACTIONS(5337), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 31, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -117711,11 +116606,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, + sym__special_character, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -117727,46 +116620,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49063] = 13, + [47497] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - anon_sym_BQUOTE, - ACTIONS(5094), 1, + ACTIONS(5347), 1, + anon_sym_DQUOTE, + ACTIONS(5351), 1, sym_variable_name, - ACTIONS(5379), 1, - aux_sym_heredoc_redirect_token1, - STATE(6758), 1, - sym_subscript, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5355), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(4568), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4261), 3, + STATE(2691), 1, + sym_string, + ACTIONS(5349), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(5377), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4697), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4247), 27, + ACTIONS(5345), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 31, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -117774,60 +116663,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49139] = 12, + [47563] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, + ACTIONS(5347), 1, + anon_sym_DQUOTE, + ACTIONS(5351), 1, sym_variable_name, - ACTIONS(5383), 1, - aux_sym_heredoc_redirect_token1, - STATE(6727), 1, - sym_subscript, - ACTIONS(4253), 2, + STATE(2691), 1, + sym_string, + ACTIONS(5349), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(5345), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4692), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - ACTIONS(5099), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(4787), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4261), 3, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [47629] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5353), 1, + sym__special_character, + STATE(1136), 1, + aux_sym__literal_repeat1, + ACTIONS(278), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5381), 3, + aux_sym_heredoc_redirect_token1, + ACTIONS(241), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4986), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4247), 28, - anon_sym_LPAREN_LPAREN, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -117835,11 +116774,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -117852,17 +116791,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49213] = 3, + [47689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 6, + ACTIONS(1302), 7, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 42, + ACTIONS(1300), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -117875,7 +116815,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -117905,44 +116844,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49269] = 12, + [47745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - sym_variable_name, - ACTIONS(5387), 1, - aux_sym_heredoc_redirect_token1, - STATE(6727), 1, - sym_subscript, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5099), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(4787), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4261), 3, + ACTIONS(1298), 7, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5385), 3, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1296), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4986), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4247), 28, - anon_sym_LPAREN_LPAREN, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -117950,9 +116878,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -117967,21 +116897,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49343] = 8, + [47801] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1235), 1, sym_test_operator, - ACTIONS(5086), 1, + ACTIONS(5065), 1, anon_sym_DQUOTE, - ACTIONS(5090), 1, + ACTIONS(5069), 1, sym_variable_name, - STATE(2442), 1, + STATE(2433), 1, sym_string, - ACTIONS(5088), 2, + ACTIONS(5067), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5084), 9, + ACTIONS(5063), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -117992,7 +116922,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0, anon_sym__, ACTIONS(1227), 33, - anon_sym_RPAREN_RPAREN, anon_sym_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -118025,17 +116954,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_TILDE, - [49409] = 3, + anon_sym_COLON, + [47867] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 6, + ACTIONS(1241), 1, + sym_test_operator, + ACTIONS(5065), 1, + anon_sym_DQUOTE, + ACTIONS(5069), 1, + sym_variable_name, + STATE(2433), 1, + sym_string, + ACTIONS(5067), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5063), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_COLON, + [47933] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5081), 1, + sym_variable_name, + STATE(6774), 1, + sym_subscript, + ACTIONS(4318), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(4323), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4593), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(4670), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4304), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + ACTIONS(4310), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [48001] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 7, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 42, + ACTIONS(1324), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -118047,9 +117095,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -118078,37 +117125,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49465] = 6, + [48057] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5071), 1, aux_sym_concatenation_token1, ACTIONS(5073), 1, sym__concat, - STATE(1087), 1, + STATE(1067), 1, aux_sym_concatenation_repeat1, - ACTIONS(5375), 5, + ACTIONS(4506), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5373), 40, + ACTIONS(4504), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -118117,6 +117164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -118132,19 +117180,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [49527] = 3, + [48119] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 6, - sym_file_descriptor, + ACTIONS(5071), 1, + aux_sym_concatenation_token1, + ACTIONS(5073), 1, sym__concat, + STATE(1069), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4523), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 42, + ACTIONS(4521), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -118156,9 +117208,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -118172,7 +117223,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -118187,37 +117237,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49583] = 6, + [48181] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 1, - aux_sym_concatenation_token1, - ACTIONS(5245), 1, - sym__concat, - STATE(1074), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5391), 5, + ACTIONS(5355), 1, + sym__special_character, + STATE(1136), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5389), 40, + ACTIONS(1360), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -118230,7 +117280,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -118243,17 +117292,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49645] = 3, + [48241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 6, + ACTIONS(1274), 5, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 42, + ACTIONS(1272), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -118265,6 +117313,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -118281,7 +117331,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -118296,37 +117345,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49701] = 6, + [48297] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 1, + ACTIONS(4910), 1, aux_sym_concatenation_token1, - ACTIONS(5245), 1, + ACTIONS(4912), 1, sym__concat, - STATE(1073), 1, + STATE(1048), 1, aux_sym_concatenation_repeat1, - ACTIONS(4566), 5, + ACTIONS(278), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 40, + ACTIONS(241), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -118352,17 +117401,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49763] = 3, + [48359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 6, + ACTIONS(1342), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 42, + ACTIONS(1340), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -118405,37 +117454,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49819] = 6, + [48415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 1, - aux_sym_concatenation_token1, - ACTIONS(5245), 1, - sym__concat, - STATE(1074), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4554), 5, + ACTIONS(1294), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 40, + ACTIONS(1292), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -118447,6 +117492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -118461,37 +117507,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49881] = 6, + [48471] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 1, + ACTIONS(5059), 1, aux_sym_concatenation_token1, - ACTIONS(5245), 1, + ACTIONS(5061), 1, sym__concat, - STATE(1073), 1, + STATE(1045), 1, aux_sym_concatenation_repeat1, - ACTIONS(5395), 5, + ACTIONS(4506), 6, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5393), 40, + ACTIONS(4504), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -118517,74 +117563,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49943] = 8, + [48533] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1241), 1, + ACTIONS(4910), 1, + aux_sym_concatenation_token1, + ACTIONS(4912), 1, + sym__concat, + ACTIONS(5358), 1, + anon_sym_LPAREN, + STATE(1049), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1258), 5, + sym_file_descriptor, sym_test_operator, - ACTIONS(5086), 1, - anon_sym_DQUOTE, - ACTIONS(5090), 1, - sym_variable_name, - STATE(2442), 1, - sym_string, - ACTIONS(5088), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5084), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 32, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1251), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, - [50008] = 3, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [48597] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 6, - sym_file_descriptor, + ACTIONS(5169), 1, + aux_sym_concatenation_token1, + ACTIONS(5361), 1, sym__concat, + STATE(1145), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 41, + ACTIONS(1266), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -118611,7 +117662,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -118626,22 +117676,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50063] = 6, + [48659] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5397), 1, + ACTIONS(5169), 1, aux_sym_concatenation_token1, - ACTIONS(5399), 1, + ACTIONS(5363), 1, sym__concat, - STATE(1257), 1, + STATE(1145), 1, aux_sym_concatenation_repeat1, - ACTIONS(5375), 5, + ACTIONS(1288), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5373), 39, + ACTIONS(1286), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -118652,6 +117702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -118664,6 +117715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -118679,24 +117731,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [50124] = 6, + [48721] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5397), 1, + ACTIONS(5365), 1, aux_sym_concatenation_token1, - ACTIONS(5399), 1, + ACTIONS(5368), 1, sym__concat, - STATE(1251), 1, + STATE(1145), 1, aux_sym_concatenation_repeat1, - ACTIONS(5069), 5, + ACTIONS(1278), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5067), 39, + ACTIONS(1276), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -118707,6 +117758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -118719,6 +117771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -118734,25 +117787,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [50185] = 3, + [48783] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4465), 5, + ACTIONS(5177), 1, + aux_sym_concatenation_token1, + ACTIONS(5371), 1, + sym__concat, + STATE(1149), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4463), 42, + ACTIONS(1266), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -118762,7 +117819,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -118771,7 +117827,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -118787,34 +117842,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [50240] = 3, + [48845] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 5, + ACTIONS(5177), 1, + aux_sym_concatenation_token1, + ACTIONS(5373), 1, + sym__concat, + STATE(1149), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1271), 42, + ACTIONS(1286), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -118823,7 +117883,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -118839,37 +117898,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [50295] = 6, + [48907] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5397), 1, - aux_sym_concatenation_token1, - ACTIONS(5399), 1, - sym__concat, - STATE(1251), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5180), 5, - sym_file_descriptor, + ACTIONS(4327), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5098), 1, sym_variable_name, + STATE(6757), 1, + sym_subscript, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(4816), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4318), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5178), 39, - anon_sym_LPAREN_LPAREN, + STATE(5016), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4325), 7, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_LT_LT_DASH, + ACTIONS(4304), 28, + anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -118877,7 +117943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -118893,24 +117959,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [50356] = 6, + [48977] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5397), 1, + ACTIONS(5375), 1, aux_sym_concatenation_token1, - ACTIONS(5399), 1, + ACTIONS(5378), 1, sym__concat, - STATE(1257), 1, + STATE(1149), 1, aux_sym_concatenation_repeat1, - ACTIONS(5176), 5, + ACTIONS(1278), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5174), 39, + ACTIONS(1276), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -118921,6 +117986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -118950,151 +118016,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [50417] = 22, - ACTIONS(71), 1, + [49039] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(5401), 1, - sym_word, - ACTIONS(5405), 1, + ACTIONS(5098), 1, + sym_variable_name, + STATE(6757), 1, + sym_subscript, + ACTIONS(4318), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(4323), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4816), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(5016), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4304), 18, + anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(5407), 1, anon_sym_DOLLAR, - ACTIONS(5409), 1, sym__special_character, - ACTIONS(5411), 1, anon_sym_DQUOTE, - ACTIONS(5415), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(5417), 1, aux_sym_number_token2, - ACTIONS(5419), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5421), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5423), 1, anon_sym_BQUOTE, - ACTIONS(5425), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5429), 1, - sym_test_operator, - ACTIONS(5431), 1, - sym__brace_start, - STATE(5532), 1, - aux_sym__literal_repeat1, - STATE(5692), 1, - sym_concatenation, - ACTIONS(5403), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5413), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5427), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2498), 7, + sym_word, + ACTIONS(4310), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(5418), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2500), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [50510] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5437), 1, - anon_sym_DQUOTE, - ACTIONS(5439), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5441), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5443), 1, - anon_sym_BQUOTE, - ACTIONS(5445), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2559), 3, - sym_string, - sym_expansion, - sym_command_substitution, - ACTIONS(5435), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5433), 25, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [50577] = 6, + [49107] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5080), 1, + ACTIONS(4910), 1, aux_sym_concatenation_token1, - ACTIONS(5082), 1, + ACTIONS(4912), 1, sym__concat, - STATE(1177), 1, + STATE(1048), 1, aux_sym_concatenation_repeat1, - ACTIONS(1263), 5, + ACTIONS(1274), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 39, + ACTIONS(1272), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -119106,6 +118102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -119134,36 +118131,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50638] = 5, + [49169] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5447), 1, - sym__special_character, - STATE(1295), 1, - aux_sym__literal_repeat1, - ACTIONS(4548), 5, + ACTIONS(5169), 1, + aux_sym_concatenation_token1, + ACTIONS(5171), 1, + sym__concat, + STATE(1143), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4546), 40, + ACTIONS(1272), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -119176,6 +118174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -119188,15 +118187,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50697] = 3, + [49231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 6, + ACTIONS(1350), 7, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, ACTIONS(1348), 41, anon_sym_LPAREN_LPAREN, @@ -119210,7 +118210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -119240,36 +118240,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50752] = 6, + [49287] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5080), 1, + ACTIONS(5177), 1, aux_sym_concatenation_token1, - ACTIONS(5449), 1, + ACTIONS(5179), 1, sym__concat, - STATE(1065), 1, + STATE(1146), 1, aux_sym_concatenation_repeat1, - ACTIONS(1267), 5, + ACTIONS(1274), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 39, + ACTIONS(1272), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -119278,7 +118279,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -119294,92 +118294,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [50813] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5405), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5407), 1, - anon_sym_DOLLAR, - ACTIONS(5409), 1, - sym__special_character, - ACTIONS(5411), 1, - anon_sym_DQUOTE, - ACTIONS(5415), 1, - aux_sym_number_token1, - ACTIONS(5417), 1, - aux_sym_number_token2, - ACTIONS(5419), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5421), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5423), 1, - anon_sym_BQUOTE, - ACTIONS(5425), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5431), 1, - sym__brace_start, - ACTIONS(5451), 1, - sym_word, - ACTIONS(5455), 1, - sym_test_operator, - STATE(5519), 1, - aux_sym__literal_repeat1, - STATE(5619), 1, - sym_concatenation, - ACTIONS(5403), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5427), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5453), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2494), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(5427), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2496), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [50906] = 5, + [49349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5457), 1, - sym__special_character, - STATE(1179), 1, - aux_sym__literal_repeat1, - ACTIONS(1364), 5, + ACTIONS(1330), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 40, + ACTIONS(1328), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -119392,7 +118320,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -119407,7 +118334,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -119420,20 +118349,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50965] = 5, + [49405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5447), 1, - sym__special_character, - STATE(1295), 1, - aux_sym__literal_repeat1, - ACTIONS(4482), 5, + ACTIONS(1314), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4480), 40, + ACTIONS(1312), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -119445,9 +118372,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -119461,7 +118387,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -119474,16 +118402,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [51024] = 3, + [49461] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5462), 5, + ACTIONS(5059), 1, + aux_sym_concatenation_token1, + ACTIONS(5061), 1, + sym__concat, + STATE(1046), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4523), 6, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5460), 42, + ACTIONS(4521), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -119495,10 +118430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -119526,16 +118458,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [51079] = 3, + [49523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4532), 5, + ACTIONS(1338), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4530), 42, + ACTIONS(1336), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -119547,10 +118481,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -119564,6 +118496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -119578,21 +118511,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [51134] = 3, + [49579] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 7, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, + ACTIONS(4072), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4074), 1, + anon_sym_DOLLAR, + ACTIONS(4078), 1, + anon_sym_DQUOTE, + ACTIONS(4080), 1, + aux_sym_number_token1, + ACTIONS(4082), 1, + aux_sym_number_token2, + ACTIONS(4084), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4086), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4088), 1, + anon_sym_BQUOTE, + ACTIONS(4090), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4096), 1, + sym__brace_start, + ACTIONS(5383), 1, + sym__special_character, + ACTIONS(5385), 1, + sym_test_operator, + STATE(4503), 1, + aux_sym__literal_repeat1, + STATE(4987), 1, + sym_concatenation, + ACTIONS(2303), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4070), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4092), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5381), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5392), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2301), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [49671] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4072), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4074), 1, + anon_sym_DOLLAR, + ACTIONS(4078), 1, + anon_sym_DQUOTE, + ACTIONS(4080), 1, + aux_sym_number_token1, + ACTIONS(4082), 1, + aux_sym_number_token2, + ACTIONS(4084), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4086), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4088), 1, + anon_sym_BQUOTE, + ACTIONS(4090), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4096), 1, + sym__brace_start, + ACTIONS(5383), 1, + sym__special_character, + ACTIONS(5389), 1, + sym_test_operator, + STATE(4525), 1, + aux_sym__literal_repeat1, + STATE(4872), 1, + sym_concatenation, + ACTIONS(2307), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4070), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4092), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5387), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5396), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2305), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [49763] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5391), 1, + sym__special_character, + STATE(1161), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1360), 41, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, @@ -119601,7 +118678,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -119615,9 +118695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -119630,36 +118708,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [51189] = 6, + [49823] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5464), 1, + ACTIONS(4910), 1, aux_sym_concatenation_token1, - ACTIONS(5466), 1, + ACTIONS(4912), 1, sym__concat, - STATE(1249), 1, + ACTIONS(5394), 1, + anon_sym_LPAREN, + STATE(1049), 1, aux_sym_concatenation_repeat1, - ACTIONS(2074), 5, + ACTIONS(1258), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2072), 39, + ACTIONS(1251), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -119685,18 +118765,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [51250] = 3, + [49887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 7, + ACTIONS(1350), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 40, + ACTIONS(1348), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -119708,6 +118787,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -119737,32 +118818,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [51305] = 3, + [49943] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 7, - sym_file_descriptor, + ACTIONS(5397), 1, + aux_sym_concatenation_token1, + ACTIONS(5399), 1, sym__concat, + STATE(1287), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 4, + sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 40, + ACTIONS(1286), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -119771,10 +118856,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -119788,33 +118871,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [51360] = 3, + [50004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 7, + ACTIONS(1334), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 40, + ACTIONS(1332), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -119823,7 +118907,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -119840,33 +118923,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [51415] = 3, + [50059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 6, + ACTIONS(1354), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 41, + ACTIONS(1352), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -119875,7 +118959,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -119892,33 +118975,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [51470] = 3, + [50114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 6, + ACTIONS(1358), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 41, + ACTIONS(1356), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -119927,7 +119011,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -119944,22 +119027,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [51525] = 6, + [50169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, - aux_sym_concatenation_token1, - ACTIONS(5474), 1, - sym__concat, - STATE(1214), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5470), 4, + ACTIONS(1342), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5468), 40, + ACTIONS(1340), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -119983,8 +119063,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -119998,23 +119080,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [51586] = 6, + [50224] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, - aux_sym_concatenation_token1, - ACTIONS(5474), 1, - sym__concat, - STATE(1211), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5478), 4, + ACTIONS(1346), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5476), 40, + ACTIONS(1344), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -120040,6 +119117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -120055,36 +119133,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [51647] = 6, + [50279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5464), 1, - aux_sym_concatenation_token1, - ACTIONS(5466), 1, - sym__concat, - STATE(1249), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5375), 5, + ACTIONS(1334), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5373), 39, + ACTIONS(1332), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -120096,6 +119170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -120110,36 +119185,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [51708] = 6, + [50334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5464), 1, - aux_sym_concatenation_token1, - ACTIONS(5466), 1, - sym__concat, - STATE(1245), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5069), 5, + ACTIONS(4523), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5067), 39, + ACTIONS(4521), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -120165,18 +119237,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [51769] = 3, + [50389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 7, + ACTIONS(1338), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 40, + ACTIONS(1336), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -120188,6 +119259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -120217,32 +119289,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [51824] = 3, + [50444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 7, + ACTIONS(1338), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 40, + ACTIONS(1336), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -120251,7 +119323,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -120268,18 +119339,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [51879] = 3, + [50499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(5403), 5, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 41, + ACTIONS(5401), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -120291,8 +119362,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -120306,7 +119379,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -120321,89 +119393,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [51934] = 8, + [50554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1235), 1, - sym_test_operator, - ACTIONS(5086), 1, - anon_sym_DQUOTE, - ACTIONS(5090), 1, + ACTIONS(1358), 6, + sym_file_descriptor, + sym__concat, sym_variable_name, - STATE(2442), 1, - sym_string, - ACTIONS(5088), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5084), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 32, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1356), 41, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - [51999] = 3, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [50609] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 6, - sym_file_descriptor, + ACTIONS(5071), 1, + aux_sym_concatenation_token1, + ACTIONS(5405), 1, sym__concat, - sym_variable_name, + STATE(1071), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 41, + ACTIONS(1266), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -120415,7 +119486,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -120430,17 +119500,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52054] = 3, + [50670] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 6, - sym_file_descriptor, + ACTIONS(5407), 1, + aux_sym_concatenation_token1, + ACTIONS(5409), 1, sym__concat, - sym_variable_name, + STATE(1278), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5317), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 41, + ACTIONS(5315), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -120467,7 +119541,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -120482,32 +119555,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52109] = 3, + [50731] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 6, - sym_file_descriptor, + ACTIONS(5407), 1, + aux_sym_concatenation_token1, + ACTIONS(5409), 1, sym__concat, + STATE(1189), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5321), 4, + sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 41, + ACTIONS(5319), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -120519,7 +119596,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -120534,20 +119610,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52164] = 5, + [50792] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5447), 1, + ACTIONS(5411), 1, sym__special_character, - STATE(1295), 1, + STATE(1184), 1, aux_sym__literal_repeat1, - ACTIONS(4566), 5, + ACTIONS(278), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 40, + ACTIONS(241), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -120559,9 +119635,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -120588,20 +119664,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52223] = 5, + [50851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5447), 1, - sym__special_character, - STATE(1295), 1, - aux_sym__literal_repeat1, - ACTIONS(4469), 5, + ACTIONS(1342), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 40, + ACTIONS(1340), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -120613,9 +119686,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -120629,7 +119701,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -120642,22 +119716,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52282] = 6, + [50906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5080), 1, - aux_sym_concatenation_token1, - ACTIONS(5082), 1, - sym__concat, - STATE(1177), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4548), 5, + ACTIONS(1294), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4546), 39, + ACTIONS(1292), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -120669,6 +119738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -120683,6 +119753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -120697,14 +119768,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52343] = 3, + [50961] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1350), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, ACTIONS(1348), 41, @@ -120714,15 +119785,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -120749,17 +119820,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52398] = 3, + [51016] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, + ACTIONS(5071), 1, + aux_sym_concatenation_token1, + ACTIONS(5413), 1, sym__concat, + STATE(1071), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 41, + ACTIONS(1286), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -120771,7 +119847,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -120786,7 +119861,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -120801,32 +119875,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52453] = 3, + [51077] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 6, + ACTIONS(5415), 1, + sym__special_character, + STATE(1184), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 41, + ACTIONS(1360), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -120835,11 +119913,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -120851,34 +119928,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [52508] = 3, + [51136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 6, + ACTIONS(1354), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 41, + ACTIONS(1352), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -120887,6 +119963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -120903,34 +119980,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [52563] = 3, + [51191] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, - sym_file_descriptor, + ACTIONS(5071), 1, + aux_sym_concatenation_token1, + ACTIONS(5073), 1, sym__concat, - sym_variable_name, + STATE(1176), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 41, + ACTIONS(1272), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -120942,7 +120022,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -120957,36 +120036,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52618] = 5, + [51252] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5480), 1, - sym__special_character, - STATE(1209), 1, - aux_sym__literal_repeat1, - ACTIONS(1364), 6, + ACTIONS(5418), 1, + aux_sym_concatenation_token1, + ACTIONS(5420), 1, + sym__concat, + STATE(1254), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5167), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 39, + ACTIONS(5165), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -120999,6 +120078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -121011,17 +120091,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52677] = 3, + [51313] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, + ACTIONS(5418), 1, + aux_sym_concatenation_token1, + ACTIONS(5420), 1, sym__concat, + STATE(1248), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5175), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 41, + ACTIONS(5173), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -121032,7 +120117,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -121048,7 +120132,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -121063,21 +120146,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52732] = 6, + [51374] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(5407), 1, aux_sym_concatenation_token1, - ACTIONS(5483), 1, + ACTIONS(5422), 1, sym__concat, - STATE(1217), 1, + STATE(1301), 1, aux_sym_concatenation_repeat1, - ACTIONS(1267), 4, + ACTIONS(1288), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 40, + ACTIONS(1286), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -121101,6 +120184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -121116,38 +120200,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [52793] = 5, + [51435] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5485), 1, - sym__special_character, - STATE(1209), 1, - aux_sym__literal_repeat1, - ACTIONS(278), 6, + ACTIONS(5418), 1, + aux_sym_concatenation_token1, + ACTIONS(5420), 1, + sym__concat, + STATE(1254), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5317), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(241), 39, + ACTIONS(5315), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -121160,6 +120243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -121172,17 +120256,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52852] = 3, + [51496] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 6, - sym_file_descriptor, + ACTIONS(5418), 1, + aux_sym_concatenation_token1, + ACTIONS(5420), 1, sym__concat, + STATE(1248), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5321), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 41, + ACTIONS(5319), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -121193,7 +120282,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -121206,9 +120294,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -121222,23 +120310,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [52907] = 6, + [51557] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(5418), 1, aux_sym_concatenation_token1, - ACTIONS(5487), 1, + ACTIONS(5420), 1, sym__concat, - STATE(1217), 1, + STATE(1254), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 4, + ACTIONS(4428), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 40, + ACTIONS(4426), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -121249,7 +120337,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -121262,6 +120349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -121277,38 +120365,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [52968] = 6, + [51618] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5080), 1, + ACTIONS(5418), 1, aux_sym_concatenation_token1, - ACTIONS(5489), 1, + ACTIONS(5420), 1, sym__concat, - STATE(1065), 1, + STATE(1248), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, + ACTIONS(4513), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 39, + ACTIONS(4511), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -121334,17 +120421,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53029] = 3, + [51679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(1358), 7, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 41, + ACTIONS(1356), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -121356,7 +120444,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -121386,36 +120473,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53084] = 6, + [51734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5491), 1, - aux_sym_concatenation_token1, - ACTIONS(5494), 1, - sym__concat, - STATE(1217), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1253), 4, + ACTIONS(1346), 7, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 40, + ACTIONS(1344), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -121424,8 +120507,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -121439,19 +120524,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [53145] = 3, + [51789] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 6, - sym_file_descriptor, + ACTIONS(5418), 1, + aux_sym_concatenation_token1, + ACTIONS(5420), 1, sym__concat, + STATE(1254), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4579), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 41, + ACTIONS(4577), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -121462,7 +120551,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -121478,7 +120566,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -121493,36 +120580,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53200] = 6, + [51850] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5080), 1, + ACTIONS(5418), 1, aux_sym_concatenation_token1, - ACTIONS(5082), 1, + ACTIONS(5420), 1, sym__concat, - STATE(1215), 1, + STATE(1248), 1, aux_sym_concatenation_repeat1, - ACTIONS(4532), 5, + ACTIONS(4595), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4530), 39, + ACTIONS(4593), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -121548,32 +120635,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53261] = 3, + [51911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(1358), 7, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 41, + ACTIONS(1356), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -121582,6 +120669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -121598,34 +120686,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [53316] = 3, + [51966] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(1358), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 41, + ACTIONS(1356), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -121652,32 +120739,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53371] = 3, + [52021] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1346), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 41, + ACTIONS(1344), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -121686,6 +120773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -121702,20 +120790,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [53426] = 3, + [52076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 7, + ACTIONS(1358), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 40, + ACTIONS(1356), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -121727,6 +120813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -121756,32 +120843,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53481] = 3, + [52131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 6, + ACTIONS(1298), 7, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 41, + ACTIONS(1296), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -121790,6 +120877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -121806,19 +120894,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [53536] = 3, + [52186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(1330), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 41, + ACTIONS(1328), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -121842,6 +120929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -121858,23 +120946,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [53591] = 6, + [52241] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 1, + ACTIONS(5424), 1, aux_sym_concatenation_token1, - ACTIONS(5474), 1, + ACTIONS(5426), 1, sym__concat, STATE(1211), 1, aux_sym_concatenation_repeat1, - ACTIONS(1263), 4, + ACTIONS(5167), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 40, + ACTIONS(5165), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -121885,7 +120973,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -121915,76 +121002,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [53652] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5497), 1, - aux_sym_concatenation_token1, - ACTIONS(5499), 1, - sym__concat, - STATE(1230), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [53713] = 6, + [52302] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5497), 1, + ACTIONS(5424), 1, aux_sym_concatenation_token1, - ACTIONS(5501), 1, + ACTIONS(5426), 1, sym__concat, - STATE(1230), 1, + STATE(1232), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 4, + ACTIONS(5175), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 40, + ACTIONS(5173), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -121995,7 +121028,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -122008,7 +121040,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -122024,74 +121055,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [53774] = 3, + [52363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 5, + ACTIONS(1294), 6, sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 42, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [53829] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5503), 1, - aux_sym_concatenation_token1, - ACTIONS(5506), 1, sym__concat, - STATE(1230), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1253), 4, - sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 40, + ACTIONS(1292), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -122118,6 +121094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -122132,75 +121109,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53890] = 3, - ACTIONS(3), 1, + [52418] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1342), 7, - sym_file_descriptor, - sym__concat, + ACTIONS(5428), 1, + sym_word, + ACTIONS(5432), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5434), 1, + anon_sym_DOLLAR, + ACTIONS(5436), 1, + sym__special_character, + ACTIONS(5438), 1, + anon_sym_DQUOTE, + ACTIONS(5442), 1, + aux_sym_number_token1, + ACTIONS(5444), 1, + aux_sym_number_token2, + ACTIONS(5446), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5448), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5450), 1, + anon_sym_BQUOTE, + ACTIONS(5452), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5456), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(5458), 1, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 40, + STATE(5505), 1, + aux_sym__literal_repeat1, + STATE(5692), 1, + sym_concatenation, + ACTIONS(5430), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5440), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5454), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2301), 7, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(5431), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2303), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [53945] = 3, + [52511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 6, + ACTIONS(4519), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 41, + ACTIONS(4517), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -122210,6 +121206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -122221,7 +121218,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -122236,17 +121232,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54000] = 3, + [52566] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5432), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5434), 1, + anon_sym_DOLLAR, + ACTIONS(5436), 1, + sym__special_character, + ACTIONS(5438), 1, + anon_sym_DQUOTE, + ACTIONS(5442), 1, + aux_sym_number_token1, + ACTIONS(5444), 1, + aux_sym_number_token2, + ACTIONS(5446), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5448), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5450), 1, + anon_sym_BQUOTE, + ACTIONS(5452), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5458), 1, + sym__brace_start, + ACTIONS(5460), 1, + sym_word, + ACTIONS(5464), 1, + sym_test_operator, + STATE(5518), 1, + aux_sym__literal_repeat1, + STATE(5689), 1, + sym_concatenation, + ACTIONS(5430), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5454), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5462), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2305), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(5453), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2307), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [52659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 6, + ACTIONS(1334), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 41, + ACTIONS(1332), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -122288,21 +121355,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54055] = 6, + [52714] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5497), 1, + ACTIONS(5424), 1, aux_sym_concatenation_token1, - ACTIONS(5509), 1, + ACTIONS(5466), 1, sym__concat, - STATE(1227), 1, + STATE(1246), 1, aux_sym_concatenation_repeat1, - ACTIONS(1263), 4, + ACTIONS(1268), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 40, + ACTIONS(1266), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -122313,7 +121381,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -122326,7 +121393,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -122342,18 +121408,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [54116] = 3, + [52775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 6, + ACTIONS(1342), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 41, + ACTIONS(1340), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -122395,32 +121462,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [54171] = 3, + [52830] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 6, + ACTIONS(5468), 1, + sym__special_character, + STATE(1299), 1, + aux_sym__literal_repeat1, + ACTIONS(4428), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 41, + ACTIONS(4426), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -122429,11 +121500,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -122445,34 +121515,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [54226] = 3, + [52889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1350), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 41, + ACTIONS(1348), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -122499,17 +121568,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54281] = 3, + [52944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(1298), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 41, + ACTIONS(1296), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -122551,17 +121620,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54336] = 3, + [52999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1306), 7, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 41, + ACTIONS(1304), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -122573,7 +121643,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -122603,17 +121672,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54391] = 3, + [53054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1354), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 41, + ACTIONS(1352), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -122637,6 +121706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -122653,19 +121723,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [54446] = 3, + [53109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(1294), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 41, + ACTIONS(1292), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -122707,32 +121776,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [54501] = 3, + [53164] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(5468), 1, + sym__special_character, + STATE(1299), 1, + aux_sym__literal_repeat1, + ACTIONS(4579), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 41, + ACTIONS(4577), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -122741,11 +121814,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -122757,24 +121829,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [54556] = 6, + [53223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5080), 1, - aux_sym_concatenation_token1, - ACTIONS(5082), 1, - sym__concat, - STATE(1177), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4482), 5, + ACTIONS(1306), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4480), 39, + ACTIONS(1304), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -122786,6 +121852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -122800,6 +121867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -122814,22 +121882,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54617] = 6, + [53278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5080), 1, - aux_sym_concatenation_token1, - ACTIONS(5082), 1, - sym__concat, - STATE(1215), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4465), 5, + ACTIONS(1278), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4463), 39, + ACTIONS(1276), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -122841,6 +121904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -122855,6 +121919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -122869,36 +121934,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54678] = 6, + [53333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5464), 1, - aux_sym_concatenation_token1, - ACTIONS(5511), 1, - sym__concat, - STATE(1250), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 5, + ACTIONS(1278), 7, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 39, + ACTIONS(1276), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -122910,6 +121971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -122924,32 +121986,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54739] = 3, + [53388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 6, + ACTIONS(1318), 7, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 41, + ACTIONS(1316), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -122976,32 +122038,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54794] = 3, + [53443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 6, + ACTIONS(1310), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 41, + ACTIONS(1308), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -123028,32 +122090,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54849] = 3, + [53498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 7, + ACTIONS(1338), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 40, + ACTIONS(1336), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -123080,77 +122142,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54904] = 6, - ACTIONS(3), 1, + [53553] = 9, + ACTIONS(71), 1, sym_comment, - ACTIONS(5464), 1, - aux_sym_concatenation_token1, - ACTIONS(5513), 1, - sym__concat, - STATE(1250), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(5474), 1, + anon_sym_DQUOTE, + ACTIONS(5476), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5478), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5480), 1, + anon_sym_BQUOTE, + ACTIONS(5482), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2547), 3, + sym_string, + sym_expansion, + sym_command_substitution, + ACTIONS(5472), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [54965] = 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5470), 25, + sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [53620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5515), 1, - aux_sym_concatenation_token1, - ACTIONS(5518), 1, - sym__concat, - STATE(1250), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1253), 5, + ACTIONS(1358), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 39, + ACTIONS(1356), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -123161,6 +122221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -123176,6 +122237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -123190,36 +122252,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55026] = 6, + [53675] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5397), 1, - aux_sym_concatenation_token1, - ACTIONS(5521), 1, - sym__concat, - STATE(1262), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 5, + ACTIONS(1314), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 39, + ACTIONS(1312), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -123228,8 +122286,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -123243,34 +122303,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [55087] = 3, + [53730] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 6, + ACTIONS(5484), 1, + sym__special_character, + STATE(1229), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 6, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 41, + ACTIONS(1360), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -123279,11 +122342,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -123295,34 +122357,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [55142] = 3, + [53789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 6, + ACTIONS(1302), 7, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 41, + ACTIONS(1300), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -123331,6 +122392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -123347,34 +122409,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [55197] = 3, + [53844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1258), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 41, + ACTIONS(1251), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -123386,7 +122448,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -123401,17 +122462,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55252] = 3, + [53899] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, - sym_file_descriptor, + ACTIONS(5424), 1, + aux_sym_concatenation_token1, + ACTIONS(5487), 1, sym__concat, + STATE(1246), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 41, + ACTIONS(1286), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -123422,7 +122488,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -123435,10 +122500,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -123452,18 +122515,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [55307] = 3, + [53960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1326), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 41, + ACTIONS(1324), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -123505,22 +122569,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55362] = 6, + [54015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5397), 1, - aux_sym_concatenation_token1, - ACTIONS(5523), 1, - sym__concat, - STATE(1262), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, + ACTIONS(1346), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 39, + ACTIONS(1344), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -123531,6 +122590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -123543,8 +122603,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -123558,24 +122620,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [55423] = 6, + [54070] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5464), 1, + ACTIONS(5418), 1, aux_sym_concatenation_token1, - ACTIONS(5466), 1, + ACTIONS(5420), 1, sym__concat, - STATE(1249), 1, + STATE(1248), 1, aux_sym_concatenation_repeat1, - ACTIONS(4554), 5, + ACTIONS(2169), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 39, + ACTIONS(2167), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -123615,7 +122676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55484] = 3, + [54131] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1322), 7, @@ -123667,16 +122728,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55539] = 3, + [54186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 5, + ACTIONS(1326), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 42, + ACTIONS(1324), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -123688,10 +122751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -123705,6 +122765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -123719,22 +122780,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55594] = 6, + [54241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5464), 1, - aux_sym_concatenation_token1, - ACTIONS(5466), 1, - sym__concat, - STATE(1245), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4566), 5, + ACTIONS(1358), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 39, + ACTIONS(1356), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -123745,6 +122801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -123760,6 +122817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -123774,22 +122832,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55655] = 6, + [54296] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5525), 1, + ACTIONS(5424), 1, aux_sym_concatenation_token1, - ACTIONS(5528), 1, + ACTIONS(5426), 1, sym__concat, - STATE(1262), 1, + STATE(1211), 1, aux_sym_concatenation_repeat1, - ACTIONS(1253), 5, + ACTIONS(5325), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 39, + ACTIONS(5323), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -123829,36 +122887,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [55716] = 6, + [54357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5464), 1, - aux_sym_concatenation_token1, - ACTIONS(5466), 1, - sym__concat, - STATE(1249), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4372), 5, + ACTIONS(4595), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 39, + ACTIONS(4593), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -123884,22 +122939,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55777] = 6, + [54412] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5464), 1, + ACTIONS(5418), 1, aux_sym_concatenation_token1, - ACTIONS(5466), 1, + ACTIONS(5420), 1, sym__concat, - STATE(1245), 1, + STATE(1248), 1, aux_sym_concatenation_repeat1, - ACTIONS(1263), 5, + ACTIONS(2173), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 39, + ACTIONS(2171), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -123939,36 +122994,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55838] = 6, + [54473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5464), 1, - aux_sym_concatenation_token1, - ACTIONS(5466), 1, - sym__concat, - STATE(1245), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4469), 5, + ACTIONS(1330), 7, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 39, + ACTIONS(1328), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -123980,6 +123031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -123994,22 +123046,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55899] = 6, + [54528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5397), 1, - aux_sym_concatenation_token1, - ACTIONS(5399), 1, - sym__concat, - STATE(1251), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 5, + ACTIONS(1322), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 39, + ACTIONS(1320), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -124020,6 +123067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -124032,8 +123080,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -124047,22 +123097,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [55960] = 5, + [54583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5531), 1, - sym__special_character, - STATE(1179), 1, - aux_sym__literal_repeat1, - ACTIONS(278), 5, + ACTIONS(1274), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(241), 40, + ACTIONS(1272), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -124075,8 +123120,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -124091,6 +123137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -124103,7 +123150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56019] = 3, + [54638] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1318), 6, @@ -124155,22 +123202,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56074] = 6, + [54693] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5464), 1, + ACTIONS(5489), 1, aux_sym_concatenation_token1, - ACTIONS(5466), 1, + ACTIONS(5492), 1, sym__concat, - STATE(1249), 1, + STATE(1246), 1, aux_sym_concatenation_repeat1, - ACTIONS(5391), 5, + ACTIONS(1278), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5389), 39, + ACTIONS(1276), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -124193,7 +123240,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -124209,23 +123255,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [56135] = 6, + [54754] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5464), 1, + ACTIONS(1235), 1, + sym_test_operator, + ACTIONS(5065), 1, + anon_sym_DQUOTE, + ACTIONS(5069), 1, + sym_variable_name, + STATE(2433), 1, + sym_string, + ACTIONS(5067), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5063), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 32, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + [54819] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5418), 1, aux_sym_concatenation_token1, - ACTIONS(5466), 1, + ACTIONS(5495), 1, sym__concat, - STATE(1245), 1, + STATE(1252), 1, aux_sym_concatenation_repeat1, - ACTIONS(5395), 5, + ACTIONS(1288), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5393), 39, + ACTIONS(1286), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -124265,36 +123369,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56196] = 6, + [54880] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5080), 1, + ACTIONS(5407), 1, aux_sym_concatenation_token1, - ACTIONS(5082), 1, + ACTIONS(5409), 1, sym__concat, - STATE(1177), 1, + STATE(1278), 1, aux_sym_concatenation_repeat1, - ACTIONS(4469), 5, + ACTIONS(1274), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 39, + ACTIONS(1272), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124320,18 +123424,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56257] = 3, + [54941] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 7, + ACTIONS(1241), 1, + sym_test_operator, + ACTIONS(5065), 1, + anon_sym_DQUOTE, + ACTIONS(5069), 1, + sym_variable_name, + STATE(2433), 1, + sym_string, + ACTIONS(5067), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5063), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 32, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + [55006] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 40, + ACTIONS(1300), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -124343,6 +123503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -124372,36 +123533,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56312] = 6, + [55061] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5080), 1, + ACTIONS(5497), 1, aux_sym_concatenation_token1, - ACTIONS(5082), 1, + ACTIONS(5500), 1, sym__concat, - STATE(1215), 1, + STATE(1252), 1, aux_sym_concatenation_repeat1, - ACTIONS(4372), 5, + ACTIONS(1278), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 39, + ACTIONS(1276), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124427,36 +123588,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56373] = 6, + [55122] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5080), 1, - aux_sym_concatenation_token1, - ACTIONS(5082), 1, - sym__concat, - STATE(1177), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4566), 5, + ACTIONS(1322), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 39, + ACTIONS(1320), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124465,9 +123622,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -124481,23 +123638,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [56434] = 6, + [55177] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5464), 1, + ACTIONS(5418), 1, aux_sym_concatenation_token1, - ACTIONS(5466), 1, + ACTIONS(5503), 1, sym__concat, - STATE(1249), 1, + STATE(1252), 1, aux_sym_concatenation_repeat1, - ACTIONS(2096), 5, + ACTIONS(1268), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2094), 39, + ACTIONS(1266), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -124537,22 +123695,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56495] = 6, + [55238] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5080), 1, - aux_sym_concatenation_token1, - ACTIONS(5082), 1, + ACTIONS(1310), 7, + sym_file_descriptor, sym__concat, - STATE(1215), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4554), 5, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 40, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [55293] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1274), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 39, + ACTIONS(1272), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -124564,7 +123768,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -124592,18 +123799,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56556] = 3, + [55348] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 7, + ACTIONS(5505), 1, + sym__special_character, + STATE(1229), 1, + aux_sym__literal_repeat1, + ACTIONS(278), 6, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 40, + ACTIONS(241), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -124615,6 +123825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -124629,9 +123840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -124644,17 +123853,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56611] = 3, + [55407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 6, + ACTIONS(1306), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 41, + ACTIONS(1304), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -124678,6 +123887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -124694,34 +123904,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [56666] = 3, + [55462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 7, + ACTIONS(1278), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 40, + ACTIONS(1276), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124748,32 +123957,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56721] = 3, + [55517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(1326), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 41, + ACTIONS(1324), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124782,7 +123991,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -124799,17 +124007,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [56776] = 3, + [55572] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4372), 5, + ACTIONS(5468), 1, + sym__special_character, + STATE(1299), 1, + aux_sym__literal_repeat1, + ACTIONS(4506), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 42, + ACTIONS(4504), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -124821,7 +124034,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -124839,7 +124051,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -124852,18 +124063,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56831] = 3, + [55631] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 7, - sym_file_descriptor, + ACTIONS(5071), 1, + aux_sym_concatenation_token1, + ACTIONS(5073), 1, sym__concat, + STATE(1176), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4506), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 40, + ACTIONS(4504), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -124889,7 +124104,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -124904,18 +124118,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56886] = 3, + [55692] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 7, - sym_file_descriptor, + ACTIONS(5071), 1, + aux_sym_concatenation_token1, + ACTIONS(5073), 1, sym__concat, + STATE(1183), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4523), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 40, + ACTIONS(4521), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -124941,7 +124159,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -124956,32 +124173,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56941] = 3, + [55753] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 6, - sym_file_descriptor, + ACTIONS(5418), 1, + aux_sym_concatenation_token1, + ACTIONS(5420), 1, sym__concat, + STATE(1254), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 41, + ACTIONS(1272), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124993,7 +124214,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -125008,17 +124228,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56996] = 3, + [55814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 6, + ACTIONS(1334), 7, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 41, + ACTIONS(1332), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -125030,7 +124251,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -125060,17 +124280,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57051] = 3, + [55869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(1298), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 41, + ACTIONS(1296), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -125094,6 +124314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -125110,19 +124331,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [57106] = 3, + [55924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 6, + ACTIONS(1338), 7, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 41, + ACTIONS(1336), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -125134,7 +124355,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -125164,17 +124384,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57161] = 3, + [55979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 6, + ACTIONS(1306), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 41, + ACTIONS(1304), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -125216,32 +124436,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [57216] = 3, + [56034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 6, + ACTIONS(1278), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 41, + ACTIONS(1276), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -125250,7 +124470,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -125267,22 +124486,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [57271] = 6, + [56089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5497), 1, - aux_sym_concatenation_token1, - ACTIONS(5509), 1, - sym__concat, - STATE(1228), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5391), 4, + ACTIONS(1350), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5389), 40, + ACTIONS(1348), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -125306,9 +124522,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -125322,37 +124538,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [57332] = 6, + [56144] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5497), 1, + ACTIONS(5071), 1, aux_sym_concatenation_token1, - ACTIONS(5509), 1, + ACTIONS(5073), 1, sym__concat, - STATE(1227), 1, + STATE(1176), 1, aux_sym_concatenation_repeat1, - ACTIONS(5395), 4, + ACTIONS(4502), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5393), 40, + ACTIONS(4500), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -125378,18 +124595,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57393] = 3, + [56205] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 7, - sym_file_descriptor, + ACTIONS(5071), 1, + aux_sym_concatenation_token1, + ACTIONS(5073), 1, sym__concat, + STATE(1183), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4519), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 40, + ACTIONS(4517), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -125415,7 +124636,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -125430,18 +124650,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57448] = 3, + [56266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 7, + ACTIONS(1322), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 40, + ACTIONS(1320), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -125453,6 +124672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -125482,32 +124702,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57503] = 3, + [56321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 6, + ACTIONS(1310), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 41, + ACTIONS(1308), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -125534,36 +124754,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57558] = 5, + [56376] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5533), 1, - sym__special_character, - STATE(1295), 1, - aux_sym__literal_repeat1, - ACTIONS(1364), 5, + ACTIONS(5397), 1, + aux_sym_concatenation_token1, + ACTIONS(5511), 1, + sym__concat, + STATE(1279), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5509), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 40, + ACTIONS(5507), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -125572,10 +124792,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -125587,33 +124807,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [57617] = 3, + [56437] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 7, - sym_file_descriptor, + ACTIONS(5397), 1, + aux_sym_concatenation_token1, + ACTIONS(5511), 1, sym__concat, + STATE(1164), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5515), 4, + sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 40, + ACTIONS(5513), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -125622,10 +124847,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -125639,18 +124862,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [57672] = 3, + [56498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 6, + ACTIONS(1314), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 41, + ACTIONS(1312), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -125674,6 +124898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -125690,19 +124915,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [57727] = 3, + [56553] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 6, - sym_file_descriptor, + ACTIONS(5407), 1, + aux_sym_concatenation_token1, + ACTIONS(5517), 1, sym__concat, - sym_variable_name, + STATE(1301), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 41, + ACTIONS(1266), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -125729,7 +124957,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -125744,17 +124971,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57782] = 3, + [56614] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 6, - sym_file_descriptor, + ACTIONS(5397), 1, + aux_sym_concatenation_token1, + ACTIONS(5519), 1, sym__concat, - sym_variable_name, + STATE(1287), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 41, + ACTIONS(1266), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -125780,7 +125011,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -125796,17 +125026,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [57837] = 3, + [56675] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 6, - sym_file_descriptor, + ACTIONS(5071), 1, + aux_sym_concatenation_token1, + ACTIONS(5073), 1, sym__concat, + STATE(1176), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4428), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 41, + ACTIONS(4426), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -125818,7 +125053,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -125833,7 +125067,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -125848,16 +125081,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57892] = 3, + [56736] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4554), 5, + ACTIONS(5071), 1, + aux_sym_concatenation_token1, + ACTIONS(5073), 1, + sym__concat, + STATE(1183), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4513), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 42, + ACTIONS(4511), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -125869,10 +125108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -125900,70 +125136,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57947] = 3, + [56797] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 6, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(5071), 1, aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [58002] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1302), 7, - sym_file_descriptor, + ACTIONS(5073), 1, sym__concat, + STATE(1176), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4579), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, + ACTIONS(4577), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -125989,7 +125177,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -126004,17 +125191,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58057] = 3, + [56858] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 6, - sym_file_descriptor, + ACTIONS(5071), 1, + aux_sym_concatenation_token1, + ACTIONS(5073), 1, sym__concat, + STATE(1183), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4595), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 41, + ACTIONS(4593), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -126026,7 +125218,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -126041,7 +125232,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -126056,17 +125246,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58112] = 3, + [56919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 6, + ACTIONS(1298), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 41, + ACTIONS(1296), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -126090,7 +125280,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -126107,33 +125296,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [58167] = 3, + [56974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(1314), 7, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 41, + ACTIONS(1312), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126160,21 +125350,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58222] = 6, + [57029] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5536), 1, + ACTIONS(5424), 1, aux_sym_concatenation_token1, - ACTIONS(5538), 1, + ACTIONS(5426), 1, sym__concat, - STATE(1311), 1, + STATE(1211), 1, aux_sym_concatenation_repeat1, - ACTIONS(5395), 4, + ACTIONS(1274), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5393), 39, + ACTIONS(1272), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -126197,7 +125388,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -126213,22 +125403,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [58282] = 6, + [57090] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5540), 1, + ACTIONS(5521), 1, aux_sym_concatenation_token1, - ACTIONS(5542), 1, + ACTIONS(5524), 1, sym__concat, - STATE(1441), 1, + STATE(1287), 1, aux_sym_concatenation_repeat1, - ACTIONS(1263), 4, + ACTIONS(1278), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 39, + ACTIONS(1276), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -126267,32 +125458,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [58342] = 3, + [57151] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 5, + ACTIONS(5468), 1, + sym__special_character, + STATE(1299), 1, + aux_sym__literal_repeat1, + ACTIONS(4502), 5, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 41, + ACTIONS(4500), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126304,9 +125501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -126319,16 +125514,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58396] = 3, + [57210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 5, + ACTIONS(1318), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 41, + ACTIONS(1316), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -126370,21 +125566,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58450] = 6, + [57265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5536), 1, - aux_sym_concatenation_token1, - ACTIONS(5544), 1, - sym__concat, - STATE(1347), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 4, + ACTIONS(1310), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 39, + ACTIONS(1308), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -126395,6 +125587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -126407,9 +125600,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -126423,93 +125616,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [58510] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5546), 1, - anon_sym_DQUOTE, - ACTIONS(5548), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5550), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5552), 1, - anon_sym_BQUOTE, - ACTIONS(5554), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2601), 3, - sym_string, - sym_expansion, - sym_command_substitution, - ACTIONS(5435), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5433), 24, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [58576] = 5, + [57320] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5556), 1, - sym__special_character, - STATE(1313), 1, - aux_sym__literal_repeat1, - ACTIONS(1364), 6, + ACTIONS(1302), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 38, + ACTIONS(1300), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126521,7 +125655,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -126534,86 +125670,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58634] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5565), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5568), 1, - anon_sym_DOLLAR, - ACTIONS(5571), 1, - sym__special_character, - ACTIONS(5574), 1, - anon_sym_DQUOTE, - ACTIONS(5577), 1, - aux_sym_number_token1, - ACTIONS(5580), 1, - aux_sym_number_token2, - ACTIONS(5583), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5586), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5589), 1, - anon_sym_BQUOTE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5598), 1, - sym_test_operator, - ACTIONS(5601), 1, - sym__brace_start, - STATE(3469), 1, - aux_sym__literal_repeat1, - ACTIONS(2216), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5562), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5595), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1314), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(5559), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(3093), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2214), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [58724] = 3, + [57375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 6, + ACTIONS(1314), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 40, + ACTIONS(1312), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -126624,6 +125691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -126654,31 +125722,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [58778] = 3, + [57430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 6, + ACTIONS(4513), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 40, + ACTIONS(4511), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126687,9 +125757,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -126703,69 +125773,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [58832] = 21, + [57485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5608), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5610), 1, - anon_sym_DOLLAR, - ACTIONS(5612), 1, - sym__special_character, - ACTIONS(5614), 1, - anon_sym_DQUOTE, - ACTIONS(5616), 1, - aux_sym_number_token1, - ACTIONS(5618), 1, - aux_sym_number_token2, - ACTIONS(5620), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5622), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5624), 1, - anon_sym_BQUOTE, - ACTIONS(5626), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5630), 1, + ACTIONS(1342), 7, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(5632), 1, + sym__bare_dollar, sym__brace_start, - STATE(3469), 1, - aux_sym__literal_repeat1, - ACTIONS(2074), 2, - sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5606), 2, + ACTIONS(1340), 40, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5628), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1314), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(5604), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(3093), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2072), 13, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126773,36 +125807,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [58922] = 6, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [57540] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5634), 1, - aux_sym_concatenation_token1, - ACTIONS(5636), 1, - sym__concat, - STATE(1398), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5180), 6, + ACTIONS(1294), 7, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5178), 37, + ACTIONS(1292), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126811,8 +125860,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -126826,33 +125877,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [58982] = 3, + [57595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 6, + ACTIONS(1326), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 40, + ACTIONS(1324), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126861,6 +125912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -126877,37 +125929,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [59036] = 6, + [57650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5638), 1, - aux_sym_concatenation_token1, - ACTIONS(5640), 1, - sym__concat, - STATE(1367), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2096), 5, + ACTIONS(1350), 7, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2094), 38, + ACTIONS(1348), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126919,6 +125967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -126933,20 +125982,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59096] = 5, + [57705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5642), 1, - sym__special_character, - STATE(1358), 1, - aux_sym__literal_repeat1, - ACTIONS(4548), 5, + ACTIONS(1330), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4546), 39, + ACTIONS(1328), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -126973,58 +126019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [59154] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5634), 1, aux_sym_concatenation_token1, - ACTIONS(5636), 1, - sym__concat, - STATE(1443), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5176), 6, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(5174), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -127038,25 +126033,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [59214] = 3, + [57760] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(5527), 1, + sym__special_character, + STATE(1299), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 40, + ACTIONS(1360), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -127065,6 +126063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -127076,9 +126075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -127091,17 +126088,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59268] = 3, + [57819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(1330), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 40, + ACTIONS(1328), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -127112,6 +126109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -127124,7 +126122,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -127141,22 +126138,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [59322] = 6, + [57874] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5644), 1, + ACTIONS(5530), 1, aux_sym_concatenation_token1, - ACTIONS(5646), 1, + ACTIONS(5533), 1, sym__concat, - STATE(1420), 1, + STATE(1301), 1, aux_sym_concatenation_repeat1, - ACTIONS(5478), 4, + ACTIONS(1278), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5476), 39, + ACTIONS(1276), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -127167,6 +126165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -127179,6 +126178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -127194,23 +126194,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [59382] = 6, + [57935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5644), 1, - aux_sym_concatenation_token1, - ACTIONS(5646), 1, - sym__concat, - STATE(1415), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5470), 4, + ACTIONS(1318), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5468), 39, + ACTIONS(1316), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -127221,6 +126216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -127235,6 +126231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -127250,17 +126247,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [59442] = 3, + [57990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 6, + ACTIONS(1302), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 40, + ACTIONS(1300), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -127271,6 +126268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -127283,7 +126281,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -127300,33 +126297,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [59496] = 3, + [58045] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4532), 5, + ACTIONS(5397), 1, + aux_sym_concatenation_token1, + ACTIONS(5511), 1, + sym__concat, + STATE(1279), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4530), 41, + ACTIONS(1272), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -127335,7 +126337,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -127351,17 +126352,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [59550] = 3, + [58106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5462), 5, + ACTIONS(1354), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5460), 41, + ACTIONS(1352), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -127374,8 +126378,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -127389,60 +126391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [59604] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5638), 1, aux_sym_concatenation_token1, - ACTIONS(5640), 1, - sym__concat, - STATE(1367), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4372), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -127457,22 +126406,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59664] = 6, + [58161] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5638), 1, + ACTIONS(5424), 1, aux_sym_concatenation_token1, - ACTIONS(5640), 1, + ACTIONS(5426), 1, sym__concat, - STATE(1421), 1, + STATE(1232), 1, aux_sym_concatenation_repeat1, - ACTIONS(4469), 5, + ACTIONS(5329), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 38, + ACTIONS(5327), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -127483,8 +126432,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -127494,7 +126444,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -127510,105 +126459,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [59724] = 21, + [58222] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5608), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5610), 1, - anon_sym_DOLLAR, - ACTIONS(5612), 1, + ACTIONS(5536), 1, sym__special_character, - ACTIONS(5614), 1, - anon_sym_DQUOTE, - ACTIONS(5616), 1, - aux_sym_number_token1, - ACTIONS(5618), 1, - aux_sym_number_token2, - ACTIONS(5620), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5622), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5624), 1, - anon_sym_BQUOTE, - ACTIONS(5626), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5630), 1, - sym_test_operator, - ACTIONS(5632), 1, - sym__brace_start, - STATE(3469), 1, + STATE(1307), 1, aux_sym__literal_repeat1, - ACTIONS(2096), 2, + ACTIONS(1362), 6, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5606), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5628), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1314), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(5604), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(3093), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2094), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [59814] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5648), 1, - aux_sym_concatenation_token1, - ACTIONS(5650), 1, - sym__concat, - STATE(1373), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 6, - sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 37, + ACTIONS(1360), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -127621,7 +126502,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -127634,17 +126514,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59874] = 3, + [58280] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, - sym_file_descriptor, + ACTIONS(5539), 1, + aux_sym_concatenation_token1, + ACTIONS(5541), 1, sym__concat, + STATE(1326), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4579), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 40, + ACTIONS(4577), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -127655,9 +126540,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -127670,7 +126554,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -127685,75 +126568,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59928] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5652), 1, - sym__special_character, - STATE(1313), 1, - aux_sym__literal_repeat1, - ACTIONS(4482), 6, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(4480), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [59986] = 6, + [58340] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5638), 1, + ACTIONS(5543), 1, aux_sym_concatenation_token1, - ACTIONS(5640), 1, + ACTIONS(5545), 1, sym__concat, - STATE(1367), 1, + STATE(1409), 1, aux_sym_concatenation_repeat1, - ACTIONS(2074), 5, + ACTIONS(5167), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2072), 38, + ACTIONS(5165), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -127764,7 +126595,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -127792,23 +126622,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [60046] = 6, + [58400] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5634), 1, + ACTIONS(5547), 1, aux_sym_concatenation_token1, - ACTIONS(5636), 1, + ACTIONS(5549), 1, sym__concat, - STATE(1443), 1, + STATE(1437), 1, aux_sym_concatenation_repeat1, - ACTIONS(5375), 6, + ACTIONS(1274), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5373), 37, + ACTIONS(1272), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -127820,58 +126648,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [60106] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -127897,23 +126676,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [60160] = 6, + [58460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5648), 1, - aux_sym_concatenation_token1, - ACTIONS(5654), 1, - sym__concat, - STATE(1357), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4469), 6, + ACTIONS(1322), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 37, + ACTIONS(1320), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -127925,6 +126698,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -127934,9 +126709,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -127950,18 +126725,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [60220] = 3, + [58514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1302), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 40, + ACTIONS(1300), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -127972,6 +126747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -128002,23 +126778,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [60274] = 6, + [58568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5634), 1, - aux_sym_concatenation_token1, - ACTIONS(5636), 1, - sym__concat, - STATE(1398), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5069), 6, + ACTIONS(1322), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5067), 37, + ACTIONS(1320), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128029,7 +126798,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -128041,6 +126813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -128056,23 +126829,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [60334] = 6, + [58622] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5648), 1, - aux_sym_concatenation_token1, - ACTIONS(5654), 1, - sym__concat, - STATE(1333), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4372), 6, + ACTIONS(5551), 1, + sym__special_character, + STATE(1472), 1, + aux_sym__literal_repeat1, + ACTIONS(5167), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 37, + ACTIONS(5165), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128083,7 +126853,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -128097,7 +126870,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -128110,22 +126882,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [60394] = 6, + [58680] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5638), 1, - aux_sym_concatenation_token1, - ACTIONS(5640), 1, - sym__concat, - STATE(1421), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4566), 5, + ACTIONS(1330), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 38, + ACTIONS(1328), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128136,8 +126903,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -128147,9 +126915,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -128163,23 +126931,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [60454] = 6, + [58734] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5638), 1, + ACTIONS(5543), 1, aux_sym_concatenation_token1, - ACTIONS(5640), 1, + ACTIONS(5545), 1, sym__concat, - STATE(1367), 1, + STATE(1426), 1, aux_sym_concatenation_repeat1, - ACTIONS(4554), 5, + ACTIONS(5175), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 38, + ACTIONS(5173), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128190,7 +126960,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -128218,17 +126987,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [60514] = 3, + [58794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 6, + ACTIONS(1310), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 40, + ACTIONS(1308), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128269,32 +127038,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [60568] = 3, + [58848] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4465), 5, + ACTIONS(5555), 1, + anon_sym_DQUOTE, + ACTIONS(5559), 1, + sym_variable_name, + STATE(3442), 1, + sym_string, + ACTIONS(5557), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4463), 41, + ACTIONS(5553), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 29, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -128302,13 +127078,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -128320,35 +127094,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [60622] = 6, + [58912] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5656), 1, - aux_sym_concatenation_token1, - ACTIONS(5659), 1, - sym__concat, - STATE(1347), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1253), 4, + ACTIONS(5555), 1, + anon_sym_DQUOTE, + ACTIONS(5559), 1, + sym_variable_name, + STATE(3442), 1, + sym_string, + ACTIONS(5557), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 39, + ACTIONS(5553), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 29, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -128356,13 +127134,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -128374,17 +127150,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [60682] = 3, + [58976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 6, + ACTIONS(1314), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 40, + ACTIONS(1312), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128425,20 +127201,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [60736] = 5, + [59030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5662), 1, - sym__special_character, - STATE(1433), 1, - aux_sym__literal_repeat1, - ACTIONS(4469), 5, + ACTIONS(1318), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 39, + ACTIONS(1316), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128462,10 +127234,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -128477,18 +127250,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [60794] = 3, + [59084] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, - sym_file_descriptor, + ACTIONS(5561), 1, + aux_sym_concatenation_token1, + ACTIONS(5563), 1, sym__concat, - sym_variable_name, + STATE(1344), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 40, + ACTIONS(1266), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128513,7 +127291,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -128529,32 +127306,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [60848] = 3, + [59144] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 5, + ACTIONS(5565), 1, + sym__special_character, + STATE(1408), 1, + aux_sym__literal_repeat1, + ACTIONS(5167), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 41, + ACTIONS(5165), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -128563,11 +127343,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -128579,18 +127357,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [60902] = 3, + [59202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 6, + ACTIONS(1342), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 40, + ACTIONS(1340), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128601,6 +127379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -128613,7 +127392,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -128630,18 +127408,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [60956] = 3, + [59256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(1294), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 40, + ACTIONS(1292), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128652,6 +127430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -128682,22 +127461,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [61010] = 6, + [59310] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5638), 1, + ACTIONS(5539), 1, aux_sym_concatenation_token1, - ACTIONS(5640), 1, + ACTIONS(5567), 1, sym__concat, - STATE(1421), 1, + STATE(1330), 1, aux_sym_concatenation_repeat1, - ACTIONS(5069), 5, + ACTIONS(1268), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5067), 38, + ACTIONS(1266), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128736,22 +127515,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61070] = 6, + [59370] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5638), 1, + ACTIONS(5543), 1, aux_sym_concatenation_token1, - ACTIONS(5640), 1, + ACTIONS(5545), 1, sym__concat, - STATE(1367), 1, + STATE(1409), 1, aux_sym_concatenation_repeat1, - ACTIONS(5375), 5, + ACTIONS(5317), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5373), 38, + ACTIONS(5315), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128762,7 +127542,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -128790,22 +127569,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61130] = 6, + [59430] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5664), 1, + ACTIONS(5539), 1, aux_sym_concatenation_token1, - ACTIONS(5666), 1, + ACTIONS(5569), 1, sym__concat, - STATE(1447), 1, + STATE(1330), 1, aux_sym_concatenation_repeat1, - ACTIONS(1263), 5, + ACTIONS(1288), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 38, + ACTIONS(1286), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128827,6 +127606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -128842,25 +127622,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [61190] = 6, + [59490] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5648), 1, + ACTIONS(5543), 1, aux_sym_concatenation_token1, - ACTIONS(5668), 1, + ACTIONS(5545), 1, sym__concat, - STATE(1373), 1, + STATE(1426), 1, aux_sym_concatenation_repeat1, - ACTIONS(1267), 6, + ACTIONS(5321), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 37, + ACTIONS(5319), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128898,27 +127677,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61250] = 5, + [59550] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5670), 1, - sym__special_character, - STATE(1358), 1, - aux_sym__literal_repeat1, - ACTIONS(1364), 5, + ACTIONS(5571), 1, + aux_sym_concatenation_token1, + ACTIONS(5574), 1, + sym__concat, + STATE(1330), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 39, + ACTIONS(1276), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -128926,7 +127706,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -128939,6 +127718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -128951,17 +127731,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61308] = 3, + [59610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1358), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 40, + ACTIONS(1356), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128972,6 +127751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -129002,22 +127782,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [61362] = 6, + [59664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5664), 1, - aux_sym_concatenation_token1, - ACTIONS(5666), 1, - sym__concat, - STATE(1383), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5176), 5, + ACTIONS(1346), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5174), 38, + ACTIONS(1344), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129028,8 +127802,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -129041,6 +127817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -129056,20 +127833,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [61422] = 5, + [59718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5662), 1, - sym__special_character, - STATE(1433), 1, - aux_sym__literal_repeat1, - ACTIONS(5069), 5, + ACTIONS(1358), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5067), 39, + ACTIONS(1356), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129093,10 +127866,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -129108,23 +127882,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [61480] = 6, + [59772] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5664), 1, - aux_sym_concatenation_token1, - ACTIONS(5666), 1, - sym__concat, - STATE(1447), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5180), 5, + ACTIONS(1298), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5178), 38, + ACTIONS(1296), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129135,8 +127905,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -129148,6 +127919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -129163,22 +127935,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [61540] = 6, + [59826] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5673), 1, + ACTIONS(5539), 1, aux_sym_concatenation_token1, - ACTIONS(5676), 1, + ACTIONS(5541), 1, sym__concat, - STATE(1363), 1, + STATE(1326), 1, aux_sym_concatenation_repeat1, - ACTIONS(1253), 5, + ACTIONS(1274), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 38, + ACTIONS(1272), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129217,67 +127989,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61600] = 3, + [59886] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(5561), 1, aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [61654] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1306), 5, - sym_file_descriptor, + ACTIONS(5577), 1, sym__concat, + STATE(1344), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 41, + ACTIONS(1286), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129288,7 +128014,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -129301,10 +128026,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -129318,17 +128041,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [61708] = 3, + [59946] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, - sym_file_descriptor, + ACTIONS(5579), 1, + aux_sym_concatenation_token1, + ACTIONS(5581), 1, sym__concat, + STATE(1345), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 41, + ACTIONS(1266), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129339,10 +128069,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -129352,10 +128080,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -129369,23 +128095,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [61762] = 6, + [60006] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5638), 1, + ACTIONS(5583), 1, aux_sym_concatenation_token1, - ACTIONS(5679), 1, + ACTIONS(5585), 1, sym__concat, - STATE(1363), 1, + STATE(1433), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, + ACTIONS(5325), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 38, + ACTIONS(5323), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129396,7 +128124,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -129407,7 +128134,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -129423,21 +128149,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [61822] = 5, + [60066] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5681), 1, + ACTIONS(5551), 1, sym__special_character, - STATE(1448), 1, + STATE(1472), 1, aux_sym__literal_repeat1, - ACTIONS(5180), 5, + ACTIONS(5589), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5178), 39, + ACTIONS(5587), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129461,6 +128188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -129475,23 +128203,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [61880] = 6, + [60124] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5644), 1, + ACTIONS(5579), 1, aux_sym_concatenation_token1, - ACTIONS(5646), 1, + ACTIONS(5591), 1, sym__concat, - STATE(1420), 1, + STATE(1345), 1, aux_sym_concatenation_repeat1, - ACTIONS(1263), 4, + ACTIONS(1288), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 39, + ACTIONS(1286), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129502,9 +128230,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -129531,22 +128258,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [61940] = 6, + [60184] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5638), 1, - aux_sym_concatenation_token1, - ACTIONS(5640), 1, - sym__concat, - STATE(1367), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5391), 5, + ACTIONS(1342), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5389), 38, + ACTIONS(1340), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129557,8 +128279,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -129571,6 +128294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -129585,22 +128309,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62000] = 6, + [60238] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5683), 1, - aux_sym_concatenation_token1, - ACTIONS(5686), 1, - sym__concat, - STATE(1371), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1253), 5, + ACTIONS(1294), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 38, + ACTIONS(1292), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129611,8 +128330,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -129622,8 +128342,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -129637,24 +128359,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [62060] = 6, + [60292] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5638), 1, - aux_sym_concatenation_token1, - ACTIONS(5640), 1, - sym__concat, - STATE(1421), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5395), 5, + ACTIONS(5551), 1, + sym__special_character, + STATE(1472), 1, + aux_sym__literal_repeat1, + ACTIONS(5595), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5393), 38, + ACTIONS(5593), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129665,8 +128384,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -129680,7 +128401,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -129693,23 +128413,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62120] = 6, + [60350] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 1, + ACTIONS(5597), 1, aux_sym_concatenation_token1, - ACTIONS(5692), 1, + ACTIONS(5600), 1, sym__concat, - STATE(1373), 1, + STATE(1344), 1, aux_sym_concatenation_repeat1, - ACTIONS(1253), 6, + ACTIONS(1278), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 37, + ACTIONS(1276), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129721,6 +128439,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -129730,7 +128450,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -129746,71 +128465,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [62180] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5652), 1, - sym__special_character, - STATE(1313), 1, - aux_sym__literal_repeat1, - ACTIONS(4469), 6, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [62238] = 3, + [60410] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, - sym_file_descriptor, + ACTIONS(5603), 1, + aux_sym_concatenation_token1, + ACTIONS(5606), 1, sym__concat, + STATE(1345), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 40, + ACTIONS(1276), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129821,9 +128493,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -129835,7 +128506,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -129851,32 +128521,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [62292] = 3, + [60470] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 5, + ACTIONS(5583), 1, + aux_sym_concatenation_token1, + ACTIONS(5585), 1, + sym__concat, + STATE(1439), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5329), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1271), 41, + ACTIONS(5327), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -129885,7 +128558,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -129901,36 +128573,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [62346] = 5, + [60530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5652), 1, - sym__special_character, - STATE(1313), 1, - aux_sym__literal_repeat1, - ACTIONS(4566), 6, + ACTIONS(1318), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 38, + ACTIONS(1316), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -129942,7 +128611,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -129955,17 +128626,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62404] = 3, + [60584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 6, + ACTIONS(1310), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 40, + ACTIONS(1308), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -130006,35 +128677,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [62458] = 5, + [60638] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5642), 1, - sym__special_character, - STATE(1358), 1, - aux_sym__literal_repeat1, - ACTIONS(4482), 5, + ACTIONS(1302), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4480), 39, + ACTIONS(1300), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -130046,7 +128713,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -130059,20 +128728,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62516] = 5, + [60692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5662), 1, - sym__special_character, - STATE(1433), 1, - aux_sym__literal_repeat1, - ACTIONS(4566), 5, + ACTIONS(1314), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 39, + ACTIONS(1312), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -130083,7 +128749,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -130096,10 +128761,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -130111,22 +128777,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [62574] = 6, + [60746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5540), 1, - aux_sym_concatenation_token1, - ACTIONS(5542), 1, - sym__concat, - STATE(1444), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5391), 4, + ACTIONS(1342), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5389), 39, + ACTIONS(1340), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -130137,7 +128800,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -130152,6 +128814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -130165,21 +128828,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [62634] = 5, + [60800] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5662), 1, - sym__special_character, - STATE(1433), 1, - aux_sym__literal_repeat1, - ACTIONS(5697), 5, + ACTIONS(5579), 1, + aux_sym_concatenation_token1, + ACTIONS(5609), 1, + sym__concat, + STATE(1337), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5695), 39, + ACTIONS(1272), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -130190,10 +128856,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -130203,10 +128867,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -130218,36 +128882,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [62692] = 6, + [60860] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5664), 1, - aux_sym_concatenation_token1, - ACTIONS(5699), 1, - sym__concat, - STATE(1371), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, - sym_file_descriptor, - sym_variable_name, + ACTIONS(5555), 1, + anon_sym_DQUOTE, + ACTIONS(5615), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5617), 1, + anon_sym_DOLLAR, + ACTIONS(5619), 1, + sym__special_character, + ACTIONS(5621), 1, + aux_sym_number_token1, + ACTIONS(5623), 1, + aux_sym_number_token2, + ACTIONS(5625), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5627), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5629), 1, + anon_sym_BQUOTE, + ACTIONS(5631), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5635), 1, sym_test_operator, + ACTIONS(5637), 1, sym__brace_start, + STATE(3460), 1, + aux_sym__literal_repeat1, + ACTIONS(2169), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 38, + ACTIONS(5613), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5633), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1357), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(5611), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(3017), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2167), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -130255,49 +128952,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_LT_LT_LT, + [60950] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5555), 1, + anon_sym_DQUOTE, + ACTIONS(5615), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(5617), 1, anon_sym_DOLLAR, + ACTIONS(5619), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5621), 1, aux_sym_number_token1, + ACTIONS(5623), 1, aux_sym_number_token2, + ACTIONS(5625), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5627), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5629), 1, anon_sym_BQUOTE, + ACTIONS(5631), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [62752] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1330), 5, - sym_file_descriptor, - sym__concat, + ACTIONS(5635), 1, sym_test_operator, + ACTIONS(5637), 1, sym__brace_start, + STATE(3460), 1, + aux_sym__literal_repeat1, + ACTIONS(2173), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 41, + ACTIONS(5613), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5633), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1357), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(5611), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(3017), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2171), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -130305,36 +129021,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [62806] = 3, + [61040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 6, + ACTIONS(1294), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 40, + ACTIONS(1292), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -130375,32 +129073,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [62860] = 3, + [61094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 6, + ACTIONS(1326), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1271), 40, + ACTIONS(1324), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -130412,6 +129109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -130426,32 +129124,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62914] = 3, + [61148] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4554), 5, - sym_file_descriptor, + ACTIONS(5645), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5648), 1, + anon_sym_DOLLAR, + ACTIONS(5651), 1, + sym__special_character, + ACTIONS(5654), 1, + anon_sym_DQUOTE, + ACTIONS(5657), 1, + aux_sym_number_token1, + ACTIONS(5660), 1, + aux_sym_number_token2, + ACTIONS(5663), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5666), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5669), 1, + anon_sym_BQUOTE, + ACTIONS(5672), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5678), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(5681), 1, sym__brace_start, + STATE(3460), 1, + aux_sym__literal_repeat1, + ACTIONS(2183), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 41, + ACTIONS(5642), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5675), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1357), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(5639), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(3017), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2181), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -130459,39 +129192,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [62968] = 6, + [61238] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5540), 1, - aux_sym_concatenation_token1, - ACTIONS(5542), 1, - sym__concat, - STATE(1441), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5395), 4, + ACTIONS(1350), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5393), 39, + ACTIONS(1348), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -130515,8 +129226,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -130531,17 +129244,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63028] = 3, + [61292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(1334), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 40, + ACTIONS(1332), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -130552,6 +129264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -130564,6 +129277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -130580,34 +129294,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [63082] = 3, + [61346] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4372), 5, + ACTIONS(1354), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 41, + ACTIONS(1352), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -130619,6 +129331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -130633,23 +129346,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63136] = 6, + [61400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5648), 1, - aux_sym_concatenation_token1, - ACTIONS(5654), 1, - sym__concat, - STATE(1333), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5375), 6, + ACTIONS(1338), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5373), 37, + ACTIONS(1336), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -130660,7 +129366,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -130673,6 +129382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -130687,23 +129397,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63196] = 6, + [61454] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5648), 1, + ACTIONS(5539), 1, aux_sym_concatenation_token1, - ACTIONS(5654), 1, + ACTIONS(5541), 1, sym__concat, - STATE(1357), 1, + STATE(1326), 1, aux_sym_concatenation_repeat1, - ACTIONS(5069), 6, + ACTIONS(5167), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5067), 37, + ACTIONS(5165), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -130714,6 +129423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -130741,17 +129451,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63256] = 3, + [61514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 6, + ACTIONS(1322), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 40, + ACTIONS(1320), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -130762,6 +129471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -130792,21 +129502,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63310] = 6, + [61568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5536), 1, - aux_sym_concatenation_token1, - ACTIONS(5538), 1, - sym__concat, - STATE(1457), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5391), 4, + ACTIONS(1330), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5389), 39, + ACTIONS(1328), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -130817,6 +129522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -130829,9 +129535,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -130845,24 +129551,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [63370] = 6, + [61622] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5648), 1, + ACTIONS(5539), 1, aux_sym_concatenation_token1, - ACTIONS(5654), 1, + ACTIONS(5541), 1, sym__concat, - STATE(1333), 1, + STATE(1328), 1, aux_sym_concatenation_repeat1, - ACTIONS(4554), 6, + ACTIONS(5175), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 37, + ACTIONS(5173), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -130873,6 +129579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -130900,23 +129607,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63430] = 6, + [61682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5648), 1, - aux_sym_concatenation_token1, - ACTIONS(5654), 1, - sym__concat, - STATE(1357), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4566), 6, + ACTIONS(1330), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 37, + ACTIONS(1328), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -130927,7 +129627,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -130940,6 +129643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -130954,23 +129658,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63490] = 6, + [61736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5648), 1, - aux_sym_concatenation_token1, - ACTIONS(5654), 1, - sym__concat, - STATE(1333), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2074), 6, + ACTIONS(1358), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2072), 37, + ACTIONS(1356), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -130981,7 +129678,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -130994,6 +129694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -131008,23 +129709,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63550] = 6, + [61790] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5634), 1, - aux_sym_concatenation_token1, - ACTIONS(5701), 1, - sym__concat, - STATE(1475), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 6, + ACTIONS(1346), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 37, + ACTIONS(1344), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131035,7 +129729,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -131045,8 +129742,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -131060,25 +129759,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [63610] = 6, + [61844] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5648), 1, - aux_sym_concatenation_token1, - ACTIONS(5654), 1, - sym__concat, - STATE(1333), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5391), 6, + ACTIONS(5551), 1, + sym__special_character, + STATE(1472), 1, + aux_sym__literal_repeat1, + ACTIONS(4428), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5389), 37, + ACTIONS(4426), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131089,7 +129784,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -131103,7 +129801,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [61902] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, sym__special_character, + STATE(1370), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1360), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -131116,16 +129866,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63670] = 3, + [61960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(1358), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 41, + ACTIONS(1356), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131167,20 +129917,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63724] = 5, + [62014] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5642), 1, + ACTIONS(5687), 1, sym__special_character, - STATE(1358), 1, + STATE(1370), 1, aux_sym__literal_repeat1, - ACTIONS(4566), 5, + ACTIONS(4502), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 39, + ACTIONS(4500), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131220,16 +129970,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63782] = 3, + [62072] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 5, + ACTIONS(5551), 1, + sym__special_character, + STATE(1472), 1, + aux_sym__literal_repeat1, + ACTIONS(4579), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 41, + ACTIONS(4577), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131256,7 +130010,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [62130] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5689), 1, aux_sym_concatenation_token1, + ACTIONS(5691), 1, + sym__concat, + STATE(1461), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1286), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -131271,16 +130077,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63836] = 3, + [62190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 5, + ACTIONS(1326), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 41, + ACTIONS(1324), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131291,7 +130098,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -131322,32 +130128,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63890] = 3, + [62244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 6, + ACTIONS(1350), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 40, + ACTIONS(1348), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -131359,6 +130164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -131373,23 +130179,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63944] = 6, + [62298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5648), 1, - aux_sym_concatenation_token1, - ACTIONS(5654), 1, - sym__concat, - STATE(1357), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 6, + ACTIONS(1334), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 37, + ACTIONS(1332), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131401,6 +130201,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -131413,6 +130215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -131427,16 +130230,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [64004] = 3, + [62352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 5, + ACTIONS(1354), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 41, + ACTIONS(1352), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131447,7 +130251,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -131478,23 +130281,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [64058] = 6, + [62406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5648), 1, - aux_sym_concatenation_token1, - ACTIONS(5654), 1, - sym__concat, - STATE(1357), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5395), 6, + ACTIONS(1302), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5393), 37, + ACTIONS(1300), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131505,7 +130301,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -131515,9 +130314,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -131531,18 +130330,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [64118] = 3, + [62460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1318), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, + ACTIONS(1316), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131583,17 +130383,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [64172] = 3, + [62514] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(5551), 1, + sym__special_character, + STATE(1472), 1, + aux_sym__literal_repeat1, + ACTIONS(5317), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 40, + ACTIONS(5315), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131604,6 +130407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -131619,9 +130423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -131634,17 +130436,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [64226] = 3, + [62572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(1338), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 40, + ACTIONS(1336), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131667,6 +130469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -131683,19 +130486,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [64280] = 3, + [62626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 6, + ACTIONS(1302), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 40, + ACTIONS(1300), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131718,7 +130520,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -131735,22 +130536,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [64334] = 6, + [62680] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5703), 1, - aux_sym_concatenation_token1, - ACTIONS(5706), 1, - sym__concat, - STATE(1412), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1253), 4, + ACTIONS(5565), 1, + sym__special_character, + STATE(1408), 1, + aux_sym__literal_repeat1, + ACTIONS(5325), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 39, + ACTIONS(5323), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131761,6 +130562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -131776,7 +130578,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -131790,16 +130591,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [64394] = 3, + [62738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 5, + ACTIONS(1326), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 41, + ACTIONS(1324), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131810,7 +130612,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -131823,7 +130624,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -131840,18 +130640,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [64448] = 3, + [62792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 6, + ACTIONS(1350), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 40, + ACTIONS(1348), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131892,21 +130693,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [64502] = 6, + [62846] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5644), 1, + ACTIONS(5689), 1, aux_sym_concatenation_token1, - ACTIONS(5709), 1, + ACTIONS(5693), 1, sym__concat, - STATE(1412), 1, + STATE(1479), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 4, + ACTIONS(5317), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 39, + ACTIONS(5315), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131917,6 +130718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -131944,19 +130746,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [64562] = 3, + [62906] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 6, - sym_file_descriptor, + ACTIONS(5689), 1, + aux_sym_concatenation_token1, + ACTIONS(5693), 1, sym__concat, - sym_variable_name, + STATE(1374), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5321), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 40, + ACTIONS(5319), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131967,6 +130772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -131981,7 +130787,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -131995,18 +130800,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [64616] = 3, + [62966] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 5, + ACTIONS(1334), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 41, + ACTIONS(1332), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -132017,7 +130822,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -132048,16 +130852,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [64670] = 3, + [63020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 5, + ACTIONS(1354), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 41, + ACTIONS(1352), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -132068,7 +130873,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -132099,17 +130903,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [64724] = 3, + [63074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 6, + ACTIONS(1338), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 40, + ACTIONS(1336), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -132150,35 +130954,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [64778] = 6, + [63128] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5644), 1, - aux_sym_concatenation_token1, - ACTIONS(5711), 1, - sym__concat, - STATE(1412), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 4, + ACTIONS(5695), 1, + sym__special_character, + STATE(1307), 1, + aux_sym__literal_repeat1, + ACTIONS(4428), 6, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 39, + ACTIONS(4426), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -132187,10 +130991,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -132202,24 +131006,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [64838] = 6, + [63186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5638), 1, - aux_sym_concatenation_token1, - ACTIONS(5713), 1, - sym__concat, - STATE(1363), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 5, + ACTIONS(1358), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 38, + ACTIONS(1356), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -132230,8 +131028,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -132244,6 +131043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -132258,16 +131058,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [64898] = 3, + [63240] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 5, + ACTIONS(1346), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 41, + ACTIONS(1344), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -132278,7 +131079,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -132291,6 +131091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -132307,18 +131108,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [64952] = 3, + [63294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 5, + ACTIONS(1358), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 41, + ACTIONS(1356), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -132329,7 +131130,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -132342,6 +131142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -132358,19 +131159,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [65006] = 3, + [63348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1306), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, + ACTIONS(1304), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -132381,6 +131180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -132411,129 +131211,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65060] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5614), 1, - anon_sym_DQUOTE, - ACTIONS(5719), 1, - sym_variable_name, - STATE(3393), 1, - sym_string, - ACTIONS(5717), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(5715), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 29, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [65124] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5614), 1, - anon_sym_DQUOTE, - ACTIONS(5719), 1, - sym_variable_name, - STATE(3393), 1, - sym_string, - ACTIONS(5717), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(5715), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 29, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [65188] = 3, + [63402] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 6, - sym_file_descriptor, + ACTIONS(5561), 1, + aux_sym_concatenation_token1, + ACTIONS(5697), 1, sym__concat, - sym_variable_name, + STATE(1322), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 40, + ACTIONS(1272), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -132556,10 +131248,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -132573,32 +131263,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [65242] = 3, + [63462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 6, + ACTIONS(1258), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 40, + ACTIONS(1251), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -132610,7 +131302,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -132625,20 +131316,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65296] = 5, + [63516] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5662), 1, - sym__special_character, - STATE(1433), 1, - aux_sym__literal_repeat1, - ACTIONS(5723), 5, + ACTIONS(5539), 1, + aux_sym_concatenation_token1, + ACTIONS(5541), 1, + sym__concat, + STATE(1328), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2173), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5721), 39, + ACTIONS(2171), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -132649,10 +131342,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -132666,6 +131357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -132678,17 +131370,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65354] = 3, + [63576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(1346), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 40, + ACTIONS(1344), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -132711,7 +131403,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -132728,36 +131419,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [65408] = 5, + [63630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5652), 1, - sym__special_character, - STATE(1313), 1, - aux_sym__literal_repeat1, - ACTIONS(4548), 6, + ACTIONS(1358), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4546), 38, + ACTIONS(1356), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -132766,10 +131454,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -132781,17 +131470,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [65466] = 3, + [63684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 5, + ACTIONS(1278), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 41, + ACTIONS(1276), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -132815,6 +131505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -132831,37 +131522,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [65520] = 5, + [63738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, - sym__special_character, - STATE(1433), 1, - aux_sym__literal_repeat1, - ACTIONS(1364), 5, + ACTIONS(1274), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 39, + ACTIONS(1272), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -132874,6 +131561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -132886,16 +131574,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65578] = 3, + [63792] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, - sym_file_descriptor, + ACTIONS(5583), 1, + aux_sym_concatenation_token1, + ACTIONS(5585), 1, sym__concat, + STATE(1433), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5167), 6, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 41, + ACTIONS(5165), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -132906,10 +131601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -132921,7 +131613,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -132937,16 +131628,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [65632] = 3, + [63852] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, - sym_file_descriptor, + ACTIONS(5583), 1, + aux_sym_concatenation_token1, + ACTIONS(5585), 1, sym__concat, + STATE(1439), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5175), 6, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 41, + ACTIONS(5173), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -132957,10 +131655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -132972,7 +131667,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -132988,35 +131682,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [65686] = 5, + [63912] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5642), 1, - sym__special_character, - STATE(1358), 1, - aux_sym__literal_repeat1, - ACTIONS(4469), 5, + ACTIONS(5543), 1, + aux_sym_concatenation_token1, + ACTIONS(5545), 1, + sym__concat, + STATE(1409), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 39, + ACTIONS(1272), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -133029,6 +131723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -133041,16 +131736,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65744] = 3, + [63972] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, - sym_file_descriptor, + ACTIONS(5543), 1, + aux_sym_concatenation_token1, + ACTIONS(5545), 1, sym__concat, + STATE(1426), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2169), 6, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 41, + ACTIONS(2167), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -133061,10 +131763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -133074,9 +131773,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -133090,18 +131789,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [65798] = 3, + [64032] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, + ACTIONS(5699), 1, + sym__special_character, + STATE(1408), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 41, + ACTIONS(1360), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -133127,7 +131829,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [64090] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5543), 1, aux_sym_concatenation_token1, + ACTIONS(5702), 1, + sym__concat, + STATE(1434), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1266), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -133141,18 +131896,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [65852] = 3, + [64150] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 5, + ACTIONS(5695), 1, + sym__special_character, + STATE(1307), 1, + aux_sym__literal_repeat1, + ACTIONS(4506), 6, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4504), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [64208] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 41, + ACTIONS(1296), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -133176,6 +131983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -133192,19 +132000,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [65906] = 3, + [64262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 6, + ACTIONS(1306), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 40, + ACTIONS(1304), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -133227,6 +132034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -133243,38 +132051,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [65960] = 6, + [64316] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5540), 1, - aux_sym_concatenation_token1, - ACTIONS(5728), 1, - sym__concat, - STATE(1451), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 4, + ACTIONS(5695), 1, + sym__special_character, + STATE(1307), 1, + aux_sym__literal_repeat1, + ACTIONS(4579), 6, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 39, + ACTIONS(4577), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -133283,10 +132089,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -133299,17 +132105,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66020] = 3, + [64374] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 6, - sym_file_descriptor, + ACTIONS(5539), 1, + aux_sym_concatenation_token1, + ACTIONS(5541), 1, sym__concat, + STATE(1326), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5317), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 40, + ACTIONS(5315), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -133320,9 +132131,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -133332,9 +132142,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -133348,25 +132158,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [66074] = 6, + [64434] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5634), 1, + ACTIONS(5539), 1, aux_sym_concatenation_token1, - ACTIONS(5730), 1, + ACTIONS(5541), 1, sym__concat, - STATE(1475), 1, + STATE(1328), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 6, + ACTIONS(5321), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 37, + ACTIONS(5319), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -133377,6 +132185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -133387,6 +132196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -133402,23 +132212,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [66134] = 6, + [64494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5540), 1, - aux_sym_concatenation_token1, - ACTIONS(5732), 1, + ACTIONS(1278), 6, + sym_file_descriptor, sym__concat, - STATE(1451), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 4, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1276), 40, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [64548] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 39, + ACTIONS(1308), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -133442,8 +132297,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -133458,35 +132315,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66194] = 6, + [64602] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5638), 1, - aux_sym_concatenation_token1, - ACTIONS(5640), 1, - sym__concat, - STATE(1421), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 5, + ACTIONS(5695), 1, + sym__special_character, + STATE(1307), 1, + aux_sym__literal_repeat1, + ACTIONS(4502), 6, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 38, + ACTIONS(4500), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -133499,7 +132356,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -133512,23 +132368,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66254] = 6, + [64660] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5648), 1, + ACTIONS(5543), 1, aux_sym_concatenation_token1, - ACTIONS(5654), 1, + ACTIONS(5545), 1, sym__concat, - STATE(1333), 1, + STATE(1409), 1, aux_sym_concatenation_repeat1, - ACTIONS(2096), 6, + ACTIONS(4428), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2094), 37, + ACTIONS(4426), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -133566,22 +132422,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66314] = 6, + [64720] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5664), 1, + ACTIONS(5547), 1, aux_sym_concatenation_token1, - ACTIONS(5734), 1, + ACTIONS(5549), 1, sym__concat, - STATE(1371), 1, + STATE(1437), 1, aux_sym_concatenation_repeat1, - ACTIONS(1267), 5, + ACTIONS(5317), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 38, + ACTIONS(5315), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -133592,8 +132447,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -133603,6 +132459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -133618,22 +132475,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [66374] = 5, + [64780] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5736), 1, - sym__special_character, - STATE(1448), 1, - aux_sym__literal_repeat1, - ACTIONS(1364), 5, + ACTIONS(5547), 1, + aux_sym_concatenation_token1, + ACTIONS(5549), 1, + sym__concat, + STATE(1454), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5321), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 39, + ACTIONS(5319), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -133644,7 +132501,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -133657,9 +132513,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -133671,19 +132529,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [66432] = 3, + [64840] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 6, - sym_file_descriptor, + ACTIONS(5543), 1, + aux_sym_concatenation_token1, + ACTIONS(5545), 1, sym__concat, + STATE(1426), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4513), 6, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 40, + ACTIONS(4511), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -133695,8 +132558,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -133709,7 +132570,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -133724,31 +132584,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66486] = 3, + [64900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 5, + ACTIONS(4513), 5, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 41, + ACTIONS(4511), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -133757,9 +132618,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -133773,175 +132634,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [66540] = 6, - ACTIONS(3), 1, + [64954] = 9, + ACTIONS(71), 1, sym_comment, - ACTIONS(5739), 1, - aux_sym_concatenation_token1, - ACTIONS(5742), 1, - sym__concat, - STATE(1451), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1253), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(5704), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(5706), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5708), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5710), 1, anon_sym_BQUOTE, + ACTIONS(5712), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [66600] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1334), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(2589), 3, + sym_string, + sym_expansion, + sym_command_substitution, + ACTIONS(5472), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [66654] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 5, - sym_file_descriptor, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5470), 24, sym__concat, sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [66708] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [65020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 6, + ACTIONS(1314), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 40, + ACTIONS(1312), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -133952,6 +132712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -133982,16 +132743,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66762] = 3, + [65074] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, - sym_file_descriptor, + ACTIONS(5543), 1, + aux_sym_concatenation_token1, + ACTIONS(5714), 1, sym__concat, + STATE(1434), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 6, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 41, + ACTIONS(1286), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -134002,10 +132770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -134015,9 +132780,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -134031,33 +132796,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [66816] = 3, + [65134] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(4595), 5, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 41, + ACTIONS(4593), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -134066,9 +132831,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -134082,37 +132847,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [66870] = 6, + [65188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5536), 1, - aux_sym_concatenation_token1, - ACTIONS(5745), 1, - sym__concat, - STATE(1347), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 4, + ACTIONS(1274), 6, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 39, + ACTIONS(1272), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -134138,31 +132899,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66930] = 3, + [65242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 5, + ACTIONS(4519), 5, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 41, + ACTIONS(4517), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -134171,9 +132933,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -134187,18 +132949,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [66984] = 3, + [65296] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, - sym_file_descriptor, + ACTIONS(5579), 1, + aux_sym_concatenation_token1, + ACTIONS(5609), 1, sym__concat, + STATE(1337), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5325), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 41, + ACTIONS(5323), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -134209,10 +132976,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -134224,7 +132989,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -134240,23 +133004,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [67038] = 6, + [65356] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5634), 1, + ACTIONS(5579), 1, aux_sym_concatenation_token1, - ACTIONS(5636), 1, + ACTIONS(5609), 1, sym__concat, - STATE(1398), 1, + STATE(1340), 1, aux_sym_concatenation_repeat1, - ACTIONS(1263), 6, + ACTIONS(5329), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 37, + ACTIONS(5327), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -134267,6 +133030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -134294,31 +133058,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [67098] = 3, + [65416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 5, + ACTIONS(1258), 6, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 41, + ACTIONS(1251), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -134330,7 +133095,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -134345,16 +133109,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67152] = 3, + [65470] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 5, - sym_file_descriptor, + ACTIONS(5583), 1, + aux_sym_concatenation_token1, + ACTIONS(5716), 1, sym__concat, + STATE(1445), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 6, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 41, + ACTIONS(1266), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -134365,10 +133136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -134378,10 +133146,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -134395,17 +133161,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [67206] = 3, + [65530] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 5, - sym_file_descriptor, + ACTIONS(5718), 1, + aux_sym_concatenation_token1, + ACTIONS(5721), 1, sym__concat, + STATE(1434), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 6, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 41, + ACTIONS(1276), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -134416,10 +133190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -134432,7 +133203,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -134447,16 +133217,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67260] = 3, + [65590] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 5, - sym_file_descriptor, + ACTIONS(5539), 1, + aux_sym_concatenation_token1, + ACTIONS(5541), 1, sym__concat, + STATE(1328), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2169), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 41, + ACTIONS(2167), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -134467,10 +133243,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -134483,7 +133257,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -134498,17 +133271,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67314] = 3, + [65650] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 6, - sym_file_descriptor, + ACTIONS(5539), 1, + aux_sym_concatenation_token1, + ACTIONS(5541), 1, sym__concat, + STATE(1326), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4428), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 40, + ACTIONS(4426), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -134519,9 +133297,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -134534,7 +133311,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -134549,17 +133325,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67368] = 3, + [65710] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 6, - sym_file_descriptor, + ACTIONS(5547), 1, + aux_sym_concatenation_token1, + ACTIONS(5724), 1, sym__concat, - sym_variable_name, + STATE(1458), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 40, + ACTIONS(1266), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -134585,7 +133365,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -134600,22 +133379,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67422] = 6, + [65770] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5664), 1, + ACTIONS(5539), 1, aux_sym_concatenation_token1, - ACTIONS(5666), 1, + ACTIONS(5541), 1, sym__concat, - STATE(1447), 1, + STATE(1328), 1, aux_sym_concatenation_repeat1, - ACTIONS(5069), 5, + ACTIONS(4513), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5067), 38, + ACTIONS(4511), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -134637,6 +133416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -134652,23 +133432,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [67482] = 6, + [65830] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5536), 1, + ACTIONS(5583), 1, aux_sym_concatenation_token1, - ACTIONS(5538), 1, + ACTIONS(5726), 1, sym__concat, - STATE(1311), 1, + STATE(1445), 1, aux_sym_concatenation_repeat1, - ACTIONS(1263), 4, + ACTIONS(1288), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 39, + ACTIONS(1286), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -134680,8 +133461,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -134691,7 +133470,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -134707,18 +133485,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [67542] = 3, + [65890] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 6, - sym_file_descriptor, + ACTIONS(5579), 1, + aux_sym_concatenation_token1, + ACTIONS(5609), 1, sym__concat, + STATE(1337), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5167), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 40, + ACTIONS(5165), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -134729,9 +133513,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -134743,7 +133526,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -134759,22 +133541,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [67596] = 6, + [65950] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5664), 1, + ACTIONS(5561), 1, aux_sym_concatenation_token1, - ACTIONS(5666), 1, + ACTIONS(5697), 1, sym__concat, - STATE(1383), 1, + STATE(1322), 1, aux_sym_concatenation_repeat1, - ACTIONS(5375), 5, + ACTIONS(5509), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5373), 38, + ACTIONS(5507), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -134785,8 +133566,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -134813,16 +133595,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [67656] = 3, + [66010] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, - sym_file_descriptor, + ACTIONS(5561), 1, + aux_sym_concatenation_token1, + ACTIONS(5697), 1, sym__concat, + STATE(1336), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5515), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 41, + ACTIONS(5513), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -134833,7 +133620,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -134846,10 +133632,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -134863,18 +133647,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [67710] = 3, + [66070] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 6, - sym_file_descriptor, + ACTIONS(5579), 1, + aux_sym_concatenation_token1, + ACTIONS(5609), 1, sym__concat, + STATE(1340), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5175), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 40, + ACTIONS(5173), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -134885,9 +133675,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -134899,7 +133688,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -134915,31 +133703,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [67764] = 3, + [66130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(4523), 5, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 41, + ACTIONS(4521), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -134951,7 +133740,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -134966,20 +133754,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67818] = 5, + [66184] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5662), 1, - sym__special_character, - STATE(1433), 1, - aux_sym__literal_repeat1, - ACTIONS(5395), 5, + ACTIONS(5728), 1, + aux_sym_concatenation_token1, + ACTIONS(5731), 1, + sym__concat, + STATE(1445), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5393), 39, + ACTIONS(1276), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -134990,11 +133781,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [66244] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5403), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5401), 41, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -135007,6 +133846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -135019,23 +133859,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67876] = 6, + [66298] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5747), 1, + ACTIONS(5543), 1, aux_sym_concatenation_token1, - ACTIONS(5750), 1, + ACTIONS(5545), 1, sym__concat, - STATE(1475), 1, + STATE(1426), 1, aux_sym_concatenation_repeat1, - ACTIONS(1253), 6, + ACTIONS(2173), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 37, + ACTIONS(2171), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -135056,6 +133896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -135071,18 +133912,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [67936] = 3, + [66358] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 5, - sym_file_descriptor, + ACTIONS(5543), 1, + aux_sym_concatenation_token1, + ACTIONS(5545), 1, sym__concat, + STATE(1409), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4579), 6, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 41, + ACTIONS(4577), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -135093,10 +133940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -135109,7 +133953,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -135124,16 +133967,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67990] = 3, + [66418] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, - sym_file_descriptor, + ACTIONS(5543), 1, + aux_sym_concatenation_token1, + ACTIONS(5545), 1, sym__concat, + STATE(1426), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4595), 6, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 41, + ACTIONS(4593), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -135144,10 +133994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -135160,7 +134007,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -135175,16 +134021,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [68044] = 3, + [66478] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 5, - sym_file_descriptor, + ACTIONS(5583), 1, + aux_sym_concatenation_token1, + ACTIONS(5585), 1, sym__concat, + STATE(1433), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 6, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 41, + ACTIONS(1272), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -135195,10 +134048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -135210,7 +134060,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -135226,16 +134075,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [68098] = 3, + [66538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 5, + ACTIONS(1342), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 41, + ACTIONS(1340), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -135259,6 +134108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -135275,22 +134125,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [68152] = 5, + [66592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5681), 1, - sym__special_character, - STATE(1448), 1, - aux_sym__literal_repeat1, - ACTIONS(5069), 5, + ACTIONS(1294), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5067), 39, + ACTIONS(1292), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -135314,9 +134159,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -135328,24 +134176,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [68210] = 6, + [66646] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5664), 1, + ACTIONS(5687), 1, + sym__special_character, + STATE(1370), 1, + aux_sym__literal_repeat1, + ACTIONS(4428), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4426), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [66704] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5547), 1, aux_sym_concatenation_token1, - ACTIONS(5666), 1, + ACTIONS(5734), 1, sym__concat, - STATE(1663), 1, + STATE(1458), 1, aux_sym_concatenation_repeat1, - ACTIONS(5180), 5, + ACTIONS(1288), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5178), 37, + ACTIONS(1286), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -135357,6 +134256,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -135366,6 +134267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -135381,32 +134283,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [68269] = 3, + [66764] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 7, + ACTIONS(5687), 1, + sym__special_character, + STATE(1370), 1, + aux_sym__literal_repeat1, + ACTIONS(4579), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 38, + ACTIONS(4577), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -135418,9 +134324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -135433,30 +134337,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [68322] = 3, + [66822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 7, + ACTIONS(1274), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 38, + ACTIONS(1272), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -135465,9 +134371,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -135481,25 +134387,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [68375] = 3, + [66876] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 6, + ACTIONS(5687), 1, + sym__special_character, + STATE(1370), 1, + aux_sym__literal_repeat1, + ACTIONS(4506), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 39, + ACTIONS(4504), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -135507,6 +134416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -135515,11 +134425,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -135531,18 +134440,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [68428] = 3, + [66934] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, - sym_file_descriptor, + ACTIONS(5736), 1, + aux_sym_concatenation_token1, + ACTIONS(5739), 1, sym__concat, + STATE(1458), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 40, + ACTIONS(1276), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -135568,7 +134481,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -135583,18 +134495,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [68481] = 3, + [66994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 7, + ACTIONS(1298), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 38, + ACTIONS(1296), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -135606,6 +134517,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -135615,6 +134528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -135631,20 +134545,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [68534] = 3, + [67048] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 7, - sym_file_descriptor, + ACTIONS(5689), 1, + aux_sym_concatenation_token1, + ACTIONS(5693), 1, sym__concat, - sym_variable_name, + STATE(1479), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 38, + ACTIONS(1272), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -135655,7 +134571,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -135667,7 +134586,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -135681,20 +134599,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [68587] = 3, + [67108] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 7, - sym_file_descriptor, + ACTIONS(5742), 1, + aux_sym_concatenation_token1, + ACTIONS(5745), 1, sym__concat, - sym_variable_name, + STATE(1461), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 38, + ACTIONS(1276), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -135705,7 +134625,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -135717,7 +134640,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -135731,19 +134653,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [68640] = 3, + [67168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 6, + ACTIONS(1318), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 39, + ACTIONS(1316), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -135754,8 +134674,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -135783,18 +134705,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [68693] = 3, + [67222] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 7, + ACTIONS(1322), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 38, + ACTIONS(1320), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -135806,6 +134727,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -135815,6 +134738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -135831,20 +134755,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [68746] = 3, + [67276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 7, + ACTIONS(1306), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 38, + ACTIONS(1304), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -135855,7 +134776,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -135883,17 +134807,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [68799] = 3, + [67330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 6, + ACTIONS(1278), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 39, + ACTIONS(1276), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -135904,8 +134827,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -135933,18 +134858,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [68852] = 3, + [67384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 7, + ACTIONS(1326), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 38, + ACTIONS(1324), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -135955,7 +134878,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -135983,18 +134909,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [68905] = 3, + [67438] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 7, + ACTIONS(1330), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 38, + ACTIONS(1328), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -136006,6 +134931,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -136015,6 +134942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -136031,20 +134959,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [68958] = 3, + [67492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 7, + ACTIONS(1350), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 38, + ACTIONS(1348), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -136055,7 +134980,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -136083,16 +135011,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [69011] = 3, + [67546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 5, + ACTIONS(1334), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 40, + ACTIONS(1332), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -136103,6 +135031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -136133,16 +135062,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [69064] = 3, + [67600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 5, + ACTIONS(1298), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 40, + ACTIONS(1296), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -136153,6 +135082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -136165,7 +135095,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -136182,17 +135111,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [69117] = 3, + [67654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5375), 5, + ACTIONS(1354), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5373), 40, + ACTIONS(1352), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -136218,6 +135148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -136233,17 +135164,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [69170] = 3, + [67708] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 6, + ACTIONS(5748), 1, + sym__special_character, + STATE(1472), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 39, + ACTIONS(1360), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -136254,8 +135188,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -136265,11 +135201,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -136281,20 +135216,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [69223] = 3, + [67766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 7, + ACTIONS(1306), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 38, + ACTIONS(1304), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -136306,6 +135239,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -136333,16 +135268,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [69276] = 3, + [67820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 5, + ACTIONS(1278), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 40, + ACTIONS(1276), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -136353,7 +135289,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -136382,19 +135317,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [69329] = 3, + [67874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 7, + ACTIONS(1310), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 38, + ACTIONS(1308), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -136405,7 +135339,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -136433,16 +135370,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [69382] = 3, + [67928] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 5, - sym_file_descriptor, + ACTIONS(5539), 1, + aux_sym_concatenation_token1, + ACTIONS(5541), 1, sym__concat, + STATE(1328), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4595), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 40, + ACTIONS(4593), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -136453,9 +135396,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -136465,9 +135407,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -136481,18 +135423,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [69435] = 3, + [67988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, + ACTIONS(1314), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 40, + ACTIONS(1312), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -136532,19 +135473,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [69488] = 3, + [68042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 7, + ACTIONS(1338), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 38, + ACTIONS(1336), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -136555,7 +135495,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -136565,7 +135508,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -136582,17 +135524,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [69541] = 3, + [68096] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 5, - sym_file_descriptor, + ACTIONS(5689), 1, + aux_sym_concatenation_token1, + ACTIONS(5751), 1, sym__concat, + STATE(1461), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 40, + ACTIONS(1266), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -136618,7 +135566,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -136633,16 +135580,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [69594] = 3, + [68156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 5, + ACTIONS(1358), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 40, + ACTIONS(1356), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -136653,7 +135601,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -136682,31 +135629,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [69647] = 3, + [68210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 7, + ACTIONS(4595), 6, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 38, + ACTIONS(4593), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -136715,9 +135664,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -136731,22 +135680,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [69700] = 5, + [68263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5753), 1, - sym__special_character, - STATE(1608), 1, - aux_sym__literal_repeat1, - ACTIONS(4566), 5, + ACTIONS(1306), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 38, + ACTIONS(1304), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -136757,9 +135702,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -136769,10 +135713,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -136784,17 +135729,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [69757] = 3, + [68316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 5, + ACTIONS(1342), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 40, + ACTIONS(1340), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -136835,18 +135781,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [69810] = 3, + [68369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 7, + ACTIONS(1278), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 38, + ACTIONS(1276), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -136857,6 +135802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -136867,7 +135813,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -136884,23 +135829,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [69863] = 6, + [68422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5638), 1, - aux_sym_concatenation_token1, - ACTIONS(5640), 1, - sym__concat, - STATE(1661), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5375), 5, + ACTIONS(1294), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5373), 37, + ACTIONS(1292), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -136912,6 +135852,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -136924,6 +135866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -136938,66 +135881,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [69922] = 3, - ACTIONS(3), 1, + [68475] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(1342), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1115), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1119), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1173), 1, + anon_sym_BANG, + ACTIONS(1179), 1, + anon_sym_TILDE, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, + sym_test_operator, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + ACTIONS(5753), 1, + sym_extglob_pattern, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(2617), 1, + sym__extglob_blob, + STATE(3161), 1, + sym__expression, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [69975] = 3, + ACTIONS(1175), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1183), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2530), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [68578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(1318), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 40, + ACTIONS(1316), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -137008,10 +135977,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -137021,6 +135988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -137038,16 +136006,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70028] = 3, + [68631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 5, + ACTIONS(1330), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 40, + ACTIONS(1328), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -137058,7 +136026,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -137087,17 +136054,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [70081] = 3, + [68684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(1310), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 40, + ACTIONS(1308), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -137109,8 +136079,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -137138,16 +136106,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70134] = 3, + [68737] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5755), 1, + anon_sym_DQUOTE, + ACTIONS(5757), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5759), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5761), 1, + anon_sym_BQUOTE, + ACTIONS(5763), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2854), 3, + sym_string, + sym_expansion, + sym_command_substitution, + ACTIONS(5472), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5470), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [68802] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(5765), 1, + sym__special_character, + STATE(1581), 1, + aux_sym__literal_repeat1, + ACTIONS(5509), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, + ACTIONS(5507), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -137173,9 +136200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -137187,17 +136212,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [70187] = 3, + [68859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 5, + ACTIONS(1350), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 40, + ACTIONS(1348), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -137208,6 +136234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -137220,7 +136247,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -137238,30 +136264,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70240] = 3, + [68912] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 7, + ACTIONS(4513), 6, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 38, + ACTIONS(4511), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -137273,6 +136300,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [68965] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 6, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, @@ -137287,17 +136362,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [70293] = 3, + [69018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(1334), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 40, + ACTIONS(1332), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -137338,31 +136414,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70346] = 3, + [69071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4532), 6, + ACTIONS(1326), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4530), 39, + ACTIONS(1324), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -137371,9 +136446,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -137387,20 +136462,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [70399] = 5, + [69124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5755), 1, - sym__special_character, - STATE(1522), 1, - aux_sym__literal_repeat1, - ACTIONS(1364), 4, + ACTIONS(1350), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 39, + ACTIONS(1348), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -137411,7 +136484,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -137426,7 +136498,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -137440,22 +136514,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [70456] = 6, + [69177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5638), 1, - aux_sym_concatenation_token1, - ACTIONS(5640), 1, - sym__concat, - STATE(1660), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5069), 5, + ACTIONS(1334), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5067), 37, + ACTIONS(1332), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -137467,6 +136535,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -137476,9 +136546,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -137492,22 +136562,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [70515] = 6, + [69230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5758), 1, - aux_sym_concatenation_token1, - ACTIONS(5760), 1, - sym__concat, - STATE(1640), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5395), 4, + ACTIONS(1354), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5393), 38, + ACTIONS(1352), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -137532,6 +136598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -137545,17 +136612,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [70574] = 3, + [69283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 5, + ACTIONS(1302), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 40, + ACTIONS(1300), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -137566,10 +136635,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -137579,6 +136646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -137596,21 +136664,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70627] = 6, + [69336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5758), 1, - aux_sym_concatenation_token1, - ACTIONS(5760), 1, + ACTIONS(1298), 6, + sym_file_descriptor, sym__concat, - STATE(1645), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5391), 4, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1296), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [69389] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5389), 38, + ACTIONS(1312), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -137621,9 +136735,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -137635,6 +136748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -137648,17 +136762,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [70686] = 3, + [69442] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(5771), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5773), 1, + anon_sym_DOLLAR, + ACTIONS(5775), 1, + sym__special_character, + ACTIONS(5777), 1, + anon_sym_DQUOTE, + ACTIONS(5779), 1, + aux_sym_number_token1, + ACTIONS(5781), 1, + aux_sym_number_token2, + ACTIONS(5783), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5785), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5787), 1, + anon_sym_BQUOTE, + ACTIONS(5789), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5793), 1, + sym_test_operator, + ACTIONS(5795), 1, + sym__brace_start, + STATE(5617), 1, + aux_sym__literal_repeat1, + STATE(5836), 1, + sym_concatenation, + ACTIONS(2303), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5769), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5791), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5767), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5609), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2301), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [69531] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1338), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 40, + ACTIONS(1336), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -137681,7 +136864,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -137698,23 +136880,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [70739] = 6, + [69584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5762), 1, - aux_sym_concatenation_token1, - ACTIONS(5764), 1, - sym__concat, - STATE(1582), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 5, + ACTIONS(1314), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 37, + ACTIONS(1312), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -137726,6 +136903,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -137737,6 +136916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -137752,22 +136932,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [70798] = 6, + [69637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5638), 1, - aux_sym_concatenation_token1, - ACTIONS(5640), 1, - sym__concat, - STATE(1661), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4554), 5, + ACTIONS(5175), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 37, + ACTIONS(5173), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -137778,7 +136952,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -137805,16 +136982,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70857] = 3, + [69690] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 5, - sym_file_descriptor, + ACTIONS(5797), 1, + aux_sym_concatenation_token1, + ACTIONS(5799), 1, sym__concat, + STATE(1524), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 40, + ACTIONS(1266), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -137825,7 +137007,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -137840,7 +137021,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -137855,17 +137035,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70910] = 3, + [69749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(1342), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 39, + ACTIONS(1340), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -137876,8 +137055,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -137903,18 +137084,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [70963] = 3, + [69802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 5, + ACTIONS(1358), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 40, + ACTIONS(1356), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -137925,10 +137106,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -137954,17 +137133,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [71016] = 3, + [69855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 5, + ACTIONS(1346), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 40, + ACTIONS(1344), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -137975,10 +137156,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -138004,17 +137183,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [71069] = 3, + [69908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2096), 5, + ACTIONS(1358), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2094), 40, + ACTIONS(1356), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -138025,10 +137206,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -138038,9 +137217,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -138054,17 +137233,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [69961] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5771), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5773), 1, + anon_sym_DOLLAR, + ACTIONS(5775), 1, + sym__special_character, + ACTIONS(5777), 1, + anon_sym_DQUOTE, + ACTIONS(5779), 1, + aux_sym_number_token1, + ACTIONS(5781), 1, + aux_sym_number_token2, + ACTIONS(5783), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5785), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5787), 1, + anon_sym_BQUOTE, + ACTIONS(5789), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5795), 1, + sym__brace_start, + ACTIONS(5803), 1, + sym_test_operator, + STATE(5638), 1, + aux_sym__literal_repeat1, + STATE(5709), 1, + sym_concatenation, + ACTIONS(2307), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5769), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5791), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5801), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [71122] = 3, + STATE(5570), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2305), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [70050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 5, + ACTIONS(1294), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 40, + ACTIONS(1292), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -138090,6 +137338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -138103,24 +137352,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [71175] = 6, + [70103] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5664), 1, + ACTIONS(5805), 1, aux_sym_concatenation_token1, - ACTIONS(5666), 1, + ACTIONS(5807), 1, sym__concat, - STATE(1663), 1, + STATE(1544), 1, aux_sym_concatenation_repeat1, - ACTIONS(5069), 5, + ACTIONS(1268), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5067), 37, + ACTIONS(1266), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -138131,6 +137378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -138158,18 +137406,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [71234] = 3, + [70162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 7, + ACTIONS(1354), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 38, + ACTIONS(1352), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -138180,7 +137426,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -138206,12 +137455,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, + [70215] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5805), 1, + aux_sym_concatenation_token1, + ACTIONS(5809), 1, + sym__concat, + STATE(1544), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1286), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [71287] = 3, + [70274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 7, + ACTIONS(1302), 7, sym_file_descriptor, sym__concat, sym_variable_name, @@ -138219,7 +137520,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 38, + ACTIONS(1300), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -138240,6 +137541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -138256,22 +137558,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [71340] = 5, + [70327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5753), 1, - sym__special_character, - STATE(1608), 1, - aux_sym__literal_repeat1, - ACTIONS(4469), 5, + ACTIONS(1358), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 38, + ACTIONS(1356), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -138294,10 +137591,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -138309,19 +137607,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [71397] = 3, + [70380] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 7, + ACTIONS(1346), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 38, + ACTIONS(1344), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -138333,6 +137630,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -138360,17 +137659,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [71450] = 3, + [70433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1358), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 39, + ACTIONS(1356), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -138381,8 +137679,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -138392,7 +137691,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -138409,17 +137707,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [71503] = 3, + [70486] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5768), 5, + ACTIONS(5797), 1, + aux_sym_concatenation_token1, + ACTIONS(5811), 1, + sym__concat, + STATE(1524), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5766), 40, + ACTIONS(1286), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -138430,7 +137734,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -138458,33 +137761,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [71556] = 3, + [70545] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4372), 5, + ACTIONS(5813), 1, + sym__special_character, + STATE(1600), 1, + aux_sym__literal_repeat1, + ACTIONS(5317), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 40, + ACTIONS(5315), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -138497,7 +137802,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -138510,18 +137814,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [71609] = 3, + [70602] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 7, + ACTIONS(5815), 1, + sym__special_character, + STATE(1523), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 38, + ACTIONS(1360), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -138533,6 +137839,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -138542,12 +137850,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -138559,19 +137864,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [71662] = 3, + [70659] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 7, - sym_file_descriptor, + ACTIONS(5818), 1, + aux_sym_concatenation_token1, + ACTIONS(5821), 1, sym__concat, - sym_variable_name, + STATE(1524), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 38, + ACTIONS(1276), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -138583,6 +137892,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -138592,10 +137903,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -138610,16 +137919,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [71715] = 3, + [70718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 5, + ACTIONS(1318), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 40, + ACTIONS(1316), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -138630,7 +137939,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -138659,19 +137967,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [71768] = 3, + [70771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 7, + ACTIONS(1274), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 38, + ACTIONS(1272), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -138682,7 +137989,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -138694,7 +138004,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -138710,18 +138019,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [71821] = 3, + [70824] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 7, + ACTIONS(1306), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 38, + ACTIONS(1304), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -138732,6 +138040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -138742,6 +138051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -138758,20 +138068,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [71874] = 3, + [70877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 7, + ACTIONS(1326), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 38, + ACTIONS(1324), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -138783,6 +138090,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -138792,6 +138101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -138808,20 +138118,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [71927] = 3, + [70930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 7, + ACTIONS(1350), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 38, + ACTIONS(1348), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -138833,6 +138140,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -138860,16 +138169,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [71980] = 3, + [70983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 5, + ACTIONS(1334), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 40, + ACTIONS(1332), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -138880,7 +138189,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -138896,6 +138204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -138910,31 +138219,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72033] = 3, + [71036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5462), 6, + ACTIONS(1278), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5460), 39, + ACTIONS(1276), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -138946,6 +138254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -138960,18 +138269,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72086] = 3, + [71089] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 7, + ACTIONS(5824), 1, + sym__special_character, + STATE(1523), 1, + aux_sym__literal_repeat1, + ACTIONS(5167), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 38, + ACTIONS(5165), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -138983,6 +138294,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -138992,12 +138305,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -139009,19 +138319,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [72139] = 3, + [71146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 7, + ACTIONS(1354), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 38, + ACTIONS(1352), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -139033,6 +138342,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -139060,30 +138371,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72192] = 3, + [71199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 7, + ACTIONS(5403), 6, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 38, + ACTIONS(5401), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -139095,7 +138407,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -139110,16 +138421,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72245] = 3, + [71252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5772), 5, + ACTIONS(1338), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5770), 40, + ACTIONS(1336), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -139130,7 +138441,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -139146,6 +138456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -139160,22 +138471,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72298] = 6, + [71305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5762), 1, - aux_sym_concatenation_token1, - ACTIONS(5774), 1, - sym__concat, - STATE(1582), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, + ACTIONS(1318), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 37, + ACTIONS(1316), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -139186,7 +138491,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -139198,6 +138506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -139211,24 +138520,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [72357] = 6, + [71358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5664), 1, - aux_sym_concatenation_token1, - ACTIONS(5666), 1, - sym__concat, - STATE(1664), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5375), 5, + ACTIONS(1358), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5373), 37, + ACTIONS(1356), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -139240,6 +138542,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -139249,8 +138553,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -139264,24 +138570,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [72416] = 6, + [71411] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, + sym_word, + ACTIONS(248), 1, + anon_sym_LPAREN, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(258), 1, + anon_sym_DOLLAR, + ACTIONS(264), 1, + aux_sym_number_token1, + ACTIONS(266), 1, + aux_sym_number_token2, + ACTIONS(270), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym_test_operator, + ACTIONS(284), 1, + sym__brace_start, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1159), 1, + sym__special_character, + ACTIONS(1161), 1, + anon_sym_DQUOTE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + ACTIONS(5826), 1, + sym_extglob_pattern, + STATE(2623), 1, + aux_sym__literal_repeat1, + STATE(3052), 1, + sym__expression, + STATE(3121), 1, + sym__extglob_blob, + ACTIONS(103), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(105), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1153), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1163), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1169), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2976), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2498), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [71514] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5638), 1, - aux_sym_concatenation_token1, - ACTIONS(5640), 1, - sym__concat, - STATE(1660), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4566), 5, + ACTIONS(5828), 1, + sym__special_character, + STATE(1669), 1, + aux_sym__literal_repeat1, + ACTIONS(5317), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 37, + ACTIONS(5315), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -139293,6 +138671,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -139306,7 +138686,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -139319,22 +138698,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72475] = 6, + [71571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5638), 1, - aux_sym_concatenation_token1, - ACTIONS(5640), 1, - sym__concat, - STATE(1661), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2074), 5, + ACTIONS(1346), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2072), 37, + ACTIONS(1344), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -139346,6 +138719,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -139358,6 +138733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -139372,16 +138748,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72534] = 3, + [71624] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5768), 5, + ACTIONS(1358), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5766), 40, + ACTIONS(1356), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -139392,7 +138768,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -139408,6 +138783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -139422,39 +138798,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72587] = 10, + [71677] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4272), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5776), 1, - sym_variable_name, - STATE(6746), 1, - sym_subscript, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(5148), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4261), 3, + ACTIONS(5828), 1, + sym__special_character, + STATE(1669), 1, + aux_sym__literal_repeat1, + ACTIONS(4428), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - STATE(5366), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4270), 4, + aux_sym_heredoc_redirect_token1, + ACTIONS(4426), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4247), 28, - anon_sym_LPAREN_LPAREN, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -139462,11 +138833,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -139479,17 +138850,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72654] = 3, + [71734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 6, + ACTIONS(1302), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 39, + ACTIONS(1300), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -139500,8 +138870,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -139529,17 +138900,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [72707] = 3, + [71787] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, - sym_file_descriptor, + ACTIONS(5830), 1, + aux_sym_concatenation_token1, + ACTIONS(5833), 1, sym__concat, - sym_variable_name, + STATE(1544), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 39, + ACTIONS(1276), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -139561,10 +138936,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -139578,18 +138951,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [72760] = 3, + [71846] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(1318), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 39, + ACTIONS(1316), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -139611,7 +138985,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -139628,18 +139001,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [72813] = 3, + [71899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1322), 7, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 39, + ACTIONS(1320), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -139650,7 +139025,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -139679,34 +139053,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72866] = 5, + [71952] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5753), 1, - sym__special_character, - STATE(1608), 1, - aux_sym__literal_repeat1, - ACTIONS(5395), 5, - sym_file_descriptor, + ACTIONS(5838), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5840), 1, sym_variable_name, + STATE(6730), 1, + sym_subscript, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4705), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5836), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(5230), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4318), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5393), 38, + STATE(5297), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4304), 28, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -139714,11 +139094,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -139731,16 +139111,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72923] = 3, + [72021] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 5, + ACTIONS(5828), 1, + sym__special_character, + STATE(1669), 1, + aux_sym__literal_repeat1, + ACTIONS(4579), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 40, + ACTIONS(4577), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -139763,11 +139147,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -139779,18 +139162,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [72976] = 3, + [72078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 5, + ACTIONS(1302), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 40, + ACTIONS(1300), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -139801,6 +139183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -139829,32 +139212,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [73029] = 3, + [72131] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 7, - sym_file_descriptor, - sym__concat, + ACTIONS(5840), 1, sym_variable_name, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, + ACTIONS(5843), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + STATE(6730), 1, + sym_subscript, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4705), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5836), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + STATE(5230), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4318), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + STATE(5297), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4304), 28, + anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -139862,11 +139254,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -139881,17 +139271,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73082] = 3, + [72200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 6, + ACTIONS(1338), 7, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 39, + ACTIONS(1336), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -139902,7 +139293,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -139913,6 +139303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -139929,34 +139320,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [73135] = 6, + [72253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_concatenation_token1, - ACTIONS(4701), 1, - sym__concat, - STATE(1715), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 5, + ACTIONS(1274), 6, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 37, + ACTIONS(1272), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -139984,23 +139371,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73194] = 3, + [72306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4554), 5, + ACTIONS(1302), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 40, + ACTIONS(1300), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -140008,7 +139395,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -140017,9 +139403,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -140033,17 +139419,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [73247] = 3, + [72359] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5772), 5, + ACTIONS(5845), 1, + aux_sym_concatenation_token1, + ACTIONS(5847), 1, + sym__concat, + STATE(1656), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5509), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5770), 40, + ACTIONS(5507), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -140054,10 +139447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -140084,22 +139474,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [73300] = 6, + [72418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5638), 1, - aux_sym_concatenation_token1, - ACTIONS(5640), 1, - sym__concat, - STATE(1660), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5395), 5, + ACTIONS(1298), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5393), 37, + ACTIONS(1296), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -140110,7 +139494,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -140120,9 +139507,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -140137,105 +139524,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73359] = 28, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1187), 1, - sym_word, - ACTIONS(1189), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - anon_sym_TILDE, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - ACTIONS(5779), 1, - sym__special_character, - ACTIONS(5781), 1, - sym_extglob_pattern, - STATE(2648), 1, - sym__extglob_blob, - STATE(2717), 1, - aux_sym__literal_repeat1, - STATE(3004), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1191), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1193), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2503), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [73462] = 3, + [72471] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 5, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, sym_file_descriptor, - sym__concat, + ACTIONS(5861), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -140243,61 +139546,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [73515] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1310), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 40, - anon_sym_LPAREN_LPAREN, + ACTIONS(5851), 12, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -140312,16 +139578,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73568] = 3, + [72532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, + ACTIONS(1314), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 40, + ACTIONS(1312), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -140332,7 +139598,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -140345,6 +139610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -140362,18 +139628,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73621] = 3, + [72585] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 7, - sym_file_descriptor, + ACTIONS(5797), 1, + aux_sym_concatenation_token1, + ACTIONS(5863), 1, sym__concat, - sym_variable_name, + STATE(1507), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5317), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 38, + ACTIONS(5315), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -140385,6 +139654,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -140396,7 +139667,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -140410,18 +139680,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [73674] = 3, + [72644] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, - sym_file_descriptor, + ACTIONS(5797), 1, + aux_sym_concatenation_token1, + ACTIONS(5863), 1, sym__concat, + STATE(1521), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5321), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 40, + ACTIONS(5319), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -140432,7 +139706,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -140447,7 +139720,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -140462,22 +139734,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73727] = 6, + [72703] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5783), 1, + ACTIONS(5805), 1, aux_sym_concatenation_token1, - ACTIONS(5786), 1, + ACTIONS(5865), 1, sym__concat, - STATE(1582), 1, + STATE(1514), 1, aux_sym_concatenation_repeat1, - ACTIONS(1253), 5, + ACTIONS(1274), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 37, + ACTIONS(1272), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -140488,6 +139759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -140515,17 +139787,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [73786] = 3, + [72762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(1322), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 39, + ACTIONS(1320), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -140565,16 +139837,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73839] = 3, + [72815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1310), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 40, + ACTIONS(1308), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -140585,9 +139858,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -140615,16 +139887,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73892] = 3, + [72868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 5, + ACTIONS(1358), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 40, + ACTIONS(1356), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -140635,6 +139907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -140647,7 +139920,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -140665,30 +139937,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73945] = 3, + [72921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 6, + ACTIONS(4519), 6, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 39, + ACTIONS(4517), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -140700,7 +139973,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -140715,17 +139987,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73998] = 3, + [72974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(1346), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 39, + ACTIONS(1344), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -140736,8 +140007,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -140747,7 +140020,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -140765,16 +140037,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [74051] = 3, + [73027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1342), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 40, + ACTIONS(1340), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -140786,8 +140060,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -140797,6 +140069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -140813,19 +140086,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [74104] = 3, + [73080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 6, + ACTIONS(1358), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 39, + ACTIONS(1356), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -140836,8 +140107,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -140863,19 +140136,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [74157] = 3, + [73133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 6, + ACTIONS(1326), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 39, + ACTIONS(1324), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -140915,16 +140187,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [74210] = 3, + [73186] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, - sym_file_descriptor, + ACTIONS(5867), 1, + aux_sym_concatenation_token1, + ACTIONS(5869), 1, sym__concat, + STATE(1595), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5317), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 40, + ACTIONS(5315), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -140936,8 +140214,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -140947,9 +140223,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -140963,18 +140239,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [74263] = 3, + [73245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, + ACTIONS(1330), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 40, + ACTIONS(1328), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -140985,9 +140261,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -141015,16 +140290,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [74316] = 3, + [73298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(5873), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 40, + ACTIONS(5871), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141035,6 +140310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -141049,7 +140325,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -141065,16 +140340,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [74369] = 3, + [73351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1294), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 40, + ACTIONS(1292), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141086,8 +140363,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -141115,17 +140390,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [74422] = 3, + [73404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 6, + ACTIONS(1298), 7, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 39, + ACTIONS(1296), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141136,7 +140412,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -141147,6 +140422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -141163,24 +140439,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [74475] = 6, + [73457] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5638), 1, + ACTIONS(5867), 1, aux_sym_concatenation_token1, - ACTIONS(5640), 1, + ACTIONS(5869), 1, sym__concat, - STATE(1661), 1, + STATE(1596), 1, aux_sym_concatenation_repeat1, - ACTIONS(4372), 5, + ACTIONS(5321), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 37, + ACTIONS(5319), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141218,22 +140493,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [74534] = 6, + [73516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5762), 1, - aux_sym_concatenation_token1, - ACTIONS(5789), 1, - sym__concat, - STATE(1528), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 5, + ACTIONS(1326), 7, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 37, + ACTIONS(1324), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141254,8 +140525,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -141269,19 +140542,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [74593] = 3, + [73569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(1342), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 39, + ACTIONS(1340), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141292,8 +140563,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -141321,22 +140593,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [74646] = 6, + [73622] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5638), 1, - aux_sym_concatenation_token1, - ACTIONS(5640), 1, - sym__concat, - STATE(1660), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4469), 5, + ACTIONS(1294), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 37, + ACTIONS(1292), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141348,6 +140614,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -141357,9 +140625,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -141373,17 +140641,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [74705] = 3, + [73675] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 5, - sym_file_descriptor, + ACTIONS(5875), 1, + aux_sym_concatenation_token1, + ACTIONS(5877), 1, sym__concat, + STATE(1611), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5321), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 40, + ACTIONS(5319), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141394,9 +140668,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -141406,9 +140679,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -141422,24 +140695,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [74758] = 6, + [73734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5638), 1, - aux_sym_concatenation_token1, - ACTIONS(5640), 1, - sym__concat, - STATE(1661), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2096), 5, + ACTIONS(1330), 7, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2094), 37, + ACTIONS(1328), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141463,6 +140731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -141477,22 +140746,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [74817] = 6, + [73787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5664), 1, - aux_sym_concatenation_token1, - ACTIONS(5666), 1, - sym__concat, - STATE(1664), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5176), 5, + ACTIONS(1350), 7, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5174), 37, + ACTIONS(1348), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141513,8 +140778,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -141528,77 +140795,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [74876] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5791), 1, - anon_sym_DQUOTE, - ACTIONS(5793), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5795), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5797), 1, - anon_sym_BQUOTE, - ACTIONS(5799), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2865), 3, - sym_string, - sym_expansion, - sym_command_substitution, - ACTIONS(5435), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5433), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [74941] = 5, + [73840] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5801), 1, + ACTIONS(5879), 1, sym__special_character, - STATE(1604), 1, + STATE(1581), 1, aux_sym__literal_repeat1, - ACTIONS(1364), 4, + ACTIONS(1362), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 39, + ACTIONS(1360), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141622,7 +140832,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -141637,19 +140846,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [74998] = 3, + [73897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 7, + ACTIONS(1334), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 38, + ACTIONS(1332), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141660,6 +140869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -141688,20 +140898,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [75051] = 5, + [73950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5753), 1, - sym__special_character, - STATE(1608), 1, - aux_sym__literal_repeat1, - ACTIONS(5723), 5, + ACTIONS(1306), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5721), 38, + ACTIONS(1304), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141712,6 +140918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -141724,10 +140931,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -141740,16 +140948,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [75108] = 3, + [74003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2074), 5, + ACTIONS(5175), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2072), 40, + ACTIONS(5173), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141773,7 +140981,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -141789,21 +140996,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [75161] = 5, + [74056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 1, - sym__special_character, - STATE(1608), 1, - aux_sym__literal_repeat1, - ACTIONS(1364), 5, + ACTIONS(1322), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 38, + ACTIONS(1320), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141829,7 +141033,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -141842,16 +141048,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [75218] = 3, + [74109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 5, + ACTIONS(1322), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 40, + ACTIONS(1320), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141862,6 +141068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -141890,18 +141097,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [75271] = 3, + [74162] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 5, - sym_file_descriptor, + ACTIONS(5797), 1, + aux_sym_concatenation_token1, + ACTIONS(5863), 1, sym__concat, + STATE(1507), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 40, + ACTIONS(1272), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141926,7 +141137,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -141940,25 +141150,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [75324] = 3, + [74221] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(299), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(303), 1, + anon_sym_DOLLAR, + ACTIONS(307), 1, + anon_sym_DQUOTE, + ACTIONS(311), 1, + aux_sym_number_token1, + ACTIONS(313), 1, + aux_sym_number_token2, + ACTIONS(315), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(317), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(321), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(327), 1, + sym__brace_start, + ACTIONS(1073), 1, + sym_word, + ACTIONS(1075), 1, + anon_sym_LPAREN, + ACTIONS(1077), 1, + anon_sym_BANG, + ACTIONS(1085), 1, + anon_sym_TILDE, + ACTIONS(1095), 1, + sym_test_operator, + ACTIONS(5882), 1, + sym__special_character, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + ACTIONS(5886), 1, + sym_extglob_pattern, + STATE(2503), 1, + aux_sym__literal_repeat1, + STATE(2842), 1, + sym__extglob_blob, + STATE(2877), 1, + sym__expression, + ACTIONS(288), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(323), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1081), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1083), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1091), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2884), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2556), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [74324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4465), 5, + ACTIONS(1338), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4463), 40, + ACTIONS(1336), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -141966,7 +141250,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -141978,6 +141261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -141992,16 +141276,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [75377] = 3, + [74377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(5890), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 40, + ACTIONS(5888), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -142012,6 +141296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -142026,7 +141311,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -142042,31 +141326,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [75430] = 3, + [74430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4554), 6, + ACTIONS(1314), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 39, + ACTIONS(1312), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -142078,6 +141361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -142092,17 +141376,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [75483] = 3, + [74483] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 6, - sym_file_descriptor, + ACTIONS(5805), 1, + aux_sym_concatenation_token1, + ACTIONS(5865), 1, sym__concat, - sym_variable_name, + STATE(1514), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5509), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 39, + ACTIONS(5507), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -142124,10 +141412,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -142141,92 +141427,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [75536] = 28, - ACTIONS(71), 1, - sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(350), 1, - sym_word, - ACTIONS(359), 1, - anon_sym_LPAREN, - ACTIONS(361), 1, - anon_sym_BANG, - ACTIONS(363), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, - anon_sym_DOLLAR, - ACTIONS(371), 1, - anon_sym_DQUOTE, - ACTIONS(375), 1, - aux_sym_number_token1, - ACTIONS(377), 1, - aux_sym_number_token2, - ACTIONS(379), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(389), 1, - sym_test_operator, - ACTIONS(391), 1, - sym__brace_start, - ACTIONS(5807), 1, - sym__special_character, - ACTIONS(5809), 1, - anon_sym_BQUOTE, - ACTIONS(5811), 1, - sym_extglob_pattern, - STATE(2641), 1, - aux_sym__literal_repeat1, - STATE(2950), 1, - sym__extglob_blob, - STATE(2963), 1, - sym__expression, - ACTIONS(183), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(185), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(352), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(373), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(387), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3071), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2521), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [75639] = 3, + [74542] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 5, - sym_file_descriptor, + ACTIONS(5805), 1, + aux_sym_concatenation_token1, + ACTIONS(5865), 1, sym__concat, + STATE(1516), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5515), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 40, + ACTIONS(5513), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -142237,9 +141454,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -142249,10 +141465,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -142266,17 +141480,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [75692] = 3, + [74601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 5, + ACTIONS(1306), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 40, + ACTIONS(1304), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -142288,8 +141505,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -142317,20 +141532,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [75745] = 5, + [74654] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5753), 1, - sym__special_character, - STATE(1608), 1, - aux_sym__literal_repeat1, - ACTIONS(5069), 5, + ACTIONS(5867), 1, + aux_sym_concatenation_token1, + ACTIONS(5892), 1, + sym__concat, + STATE(1597), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5067), 38, + ACTIONS(1266), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -142342,8 +141559,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -142357,6 +141572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -142369,17 +141585,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [75802] = 3, + [74713] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 6, - sym_file_descriptor, + ACTIONS(5867), 1, + aux_sym_concatenation_token1, + ACTIONS(5894), 1, sym__concat, - sym_variable_name, + STATE(1597), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 39, + ACTIONS(1286), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -142390,7 +141611,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -142401,9 +141621,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -142417,94 +141637,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [75855] = 28, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1179), 1, - anon_sym_TILDE, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, - sym_test_operator, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - ACTIONS(5781), 1, - sym_extglob_pattern, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(2648), 1, - sym__extglob_blob, - STATE(3051), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1175), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1177), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2456), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [75958] = 3, + [74772] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 6, - sym_file_descriptor, + ACTIONS(5896), 1, + aux_sym_concatenation_token1, + ACTIONS(5899), 1, sym__concat, - sym_variable_name, + STATE(1597), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 39, + ACTIONS(1276), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -142515,7 +141664,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -142529,7 +141677,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -142544,31 +141691,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76011] = 3, + [74831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4372), 6, + ACTIONS(1322), 7, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 39, + ACTIONS(1320), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -142577,9 +141723,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -142593,18 +141739,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [76064] = 3, + [74884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 6, + ACTIONS(1278), 7, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 39, + ACTIONS(1276), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -142615,7 +141763,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -142626,6 +141773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -142642,18 +141790,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [76117] = 3, + [74937] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(5902), 1, + sym__special_character, + STATE(1600), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, + ACTIONS(1360), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -142664,6 +141814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -142676,11 +141827,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -142692,20 +141842,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [76170] = 3, + [74994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 7, + ACTIONS(1330), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 38, + ACTIONS(1328), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -142717,6 +141864,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -142744,18 +141893,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76223] = 3, + [75047] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 7, - sym_file_descriptor, + ACTIONS(5867), 1, + aux_sym_concatenation_token1, + ACTIONS(5869), 1, sym__concat, - sym_variable_name, + STATE(1595), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 38, + ACTIONS(1272), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -142779,7 +141932,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -142794,34 +141946,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76276] = 9, + [75106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5776), 1, + ACTIONS(1322), 6, + sym_file_descriptor, + sym__concat, sym_variable_name, - STATE(6746), 1, - sym_subscript, - ACTIONS(4261), 2, sym_test_operator, sym__brace_start, - ACTIONS(4348), 2, - sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(5148), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(5366), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4253), 16, + ACTIONS(1320), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -142831,11 +141978,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - ACTIONS(4247), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -142849,18 +141994,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [76341] = 3, + [75159] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1097), 1, + sym_word, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1103), 1, + anon_sym_BANG, + ACTIONS(1109), 1, + anon_sym_TILDE, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DOLLAR, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, + aux_sym_number_token1, + ACTIONS(1125), 1, + aux_sym_number_token2, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1133), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1137), 1, + sym_test_operator, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + ACTIONS(5753), 1, + sym_extglob_pattern, + ACTIONS(5905), 1, + sym__special_character, + STATE(2593), 1, + aux_sym__literal_repeat1, + STATE(2617), 1, + sym__extglob_blob, + STATE(3086), 1, + sym__expression, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1105), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1107), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1121), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2554), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [75262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 6, + ACTIONS(1298), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 39, + ACTIONS(1296), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -142871,8 +142091,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -142882,7 +142103,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -142899,17 +142119,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [76394] = 3, + [75315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4554), 5, + ACTIONS(1342), 7, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 40, + ACTIONS(1340), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -142920,10 +142143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -142933,9 +142153,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -142949,23 +142169,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [76447] = 6, + [75368] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5907), 1, + anon_sym_DQUOTE, + ACTIONS(5909), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5911), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5913), 1, + anon_sym_BQUOTE, + ACTIONS(5915), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2819), 3, + sym_string, + sym_expansion, + sym_command_substitution, + ACTIONS(5472), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5470), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [75433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5813), 1, - aux_sym_concatenation_token1, - ACTIONS(5815), 1, - sym__concat, - STATE(1638), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5391), 5, + ACTIONS(1338), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5389), 37, + ACTIONS(1336), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -142976,7 +142247,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -142986,9 +142260,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -143003,19 +142277,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76506] = 5, + [75486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5817), 1, - sym__special_character, - STATE(1522), 1, - aux_sym__literal_repeat1, - ACTIONS(5478), 4, + ACTIONS(1294), 7, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5476), 39, + ACTIONS(1292), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -143026,10 +142299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -143041,7 +142311,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -143055,22 +142327,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [76563] = 6, + [75539] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5813), 1, + ACTIONS(5875), 1, aux_sym_concatenation_token1, - ACTIONS(5815), 1, + ACTIONS(5917), 1, sym__concat, - STATE(1637), 1, + STATE(1612), 1, aux_sym_concatenation_repeat1, - ACTIONS(5395), 5, + ACTIONS(1268), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5393), 37, + ACTIONS(1266), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -143081,6 +142352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -143108,17 +142380,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76622] = 3, + [75598] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 6, - sym_file_descriptor, + ACTIONS(5875), 1, + aux_sym_concatenation_token1, + ACTIONS(5919), 1, sym__concat, - sym_variable_name, + STATE(1612), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 39, + ACTIONS(1286), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -143143,7 +142419,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -143158,21 +142433,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76675] = 7, + [75657] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5921), 1, + aux_sym_concatenation_token1, + ACTIONS(5924), 1, + sym__concat, + STATE(1612), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 4, sym_file_descriptor, - ACTIONS(5831), 3, - sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5823), 11, + aux_sym_heredoc_redirect_token1, + ACTIONS(1276), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -143180,22 +142468,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5821), 12, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5819), 17, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -143212,21 +142486,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76736] = 7, + [75716] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5875), 1, + aux_sym_concatenation_token1, + ACTIONS(5877), 1, + sym__concat, + STATE(1610), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5317), 4, sym_file_descriptor, - ACTIONS(5831), 3, - sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5823), 11, + aux_sym_heredoc_redirect_token1, + ACTIONS(5315), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -143234,22 +142521,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5821), 12, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5819), 17, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -143266,98 +142539,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76797] = 28, - ACTIONS(71), 1, + [75775] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, + ACTIONS(5929), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4318), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(4304), 18, + anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1153), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1211), 1, - sym_word, - ACTIONS(1213), 1, - anon_sym_BANG, - ACTIONS(1219), 1, - anon_sym_TILDE, - ACTIONS(1221), 1, - sym__special_character, - ACTIONS(1225), 1, - sym_test_operator, - ACTIONS(3060), 1, anon_sym_BQUOTE, - ACTIONS(5781), 1, - sym_extglob_pattern, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(2648), 1, - sym__extglob_blob, - STATE(3333), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1215), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1217), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1223), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2588), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [76900] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5813), 1, - aux_sym_concatenation_token1, - ACTIONS(5833), 1, - sym__concat, - STATE(1649), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 5, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 37, - anon_sym_LPAREN_LPAREN, + sym_word, + ACTIONS(5927), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -143367,7 +142578,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -143377,39 +142591,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [76959] = 6, + [75832] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5813), 1, + ACTIONS(5875), 1, aux_sym_concatenation_token1, - ACTIONS(5835), 1, + ACTIONS(5877), 1, sym__concat, - STATE(1649), 1, + STATE(1610), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, + ACTIONS(1274), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 37, + ACTIONS(1272), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -143420,6 +142616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -143447,16 +142644,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [77018] = 3, + [75891] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4372), 5, + ACTIONS(1326), 7, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 40, + ACTIONS(1324), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -143467,10 +142666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -143480,9 +142676,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -143496,22 +142692,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [77071] = 6, + [75944] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5758), 1, - aux_sym_concatenation_token1, - ACTIONS(5837), 1, - sym__concat, - STATE(1659), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 4, + ACTIONS(5828), 1, + sym__special_character, + STATE(1669), 1, + aux_sym__literal_repeat1, + ACTIONS(5589), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 38, + ACTIONS(5587), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -143534,10 +142730,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -143550,16 +142746,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [77130] = 3, + [76001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 5, + ACTIONS(1330), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 40, + ACTIONS(1328), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -143570,10 +142768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -143599,17 +142794,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [77183] = 3, + [76054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 5, + ACTIONS(1350), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 40, + ACTIONS(1348), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -143620,10 +142818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -143649,21 +142844,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [77236] = 5, + [76107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5753), 1, - sym__special_character, - STATE(1608), 1, - aux_sym__literal_repeat1, - ACTIONS(5697), 5, + ACTIONS(1318), 7, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5695), 38, + ACTIONS(1316), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -143675,8 +142869,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -143689,7 +142881,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -143702,23 +142896,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [77293] = 3, + [76160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(4519), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 39, + ACTIONS(4517), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -143726,6 +142920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -143734,9 +142929,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -143750,23 +142945,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [77346] = 6, + [76213] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5758), 1, - aux_sym_concatenation_token1, - ACTIONS(5839), 1, - sym__concat, - STATE(1659), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 4, + ACTIONS(5824), 1, + sym__special_character, + STATE(1523), 1, + aux_sym__literal_repeat1, + ACTIONS(5325), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 38, + ACTIONS(5323), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -143792,7 +142985,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -143804,21 +142996,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [77405] = 5, + [76270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5841), 1, - sym__special_character, - STATE(1646), 1, - aux_sym__literal_repeat1, - ACTIONS(1364), 5, + ACTIONS(1302), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 38, + ACTIONS(1300), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -143841,9 +143030,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -143855,23 +143047,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [77462] = 6, + [76323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5844), 1, - aux_sym_concatenation_token1, - ACTIONS(5846), 1, - sym__concat, - STATE(1672), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5478), 4, + ACTIONS(4513), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5476), 38, + ACTIONS(4511), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -143882,8 +143068,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -143893,6 +143081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -143908,92 +143097,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [77521] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5848), 1, - anon_sym_DQUOTE, - ACTIONS(5850), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5852), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5854), 1, - anon_sym_BQUOTE, - ACTIONS(5856), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2862), 3, - sym_string, - sym_expansion, - sym_command_substitution, - ACTIONS(5435), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5433), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [77586] = 6, + [76376] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5858), 1, + ACTIONS(4910), 1, aux_sym_concatenation_token1, - ACTIONS(5861), 1, + ACTIONS(5931), 1, sym__concat, - STATE(1649), 1, + STATE(985), 1, aux_sym_concatenation_repeat1, - ACTIONS(1253), 5, + ACTIONS(1268), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 37, + ACTIONS(1266), 37, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, + anon_sym_LPAREN, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -144019,27 +143151,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [77645] = 6, + [76435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5844), 1, - aux_sym_concatenation_token1, - ACTIONS(5846), 1, - sym__concat, - STATE(1714), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5470), 4, + ACTIONS(4523), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5468), 38, + ACTIONS(4521), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -144047,6 +143175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -144055,6 +143184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -144070,19 +143200,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [77704] = 3, + [76488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(1306), 7, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 39, + ACTIONS(1304), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -144093,7 +143223,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -144104,7 +143233,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -144121,18 +143249,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [77757] = 3, + [76541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1278), 7, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 39, + ACTIONS(1276), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -144143,7 +143273,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -144172,137 +143301,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [77810] = 6, + [76594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_concatenation_token1, - ACTIONS(4701), 1, - sym__concat, - STATE(1715), 1, - aux_sym_concatenation_repeat1, - ACTIONS(278), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(241), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [77869] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5868), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5870), 1, - anon_sym_DOLLAR, - ACTIONS(5872), 1, - sym__special_character, - ACTIONS(5874), 1, - anon_sym_DQUOTE, - ACTIONS(5876), 1, - aux_sym_number_token1, - ACTIONS(5878), 1, - aux_sym_number_token2, - ACTIONS(5880), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5882), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5884), 1, - anon_sym_BQUOTE, - ACTIONS(5886), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5890), 1, - sym_test_operator, - ACTIONS(5892), 1, - sym__brace_start, - STATE(5674), 1, - aux_sym__literal_repeat1, - STATE(5738), 1, - sym_concatenation, - ACTIONS(2496), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5866), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5888), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5864), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5608), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2494), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [77958] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1322), 5, + ACTIONS(1342), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 40, + ACTIONS(1340), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -144313,9 +143322,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -144325,6 +143333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -144341,25 +143350,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [78011] = 3, + [76647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 5, + ACTIONS(1294), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 40, + ACTIONS(1292), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -144367,7 +143375,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -144379,6 +143386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -144393,16 +143401,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [78064] = 3, + [76700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 5, + ACTIONS(1326), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 40, + ACTIONS(1324), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -144413,9 +143422,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -144443,19 +143451,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [78117] = 5, + [76753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5894), 1, - sym__special_character, - STATE(1604), 1, - aux_sym__literal_repeat1, - ACTIONS(5395), 4, + ACTIONS(1318), 7, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5393), 39, + ACTIONS(1316), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -144466,10 +143473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -144479,10 +143483,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -144494,36 +143499,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [78174] = 6, + [76806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5896), 1, - aux_sym_concatenation_token1, - ACTIONS(5899), 1, - sym__concat, - STATE(1659), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1253), 4, + ACTIONS(5403), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 38, + ACTIONS(5401), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -144532,6 +143534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -144548,22 +143551,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [78233] = 6, + [76859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5638), 1, - aux_sym_concatenation_token1, - ACTIONS(5902), 1, - sym__concat, - STATE(1363), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 5, + ACTIONS(1334), 7, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 37, + ACTIONS(1332), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -144584,9 +143583,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -144600,76 +143599,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [78292] = 6, - ACTIONS(3), 1, + [76912] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(5638), 1, - aux_sym_concatenation_token1, - ACTIONS(5904), 1, - sym__concat, - STATE(1363), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1119), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1211), 1, + sym_word, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + anon_sym_TILDE, + ACTIONS(1221), 1, + sym__special_character, + ACTIONS(1225), 1, + sym_test_operator, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + ACTIONS(5753), 1, + sym_extglob_pattern, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(2617), 1, + sym__extglob_blob, + STATE(3395), 1, + sym__expression, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [78351] = 6, + ACTIONS(1215), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1217), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1223), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2732), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [77015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5638), 1, - aux_sym_concatenation_token1, - ACTIONS(5640), 1, - sym__concat, - STATE(1660), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 5, + ACTIONS(1354), 7, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 37, + ACTIONS(1352), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -144690,9 +143708,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -144706,23 +143724,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [78410] = 6, + [77068] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5664), 1, - aux_sym_concatenation_token1, - ACTIONS(5906), 1, - sym__concat, - STATE(1371), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 5, + ACTIONS(1358), 7, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 37, + ACTIONS(1356), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -144745,6 +143760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -144760,22 +143776,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [78469] = 6, + [77121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5664), 1, - aux_sym_concatenation_token1, - ACTIONS(5908), 1, - sym__concat, - STATE(1371), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, + ACTIONS(1346), 7, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 37, + ACTIONS(1344), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -144798,6 +143810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -144813,22 +143826,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [78528] = 6, + [77174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5664), 1, - aux_sym_concatenation_token1, - ACTIONS(5666), 1, - sym__concat, - STATE(1663), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 5, + ACTIONS(1358), 7, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 37, + ACTIONS(1356), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -144851,6 +143860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -144866,16 +143876,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [78587] = 3, + [77227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 5, + ACTIONS(1310), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 40, + ACTIONS(1308), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -144887,8 +143899,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -144916,16 +143926,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [78640] = 3, + [77280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5375), 5, + ACTIONS(1330), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5373), 40, + ACTIONS(1328), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -144936,10 +143947,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -144949,9 +143958,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -144965,18 +143974,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [78693] = 3, + [77333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 6, + ACTIONS(1302), 7, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 39, + ACTIONS(1300), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -144987,7 +143998,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -144998,7 +144008,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -145015,17 +144024,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [78746] = 3, + [77386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 5, + ACTIONS(1338), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 40, + ACTIONS(1336), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -145037,8 +144049,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -145048,7 +144058,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -145065,85 +144074,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [78799] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5868), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5870), 1, - anon_sym_DOLLAR, - ACTIONS(5872), 1, - sym__special_character, - ACTIONS(5874), 1, - anon_sym_DQUOTE, - ACTIONS(5876), 1, - aux_sym_number_token1, - ACTIONS(5878), 1, - aux_sym_number_token2, - ACTIONS(5880), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5882), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5884), 1, - anon_sym_BQUOTE, - ACTIONS(5886), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5892), 1, - sym__brace_start, - ACTIONS(5912), 1, - sym_test_operator, - STATE(5632), 1, - aux_sym__literal_repeat1, - STATE(5789), 1, - sym_concatenation, - ACTIONS(2500), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5866), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5888), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5910), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5553), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2498), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [78888] = 3, + [77439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, + ACTIONS(1350), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 40, + ACTIONS(1348), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -145154,9 +144097,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -145166,6 +144108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -145182,23 +144125,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [78941] = 6, + [77492] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5844), 1, + ACTIONS(5539), 1, aux_sym_concatenation_token1, - ACTIONS(5914), 1, + ACTIONS(5541), 1, sym__concat, - STATE(1722), 1, + STATE(1707), 1, aux_sym_concatenation_repeat1, - ACTIONS(1267), 4, + ACTIONS(5317), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 38, + ACTIONS(5315), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -145209,7 +144152,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -145220,6 +144162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -145235,33 +144178,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [79000] = 3, + [77551] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4465), 6, + ACTIONS(5539), 1, + aux_sym_concatenation_token1, + ACTIONS(5541), 1, + sym__concat, + STATE(1709), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5321), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4463), 39, + ACTIONS(5319), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -145287,16 +144232,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [79053] = 3, + [77610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1314), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, + ACTIONS(1312), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -145308,8 +144255,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -145319,7 +144264,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -145336,23 +144280,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [79106] = 6, + [77663] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5813), 1, + ACTIONS(5579), 1, aux_sym_concatenation_token1, - ACTIONS(5815), 1, + ACTIONS(5609), 1, sym__concat, - STATE(1637), 1, + STATE(1713), 1, aux_sym_concatenation_repeat1, - ACTIONS(1263), 5, + ACTIONS(5325), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 37, + ACTIONS(5323), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -145373,7 +144318,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -145389,17 +144333,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [79165] = 3, + [77722] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 5, - sym_file_descriptor, + ACTIONS(5579), 1, + aux_sym_concatenation_token1, + ACTIONS(5609), 1, sym__concat, + STATE(1714), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5329), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 40, + ACTIONS(5327), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -145411,8 +144362,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -145422,10 +144371,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -145439,31 +144386,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [79218] = 3, + [77781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 5, + ACTIONS(1274), 5, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 40, + ACTIONS(1272), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -145472,9 +144421,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -145488,32 +144437,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [79271] = 3, + [77834] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 5, - sym_file_descriptor, + ACTIONS(4910), 1, + aux_sym_concatenation_token1, + ACTIONS(5933), 1, sym__concat, + STATE(985), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 40, + ACTIONS(1286), 37, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_LPAREN, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -145525,7 +144477,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -145540,92 +144491,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [79324] = 28, - ACTIONS(71), 1, + [77893] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1133), 1, - anon_sym_BANG, - ACTIONS(1139), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, + ACTIONS(5539), 1, + aux_sym_concatenation_token1, + ACTIONS(5541), 1, + sym__concat, + STATE(1709), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2169), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(2167), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(1147), 1, sym__special_character, - ACTIONS(1149), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, - sym_test_operator, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(3060), 1, anon_sym_BQUOTE, - ACTIONS(5781), 1, - sym_extglob_pattern, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(2648), 1, - sym__extglob_blob, - STATE(2972), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1137), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1151), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1165), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2573), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [79427] = 3, + sym_word, + [77952] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 6, - sym_file_descriptor, + ACTIONS(5539), 1, + aux_sym_concatenation_token1, + ACTIONS(5541), 1, sym__concat, + STATE(1707), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4428), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 39, + ACTIONS(4426), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -145636,7 +144570,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -145650,7 +144583,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -145665,22 +144597,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [79480] = 6, + [78011] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5762), 1, + ACTIONS(5539), 1, aux_sym_concatenation_token1, - ACTIONS(5789), 1, + ACTIONS(5541), 1, sym__concat, - STATE(1557), 1, + STATE(1709), 1, aux_sym_concatenation_repeat1, - ACTIONS(5470), 5, + ACTIONS(4513), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5468), 37, + ACTIONS(4511), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -145701,6 +144633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -145716,20 +144649,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [79539] = 3, + [78070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 7, + ACTIONS(1306), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 38, + ACTIONS(1304), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -145741,6 +144671,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -145750,7 +144682,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -145767,19 +144698,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [79592] = 3, + [78123] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 7, - sym_file_descriptor, + ACTIONS(5845), 1, + aux_sym_concatenation_token1, + ACTIONS(5935), 1, sym__concat, - sym_variable_name, + STATE(1673), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 38, + ACTIONS(1266), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -145800,10 +144736,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -145817,11 +144751,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [79645] = 3, + [78182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 7, + ACTIONS(1334), 7, sym_file_descriptor, sym__concat, sym_variable_name, @@ -145829,7 +144764,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 38, + ACTIONS(1332), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -145868,93 +144803,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [79698] = 28, - ACTIONS(71), 1, - sym_comment, - ACTIONS(363), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, - anon_sym_DOLLAR, - ACTIONS(371), 1, - anon_sym_DQUOTE, - ACTIONS(375), 1, - aux_sym_number_token1, - ACTIONS(377), 1, - aux_sym_number_token2, - ACTIONS(379), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, - sym__brace_start, - ACTIONS(1091), 1, - sym_word, - ACTIONS(1093), 1, - anon_sym_LPAREN, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1103), 1, - anon_sym_TILDE, - ACTIONS(1113), 1, - sym_test_operator, - ACTIONS(5809), 1, - anon_sym_BQUOTE, - ACTIONS(5916), 1, - sym__special_character, - ACTIONS(5918), 1, - sym_extglob_pattern, - STATE(2472), 1, - aux_sym__literal_repeat1, - STATE(2827), 1, - sym__expression, - STATE(2897), 1, - sym__extglob_blob, - ACTIONS(352), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1099), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1101), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1109), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2863), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2451), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [79801] = 3, + [78235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 7, + ACTIONS(2169), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 38, + ACTIONS(2167), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -145965,7 +144823,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -145978,7 +144839,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -145993,17 +144853,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [79854] = 3, + [78288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 6, + ACTIONS(1310), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 39, + ACTIONS(1308), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -146014,8 +144873,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -146025,7 +144886,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -146043,34 +144903,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [79907] = 6, + [78341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5638), 1, - aux_sym_concatenation_token1, - ACTIONS(5640), 1, - sym__concat, - STATE(1661), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5391), 5, + ACTIONS(4513), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5389), 37, + ACTIONS(4511), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -146096,17 +144953,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [79966] = 3, + [78394] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 6, + ACTIONS(5828), 1, + sym__special_character, + STATE(1669), 1, + aux_sym__literal_repeat1, + ACTIONS(5595), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 39, + ACTIONS(5593), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -146117,8 +144977,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -146128,11 +144989,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -146144,20 +145004,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [80019] = 3, + [78451] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 7, - sym_file_descriptor, + ACTIONS(5539), 1, + aux_sym_concatenation_token1, + ACTIONS(5541), 1, sym__concat, + STATE(1709), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2173), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 38, + ACTIONS(2171), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -146181,7 +145044,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -146196,17 +145058,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80072] = 3, + [78510] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 6, - sym_file_descriptor, + ACTIONS(5539), 1, + aux_sym_concatenation_token1, + ACTIONS(5541), 1, sym__concat, + STATE(1707), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4579), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 39, + ACTIONS(4577), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -146217,7 +145084,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -146228,9 +145094,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -146244,19 +145110,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [80125] = 3, + [78569] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, - sym_file_descriptor, + ACTIONS(5539), 1, + aux_sym_concatenation_token1, + ACTIONS(5541), 1, sym__concat, + STATE(1709), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4595), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 39, + ACTIONS(4593), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -146267,7 +145137,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -146278,9 +145147,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -146294,19 +145163,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [80178] = 3, + [78628] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, - sym_file_descriptor, + ACTIONS(5539), 1, + aux_sym_concatenation_token1, + ACTIONS(5541), 1, sym__concat, + STATE(1707), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5167), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 39, + ACTIONS(5165), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -146317,7 +145190,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -146328,9 +145200,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -146344,23 +145216,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [80231] = 6, + [78687] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5920), 1, + ACTIONS(5539), 1, aux_sym_concatenation_token1, - ACTIONS(5922), 1, + ACTIONS(5541), 1, sym__concat, - STATE(1704), 1, + STATE(1709), 1, aux_sym_concatenation_repeat1, - ACTIONS(1267), 4, + ACTIONS(5175), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 38, + ACTIONS(5173), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -146371,7 +145243,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -146399,21 +145270,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80290] = 6, + [78746] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5920), 1, + ACTIONS(5845), 1, aux_sym_concatenation_token1, - ACTIONS(5924), 1, + ACTIONS(5937), 1, sym__concat, - STATE(1704), 1, + STATE(1673), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 4, + ACTIONS(1288), 5, sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 38, + ACTIONS(1286), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -146424,7 +145296,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -146435,7 +145306,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -146451,23 +145321,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [80349] = 6, + [78805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5762), 1, - aux_sym_concatenation_token1, - ACTIONS(5789), 1, - sym__concat, - STATE(1528), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5478), 5, + ACTIONS(1354), 7, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5476), 37, + ACTIONS(1352), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -146488,8 +145355,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -146503,19 +145372,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [80408] = 3, + [78858] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(5939), 1, + sym__special_character, + STATE(1669), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 39, + ACTIONS(1360), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -146526,8 +145397,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -146537,11 +145409,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -146553,97 +145424,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [80461] = 28, - ACTIONS(71), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, sym_word, - ACTIONS(248), 1, - anon_sym_LPAREN, - ACTIONS(250), 1, - anon_sym_BANG, - ACTIONS(258), 1, - anon_sym_DOLLAR, - ACTIONS(264), 1, - aux_sym_number_token1, - ACTIONS(266), 1, - aux_sym_number_token2, - ACTIONS(270), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym_test_operator, - ACTIONS(284), 1, - sym__brace_start, - ACTIONS(1075), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1079), 1, - sym__special_character, - ACTIONS(1081), 1, - anon_sym_DQUOTE, - ACTIONS(1085), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1087), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, - anon_sym_BQUOTE, - ACTIONS(5926), 1, - sym_extglob_pattern, - STATE(2690), 1, - aux_sym__literal_repeat1, - STATE(3082), 1, - sym__expression, - STATE(3138), 1, - sym__extglob_blob, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1073), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1083), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1089), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3053), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2500), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [80564] = 5, + [78915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5928), 1, - sym__special_character, - STATE(1646), 1, - aux_sym__literal_repeat1, - ACTIONS(5180), 5, + ACTIONS(1278), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5178), 38, + ACTIONS(1276), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -146654,6 +145445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -146668,7 +145460,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -146680,25 +145474,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [80621] = 3, + [78968] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 6, + ACTIONS(4595), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 39, + ACTIONS(4593), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -146706,6 +145499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -146717,7 +145511,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -146732,16 +145525,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80674] = 3, + [79021] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(187), 1, + anon_sym_TILDE, + ACTIONS(286), 1, + sym_word, + ACTIONS(295), 1, + anon_sym_LPAREN, + ACTIONS(297), 1, + anon_sym_BANG, + ACTIONS(299), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(303), 1, + anon_sym_DOLLAR, + ACTIONS(307), 1, + anon_sym_DQUOTE, + ACTIONS(311), 1, + aux_sym_number_token1, + ACTIONS(313), 1, + aux_sym_number_token2, + ACTIONS(315), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(317), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(321), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(325), 1, + sym_test_operator, + ACTIONS(327), 1, + sym__brace_start, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + ACTIONS(5942), 1, + sym__special_character, + ACTIONS(5944), 1, + sym_extglob_pattern, + STATE(2705), 1, + aux_sym__literal_repeat1, + STATE(2962), 1, + sym__expression, + STATE(2967), 1, + sym__extglob_blob, + ACTIONS(183), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(185), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(288), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(309), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(323), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2952), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2509), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [79124] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 5, - sym_file_descriptor, + ACTIONS(5946), 1, + aux_sym_concatenation_token1, + ACTIONS(5949), 1, sym__concat, + STATE(1673), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 40, + ACTIONS(1276), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -146753,8 +145627,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -146764,10 +145636,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -146781,18 +145651,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [80727] = 3, + [79183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 6, + ACTIONS(4595), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 39, + ACTIONS(4593), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -146803,8 +145673,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -146817,7 +145689,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -146832,36 +145703,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80780] = 5, + [79236] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5932), 2, + ACTIONS(1314), 5, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4261), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(4247), 18, + aux_sym_heredoc_redirect_token1, + ACTIONS(1312), 40, anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - ACTIONS(5930), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -146884,21 +145736,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [80837] = 6, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [79289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5934), 1, - aux_sym_concatenation_token1, - ACTIONS(5937), 1, - sym__concat, - STATE(1704), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1253), 4, + ACTIONS(1306), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 38, + ACTIONS(1304), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -146909,8 +145773,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -146923,6 +145788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -146937,21 +145803,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80896] = 6, + [79342] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5844), 1, + ACTIONS(5845), 1, aux_sym_concatenation_token1, - ACTIONS(5846), 1, + ACTIONS(5847), 1, sym__concat, - STATE(1672), 1, + STATE(1656), 1, aux_sym_concatenation_repeat1, - ACTIONS(1263), 4, + ACTIONS(1274), 5, sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 38, + ACTIONS(1272), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -146962,7 +145829,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -146990,40 +145856,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [80955] = 11, + [79401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5776), 1, - sym_variable_name, - ACTIONS(5942), 1, - aux_sym_heredoc_redirect_token1, - STATE(6746), 1, - sym_subscript, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5940), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(5148), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4261), 3, + ACTIONS(1278), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, - STATE(5366), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4247), 28, + aux_sym_heredoc_redirect_token1, + ACTIONS(1276), 40, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -147031,9 +145887,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -147048,40 +145906,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [81024] = 11, + [79454] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5776), 1, - sym_variable_name, - ACTIONS(5944), 1, - aux_sym_heredoc_redirect_token1, - STATE(6746), 1, - sym_subscript, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5940), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(5148), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4261), 3, + ACTIONS(5579), 1, + aux_sym_concatenation_token1, + ACTIONS(5609), 1, + sym__concat, + STATE(1713), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5167), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - STATE(5366), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4247), 28, + aux_sym_heredoc_redirect_token1, + ACTIONS(5165), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -147089,7 +145941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -147105,22 +145957,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [81093] = 6, + [79513] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5920), 1, + ACTIONS(5579), 1, aux_sym_concatenation_token1, - ACTIONS(5946), 1, + ACTIONS(5609), 1, sym__concat, - STATE(1694), 1, + STATE(1714), 1, aux_sym_concatenation_repeat1, - ACTIONS(5395), 4, + ACTIONS(5175), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5393), 38, + ACTIONS(5173), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -147131,7 +145985,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -147142,7 +145995,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -147158,17 +146010,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [81152] = 3, + [79572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 5, + ACTIONS(1318), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 40, + ACTIONS(1316), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -147209,34 +146062,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [81205] = 6, + [79625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5920), 1, - aux_sym_concatenation_token1, - ACTIONS(5946), 1, - sym__concat, - STATE(1694), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 4, + ACTIONS(4523), 6, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 38, + ACTIONS(4521), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -147262,21 +146112,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [81264] = 6, + [79678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5920), 1, - aux_sym_concatenation_token1, - ACTIONS(5946), 1, - sym__concat, - STATE(1695), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5391), 4, + ACTIONS(1298), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5389), 38, + ACTIONS(1296), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -147298,9 +146144,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -147314,24 +146160,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [81323] = 3, + [79731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5462), 5, + ACTIONS(1334), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5460), 40, + ACTIONS(1332), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -147339,7 +146186,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -147348,9 +146194,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -147364,17 +146210,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [81376] = 3, + [79784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(1330), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 40, + ACTIONS(1328), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -147385,6 +146232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -147413,23 +146261,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [81429] = 6, + [79837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5844), 1, - aux_sym_concatenation_token1, - ACTIONS(5948), 1, - sym__concat, - STATE(1722), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 4, + ACTIONS(1354), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 38, + ACTIONS(1352), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -147451,8 +146294,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -147466,36 +146311,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [81488] = 6, + [79890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_concatenation_token1, - ACTIONS(5950), 1, - sym__concat, - STATE(965), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 5, + ACTIONS(5873), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 37, + ACTIONS(5871), 40, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -147521,31 +146362,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [81547] = 3, + [79943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4532), 5, + ACTIONS(1314), 7, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4530), 40, + ACTIONS(1312), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -147557,6 +146397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -147571,22 +146412,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [81600] = 6, + [79996] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, + ACTIONS(4910), 1, aux_sym_concatenation_token1, - ACTIONS(4701), 1, + ACTIONS(4912), 1, sym__concat, - STATE(1721), 1, + STATE(1625), 1, aux_sym_concatenation_repeat1, - ACTIONS(1281), 5, + ACTIONS(278), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1271), 37, + ACTIONS(241), 37, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147624,16 +146465,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [81659] = 3, + [80055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 5, + ACTIONS(1298), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 40, + ACTIONS(1296), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -147656,6 +146497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -147672,37 +146514,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [81712] = 7, + [80108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - aux_sym_concatenation_token1, - ACTIONS(4701), 1, - sym__concat, - ACTIONS(5952), 1, - anon_sym_LPAREN, - STATE(1721), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1281), 5, + ACTIONS(1338), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1271), 36, + ACTIONS(1336), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -147711,9 +146547,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -147727,21 +146563,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [81773] = 5, + [80161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5928), 1, - sym__special_character, - STATE(1646), 1, - aux_sym__literal_repeat1, - ACTIONS(5069), 5, + ACTIONS(1322), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5067), 38, + ACTIONS(1320), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -147766,7 +146599,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -147780,22 +146615,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [81830] = 6, + [80214] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, + ACTIONS(4910), 1, aux_sym_concatenation_token1, - ACTIONS(5955), 1, + ACTIONS(4912), 1, sym__concat, - STATE(965), 1, + STATE(1651), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, + ACTIONS(1258), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 37, + ACTIONS(1251), 37, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -147833,34 +146668,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [81889] = 6, + [80273] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5957), 1, + ACTIONS(4910), 1, aux_sym_concatenation_token1, - ACTIONS(5960), 1, + ACTIONS(4912), 1, sym__concat, - STATE(1722), 1, + ACTIONS(5952), 1, + anon_sym_LPAREN, + STATE(1651), 1, aux_sym_concatenation_repeat1, - ACTIONS(1253), 4, + ACTIONS(1258), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 38, + ACTIONS(1251), 36, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -147869,6 +146705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -147884,19 +146721,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [81948] = 3, + [80334] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 6, - sym_file_descriptor, + ACTIONS(5845), 1, + aux_sym_concatenation_token1, + ACTIONS(5847), 1, sym__concat, - sym_variable_name, + STATE(1667), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5515), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 39, + ACTIONS(5513), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -147907,7 +146748,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -147920,7 +146760,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -147936,31 +146775,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [82001] = 3, + [80393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 6, + ACTIONS(2173), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 39, + ACTIONS(2171), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -147986,21 +146825,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [82054] = 6, + [80446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5758), 1, - aux_sym_concatenation_token1, - ACTIONS(5760), 1, - sym__concat, - STATE(1640), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 4, + ACTIONS(1326), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 38, + ACTIONS(1324), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -148011,6 +146845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -148025,6 +146860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -148039,17 +146875,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [82113] = 3, + [80499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 6, + ACTIONS(1358), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 38, + ACTIONS(1356), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -148070,6 +146907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -148086,23 +146924,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [82165] = 6, + [80552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5844), 1, - aux_sym_concatenation_token1, - ACTIONS(5963), 1, - sym__concat, - STATE(1722), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 4, + ACTIONS(1278), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 37, + ACTIONS(1276), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -148114,6 +146946,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -148125,6 +146959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -148140,16 +146975,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [82223] = 3, + [80605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1346), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 39, + ACTIONS(1344), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -148160,7 +146997,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -148171,6 +147007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -148187,18 +147024,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [82275] = 3, + [80658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5768), 5, + ACTIONS(1358), 7, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5766), 39, + ACTIONS(1356), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -148210,8 +147048,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -148224,6 +147060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -148238,28 +147075,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [82327] = 27, + [80711] = 28, ACTIONS(71), 1, sym_comment, - ACTIONS(1131), 1, + ACTIONS(1101), 1, anon_sym_LPAREN, - ACTIONS(1141), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, + ACTIONS(1139), 1, sym__brace_start, ACTIONS(1187), 1, sym_word, @@ -148267,22 +147104,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(1195), 1, anon_sym_TILDE, + ACTIONS(1197), 1, + sym__special_character, ACTIONS(1201), 1, sym_test_operator, - ACTIONS(3060), 1, + ACTIONS(3119), 1, anon_sym_BQUOTE, - ACTIONS(5779), 1, - sym__special_character, - STATE(2717), 1, + ACTIONS(5753), 1, + sym_extglob_pattern, + STATE(2548), 1, aux_sym__literal_repeat1, - STATE(3128), 1, + STATE(2617), 1, + sym__extglob_blob, + STATE(3137), 1, sym__expression, - STATE(7408), 1, - sym__test_command_binary_expression, - ACTIONS(1129), 2, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1191), 2, @@ -148294,14 +147133,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1199), 2, sym_raw_string, sym_ansi_c_string, - STATE(2594), 6, + STATE(2674), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2503), 9, + STATE(2567), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -148311,16 +147150,16 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [82427] = 3, + [80814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5772), 5, + ACTIONS(1310), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5770), 39, + ACTIONS(1308), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -148343,9 +147182,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -148359,17 +147198,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [82479] = 3, + [80867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(5890), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 39, + ACTIONS(5888), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -148380,8 +147220,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -148391,9 +147233,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -148407,18 +147249,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [82531] = 3, + [80920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 5, + ACTIONS(1274), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 39, + ACTIONS(1272), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -148429,8 +147270,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -148440,9 +147283,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -148456,18 +147299,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [82583] = 3, + [80973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 5, + ACTIONS(1342), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 39, + ACTIONS(1340), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -148507,16 +147350,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [82635] = 3, + [81026] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5375), 5, + ACTIONS(5539), 1, + aux_sym_concatenation_token1, + ACTIONS(5955), 1, + sym__concat, + STATE(1330), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5373), 39, + ACTIONS(1266), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -148528,8 +147377,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -148539,6 +147386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -148554,22 +147402,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [82687] = 5, + [81085] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5965), 1, + ACTIONS(4327), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5840), 1, + sym_variable_name, + STATE(6730), 1, + sym_subscript, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(5230), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4318), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + STATE(5297), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4325), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4304), 28, + anon_sym_LPAREN_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, - STATE(1736), 1, - aux_sym__literal_repeat1, - ACTIONS(1364), 5, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [81152] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5539), 1, + aux_sym_concatenation_token1, + ACTIONS(5957), 1, + sym__concat, + STATE(1330), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 37, + ACTIONS(1286), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -148580,7 +147486,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -148591,9 +147496,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -148605,18 +147512,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [82743] = 3, + [81211] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 5, - sym_file_descriptor, + ACTIONS(5539), 1, + aux_sym_concatenation_token1, + ACTIONS(5541), 1, sym__concat, + STATE(1707), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 39, + ACTIONS(1272), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -148627,7 +147539,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -148638,9 +147549,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -148654,35 +147565,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [82795] = 5, + [81270] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5968), 1, + ACTIONS(5840), 1, + sym_variable_name, + STATE(6730), 1, + sym_subscript, + ACTIONS(4318), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(4323), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(5230), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(5297), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4310), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + ACTIONS(4304), 18, + anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, - STATE(1751), 1, - aux_sym__literal_repeat1, - ACTIONS(4469), 5, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [81335] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4910), 1, + aux_sym_concatenation_token1, + ACTIONS(4912), 1, + sym__concat, + STATE(1625), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 37, + ACTIONS(1272), 37, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, + anon_sym_LPAREN, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -148695,6 +147662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -148707,20 +147675,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [82851] = 5, + [81394] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5968), 1, - sym__special_character, - STATE(1751), 1, - aux_sym__literal_repeat1, - ACTIONS(5723), 5, + ACTIONS(5579), 1, + aux_sym_concatenation_token1, + ACTIONS(5959), 1, + sym__concat, + STATE(1345), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5721), 37, + ACTIONS(1266), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -148731,7 +147701,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -148742,10 +147711,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -148757,21 +147726,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [82907] = 5, + [81453] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5968), 1, - sym__special_character, - STATE(1751), 1, - aux_sym__literal_repeat1, - ACTIONS(5697), 5, + ACTIONS(5579), 1, + aux_sym_concatenation_token1, + ACTIONS(5961), 1, + sym__concat, + STATE(1345), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5695), 37, + ACTIONS(1286), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -148782,7 +147754,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -148793,10 +147764,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -148808,21 +147779,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [82963] = 5, + [81512] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5968), 1, - sym__special_character, - STATE(1751), 1, - aux_sym__literal_repeat1, - ACTIONS(4566), 5, + ACTIONS(5579), 1, + aux_sym_concatenation_token1, + ACTIONS(5609), 1, + sym__concat, + STATE(1713), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 37, + ACTIONS(1272), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -148833,7 +147807,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -148844,10 +147817,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -148859,21 +147832,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [83019] = 5, + [81571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5968), 1, - sym__special_character, - STATE(1751), 1, - aux_sym__literal_repeat1, - ACTIONS(5069), 5, + ACTIONS(1294), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5067), 37, + ACTIONS(1292), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -148895,10 +147866,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -148910,21 +147882,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [83075] = 5, + [81624] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5970), 1, - sym__special_character, - STATE(1736), 1, - aux_sym__literal_repeat1, - ACTIONS(5180), 5, + ACTIONS(1350), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5178), 37, + ACTIONS(1348), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -148948,7 +147918,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -148962,33 +147934,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [83131] = 5, + [81677] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5968), 1, - sym__special_character, - STATE(1751), 1, - aux_sym__literal_repeat1, - ACTIONS(5395), 5, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, sym_file_descriptor, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5393), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -148996,11 +147956,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(5851), 12, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -149013,33 +147988,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83187] = 6, + [81738] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5080), 1, - aux_sym_concatenation_token1, - ACTIONS(5082), 1, - sym__concat, - STATE(1822), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4554), 5, + ACTIONS(5828), 1, + sym__special_character, + STATE(1669), 1, + aux_sym__literal_repeat1, + ACTIONS(5167), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 36, + ACTIONS(5165), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -149052,7 +148028,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -149065,16 +148040,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83245] = 3, + [81795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 5, + ACTIONS(1354), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 39, + ACTIONS(1352), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -149114,16 +148090,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [83297] = 3, + [81848] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5375), 5, + ACTIONS(1310), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5373), 39, + ACTIONS(1308), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -149149,6 +148125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -149163,16 +148140,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83349] = 3, + [81901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5772), 5, + ACTIONS(1358), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5770), 39, + ACTIONS(1356), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -149183,9 +148161,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -149195,8 +148172,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -149210,108 +148189,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [83401] = 27, - ACTIONS(71), 1, + [81954] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(350), 1, - sym_word, - ACTIONS(359), 1, - anon_sym_LPAREN, - ACTIONS(361), 1, - anon_sym_BANG, - ACTIONS(363), 1, + ACTIONS(1346), 6, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1344), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(371), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(375), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(377), 1, aux_sym_number_token2, - ACTIONS(379), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(389), 1, - sym_test_operator, - ACTIONS(391), 1, - sym__brace_start, - ACTIONS(5807), 1, - sym__special_character, - ACTIONS(5809), 1, anon_sym_BQUOTE, - ACTIONS(5972), 1, - sym__regex_no_space, - STATE(2641), 1, - aux_sym__literal_repeat1, - STATE(2989), 1, - sym__expression, - ACTIONS(183), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(185), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(352), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(373), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(387), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3071), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2521), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [83501] = 6, + sym_word, + [82007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5080), 1, - aux_sym_concatenation_token1, - ACTIONS(5082), 1, - sym__concat, - STATE(1821), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4566), 5, + ACTIONS(1358), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 36, + ACTIONS(1356), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -149323,6 +148275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -149337,20 +148290,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83559] = 5, + [82060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5974), 1, - sym__special_character, - STATE(1751), 1, - aux_sym__literal_repeat1, - ACTIONS(1364), 5, + ACTIONS(1298), 7, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 37, + ACTIONS(1296), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -149361,7 +148312,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -149372,10 +148322,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -149387,34 +148338,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [83615] = 6, + [82113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5080), 1, - aux_sym_concatenation_token1, - ACTIONS(5082), 1, - sym__concat, - STATE(1822), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4372), 5, + ACTIONS(1334), 6, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 36, + ACTIONS(1332), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -149426,6 +148374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -149440,16 +148389,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83673] = 3, + [82165] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, - sym_file_descriptor, + ACTIONS(5963), 1, + aux_sym_concatenation_token1, + ACTIONS(5965), 1, sym__concat, + STATE(1728), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 39, + ACTIONS(1286), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -149460,7 +148415,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -149473,7 +148427,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -149487,18 +148440,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [83725] = 3, + [82223] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, - sym_file_descriptor, + ACTIONS(5967), 1, + aux_sym_concatenation_token1, + ACTIONS(5970), 1, sym__concat, + STATE(1728), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 39, + ACTIONS(1276), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -149509,7 +148467,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -149520,10 +148477,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -149538,16 +148493,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83777] = 3, - ACTIONS(3), 1, + [82281] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1306), 5, + STATE(1917), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5973), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1272), 16, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1274), 25, sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [82337] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5963), 1, + aux_sym_concatenation_token1, + ACTIONS(5975), 1, sym__concat, + STATE(1855), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 39, + ACTIONS(1272), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -149558,7 +148570,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -149569,10 +148580,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -149587,16 +148596,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83829] = 3, + [82395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1298), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 39, + ACTIONS(1296), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -149607,7 +148617,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -149636,106 +148645,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83881] = 27, - ACTIONS(71), 1, + [82447] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, + ACTIONS(1306), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1153), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1179), 1, - anon_sym_TILDE, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, - sym_test_operator, - ACTIONS(3060), 1, anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(3123), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1175), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1177), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2456), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [83981] = 6, + sym_word, + [82499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5080), 1, - aux_sym_concatenation_token1, - ACTIONS(5082), 1, - sym__concat, - STATE(1821), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4469), 5, + ACTIONS(1278), 6, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 36, + ACTIONS(1276), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -149747,6 +148728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -149761,16 +148743,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84039] = 3, + [82551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5768), 5, + ACTIONS(1310), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5766), 39, + ACTIONS(1308), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -149782,8 +148765,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -149793,8 +148774,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -149808,18 +148791,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [84091] = 3, + [82603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1314), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 39, + ACTIONS(1312), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -149831,8 +148814,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -149842,6 +148823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -149859,16 +148841,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84143] = 3, + [82655] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, + ACTIONS(1318), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 39, + ACTIONS(1316), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -149880,8 +148863,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -149891,6 +148872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -149908,16 +148890,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84195] = 3, + [82707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1302), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 39, + ACTIONS(1300), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -149929,8 +148912,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -149940,6 +148921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -149957,16 +148939,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84247] = 3, + [82759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 5, + ACTIONS(1322), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 39, + ACTIONS(1320), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -149978,8 +148961,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -149989,6 +148970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -150006,16 +148988,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84299] = 3, + [82811] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, - sym_file_descriptor, + ACTIONS(5977), 1, + aux_sym_concatenation_token1, + ACTIONS(5979), 1, sym__concat, + STATE(1743), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 39, + ACTIONS(1266), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -150026,9 +149013,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -150040,7 +149026,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -150055,16 +149040,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84351] = 3, + [82869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 5, + ACTIONS(1326), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 39, + ACTIONS(1324), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -150076,8 +149062,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -150087,6 +149071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -150104,16 +149089,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84403] = 3, + [82921] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, - sym_file_descriptor, + ACTIONS(5977), 1, + aux_sym_concatenation_token1, + ACTIONS(5981), 1, sym__concat, + STATE(1743), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 39, + ACTIONS(1286), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -150135,10 +149125,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -150153,16 +149141,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84455] = 3, + [82979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2096), 5, + ACTIONS(1330), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2094), 39, + ACTIONS(1328), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -150174,8 +149163,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -150188,6 +149175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -150202,16 +149190,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84507] = 3, + [83031] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 5, - sym_file_descriptor, + ACTIONS(5983), 1, + aux_sym_concatenation_token1, + ACTIONS(5986), 1, sym__concat, + STATE(1743), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 39, + ACTIONS(1276), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -150233,10 +149226,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -150251,16 +149242,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84559] = 3, + [83089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 5, + ACTIONS(1338), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 39, + ACTIONS(1336), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -150271,7 +149263,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -150300,16 +149291,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84611] = 3, + [83141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 5, + ACTIONS(1342), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 39, + ACTIONS(1340), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -150321,8 +149313,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -150332,6 +149322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -150349,16 +149340,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84663] = 3, + [83193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 5, + ACTIONS(1294), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 39, + ACTIONS(1292), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -150369,7 +149361,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -150398,16 +149389,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84715] = 3, + [83245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 5, + ACTIONS(1298), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 39, + ACTIONS(1296), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -150418,9 +149409,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -150430,6 +149420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -150447,16 +149438,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84767] = 3, + [83297] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 5, + ACTIONS(5989), 1, + sym__special_character, + STATE(1820), 1, + aux_sym__literal_repeat1, + ACTIONS(5167), 6, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 39, + ACTIONS(5165), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -150468,8 +149464,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -150481,9 +149475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -150495,17 +149487,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [84819] = 3, + [83353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 5, + ACTIONS(1350), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 39, + ACTIONS(1348), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -150516,7 +149510,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -150545,16 +149538,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84871] = 3, + [83405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 5, + ACTIONS(1306), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 39, + ACTIONS(1304), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -150565,9 +149558,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -150577,6 +149569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -150594,16 +149587,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84923] = 3, + [83457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2074), 5, + ACTIONS(1278), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2072), 39, + ACTIONS(1276), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -150614,9 +149607,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -150629,6 +149621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -150643,16 +149636,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84975] = 3, + [83509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 5, + ACTIONS(1354), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 39, + ACTIONS(1352), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -150663,7 +149657,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -150692,94 +149685,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85027] = 27, - ACTIONS(71), 1, + [83561] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(1310), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(371), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(375), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(377), 1, aux_sym_number_token2, - ACTIONS(379), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, - sym__brace_start, - ACTIONS(1091), 1, - sym_word, - ACTIONS(1093), 1, - anon_sym_LPAREN, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1103), 1, - anon_sym_TILDE, - ACTIONS(1113), 1, - sym_test_operator, - ACTIONS(5809), 1, anon_sym_BQUOTE, - ACTIONS(5916), 1, - sym__special_character, - ACTIONS(5977), 1, - sym__regex_no_space, - STATE(2472), 1, - aux_sym__literal_repeat1, - STATE(2835), 1, - sym__expression, - ACTIONS(352), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1099), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1101), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1109), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2863), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2451), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [85127] = 6, + sym_word, + [83613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5920), 1, - aux_sym_concatenation_token1, - ACTIONS(5979), 1, - sym__concat, - STATE(1704), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 4, + ACTIONS(1314), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 37, + ACTIONS(1312), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -150790,6 +149754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -150803,6 +149768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -150817,21 +149783,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85185] = 6, + [83665] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5920), 1, + ACTIONS(5977), 1, aux_sym_concatenation_token1, - ACTIONS(5981), 1, + ACTIONS(5991), 1, sym__concat, - STATE(1704), 1, + STATE(1739), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 4, + ACTIONS(1274), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 37, + ACTIONS(1272), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -150842,6 +149808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -150852,7 +149819,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -150869,16 +149835,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85243] = 3, + [83723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 5, + ACTIONS(1318), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 39, + ACTIONS(1316), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -150889,9 +149855,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -150901,6 +149866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -150918,16 +149884,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85295] = 3, + [83775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 5, + ACTIONS(1358), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 39, + ACTIONS(1356), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -150939,8 +149906,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -150950,6 +149915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -150967,16 +149933,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85347] = 3, + [83827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 5, + ACTIONS(1346), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 39, + ACTIONS(1344), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -150987,7 +149954,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -151016,33 +149982,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85399] = 6, + [83879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5080), 1, - aux_sym_concatenation_token1, - ACTIONS(5082), 1, - sym__concat, - STATE(1822), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4465), 5, + ACTIONS(1358), 6, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4463), 36, + ACTIONS(1356), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -151054,6 +150016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -151068,16 +150031,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85457] = 3, + [83931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 5, + ACTIONS(1302), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 39, + ACTIONS(1300), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -151117,21 +150080,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85509] = 6, + [83983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5920), 1, - aux_sym_concatenation_token1, - ACTIONS(5946), 1, - sym__concat, - STATE(1779), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 4, + ACTIONS(1322), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 37, + ACTIONS(1320), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -151142,6 +150100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -151155,6 +150114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -151169,33 +150129,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85567] = 6, + [84035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5080), 1, - aux_sym_concatenation_token1, - ACTIONS(5082), 1, - sym__concat, - STATE(1821), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4482), 5, + ACTIONS(1326), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4480), 36, + ACTIONS(1324), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -151207,6 +150163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -151221,16 +150178,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85625] = 3, + [84087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 5, + ACTIONS(1330), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 39, + ACTIONS(1328), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -151252,6 +150209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -151268,21 +150226,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [85677] = 5, + [84139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5983), 1, - sym__special_character, - STATE(1789), 1, - aux_sym__literal_repeat1, - ACTIONS(1364), 4, + ACTIONS(1334), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 38, + ACTIONS(1332), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -151293,9 +150247,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -151308,7 +150261,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -151321,16 +150276,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85733] = 3, + [84191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 5, + ACTIONS(1338), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 39, + ACTIONS(1336), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -151370,89 +150325,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85785] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(225), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1179), 1, - anon_sym_TILDE, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, - sym_test_operator, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(3144), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1175), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1177), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2456), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [85885] = 3, + [84243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 5, + ACTIONS(1342), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 39, + ACTIONS(1340), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -151474,6 +150356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -151490,18 +150373,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [85937] = 3, + [84295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 5, + ACTIONS(1294), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 39, + ACTIONS(1292), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -151523,6 +150405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -151539,35 +150422,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [85989] = 6, + [84347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5080), 1, - aux_sym_concatenation_token1, - ACTIONS(5082), 1, - sym__concat, - STATE(1822), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4532), 5, + ACTIONS(1350), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4530), 36, + ACTIONS(1348), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -151579,6 +150457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -151593,33 +150472,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [86047] = 6, + [84399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5080), 1, - aux_sym_concatenation_token1, - ACTIONS(5082), 1, - sym__concat, - STATE(1821), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4548), 5, + ACTIONS(1354), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4546), 36, + ACTIONS(1352), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -151631,6 +150506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -151645,16 +150521,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [86105] = 3, + [84451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 5, + ACTIONS(1358), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 39, + ACTIONS(1356), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -151676,6 +150552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -151692,44 +150569,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [86157] = 5, - ACTIONS(71), 1, + [84503] = 3, + ACTIONS(3), 1, sym_comment, - STATE(1897), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5986), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(241), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(278), 25, + ACTIONS(1346), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1344), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -151737,24 +150604,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [86213] = 3, + sym_word, + [84555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 5, + ACTIONS(1358), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 39, + ACTIONS(1356), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -151776,6 +150650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -151792,96 +150667,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [86265] = 5, + [84607] = 27, ACTIONS(71), 1, sym_comment, - STATE(1901), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5986), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1271), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, + sym_word, + ACTIONS(248), 1, anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(258), 1, anon_sym_DOLLAR, + ACTIONS(264), 1, aux_sym_number_token1, + ACTIONS(266), 1, aux_sym_number_token2, + ACTIONS(270), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1281), 25, - sym_file_descriptor, + ACTIONS(282), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(284), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1159), 1, sym__special_character, + ACTIONS(1161), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1165), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1167), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + ACTIONS(5993), 1, + sym__regex_no_space, + STATE(2623), 1, + aux_sym__literal_repeat1, + STATE(3041), 1, + sym__expression, + ACTIONS(103), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(105), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1153), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1163), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1169), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [86321] = 6, + STATE(2976), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2498), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [84707] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(1371), 1, + ACTIONS(1101), 1, anon_sym_LPAREN, - STATE(1901), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5986), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1271), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DOLLAR, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1133), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1171), 1, sym_word, - ACTIONS(1281), 25, + ACTIONS(1173), 1, + anon_sym_BANG, + ACTIONS(1179), 1, + anon_sym_TILDE, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, + sym_test_operator, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + ACTIONS(5995), 1, + sym__regex_no_space, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(3152), 1, + sym__expression, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1175), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1183), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2530), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [84807] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5997), 1, + sym__special_character, + STATE(1874), 1, + aux_sym__literal_repeat1, + ACTIONS(5317), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5315), 36, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -151889,29 +150852,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, + anon_sym_DOLLAR, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [86379] = 5, + sym_word, + [84863] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5988), 1, + ACTIONS(5997), 1, sym__special_character, - STATE(1829), 1, + STATE(1874), 1, aux_sym__literal_repeat1, - ACTIONS(5395), 6, + ACTIONS(4428), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5393), 36, + ACTIONS(4426), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -151948,16 +150916,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [86435] = 3, + [84919] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, + ACTIONS(5999), 1, + sym__special_character, + STATE(1869), 1, + aux_sym__literal_repeat1, + ACTIONS(5317), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 39, + ACTIONS(5315), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -151968,9 +150940,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -151980,11 +150951,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -151997,19 +150967,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [86487] = 5, + [84975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5990), 1, - sym__special_character, - STATE(1886), 1, - aux_sym__literal_repeat1, - ACTIONS(5395), 4, + ACTIONS(1274), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5393), 38, + ACTIONS(1272), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -152036,6 +151002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -152047,17 +151014,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [86543] = 3, + [85027] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 5, - sym_file_descriptor, + ACTIONS(5963), 1, + aux_sym_concatenation_token1, + ACTIONS(5975), 1, sym__concat, + STATE(1855), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5317), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 39, + ACTIONS(5315), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -152068,7 +151042,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -152081,7 +151054,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -152095,18 +151067,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [86595] = 3, + [85085] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 5, - sym_file_descriptor, + ACTIONS(5963), 1, + aux_sym_concatenation_token1, + ACTIONS(5975), 1, sym__concat, + STATE(1727), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5321), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 39, + ACTIONS(5319), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -152117,7 +151094,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -152130,7 +151106,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -152144,32 +151119,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [86647] = 27, + [85143] = 27, ACTIONS(71), 1, sym_comment, ACTIONS(227), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(1131), 1, + ACTIONS(1101), 1, anon_sym_LPAREN, - ACTIONS(1141), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, + ACTIONS(1139), 1, sym__brace_start, ACTIONS(1171), 1, sym_word, @@ -152181,16 +151155,16 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, ACTIONS(1185), 1, sym_test_operator, - ACTIONS(3060), 1, + ACTIONS(3119), 1, anon_sym_BQUOTE, - STATE(2484), 1, + STATE(2548), 1, aux_sym__literal_repeat1, - STATE(3154), 1, + STATE(2958), 1, sym__expression, - ACTIONS(1129), 2, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1175), 2, @@ -152202,14 +151176,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1183), 2, sym_raw_string, sym_ansi_c_string, - STATE(2594), 6, + STATE(2674), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2456), 9, + STATE(2530), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -152219,64 +151193,70 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [86747] = 3, - ACTIONS(3), 1, + [85243] = 27, + ACTIONS(71), 1, sym_comment, - ACTIONS(1334), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1097), 1, + sym_word, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1103), 1, + anon_sym_BANG, + ACTIONS(1109), 1, + anon_sym_TILDE, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1115), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1119), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1137), 1, + sym_test_operator, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + ACTIONS(5905), 1, + sym__special_character, + ACTIONS(6001), 1, + sym__regex_no_space, + STATE(2593), 1, + aux_sym__literal_repeat1, + STATE(3075), 1, + sym__expression, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1105), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1107), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1121), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [86799] = 6, - ACTIONS(71), 1, - sym_comment, - STATE(3543), 1, - aux_sym__literal_repeat1, - STATE(1868), 2, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3480), 9, + STATE(2554), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -152286,50 +151266,92 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2094), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + [85343] = 27, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1097), 1, + sym_word, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1103), 1, + anon_sym_BANG, + ACTIONS(1109), 1, + anon_sym_TILDE, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DOLLAR, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2096), 22, - sym_file_descriptor, - sym_variable_name, + ACTIONS(1133), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1137), 1, sym_test_operator, + ACTIONS(1139), 1, sym__brace_start, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + ACTIONS(5905), 1, + sym__special_character, + STATE(2593), 1, + aux_sym__literal_repeat1, + STATE(3008), 1, + sym__expression, + STATE(6992), 1, + sym__test_command_binary_expression, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(1105), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1107), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1121), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [86857] = 3, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2554), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [85443] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(6003), 1, + sym__special_character, + STATE(1801), 1, + aux_sym__literal_repeat1, + ACTIONS(5509), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 39, + ACTIONS(5507), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -152354,9 +151376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -152368,17 +151388,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [86909] = 3, + [85499] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 5, + ACTIONS(6005), 1, + sym__special_character, + STATE(1785), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 39, + ACTIONS(1360), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -152389,8 +151413,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -152402,9 +151428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -152416,76 +151440,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [86961] = 12, - ACTIONS(71), 1, + [85555] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(4253), 1, - anon_sym_PIPE, - ACTIONS(4348), 1, - anon_sym_PIPE_AMP, - ACTIONS(5994), 1, - anon_sym_LT_LT, - ACTIONS(5996), 1, - anon_sym_LT_LT_DASH, - ACTIONS(5998), 1, + ACTIONS(6008), 1, + sym__special_character, + STATE(1877), 1, + aux_sym__literal_repeat1, + ACTIONS(5325), 5, + sym_file_descriptor, sym_variable_name, - STATE(6737), 1, - sym_subscript, - ACTIONS(5992), 2, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5323), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - STATE(5360), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(5350), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4247), 10, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4261), 21, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, + anon_sym_DOLLAR, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [87031] = 3, + aux_sym__simple_variable_name_token1, + sym_word, + [85611] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(5999), 1, + sym__special_character, + STATE(1869), 1, + aux_sym__literal_repeat1, + ACTIONS(5589), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 39, + ACTIONS(5587), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -152496,9 +151516,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -152508,11 +151527,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -152525,16 +151543,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [87083] = 3, + [85667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(1274), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 39, + ACTIONS(1272), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -152545,8 +151562,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -152556,9 +151575,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -152572,21 +151591,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [87135] = 5, + [85719] = 27, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DOLLAR, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, + aux_sym_number_token1, + ACTIONS(1125), 1, + aux_sym_number_token2, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1133), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, + sym__special_character, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + ACTIONS(5995), 1, + sym__regex_no_space, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(3129), 1, + sym__expression, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1199), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2567), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [85819] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6001), 1, + ACTIONS(5999), 1, sym__special_character, - STATE(1814), 1, + STATE(1869), 1, aux_sym__literal_repeat1, - ACTIONS(1364), 4, + ACTIONS(4428), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 38, + ACTIONS(4426), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -152597,9 +151689,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -152609,6 +151700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -152623,72 +151715,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [87191] = 3, - ACTIONS(3), 1, + [85875] = 12, + ACTIONS(71), 1, sym_comment, - ACTIONS(1294), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + ACTIONS(4310), 1, + anon_sym_PIPE, + ACTIONS(4323), 1, + anon_sym_PIPE_AMP, + ACTIONS(6012), 1, + anon_sym_LT_LT, + ACTIONS(6014), 1, + anon_sym_LT_LT_DASH, + ACTIONS(6016), 1, + sym_variable_name, + STATE(6769), 1, + sym_subscript, + ACTIONS(6010), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + STATE(5377), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(5369), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4304), 10, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4318), 21, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [87243] = 5, + [85945] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6004), 1, + ACTIONS(5999), 1, sym__special_character, - STATE(1873), 1, + STATE(1869), 1, aux_sym__literal_repeat1, - ACTIONS(5180), 6, + ACTIONS(5595), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5178), 36, + ACTIONS(5593), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -152699,6 +151798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -152709,6 +151809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -152723,19 +151824,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [87299] = 3, + [86001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1274), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 38, + ACTIONS(1272), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -152747,6 +151846,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -152759,7 +151860,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -152774,17 +151874,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [87351] = 3, + [86053] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(5929), 2, sym_file_descriptor, - sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(4318), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(4304), 18, + anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + ACTIONS(5927), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [86109] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5999), 1, + sym__special_character, + STATE(1869), 1, + aux_sym__literal_repeat1, + ACTIONS(4579), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 38, + ACTIONS(4577), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -152795,6 +151949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -152808,9 +151963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -152823,17 +151976,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [87403] = 3, + [86165] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(5999), 1, + sym__special_character, + STATE(1869), 1, + aux_sym__literal_repeat1, + ACTIONS(5167), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 38, + ACTIONS(5165), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -152844,6 +152000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -152857,9 +152014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -152872,16 +152027,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [87455] = 3, + [86221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 5, + ACTIONS(1274), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 39, + ACTIONS(1272), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -152892,8 +152047,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -152903,10 +152059,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -152920,34 +152074,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [87507] = 6, + [86273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5080), 1, - aux_sym_concatenation_token1, - ACTIONS(6006), 1, - sym__concat, - STATE(1065), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 5, + ACTIONS(1306), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 36, + ACTIONS(1304), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -152956,9 +152108,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -152973,33 +152125,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [87565] = 6, + [86325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5080), 1, - aux_sym_concatenation_token1, - ACTIONS(6008), 1, - sym__concat, - STATE(1065), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, + ACTIONS(1278), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 36, + ACTIONS(1276), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -153008,9 +152157,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -153025,33 +152174,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [87623] = 6, + [86377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5080), 1, - aux_sym_concatenation_token1, - ACTIONS(5082), 1, - sym__concat, - STATE(1821), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 5, + ACTIONS(1298), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 36, + ACTIONS(1296), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -153060,9 +152206,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -153077,89 +152223,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [87681] = 27, - ACTIONS(71), 1, + [86429] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1187), 1, - sym_word, - ACTIONS(1189), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - anon_sym_TILDE, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - ACTIONS(5779), 1, + ACTIONS(6019), 1, sym__special_character, - STATE(2717), 1, + STATE(1801), 1, aux_sym__literal_repeat1, - STATE(3125), 1, - sym__expression, - STATE(7188), 1, - sym__test_command_binary_expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1191), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1193), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2503), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87781] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1350), 5, + ACTIONS(1362), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 39, + ACTIONS(1360), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -153184,9 +152260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -153198,22 +152272,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [87833] = 5, + [86485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5988), 1, - sym__special_character, - STATE(1829), 1, - aux_sym__literal_repeat1, - ACTIONS(5723), 6, + ACTIONS(1310), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5721), 36, + ACTIONS(1308), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -153225,6 +152295,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -153234,10 +152306,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -153250,16 +152323,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [87889] = 3, + [86537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 5, + ACTIONS(1314), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 39, + ACTIONS(1312), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -153299,21 +152372,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [87941] = 5, + [86589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5988), 1, - sym__special_character, - STATE(1829), 1, - aux_sym__literal_repeat1, - ACTIONS(4469), 6, + ACTIONS(1318), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 36, + ACTIONS(1316), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -153325,6 +152393,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -153334,10 +152404,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -153350,21 +152421,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [87997] = 5, + [86641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6010), 1, - sym__special_character, - STATE(1829), 1, - aux_sym__literal_repeat1, - ACTIONS(1364), 6, + ACTIONS(1302), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 36, + ACTIONS(1300), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -153376,6 +152442,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -153385,10 +152453,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -153401,70 +152470,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [88053] = 27, + [86693] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(1131), 1, + ACTIONS(187), 1, + anon_sym_TILDE, + ACTIONS(286), 1, + sym_word, + ACTIONS(295), 1, anon_sym_LPAREN, - ACTIONS(1141), 1, + ACTIONS(297), 1, + anon_sym_BANG, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + ACTIONS(307), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1187), 1, - sym_word, - ACTIONS(1189), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - anon_sym_TILDE, - ACTIONS(1201), 1, + ACTIONS(325), 1, sym_test_operator, - ACTIONS(3060), 1, + ACTIONS(327), 1, + sym__brace_start, + ACTIONS(5884), 1, anon_sym_BQUOTE, - ACTIONS(5779), 1, + ACTIONS(5942), 1, sym__special_character, - STATE(2717), 1, + ACTIONS(6022), 1, + sym__regex_no_space, + STATE(2705), 1, aux_sym__literal_repeat1, - STATE(3141), 1, + STATE(2986), 1, sym__expression, - STATE(6913), 1, - sym__test_command_binary_expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1191), 2, + ACTIONS(183), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1193), 2, + ACTIONS(185), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1199), 2, + ACTIONS(288), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(309), 2, sym_raw_string, sym_ansi_c_string, - STATE(2594), 6, + ACTIONS(323), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2952), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2503), 9, + STATE(2509), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -153474,86 +152543,86 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [88153] = 6, - ACTIONS(71), 1, + [86793] = 7, + ACTIONS(3), 1, sym_comment, - STATE(3543), 1, - aux_sym__literal_repeat1, - STATE(1868), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3480), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2072), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2074), 22, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, sym_file_descriptor, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5851), 11, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [88211] = 6, + sym_word, + [86853] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6013), 1, - aux_sym_concatenation_token1, - ACTIONS(6015), 1, - sym__concat, - STATE(1894), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 4, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, sym_file_descriptor, + ACTIONS(5861), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 37, - anon_sym_LPAREN_LPAREN, + ACTIONS(5851), 11, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -153561,7 +152630,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -153578,16 +152649,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [88269] = 3, + [86913] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(6008), 1, + sym__special_character, + STATE(1877), 1, + aux_sym__literal_repeat1, + ACTIONS(5167), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 39, + ACTIONS(5165), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -153609,12 +152684,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -153626,17 +152698,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [88321] = 3, + [86969] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 5, + ACTIONS(6024), 1, + sym__special_character, + STATE(1810), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 39, + ACTIONS(1360), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -153659,11 +152735,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -153676,16 +152751,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [88373] = 3, + [87025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 5, + ACTIONS(1322), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 39, + ACTIONS(1320), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -153710,6 +152785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -153723,18 +152799,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [88425] = 3, + [87077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1322), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 39, + ACTIONS(1320), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -153745,7 +152821,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -153774,16 +152849,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [88477] = 3, + [87129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, + ACTIONS(1330), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 39, + ACTIONS(1328), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -153794,8 +152869,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -153821,18 +152897,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [88529] = 3, + [87181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1342), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 39, + ACTIONS(1340), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -153843,7 +152919,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -153872,21 +152947,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [88581] = 6, + [87233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6013), 1, - aux_sym_concatenation_token1, - ACTIONS(6015), 1, - sym__concat, - STATE(1889), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5391), 4, + ACTIONS(1294), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5389), 37, + ACTIONS(1292), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -153897,7 +152968,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -153910,6 +152980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -153923,17 +152994,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [88639] = 3, + [87285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(1298), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 39, + ACTIONS(1296), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -153944,7 +153017,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -153955,7 +153027,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -153972,18 +153043,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [88691] = 3, + [87337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(1326), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 38, + ACTIONS(1324), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -154004,7 +153076,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -154021,95 +153092,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [88743] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1187), 1, - sym_word, - ACTIONS(1189), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - anon_sym_TILDE, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - ACTIONS(5779), 1, - sym__special_character, - STATE(2717), 1, - aux_sym__literal_repeat1, - STATE(3147), 1, - sym__expression, - STATE(7121), 1, - sym__test_command_binary_expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1191), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1193), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2503), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [88843] = 6, + [87389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6013), 1, - aux_sym_concatenation_token1, - ACTIONS(6015), 1, - sym__concat, - STATE(1894), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5395), 4, + ACTIONS(1330), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5393), 37, + ACTIONS(1328), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -154120,7 +153115,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -154133,6 +153127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -154146,72 +153141,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [88901] = 3, + [87441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 5, + ACTIONS(1350), 6, sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [88953] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6017), 1, - aux_sym_concatenation_token1, - ACTIONS(6019), 1, sym__concat, - STATE(1908), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5395), 5, - sym_file_descriptor, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5393), 36, + ACTIONS(1348), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -154234,6 +153176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -154247,23 +153190,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [89011] = 6, + [87493] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6017), 1, - aux_sym_concatenation_token1, - ACTIONS(6019), 1, - sym__concat, - STATE(1910), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5391), 5, + ACTIONS(6027), 1, + sym__special_character, + STATE(1820), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5389), 36, + ACTIONS(1360), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -154287,7 +153230,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -154299,18 +153241,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [89069] = 3, + [87549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1306), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 38, + ACTIONS(1304), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -154349,17 +153292,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [89121] = 3, + [87601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 6, + ACTIONS(1278), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 38, + ACTIONS(1276), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -154398,17 +153341,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [89173] = 3, + [87653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(1342), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 38, + ACTIONS(1340), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -154420,6 +153362,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -154445,91 +153389,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [89225] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, sym_word, - ACTIONS(248), 1, - anon_sym_LPAREN, - ACTIONS(250), 1, - anon_sym_BANG, - ACTIONS(258), 1, - anon_sym_DOLLAR, - ACTIONS(264), 1, - aux_sym_number_token1, - ACTIONS(266), 1, - aux_sym_number_token2, - ACTIONS(270), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym_test_operator, - ACTIONS(284), 1, - sym__brace_start, - ACTIONS(1075), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1079), 1, - sym__special_character, - ACTIONS(1081), 1, - anon_sym_DQUOTE, - ACTIONS(1085), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1087), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, - anon_sym_BQUOTE, - ACTIONS(6021), 1, - sym__regex_no_space, - STATE(2690), 1, - aux_sym__literal_repeat1, - STATE(3095), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1073), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1083), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1089), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3053), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2500), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [89325] = 3, + [87705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 5, + ACTIONS(1294), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 39, + ACTIONS(1292), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -154540,8 +153410,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -154551,7 +153422,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -154569,17 +153439,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [89377] = 3, + [87757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(1318), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 38, + ACTIONS(1316), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -154618,17 +153488,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [89429] = 3, + [87809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1334), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 38, + ACTIONS(1332), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -154667,17 +153537,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [89481] = 3, + [87861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(1354), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 38, + ACTIONS(1352), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -154716,17 +153586,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [89533] = 3, + [87913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1358), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 38, + ACTIONS(1356), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -154765,17 +153635,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [89585] = 3, + [87965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(1346), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 38, + ACTIONS(1344), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -154814,17 +153684,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [89637] = 3, + [88017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 6, + ACTIONS(1358), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 38, + ACTIONS(1356), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -154863,17 +153733,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [89689] = 3, + [88069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 6, + ACTIONS(1310), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 38, + ACTIONS(1308), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -154912,17 +153782,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [89741] = 3, + [88121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 6, + ACTIONS(1302), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 38, + ACTIONS(1300), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -154961,19 +153831,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [89793] = 5, + [88173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6023), 1, - sym__special_character, - STATE(1814), 1, - aux_sym__literal_repeat1, - ACTIONS(5478), 4, + ACTIONS(1338), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5476), 38, + ACTIONS(1336), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -154985,8 +153853,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -154998,7 +153864,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -155012,16 +153880,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [89849] = 3, + [88225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 5, + ACTIONS(1314), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 39, + ACTIONS(1312), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -155032,7 +153901,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -155043,7 +153911,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -155060,18 +153927,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [89901] = 3, + [88277] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 6, - sym_file_descriptor, + ACTIONS(5977), 1, + aux_sym_concatenation_token1, + ACTIONS(5991), 1, sym__concat, + STATE(1739), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5317), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 38, + ACTIONS(5315), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -155082,6 +153954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -155092,10 +153965,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -155110,17 +153981,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [89953] = 3, + [88335] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 6, - sym_file_descriptor, + ACTIONS(5977), 1, + aux_sym_concatenation_token1, + ACTIONS(5991), 1, sym__concat, + STATE(1741), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5321), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 38, + ACTIONS(5319), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -155131,6 +154006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -155143,7 +154019,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -155157,18 +154032,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [90005] = 3, + [88393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 5, + ACTIONS(1326), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 39, + ACTIONS(1324), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -155179,8 +154053,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -155190,7 +154065,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -155208,29 +154082,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90057] = 3, + [88445] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 6, - sym_file_descriptor, + ACTIONS(5071), 1, + aux_sym_concatenation_token1, + ACTIONS(5073), 1, sym__concat, + STATE(1865), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4595), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 38, + ACTIONS(4593), 36, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -155242,7 +154120,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -155257,17 +154134,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90109] = 3, + [88503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 6, + ACTIONS(1334), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 38, + ACTIONS(1332), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -155279,6 +154155,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -155288,7 +154166,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -155306,231 +154183,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90161] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1187), 1, - sym_word, - ACTIONS(1189), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - anon_sym_TILDE, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - ACTIONS(5779), 1, - sym__special_character, - ACTIONS(6025), 1, - sym__regex_no_space, - STATE(2717), 1, - aux_sym__literal_repeat1, - STATE(2995), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1191), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1193), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2503), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [90261] = 22, - ACTIONS(71), 1, + [88555] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6027), 1, - sym_word, - ACTIONS(6033), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6036), 1, - anon_sym_DOLLAR, - ACTIONS(6039), 1, - sym__special_character, - ACTIONS(6042), 1, - anon_sym_DQUOTE, - ACTIONS(6048), 1, - aux_sym_number_token1, - ACTIONS(6051), 1, - aux_sym_number_token2, - ACTIONS(6054), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6057), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6060), 1, - anon_sym_BQUOTE, - ACTIONS(6063), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6069), 1, + ACTIONS(1354), 5, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(6072), 1, sym__brace_start, - STATE(3543), 1, - aux_sym__literal_repeat1, - ACTIONS(6030), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1352), 39, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6045), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6066), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1868), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2214), 5, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2216), 8, - sym_file_descriptor, - sym_variable_name, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - STATE(3480), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [90351] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1153), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1187), 1, - sym_word, - ACTIONS(1189), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - anon_sym_TILDE, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(3060), 1, anon_sym_BQUOTE, - ACTIONS(5779), 1, - sym__special_character, - STATE(2717), 1, - aux_sym__literal_repeat1, - STATE(3153), 1, - sym__expression, - STATE(7318), 1, - sym__test_command_binary_expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1191), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1193), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2503), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [90451] = 3, + sym_word, + [88607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 6, + ACTIONS(1338), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 38, + ACTIONS(1336), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -155542,6 +154253,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -155551,7 +154264,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -155569,89 +154281,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90503] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1187), 1, - sym_word, - ACTIONS(1189), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - anon_sym_TILDE, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - ACTIONS(5779), 1, - sym__special_character, - STATE(2717), 1, - aux_sym__literal_repeat1, - STATE(3156), 1, - sym__expression, - STATE(7444), 1, - sym__test_command_binary_expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1191), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1193), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2503), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [90603] = 3, + [88659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4372), 5, + ACTIONS(1358), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 39, + ACTIONS(1356), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -155674,9 +154313,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -155691,21 +154330,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90655] = 5, + [88711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6075), 1, - sym__special_character, - STATE(1873), 1, - aux_sym__literal_repeat1, - ACTIONS(1364), 6, + ACTIONS(1346), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 36, + ACTIONS(1344), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -155717,6 +154351,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -155728,7 +154364,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -155740,19 +154378,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [90711] = 3, + [88763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 6, + ACTIONS(1358), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 38, + ACTIONS(1356), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -155764,6 +154400,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -155789,68 +154427,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [90763] = 3, - ACTIONS(3), 1, + [88815] = 27, + ACTIONS(71), 1, sym_comment, - ACTIONS(1330), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, + ACTIONS(229), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DOLLAR, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, + aux_sym_number_token1, + ACTIONS(1125), 1, + aux_sym_number_token2, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1133), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 38, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1173), 1, + anon_sym_BANG, + ACTIONS(1179), 1, + anon_sym_TILDE, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, + sym_test_operator, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(2980), 1, + sym__expression, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1175), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1183), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2530), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [88915] = 27, + ACTIONS(71), 1, + sym_comment, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(303), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(307), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(311), 1, aux_sym_number_token1, + ACTIONS(313), 1, aux_sym_number_token2, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(327), 1, + sym__brace_start, + ACTIONS(1073), 1, + sym_word, + ACTIONS(1075), 1, + anon_sym_LPAREN, + ACTIONS(1077), 1, + anon_sym_BANG, + ACTIONS(1085), 1, + anon_sym_TILDE, + ACTIONS(1095), 1, + sym_test_operator, + ACTIONS(5882), 1, + sym__special_character, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + ACTIONS(6030), 1, + sym__regex_no_space, + STATE(2503), 1, + aux_sym__literal_repeat1, + STATE(2912), 1, + sym__expression, + ACTIONS(288), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [90815] = 3, + ACTIONS(1081), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1083), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1091), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2884), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2556), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89015] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 6, - sym_file_descriptor, + ACTIONS(5875), 1, + aux_sym_concatenation_token1, + ACTIONS(6032), 1, sym__concat, + STATE(1612), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 38, + ACTIONS(1266), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -155871,9 +154609,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -155887,19 +154625,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [90867] = 3, + [89073] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 6, - sym_file_descriptor, + ACTIONS(5875), 1, + aux_sym_concatenation_token1, + ACTIONS(6034), 1, sym__concat, + STATE(1612), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 38, + ACTIONS(1286), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -155923,7 +154664,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -155938,17 +154678,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90919] = 3, + [89131] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 6, - sym_file_descriptor, + ACTIONS(5875), 1, + aux_sym_concatenation_token1, + ACTIONS(5877), 1, sym__concat, + STATE(1847), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 38, + ACTIONS(1272), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -155969,9 +154713,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -155985,185 +154729,272 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [90971] = 6, - ACTIONS(3), 1, + [89189] = 27, + ACTIONS(71), 1, sym_comment, - ACTIONS(6078), 1, - aux_sym_concatenation_token1, - ACTIONS(6081), 1, - sym__concat, - STATE(1879), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1253), 4, - sym_file_descriptor, - sym_test_operator, + ACTIONS(223), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DOLLAR, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, + aux_sym_number_token1, + ACTIONS(1125), 1, + aux_sym_number_token2, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1133), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 37, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1173), 1, + anon_sym_BANG, + ACTIONS(1179), 1, + anon_sym_TILDE, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, + sym_test_operator, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(3014), 1, + sym__expression, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1175), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1183), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2530), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89289] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(1917), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5973), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(241), 16, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - [91029] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1346), 6, + ACTIONS(278), 25, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 38, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [89345] = 27, + ACTIONS(71), 1, + sym_comment, + ACTIONS(235), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DOLLAR, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1173), 1, + anon_sym_BANG, + ACTIONS(1179), 1, + anon_sym_TILDE, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, + sym_test_operator, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(3063), 1, + sym__expression, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [91081] = 3, - ACTIONS(3), 1, + ACTIONS(1175), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1183), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2530), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89445] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1358), 6, - sym_file_descriptor, + STATE(1919), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5973), 2, sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1251), 16, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1258), 25, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 38, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [91133] = 11, + [89501] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(4253), 1, + ACTIONS(1378), 1, + anon_sym_LPAREN, + STATE(1919), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5973), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1251), 15, anon_sym_PIPE, - ACTIONS(4270), 1, - anon_sym_LT_LT, - ACTIONS(4348), 1, - anon_sym_PIPE_AMP, - ACTIONS(5998), 1, - sym_variable_name, - STATE(6737), 1, - sym_subscript, - STATE(5360), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4272), 3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_LT_DASH, - STATE(5436), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4247), 10, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -156171,17 +155002,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(4261), 21, + ACTIONS(1258), 25, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -156190,20 +155027,25 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [91201] = 3, + [89559] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4554), 5, + ACTIONS(5963), 1, + aux_sym_concatenation_token1, + ACTIONS(6036), 1, + sym__concat, + STATE(1728), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 39, + ACTIONS(1266), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -156215,8 +155057,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -156226,7 +155066,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -156243,70 +155082,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [91253] = 27, + [89617] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(1131), 1, + ACTIONS(1097), 1, + sym_word, + ACTIONS(1101), 1, anon_sym_LPAREN, - ACTIONS(1141), 1, + ACTIONS(1103), 1, + anon_sym_BANG, + ACTIONS(1109), 1, + anon_sym_TILDE, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1187), 1, - sym_word, - ACTIONS(1189), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - anon_sym_TILDE, - ACTIONS(1201), 1, + ACTIONS(1137), 1, sym_test_operator, - ACTIONS(3060), 1, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(3119), 1, anon_sym_BQUOTE, - ACTIONS(5779), 1, + ACTIONS(5905), 1, sym__special_character, - STATE(2717), 1, + STATE(2593), 1, aux_sym__literal_repeat1, - STATE(3087), 1, + STATE(3078), 1, sym__expression, - STATE(7159), 1, + STATE(7106), 1, sym__test_command_binary_expression, - ACTIONS(1129), 2, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1191), 2, + ACTIONS(1105), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1193), 2, + ACTIONS(1107), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1199), 2, + ACTIONS(1121), 2, sym_raw_string, sym_ansi_c_string, - STATE(2594), 6, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2674), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2503), 9, + STATE(2554), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -156316,15 +155155,21 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [91353] = 3, + [89717] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 4, + ACTIONS(5875), 1, + aux_sym_concatenation_token1, + ACTIONS(5877), 1, + sym__concat, + STATE(1847), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5317), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 40, + ACTIONS(5315), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -156335,10 +155180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -156365,19 +155207,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [91405] = 5, + [89775] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, - sym__special_character, - STATE(1886), 1, - aux_sym__literal_repeat1, - ACTIONS(1364), 4, + ACTIONS(5875), 1, + aux_sym_concatenation_token1, + ACTIONS(5877), 1, + sym__concat, + STATE(1848), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5321), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 38, + ACTIONS(5319), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -156388,10 +155232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -156401,9 +155242,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -156416,20 +155259,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [91461] = 5, + [89833] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5970), 1, - sym__special_character, - STATE(1736), 1, - aux_sym__literal_repeat1, - ACTIONS(5069), 5, + ACTIONS(5805), 1, + aux_sym_concatenation_token1, + ACTIONS(6038), 1, + sym__concat, + STATE(1544), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5067), 37, + ACTIONS(1266), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -156440,7 +155284,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -156454,6 +155297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -156467,17 +155311,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [91517] = 3, + [89891] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 6, - sym_file_descriptor, + ACTIONS(5805), 1, + aux_sym_concatenation_token1, + ACTIONS(6040), 1, sym__concat, + STATE(1544), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 38, + ACTIONS(1286), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -156498,10 +155346,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -156515,22 +155361,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [91569] = 6, + [89949] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6013), 1, + ACTIONS(5805), 1, aux_sym_concatenation_token1, - ACTIONS(6087), 1, + ACTIONS(5865), 1, sym__concat, - STATE(1879), 1, + STATE(1859), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 4, + ACTIONS(1274), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 37, + ACTIONS(1272), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -156541,7 +155388,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -156567,239 +155413,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [91627] = 3, - ACTIONS(3), 1, + [90007] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1263), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + STATE(3542), 1, + aux_sym__literal_repeat1, + STATE(1891), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3476), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2167), 10, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [91679] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1322), 6, + ACTIONS(2169), 22, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 38, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [91731] = 7, - ACTIONS(3), 1, + [90065] = 27, + ACTIONS(71), 1, sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, - sym_file_descriptor, - ACTIONS(5831), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5821), 11, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5819), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1097), 1, + sym_word, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1103), 1, + anon_sym_BANG, + ACTIONS(1109), 1, + anon_sym_TILDE, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1119), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [91791] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, - sym_file_descriptor, - ACTIONS(5831), 3, - sym_variable_name, + ACTIONS(1137), 1, sym_test_operator, + ACTIONS(1139), 1, sym__brace_start, - ACTIONS(5821), 11, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + ACTIONS(5905), 1, + sym__special_character, + STATE(2593), 1, + aux_sym__literal_repeat1, + STATE(2961), 1, + sym__expression, + STATE(7393), 1, + sym__test_command_binary_expression, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(1105), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1107), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1121), 2, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [91851] = 6, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2554), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [90165] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6013), 1, + ACTIONS(5071), 1, aux_sym_concatenation_token1, - ACTIONS(6089), 1, + ACTIONS(6042), 1, sym__concat, - STATE(1879), 1, + STATE(1071), 1, aux_sym_concatenation_repeat1, - ACTIONS(1267), 4, + ACTIONS(1268), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 37, + ACTIONS(1266), 36, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -156808,6 +155575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -156824,33 +155592,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [91909] = 5, + [90223] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5988), 1, - sym__special_character, - STATE(1829), 1, - aux_sym__literal_repeat1, - ACTIONS(5697), 6, + ACTIONS(5071), 1, + aux_sym_concatenation_token1, + ACTIONS(6044), 1, + sym__concat, + STATE(1071), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5695), 36, + ACTIONS(1286), 36, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -156863,6 +155631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -156875,29 +155644,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [91965] = 3, + [90281] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 6, - sym_file_descriptor, + ACTIONS(5071), 1, + aux_sym_concatenation_token1, + ACTIONS(5073), 1, sym__concat, + STATE(1864), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 38, + ACTIONS(1272), 36, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -156909,7 +155682,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -156924,73 +155696,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [92017] = 6, + [90339] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(5986), 1, - aux_sym_concatenation_token1, - ACTIONS(6091), 1, - sym__concat, - STATE(1904), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1265), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + ACTIONS(1097), 1, + sym_word, + ACTIONS(1101), 1, anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1103), 1, + anon_sym_BANG, + ACTIONS(1109), 1, + anon_sym_TILDE, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DOLLAR, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1267), 25, - sym_file_descriptor, + ACTIONS(1133), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1137), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(1139), 1, sym__brace_start, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + ACTIONS(5905), 1, + sym__special_character, + STATE(2593), 1, + aux_sym__literal_repeat1, + STATE(2982), 1, + sym__expression, + STATE(7094), 1, + sym__test_command_binary_expression, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(1105), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1107), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1121), 2, sym_raw_string, sym_ansi_c_string, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2554), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [90439] = 27, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1097), 1, + sym_word, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1103), 1, + anon_sym_BANG, + ACTIONS(1109), 1, + anon_sym_TILDE, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DOLLAR, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, + aux_sym_number_token1, + ACTIONS(1125), 1, + aux_sym_number_token2, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1137), 1, + sym_test_operator, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + ACTIONS(5905), 1, + sym__special_character, + STATE(2593), 1, + aux_sym__literal_repeat1, + STATE(3000), 1, + sym__expression, + STATE(7514), 1, + sym__test_command_binary_expression, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1105), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1107), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1121), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [92075] = 5, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2554), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [90539] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5988), 1, + ACTIONS(6046), 1, sym__special_character, - STATE(1829), 1, + STATE(1869), 1, aux_sym__literal_repeat1, - ACTIONS(4566), 6, + ACTIONS(1362), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 36, + ACTIONS(1360), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -157001,6 +155866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -157027,72 +155893,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [92131] = 5, - ACTIONS(3), 1, + [90595] = 27, + ACTIONS(71), 1, sym_comment, - ACTIONS(6093), 1, - sym__special_character, - STATE(1789), 1, - aux_sym__literal_repeat1, - ACTIONS(5395), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5393), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1097), 1, + sym_word, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1103), 1, + anon_sym_BANG, + ACTIONS(1109), 1, + anon_sym_TILDE, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DOLLAR, + ACTIONS(1119), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1137), 1, + sym_test_operator, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + ACTIONS(5905), 1, + sym__special_character, + STATE(2593), 1, + aux_sym__literal_repeat1, + STATE(3021), 1, + sym__expression, + STATE(7495), 1, + sym__test_command_binary_expression, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1105), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1107), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1121), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [92187] = 5, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2554), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [90695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5988), 1, - sym__special_character, - STATE(1829), 1, - aux_sym__literal_repeat1, - ACTIONS(5069), 6, + ACTIONS(5175), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5067), 36, + ACTIONS(5173), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -157104,6 +155987,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -157117,6 +156002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -157129,277 +156015,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [92243] = 6, + [90747] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(5986), 1, - aux_sym_concatenation_token1, - ACTIONS(6095), 1, - sym__concat, - STATE(1904), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1286), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1288), 25, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [92301] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5844), 1, - aux_sym_concatenation_token1, - ACTIONS(5846), 1, - sym__concat, - STATE(1727), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5470), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5468), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [92359] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5844), 1, - aux_sym_concatenation_token1, - ACTIONS(5846), 1, - sym__concat, - STATE(1914), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5478), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5476), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [92417] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(1904), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6097), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1251), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1097), 1, sym_word, - ACTIONS(1253), 25, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [92473] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1131), 1, + ACTIONS(1101), 1, anon_sym_LPAREN, - ACTIONS(1141), 1, + ACTIONS(1103), 1, + anon_sym_BANG, + ACTIONS(1109), 1, + anon_sym_TILDE, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1187), 1, - sym_word, - ACTIONS(1189), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - anon_sym_TILDE, - ACTIONS(1201), 1, + ACTIONS(1137), 1, sym_test_operator, - ACTIONS(3060), 1, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(3119), 1, anon_sym_BQUOTE, - ACTIONS(5779), 1, + ACTIONS(5905), 1, sym__special_character, - STATE(2717), 1, + STATE(2593), 1, aux_sym__literal_repeat1, - STATE(3040), 1, + STATE(3037), 1, sym__expression, - STATE(6920), 1, + STATE(6985), 1, sym__test_command_binary_expression, - ACTIONS(1129), 2, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1191), 2, + ACTIONS(1105), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1193), 2, + ACTIONS(1107), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1199), 2, + ACTIONS(1121), 2, sym_raw_string, sym_ansi_c_string, - STATE(2594), 6, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2674), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2503), 9, + STATE(2554), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -157409,70 +156088,70 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [92573] = 27, + [90847] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(1131), 1, + ACTIONS(1097), 1, + sym_word, + ACTIONS(1101), 1, anon_sym_LPAREN, - ACTIONS(1141), 1, + ACTIONS(1103), 1, + anon_sym_BANG, + ACTIONS(1109), 1, + anon_sym_TILDE, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1211), 1, - sym_word, - ACTIONS(1213), 1, - anon_sym_BANG, - ACTIONS(1219), 1, - anon_sym_TILDE, - ACTIONS(1221), 1, - sym__special_character, - ACTIONS(1225), 1, + ACTIONS(1137), 1, sym_test_operator, - ACTIONS(3060), 1, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(3119), 1, anon_sym_BQUOTE, - ACTIONS(6025), 1, - sym__regex_no_space, - STATE(2484), 1, + ACTIONS(5905), 1, + sym__special_character, + STATE(2593), 1, aux_sym__literal_repeat1, - STATE(3314), 1, + STATE(3065), 1, sym__expression, - ACTIONS(1129), 2, + STATE(7112), 1, + sym__test_command_binary_expression, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1215), 2, + ACTIONS(1105), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1217), 2, + ACTIONS(1107), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1223), 2, + ACTIONS(1121), 2, sym_raw_string, sym_ansi_c_string, - STATE(2594), 6, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2674), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2588), 9, + STATE(2554), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -157482,77 +156161,21 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [92673] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5998), 1, - sym_variable_name, - STATE(6737), 1, - sym_subscript, - STATE(5360), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(5436), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4247), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4253), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(4348), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - ACTIONS(4261), 15, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [92737] = 6, + [90947] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6017), 1, - aux_sym_concatenation_token1, - ACTIONS(6100), 1, - sym__concat, - STATE(1911), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 5, + ACTIONS(6049), 1, + sym__special_character, + STATE(1874), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 36, + ACTIONS(1360), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -157573,10 +156196,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -157589,73 +156212,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [92795] = 5, - ACTIONS(3), 1, + [91003] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(5932), 2, + STATE(3542), 1, + aux_sym__literal_repeat1, + STATE(1891), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3476), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2171), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2173), 22, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4261), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4247), 18, anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - ACTIONS(5930), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [92851] = 6, + [91061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6017), 1, - aux_sym_concatenation_token1, - ACTIONS(6102), 1, - sym__concat, - STATE(1911), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, + ACTIONS(1298), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 36, + ACTIONS(1296), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -157666,6 +156284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -157678,6 +156297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -157691,23 +156311,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [92909] = 6, + [91113] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6104), 1, - aux_sym_concatenation_token1, - ACTIONS(6107), 1, - sym__concat, - STATE(1911), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1253), 5, + ACTIONS(6052), 1, + sym__special_character, + STATE(1877), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 36, + ACTIONS(1360), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -157718,6 +156337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -157731,7 +156351,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -157743,146 +156362,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [92967] = 5, - ACTIONS(71), 1, + [91169] = 3, + ACTIONS(3), 1, sym_comment, - STATE(1897), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5986), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1261), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1263), 25, + ACTIONS(5175), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5173), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [93023] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(233), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, aux_sym_number_token1, - ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1179), 1, - anon_sym_TILDE, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, - sym_test_operator, - ACTIONS(3060), 1, anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(3073), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1175), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1177), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2456), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [93123] = 6, + aux_sym__simple_variable_name_token1, + sym_word, + [91221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5844), 1, - aux_sym_concatenation_token1, - ACTIONS(6110), 1, - sym__concat, - STATE(1722), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 4, + ACTIONS(1306), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 37, + ACTIONS(1304), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -157893,6 +156433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -157905,6 +156446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -157920,21 +156462,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [93181] = 6, + [91273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5844), 1, - aux_sym_concatenation_token1, - ACTIONS(5846), 1, - sym__concat, - STATE(1914), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 4, + ACTIONS(1278), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 37, + ACTIONS(1276), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -157945,6 +156482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -157957,6 +156495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -157972,22 +156511,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [93239] = 6, + [91325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6017), 1, - aux_sym_concatenation_token1, - ACTIONS(6019), 1, - sym__concat, - STATE(1908), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 5, + ACTIONS(1310), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 36, + ACTIONS(1308), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -157998,6 +156531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -158010,6 +156544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -158023,18 +156558,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [93297] = 3, + [91377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(5873), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 38, + ACTIONS(5871), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -158046,6 +156581,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -158058,7 +156595,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -158073,21 +156609,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [93349] = 6, + [91429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5920), 1, - aux_sym_concatenation_token1, - ACTIONS(5946), 1, - sym__concat, - STATE(1780), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5391), 4, + ACTIONS(5890), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5389), 37, + ACTIONS(5888), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -158099,6 +156630,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -158125,17 +156658,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [93407] = 3, + [91481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 6, + ACTIONS(1314), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 38, + ACTIONS(1312), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -158146,6 +156678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -158156,7 +156689,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -158173,18 +156705,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [93459] = 3, + [91533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1318), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 38, + ACTIONS(1316), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -158195,6 +156727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -158205,7 +156738,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -158222,18 +156754,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [93511] = 3, + [91585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 6, + ACTIONS(5873), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 38, + ACTIONS(5871), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -158245,6 +156777,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -158254,10 +156788,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -158271,22 +156803,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [93563] = 6, + [91637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5920), 1, - aux_sym_concatenation_token1, - ACTIONS(5946), 1, - sym__concat, - STATE(1779), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5395), 4, + ACTIONS(1302), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5393), 37, + ACTIONS(1300), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -158297,6 +156825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -158307,9 +156836,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -158323,18 +156852,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [93621] = 3, + [91689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 6, + ACTIONS(5890), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 38, + ACTIONS(5888), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -158346,6 +156875,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -158355,10 +156886,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -158372,18 +156901,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [93673] = 3, + [91741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 6, + ACTIONS(2169), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 38, + ACTIONS(2167), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -158395,6 +156924,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -158407,7 +156938,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -158422,143 +156952,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [93725] = 27, + [91793] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1171), 1, + ACTIONS(1097), 1, sym_word, - ACTIONS(1173), 1, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1103), 1, anon_sym_BANG, - ACTIONS(1179), 1, + ACTIONS(1109), 1, anon_sym_TILDE, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, - sym_test_operator, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - ACTIONS(6025), 1, - sym__regex_no_space, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(3067), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1175), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1177), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2456), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [93825] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1187), 1, - sym_word, - ACTIONS(1189), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - anon_sym_TILDE, - ACTIONS(1201), 1, + ACTIONS(1137), 1, sym_test_operator, - ACTIONS(3060), 1, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(3119), 1, anon_sym_BQUOTE, - ACTIONS(5779), 1, + ACTIONS(5905), 1, sym__special_character, - ACTIONS(6112), 1, + ACTIONS(5995), 1, sym__regex_no_space, - STATE(2717), 1, + STATE(2593), 1, aux_sym__literal_repeat1, - STATE(2995), 1, + STATE(3075), 1, sym__expression, - ACTIONS(1129), 2, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1191), 2, + ACTIONS(1105), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1193), 2, + ACTIONS(1107), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1199), 2, + ACTIONS(1121), 2, sym_raw_string, sym_ansi_c_string, - STATE(2594), 6, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2674), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2503), 9, + STATE(2554), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -158568,70 +157025,65 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [93925] = 27, + [91893] = 22, ACTIONS(71), 1, sym_comment, - ACTIONS(1127), 1, + ACTIONS(6055), 1, sym_word, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1133), 1, - anon_sym_BANG, - ACTIONS(1139), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, + ACTIONS(6061), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(6064), 1, anon_sym_DOLLAR, - ACTIONS(1147), 1, + ACTIONS(6067), 1, sym__special_character, - ACTIONS(1149), 1, + ACTIONS(6070), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(6076), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(6079), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(6082), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(6085), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(6088), 1, + anon_sym_BQUOTE, + ACTIONS(6091), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, + ACTIONS(6097), 1, sym_test_operator, - ACTIONS(1169), 1, + ACTIONS(6100), 1, sym__brace_start, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - ACTIONS(6025), 1, - sym__regex_no_space, - STATE(2484), 1, + STATE(3542), 1, aux_sym__literal_repeat1, - STATE(2979), 1, - sym__expression, - ACTIONS(1129), 2, + ACTIONS(6058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1137), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1151), 2, + ACTIONS(6073), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1165), 2, + ACTIONS(6094), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, + STATE(1891), 2, sym_concatenation, - STATE(2573), 9, + aux_sym_for_statement_repeat1, + ACTIONS(2181), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(2183), 8, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + STATE(3476), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -158641,17 +157093,21 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [94025] = 3, + [91983] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(5997), 1, + sym__special_character, + STATE(1874), 1, + aux_sym__literal_repeat1, + ACTIONS(5595), 6, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 38, + ACTIONS(5593), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -158675,9 +157131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -158690,21 +157144,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [94077] = 5, + [92039] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6004), 1, + ACTIONS(5989), 1, sym__special_character, - STATE(1873), 1, + STATE(1820), 1, aux_sym__literal_repeat1, - ACTIONS(5069), 6, + ACTIONS(5325), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5067), 36, + ACTIONS(5323), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -158741,33 +157195,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [94133] = 8, + [92095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(2173), 5, sym_file_descriptor, - ACTIONS(6114), 1, - anon_sym_RPAREN, - ACTIONS(5831), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(2171), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -158775,9 +157226,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -158794,33 +157244,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [94194] = 8, + [92147] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5997), 1, + sym__special_character, + STATE(1874), 1, + aux_sym__literal_repeat1, + ACTIONS(4579), 6, sym_file_descriptor, - ACTIONS(6117), 1, - anon_sym_RPAREN, - ACTIONS(5831), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4577), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -158828,13 +157278,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -158847,530 +157295,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [94255] = 26, + [92203] = 11, ACTIONS(71), 1, sym_comment, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1133), 1, - anon_sym_BANG, - ACTIONS(1139), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(4310), 1, + anon_sym_PIPE, + ACTIONS(4323), 1, + anon_sym_PIPE_AMP, + ACTIONS(4325), 1, + anon_sym_LT_LT, + ACTIONS(6016), 1, + sym_variable_name, + STATE(6769), 1, + sym_subscript, + STATE(5377), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4327), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_LT_DASH, + STATE(5473), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4304), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(1147), 1, - sym__special_character, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, aux_sym_number_token1, - ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, + sym_word, + ACTIONS(4318), 21, + sym_file_descriptor, sym_test_operator, - ACTIONS(1169), 1, sym__brace_start, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(2979), 1, - sym__expression, - ACTIONS(1129), 2, anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1137), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1151), 2, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(1165), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2573), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [94352] = 26, - ACTIONS(71), 1, + [92271] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1133), 1, - anon_sym_BANG, - ACTIONS(1139), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, + ACTIONS(1322), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1320), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1147), 1, sym__special_character, - ACTIONS(1149), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [92323] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 5, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(1169), 1, sym__brace_start, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(2978), 1, - sym__expression, - ACTIONS(1129), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1324), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1137), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1151), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2573), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [94449] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1133), 1, - anon_sym_BANG, - ACTIONS(1139), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1147), 1, sym__special_character, - ACTIONS(1149), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [92375] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1330), 5, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(1169), 1, sym__brace_start, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(2977), 1, - sym__expression, - ACTIONS(1129), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1328), 39, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1137), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1151), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2573), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [94546] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1133), 1, - anon_sym_BANG, - ACTIONS(1139), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1147), 1, - sym__special_character, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, - sym_test_operator, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(2976), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1137), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1151), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2573), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [94643] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1133), 1, - anon_sym_BANG, - ACTIONS(1139), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1147), 1, - sym__special_character, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, - sym_test_operator, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(2975), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1137), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1151), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2573), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [94740] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1133), 1, - anon_sym_BANG, - ACTIONS(1139), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1147), 1, - sym__special_character, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, - sym_test_operator, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(2974), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1137), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1151), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2573), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [94837] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1133), 1, - anon_sym_BANG, - ACTIONS(1139), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1147), 1, - sym__special_character, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, - sym_test_operator, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(2973), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1137), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1151), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2573), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [94934] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, - sym_file_descriptor, - ACTIONS(6120), 1, - anon_sym_RPAREN, - ACTIONS(5831), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5821), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -159378,11 +157480,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5819), 17, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -159396,373 +157497,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [94995] = 26, - ACTIONS(71), 1, + [92427] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1133), 1, - anon_sym_BANG, - ACTIONS(1139), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1147), 1, - sym__special_character, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, + ACTIONS(1334), 5, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(1169), 1, sym__brace_start, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(2971), 1, - sym__expression, - ACTIONS(1129), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1332), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1137), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1151), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2573), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [95092] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1133), 1, - anon_sym_BANG, - ACTIONS(1139), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1147), 1, sym__special_character, - ACTIONS(1149), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, - sym_test_operator, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(2970), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1137), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1151), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2573), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [95189] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1133), 1, - anon_sym_BANG, - ACTIONS(1139), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1147), 1, - sym__special_character, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, aux_sym_number_token1, - ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, - sym_test_operator, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(3060), 1, anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(2969), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1137), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1151), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2573), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [95286] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1133), 1, - anon_sym_BANG, - ACTIONS(1139), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1147), 1, - sym__special_character, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, - sym_test_operator, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(2968), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1137), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1151), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2573), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [95383] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1127), 1, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1133), 1, - anon_sym_BANG, - ACTIONS(1139), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1147), 1, - sym__special_character, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, - sym_test_operator, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(2967), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1137), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1151), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2573), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [95480] = 3, + [92479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 6, + ACTIONS(1338), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 37, + ACTIONS(1336), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -159773,6 +157568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -159799,18 +157595,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [95531] = 3, + [92531] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 6, + ACTIONS(6103), 1, + sym__special_character, + STATE(1785), 1, + aux_sym__literal_repeat1, + ACTIONS(5317), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 37, + ACTIONS(5315), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -159821,7 +157620,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -159833,9 +157635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -159848,17 +157648,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [95582] = 3, + [92587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5375), 6, + ACTIONS(1342), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5373), 37, + ACTIONS(1340), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -159869,6 +157668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -159881,6 +157681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -159896,229 +157697,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [95633] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1133), 1, - anon_sym_BANG, - ACTIONS(1139), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1147), 1, - sym__special_character, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, - sym_test_operator, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(3096), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1137), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1151), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2573), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [95730] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(363), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, - anon_sym_DOLLAR, - ACTIONS(371), 1, - anon_sym_DQUOTE, - ACTIONS(375), 1, - aux_sym_number_token1, - ACTIONS(377), 1, - aux_sym_number_token2, - ACTIONS(379), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, - sym__brace_start, - ACTIONS(1091), 1, - sym_word, - ACTIONS(1093), 1, - anon_sym_LPAREN, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1103), 1, - anon_sym_TILDE, - ACTIONS(1113), 1, - sym_test_operator, - ACTIONS(5809), 1, - anon_sym_BQUOTE, - ACTIONS(5916), 1, - sym__special_character, - STATE(2472), 1, - aux_sym__literal_repeat1, - STATE(2924), 1, - sym__expression, - ACTIONS(352), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1099), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1101), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1109), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2863), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2451), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [95827] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(363), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, - anon_sym_DOLLAR, - ACTIONS(371), 1, - anon_sym_DQUOTE, - ACTIONS(375), 1, - aux_sym_number_token1, - ACTIONS(377), 1, - aux_sym_number_token2, - ACTIONS(379), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, - sym__brace_start, - ACTIONS(1091), 1, - sym_word, - ACTIONS(1093), 1, - anon_sym_LPAREN, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1103), 1, - anon_sym_TILDE, - ACTIONS(1113), 1, - sym_test_operator, - ACTIONS(5809), 1, - anon_sym_BQUOTE, - ACTIONS(5916), 1, - sym__special_character, - STATE(2472), 1, - aux_sym__literal_repeat1, - STATE(2925), 1, - sym__expression, - ACTIONS(352), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1099), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1101), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1109), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2863), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2451), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [95924] = 3, + [92639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 5, + ACTIONS(1294), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 38, + ACTIONS(1292), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -160142,6 +157730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -160157,16 +157746,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [95975] = 3, + [92691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4372), 5, + ACTIONS(1350), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 38, + ACTIONS(1348), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -160188,9 +157777,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -160204,17 +157793,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [96026] = 3, + [92743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2096), 5, + ACTIONS(1354), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2094), 38, + ACTIONS(1352), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -160236,9 +157826,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -160252,161 +157842,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [96077] = 3, - ACTIONS(71), 1, + [92795] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1314), 27, + ACTIONS(1358), 5, sym_file_descriptor, sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1356), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [96128] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1336), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1338), 27, + [92847] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1346), 5, sym_file_descriptor, sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1344), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [96179] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1344), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1346), 27, + [92899] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1358), 5, sym_file_descriptor, sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1356), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [96230] = 3, + aux_sym__simple_variable_name_token1, + sym_word, + [92951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2074), 5, + ACTIONS(4513), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2072), 38, + ACTIONS(4511), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -160417,8 +158011,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -160445,16 +158040,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [96281] = 3, + [93003] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4554), 5, + ACTIONS(5997), 1, + sym__special_character, + STATE(1874), 1, + aux_sym__literal_repeat1, + ACTIONS(5167), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 38, + ACTIONS(5165), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -160465,7 +158065,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -160480,7 +158079,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -160493,16 +158091,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [96332] = 3, + [93059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5375), 5, + ACTIONS(4595), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5373), 38, + ACTIONS(4593), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -160513,8 +158111,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -160541,65 +158140,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [96383] = 3, + [93111] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(1356), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + ACTIONS(1101), 1, anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DOLLAR, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1133), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1211), 1, sym_word, - ACTIONS(1358), 27, - sym_file_descriptor, - sym__concat, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + anon_sym_TILDE, + ACTIONS(1221), 1, + sym__special_character, + ACTIONS(1225), 1, sym_test_operator, - sym__bare_dollar, - sym__brace_start, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + ACTIONS(5995), 1, + sym__regex_no_space, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(3388), 1, + sym__expression, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [96434] = 3, + ACTIONS(1215), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1217), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1223), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2732), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [93211] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5772), 6, + ACTIONS(5805), 1, + aux_sym_concatenation_token1, + ACTIONS(5865), 1, + sym__concat, + STATE(1859), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5509), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5770), 37, + ACTIONS(5507), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -160637,33 +158265,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [96485] = 3, - ACTIONS(71), 1, + [93269] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, + ACTIONS(5805), 1, + aux_sym_concatenation_token1, + ACTIONS(5865), 1, + sym__concat, + STATE(1860), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5515), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5513), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1354), 27, + [93327] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6016), 1, + sym_variable_name, + STATE(6769), 1, + sym_subscript, + STATE(5377), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(5473), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4304), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4310), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(4323), 10, sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -160673,102 +158356,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + ACTIONS(4318), 15, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [96536] = 26, + [93391] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(363), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, + ACTIONS(5973), 1, + aux_sym_concatenation_token1, + ACTIONS(6105), 1, + sym__concat, + STATE(1924), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1266), 16, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(371), 1, - anon_sym_DQUOTE, - ACTIONS(375), 1, aux_sym_number_token1, - ACTIONS(377), 1, aux_sym_number_token2, - ACTIONS(379), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, - sym__brace_start, - ACTIONS(1091), 1, + anon_sym_BQUOTE, sym_word, - ACTIONS(1093), 1, - anon_sym_LPAREN, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1103), 1, - anon_sym_TILDE, - ACTIONS(1113), 1, + ACTIONS(1268), 25, + sym_file_descriptor, sym_test_operator, - ACTIONS(5809), 1, - anon_sym_BQUOTE, - ACTIONS(5916), 1, - sym__special_character, - STATE(2472), 1, - aux_sym__literal_repeat1, - STATE(2813), 1, - sym__expression, - ACTIONS(352), 2, + sym__bare_dollar, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1099), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1101), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1109), 2, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2863), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2451), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [96633] = 5, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [93449] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6123), 1, + ACTIONS(6107), 1, sym__special_character, - STATE(1964), 1, + STATE(1810), 1, aux_sym__literal_repeat1, - ACTIONS(1364), 4, + ACTIONS(5317), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 37, + ACTIONS(5315), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -160779,8 +158447,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -160790,6 +158459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -160804,12 +158474,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [96688] = 3, + [93505] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1340), 16, + ACTIONS(5973), 1, + aux_sym_concatenation_token1, + ACTIONS(6109), 1, + sym__concat, + STATE(1924), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 16, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -160826,9 +158501,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1342), 27, + ACTIONS(1288), 25, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, @@ -160845,7 +158519,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -160854,32 +158527,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [96739] = 5, + [93563] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6126), 1, - sym__special_character, - STATE(1964), 1, - aux_sym__literal_repeat1, - ACTIONS(5478), 4, + ACTIONS(5071), 1, + aux_sym_concatenation_token1, + ACTIONS(5073), 1, + sym__concat, + STATE(1864), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4506), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5476), 37, + ACTIONS(4504), 36, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -160888,9 +158562,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -160902,106 +158578,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [96794] = 26, - ACTIONS(71), 1, + [93621] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(5071), 1, + aux_sym_concatenation_token1, + ACTIONS(5073), 1, + sym__concat, + STATE(1865), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4523), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4521), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, anon_sym_DOLLAR, - ACTIONS(371), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(375), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(377), 1, aux_sym_number_token2, - ACTIONS(379), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, - sym__brace_start, - ACTIONS(1091), 1, - sym_word, - ACTIONS(1093), 1, - anon_sym_LPAREN, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1103), 1, - anon_sym_TILDE, - ACTIONS(1113), 1, - sym_test_operator, - ACTIONS(5809), 1, anon_sym_BQUOTE, - ACTIONS(5916), 1, - sym__special_character, - STATE(2472), 1, - aux_sym__literal_repeat1, - STATE(2738), 1, - sym__expression, - ACTIONS(352), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1099), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1101), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1109), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2863), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2451), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [96891] = 6, + sym_word, + [93679] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6013), 1, + ACTIONS(5071), 1, aux_sym_concatenation_token1, - ACTIONS(6015), 1, + ACTIONS(5073), 1, sym__concat, - STATE(2068), 1, + STATE(1864), 1, aux_sym_concatenation_repeat1, - ACTIONS(5391), 4, + ACTIONS(4502), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5389), 36, + ACTIONS(4500), 36, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -161010,6 +158666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -161026,152 +158683,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [96948] = 26, - ACTIONS(71), 1, + [93737] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1187), 1, - sym_word, - ACTIONS(1189), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - anon_sym_TILDE, - ACTIONS(1201), 1, + ACTIONS(5071), 1, + aux_sym_concatenation_token1, + ACTIONS(5073), 1, + sym__concat, + STATE(1865), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4519), 5, + sym_file_descriptor, sym_test_operator, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - ACTIONS(5779), 1, - sym__special_character, - STATE(2717), 1, - aux_sym__literal_repeat1, - STATE(3048), 1, - sym__expression, - ACTIONS(1129), 2, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4517), 36, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1191), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1193), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2503), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [97045] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1153), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1187), 1, - sym_word, - ACTIONS(1189), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - anon_sym_TILDE, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(3060), 1, anon_sym_BQUOTE, - ACTIONS(5779), 1, - sym__special_character, - STATE(2621), 1, - sym__expression, - STATE(2717), 1, - aux_sym__literal_repeat1, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1191), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1193), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2503), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [97142] = 3, + sym_word, + [93795] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1328), 16, + STATE(1924), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6111), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1276), 16, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -161188,9 +158760,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1330), 27, + ACTIONS(1278), 25, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, @@ -161207,7 +158778,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -161216,21 +158786,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [97193] = 6, + [93851] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6013), 1, - aux_sym_concatenation_token1, - ACTIONS(6015), 1, - sym__concat, - STATE(2067), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5395), 4, + ACTIONS(5997), 1, + sym__special_character, + STATE(1874), 1, + aux_sym__literal_repeat1, + ACTIONS(5589), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5393), 36, + ACTIONS(5587), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -161251,10 +158821,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -161267,38 +158837,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [97250] = 3, - ACTIONS(71), 1, + [93907] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 16, + ACTIONS(5071), 1, + aux_sym_concatenation_token1, + ACTIONS(5073), 1, + sym__concat, + STATE(1864), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4428), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4426), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1322), 27, - sym_file_descriptor, + [93965] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5071), 1, + aux_sym_concatenation_token1, + ACTIONS(5073), 1, sym__concat, + STATE(1865), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4513), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4511), 36, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -161306,27 +158927,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [97301] = 5, + sym_word, + [94023] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5932), 2, + ACTIONS(5071), 1, + aux_sym_concatenation_token1, + ACTIONS(5073), 1, + sym__concat, + STATE(1864), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4579), 5, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4261), 3, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4247), 18, + aux_sym_heredoc_redirect_token1, + ACTIONS(4577), 36, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -161344,7 +158993,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - ACTIONS(5930), 20, + [94081] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1350), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1348), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -161354,8 +159013,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -161365,258 +159025,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [97356] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(350), 1, - sym_word, - ACTIONS(359), 1, - anon_sym_LPAREN, - ACTIONS(361), 1, - anon_sym_BANG, - ACTIONS(363), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(371), 1, - anon_sym_DQUOTE, - ACTIONS(375), 1, - aux_sym_number_token1, - ACTIONS(377), 1, - aux_sym_number_token2, - ACTIONS(379), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(389), 1, - sym_test_operator, - ACTIONS(391), 1, - sym__brace_start, - ACTIONS(5807), 1, sym__special_character, - ACTIONS(5809), 1, - anon_sym_BQUOTE, - STATE(2641), 1, - aux_sym__literal_repeat1, - STATE(2962), 1, - sym__expression, - ACTIONS(183), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(185), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(352), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(373), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(387), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3071), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2521), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [97453] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(350), 1, - sym_word, - ACTIONS(359), 1, - anon_sym_LPAREN, - ACTIONS(361), 1, - anon_sym_BANG, - ACTIONS(363), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, - anon_sym_DOLLAR, - ACTIONS(371), 1, - anon_sym_DQUOTE, - ACTIONS(375), 1, aux_sym_number_token1, - ACTIONS(377), 1, aux_sym_number_token2, - ACTIONS(379), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(389), 1, - sym_test_operator, - ACTIONS(391), 1, - sym__brace_start, - ACTIONS(5807), 1, - sym__special_character, - ACTIONS(5809), 1, anon_sym_BQUOTE, - STATE(2641), 1, - aux_sym__literal_repeat1, - STATE(2989), 1, - sym__expression, - ACTIONS(183), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(185), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(352), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(373), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(387), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3071), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2521), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [97550] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1316), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1318), 27, + [94133] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6114), 1, + anon_sym_RPAREN, + ACTIONS(5861), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5851), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [97601] = 26, + sym_word, + [94194] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(350), 1, - sym_word, - ACTIONS(359), 1, + ACTIONS(1101), 1, anon_sym_LPAREN, - ACTIONS(361), 1, - anon_sym_BANG, - ACTIONS(363), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(371), 1, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(375), 1, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(377), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(379), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(389), 1, - sym_test_operator, - ACTIONS(391), 1, + ACTIONS(1139), 1, sym__brace_start, - ACTIONS(5807), 1, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, sym__special_character, - ACTIONS(5809), 1, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3119), 1, anon_sym_BQUOTE, - STATE(2641), 1, + STATE(2548), 1, aux_sym__literal_repeat1, - STATE(2988), 1, + STATE(3163), 1, sym__expression, - ACTIONS(183), 2, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(185), 2, + ACTIONS(1193), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(352), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(373), 2, + ACTIONS(1199), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(387), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3071), 6, + STATE(2674), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2521), 9, + STATE(2567), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161626,29 +159166,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [97698] = 3, + [94291] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6117), 1, + anon_sym_RPAREN, + ACTIONS(5861), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 37, - anon_sym_LPAREN_LPAREN, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -161656,10 +159200,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -161674,68 +159219,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [97749] = 26, + [94352] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(350), 1, - sym_word, - ACTIONS(359), 1, + ACTIONS(1101), 1, anon_sym_LPAREN, - ACTIONS(361), 1, - anon_sym_BANG, - ACTIONS(363), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(371), 1, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(375), 1, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(377), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(379), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(389), 1, - sym_test_operator, - ACTIONS(391), 1, + ACTIONS(1139), 1, sym__brace_start, - ACTIONS(5807), 1, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, sym__special_character, - ACTIONS(5809), 1, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3119), 1, anon_sym_BQUOTE, - STATE(2641), 1, + STATE(2548), 1, aux_sym__literal_repeat1, - STATE(2986), 1, + STATE(3138), 1, sym__expression, - ACTIONS(183), 2, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(185), 2, + ACTIONS(1193), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(352), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(373), 2, + ACTIONS(1199), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(387), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3071), 6, + STATE(2674), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2521), 9, + STATE(2567), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161745,68 +159290,68 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [97846] = 26, + [94449] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(350), 1, - sym_word, - ACTIONS(359), 1, + ACTIONS(1101), 1, anon_sym_LPAREN, - ACTIONS(361), 1, - anon_sym_BANG, - ACTIONS(363), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(371), 1, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(375), 1, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(377), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(379), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(389), 1, - sym_test_operator, - ACTIONS(391), 1, + ACTIONS(1139), 1, sym__brace_start, - ACTIONS(5807), 1, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, sym__special_character, - ACTIONS(5809), 1, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3119), 1, anon_sym_BQUOTE, - STATE(2641), 1, + STATE(2548), 1, aux_sym__literal_repeat1, - STATE(2985), 1, + STATE(3140), 1, sym__expression, - ACTIONS(183), 2, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(185), 2, + ACTIONS(1193), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(352), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(373), 2, + ACTIONS(1199), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(387), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3071), 6, + STATE(2674), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2521), 9, + STATE(2567), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161816,68 +159361,68 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [97943] = 26, + [94546] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1131), 1, + ACTIONS(1101), 1, anon_sym_LPAREN, - ACTIONS(1133), 1, - anon_sym_BANG, - ACTIONS(1139), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1147), 1, - sym__special_character, - ACTIONS(1149), 1, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, - sym_test_operator, - ACTIONS(1169), 1, + ACTIONS(1139), 1, sym__brace_start, - ACTIONS(3060), 1, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, + sym__special_character, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3119), 1, anon_sym_BQUOTE, - STATE(2484), 1, + STATE(2548), 1, aux_sym__literal_repeat1, - STATE(2955), 1, + STATE(3141), 1, sym__expression, - ACTIONS(1129), 2, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1137), 2, + ACTIONS(1193), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1151), 2, + ACTIONS(1199), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2594), 6, + STATE(2674), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2573), 9, + STATE(2567), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161887,68 +159432,68 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [98040] = 26, + [94643] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(350), 1, - sym_word, - ACTIONS(359), 1, + ACTIONS(1101), 1, anon_sym_LPAREN, - ACTIONS(361), 1, - anon_sym_BANG, - ACTIONS(363), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(371), 1, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(375), 1, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(377), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(379), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(389), 1, - sym_test_operator, - ACTIONS(391), 1, + ACTIONS(1139), 1, sym__brace_start, - ACTIONS(5807), 1, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, sym__special_character, - ACTIONS(5809), 1, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3119), 1, anon_sym_BQUOTE, - STATE(2641), 1, + STATE(2548), 1, aux_sym__literal_repeat1, - STATE(2981), 1, + STATE(3143), 1, sym__expression, - ACTIONS(183), 2, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(185), 2, + ACTIONS(1193), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(352), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(373), 2, + ACTIONS(1199), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(387), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3071), 6, + STATE(2674), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2521), 9, + STATE(2567), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -161958,68 +159503,68 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [98137] = 26, + [94740] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(350), 1, - sym_word, - ACTIONS(359), 1, + ACTIONS(1101), 1, anon_sym_LPAREN, - ACTIONS(361), 1, - anon_sym_BANG, - ACTIONS(363), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(371), 1, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(375), 1, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(377), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(379), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(389), 1, - sym_test_operator, - ACTIONS(391), 1, + ACTIONS(1139), 1, sym__brace_start, - ACTIONS(5807), 1, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, sym__special_character, - ACTIONS(5809), 1, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3119), 1, anon_sym_BQUOTE, - STATE(2641), 1, + STATE(2548), 1, aux_sym__literal_repeat1, - STATE(2966), 1, + STATE(3145), 1, sym__expression, - ACTIONS(183), 2, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(185), 2, + ACTIONS(1193), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(352), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(373), 2, + ACTIONS(1199), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(387), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3071), 6, + STATE(2674), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2521), 9, + STATE(2567), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162029,88 +159574,16 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [98234] = 26, - ACTIONS(71), 1, + [94837] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(350), 1, - sym_word, - ACTIONS(359), 1, - anon_sym_LPAREN, - ACTIONS(361), 1, - anon_sym_BANG, - ACTIONS(363), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, - anon_sym_DOLLAR, - ACTIONS(371), 1, - anon_sym_DQUOTE, - ACTIONS(375), 1, - aux_sym_number_token1, - ACTIONS(377), 1, - aux_sym_number_token2, - ACTIONS(379), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(389), 1, - sym_test_operator, - ACTIONS(391), 1, - sym__brace_start, - ACTIONS(5807), 1, - sym__special_character, - ACTIONS(5809), 1, - anon_sym_BQUOTE, - STATE(2641), 1, - aux_sym__literal_repeat1, - STATE(2964), 1, - sym__expression, - ACTIONS(183), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(185), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(352), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(373), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(387), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3071), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2521), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [98331] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1334), 6, + ACTIONS(4513), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 37, + ACTIONS(4511), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -162121,6 +159594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -162131,9 +159605,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -162148,44 +159622,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98382] = 26, + [94888] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(187), 1, anon_sym_TILDE, - ACTIONS(350), 1, + ACTIONS(286), 1, sym_word, - ACTIONS(359), 1, + ACTIONS(295), 1, anon_sym_LPAREN, - ACTIONS(361), 1, + ACTIONS(297), 1, anon_sym_BANG, - ACTIONS(363), 1, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, + ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(371), 1, + ACTIONS(307), 1, anon_sym_DQUOTE, - ACTIONS(375), 1, + ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(377), 1, + ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(379), 1, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(389), 1, + ACTIONS(325), 1, sym_test_operator, - ACTIONS(391), 1, + ACTIONS(327), 1, sym__brace_start, - ACTIONS(5807), 1, - sym__special_character, - ACTIONS(5809), 1, + ACTIONS(5884), 1, anon_sym_BQUOTE, - STATE(2641), 1, + ACTIONS(5942), 1, + sym__special_character, + STATE(2705), 1, aux_sym__literal_repeat1, - STATE(2961), 1, + STATE(3115), 1, sym__expression, ACTIONS(183), 2, anon_sym_PLUS_PLUS2, @@ -162193,23 +159667,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(185), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(352), 2, + ACTIONS(288), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(373), 2, + ACTIONS(309), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(387), 2, + ACTIONS(323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3071), 6, + STATE(2952), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2521), 9, + STATE(2509), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162219,44 +159693,44 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [98479] = 26, + [94985] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(187), 1, anon_sym_TILDE, - ACTIONS(350), 1, + ACTIONS(286), 1, sym_word, - ACTIONS(359), 1, + ACTIONS(295), 1, anon_sym_LPAREN, - ACTIONS(361), 1, + ACTIONS(297), 1, anon_sym_BANG, - ACTIONS(363), 1, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, + ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(371), 1, + ACTIONS(307), 1, anon_sym_DQUOTE, - ACTIONS(375), 1, + ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(377), 1, + ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(379), 1, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(389), 1, + ACTIONS(325), 1, sym_test_operator, - ACTIONS(391), 1, + ACTIONS(327), 1, sym__brace_start, - ACTIONS(5807), 1, - sym__special_character, - ACTIONS(5809), 1, + ACTIONS(5884), 1, anon_sym_BQUOTE, - STATE(2641), 1, + ACTIONS(5942), 1, + sym__special_character, + STATE(2705), 1, aux_sym__literal_repeat1, - STATE(2960), 1, + STATE(3116), 1, sym__expression, ACTIONS(183), 2, anon_sym_PLUS_PLUS2, @@ -162264,23 +159738,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(185), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(352), 2, + ACTIONS(288), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(373), 2, + ACTIONS(309), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(387), 2, + ACTIONS(323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3071), 6, + STATE(2952), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2521), 9, + STATE(2509), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162290,139 +159764,68 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [98576] = 26, + [95082] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(350), 1, - sym_word, - ACTIONS(359), 1, + ACTIONS(1101), 1, anon_sym_LPAREN, - ACTIONS(361), 1, - anon_sym_BANG, - ACTIONS(363), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(371), 1, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(375), 1, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(377), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(379), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(389), 1, - sym_test_operator, - ACTIONS(391), 1, + ACTIONS(1139), 1, sym__brace_start, - ACTIONS(5807), 1, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, sym__special_character, - ACTIONS(5809), 1, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3119), 1, anon_sym_BQUOTE, - STATE(2641), 1, + STATE(2548), 1, aux_sym__literal_repeat1, - STATE(2959), 1, + STATE(3148), 1, sym__expression, - ACTIONS(183), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(185), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(352), 2, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(373), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(387), 2, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3071), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2521), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [98673] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(350), 1, - sym_word, - ACTIONS(359), 1, - anon_sym_LPAREN, - ACTIONS(361), 1, - anon_sym_BANG, - ACTIONS(363), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, - anon_sym_DOLLAR, - ACTIONS(371), 1, - anon_sym_DQUOTE, - ACTIONS(375), 1, - aux_sym_number_token1, - ACTIONS(377), 1, - aux_sym_number_token2, - ACTIONS(379), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(389), 1, - sym_test_operator, - ACTIONS(391), 1, - sym__brace_start, - ACTIONS(5807), 1, - sym__special_character, - ACTIONS(5809), 1, - anon_sym_BQUOTE, - STATE(2641), 1, - aux_sym__literal_repeat1, - STATE(2958), 1, - sym__expression, - ACTIONS(183), 2, + ACTIONS(1191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(185), 2, + ACTIONS(1193), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(352), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(373), 2, + ACTIONS(1199), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(387), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3071), 6, + STATE(2674), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2521), 9, + STATE(2567), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162432,109 +159835,81 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [98770] = 26, - ACTIONS(71), 1, + [95179] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(350), 1, - sym_word, - ACTIONS(359), 1, - anon_sym_LPAREN, - ACTIONS(361), 1, - anon_sym_BANG, - ACTIONS(363), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, - anon_sym_DOLLAR, - ACTIONS(371), 1, - anon_sym_DQUOTE, - ACTIONS(375), 1, - aux_sym_number_token1, - ACTIONS(377), 1, - aux_sym_number_token2, - ACTIONS(379), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(389), 1, + ACTIONS(1298), 5, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(391), 1, sym__brace_start, - ACTIONS(5807), 1, - sym__special_character, - ACTIONS(5809), 1, - anon_sym_BQUOTE, - STATE(2641), 1, - aux_sym__literal_repeat1, - STATE(2957), 1, - sym__expression, - ACTIONS(183), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(185), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(352), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1296), 38, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(373), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(387), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3071), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2521), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [98867] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1308), 16, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1310), 27, + [95230] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5873), 6, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5871), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -162542,26 +159917,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [98918] = 3, + sym_word, + [95281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(2173), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 37, + ACTIONS(2171), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -162572,6 +159951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -162582,9 +159962,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -162599,16 +159979,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98969] = 3, + [95332] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 5, + ACTIONS(6120), 1, + sym__special_character, + STATE(2205), 1, + aux_sym__literal_repeat1, + ACTIONS(5317), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 38, + ACTIONS(5315), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -162619,7 +160003,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -162634,7 +160017,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -162647,38 +160029,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [99020] = 3, - ACTIONS(71), 1, + [95387] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 16, + ACTIONS(1318), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1316), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1294), 27, + [95438] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4595), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4593), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -162686,25 +160111,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [99071] = 3, + sym_word, + [95489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1306), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 38, + ACTIONS(1304), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -162743,17 +160173,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [99122] = 3, + [95540] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(5175), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 37, + ACTIONS(5173), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -162764,6 +160193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -162774,9 +160204,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -162791,68 +160221,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [99173] = 26, + [95591] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1131), 1, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, + sym_word, + ACTIONS(248), 1, anon_sym_LPAREN, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(258), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(264), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(266), 1, aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(270), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, + ACTIONS(282), 1, + sym_test_operator, + ACTIONS(284), 1, sym__brace_start, - ACTIONS(1211), 1, - sym_word, - ACTIONS(1213), 1, - anon_sym_BANG, - ACTIONS(1219), 1, - anon_sym_TILDE, - ACTIONS(1221), 1, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1159), 1, sym__special_character, - ACTIONS(1225), 1, - sym_test_operator, - ACTIONS(3060), 1, + ACTIONS(1161), 1, + anon_sym_DQUOTE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, anon_sym_BQUOTE, - STATE(2484), 1, + STATE(2623), 1, aux_sym__literal_repeat1, - STATE(3305), 1, + STATE(3113), 1, sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1215), 2, + ACTIONS(103), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1217), 2, + ACTIONS(105), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1223), 2, + ACTIONS(1153), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1163), 2, sym_raw_string, sym_ansi_c_string, - STATE(2594), 6, + ACTIONS(1169), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2976), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2588), 9, + STATE(2498), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -162862,186 +160292,188 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [99270] = 26, - ACTIONS(71), 1, + [95688] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, + ACTIONS(1278), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1276), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1153), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1211), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1213), 1, - anon_sym_BANG, - ACTIONS(1219), 1, - anon_sym_TILDE, - ACTIONS(1221), 1, - sym__special_character, - ACTIONS(1225), 1, + [95739] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(3314), 1, - sym__expression, - ACTIONS(1129), 2, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1296), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1215), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1217), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1223), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2588), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [99367] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1153), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1211), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1213), 1, - anon_sym_BANG, - ACTIONS(1219), 1, - anon_sym_TILDE, - ACTIONS(1221), 1, - sym__special_character, - ACTIONS(1225), 1, + [95790] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1346), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(3319), 1, - sym__expression, - ACTIONS(1129), 2, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1344), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1215), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1217), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1223), 2, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2588), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [99464] = 26, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [95841] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(187), 1, anon_sym_TILDE, - ACTIONS(350), 1, + ACTIONS(286), 1, sym_word, - ACTIONS(359), 1, + ACTIONS(295), 1, anon_sym_LPAREN, - ACTIONS(361), 1, + ACTIONS(297), 1, anon_sym_BANG, - ACTIONS(363), 1, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, + ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(371), 1, + ACTIONS(307), 1, anon_sym_DQUOTE, - ACTIONS(375), 1, + ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(377), 1, + ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(379), 1, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(389), 1, + ACTIONS(325), 1, sym_test_operator, - ACTIONS(391), 1, + ACTIONS(327), 1, sym__brace_start, - ACTIONS(5807), 1, - sym__special_character, - ACTIONS(5809), 1, + ACTIONS(5884), 1, anon_sym_BQUOTE, - STATE(2641), 1, + ACTIONS(5942), 1, + sym__special_character, + STATE(2705), 1, aux_sym__literal_repeat1, - STATE(3011), 1, + STATE(2954), 1, sym__expression, ACTIONS(183), 2, anon_sym_PLUS_PLUS2, @@ -163049,23 +160481,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(185), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(352), 2, + ACTIONS(288), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(373), 2, + ACTIONS(309), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(387), 2, + ACTIONS(323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3071), 6, + STATE(2952), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2521), 9, + STATE(2509), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -163075,116 +160507,68 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [99561] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1332), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1334), 27, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [99612] = 26, + [95938] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1127), 1, + ACTIONS(187), 1, + anon_sym_TILDE, + ACTIONS(286), 1, sym_word, - ACTIONS(1131), 1, + ACTIONS(295), 1, anon_sym_LPAREN, - ACTIONS(1133), 1, + ACTIONS(297), 1, anon_sym_BANG, - ACTIONS(1139), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(1147), 1, - sym__special_character, - ACTIONS(1149), 1, + ACTIONS(307), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, + ACTIONS(325), 1, sym_test_operator, - ACTIONS(1169), 1, + ACTIONS(327), 1, sym__brace_start, - ACTIONS(3060), 1, + ACTIONS(5884), 1, anon_sym_BQUOTE, - STATE(2484), 1, + ACTIONS(5942), 1, + sym__special_character, + STATE(2705), 1, aux_sym__literal_repeat1, - STATE(3054), 1, + STATE(2986), 1, sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + ACTIONS(183), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1137), 2, + ACTIONS(185), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1151), 2, + ACTIONS(288), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(309), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1165), 2, + ACTIONS(323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2594), 6, + STATE(2952), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2573), 9, + STATE(2509), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -163194,17 +160578,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [99709] = 3, + [96035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 6, + ACTIONS(1358), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 37, + ACTIONS(1356), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -163242,17 +160626,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [99760] = 3, + [96086] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 6, + ACTIONS(1274), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 37, + ACTIONS(1272), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -163264,6 +160646,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -163275,7 +160659,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -163289,17 +160672,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [99811] = 3, + [96137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, + ACTIONS(1310), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 38, + ACTIONS(1308), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -163338,68 +160722,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [99862] = 26, + [96188] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(187), 1, + anon_sym_TILDE, + ACTIONS(286), 1, + sym_word, + ACTIONS(295), 1, + anon_sym_LPAREN, + ACTIONS(297), 1, + anon_sym_BANG, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, + ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(371), 1, + ACTIONS(307), 1, anon_sym_DQUOTE, - ACTIONS(375), 1, + ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(377), 1, + ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(379), 1, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, - sym__brace_start, - ACTIONS(1091), 1, - sym_word, - ACTIONS(1093), 1, - anon_sym_LPAREN, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1103), 1, - anon_sym_TILDE, - ACTIONS(1113), 1, + ACTIONS(325), 1, sym_test_operator, - ACTIONS(5809), 1, + ACTIONS(327), 1, + sym__brace_start, + ACTIONS(5884), 1, anon_sym_BQUOTE, - ACTIONS(5916), 1, + ACTIONS(5942), 1, sym__special_character, - STATE(2472), 1, + STATE(2705), 1, aux_sym__literal_repeat1, - STATE(2837), 1, + STATE(3001), 1, sym__expression, - ACTIONS(352), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1099), 2, + ACTIONS(183), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1101), 2, + ACTIONS(185), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1109), 2, + ACTIONS(288), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(309), 2, sym_raw_string, sym_ansi_c_string, - STATE(2863), 6, + ACTIONS(323), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2952), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2451), 9, + STATE(2509), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -163409,210 +160793,116 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [99959] = 26, - ACTIONS(71), 1, + [96285] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1211), 1, - sym_word, - ACTIONS(1213), 1, - anon_sym_BANG, - ACTIONS(1219), 1, - anon_sym_TILDE, - ACTIONS(1221), 1, - sym__special_character, - ACTIONS(1225), 1, + ACTIONS(5175), 6, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(3323), 1, - sym__expression, - ACTIONS(1129), 2, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5173), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1215), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1217), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1223), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2588), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [100056] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1153), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1211), 1, - sym_word, - ACTIONS(1213), 1, - anon_sym_BANG, - ACTIONS(1219), 1, - anon_sym_TILDE, - ACTIONS(1221), 1, - sym__special_character, - ACTIONS(1225), 1, - sym_test_operator, - ACTIONS(3060), 1, anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(3327), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1215), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1217), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1223), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2588), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [100153] = 26, + aux_sym__simple_variable_name_token1, + sym_word, + [96336] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1131), 1, + ACTIONS(187), 1, + anon_sym_TILDE, + ACTIONS(286), 1, + sym_word, + ACTIONS(295), 1, anon_sym_LPAREN, - ACTIONS(1141), 1, + ACTIONS(297), 1, + anon_sym_BANG, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + ACTIONS(307), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1211), 1, - sym_word, - ACTIONS(1213), 1, - anon_sym_BANG, - ACTIONS(1219), 1, - anon_sym_TILDE, - ACTIONS(1221), 1, - sym__special_character, - ACTIONS(1225), 1, + ACTIONS(325), 1, sym_test_operator, - ACTIONS(3060), 1, + ACTIONS(327), 1, + sym__brace_start, + ACTIONS(5884), 1, anon_sym_BQUOTE, - STATE(2484), 1, + ACTIONS(5942), 1, + sym__special_character, + STATE(2705), 1, aux_sym__literal_repeat1, - STATE(3330), 1, + STATE(3025), 1, sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1215), 2, + ACTIONS(183), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1217), 2, + ACTIONS(185), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1223), 2, + ACTIONS(288), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(309), 2, sym_raw_string, sym_ansi_c_string, - STATE(2594), 6, + ACTIONS(323), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2952), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2588), 9, + STATE(2509), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -163622,68 +160912,68 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [100250] = 26, + [96433] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1131), 1, + ACTIONS(187), 1, + anon_sym_TILDE, + ACTIONS(286), 1, + sym_word, + ACTIONS(295), 1, anon_sym_LPAREN, - ACTIONS(1141), 1, + ACTIONS(297), 1, + anon_sym_BANG, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + ACTIONS(307), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1211), 1, - sym_word, - ACTIONS(1213), 1, - anon_sym_BANG, - ACTIONS(1219), 1, - anon_sym_TILDE, - ACTIONS(1221), 1, - sym__special_character, - ACTIONS(1225), 1, + ACTIONS(325), 1, sym_test_operator, - ACTIONS(3060), 1, + ACTIONS(327), 1, + sym__brace_start, + ACTIONS(5884), 1, anon_sym_BQUOTE, - STATE(2484), 1, + ACTIONS(5942), 1, + sym__special_character, + STATE(2705), 1, aux_sym__literal_repeat1, - STATE(3332), 1, + STATE(2948), 1, sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1215), 2, + ACTIONS(183), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1217), 2, + ACTIONS(185), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1223), 2, + ACTIONS(288), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(309), 2, sym_raw_string, sym_ansi_c_string, - STATE(2594), 6, + ACTIONS(323), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2952), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2588), 9, + STATE(2509), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -163693,16 +160983,17 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [100347] = 3, + [96530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1302), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 38, + ACTIONS(1300), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -163713,7 +161004,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -163741,68 +161031,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [100398] = 26, + [96581] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1131), 1, + ACTIONS(187), 1, + anon_sym_TILDE, + ACTIONS(286), 1, + sym_word, + ACTIONS(295), 1, anon_sym_LPAREN, - ACTIONS(1141), 1, + ACTIONS(297), 1, + anon_sym_BANG, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + ACTIONS(307), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1211), 1, - sym_word, - ACTIONS(1213), 1, - anon_sym_BANG, - ACTIONS(1219), 1, - anon_sym_TILDE, - ACTIONS(1221), 1, - sym__special_character, - ACTIONS(1225), 1, + ACTIONS(325), 1, sym_test_operator, - ACTIONS(3060), 1, + ACTIONS(327), 1, + sym__brace_start, + ACTIONS(5884), 1, anon_sym_BQUOTE, - STATE(2484), 1, + ACTIONS(5942), 1, + sym__special_character, + STATE(2705), 1, aux_sym__literal_repeat1, - STATE(3335), 1, + STATE(2953), 1, sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1215), 2, + ACTIONS(183), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1217), 2, + ACTIONS(185), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1223), 2, + ACTIONS(288), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(309), 2, sym_raw_string, sym_ansi_c_string, - STATE(2594), 6, + ACTIONS(323), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2952), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2588), 9, + STATE(2509), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -163812,68 +161102,68 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [100495] = 26, + [96678] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(187), 1, + anon_sym_TILDE, + ACTIONS(286), 1, + sym_word, + ACTIONS(295), 1, + anon_sym_LPAREN, + ACTIONS(297), 1, + anon_sym_BANG, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, + ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(371), 1, + ACTIONS(307), 1, anon_sym_DQUOTE, - ACTIONS(375), 1, + ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(377), 1, + ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(379), 1, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, - sym__brace_start, - ACTIONS(1091), 1, - sym_word, - ACTIONS(1093), 1, - anon_sym_LPAREN, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1103), 1, - anon_sym_TILDE, - ACTIONS(1113), 1, + ACTIONS(325), 1, sym_test_operator, - ACTIONS(5809), 1, + ACTIONS(327), 1, + sym__brace_start, + ACTIONS(5884), 1, anon_sym_BQUOTE, - ACTIONS(5916), 1, + ACTIONS(5942), 1, sym__special_character, - STATE(2472), 1, + STATE(2705), 1, aux_sym__literal_repeat1, - STATE(2835), 1, + STATE(2956), 1, sym__expression, - ACTIONS(352), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1099), 2, + ACTIONS(183), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1101), 2, + ACTIONS(185), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1109), 2, + ACTIONS(288), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(309), 2, sym_raw_string, sym_ansi_c_string, - STATE(2863), 6, + ACTIONS(323), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2952), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2451), 9, + STATE(2509), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -163883,116 +161173,68 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [100592] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5768), 6, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(5766), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [100643] = 26, + [96775] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1131), 1, + ACTIONS(187), 1, + anon_sym_TILDE, + ACTIONS(286), 1, + sym_word, + ACTIONS(295), 1, anon_sym_LPAREN, - ACTIONS(1141), 1, + ACTIONS(297), 1, + anon_sym_BANG, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + ACTIONS(307), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1211), 1, - sym_word, - ACTIONS(1213), 1, - anon_sym_BANG, - ACTIONS(1219), 1, - anon_sym_TILDE, - ACTIONS(1221), 1, - sym__special_character, - ACTIONS(1225), 1, + ACTIONS(325), 1, sym_test_operator, - ACTIONS(3060), 1, + ACTIONS(327), 1, + sym__brace_start, + ACTIONS(5884), 1, anon_sym_BQUOTE, - STATE(2484), 1, + ACTIONS(5942), 1, + sym__special_character, + STATE(2705), 1, aux_sym__literal_repeat1, - STATE(3345), 1, + STATE(2957), 1, sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1215), 2, + ACTIONS(183), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1217), 2, + ACTIONS(185), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1223), 2, + ACTIONS(288), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(309), 2, sym_raw_string, sym_ansi_c_string, - STATE(2594), 6, + ACTIONS(323), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2952), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2588), 9, + STATE(2509), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -164002,120 +161244,68 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [100740] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, - sym_file_descriptor, - ACTIONS(5831), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5821), 10, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5819), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [100799] = 26, + [96872] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1131), 1, + ACTIONS(187), 1, + anon_sym_TILDE, + ACTIONS(286), 1, + sym_word, + ACTIONS(295), 1, anon_sym_LPAREN, - ACTIONS(1141), 1, + ACTIONS(297), 1, + anon_sym_BANG, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + ACTIONS(307), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1211), 1, - sym_word, - ACTIONS(1213), 1, - anon_sym_BANG, - ACTIONS(1219), 1, - anon_sym_TILDE, - ACTIONS(1221), 1, - sym__special_character, - ACTIONS(1225), 1, + ACTIONS(325), 1, sym_test_operator, - ACTIONS(3060), 1, + ACTIONS(327), 1, + sym__brace_start, + ACTIONS(5884), 1, anon_sym_BQUOTE, - STATE(2484), 1, + ACTIONS(5942), 1, + sym__special_character, + STATE(2705), 1, aux_sym__literal_repeat1, - STATE(3347), 1, + STATE(2975), 1, sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1215), 2, + ACTIONS(183), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1217), 2, + ACTIONS(185), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1223), 2, + ACTIONS(288), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(309), 2, sym_raw_string, sym_ansi_c_string, - STATE(2594), 6, + ACTIONS(323), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2952), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2588), 9, + STATE(2509), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -164125,168 +161315,139 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [100896] = 7, - ACTIONS(3), 1, + [96969] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, - sym_file_descriptor, - ACTIONS(5831), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5821), 10, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5819), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(187), 1, + anon_sym_TILDE, + ACTIONS(286), 1, + sym_word, + ACTIONS(295), 1, + anon_sym_LPAREN, + ACTIONS(297), 1, + anon_sym_BANG, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(303), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(307), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(311), 1, aux_sym_number_token1, + ACTIONS(313), 1, aux_sym_number_token2, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [100955] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5772), 5, - sym_file_descriptor, - sym_variable_name, + ACTIONS(325), 1, sym_test_operator, + ACTIONS(327), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5770), 38, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + ACTIONS(5942), 1, + sym__special_character, + STATE(2705), 1, + aux_sym__literal_repeat1, + STATE(2977), 1, + sym__expression, + ACTIONS(183), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(185), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(288), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(309), 2, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [101006] = 26, + STATE(2952), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2509), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [97066] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(187), 1, + anon_sym_TILDE, + ACTIONS(286), 1, + sym_word, + ACTIONS(295), 1, + anon_sym_LPAREN, + ACTIONS(297), 1, + anon_sym_BANG, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, + ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(371), 1, + ACTIONS(307), 1, anon_sym_DQUOTE, - ACTIONS(375), 1, + ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(377), 1, + ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(379), 1, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, - sym__brace_start, - ACTIONS(1091), 1, - sym_word, - ACTIONS(1093), 1, - anon_sym_LPAREN, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1103), 1, - anon_sym_TILDE, - ACTIONS(1113), 1, + ACTIONS(325), 1, sym_test_operator, - ACTIONS(5809), 1, + ACTIONS(327), 1, + sym__brace_start, + ACTIONS(5884), 1, anon_sym_BQUOTE, - ACTIONS(5916), 1, + ACTIONS(5942), 1, sym__special_character, - STATE(2472), 1, + STATE(2705), 1, aux_sym__literal_repeat1, - STATE(2831), 1, + STATE(2978), 1, sym__expression, - ACTIONS(352), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1099), 2, + ACTIONS(183), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1101), 2, + ACTIONS(185), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1109), 2, + ACTIONS(288), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(309), 2, sym_raw_string, sym_ansi_c_string, - STATE(2863), 6, + ACTIONS(323), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2952), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2451), 9, + STATE(2509), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -164296,68 +161457,68 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [101103] = 26, + [97163] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(187), 1, + anon_sym_TILDE, + ACTIONS(286), 1, + sym_word, + ACTIONS(295), 1, + anon_sym_LPAREN, + ACTIONS(297), 1, + anon_sym_BANG, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, + ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(371), 1, + ACTIONS(307), 1, anon_sym_DQUOTE, - ACTIONS(375), 1, + ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(377), 1, + ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(379), 1, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, - sym__brace_start, - ACTIONS(1091), 1, - sym_word, - ACTIONS(1093), 1, - anon_sym_LPAREN, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1103), 1, - anon_sym_TILDE, - ACTIONS(1113), 1, + ACTIONS(325), 1, sym_test_operator, - ACTIONS(5809), 1, + ACTIONS(327), 1, + sym__brace_start, + ACTIONS(5884), 1, anon_sym_BQUOTE, - ACTIONS(5916), 1, + ACTIONS(5942), 1, sym__special_character, - STATE(2472), 1, + STATE(2705), 1, aux_sym__literal_repeat1, - STATE(2802), 1, + STATE(3002), 1, sym__expression, - ACTIONS(352), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1099), 2, + ACTIONS(183), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1101), 2, + ACTIONS(185), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1109), 2, + ACTIONS(288), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(309), 2, sym_raw_string, sym_ansi_c_string, - STATE(2863), 6, + ACTIONS(323), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2952), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2451), 9, + STATE(2509), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -164367,68 +161528,68 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [101200] = 26, + [97260] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1127), 1, + ACTIONS(187), 1, + anon_sym_TILDE, + ACTIONS(286), 1, sym_word, - ACTIONS(1131), 1, + ACTIONS(295), 1, anon_sym_LPAREN, - ACTIONS(1133), 1, + ACTIONS(297), 1, anon_sym_BANG, - ACTIONS(1139), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(1147), 1, - sym__special_character, - ACTIONS(1149), 1, + ACTIONS(307), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, + ACTIONS(325), 1, sym_test_operator, - ACTIONS(1169), 1, + ACTIONS(327), 1, sym__brace_start, - ACTIONS(3060), 1, + ACTIONS(5884), 1, anon_sym_BQUOTE, - STATE(2484), 1, + ACTIONS(5942), 1, + sym__special_character, + STATE(2705), 1, aux_sym__literal_repeat1, - STATE(3022), 1, + STATE(3066), 1, sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + ACTIONS(183), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1137), 2, + ACTIONS(185), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1151), 2, + ACTIONS(288), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(309), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1165), 2, + ACTIONS(323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2594), 6, + STATE(2952), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2573), 9, + STATE(2509), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -164438,20 +161599,16 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [101297] = 5, + [97357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6128), 1, - sym__special_character, - STATE(2026), 1, - aux_sym__literal_repeat1, - ACTIONS(5395), 5, + ACTIONS(1314), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5393), 36, + ACTIONS(1312), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -164462,6 +161619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -164472,10 +161630,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -164488,17 +161647,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [101352] = 3, + [97408] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 6, + ACTIONS(6122), 1, + sym__special_character, + STATE(1973), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 37, + ACTIONS(1360), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -164510,6 +161671,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -164521,9 +161684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -164536,20 +161697,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [101403] = 5, + [97463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6130), 1, - sym__special_character, - STATE(2026), 1, - aux_sym__literal_repeat1, - ACTIONS(1364), 5, + ACTIONS(1278), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 36, + ACTIONS(1276), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -164570,10 +161728,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -164586,352 +161745,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [101458] = 26, + [97514] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(363), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, + ACTIONS(1320), 16, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(371), 1, - anon_sym_DQUOTE, - ACTIONS(375), 1, aux_sym_number_token1, - ACTIONS(377), 1, aux_sym_number_token2, - ACTIONS(379), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, - sym__brace_start, - ACTIONS(1091), 1, + anon_sym_BQUOTE, sym_word, - ACTIONS(1093), 1, - anon_sym_LPAREN, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1103), 1, - anon_sym_TILDE, - ACTIONS(1113), 1, + ACTIONS(1322), 27, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(5809), 1, - anon_sym_BQUOTE, - ACTIONS(5916), 1, - sym__special_character, - STATE(2472), 1, - aux_sym__literal_repeat1, - STATE(2830), 1, - sym__expression, - ACTIONS(352), 2, + sym__bare_dollar, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1099), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1101), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1109), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2863), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2451), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [101555] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 1, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1179), 1, - anon_sym_TILDE, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, - sym_test_operator, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(3023), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1175), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1177), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2456), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [101652] = 26, - ACTIONS(71), 1, + [97565] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, + ACTIONS(5175), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5173), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1153), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1171), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1179), 1, - anon_sym_TILDE, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, + [97616] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1274), 4, + sym_file_descriptor, sym_test_operator, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(3030), 1, - sym__expression, - ACTIONS(1129), 2, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1272), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1175), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1177), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2456), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [101749] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(363), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, anon_sym_DOLLAR, - ACTIONS(371), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(375), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(377), 1, aux_sym_number_token2, - ACTIONS(379), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, - sym__brace_start, - ACTIONS(1091), 1, - sym_word, - ACTIONS(1093), 1, - anon_sym_LPAREN, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1103), 1, - anon_sym_TILDE, - ACTIONS(1113), 1, - sym_test_operator, - ACTIONS(5809), 1, anon_sym_BQUOTE, - ACTIONS(5916), 1, - sym__special_character, - STATE(2472), 1, - aux_sym__literal_repeat1, - STATE(2829), 1, - sym__expression, - ACTIONS(352), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1099), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1101), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1109), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2863), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2451), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [101846] = 26, + sym_word, + [97667] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(1097), 1, + sym_word, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1103), 1, + anon_sym_BANG, + ACTIONS(1109), 1, + anon_sym_TILDE, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(371), 1, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(375), 1, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(377), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(379), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, - sym__brace_start, - ACTIONS(1091), 1, - sym_word, - ACTIONS(1093), 1, - anon_sym_LPAREN, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1103), 1, - anon_sym_TILDE, - ACTIONS(1113), 1, + ACTIONS(1137), 1, sym_test_operator, - ACTIONS(5809), 1, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(3119), 1, anon_sym_BQUOTE, - ACTIONS(5916), 1, + ACTIONS(5905), 1, sym__special_character, - STATE(2472), 1, + STATE(2593), 1, aux_sym__literal_repeat1, - STATE(2828), 1, + STATE(3127), 1, sym__expression, - ACTIONS(352), 2, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1099), 2, + ACTIONS(1105), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1101), 2, + ACTIONS(1107), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1109), 2, + ACTIONS(1121), 2, sym_raw_string, sym_ansi_c_string, - STATE(2863), 6, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2674), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2451), 9, + STATE(2554), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -164941,17 +161960,16 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [101943] = 3, + [97764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 6, + ACTIONS(5873), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 37, + ACTIONS(5871), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -164962,6 +161980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -164972,9 +161991,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -164989,20 +162008,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [101994] = 5, + [97815] = 3, ACTIONS(71), 1, sym_comment, - STATE(2152), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6133), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1261), 15, + ACTIONS(1324), 16, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_LPAREN, anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, @@ -165013,8 +162028,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1263), 25, + ACTIONS(1326), 27, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, @@ -165031,6 +162047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -165039,223 +162056,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [102049] = 26, - ACTIONS(71), 1, + [97866] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, - anon_sym_DOLLAR, - ACTIONS(371), 1, - anon_sym_DQUOTE, - ACTIONS(375), 1, - aux_sym_number_token1, - ACTIONS(377), 1, - aux_sym_number_token2, - ACTIONS(379), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, - sym__brace_start, - ACTIONS(1091), 1, - sym_word, - ACTIONS(1093), 1, - anon_sym_LPAREN, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1103), 1, - anon_sym_TILDE, - ACTIONS(1113), 1, + ACTIONS(1318), 5, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(5809), 1, - anon_sym_BQUOTE, - ACTIONS(5916), 1, - sym__special_character, - STATE(2472), 1, - aux_sym__literal_repeat1, - STATE(2816), 1, - sym__expression, - ACTIONS(352), 2, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1316), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1099), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1101), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1109), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2863), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2451), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102146] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1133), 1, - anon_sym_BANG, - ACTIONS(1139), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1147), 1, sym__special_character, - ACTIONS(1149), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, - sym_test_operator, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(2942), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1137), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1151), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2573), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102243] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, - sym_word, - ACTIONS(248), 1, - anon_sym_LPAREN, - ACTIONS(250), 1, - anon_sym_BANG, - ACTIONS(258), 1, - anon_sym_DOLLAR, - ACTIONS(264), 1, aux_sym_number_token1, - ACTIONS(266), 1, aux_sym_number_token2, - ACTIONS(270), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym_test_operator, - ACTIONS(284), 1, - sym__brace_start, - ACTIONS(1075), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1079), 1, - sym__special_character, - ACTIONS(1081), 1, - anon_sym_DQUOTE, - ACTIONS(1085), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1087), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - STATE(2690), 1, - aux_sym__literal_repeat1, - STATE(3100), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1073), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1083), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1089), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3053), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2500), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102340] = 3, + sym_word, + [97917] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 16, + ACTIONS(1328), 16, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -165272,7 +162124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1310), 27, + ACTIONS(1330), 27, sym_file_descriptor, sym__concat, sym_test_operator, @@ -165300,525 +162152,268 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [102391] = 26, - ACTIONS(71), 1, + [97968] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1179), 1, - anon_sym_TILDE, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, + ACTIONS(1302), 5, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(2987), 1, - sym__expression, - ACTIONS(1129), 2, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1175), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1177), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2456), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102488] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1153), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1171), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1179), 1, - anon_sym_TILDE, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, + [98019] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1274), 6, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(3039), 1, - sym__expression, - ACTIONS(1129), 2, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1272), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1175), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1177), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2456), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102585] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1153), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1179), 1, - anon_sym_TILDE, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, - sym_test_operator, - ACTIONS(3060), 1, anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(3046), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1175), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1177), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2456), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102682] = 26, + aux_sym__simple_variable_name_token1, + sym_word, + [98070] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, - sym_word, - ACTIONS(248), 1, + ACTIONS(1316), 16, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_LPAREN, - ACTIONS(250), 1, - anon_sym_BANG, - ACTIONS(258), 1, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(264), 1, aux_sym_number_token1, - ACTIONS(266), 1, aux_sym_number_token2, - ACTIONS(270), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1318), 27, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(284), 1, + sym__bare_dollar, sym__brace_start, - ACTIONS(1075), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1079), 1, + aux_sym_concatenation_token1, sym__special_character, - ACTIONS(1081), 1, anon_sym_DQUOTE, - ACTIONS(1085), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1087), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, - anon_sym_BQUOTE, - STATE(2690), 1, - aux_sym__literal_repeat1, - STATE(3091), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1073), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1083), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1089), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3053), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2500), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102779] = 26, - ACTIONS(71), 1, + [98121] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, + ACTIONS(1310), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1153), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1179), 1, - anon_sym_TILDE, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, - sym_test_operator, - ACTIONS(3060), 1, anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(2943), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1175), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1177), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2456), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102876] = 26, + sym_word, + [98172] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1131), 1, + ACTIONS(1332), 16, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_LPAREN, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, aux_sym_number_token1, - ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1171), 1, + anon_sym_BQUOTE, sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1179), 1, - anon_sym_TILDE, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, + ACTIONS(1334), 27, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(3059), 1, - sym__expression, - ACTIONS(1129), 2, + sym__bare_dollar, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1175), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1177), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2456), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102973] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 1, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1179), 1, - anon_sym_TILDE, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, - sym_test_operator, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(3061), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1175), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1177), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2456), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [103070] = 26, + [98223] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1131), 1, + ACTIONS(1101), 1, anon_sym_LPAREN, - ACTIONS(1141), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, + ACTIONS(1139), 1, sym__brace_start, ACTIONS(1171), 1, sym_word, @@ -165830,16 +162425,16 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, ACTIONS(1185), 1, sym_test_operator, - ACTIONS(3060), 1, + ACTIONS(3119), 1, anon_sym_BQUOTE, - STATE(2484), 1, + STATE(2548), 1, aux_sym__literal_repeat1, - STATE(3062), 1, + STATE(3151), 1, sym__expression, - ACTIONS(1129), 2, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1175), 2, @@ -165851,14 +162446,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1183), 2, sym_raw_string, sym_ansi_c_string, - STATE(2594), 6, + STATE(2674), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2456), 9, + STATE(2530), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -165868,7 +162463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [103167] = 3, + [98320] = 3, ACTIONS(71), 1, sym_comment, ACTIONS(1300), 16, @@ -165916,28 +162511,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [103218] = 26, + [98371] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1131), 1, + ACTIONS(1101), 1, anon_sym_LPAREN, - ACTIONS(1141), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, + ACTIONS(1139), 1, sym__brace_start, ACTIONS(1171), 1, sym_word, @@ -165949,16 +162544,16 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, ACTIONS(1185), 1, sym_test_operator, - ACTIONS(3060), 1, + ACTIONS(3119), 1, anon_sym_BQUOTE, - STATE(2484), 1, + STATE(2548), 1, aux_sym__literal_repeat1, - STATE(3063), 1, + STATE(3152), 1, sym__expression, - ACTIONS(1129), 2, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1175), 2, @@ -165970,14 +162565,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1183), 2, sym_raw_string, sym_ansi_c_string, - STATE(2594), 6, + STATE(2674), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2456), 9, + STATE(2530), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -165987,529 +162582,175 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [103315] = 26, - ACTIONS(71), 1, + [98468] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1179), 1, - anon_sym_TILDE, - ACTIONS(1181), 1, + ACTIONS(6125), 1, sym__special_character, - ACTIONS(1185), 1, - sym_test_operator, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - STATE(2484), 1, + STATE(1991), 1, aux_sym__literal_repeat1, - STATE(3064), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1175), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1177), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2456), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [103412] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1133), 1, - anon_sym_BANG, - ACTIONS(1139), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1147), 1, - sym__special_character, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, + ACTIONS(1362), 4, + sym_file_descriptor, sym_test_operator, - ACTIONS(1169), 1, sym__brace_start, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(3102), 1, - sym__expression, - ACTIONS(1129), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1360), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1137), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1151), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2573), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [103509] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1211), 1, - sym_word, - ACTIONS(1213), 1, - anon_sym_BANG, - ACTIONS(1219), 1, - anon_sym_TILDE, - ACTIONS(1221), 1, - sym__special_character, - ACTIONS(1225), 1, - sym_test_operator, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(3351), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1215), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1217), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1223), 2, sym_raw_string, sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2588), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [103606] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, aux_sym_number_token1, - ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1179), 1, - anon_sym_TILDE, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, - sym_test_operator, - ACTIONS(3060), 1, anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(3067), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1175), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1177), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2456), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [103703] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1211), 1, sym_word, - ACTIONS(1213), 1, - anon_sym_BANG, - ACTIONS(1219), 1, - anon_sym_TILDE, - ACTIONS(1221), 1, - sym__special_character, - ACTIONS(1225), 1, + [98523] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5873), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(3356), 1, - sym__expression, - ACTIONS(1129), 2, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5871), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1215), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1217), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1223), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2588), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [103800] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1153), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1171), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1179), 1, - anon_sym_TILDE, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, + [98574] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 5, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(3068), 1, - sym__expression, - ACTIONS(1129), 2, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1320), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1175), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1177), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2456), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [103897] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(363), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(371), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(375), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(377), 1, aux_sym_number_token2, - ACTIONS(379), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, - sym__brace_start, - ACTIONS(1091), 1, - sym_word, - ACTIONS(1093), 1, - anon_sym_LPAREN, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1103), 1, - anon_sym_TILDE, - ACTIONS(1113), 1, - sym_test_operator, - ACTIONS(5809), 1, anon_sym_BQUOTE, - ACTIONS(5916), 1, - sym__special_character, - STATE(2472), 1, - aux_sym__literal_repeat1, - STATE(2814), 1, - sym__expression, - ACTIONS(352), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1099), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1101), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1109), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2863), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2451), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [103994] = 7, + sym_word, + [98625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5828), 1, + ACTIONS(5890), 5, sym_file_descriptor, - ACTIONS(5826), 2, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(5831), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(5888), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -166517,9 +162758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5819), 17, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -166535,136 +162774,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [104053] = 26, - ACTIONS(71), 1, + [98676] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1133), 1, - anon_sym_BANG, - ACTIONS(1139), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1147), 1, - sym__special_character, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, + ACTIONS(1326), 5, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(1169), 1, sym__brace_start, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(2621), 1, - sym__expression, - ACTIONS(1129), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1324), 38, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1137), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1151), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2573), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [104150] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1296), 16, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1298), 27, + [98727] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1330), 5, sym_file_descriptor, sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1328), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [104201] = 3, + sym_word, + [98778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(1334), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 38, + ACTIONS(1332), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -166703,104 +162920,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [104252] = 26, - ACTIONS(71), 1, + [98829] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1133), 1, - anon_sym_BANG, - ACTIONS(1139), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1147), 1, + ACTIONS(6128), 1, sym__special_character, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, - sym_test_operator, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - STATE(2484), 1, + STATE(1998), 1, aux_sym__literal_repeat1, - STATE(3037), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1137), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1151), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2573), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [104349] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(1362), 5, sym_file_descriptor, - ACTIONS(6135), 1, - anon_sym_RPAREN, - ACTIONS(5831), 3, - sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1360), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -166808,13 +162953,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5819), 17, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -166826,296 +162968,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [104410] = 27, - ACTIONS(71), 1, + [98884] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, - anon_sym_DOLLAR, - ACTIONS(371), 1, - anon_sym_DQUOTE, - ACTIONS(375), 1, - aux_sym_number_token1, - ACTIONS(377), 1, - aux_sym_number_token2, - ACTIONS(379), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, - sym__brace_start, - ACTIONS(1093), 1, - anon_sym_LPAREN, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1103), 1, - anon_sym_TILDE, - ACTIONS(5809), 1, - anon_sym_BQUOTE, - ACTIONS(5916), 1, - sym__special_character, - ACTIONS(6138), 1, - sym_word, - ACTIONS(6142), 1, + ACTIONS(1338), 5, + sym_file_descriptor, + sym__concat, sym_test_operator, - STATE(2561), 1, - aux_sym__literal_repeat1, - STATE(3397), 1, - sym__expression, - ACTIONS(352), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1099), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1101), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6140), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2594), 2, - sym_ternary_expression, - sym_postfix_expression, - STATE(2874), 4, - sym_binary_expression, - sym_unary_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2563), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [104509] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(363), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, - anon_sym_DOLLAR, - ACTIONS(371), 1, - anon_sym_DQUOTE, - ACTIONS(375), 1, - aux_sym_number_token1, - ACTIONS(377), 1, - aux_sym_number_token2, - ACTIONS(379), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, sym__brace_start, - ACTIONS(1091), 1, - sym_word, - ACTIONS(1093), 1, - anon_sym_LPAREN, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1103), 1, - anon_sym_TILDE, - ACTIONS(1113), 1, - sym_test_operator, - ACTIONS(5809), 1, - anon_sym_BQUOTE, - ACTIONS(5916), 1, - sym__special_character, - STATE(2472), 1, - aux_sym__literal_repeat1, - STATE(2812), 1, - sym__expression, - ACTIONS(352), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1336), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1099), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1101), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1109), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2863), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2451), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [104606] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(363), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(371), 1, - anon_sym_DQUOTE, - ACTIONS(375), 1, - aux_sym_number_token1, - ACTIONS(377), 1, - aux_sym_number_token2, - ACTIONS(379), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, - sym__brace_start, - ACTIONS(1091), 1, - sym_word, - ACTIONS(1093), 1, - anon_sym_LPAREN, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1103), 1, - anon_sym_TILDE, - ACTIONS(1113), 1, - sym_test_operator, - ACTIONS(5809), 1, - anon_sym_BQUOTE, - ACTIONS(5916), 1, sym__special_character, - STATE(2472), 1, - aux_sym__literal_repeat1, - STATE(2810), 1, - sym__expression, - ACTIONS(352), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1099), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1101), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1109), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2863), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2451), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [104703] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(363), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, - anon_sym_DOLLAR, - ACTIONS(371), 1, - anon_sym_DQUOTE, - ACTIONS(375), 1, aux_sym_number_token1, - ACTIONS(377), 1, aux_sym_number_token2, - ACTIONS(379), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, - sym__brace_start, - ACTIONS(1091), 1, - sym_word, - ACTIONS(1093), 1, - anon_sym_LPAREN, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1103), 1, - anon_sym_TILDE, - ACTIONS(1113), 1, - sym_test_operator, - ACTIONS(5809), 1, anon_sym_BQUOTE, - ACTIONS(5916), 1, - sym__special_character, - STATE(2472), 1, - aux_sym__literal_repeat1, - STATE(2832), 1, - sym__expression, - ACTIONS(352), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1099), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1101), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1109), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2863), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2451), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [104800] = 3, + sym_word, + [98935] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 16, + ACTIONS(1336), 16, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -167132,7 +163038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1306), 27, + ACTIONS(1338), 27, sym_file_descriptor, sym__concat, sym_test_operator, @@ -167160,92 +163066,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [104851] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1211), 1, - sym_word, - ACTIONS(1213), 1, - anon_sym_BANG, - ACTIONS(1219), 1, - anon_sym_TILDE, - ACTIONS(1221), 1, - sym__special_character, - ACTIONS(1225), 1, - sym_test_operator, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(3358), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1215), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1217), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1223), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2588), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [104948] = 6, + [98986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6013), 1, - aux_sym_concatenation_token1, - ACTIONS(6144), 1, - sym__concat, - STATE(1879), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 4, + ACTIONS(1342), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 36, + ACTIONS(1340), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -167256,6 +163086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -167268,6 +163099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -167282,21 +163114,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [105005] = 6, + [99037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6013), 1, - aux_sym_concatenation_token1, - ACTIONS(6146), 1, - sym__concat, - STATE(1879), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 4, + ACTIONS(1294), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 36, + ACTIONS(1292), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -167307,6 +163134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -167319,6 +163147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -167333,104 +163162,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [105062] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1211), 1, - sym_word, - ACTIONS(1213), 1, - anon_sym_BANG, - ACTIONS(1219), 1, - anon_sym_TILDE, - ACTIONS(1221), 1, - sym__special_character, - ACTIONS(1225), 1, - sym_test_operator, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(3193), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1215), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1217), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1223), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2588), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [105159] = 8, + [99088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5890), 5, sym_file_descriptor, - ACTIONS(6148), 1, - anon_sym_RPAREN, - ACTIONS(5831), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(5888), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -167438,9 +163192,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -167457,16 +163210,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [105220] = 3, + [99139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5768), 5, + ACTIONS(1314), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5766), 38, + ACTIONS(1312), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -167477,7 +163231,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -167488,9 +163241,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -167505,87 +163258,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [105271] = 26, + [99190] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, - sym_word, - ACTIONS(248), 1, + ACTIONS(1340), 16, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_LPAREN, - ACTIONS(250), 1, - anon_sym_BANG, - ACTIONS(258), 1, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(264), 1, aux_sym_number_token1, - ACTIONS(266), 1, aux_sym_number_token2, - ACTIONS(270), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1342), 27, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(284), 1, + sym__bare_dollar, sym__brace_start, - ACTIONS(1075), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1079), 1, + aux_sym_concatenation_token1, sym__special_character, - ACTIONS(1081), 1, anon_sym_DQUOTE, - ACTIONS(1085), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1087), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, - anon_sym_BQUOTE, - STATE(2690), 1, - aux_sym__literal_repeat1, - STATE(3094), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1073), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1083), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1089), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3053), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2500), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [105368] = 3, + [99241] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 5, + ACTIONS(6131), 1, + sym__special_character, + STATE(1991), 1, + aux_sym__literal_repeat1, + ACTIONS(5317), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 38, + ACTIONS(5315), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -167607,11 +163340,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -167624,67 +163356,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [105419] = 6, - ACTIONS(3), 1, + [99296] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(6013), 1, - aux_sym_concatenation_token1, - ACTIONS(6015), 1, - sym__concat, - STATE(2067), 1, + STATE(2231), 1, aux_sym_concatenation_repeat1, - ACTIONS(1263), 4, + ACTIONS(6133), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4426), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(4428), 25, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 36, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [105476] = 3, + [99351] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1251), 16, + STATE(2236), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6133), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4511), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_LPAREN, anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, @@ -167695,9 +163430,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1253), 27, + ACTIONS(4513), 25, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, @@ -167714,7 +163448,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -167723,20 +163456,233 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [105527] = 8, + [99406] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(299), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(303), 1, + anon_sym_DOLLAR, + ACTIONS(307), 1, + anon_sym_DQUOTE, + ACTIONS(311), 1, + aux_sym_number_token1, + ACTIONS(313), 1, + aux_sym_number_token2, + ACTIONS(315), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(317), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(321), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(327), 1, + sym__brace_start, + ACTIONS(1073), 1, + sym_word, + ACTIONS(1075), 1, + anon_sym_LPAREN, + ACTIONS(1077), 1, + anon_sym_BANG, + ACTIONS(1085), 1, + anon_sym_TILDE, + ACTIONS(1095), 1, + sym_test_operator, + ACTIONS(5882), 1, + sym__special_character, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + STATE(2503), 1, + aux_sym__literal_repeat1, + STATE(2812), 1, + sym__expression, + ACTIONS(288), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(323), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1081), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1083), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1091), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2884), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2556), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [99503] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(299), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(303), 1, + anon_sym_DOLLAR, + ACTIONS(307), 1, + anon_sym_DQUOTE, + ACTIONS(311), 1, + aux_sym_number_token1, + ACTIONS(313), 1, + aux_sym_number_token2, + ACTIONS(315), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(317), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(321), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(327), 1, + sym__brace_start, + ACTIONS(1073), 1, + sym_word, + ACTIONS(1075), 1, + anon_sym_LPAREN, + ACTIONS(1077), 1, + anon_sym_BANG, + ACTIONS(1085), 1, + anon_sym_TILDE, + ACTIONS(1095), 1, + sym_test_operator, + ACTIONS(5882), 1, + sym__special_character, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + STATE(2503), 1, + aux_sym__literal_repeat1, + STATE(2813), 1, + sym__expression, + ACTIONS(288), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(323), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1081), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1083), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1091), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2884), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2556), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [99600] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DOLLAR, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, + aux_sym_number_token1, + ACTIONS(1125), 1, + aux_sym_number_token2, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1133), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, + sym__special_character, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(2965), 1, + sym__expression, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1199), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2567), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [99697] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6151), 1, + ACTIONS(6135), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -167746,7 +163692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -167758,7 +163704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -167776,16 +163722,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [105588] = 3, + [99758] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1324), 16, + STATE(2231), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6133), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4577), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_LPAREN, anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, @@ -167796,9 +163746,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1326), 27, + ACTIONS(4579), 25, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, @@ -167815,7 +163764,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -167824,123 +163772,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [105639] = 8, - ACTIONS(3), 1, + [99813] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, - sym_file_descriptor, - ACTIONS(6154), 1, - anon_sym_RPAREN, - ACTIONS(5831), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5821), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(2236), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6133), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4593), 15, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5819), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - [105700] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(4595), 25, sym_file_descriptor, - ACTIONS(6157), 1, - anon_sym_RPAREN, - ACTIONS(5831), 3, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5821), 9, - anon_sym_SEMI, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [105761] = 3, + [99868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 6, + ACTIONS(1350), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 37, + ACTIONS(1348), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -167951,6 +163842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -167978,376 +163870,494 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [105812] = 3, - ACTIONS(3), 1, + [99919] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(1346), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(187), 1, + anon_sym_TILDE, + ACTIONS(286), 1, + sym_word, + ACTIONS(295), 1, + anon_sym_LPAREN, + ACTIONS(297), 1, + anon_sym_BANG, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(303), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(307), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(311), 1, aux_sym_number_token1, + ACTIONS(313), 1, aux_sym_number_token2, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [105863] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, - sym_file_descriptor, - ACTIONS(6160), 1, - anon_sym_RPAREN, - ACTIONS(5831), 3, - sym_variable_name, + ACTIONS(325), 1, sym_test_operator, + ACTIONS(327), 1, sym__brace_start, - ACTIONS(5821), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + ACTIONS(5942), 1, + sym__special_character, + STATE(2705), 1, + aux_sym__literal_repeat1, + STATE(3112), 1, + sym__expression, + ACTIONS(183), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(185), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(288), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(309), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(323), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2952), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2509), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100016] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(303), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(307), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(311), 1, aux_sym_number_token1, + ACTIONS(313), 1, aux_sym_number_token2, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(327), 1, + sym__brace_start, + ACTIONS(1073), 1, sym_word, - [105924] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, - sym_file_descriptor, - ACTIONS(6163), 1, - anon_sym_RPAREN, - ACTIONS(5831), 3, - sym_variable_name, + ACTIONS(1075), 1, + anon_sym_LPAREN, + ACTIONS(1077), 1, + anon_sym_BANG, + ACTIONS(1085), 1, + anon_sym_TILDE, + ACTIONS(1095), 1, sym_test_operator, - sym__brace_start, - ACTIONS(5821), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5882), 1, + sym__special_character, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + STATE(2503), 1, + aux_sym__literal_repeat1, + STATE(2903), 1, + sym__expression, + ACTIONS(288), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(323), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1081), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1083), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1091), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2884), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2556), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100113] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(303), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(307), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(311), 1, aux_sym_number_token1, + ACTIONS(313), 1, aux_sym_number_token2, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(327), 1, + sym__brace_start, + ACTIONS(1073), 1, sym_word, - [105985] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, - sym_file_descriptor, - ACTIONS(6166), 1, - anon_sym_RPAREN, - ACTIONS(5831), 3, - sym_variable_name, + ACTIONS(1075), 1, + anon_sym_LPAREN, + ACTIONS(1077), 1, + anon_sym_BANG, + ACTIONS(1085), 1, + anon_sym_TILDE, + ACTIONS(1095), 1, sym_test_operator, - sym__brace_start, - ACTIONS(5821), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5882), 1, + sym__special_character, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + STATE(2503), 1, + aux_sym__literal_repeat1, + STATE(2912), 1, + sym__expression, + ACTIONS(288), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(323), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1081), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1083), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1091), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2884), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2556), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100210] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(303), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(307), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(311), 1, aux_sym_number_token1, + ACTIONS(313), 1, aux_sym_number_token2, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(327), 1, + sym__brace_start, + ACTIONS(1073), 1, sym_word, - [106046] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, - sym_file_descriptor, - ACTIONS(6169), 1, - anon_sym_RPAREN, - ACTIONS(5831), 3, - sym_variable_name, + ACTIONS(1075), 1, + anon_sym_LPAREN, + ACTIONS(1077), 1, + anon_sym_BANG, + ACTIONS(1085), 1, + anon_sym_TILDE, + ACTIONS(1095), 1, sym_test_operator, - sym__brace_start, - ACTIONS(5821), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5882), 1, + sym__special_character, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + STATE(2503), 1, + aux_sym__literal_repeat1, + STATE(2924), 1, + sym__expression, + ACTIONS(288), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(323), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1081), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1083), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1091), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2884), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2556), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100307] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(303), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(307), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(311), 1, aux_sym_number_token1, + ACTIONS(313), 1, aux_sym_number_token2, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(327), 1, + sym__brace_start, + ACTIONS(1073), 1, sym_word, - [106107] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1358), 5, - sym_file_descriptor, - sym__concat, + ACTIONS(1075), 1, + anon_sym_LPAREN, + ACTIONS(1077), 1, + anon_sym_BANG, + ACTIONS(1085), 1, + anon_sym_TILDE, + ACTIONS(1095), 1, sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 38, + ACTIONS(5882), 1, + sym__special_character, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + STATE(2503), 1, + aux_sym__literal_repeat1, + STATE(2737), 1, + sym__expression, + ACTIONS(288), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(323), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1081), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1083), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1091), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2884), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2556), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100404] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(303), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(307), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(311), 1, aux_sym_number_token1, + ACTIONS(313), 1, aux_sym_number_token2, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(327), 1, + sym__brace_start, + ACTIONS(1073), 1, + sym_word, + ACTIONS(1075), 1, + anon_sym_LPAREN, + ACTIONS(1077), 1, + anon_sym_BANG, + ACTIONS(1085), 1, + anon_sym_TILDE, + ACTIONS(1095), 1, + sym_test_operator, + ACTIONS(5882), 1, + sym__special_character, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + STATE(2503), 1, + aux_sym__literal_repeat1, + STATE(2930), 1, + sym__expression, + ACTIONS(288), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [106158] = 26, + ACTIONS(1081), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1083), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1091), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2884), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2556), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100501] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, - sym_word, - ACTIONS(248), 1, - anon_sym_LPAREN, - ACTIONS(250), 1, - anon_sym_BANG, - ACTIONS(258), 1, + ACTIONS(299), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(264), 1, + ACTIONS(307), 1, + anon_sym_DQUOTE, + ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(266), 1, + ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(270), 1, + ACTIONS(315), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym_test_operator, - ACTIONS(284), 1, + ACTIONS(321), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(327), 1, sym__brace_start, + ACTIONS(1073), 1, + sym_word, ACTIONS(1075), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1079), 1, - sym__special_character, - ACTIONS(1081), 1, - anon_sym_DQUOTE, + anon_sym_LPAREN, + ACTIONS(1077), 1, + anon_sym_BANG, ACTIONS(1085), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1087), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, + anon_sym_TILDE, + ACTIONS(1095), 1, + sym_test_operator, + ACTIONS(5882), 1, + sym__special_character, + ACTIONS(5884), 1, anon_sym_BQUOTE, - STATE(2690), 1, + STATE(2503), 1, aux_sym__literal_repeat1, - STATE(3130), 1, + STATE(2743), 1, sym__expression, - ACTIONS(103), 2, + ACTIONS(288), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(323), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1081), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(105), 2, + ACTIONS(1083), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1073), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1083), 2, + ACTIONS(1091), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1089), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3053), 6, + STATE(2884), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2500), 9, + STATE(2556), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -168357,121 +164367,352 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [106255] = 8, - ACTIONS(3), 1, + [100598] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, - sym_file_descriptor, - ACTIONS(6172), 1, - anon_sym_RPAREN, - ACTIONS(5831), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5821), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5819), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(303), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(307), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(311), 1, aux_sym_number_token1, + ACTIONS(313), 1, aux_sym_number_token2, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(327), 1, + sym__brace_start, + ACTIONS(1073), 1, + sym_word, + ACTIONS(1075), 1, + anon_sym_LPAREN, + ACTIONS(1077), 1, + anon_sym_BANG, + ACTIONS(1085), 1, + anon_sym_TILDE, + ACTIONS(1095), 1, + sym_test_operator, + ACTIONS(5882), 1, + sym__special_character, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + STATE(2503), 1, + aux_sym__literal_repeat1, + STATE(2759), 1, + sym__expression, + ACTIONS(288), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [106316] = 26, + ACTIONS(1081), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1083), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1091), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2884), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2556), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100695] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, + ACTIONS(299), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(303), 1, + anon_sym_DOLLAR, + ACTIONS(307), 1, + anon_sym_DQUOTE, + ACTIONS(311), 1, + aux_sym_number_token1, + ACTIONS(313), 1, + aux_sym_number_token2, + ACTIONS(315), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(317), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(321), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(327), 1, + sym__brace_start, + ACTIONS(1073), 1, sym_word, - ACTIONS(248), 1, + ACTIONS(1075), 1, anon_sym_LPAREN, - ACTIONS(250), 1, + ACTIONS(1077), 1, anon_sym_BANG, - ACTIONS(258), 1, + ACTIONS(1085), 1, + anon_sym_TILDE, + ACTIONS(1095), 1, + sym_test_operator, + ACTIONS(5882), 1, + sym__special_character, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + STATE(2503), 1, + aux_sym__literal_repeat1, + STATE(2820), 1, + sym__expression, + ACTIONS(288), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(323), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1081), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1083), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1091), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2884), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2556), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100792] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(299), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(264), 1, + ACTIONS(307), 1, + anon_sym_DQUOTE, + ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(266), 1, + ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(270), 1, + ACTIONS(315), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym_test_operator, - ACTIONS(284), 1, + ACTIONS(321), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(327), 1, sym__brace_start, + ACTIONS(1073), 1, + sym_word, ACTIONS(1075), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1079), 1, + anon_sym_LPAREN, + ACTIONS(1077), 1, + anon_sym_BANG, + ACTIONS(1085), 1, + anon_sym_TILDE, + ACTIONS(1095), 1, + sym_test_operator, + ACTIONS(5882), 1, sym__special_character, - ACTIONS(1081), 1, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + STATE(2503), 1, + aux_sym__literal_repeat1, + STATE(2885), 1, + sym__expression, + ACTIONS(288), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(323), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1081), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1083), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1091), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2884), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2556), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100889] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(299), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(303), 1, + anon_sym_DOLLAR, + ACTIONS(307), 1, anon_sym_DQUOTE, - ACTIONS(1085), 1, + ACTIONS(311), 1, + aux_sym_number_token1, + ACTIONS(313), 1, + aux_sym_number_token2, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1087), 1, + ACTIONS(317), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, + ACTIONS(327), 1, + sym__brace_start, + ACTIONS(1073), 1, + sym_word, + ACTIONS(1075), 1, + anon_sym_LPAREN, + ACTIONS(1077), 1, + anon_sym_BANG, + ACTIONS(1085), 1, + anon_sym_TILDE, + ACTIONS(1095), 1, + sym_test_operator, + ACTIONS(5882), 1, + sym__special_character, + ACTIONS(5884), 1, anon_sym_BQUOTE, - STATE(2690), 1, + STATE(2503), 1, aux_sym__literal_repeat1, - STATE(3107), 1, + STATE(2896), 1, sym__expression, - ACTIONS(103), 2, + ACTIONS(288), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(323), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1081), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(105), 2, + ACTIONS(1083), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1073), 2, + ACTIONS(1091), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2884), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2556), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100986] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(299), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(303), 1, + anon_sym_DOLLAR, + ACTIONS(307), 1, + anon_sym_DQUOTE, + ACTIONS(311), 1, + aux_sym_number_token1, + ACTIONS(313), 1, + aux_sym_number_token2, + ACTIONS(315), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(317), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(321), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(327), 1, + sym__brace_start, + ACTIONS(1073), 1, + sym_word, + ACTIONS(1075), 1, + anon_sym_LPAREN, + ACTIONS(1077), 1, + anon_sym_BANG, + ACTIONS(1085), 1, + anon_sym_TILDE, + ACTIONS(1095), 1, + sym_test_operator, + ACTIONS(5882), 1, + sym__special_character, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + STATE(2503), 1, + aux_sym__literal_repeat1, + STATE(2899), 1, + sym__expression, + ACTIONS(288), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(323), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1081), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, ACTIONS(1083), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1091), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1089), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3053), 6, + STATE(2884), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2500), 9, + STATE(2556), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -168481,69 +164722,68 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [106413] = 27, + [101083] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, + ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(371), 1, + ACTIONS(307), 1, anon_sym_DQUOTE, - ACTIONS(375), 1, + ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(377), 1, + ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(379), 1, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, + ACTIONS(327), 1, sym__brace_start, - ACTIONS(1093), 1, + ACTIONS(1073), 1, + sym_word, + ACTIONS(1075), 1, anon_sym_LPAREN, - ACTIONS(1095), 1, + ACTIONS(1077), 1, anon_sym_BANG, - ACTIONS(1103), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(5809), 1, - anon_sym_BQUOTE, - ACTIONS(5916), 1, - sym__special_character, - ACTIONS(6175), 1, - sym_word, - ACTIONS(6179), 1, + ACTIONS(1095), 1, sym_test_operator, - STATE(2445), 1, + ACTIONS(5882), 1, + sym__special_character, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + STATE(2503), 1, aux_sym__literal_repeat1, - STATE(3397), 1, + STATE(2902), 1, sym__expression, - ACTIONS(352), 2, + ACTIONS(288), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, + ACTIONS(323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1099), 2, + ACTIONS(1081), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1101), 2, + ACTIONS(1083), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(6177), 2, + ACTIONS(1091), 2, sym_raw_string, sym_ansi_c_string, - STATE(2594), 2, - sym_ternary_expression, - sym_postfix_expression, - STATE(2834), 4, + STATE(2884), 6, sym_binary_expression, + sym_ternary_expression, sym_unary_expression, + sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2461), 9, + STATE(2556), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -168553,92 +164793,186 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [106512] = 3, - ACTIONS(3), 1, + [101180] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(1358), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, + ACTIONS(299), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(303), 1, + anon_sym_DOLLAR, + ACTIONS(307), 1, + anon_sym_DQUOTE, + ACTIONS(311), 1, + aux_sym_number_token1, + ACTIONS(313), 1, + aux_sym_number_token2, + ACTIONS(315), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(317), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(321), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(327), 1, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 37, + ACTIONS(1073), 1, + sym_word, + ACTIONS(1075), 1, + anon_sym_LPAREN, + ACTIONS(1077), 1, + anon_sym_BANG, + ACTIONS(1085), 1, + anon_sym_TILDE, + ACTIONS(1095), 1, + sym_test_operator, + ACTIONS(5882), 1, + sym__special_character, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + STATE(2503), 1, + aux_sym__literal_repeat1, + STATE(2916), 1, + sym__expression, + ACTIONS(288), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(323), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1081), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1083), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1091), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2884), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2556), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101277] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(303), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(307), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(311), 1, aux_sym_number_token1, + ACTIONS(313), 1, aux_sym_number_token2, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(327), 1, + sym__brace_start, + ACTIONS(1073), 1, + sym_word, + ACTIONS(1075), 1, + anon_sym_LPAREN, + ACTIONS(1077), 1, + anon_sym_BANG, + ACTIONS(1085), 1, + anon_sym_TILDE, + ACTIONS(1095), 1, + sym_test_operator, + ACTIONS(5882), 1, + sym__special_character, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + STATE(2503), 1, + aux_sym__literal_repeat1, + STATE(2822), 1, + sym__expression, + ACTIONS(288), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [106563] = 26, + ACTIONS(1081), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1083), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1091), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2884), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2556), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101374] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(187), 1, anon_sym_TILDE, - ACTIONS(350), 1, + ACTIONS(286), 1, sym_word, - ACTIONS(359), 1, + ACTIONS(295), 1, anon_sym_LPAREN, - ACTIONS(361), 1, + ACTIONS(297), 1, anon_sym_BANG, - ACTIONS(363), 1, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, + ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(371), 1, + ACTIONS(307), 1, anon_sym_DQUOTE, - ACTIONS(375), 1, + ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(377), 1, + ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(379), 1, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(389), 1, + ACTIONS(325), 1, sym_test_operator, - ACTIONS(391), 1, + ACTIONS(327), 1, sym__brace_start, - ACTIONS(5807), 1, - sym__special_character, - ACTIONS(5809), 1, + ACTIONS(5884), 1, anon_sym_BQUOTE, - STATE(2641), 1, + ACTIONS(5942), 1, + sym__special_character, + STATE(2705), 1, aux_sym__literal_repeat1, - STATE(2951), 1, + STATE(2969), 1, sym__expression, ACTIONS(183), 2, anon_sym_PLUS_PLUS2, @@ -168646,23 +164980,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(185), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(352), 2, + ACTIONS(288), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(373), 2, + ACTIONS(309), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(387), 2, + ACTIONS(323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3071), 6, + STATE(2952), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2521), 9, + STATE(2509), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -168672,63 +165006,72 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [106660] = 3, - ACTIONS(71), 1, + [101471] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1350), 27, - sym_file_descriptor, + ACTIONS(5977), 1, + aux_sym_concatenation_token1, + ACTIONS(6138), 1, sym__concat, + STATE(1743), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 4, + sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1266), 36, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [106711] = 3, + sym_word, + [101528] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 4, + ACTIONS(5977), 1, + aux_sym_concatenation_token1, + ACTIONS(6140), 1, + sym__concat, + STATE(1743), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 39, + ACTIONS(1286), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -168740,8 +165083,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -168751,7 +165092,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -168768,81 +165108,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [106762] = 3, - ACTIONS(3), 1, + [101585] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1346), 6, + ACTIONS(1292), 16, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1294), 27, sym_file_descriptor, sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 37, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [106813] = 8, + [101636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(1354), 5, sym_file_descriptor, - ACTIONS(6181), 1, - anon_sym_RPAREN, - ACTIONS(5831), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1352), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -168850,11 +165186,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5819), 17, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -168869,33 +165204,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [106874] = 8, + [101687] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, - sym_file_descriptor, - ACTIONS(6184), 1, - anon_sym_RPAREN, - ACTIONS(5831), 3, - sym_variable_name, + ACTIONS(5977), 1, + aux_sym_concatenation_token1, + ACTIONS(5991), 1, + sym__concat, + STATE(2032), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1272), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -168903,9 +165238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5819), 17, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -168922,73 +165255,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [106935] = 8, - ACTIONS(3), 1, + [101744] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(1348), 16, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1350), 27, sym_file_descriptor, - ACTIONS(6187), 1, - anon_sym_RPAREN, - ACTIONS(5831), 3, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5821), 9, - anon_sym_SEMI, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [101795] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, + sym_word, + ACTIONS(248), 1, + anon_sym_LPAREN, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(258), 1, + anon_sym_DOLLAR, + ACTIONS(264), 1, aux_sym_number_token1, + ACTIONS(266), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(270), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(282), 1, + sym_test_operator, + ACTIONS(284), 1, + sym__brace_start, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1159), 1, + sym__special_character, + ACTIONS(1161), 1, + anon_sym_DQUOTE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1167), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + STATE(2623), 1, + aux_sym__literal_repeat1, + STATE(3076), 1, + sym__expression, + ACTIONS(103), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(105), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1153), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1163), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1169), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(2976), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2498), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101892] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, sym_word, - [106996] = 8, + ACTIONS(248), 1, + anon_sym_LPAREN, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(258), 1, + anon_sym_DOLLAR, + ACTIONS(264), 1, + aux_sym_number_token1, + ACTIONS(266), 1, + aux_sym_number_token2, + ACTIONS(270), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym_test_operator, + ACTIONS(284), 1, + sym__brace_start, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1159), 1, + sym__special_character, + ACTIONS(1161), 1, + anon_sym_DQUOTE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + STATE(2623), 1, + aux_sym__literal_repeat1, + STATE(3126), 1, + sym__expression, + ACTIONS(103), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(105), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1153), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1163), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1169), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2976), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2498), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101989] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6190), 1, + ACTIONS(6142), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -168998,7 +165468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -169010,7 +165480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -169028,17 +165498,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [107057] = 3, + [102050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 6, + ACTIONS(1306), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 37, + ACTIONS(1304), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -169076,20 +165546,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [107108] = 8, + [102101] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1352), 16, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1354), 27, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [102152] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6193), 1, + ACTIONS(6145), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -169099,7 +165617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -169111,7 +165629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -169129,20 +165647,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [107169] = 8, + [102213] = 6, + ACTIONS(71), 1, + sym_comment, + STATE(3531), 1, + aux_sym__literal_repeat1, + STATE(3546), 1, + sym_concatenation, + STATE(3477), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2301), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2303), 22, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [102270] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6196), 1, + ACTIONS(6148), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -169152,7 +165721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -169164,7 +165733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -169182,17 +165751,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [107230] = 3, + [102331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5375), 6, + ACTIONS(1358), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5373), 37, + ACTIONS(1356), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -169203,6 +165771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -169213,9 +165782,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -169230,20 +165799,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [107281] = 8, + [102382] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6199), 1, + ACTIONS(6151), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -169253,7 +165822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -169265,7 +165834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -169283,29 +165852,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [107342] = 3, + [102443] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6154), 1, + anon_sym_RPAREN, + ACTIONS(5861), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 37, - anon_sym_LPAREN_LPAREN, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -169313,10 +165886,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -169331,29 +165905,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [107393] = 3, + [102504] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5772), 6, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, sym_file_descriptor, + ACTIONS(6157), 1, + anon_sym_RPAREN, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(5770), 37, - anon_sym_LPAREN_LPAREN, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -169361,8 +165939,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -169379,29 +165958,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [107444] = 3, + [102565] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4554), 6, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, sym_file_descriptor, + ACTIONS(6160), 1, + anon_sym_RPAREN, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 37, - anon_sym_LPAREN_LPAREN, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -169409,8 +165992,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -169427,29 +166011,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [107495] = 3, + [102626] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 5, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6163), 1, + anon_sym_RPAREN, + ACTIONS(5861), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 38, - anon_sym_LPAREN_LPAREN, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -169457,10 +166045,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -169475,29 +166064,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [107546] = 3, + [102687] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 5, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6166), 1, + anon_sym_RPAREN, + ACTIONS(5861), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 38, - anon_sym_LPAREN_LPAREN, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -169505,10 +166098,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -169523,20 +166117,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [107597] = 8, + [102748] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6202), 1, + ACTIONS(6169), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -169546,7 +166140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -169558,7 +166152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -169576,29 +166170,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [107658] = 3, + [102809] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 5, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6172), 1, + anon_sym_RPAREN, + ACTIONS(5861), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 38, - anon_sym_LPAREN_LPAREN, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -169606,10 +166204,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -169624,20 +166223,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [107709] = 8, + [102870] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6205), 1, + ACTIONS(6175), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -169647,7 +166246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -169659,7 +166258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -169677,34 +166276,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [107770] = 8, + [102931] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6210), 1, - anon_sym_DQUOTE, - ACTIONS(6214), 1, - sym_variable_name, - STATE(3525), 1, - sym_string, - ACTIONS(6212), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, sym_file_descriptor, + ACTIONS(6178), 1, + anon_sym_RPAREN, + ACTIONS(5861), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(6208), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 26, - anon_sym_LPAREN_LPAREN, + ACTIONS(5851), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -169716,9 +166311,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -169730,29 +166329,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [107831] = 3, + [102992] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 5, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6181), 1, + anon_sym_RPAREN, + ACTIONS(5861), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 38, - anon_sym_LPAREN_LPAREN, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -169760,10 +166363,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -169778,37 +166382,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [107882] = 8, + [103053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6210), 1, - anon_sym_DQUOTE, - ACTIONS(6214), 1, - sym_variable_name, - STATE(3525), 1, - sym_string, - ACTIONS(6212), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + ACTIONS(1346), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(6208), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 26, + aux_sym_heredoc_redirect_token1, + ACTIONS(1344), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -169816,10 +166412,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, aux_sym_number_token1, @@ -169831,29 +166430,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [107943] = 3, + [103104] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 5, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6184), 1, + anon_sym_RPAREN, + ACTIONS(5861), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 38, - anon_sym_LPAREN_LPAREN, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -169861,10 +166464,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -169879,29 +166483,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [107994] = 3, + [103165] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2074), 6, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, sym_file_descriptor, + ACTIONS(6187), 1, + anon_sym_RPAREN, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(2072), 37, - anon_sym_LPAREN_LPAREN, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -169909,8 +166517,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -169927,33 +166536,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [108045] = 5, + [103226] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6216), 1, - sym__special_character, - STATE(2118), 1, - aux_sym__literal_repeat1, - ACTIONS(1364), 4, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, sym_file_descriptor, + ACTIONS(6190), 1, + anon_sym_RPAREN, + ACTIONS(5861), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 37, - anon_sym_LPAREN_LPAREN, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -169961,10 +166570,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -169977,91 +166589,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [108100] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(363), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, - anon_sym_DOLLAR, - ACTIONS(371), 1, - anon_sym_DQUOTE, - ACTIONS(375), 1, - aux_sym_number_token1, - ACTIONS(377), 1, - aux_sym_number_token2, - ACTIONS(379), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, - sym__brace_start, - ACTIONS(1091), 1, - sym_word, - ACTIONS(1093), 1, - anon_sym_LPAREN, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1103), 1, - anon_sym_TILDE, - ACTIONS(1113), 1, - sym_test_operator, - ACTIONS(5809), 1, - anon_sym_BQUOTE, - ACTIONS(5916), 1, - sym__special_character, - STATE(2472), 1, - aux_sym__literal_repeat1, - STATE(2868), 1, - sym__expression, - ACTIONS(352), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1099), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1101), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1109), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2863), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2451), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108197] = 8, + [103287] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6219), 1, + ACTIONS(6193), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -170071,7 +166612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -170083,7 +166624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -170101,29 +166642,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [108258] = 3, + [103348] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 5, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6196), 1, + anon_sym_RPAREN, + ACTIONS(5861), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 38, - anon_sym_LPAREN_LPAREN, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -170131,10 +166676,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -170149,20 +166695,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [108309] = 5, + [103409] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4261), 3, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, + sym_file_descriptor, + ACTIONS(6199), 1, + anon_sym_RPAREN, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5932), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(4247), 18, - anon_sym_LPAREN_LPAREN, + ACTIONS(5851), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -170179,103 +166748,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - ACTIONS(5930), 19, + [103470] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, + sym_file_descriptor, + ACTIONS(6202), 1, + anon_sym_RPAREN, + ACTIONS(5861), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [108364] = 6, - ACTIONS(71), 1, - sym_comment, - STATE(3541), 1, - aux_sym__literal_repeat1, - STATE(3573), 1, - sym_concatenation, - STATE(3481), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2498), 10, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2500), 22, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [108421] = 5, + sym_word, + [103531] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6222), 1, - sym__special_character, - STATE(2124), 1, - aux_sym__literal_repeat1, - ACTIONS(1364), 4, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, sym_file_descriptor, + ACTIONS(6205), 1, + anon_sym_RPAREN, + ACTIONS(5861), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 37, - anon_sym_LPAREN_LPAREN, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -170283,11 +166835,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -170300,170 +166854,338 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [108476] = 5, - ACTIONS(71), 1, + [103592] = 8, + ACTIONS(3), 1, sym_comment, - STATE(2135), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6133), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4552), 15, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, + sym_file_descriptor, + ACTIONS(6208), 1, + anon_sym_RPAREN, + ACTIONS(5861), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5851), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(4554), 25, + [103653] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, sym_file_descriptor, + ACTIONS(6211), 1, + anon_sym_RPAREN, + ACTIONS(5861), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5851), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [108531] = 5, - ACTIONS(71), 1, + sym_word, + [103714] = 8, + ACTIONS(3), 1, sym_comment, - STATE(2152), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6133), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4564), 15, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, + sym_file_descriptor, + ACTIONS(6214), 1, + anon_sym_RPAREN, + ACTIONS(5861), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5851), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(4566), 25, + [103775] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, sym_file_descriptor, + ACTIONS(6217), 1, + anon_sym_RPAREN, + ACTIONS(5861), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5851), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [108586] = 5, - ACTIONS(71), 1, + sym_word, + [103836] = 8, + ACTIONS(3), 1, sym_comment, - STATE(2127), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6225), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1251), 15, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, + sym_file_descriptor, + ACTIONS(6220), 1, + anon_sym_RPAREN, + ACTIONS(5861), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5851), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1253), 25, + [103897] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, sym_file_descriptor, + ACTIONS(6223), 1, + anon_sym_RPAREN, + ACTIONS(5861), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5851), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [108641] = 8, + sym_word, + [103958] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6228), 1, + ACTIONS(6226), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -170473,7 +167195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -170485,7 +167207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -170503,304 +167225,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [108702] = 26, - ACTIONS(71), 1, + [104019] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(350), 1, - sym_word, - ACTIONS(359), 1, - anon_sym_LPAREN, - ACTIONS(361), 1, - anon_sym_BANG, - ACTIONS(363), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, - anon_sym_DOLLAR, - ACTIONS(371), 1, - anon_sym_DQUOTE, - ACTIONS(375), 1, - aux_sym_number_token1, - ACTIONS(377), 1, - aux_sym_number_token2, - ACTIONS(379), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(389), 1, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, + sym_file_descriptor, + ACTIONS(6229), 1, + anon_sym_RPAREN, + ACTIONS(5861), 3, + sym_variable_name, sym_test_operator, - ACTIONS(391), 1, sym__brace_start, - ACTIONS(5807), 1, - sym__special_character, - ACTIONS(5809), 1, - anon_sym_BQUOTE, - STATE(2641), 1, - aux_sym__literal_repeat1, - STATE(3009), 1, - sym__expression, - ACTIONS(183), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(185), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(352), 2, + ACTIONS(5851), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(373), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(387), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3071), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2521), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108799] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(350), 1, - sym_word, - ACTIONS(359), 1, - anon_sym_LPAREN, - ACTIONS(361), 1, - anon_sym_BANG, - ACTIONS(363), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, anon_sym_DOLLAR, - ACTIONS(371), 1, - anon_sym_DQUOTE, - ACTIONS(375), 1, - aux_sym_number_token1, - ACTIONS(377), 1, - aux_sym_number_token2, - ACTIONS(379), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(389), 1, - sym_test_operator, - ACTIONS(391), 1, - sym__brace_start, - ACTIONS(5807), 1, sym__special_character, - ACTIONS(5809), 1, - anon_sym_BQUOTE, - STATE(2641), 1, - aux_sym__literal_repeat1, - STATE(3006), 1, - sym__expression, - ACTIONS(183), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(185), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(352), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(373), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(387), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3071), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2521), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108896] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1179), 1, - anon_sym_TILDE, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, - sym_test_operator, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(2621), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1175), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1177), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1183), 2, sym_raw_string, sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2456), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108993] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, aux_sym_number_token1, - ACTIONS(1155), 1, aux_sym_number_token2, - ACTIONS(1157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1179), 1, - anon_sym_TILDE, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, - sym_test_operator, - ACTIONS(3060), 1, anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(3101), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1175), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1177), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2456), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109090] = 8, + sym_word, + [104080] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6231), 1, + ACTIONS(6232), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -170810,7 +167301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -170822,7 +167313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -170840,142 +167331,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [109151] = 26, - ACTIONS(71), 1, + [104141] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, - sym_word, - ACTIONS(248), 1, - anon_sym_LPAREN, - ACTIONS(250), 1, - anon_sym_BANG, - ACTIONS(258), 1, - anon_sym_DOLLAR, - ACTIONS(264), 1, - aux_sym_number_token1, - ACTIONS(266), 1, - aux_sym_number_token2, - ACTIONS(270), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, + sym_file_descriptor, + ACTIONS(6235), 1, + anon_sym_RPAREN, + ACTIONS(5861), 3, + sym_variable_name, sym_test_operator, - ACTIONS(284), 1, sym__brace_start, - ACTIONS(1075), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1079), 1, - sym__special_character, - ACTIONS(1081), 1, - anon_sym_DQUOTE, - ACTIONS(1085), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1087), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, - anon_sym_BQUOTE, - STATE(2690), 1, - aux_sym__literal_repeat1, - STATE(3151), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1073), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1083), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1089), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3053), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2500), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109248] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6133), 1, - aux_sym_concatenation_token1, - ACTIONS(6234), 1, - sym__concat, - STATE(2127), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1286), 15, + ACTIONS(5851), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1288), 25, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [109305] = 8, + sym_word, + [104202] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6236), 1, + ACTIONS(6238), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -170985,7 +167407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -170997,7 +167419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -171015,213 +167437,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [109366] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1179), 1, - anon_sym_TILDE, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, - sym_test_operator, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(3108), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1175), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1177), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2456), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109463] = 6, - ACTIONS(71), 1, + [104263] = 8, + ACTIONS(3), 1, sym_comment, - STATE(3545), 1, - aux_sym__literal_repeat1, - STATE(3556), 1, - sym_concatenation, - STATE(3471), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2494), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2496), 22, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, sym_file_descriptor, + ACTIONS(6241), 1, + anon_sym_RPAREN, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5851), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [109520] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, - sym_word, - ACTIONS(248), 1, - anon_sym_LPAREN, - ACTIONS(250), 1, - anon_sym_BANG, - ACTIONS(258), 1, - anon_sym_DOLLAR, - ACTIONS(264), 1, aux_sym_number_token1, - ACTIONS(266), 1, aux_sym_number_token2, - ACTIONS(270), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym_test_operator, - ACTIONS(284), 1, - sym__brace_start, - ACTIONS(1075), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1079), 1, - sym__special_character, - ACTIONS(1081), 1, - anon_sym_DQUOTE, - ACTIONS(1085), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1087), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - STATE(2690), 1, - aux_sym__literal_repeat1, - STATE(3111), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1073), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1083), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1089), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3053), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2500), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109617] = 8, + sym_word, + [104324] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6239), 1, + ACTIONS(6244), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -171231,7 +167513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -171243,7 +167525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -171261,20 +167543,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [109678] = 8, + [104385] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6242), 1, + ACTIONS(6247), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -171284,7 +167566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -171296,7 +167578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -171314,20 +167596,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [109739] = 8, + [104446] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6245), 1, + ACTIONS(6250), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -171337,7 +167619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -171349,7 +167631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -171367,20 +167649,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [109800] = 8, + [104507] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6248), 1, + ACTIONS(6253), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -171390,7 +167672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -171402,7 +167684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -171420,20 +167702,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [109861] = 8, + [104568] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6251), 1, + ACTIONS(6256), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -171443,7 +167725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -171455,7 +167737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -171473,91 +167755,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [109922] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1187), 1, - sym_word, - ACTIONS(1189), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - anon_sym_TILDE, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - ACTIONS(5779), 1, - sym__special_character, - STATE(2717), 1, - aux_sym__literal_repeat1, - STATE(3050), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1191), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1193), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2503), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [110019] = 8, + [104629] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6254), 1, + ACTIONS(6259), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -171567,7 +167778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -171579,7 +167790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -171597,33 +167808,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [110080] = 5, + [104690] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6257), 1, - sym__special_character, - STATE(2118), 1, - aux_sym__literal_repeat1, - ACTIONS(5395), 4, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, sym_file_descriptor, + ACTIONS(6262), 1, + anon_sym_RPAREN, + ACTIONS(5861), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5393), 37, - anon_sym_LPAREN_LPAREN, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -171631,10 +167842,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -171647,20 +167861,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [110135] = 8, + [104751] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6259), 1, + ACTIONS(6265), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -171670,7 +167884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -171682,7 +167896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -171700,20 +167914,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [110196] = 8, + [104812] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6262), 1, + ACTIONS(6268), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -171723,7 +167937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -171735,7 +167949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -171753,20 +167967,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [110257] = 8, + [104873] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6265), 1, + ACTIONS(6271), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -171776,7 +167990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -171788,7 +168002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -171806,20 +168020,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [110318] = 8, + [104934] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6268), 1, + ACTIONS(6274), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -171829,7 +168043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -171841,7 +168055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -171859,71 +168073,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [110379] = 6, - ACTIONS(71), 1, + [104995] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(6133), 1, - aux_sym_concatenation_token1, - ACTIONS(6271), 1, - sym__concat, - STATE(2127), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1265), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1267), 25, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, sym_file_descriptor, + ACTIONS(6277), 1, + anon_sym_RPAREN, + ACTIONS(5861), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5851), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [110436] = 8, + sym_word, + [105056] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6273), 1, + ACTIONS(6280), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -171933,7 +168149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -171945,7 +168161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -171963,119 +168179,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [110497] = 5, - ACTIONS(71), 1, + [105117] = 8, + ACTIONS(3), 1, sym_comment, - STATE(2135), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6133), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4370), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(4372), 25, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, sym_file_descriptor, + ACTIONS(6283), 1, + anon_sym_RPAREN, + ACTIONS(5861), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5851), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [110552] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2152), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6133), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4467), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(4469), 25, + [105178] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, sym_file_descriptor, + ACTIONS(6286), 1, + anon_sym_RPAREN, + ACTIONS(5861), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5851), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [110607] = 7, + sym_word, + [105239] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5828), 1, - sym_file_descriptor, - ACTIONS(5826), 2, - ts_builtin_sym_end, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5831), 3, + ACTIONS(5858), 1, + sym_file_descriptor, + ACTIONS(6289), 1, + anon_sym_RPAREN, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -172085,7 +168308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -172097,7 +168320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -172115,20 +168338,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [110666] = 8, + [105300] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6276), 1, + ACTIONS(6292), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -172138,7 +168361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -172150,7 +168373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -172168,29 +168391,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [110727] = 3, + [105361] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5375), 5, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, sym_file_descriptor, + ACTIONS(6295), 1, + anon_sym_RPAREN, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5373), 38, - anon_sym_LPAREN_LPAREN, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -172198,7 +168425,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -172214,22 +168443,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [110778] = 8, + [105422] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6279), 1, + ACTIONS(6298), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -172239,7 +168467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -172251,7 +168479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -172269,30 +168497,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [110839] = 3, + [105483] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 4, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, sym_file_descriptor, + ACTIONS(6301), 1, + anon_sym_RPAREN, + ACTIONS(5861), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 39, - anon_sym_LPAREN_LPAREN, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -172300,7 +168531,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -172317,32 +168550,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [110890] = 5, + [105544] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6282), 1, - sym__special_character, - STATE(2124), 1, - aux_sym__literal_repeat1, - ACTIONS(5395), 4, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, sym_file_descriptor, + ACTIONS(6304), 1, + anon_sym_RPAREN, + ACTIONS(5861), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5393), 37, - anon_sym_LPAREN_LPAREN, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -172350,11 +168584,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -172367,29 +168603,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [110945] = 3, + [105605] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 5, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6307), 1, + anon_sym_RPAREN, + ACTIONS(5861), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 38, - anon_sym_LPAREN_LPAREN, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -172397,10 +168637,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -172415,20 +168656,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [110996] = 8, + [105666] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6284), 1, + ACTIONS(6310), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -172438,7 +168679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -172450,7 +168691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -172468,20 +168709,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [111057] = 8, + [105727] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6287), 1, + ACTIONS(6313), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -172491,7 +168732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -172503,7 +168744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -172521,20 +168762,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [111118] = 8, + [105788] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6290), 1, + ACTIONS(6316), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -172544,7 +168785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -172556,7 +168797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -172574,92 +168815,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [111179] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(363), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, - anon_sym_DOLLAR, - ACTIONS(371), 1, - anon_sym_DQUOTE, - ACTIONS(375), 1, - aux_sym_number_token1, - ACTIONS(377), 1, - aux_sym_number_token2, - ACTIONS(379), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, - sym__brace_start, - ACTIONS(1093), 1, - anon_sym_LPAREN, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1103), 1, - anon_sym_TILDE, - ACTIONS(5809), 1, - anon_sym_BQUOTE, - ACTIONS(5916), 1, - sym__special_character, - ACTIONS(6293), 1, - sym_word, - ACTIONS(6297), 1, - sym_test_operator, - STATE(2501), 1, - aux_sym__literal_repeat1, - STATE(3397), 1, - sym__expression, - ACTIONS(352), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1099), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1101), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6295), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2594), 2, - sym_ternary_expression, - sym_postfix_expression, - STATE(2833), 4, - sym_binary_expression, - sym_unary_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2497), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [111278] = 8, + [105849] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6299), 1, + ACTIONS(6319), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -172669,7 +168838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -172681,7 +168850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -172699,20 +168868,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [111339] = 8, + [105910] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6302), 1, + ACTIONS(6322), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -172722,7 +168891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -172734,7 +168903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -172752,20 +168921,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [111400] = 8, + [105971] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6305), 1, + ACTIONS(6325), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -172775,7 +168944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -172787,7 +168956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -172805,20 +168974,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [111461] = 8, + [106032] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6308), 1, + ACTIONS(6328), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -172828,7 +168997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -172840,7 +169009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -172858,20 +169027,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [111522] = 8, + [106093] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6311), 1, + ACTIONS(6331), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -172881,7 +169050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -172893,7 +169062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -172911,20 +169080,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [111583] = 8, + [106154] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6314), 1, + ACTIONS(6334), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -172934,7 +169103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -172946,7 +169115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -172964,29 +169133,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [111644] = 3, + [106215] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5768), 6, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, sym_file_descriptor, + ACTIONS(6337), 1, + anon_sym_RPAREN, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(5766), 37, - anon_sym_LPAREN_LPAREN, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -172994,8 +169167,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -173012,91 +169186,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [111695] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, - sym_word, - ACTIONS(248), 1, - anon_sym_LPAREN, - ACTIONS(250), 1, - anon_sym_BANG, - ACTIONS(258), 1, - anon_sym_DOLLAR, - ACTIONS(264), 1, - aux_sym_number_token1, - ACTIONS(266), 1, - aux_sym_number_token2, - ACTIONS(270), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym_test_operator, - ACTIONS(284), 1, - sym__brace_start, - ACTIONS(1075), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1079), 1, - sym__special_character, - ACTIONS(1081), 1, - anon_sym_DQUOTE, - ACTIONS(1085), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1087), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, - anon_sym_BQUOTE, - STATE(2690), 1, - aux_sym__literal_repeat1, - STATE(3097), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1073), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1083), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1089), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3053), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2500), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [111792] = 8, + [106276] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6317), 1, + ACTIONS(6340), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -173106,7 +169209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -173118,7 +169221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -173136,20 +169239,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [111853] = 8, + [106337] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6320), 1, + ACTIONS(6343), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -173159,7 +169262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -173171,7 +169274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -173189,20 +169292,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [111914] = 8, + [106398] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6323), 1, + ACTIONS(6346), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -173212,7 +169315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -173224,7 +169327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -173242,20 +169345,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [111975] = 8, + [106459] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6326), 1, + ACTIONS(6349), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -173265,7 +169368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -173277,7 +169380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -173295,20 +169398,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [112036] = 8, + [106520] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6329), 1, + ACTIONS(6352), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -173318,7 +169421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -173330,7 +169433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -173348,20 +169451,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [112097] = 8, + [106581] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6332), 1, + ACTIONS(6355), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -173371,7 +169474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -173383,7 +169486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -173401,20 +169504,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [112158] = 8, + [106642] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6335), 1, + ACTIONS(6358), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -173424,7 +169527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -173436,7 +169539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -173454,68 +169557,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [112219] = 3, + [106703] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [112270] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6338), 1, + ACTIONS(6361), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -173525,7 +169580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -173537,7 +169592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -173555,91 +169610,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [112331] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1211), 1, - sym_word, - ACTIONS(1213), 1, - anon_sym_BANG, - ACTIONS(1219), 1, - anon_sym_TILDE, - ACTIONS(1221), 1, - sym__special_character, - ACTIONS(1225), 1, - sym_test_operator, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(2621), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1215), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1217), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1223), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2588), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [112428] = 8, + [106764] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6341), 1, + ACTIONS(6364), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -173649,7 +169633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -173661,7 +169645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -173679,20 +169663,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [112489] = 8, + [106825] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6344), 1, + ACTIONS(6367), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -173702,7 +169686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -173714,7 +169698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -173732,20 +169716,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [112550] = 8, + [106886] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6347), 1, + ACTIONS(6370), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -173755,7 +169739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -173767,7 +169751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -173785,91 +169769,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [112611] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1211), 1, - sym_word, - ACTIONS(1213), 1, - anon_sym_BANG, - ACTIONS(1219), 1, - anon_sym_TILDE, - ACTIONS(1221), 1, - sym__special_character, - ACTIONS(1225), 1, - sym_test_operator, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(3183), 1, - sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1215), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1217), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1223), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2588), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [112708] = 8, + [106947] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6350), 1, + ACTIONS(6373), 1, anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -173879,7 +169792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -173891,7 +169804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -173909,83 +169822,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [112769] = 5, - ACTIONS(3), 1, + [107008] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(6353), 1, - sym__special_character, - STATE(2254), 1, + STATE(3535), 1, aux_sym__literal_repeat1, - ACTIONS(5478), 5, + STATE(3552), 1, + sym_concatenation, + STATE(3461), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2305), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2307), 22, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(5476), 36, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [112824] = 8, + [107065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(1358), 5, sym_file_descriptor, - ACTIONS(6355), 1, - anon_sym_RPAREN, - ACTIONS(5831), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1356), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -173993,11 +169903,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5819), 17, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -174012,68 +169921,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [112885] = 26, + [107116] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + ACTIONS(307), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, + ACTIONS(327), 1, sym__brace_start, - ACTIONS(1187), 1, - sym_word, - ACTIONS(1189), 1, + ACTIONS(1075), 1, + anon_sym_LPAREN, + ACTIONS(1077), 1, anon_sym_BANG, - ACTIONS(1195), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - ACTIONS(5779), 1, + ACTIONS(5882), 1, sym__special_character, - STATE(2717), 1, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + ACTIONS(6376), 1, + sym_word, + ACTIONS(6380), 1, + sym_test_operator, + STATE(2463), 1, aux_sym__literal_repeat1, - STATE(2995), 1, + STATE(3426), 1, sym__expression, - ACTIONS(1129), 2, + ACTIONS(288), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, + ACTIONS(323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1191), 2, + ACTIONS(1081), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1193), 2, + ACTIONS(1083), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1199), 2, + ACTIONS(6378), 2, sym_raw_string, sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, + STATE(2674), 2, sym_ternary_expression, - sym_unary_expression, sym_postfix_expression, + STATE(2762), 4, + sym_binary_expression, + sym_unary_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2503), 9, + STATE(2462), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -174083,280 +169993,68 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [112982] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, - sym_file_descriptor, - ACTIONS(6358), 1, - anon_sym_RPAREN, - ACTIONS(5831), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5821), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5819), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [113043] = 8, - ACTIONS(3), 1, + [107215] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, - sym_file_descriptor, - ACTIONS(6361), 1, - anon_sym_RPAREN, - ACTIONS(5831), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5821), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5819), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, sym_word, - [113104] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, - sym_file_descriptor, - ACTIONS(6364), 1, - anon_sym_RPAREN, - ACTIONS(5831), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5821), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5819), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(248), 1, + anon_sym_LPAREN, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(258), 1, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(264), 1, aux_sym_number_token1, + ACTIONS(266), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(270), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [113165] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, - sym_file_descriptor, - ACTIONS(6367), 1, - anon_sym_RPAREN, - ACTIONS(5831), 3, - sym_variable_name, + ACTIONS(282), 1, sym_test_operator, + ACTIONS(284), 1, sym__brace_start, - ACTIONS(5821), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5819), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + ACTIONS(1159), 1, sym__special_character, + ACTIONS(1161), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [113226] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(1165), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(1167), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1187), 1, - sym_word, - ACTIONS(1189), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - anon_sym_TILDE, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(3060), 1, + ACTIONS(3598), 1, anon_sym_BQUOTE, - ACTIONS(5779), 1, - sym__special_character, - STATE(2717), 1, + STATE(2623), 1, aux_sym__literal_repeat1, - STATE(3003), 1, + STATE(2964), 1, sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1191), 2, + ACTIONS(103), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1193), 2, + ACTIONS(105), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1199), 2, + ACTIONS(1153), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1163), 2, sym_raw_string, sym_ansi_c_string, - STATE(2594), 6, + ACTIONS(1169), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2976), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2503), 9, + STATE(2498), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -174366,28 +170064,28 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [113323] = 26, + [107312] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1131), 1, + ACTIONS(1101), 1, anon_sym_LPAREN, - ACTIONS(1141), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, + ACTIONS(1139), 1, sym__brace_start, ACTIONS(1187), 1, sym_word, @@ -174395,20 +170093,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(1195), 1, anon_sym_TILDE, + ACTIONS(1197), 1, + sym__special_character, ACTIONS(1201), 1, sym_test_operator, - ACTIONS(3060), 1, + ACTIONS(3119), 1, anon_sym_BQUOTE, - ACTIONS(5779), 1, - sym__special_character, - STATE(2717), 1, + STATE(2548), 1, aux_sym__literal_repeat1, - STATE(3043), 1, + STATE(3153), 1, sym__expression, - ACTIONS(1129), 2, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1191), 2, @@ -174420,14 +170118,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1199), 2, sym_raw_string, sym_ansi_c_string, - STATE(2594), 6, + STATE(2674), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2503), 9, + STATE(2567), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -174437,83 +170135,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [113420] = 5, - ACTIONS(71), 1, + [107409] = 6, + ACTIONS(3), 1, sym_comment, - STATE(2135), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6133), 2, - sym__concat, + ACTIONS(5977), 1, aux_sym_concatenation_token1, - ACTIONS(4463), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(4465), 25, + ACTIONS(5991), 1, + sym__concat, + STATE(2032), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5317), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [113475] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5826), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, - sym_file_descriptor, - ACTIONS(6370), 1, - anon_sym_RPAREN, - ACTIONS(5831), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5315), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -174521,9 +170169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5819), 17, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -174540,17 +170186,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [113536] = 3, + [107466] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2096), 6, + ACTIONS(5977), 1, + aux_sym_concatenation_token1, + ACTIONS(5991), 1, + sym__concat, + STATE(2033), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5321), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2094), 37, + ACTIONS(5319), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -174571,7 +170221,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -174588,7 +170237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [113587] = 26, + [107523] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(107), 1, @@ -174611,21 +170260,21 @@ static const uint16_t ts_small_parse_table[] = { sym_test_operator, ACTIONS(284), 1, sym__brace_start, - ACTIONS(1075), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1079), 1, + ACTIONS(1159), 1, sym__special_character, - ACTIONS(1081), 1, + ACTIONS(1161), 1, anon_sym_DQUOTE, - ACTIONS(1085), 1, + ACTIONS(1165), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1087), 1, + ACTIONS(1167), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(3598), 1, anon_sym_BQUOTE, - STATE(2690), 1, + STATE(2623), 1, aux_sym__literal_repeat1, - STATE(3126), 1, + STATE(3040), 1, sym__expression, ACTIONS(103), 2, anon_sym_PLUS_PLUS2, @@ -174633,23 +170282,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1073), 2, + ACTIONS(1153), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1083), 2, + ACTIONS(1163), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1089), 2, + ACTIONS(1169), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3053), 6, + STATE(2976), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2500), 9, + STATE(2498), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -174659,107 +170308,78 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [113684] = 5, + [107620] = 26, ACTIONS(71), 1, sym_comment, - STATE(2152), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6133), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4546), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1097), 1, sym_word, - ACTIONS(4548), 25, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1103), 1, + anon_sym_BANG, + ACTIONS(1109), 1, + anon_sym_TILDE, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [113739] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2152), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6133), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4480), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1115), 1, anon_sym_DOLLAR, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(4482), 25, - sym_file_descriptor, + ACTIONS(1133), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1137), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(1139), 1, sym__brace_start, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + ACTIONS(5905), 1, + sym__special_character, + STATE(2593), 1, + aux_sym__literal_repeat1, + STATE(3075), 1, + sym__expression, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(1105), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1107), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1121), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113794] = 26, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2554), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [107717] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(107), 1, @@ -174782,21 +170402,21 @@ static const uint16_t ts_small_parse_table[] = { sym_test_operator, ACTIONS(284), 1, sym__brace_start, - ACTIONS(1075), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1079), 1, + ACTIONS(1159), 1, sym__special_character, - ACTIONS(1081), 1, + ACTIONS(1161), 1, anon_sym_DQUOTE, - ACTIONS(1085), 1, + ACTIONS(1165), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1087), 1, + ACTIONS(1167), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(3598), 1, anon_sym_BQUOTE, - STATE(2690), 1, + STATE(2623), 1, aux_sym__literal_repeat1, - STATE(3080), 1, + STATE(3045), 1, sym__expression, ACTIONS(103), 2, anon_sym_PLUS_PLUS2, @@ -174804,23 +170424,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1073), 2, + ACTIONS(1153), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1083), 2, + ACTIONS(1163), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1089), 2, + ACTIONS(1169), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3053), 6, + STATE(2976), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2500), 9, + STATE(2498), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -174830,174 +170450,211 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [113891] = 8, - ACTIONS(3), 1, + [107814] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, - sym_file_descriptor, - ACTIONS(6373), 1, - anon_sym_RPAREN, - ACTIONS(5831), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5821), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5819), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1119), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1171), 1, sym_word, - [113952] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, - sym_file_descriptor, - ACTIONS(6376), 1, - anon_sym_RPAREN, - ACTIONS(5831), 3, - sym_variable_name, + ACTIONS(1173), 1, + anon_sym_BANG, + ACTIONS(1179), 1, + anon_sym_TILDE, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, sym_test_operator, - sym__brace_start, - ACTIONS(5821), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(2685), 1, + sym__expression, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1175), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1183), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2530), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [107911] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1119), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1173), 1, + anon_sym_BANG, + ACTIONS(1179), 1, + anon_sym_TILDE, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, + sym_test_operator, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(3096), 1, + sym__expression, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [114013] = 26, + ACTIONS(1175), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1183), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2530), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [108008] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, - sym_word, - ACTIONS(248), 1, - anon_sym_LPAREN, - ACTIONS(250), 1, - anon_sym_BANG, - ACTIONS(258), 1, + ACTIONS(299), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(264), 1, + ACTIONS(307), 1, + anon_sym_DQUOTE, + ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(266), 1, + ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(270), 1, + ACTIONS(315), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym_test_operator, - ACTIONS(284), 1, + ACTIONS(321), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(327), 1, sym__brace_start, ACTIONS(1075), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1079), 1, - sym__special_character, - ACTIONS(1081), 1, - anon_sym_DQUOTE, + anon_sym_LPAREN, + ACTIONS(1077), 1, + anon_sym_BANG, ACTIONS(1085), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1087), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, + anon_sym_TILDE, + ACTIONS(5882), 1, + sym__special_character, + ACTIONS(5884), 1, anon_sym_BQUOTE, - STATE(2690), 1, + ACTIONS(6382), 1, + sym_word, + ACTIONS(6386), 1, + sym_test_operator, + STATE(2471), 1, aux_sym__literal_repeat1, - STATE(3090), 1, + STATE(3426), 1, sym__expression, - ACTIONS(103), 2, + ACTIONS(288), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(323), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1081), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(105), 2, + ACTIONS(1083), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1073), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1083), 2, + ACTIONS(6384), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1089), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3053), 6, - sym_binary_expression, + STATE(2674), 2, sym_ternary_expression, - sym_unary_expression, sym_postfix_expression, + STATE(2858), 4, + sym_binary_expression, + sym_unary_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2500), 9, + STATE(2470), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -175007,7 +170664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [114110] = 26, + [108107] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(107), 1, @@ -175030,21 +170687,21 @@ static const uint16_t ts_small_parse_table[] = { sym_test_operator, ACTIONS(284), 1, sym__brace_start, - ACTIONS(1075), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1079), 1, + ACTIONS(1159), 1, sym__special_character, - ACTIONS(1081), 1, + ACTIONS(1161), 1, anon_sym_DQUOTE, - ACTIONS(1085), 1, + ACTIONS(1165), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1087), 1, + ACTIONS(1167), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(3598), 1, anon_sym_BQUOTE, - STATE(2690), 1, + STATE(2623), 1, aux_sym__literal_repeat1, - STATE(3088), 1, + STATE(3124), 1, sym__expression, ACTIONS(103), 2, anon_sym_PLUS_PLUS2, @@ -175052,23 +170709,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1073), 2, + ACTIONS(1153), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1083), 2, + ACTIONS(1163), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1089), 2, + ACTIONS(1169), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3053), 6, + STATE(2976), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2500), 9, + STATE(2498), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -175078,179 +170735,99 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [114207] = 3, - ACTIONS(3), 1, + [108204] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(1253), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1115), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1119), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [114258] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2135), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6133), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4530), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1187), 1, sym_word, - ACTIONS(4532), 25, - sym_file_descriptor, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, + sym__special_character, + ACTIONS(1201), 1, sym_test_operator, - sym__bare_dollar, - sym__brace_start, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(2968), 1, + sym__expression, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114313] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, - sym_file_descriptor, - ACTIONS(6379), 1, - anon_sym_RPAREN, - ACTIONS(5831), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5821), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5819), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1199), 2, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [114374] = 26, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2567), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [108301] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1131), 1, + ACTIONS(1101), 1, anon_sym_LPAREN, - ACTIONS(1141), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, + ACTIONS(1139), 1, sym__brace_start, ACTIONS(1171), 1, sym_word, @@ -175262,16 +170839,16 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, ACTIONS(1185), 1, sym_test_operator, - ACTIONS(3060), 1, + ACTIONS(3119), 1, anon_sym_BQUOTE, - STATE(2484), 1, + STATE(2548), 1, aux_sym__literal_repeat1, - STATE(3060), 1, + STATE(2995), 1, sym__expression, - ACTIONS(1129), 2, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1175), 2, @@ -175283,14 +170860,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1183), 2, sym_raw_string, sym_ansi_c_string, - STATE(2594), 6, + STATE(2674), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2456), 9, + STATE(2530), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -175300,621 +170877,281 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [114471] = 3, - ACTIONS(3), 1, + [108398] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(1310), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, + sym_word, + ACTIONS(248), 1, + anon_sym_LPAREN, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(258), 1, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(264), 1, aux_sym_number_token1, + ACTIONS(266), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(270), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [114522] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 6, - sym_file_descriptor, - sym_variable_name, + ACTIONS(282), 1, sym_test_operator, + ACTIONS(284), 1, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + ACTIONS(1159), 1, sym__special_character, + ACTIONS(1161), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(1165), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1167), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [114573] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1306), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 37, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + STATE(2623), 1, + aux_sym__literal_repeat1, + STATE(3046), 1, + sym__expression, + ACTIONS(103), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(105), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1153), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(1163), 2, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [114624] = 8, - ACTIONS(3), 1, + STATE(2976), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2498), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [108495] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, - sym_file_descriptor, - ACTIONS(6382), 1, - anon_sym_RPAREN, - ACTIONS(5831), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5821), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5819), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, + sym_word, + ACTIONS(248), 1, + anon_sym_LPAREN, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(258), 1, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(264), 1, aux_sym_number_token1, + ACTIONS(266), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(270), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [114685] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1310), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(282), 1, sym_test_operator, + ACTIONS(284), 1, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, + ACTIONS(1159), 1, sym__special_character, + ACTIONS(1161), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(1165), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1167), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [114736] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, - sym_file_descriptor, - ACTIONS(6385), 1, - anon_sym_RPAREN, - ACTIONS(5831), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5821), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + STATE(2623), 1, + aux_sym__literal_repeat1, + STATE(3048), 1, + sym__expression, + ACTIONS(103), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(105), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1153), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(1163), 2, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [114797] = 8, - ACTIONS(3), 1, + STATE(2976), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2498), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [108592] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, - sym_file_descriptor, - ACTIONS(6388), 1, - anon_sym_RPAREN, - ACTIONS(5831), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5821), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5819), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, + sym_word, + ACTIONS(248), 1, + anon_sym_LPAREN, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(258), 1, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(264), 1, aux_sym_number_token1, + ACTIONS(266), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(270), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [114858] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, - sym_file_descriptor, - ACTIONS(6391), 1, - anon_sym_RPAREN, - ACTIONS(5831), 3, - sym_variable_name, + ACTIONS(282), 1, sym_test_operator, + ACTIONS(284), 1, sym__brace_start, - ACTIONS(5821), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5819), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + ACTIONS(1159), 1, sym__special_character, + ACTIONS(1161), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(1165), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1167), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [114919] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1298), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 38, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + STATE(2623), 1, + aux_sym__literal_repeat1, + STATE(3049), 1, + sym__expression, + ACTIONS(103), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(105), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1153), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(1163), 2, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(1169), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [114970] = 8, - ACTIONS(3), 1, + STATE(2976), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2498), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [108689] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, - sym_file_descriptor, - ACTIONS(6394), 1, - anon_sym_RPAREN, - ACTIONS(5831), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5821), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5819), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, + sym_word, + ACTIONS(248), 1, + anon_sym_LPAREN, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(258), 1, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(264), 1, aux_sym_number_token1, + ACTIONS(266), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(270), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [115031] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1302), 5, - sym_file_descriptor, - sym__concat, + ACTIONS(282), 1, sym_test_operator, + ACTIONS(284), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, + ACTIONS(1159), 1, sym__special_character, + ACTIONS(1161), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [115082] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, - anon_sym_DOLLAR, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(1165), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(1167), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1187), 1, - sym_word, - ACTIONS(1189), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - anon_sym_TILDE, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(3060), 1, + ACTIONS(3598), 1, anon_sym_BQUOTE, - ACTIONS(5779), 1, - sym__special_character, - STATE(2717), 1, + STATE(2623), 1, aux_sym__literal_repeat1, - STATE(3014), 1, + STATE(3050), 1, sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1191), 2, + ACTIONS(103), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1193), 2, + ACTIONS(105), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1199), 2, + ACTIONS(1153), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1163), 2, sym_raw_string, sym_ansi_c_string, - STATE(2594), 6, + ACTIONS(1169), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2976), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2503), 9, + STATE(2498), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -175924,68 +171161,69 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [115179] = 26, + [108786] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + ACTIONS(307), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, + ACTIONS(327), 1, sym__brace_start, - ACTIONS(1187), 1, - sym_word, - ACTIONS(1189), 1, + ACTIONS(1075), 1, + anon_sym_LPAREN, + ACTIONS(1077), 1, anon_sym_BANG, - ACTIONS(1195), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - ACTIONS(5779), 1, + ACTIONS(5882), 1, sym__special_character, - STATE(2717), 1, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + ACTIONS(6388), 1, + sym_word, + ACTIONS(6392), 1, + sym_test_operator, + STATE(2484), 1, aux_sym__literal_repeat1, - STATE(3013), 1, + STATE(3426), 1, sym__expression, - ACTIONS(1129), 2, + ACTIONS(288), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, + ACTIONS(323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1191), 2, + ACTIONS(1081), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1193), 2, + ACTIONS(1083), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1199), 2, + ACTIONS(6390), 2, sym_raw_string, sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, + STATE(2674), 2, sym_ternary_expression, - sym_unary_expression, sym_postfix_expression, + STATE(2889), 4, + sym_binary_expression, + sym_unary_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2503), 9, + STATE(2483), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -175995,129 +171233,99 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [115276] = 3, - ACTIONS(3), 1, + [108885] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(4372), 6, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, + sym_word, + ACTIONS(248), 1, + anon_sym_LPAREN, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(258), 1, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(264), 1, aux_sym_number_token1, + ACTIONS(266), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(270), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [115327] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, - sym_file_descriptor, - ACTIONS(6397), 1, - anon_sym_RPAREN, - ACTIONS(5831), 3, - sym_variable_name, + ACTIONS(282), 1, sym_test_operator, + ACTIONS(284), 1, sym__brace_start, - ACTIONS(5821), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5819), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + ACTIONS(1159), 1, sym__special_character, + ACTIONS(1161), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(1165), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1167), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + STATE(2623), 1, + aux_sym__literal_repeat1, + STATE(2983), 1, + sym__expression, + ACTIONS(103), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(105), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1153), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1163), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1169), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [115388] = 26, + STATE(2976), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2498), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [108982] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1131), 1, + ACTIONS(1101), 1, anon_sym_LPAREN, - ACTIONS(1141), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, + ACTIONS(1139), 1, sym__brace_start, ACTIONS(1187), 1, sym_word, @@ -176125,20 +171333,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(1195), 1, anon_sym_TILDE, + ACTIONS(1197), 1, + sym__special_character, ACTIONS(1201), 1, sym_test_operator, - ACTIONS(3060), 1, + ACTIONS(3119), 1, anon_sym_BQUOTE, - ACTIONS(5779), 1, - sym__special_character, - STATE(2717), 1, + STATE(2548), 1, aux_sym__literal_repeat1, - STATE(3010), 1, + STATE(2988), 1, sym__expression, - ACTIONS(1129), 2, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1191), 2, @@ -176150,14 +171358,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1199), 2, sym_raw_string, sym_ansi_c_string, - STATE(2594), 6, + STATE(2674), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2503), 9, + STATE(2567), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -176167,7 +171375,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [115485] = 26, + [109079] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(107), 1, @@ -176190,21 +171398,21 @@ static const uint16_t ts_small_parse_table[] = { sym_test_operator, ACTIONS(284), 1, sym__brace_start, - ACTIONS(1075), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1079), 1, + ACTIONS(1159), 1, sym__special_character, - ACTIONS(1081), 1, + ACTIONS(1161), 1, anon_sym_DQUOTE, - ACTIONS(1085), 1, + ACTIONS(1165), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1087), 1, + ACTIONS(1167), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(3598), 1, anon_sym_BQUOTE, - STATE(2690), 1, + STATE(2623), 1, aux_sym__literal_repeat1, - STATE(3086), 1, + STATE(3051), 1, sym__expression, ACTIONS(103), 2, anon_sym_PLUS_PLUS2, @@ -176212,23 +171420,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1073), 2, + ACTIONS(1153), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1083), 2, + ACTIONS(1163), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1089), 2, + ACTIONS(1169), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3053), 6, + STATE(2976), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2500), 9, + STATE(2498), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -176238,7 +171446,55 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [115582] = 26, + [109176] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1274), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1272), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [109227] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(107), 1, @@ -176261,21 +171517,21 @@ static const uint16_t ts_small_parse_table[] = { sym_test_operator, ACTIONS(284), 1, sym__brace_start, - ACTIONS(1075), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1079), 1, + ACTIONS(1159), 1, sym__special_character, - ACTIONS(1081), 1, + ACTIONS(1161), 1, anon_sym_DQUOTE, - ACTIONS(1085), 1, + ACTIONS(1165), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1087), 1, + ACTIONS(1167), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(3598), 1, anon_sym_BQUOTE, - STATE(2690), 1, + STATE(2623), 1, aux_sym__literal_repeat1, - STATE(3084), 1, + STATE(3053), 1, sym__expression, ACTIONS(103), 2, anon_sym_PLUS_PLUS2, @@ -176283,23 +171539,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1073), 2, + ACTIONS(1153), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1083), 2, + ACTIONS(1163), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1089), 2, + ACTIONS(1169), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3053), 6, + STATE(2976), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2500), 9, + STATE(2498), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -176309,68 +171565,69 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [115679] = 26, + [109324] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + ACTIONS(307), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, + ACTIONS(327), 1, sym__brace_start, - ACTIONS(1187), 1, - sym_word, - ACTIONS(1189), 1, + ACTIONS(1075), 1, + anon_sym_LPAREN, + ACTIONS(1077), 1, anon_sym_BANG, - ACTIONS(1195), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - ACTIONS(5779), 1, + ACTIONS(5882), 1, sym__special_character, - STATE(2717), 1, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + ACTIONS(6394), 1, + sym_word, + ACTIONS(6398), 1, + sym_test_operator, + STATE(2489), 1, aux_sym__literal_repeat1, - STATE(3008), 1, + STATE(3426), 1, sym__expression, - ACTIONS(1129), 2, + ACTIONS(288), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, + ACTIONS(323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1191), 2, + ACTIONS(1081), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1193), 2, + ACTIONS(1083), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1199), 2, + ACTIONS(6396), 2, sym_raw_string, sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, + STATE(2674), 2, sym_ternary_expression, - sym_unary_expression, sym_postfix_expression, + STATE(2917), 4, + sym_binary_expression, + sym_unary_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2503), 9, + STATE(2488), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -176380,68 +171637,68 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [115776] = 26, + [109423] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1131), 1, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, + sym_word, + ACTIONS(248), 1, anon_sym_LPAREN, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(258), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(264), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(266), 1, aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(270), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(1187), 1, - sym_word, - ACTIONS(1189), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - anon_sym_TILDE, - ACTIONS(1201), 1, + ACTIONS(282), 1, sym_test_operator, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - ACTIONS(5779), 1, + ACTIONS(284), 1, + sym__brace_start, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1159), 1, sym__special_character, - STATE(2717), 1, + ACTIONS(1161), 1, + anon_sym_DQUOTE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + STATE(2623), 1, aux_sym__literal_repeat1, - STATE(3007), 1, + STATE(3003), 1, sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1191), 2, + ACTIONS(103), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1193), 2, + ACTIONS(105), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1199), 2, + ACTIONS(1153), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1163), 2, sym_raw_string, sym_ansi_c_string, - STATE(2594), 6, + ACTIONS(1169), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2976), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2503), 9, + STATE(2498), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -176451,68 +171708,68 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [115873] = 26, + [109520] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1127), 1, - sym_word, - ACTIONS(1131), 1, + ACTIONS(1101), 1, anon_sym_LPAREN, - ACTIONS(1133), 1, - anon_sym_BANG, - ACTIONS(1139), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1147), 1, - sym__special_character, - ACTIONS(1149), 1, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, - sym_test_operator, - ACTIONS(1169), 1, + ACTIONS(1139), 1, sym__brace_start, - ACTIONS(3060), 1, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, + sym__special_character, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3119), 1, anon_sym_BQUOTE, - STATE(2484), 1, + STATE(2548), 1, aux_sym__literal_repeat1, - STATE(3129), 1, + STATE(3007), 1, sym__expression, - ACTIONS(1129), 2, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1137), 2, + ACTIONS(1193), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1151), 2, + ACTIONS(1199), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2594), 6, + STATE(2674), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2573), 9, + STATE(2567), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -176522,68 +171779,68 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [115970] = 26, + [109617] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1127), 1, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, sym_word, - ACTIONS(1131), 1, + ACTIONS(248), 1, anon_sym_LPAREN, - ACTIONS(1133), 1, + ACTIONS(250), 1, anon_sym_BANG, - ACTIONS(1139), 1, - anon_sym_TILDE, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(258), 1, anon_sym_DOLLAR, - ACTIONS(1147), 1, - sym__special_character, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(264), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(266), 1, aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(270), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, + ACTIONS(282), 1, sym_test_operator, - ACTIONS(1169), 1, + ACTIONS(284), 1, sym__brace_start, - ACTIONS(3060), 1, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1159), 1, + sym__special_character, + ACTIONS(1161), 1, + anon_sym_DQUOTE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, anon_sym_BQUOTE, - STATE(2484), 1, + STATE(2623), 1, aux_sym__literal_repeat1, - STATE(3148), 1, + STATE(3054), 1, sym__expression, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + ACTIONS(103), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1137), 2, + ACTIONS(105), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1151), 2, + ACTIONS(1153), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1163), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1165), 2, + ACTIONS(1169), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2594), 6, + STATE(2976), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2573), 9, + STATE(2498), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -176593,169 +171850,140 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [116067] = 8, - ACTIONS(3), 1, + [109714] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, - sym_file_descriptor, - ACTIONS(6400), 1, - anon_sym_RPAREN, - ACTIONS(5831), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5821), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5819), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, + sym_word, + ACTIONS(248), 1, + anon_sym_LPAREN, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(258), 1, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(264), 1, aux_sym_number_token1, + ACTIONS(266), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(270), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [116128] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 6, - sym_file_descriptor, - sym_variable_name, + ACTIONS(282), 1, sym_test_operator, + ACTIONS(284), 1, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + ACTIONS(1159), 1, sym__special_character, + ACTIONS(1161), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(1165), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1167), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + STATE(2623), 1, + aux_sym__literal_repeat1, + STATE(3056), 1, + sym__expression, + ACTIONS(103), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(105), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1153), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1163), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1169), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [116179] = 26, + STATE(2976), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2498), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [109811] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(1131), 1, - anon_sym_LPAREN, - ACTIONS(1141), 1, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + ACTIONS(307), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, + ACTIONS(327), 1, sym__brace_start, - ACTIONS(1187), 1, - sym_word, - ACTIONS(1189), 1, + ACTIONS(1075), 1, + anon_sym_LPAREN, + ACTIONS(1077), 1, anon_sym_BANG, - ACTIONS(1195), 1, + ACTIONS(1085), 1, anon_sym_TILDE, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - ACTIONS(5779), 1, + ACTIONS(5882), 1, sym__special_character, - STATE(2717), 1, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + ACTIONS(6400), 1, + sym_word, + ACTIONS(6404), 1, + sym_test_operator, + STATE(2491), 1, aux_sym__literal_repeat1, - STATE(3002), 1, + STATE(3426), 1, sym__expression, - ACTIONS(1129), 2, + ACTIONS(288), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, + ACTIONS(323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1191), 2, + ACTIONS(1081), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1193), 2, + ACTIONS(1083), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1199), 2, + ACTIONS(6402), 2, sym_raw_string, sym_ansi_c_string, - STATE(2594), 6, - sym_binary_expression, + STATE(2674), 2, sym_ternary_expression, - sym_unary_expression, sym_postfix_expression, + STATE(2933), 4, + sym_binary_expression, + sym_unary_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2503), 9, + STATE(2490), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -176765,28 +171993,28 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [116276] = 26, + [109910] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1131), 1, + ACTIONS(1101), 1, anon_sym_LPAREN, - ACTIONS(1141), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, + ACTIONS(1139), 1, sym__brace_start, ACTIONS(1187), 1, sym_word, @@ -176794,20 +172022,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(1195), 1, anon_sym_TILDE, + ACTIONS(1197), 1, + sym__special_character, ACTIONS(1201), 1, sym_test_operator, - ACTIONS(3060), 1, + ACTIONS(3119), 1, anon_sym_BQUOTE, - ACTIONS(5779), 1, - sym__special_character, - STATE(2717), 1, + STATE(2548), 1, aux_sym__literal_repeat1, - STATE(3001), 1, + STATE(3029), 1, sym__expression, - ACTIONS(1129), 2, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1191), 2, @@ -176819,14 +172047,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1199), 2, sym_raw_string, sym_ansi_c_string, - STATE(2594), 6, + STATE(2674), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2503), 9, + STATE(2567), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -176836,7 +172064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [116373] = 26, + [110007] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(107), 1, @@ -176859,21 +172087,21 @@ static const uint16_t ts_small_parse_table[] = { sym_test_operator, ACTIONS(284), 1, sym__brace_start, - ACTIONS(1075), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1079), 1, + ACTIONS(1159), 1, sym__special_character, - ACTIONS(1081), 1, + ACTIONS(1161), 1, anon_sym_DQUOTE, - ACTIONS(1085), 1, + ACTIONS(1165), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1087), 1, + ACTIONS(1167), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(3598), 1, anon_sym_BQUOTE, - STATE(2690), 1, + STATE(2623), 1, aux_sym__literal_repeat1, - STATE(3083), 1, + STATE(3057), 1, sym__expression, ACTIONS(103), 2, anon_sym_PLUS_PLUS2, @@ -176881,95 +172109,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1073), 2, + ACTIONS(1153), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1083), 2, + ACTIONS(1163), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1089), 2, + ACTIONS(1169), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3053), 6, + STATE(2976), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2500), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [116470] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(363), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, - anon_sym_DOLLAR, - ACTIONS(371), 1, - anon_sym_DQUOTE, - ACTIONS(375), 1, - aux_sym_number_token1, - ACTIONS(377), 1, - aux_sym_number_token2, - ACTIONS(379), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, - sym__brace_start, - ACTIONS(1093), 1, - anon_sym_LPAREN, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1103), 1, - anon_sym_TILDE, - ACTIONS(5809), 1, - anon_sym_BQUOTE, - ACTIONS(5916), 1, - sym__special_character, - ACTIONS(6403), 1, - sym_word, - ACTIONS(6407), 1, - sym_test_operator, - STATE(2547), 1, - aux_sym__literal_repeat1, - STATE(3397), 1, - sym__expression, - ACTIONS(352), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1099), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1101), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6405), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2594), 2, - sym_ternary_expression, - sym_postfix_expression, - STATE(2815), 4, - sym_binary_expression, - sym_unary_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2546), 9, + STATE(2498), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -176979,7 +172135,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [116569] = 26, + [110104] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(107), 1, @@ -177002,21 +172158,21 @@ static const uint16_t ts_small_parse_table[] = { sym_test_operator, ACTIONS(284), 1, sym__brace_start, - ACTIONS(1075), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1079), 1, + ACTIONS(1159), 1, sym__special_character, - ACTIONS(1081), 1, + ACTIONS(1161), 1, anon_sym_DQUOTE, - ACTIONS(1085), 1, + ACTIONS(1165), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1087), 1, + ACTIONS(1167), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(3598), 1, anon_sym_BQUOTE, - STATE(2690), 1, + STATE(2623), 1, aux_sym__literal_repeat1, - STATE(3081), 1, + STATE(3058), 1, sym__expression, ACTIONS(103), 2, anon_sym_PLUS_PLUS2, @@ -177024,23 +172180,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1073), 2, + ACTIONS(1153), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1083), 2, + ACTIONS(1163), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1089), 2, + ACTIONS(1169), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3053), 6, + STATE(2976), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2500), 9, + STATE(2498), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -177050,211 +172206,264 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [116666] = 26, + [110201] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, - sym_word, - ACTIONS(248), 1, - anon_sym_LPAREN, - ACTIONS(250), 1, - anon_sym_BANG, - ACTIONS(258), 1, + STATE(2231), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6133), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4504), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(264), 1, aux_sym_number_token1, - ACTIONS(266), 1, aux_sym_number_token2, - ACTIONS(270), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(4506), 25, + sym_file_descriptor, sym_test_operator, - ACTIONS(284), 1, + sym__bare_dollar, sym__brace_start, - ACTIONS(1075), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1079), 1, sym__special_character, - ACTIONS(1081), 1, anon_sym_DQUOTE, - ACTIONS(1085), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1087), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [110256] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2236), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6133), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4521), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - STATE(2690), 1, - aux_sym__literal_repeat1, - STATE(3142), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1073), 2, + sym_word, + ACTIONS(4523), 25, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1083), 2, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(1089), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3053), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2500), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [116763] = 27, - ACTIONS(71), 1, + [110311] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(1274), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1272), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, anon_sym_DOLLAR, - ACTIONS(371), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(375), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(377), 1, aux_sym_number_token2, - ACTIONS(379), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, - sym__brace_start, - ACTIONS(1093), 1, - anon_sym_LPAREN, - ACTIONS(1095), 1, - anon_sym_BANG, - ACTIONS(1103), 1, - anon_sym_TILDE, - ACTIONS(5809), 1, anon_sym_BQUOTE, - ACTIONS(5916), 1, - sym__special_character, - ACTIONS(6409), 1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(6413), 1, + [110362] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, - STATE(2552), 1, - aux_sym__literal_repeat1, - STATE(3397), 1, - sym__expression, - ACTIONS(352), 2, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1320), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1099), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1101), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6411), 2, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2594), 2, - sym_ternary_expression, - sym_postfix_expression, - STATE(2808), 4, - sym_binary_expression, - sym_unary_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2549), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [116862] = 26, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [110413] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, - sym_word, - ACTIONS(248), 1, + ACTIONS(1101), 1, anon_sym_LPAREN, - ACTIONS(250), 1, - anon_sym_BANG, - ACTIONS(258), 1, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(264), 1, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(266), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(270), 1, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym_test_operator, - ACTIONS(284), 1, + ACTIONS(1133), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, sym__brace_start, - ACTIONS(1075), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1079), 1, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1173), 1, + anon_sym_BANG, + ACTIONS(1179), 1, + anon_sym_TILDE, + ACTIONS(1181), 1, sym__special_character, - ACTIONS(1081), 1, - anon_sym_DQUOTE, - ACTIONS(1085), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1087), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, + ACTIONS(1185), 1, + sym_test_operator, + ACTIONS(3119), 1, anon_sym_BQUOTE, - STATE(2690), 1, + STATE(2548), 1, aux_sym__literal_repeat1, - STATE(3079), 1, + STATE(3154), 1, sym__expression, - ACTIONS(103), 2, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1175), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(105), 2, + ACTIONS(1177), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1073), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1083), 2, + ACTIONS(1183), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1089), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3053), 6, + STATE(2674), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2500), 9, + STATE(2530), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -177264,68 +172473,68 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [116959] = 26, + [110510] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, - sym_word, - ACTIONS(248), 1, + ACTIONS(1101), 1, anon_sym_LPAREN, - ACTIONS(250), 1, - anon_sym_BANG, - ACTIONS(258), 1, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(264), 1, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(266), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(270), 1, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym_test_operator, - ACTIONS(284), 1, + ACTIONS(1133), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, sym__brace_start, - ACTIONS(1075), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1079), 1, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1173), 1, + anon_sym_BANG, + ACTIONS(1179), 1, + anon_sym_TILDE, + ACTIONS(1181), 1, sym__special_character, - ACTIONS(1081), 1, - anon_sym_DQUOTE, - ACTIONS(1085), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1087), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, + ACTIONS(1185), 1, + sym_test_operator, + ACTIONS(3119), 1, anon_sym_BQUOTE, - STATE(2690), 1, + STATE(2548), 1, aux_sym__literal_repeat1, - STATE(3078), 1, + STATE(3155), 1, sym__expression, - ACTIONS(103), 2, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1175), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(105), 2, + ACTIONS(1177), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1073), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1083), 2, + ACTIONS(1183), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1089), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3053), 6, + STATE(2674), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2500), 9, + STATE(2530), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -177335,16 +172544,16 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [117056] = 3, + [110607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5772), 5, + ACTIONS(1274), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5770), 38, + ACTIONS(1272), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -177383,68 +172592,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [117107] = 26, + [110658] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1131), 1, + ACTIONS(1101), 1, anon_sym_LPAREN, - ACTIONS(1141), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, + ACTIONS(1139), 1, sym__brace_start, - ACTIONS(1187), 1, + ACTIONS(1171), 1, sym_word, - ACTIONS(1189), 1, + ACTIONS(1173), 1, anon_sym_BANG, - ACTIONS(1195), 1, + ACTIONS(1179), 1, anon_sym_TILDE, - ACTIONS(1201), 1, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, sym_test_operator, - ACTIONS(3060), 1, + ACTIONS(3119), 1, anon_sym_BQUOTE, - ACTIONS(5779), 1, - sym__special_character, - STATE(2717), 1, + STATE(2548), 1, aux_sym__literal_repeat1, - STATE(3000), 1, + STATE(3157), 1, sym__expression, - ACTIONS(1129), 2, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1191), 2, + ACTIONS(1175), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1193), 2, + ACTIONS(1177), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1199), 2, + ACTIONS(1183), 2, sym_raw_string, sym_ansi_c_string, - STATE(2594), 6, + STATE(2674), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2503), 9, + STATE(2530), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -177454,68 +172663,68 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [117204] = 26, + [110755] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, - sym_word, - ACTIONS(248), 1, + ACTIONS(1101), 1, anon_sym_LPAREN, - ACTIONS(250), 1, - anon_sym_BANG, - ACTIONS(258), 1, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(264), 1, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(266), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(270), 1, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym_test_operator, - ACTIONS(284), 1, + ACTIONS(1133), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, sym__brace_start, - ACTIONS(1075), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1079), 1, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1173), 1, + anon_sym_BANG, + ACTIONS(1179), 1, + anon_sym_TILDE, + ACTIONS(1181), 1, sym__special_character, - ACTIONS(1081), 1, - anon_sym_DQUOTE, - ACTIONS(1085), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1087), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, + ACTIONS(1185), 1, + sym_test_operator, + ACTIONS(3119), 1, anon_sym_BQUOTE, - STATE(2690), 1, + STATE(2548), 1, aux_sym__literal_repeat1, - STATE(3077), 1, + STATE(3158), 1, sym__expression, - ACTIONS(103), 2, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1175), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(105), 2, + ACTIONS(1177), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1073), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1083), 2, + ACTIONS(1183), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1089), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3053), 6, + STATE(2674), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2500), 9, + STATE(2530), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -177525,68 +172734,68 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [117301] = 26, + [110852] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1131), 1, + ACTIONS(1101), 1, anon_sym_LPAREN, - ACTIONS(1141), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, + ACTIONS(1139), 1, sym__brace_start, - ACTIONS(1187), 1, + ACTIONS(1171), 1, sym_word, - ACTIONS(1189), 1, + ACTIONS(1173), 1, anon_sym_BANG, - ACTIONS(1195), 1, + ACTIONS(1179), 1, anon_sym_TILDE, - ACTIONS(1201), 1, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, sym_test_operator, - ACTIONS(3060), 1, + ACTIONS(3119), 1, anon_sym_BQUOTE, - ACTIONS(5779), 1, - sym__special_character, - STATE(2717), 1, + STATE(2548), 1, aux_sym__literal_repeat1, - STATE(3034), 1, + STATE(3159), 1, sym__expression, - ACTIONS(1129), 2, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1191), 2, + ACTIONS(1175), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1193), 2, + ACTIONS(1177), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1199), 2, + ACTIONS(1183), 2, sym_raw_string, sym_ansi_c_string, - STATE(2594), 6, + STATE(2674), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2503), 9, + STATE(2530), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -177596,69 +172805,68 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [117398] = 27, + [110949] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(371), 1, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(375), 1, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(377), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(379), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, + ACTIONS(1139), 1, sym__brace_start, - ACTIONS(1093), 1, - anon_sym_LPAREN, - ACTIONS(1095), 1, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1173), 1, anon_sym_BANG, - ACTIONS(1103), 1, + ACTIONS(1179), 1, anon_sym_TILDE, - ACTIONS(5809), 1, - anon_sym_BQUOTE, - ACTIONS(5916), 1, + ACTIONS(1181), 1, sym__special_character, - ACTIONS(6415), 1, - sym_word, - ACTIONS(6419), 1, + ACTIONS(1185), 1, sym_test_operator, - STATE(2463), 1, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + STATE(2548), 1, aux_sym__literal_repeat1, - STATE(3397), 1, + STATE(3160), 1, sym__expression, - ACTIONS(352), 2, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1099), 2, + ACTIONS(1175), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1101), 2, + ACTIONS(1177), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(6417), 2, + ACTIONS(1183), 2, sym_raw_string, sym_ansi_c_string, - STATE(2594), 2, - sym_ternary_expression, - sym_postfix_expression, - STATE(2851), 4, + STATE(2674), 6, sym_binary_expression, + sym_ternary_expression, sym_unary_expression, + sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2455), 9, + STATE(2530), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -177668,68 +172876,68 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [117497] = 26, + [111046] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1131), 1, + ACTIONS(1101), 1, anon_sym_LPAREN, - ACTIONS(1141), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, + ACTIONS(1139), 1, sym__brace_start, - ACTIONS(1187), 1, + ACTIONS(1171), 1, sym_word, - ACTIONS(1189), 1, + ACTIONS(1173), 1, anon_sym_BANG, - ACTIONS(1195), 1, + ACTIONS(1179), 1, anon_sym_TILDE, - ACTIONS(1201), 1, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, sym_test_operator, - ACTIONS(3060), 1, + ACTIONS(3119), 1, anon_sym_BQUOTE, - ACTIONS(5779), 1, - sym__special_character, - STATE(2717), 1, + STATE(2548), 1, aux_sym__literal_repeat1, - STATE(2996), 1, + STATE(2955), 1, sym__expression, - ACTIONS(1129), 2, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1191), 2, + ACTIONS(1175), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1193), 2, + ACTIONS(1177), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1199), 2, + ACTIONS(1183), 2, sym_raw_string, sym_ansi_c_string, - STATE(2594), 6, + STATE(2674), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2503), 9, + STATE(2530), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -177739,68 +172947,90 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [117594] = 3, - ACTIONS(3), 1, + [111143] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5768), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5766), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1119), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1173), 1, + anon_sym_BANG, + ACTIONS(1179), 1, + anon_sym_TILDE, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, + sym_test_operator, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(2979), 1, + sym__expression, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [117645] = 5, + ACTIONS(1175), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1183), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2530), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [111240] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6421), 1, + ACTIONS(6406), 1, sym__special_character, - STATE(2254), 1, + STATE(2171), 1, aux_sym__literal_repeat1, - ACTIONS(1364), 5, + ACTIONS(1362), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 36, + ACTIONS(1360), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -177811,6 +173041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -177837,30 +173068,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [117700] = 8, + [111295] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, + ACTIONS(5856), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5858), 1, sym_file_descriptor, - ACTIONS(6424), 1, - anon_sym_RPAREN, - ACTIONS(5831), 3, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ACTIONS(5851), 10, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, anon_sym_LT_LT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -177872,7 +173102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(5849), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -177890,7 +173120,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [117761] = 26, + [111354] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1097), 1, + sym_word, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1103), 1, + anon_sym_BANG, + ACTIONS(1109), 1, + anon_sym_TILDE, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DOLLAR, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, + aux_sym_number_token1, + ACTIONS(1125), 1, + aux_sym_number_token2, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1133), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1137), 1, + sym_test_operator, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + ACTIONS(5905), 1, + sym__special_character, + STATE(2593), 1, + aux_sym__literal_repeat1, + STATE(3074), 1, + sym__expression, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1105), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1107), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1121), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2554), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [111451] = 26, ACTIONS(71), 1, sym_comment, ACTIONS(107), 1, @@ -177913,21 +173214,21 @@ static const uint16_t ts_small_parse_table[] = { sym_test_operator, ACTIONS(284), 1, sym__brace_start, - ACTIONS(1075), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1079), 1, + ACTIONS(1159), 1, sym__special_character, - ACTIONS(1081), 1, + ACTIONS(1161), 1, anon_sym_DQUOTE, - ACTIONS(1085), 1, + ACTIONS(1165), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1087), 1, + ACTIONS(1167), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(3598), 1, anon_sym_BQUOTE, - STATE(2690), 1, + STATE(2623), 1, aux_sym__literal_repeat1, - STATE(3095), 1, + STATE(3041), 1, sym__expression, ACTIONS(103), 2, anon_sym_PLUS_PLUS2, @@ -177935,23 +173236,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1073), 2, + ACTIONS(1153), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1083), 2, + ACTIONS(1163), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1089), 2, + ACTIONS(1169), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3053), 6, + STATE(2976), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2500), 9, + STATE(2498), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -177961,29 +173262,32 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [117858] = 3, + [111548] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 6, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, sym_file_descriptor, - sym__concat, + ACTIONS(5861), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 37, - anon_sym_LPAREN_LPAREN, + ACTIONS(5851), 10, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -177991,10 +173295,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -178009,68 +173314,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [117909] = 26, + [111607] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1131), 1, + ACTIONS(1101), 1, anon_sym_LPAREN, - ACTIONS(1141), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, + ACTIONS(1139), 1, sym__brace_start, - ACTIONS(1187), 1, + ACTIONS(1171), 1, sym_word, - ACTIONS(1189), 1, + ACTIONS(1173), 1, anon_sym_BANG, - ACTIONS(1195), 1, + ACTIONS(1179), 1, anon_sym_TILDE, - ACTIONS(1201), 1, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, sym_test_operator, - ACTIONS(3060), 1, + ACTIONS(3119), 1, anon_sym_BQUOTE, - ACTIONS(5779), 1, - sym__special_character, - STATE(2717), 1, + STATE(2548), 1, aux_sym__literal_repeat1, - STATE(2994), 1, + STATE(2984), 1, sym__expression, - ACTIONS(1129), 2, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1191), 2, + ACTIONS(1175), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1193), 2, + ACTIONS(1177), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1199), 2, + ACTIONS(1183), 2, sym_raw_string, sym_ansi_c_string, - STATE(2594), 6, + STATE(2674), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2503), 9, + STATE(2530), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -178080,169 +173385,352 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [118006] = 8, - ACTIONS(3), 1, + [111704] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, - sym_file_descriptor, - ACTIONS(6427), 1, - anon_sym_RPAREN, - ACTIONS(5831), 3, - sym_variable_name, + ACTIONS(1097), 1, + sym_word, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1103), 1, + anon_sym_BANG, + ACTIONS(1109), 1, + anon_sym_TILDE, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DOLLAR, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, + aux_sym_number_token1, + ACTIONS(1125), 1, + aux_sym_number_token2, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1133), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1137), 1, sym_test_operator, + ACTIONS(1139), 1, sym__brace_start, - ACTIONS(5821), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + ACTIONS(5905), 1, + sym__special_character, + STATE(2593), 1, + aux_sym__literal_repeat1, + STATE(3079), 1, + sym__expression, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1105), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1107), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1121), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2554), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [111801] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1097), 1, + sym_word, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1103), 1, + anon_sym_BANG, + ACTIONS(1109), 1, + anon_sym_TILDE, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1119), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [118067] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1294), 5, - sym_file_descriptor, - sym__concat, + ACTIONS(1137), 1, sym_test_operator, + ACTIONS(1139), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 38, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + ACTIONS(5905), 1, + sym__special_character, + STATE(2593), 1, + aux_sym__literal_repeat1, + STATE(3080), 1, + sym__expression, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1105), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1107), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1121), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2554), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [111898] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1115), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1119), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1173), 1, + anon_sym_BANG, + ACTIONS(1179), 1, + anon_sym_TILDE, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, + sym_test_operator, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(2989), 1, + sym__expression, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [118118] = 26, + ACTIONS(1175), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1183), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2530), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [111995] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, + ACTIONS(1097), 1, sym_word, - ACTIONS(248), 1, + ACTIONS(1101), 1, anon_sym_LPAREN, - ACTIONS(250), 1, + ACTIONS(1103), 1, anon_sym_BANG, - ACTIONS(258), 1, + ACTIONS(1109), 1, + anon_sym_TILDE, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(264), 1, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(266), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(270), 1, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + ACTIONS(1133), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1137), 1, sym_test_operator, - ACTIONS(284), 1, + ACTIONS(1139), 1, sym__brace_start, - ACTIONS(1075), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1079), 1, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + ACTIONS(5905), 1, sym__special_character, - ACTIONS(1081), 1, + STATE(2593), 1, + aux_sym__literal_repeat1, + STATE(3081), 1, + sym__expression, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1105), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1107), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1121), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2554), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [112092] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1097), 1, + sym_word, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1103), 1, + anon_sym_BANG, + ACTIONS(1109), 1, + anon_sym_TILDE, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DOLLAR, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(1085), 1, + ACTIONS(1123), 1, + aux_sym_number_token1, + ACTIONS(1125), 1, + aux_sym_number_token2, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1087), 1, + ACTIONS(1129), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, + ACTIONS(1137), 1, + sym_test_operator, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(3119), 1, anon_sym_BQUOTE, - STATE(2690), 1, + ACTIONS(5905), 1, + sym__special_character, + STATE(2593), 1, aux_sym__literal_repeat1, - STATE(3042), 1, + STATE(3082), 1, sym__expression, - ACTIONS(103), 2, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1105), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(105), 2, + ACTIONS(1107), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1073), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1083), 2, + ACTIONS(1121), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1089), 2, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3053), 6, + STATE(2674), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2500), 9, + STATE(2554), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -178252,275 +173740,423 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [118215] = 8, - ACTIONS(3), 1, + [112189] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, - sym_file_descriptor, - ACTIONS(6430), 1, - anon_sym_RPAREN, - ACTIONS(5831), 3, - sym_variable_name, + ACTIONS(1097), 1, + sym_word, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1103), 1, + anon_sym_BANG, + ACTIONS(1109), 1, + anon_sym_TILDE, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DOLLAR, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, + aux_sym_number_token1, + ACTIONS(1125), 1, + aux_sym_number_token2, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1133), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1137), 1, sym_test_operator, + ACTIONS(1139), 1, sym__brace_start, - ACTIONS(5821), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + ACTIONS(5905), 1, + sym__special_character, + STATE(2593), 1, + aux_sym__literal_repeat1, + STATE(3083), 1, + sym__expression, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1105), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1107), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1121), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2554), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [112286] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1097), 1, + sym_word, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1103), 1, + anon_sym_BANG, + ACTIONS(1109), 1, + anon_sym_TILDE, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1119), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [118276] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1334), 5, - sym_file_descriptor, - sym__concat, + ACTIONS(1137), 1, sym_test_operator, + ACTIONS(1139), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 38, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + ACTIONS(5905), 1, + sym__special_character, + STATE(2593), 1, + aux_sym__literal_repeat1, + STATE(3084), 1, + sym__expression, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1105), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1107), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1121), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2554), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [112383] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1097), 1, + sym_word, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1103), 1, + anon_sym_BANG, + ACTIONS(1109), 1, + anon_sym_TILDE, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1115), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1119), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [118327] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, - sym_file_descriptor, - ACTIONS(6433), 1, - anon_sym_RPAREN, - ACTIONS(5831), 3, - sym_variable_name, + ACTIONS(1137), 1, sym_test_operator, + ACTIONS(1139), 1, sym__brace_start, - ACTIONS(5821), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + ACTIONS(5905), 1, + sym__special_character, + STATE(2593), 1, + aux_sym__literal_repeat1, + STATE(3088), 1, + sym__expression, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1105), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1107), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1121), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2554), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [112480] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1097), 1, + sym_word, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1103), 1, + anon_sym_BANG, + ACTIONS(1109), 1, + anon_sym_TILDE, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1119), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [118388] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, - sym_file_descriptor, - ACTIONS(6436), 1, - anon_sym_RPAREN, - ACTIONS(5831), 3, - sym_variable_name, + ACTIONS(1137), 1, sym_test_operator, + ACTIONS(1139), 1, sym__brace_start, - ACTIONS(5821), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5819), 17, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + ACTIONS(5905), 1, + sym__special_character, + STATE(2593), 1, + aux_sym__literal_repeat1, + STATE(3089), 1, + sym__expression, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1105), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1107), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1121), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2554), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [112577] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1119), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1173), 1, + anon_sym_BANG, + ACTIONS(1179), 1, + anon_sym_TILDE, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, + sym_test_operator, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(3004), 1, + sym__expression, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [118449] = 26, + ACTIONS(1175), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1183), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2530), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [112674] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1127), 1, + ACTIONS(1097), 1, sym_word, - ACTIONS(1131), 1, + ACTIONS(1101), 1, anon_sym_LPAREN, - ACTIONS(1133), 1, + ACTIONS(1103), 1, anon_sym_BANG, - ACTIONS(1139), 1, + ACTIONS(1109), 1, anon_sym_TILDE, - ACTIONS(1141), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1147), 1, - sym__special_character, - ACTIONS(1149), 1, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, + ACTIONS(1137), 1, sym_test_operator, - ACTIONS(1169), 1, + ACTIONS(1139), 1, sym__brace_start, - ACTIONS(3060), 1, + ACTIONS(3119), 1, anon_sym_BQUOTE, - STATE(2484), 1, + ACTIONS(5905), 1, + sym__special_character, + STATE(2593), 1, aux_sym__literal_repeat1, - STATE(3143), 1, + STATE(3090), 1, sym__expression, - ACTIONS(1129), 2, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + ACTIONS(1105), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1137), 2, + ACTIONS(1107), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1151), 2, + ACTIONS(1121), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1165), 2, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2594), 6, + STATE(2674), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2573), 9, + STATE(2554), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -178530,68 +174166,68 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [118546] = 26, + [112771] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1127), 1, + ACTIONS(1097), 1, sym_word, - ACTIONS(1131), 1, + ACTIONS(1101), 1, anon_sym_LPAREN, - ACTIONS(1133), 1, + ACTIONS(1103), 1, anon_sym_BANG, - ACTIONS(1139), 1, + ACTIONS(1109), 1, anon_sym_TILDE, - ACTIONS(1141), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1147), 1, - sym__special_character, - ACTIONS(1149), 1, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1167), 1, + ACTIONS(1137), 1, sym_test_operator, - ACTIONS(1169), 1, + ACTIONS(1139), 1, sym__brace_start, - ACTIONS(3060), 1, + ACTIONS(3119), 1, anon_sym_BQUOTE, - STATE(2484), 1, + ACTIONS(5905), 1, + sym__special_character, + STATE(2593), 1, aux_sym__literal_repeat1, - STATE(3104), 1, + STATE(3091), 1, sym__expression, - ACTIONS(1129), 2, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + ACTIONS(1105), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1137), 2, + ACTIONS(1107), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1151), 2, + ACTIONS(1121), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1165), 2, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2594), 6, + STATE(2674), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2573), 9, + STATE(2554), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -178601,84 +174237,223 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [118643] = 3, + [112868] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1316), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1097), 1, + sym_word, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1103), 1, + anon_sym_BANG, + ACTIONS(1109), 1, + anon_sym_TILDE, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DOLLAR, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1133), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1137), 1, + sym_test_operator, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(3119), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1318), 27, + ACTIONS(5905), 1, + sym__special_character, + STATE(2593), 1, + aux_sym__literal_repeat1, + STATE(3092), 1, + sym__expression, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1105), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1107), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1121), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2554), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [112965] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 6, sym_file_descriptor, sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1324), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118693] = 3, + sym_word, + [113016] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1332), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DOLLAR, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1133), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1187), 1, sym_word, - ACTIONS(1334), 27, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, + sym__special_character, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(3015), 1, + sym__expression, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1199), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2567), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [113113] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2173), 6, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2171), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -178686,28 +174461,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118743] = 5, + sym_word, + [113164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6439), 1, - sym__special_character, - STATE(2311), 1, - aux_sym__literal_repeat1, - ACTIONS(5395), 4, + ACTIONS(5873), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5393), 36, + ACTIONS(5871), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -178718,7 +174496,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -178732,6 +174509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -178743,42 +174521,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [118797] = 5, - ACTIONS(71), 1, + [113215] = 3, + ACTIONS(3), 1, sym_comment, - STATE(2293), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6441), 2, + ACTIONS(1330), 6, + sym_file_descriptor, sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5389), 14, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1328), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(5391), 25, + [113266] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4595), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4593), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -178786,38 +174605,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118851] = 7, + sym_word, + [113317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(4513), 6, sym_file_descriptor, - ACTIONS(5831), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4511), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 12, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -178825,10 +174649,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - ACTIONS(5819), 16, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -178840,35 +174662,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [118909] = 7, + [113368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5826), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5828), 1, + ACTIONS(5890), 6, sym_file_descriptor, - ACTIONS(5831), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5821), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5888), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5823), 12, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -178876,10 +174697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - ACTIONS(5819), 16, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -178891,232 +174709,94 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [118967] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1320), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1322), 28, - sym__concat, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [119017] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1352), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1354), 28, - sym__concat, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [119067] = 3, - ACTIONS(71), 1, + [113419] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1330), 28, - sym__concat, + ACTIONS(5890), 6, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5888), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [119117] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1336), 14, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1338), 28, - sym__concat, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [119167] = 5, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [113470] = 5, ACTIONS(71), 1, sym_comment, - STATE(2293), 1, + STATE(2231), 1, aux_sym_concatenation_repeat1, - ACTIONS(6441), 2, + ACTIONS(6133), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4552), 14, + ACTIONS(4500), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(4554), 25, + ACTIONS(4502), 25, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -179125,6 +174805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -179132,35 +174813,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119221] = 6, - ACTIONS(3), 1, + [113525] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(5638), 1, - aux_sym_concatenation_token1, - ACTIONS(5640), 1, - sym__concat, - STATE(2297), 1, + STATE(2236), 1, aux_sym_concatenation_repeat1, - ACTIONS(5375), 5, + ACTIONS(6133), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4517), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(4519), 25, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5373), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -179168,30 +174855,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [119277] = 3, + [113580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 5, + ACTIONS(5175), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 37, + ACTIONS(5173), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -179212,6 +174894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -179227,34 +174910,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [119327] = 5, - ACTIONS(3), 1, + [113631] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(6443), 1, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, + sym_word, + ACTIONS(248), 1, + anon_sym_LPAREN, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(258), 1, + anon_sym_DOLLAR, + ACTIONS(264), 1, + aux_sym_number_token1, + ACTIONS(266), 1, + aux_sym_number_token2, + ACTIONS(270), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(282), 1, + sym_test_operator, + ACTIONS(284), 1, + sym__brace_start, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1159), 1, sym__special_character, - STATE(2316), 1, + ACTIONS(1161), 1, + anon_sym_DQUOTE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + STATE(2623), 1, aux_sym__literal_repeat1, - ACTIONS(5395), 5, + STATE(2951), 1, + sym__expression, + ACTIONS(103), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(105), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1153), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1163), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1169), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2976), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2498), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [113728] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5858), 1, sym_file_descriptor, - sym_test_operator, - sym__brace_start, + ACTIONS(5856), 2, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5393), 35, - anon_sym_LPAREN_LPAREN, + ACTIONS(5861), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -179262,10 +175015,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -179278,31 +175034,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [119381] = 6, + [113787] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5638), 1, - aux_sym_concatenation_token1, - ACTIONS(5640), 1, - sym__concat, - STATE(2290), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5069), 5, + ACTIONS(5858), 1, sym_file_descriptor, + ACTIONS(5856), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5067), 34, - anon_sym_LPAREN_LPAREN, + ACTIONS(5851), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -179310,8 +175067,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(5849), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -179328,30 +175086,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [119437] = 6, + [113846] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5638), 1, - aux_sym_concatenation_token1, - ACTIONS(5640), 1, - sym__concat, - STATE(2297), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4554), 5, + ACTIONS(6409), 1, + sym__special_character, + STATE(2205), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 34, + ACTIONS(1360), 36, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -179365,7 +175124,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -179378,116 +175136,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [119493] = 5, - ACTIONS(71), 1, + [113901] = 3, + ACTIONS(3), 1, sym_comment, - STATE(2285), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6441), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4564), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(4566), 25, + ACTIONS(1334), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1332), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [119547] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6441), 1, - aux_sym_concatenation_token1, - ACTIONS(6445), 1, - sym__concat, - STATE(2296), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1265), 14, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1267), 25, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119603] = 5, + sym_word, + [113952] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5932), 2, + ACTIONS(5929), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4261), 3, + ACTIONS(4318), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4247), 17, + ACTIONS(4304), 18, anon_sym_LPAREN_LPAREN, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -179501,11 +175208,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - ACTIONS(5930), 20, + ACTIONS(5927), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -179515,6 +175223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -179525,16 +175234,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [119657] = 3, + [114007] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 15, + ACTIONS(1356), 16, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_LPAREN, anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, @@ -179545,7 +175254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1310), 27, + ACTIONS(1358), 27, sym_file_descriptor, sym__concat, sym_test_operator, @@ -179573,65 +175282,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119707] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5638), 1, - aux_sym_concatenation_token1, - ACTIONS(5640), 1, - sym__concat, - STATE(2290), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4566), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [119763] = 3, + [114058] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 15, + ACTIONS(1344), 16, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_LPAREN, anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, @@ -179642,7 +175302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1294), 27, + ACTIONS(1346), 27, sym_file_descriptor, sym__concat, sym_test_operator, @@ -179670,212 +175330,300 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119813] = 6, - ACTIONS(3), 1, + [114109] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5638), 1, - aux_sym_concatenation_token1, - ACTIONS(6447), 1, - sym__concat, - STATE(1363), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1097), 1, + sym_word, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1103), 1, + anon_sym_BANG, + ACTIONS(1109), 1, + anon_sym_TILDE, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1119), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [119869] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5638), 1, - aux_sym_concatenation_token1, - ACTIONS(5640), 1, - sym__concat, - STATE(2297), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2074), 5, - sym_file_descriptor, - sym_variable_name, + ACTIONS(1137), 1, sym_test_operator, + ACTIONS(1139), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(2072), 34, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + ACTIONS(5905), 1, + sym__special_character, + STATE(2593), 1, + aux_sym__literal_repeat1, + STATE(3105), 1, + sym__expression, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1105), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1107), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1121), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2554), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [114206] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1097), 1, + sym_word, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1103), 1, + anon_sym_BANG, + ACTIONS(1109), 1, + anon_sym_TILDE, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1119), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1137), 1, + sym_test_operator, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + ACTIONS(5905), 1, + sym__special_character, + STATE(2593), 1, + aux_sym__literal_repeat1, + STATE(2685), 1, + sym__expression, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1105), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1107), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1121), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [119925] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1316), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1318), 28, - sym__concat, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [119975] = 6, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2554), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [114303] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(6441), 1, - aux_sym_concatenation_token1, - ACTIONS(6449), 1, - sym__concat, - STATE(2296), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1286), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1097), 1, + sym_word, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1103), 1, + anon_sym_BANG, + ACTIONS(1109), 1, + anon_sym_TILDE, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1288), 25, - sym_file_descriptor, - sym_variable_name, + ACTIONS(1133), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1137), 1, sym_test_operator, + ACTIONS(1139), 1, sym__brace_start, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + ACTIONS(5905), 1, + sym__special_character, + STATE(2593), 1, + aux_sym__literal_repeat1, + STATE(3139), 1, + sym__expression, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, + ACTIONS(1105), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1107), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1121), 2, sym_raw_string, sym_ansi_c_string, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2554), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [114400] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DOLLAR, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, + aux_sym_number_token1, + ACTIONS(1125), 1, + aux_sym_number_token2, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1171), 1, + sym_word, + ACTIONS(1173), 1, + anon_sym_BANG, + ACTIONS(1179), 1, + anon_sym_TILDE, + ACTIONS(1181), 1, + sym__special_character, + ACTIONS(1185), 1, + sym_test_operator, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(3144), 1, + sym__expression, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120031] = 3, + ACTIONS(1175), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1177), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1183), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2530), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [114497] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 15, + ACTIONS(1356), 16, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_LPAREN, anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, @@ -179886,7 +175634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1302), 27, + ACTIONS(1358), 27, sym_file_descriptor, sym__concat, sym_test_operator, @@ -179914,301 +175662,1109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120081] = 3, + [114548] = 27, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(299), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(303), 1, anon_sym_DOLLAR, + ACTIONS(307), 1, + anon_sym_DQUOTE, + ACTIONS(311), 1, aux_sym_number_token1, + ACTIONS(313), 1, aux_sym_number_token2, + ACTIONS(315), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(321), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(327), 1, + sym__brace_start, + ACTIONS(1075), 1, + anon_sym_LPAREN, + ACTIONS(1077), 1, + anon_sym_BANG, + ACTIONS(1085), 1, + anon_sym_TILDE, + ACTIONS(5882), 1, + sym__special_character, + ACTIONS(5884), 1, anon_sym_BQUOTE, + ACTIONS(6412), 1, sym_word, - ACTIONS(1306), 27, + ACTIONS(6416), 1, + sym_test_operator, + STATE(2576), 1, + aux_sym__literal_repeat1, + STATE(3426), 1, + sym__expression, + ACTIONS(288), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(323), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1081), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1083), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6414), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2674), 2, + sym_ternary_expression, + sym_postfix_expression, + STATE(2922), 4, + sym_binary_expression, + sym_unary_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2564), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [114647] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1338), 6, sym_file_descriptor, sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1336), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120131] = 5, + sym_word, + [114698] = 26, ACTIONS(71), 1, sym_comment, - STATE(2296), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6451), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1251), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1253), 25, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, + ACTIONS(1133), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, sym__brace_start, + ACTIONS(1211), 1, + sym_word, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + anon_sym_TILDE, + ACTIONS(1221), 1, + sym__special_character, + ACTIONS(1225), 1, + sym_test_operator, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(3387), 1, + sym__expression, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1215), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1217), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1223), 2, sym_raw_string, sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2732), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [114795] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DOLLAR, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, + aux_sym_number_token1, + ACTIONS(1125), 1, + aux_sym_number_token2, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1211), 1, + sym_word, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + anon_sym_TILDE, + ACTIONS(1221), 1, + sym__special_character, + ACTIONS(1225), 1, + sym_test_operator, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(3388), 1, + sym__expression, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120185] = 6, - ACTIONS(3), 1, + ACTIONS(1215), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1217), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1223), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2732), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [114892] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5638), 1, - aux_sym_concatenation_token1, - ACTIONS(6454), 1, - sym__concat, - STATE(1363), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DOLLAR, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, + aux_sym_number_token1, + ACTIONS(1125), 1, + aux_sym_number_token2, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1133), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 34, + ACTIONS(1211), 1, + sym_word, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + anon_sym_TILDE, + ACTIONS(1221), 1, + sym__special_character, + ACTIONS(1225), 1, + sym_test_operator, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(3390), 1, + sym__expression, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1215), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1217), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1223), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2732), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [114989] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1119), 1, anon_sym_DQUOTE, + ACTIONS(1123), 1, + aux_sym_number_token1, + ACTIONS(1125), 1, + aux_sym_number_token2, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1133), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1211), 1, + sym_word, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + anon_sym_TILDE, + ACTIONS(1221), 1, + sym__special_character, + ACTIONS(1225), 1, + sym_test_operator, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(3391), 1, + sym__expression, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1215), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1217), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1223), 2, sym_raw_string, sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2732), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [115086] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DOLLAR, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1211), 1, + sym_word, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + anon_sym_TILDE, + ACTIONS(1221), 1, + sym__special_character, + ACTIONS(1225), 1, + sym_test_operator, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(3392), 1, + sym__expression, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [120241] = 5, + ACTIONS(1215), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1217), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1223), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2732), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [115183] = 26, ACTIONS(71), 1, sym_comment, - STATE(2285), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6441), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1261), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1133), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1211), 1, sym_word, - ACTIONS(1263), 25, - sym_file_descriptor, - sym_variable_name, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + anon_sym_TILDE, + ACTIONS(1221), 1, + sym__special_character, + ACTIONS(1225), 1, sym_test_operator, - sym__brace_start, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(3393), 1, + sym__expression, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1215), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1217), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1223), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2732), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [115280] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DOLLAR, + ACTIONS(1119), 1, anon_sym_DQUOTE, + ACTIONS(1123), 1, + aux_sym_number_token1, + ACTIONS(1125), 1, + aux_sym_number_token2, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1133), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1211), 1, + sym_word, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + anon_sym_TILDE, + ACTIONS(1221), 1, + sym__special_character, + ACTIONS(1225), 1, + sym_test_operator, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(3394), 1, + sym__expression, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1215), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1217), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1223), 2, sym_raw_string, sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2732), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [115377] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DOLLAR, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, + aux_sym_number_token1, + ACTIONS(1125), 1, + aux_sym_number_token2, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1211), 1, + sym_word, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + anon_sym_TILDE, + ACTIONS(1221), 1, + sym__special_character, + ACTIONS(1225), 1, + sym_test_operator, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(3396), 1, + sym__expression, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120295] = 3, + ACTIONS(1215), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1217), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1223), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2732), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [115474] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DOLLAR, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1133), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1211), 1, sym_word, - ACTIONS(1310), 27, - sym_file_descriptor, - sym__concat, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + anon_sym_TILDE, + ACTIONS(1221), 1, + sym__special_character, + ACTIONS(1225), 1, sym_test_operator, - sym__bare_dollar, - sym__brace_start, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(3397), 1, + sym__expression, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1215), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1217), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1223), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2732), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [115571] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, + ACTIONS(1115), 1, + anon_sym_DOLLAR, + ACTIONS(1119), 1, anon_sym_DQUOTE, + ACTIONS(1123), 1, + aux_sym_number_token1, + ACTIONS(1125), 1, + aux_sym_number_token2, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1133), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1211), 1, + sym_word, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + anon_sym_TILDE, + ACTIONS(1221), 1, + sym__special_character, + ACTIONS(1225), 1, + sym_test_operator, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(3398), 1, + sym__expression, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1215), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1217), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1223), 2, sym_raw_string, sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2732), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [115668] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DOLLAR, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, + aux_sym_number_token1, + ACTIONS(1125), 1, + aux_sym_number_token2, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1211), 1, + sym_word, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + anon_sym_TILDE, + ACTIONS(1221), 1, + sym__special_character, + ACTIONS(1225), 1, + sym_test_operator, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(3399), 1, + sym__expression, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120345] = 5, + ACTIONS(1215), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1217), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1223), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2732), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [115765] = 26, ACTIONS(71), 1, sym_comment, - STATE(2293), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6441), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2072), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1133), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1211), 1, sym_word, - ACTIONS(2074), 25, - sym_file_descriptor, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + anon_sym_TILDE, + ACTIONS(1221), 1, + sym__special_character, + ACTIONS(1225), 1, + sym_test_operator, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(3400), 1, + sym__expression, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1215), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1217), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1223), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2732), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [115862] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4318), 3, sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(5929), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4304), 18, anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + ACTIONS(5927), 19, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [115917] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DOLLAR, + ACTIONS(1119), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1123), 1, + aux_sym_number_token1, + ACTIONS(1125), 1, + aux_sym_number_token2, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1211), 1, + sym_word, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + anon_sym_TILDE, + ACTIONS(1221), 1, + sym__special_character, + ACTIONS(1225), 1, + sym_test_operator, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(3401), 1, + sym__expression, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120399] = 3, + ACTIONS(1215), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1217), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1223), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2732), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [116014] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 15, + ACTIONS(6133), 1, + aux_sym_concatenation_token1, + ACTIONS(6418), 1, + sym__concat, + STATE(2239), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1266), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -180224,9 +176780,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1298), 27, + ACTIONS(1268), 25, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, @@ -180243,7 +176798,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -180252,30 +176806,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120449] = 6, + [116071] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(299), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(303), 1, + anon_sym_DOLLAR, + ACTIONS(307), 1, + anon_sym_DQUOTE, + ACTIONS(311), 1, + aux_sym_number_token1, + ACTIONS(313), 1, + aux_sym_number_token2, + ACTIONS(315), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(317), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(321), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(327), 1, + sym__brace_start, + ACTIONS(1073), 1, + sym_word, + ACTIONS(1075), 1, + anon_sym_LPAREN, + ACTIONS(1077), 1, + anon_sym_BANG, + ACTIONS(1085), 1, + anon_sym_TILDE, + ACTIONS(1095), 1, + sym_test_operator, + ACTIONS(5882), 1, + sym__special_character, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + STATE(2503), 1, + aux_sym__literal_repeat1, + STATE(2809), 1, + sym__expression, + ACTIONS(288), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(323), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1081), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1083), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1091), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2884), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2556), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [116168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5638), 1, - aux_sym_concatenation_token1, - ACTIONS(5640), 1, - sym__concat, - STATE(2290), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 5, + ACTIONS(1342), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 34, + ACTIONS(1340), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -180285,9 +176908,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -180302,159 +176925,258 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [120505] = 5, - ACTIONS(71), 1, + [116219] = 5, + ACTIONS(3), 1, sym_comment, - STATE(2293), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6441), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2094), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, + ACTIONS(6420), 1, sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(2096), 25, + STATE(1973), 1, + aux_sym__literal_repeat1, + ACTIONS(5317), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5315), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120559] = 3, + sym_word, + [116274] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1344), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1346), 28, - sym__concat, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DOLLAR, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, + aux_sym_number_token1, + ACTIONS(1125), 1, + aux_sym_number_token2, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1133), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, + sym__special_character, + ACTIONS(1201), 1, sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(2685), 1, + sym__expression, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1199), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2567), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [116371] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6133), 1, + aux_sym_concatenation_token1, + ACTIONS(6422), 1, + sym__concat, + STATE(2239), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 15, + anon_sym_PIPE, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [120609] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 4, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1288), 25, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 38, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [116428] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DOLLAR, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, + sym__special_character, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(2966), 1, + sym__expression, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [120659] = 3, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1199), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2567), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [116525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 5, + ACTIONS(1274), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 37, + ACTIONS(1272), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -180465,7 +177187,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -180475,7 +177200,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -180492,87 +177216,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [120709] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1356), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1358), 28, - sym__concat, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [120759] = 5, + [116576] = 5, ACTIONS(71), 1, sym_comment, - STATE(2285), 1, + STATE(2239), 1, aux_sym_concatenation_repeat1, - ACTIONS(6441), 2, + ACTIONS(6424), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4467), 14, + ACTIONS(1276), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(4469), 25, + ACTIONS(1278), 25, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -180581,6 +177258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -180588,64 +177266,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120813] = 5, + [116631] = 26, ACTIONS(71), 1, sym_comment, - STATE(2285), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6441), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5393), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(107), 1, + anon_sym_TILDE, + ACTIONS(237), 1, + sym_word, + ACTIONS(248), 1, + anon_sym_LPAREN, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(258), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(264), 1, aux_sym_number_token1, + ACTIONS(266), 1, aux_sym_number_token2, + ACTIONS(270), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(5395), 25, - sym_file_descriptor, - sym_variable_name, + ACTIONS(282), 1, sym_test_operator, + ACTIONS(284), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1159), 1, + sym__special_character, + ACTIONS(1161), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1165), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1167), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + STATE(2623), 1, + aux_sym__literal_repeat1, + STATE(3059), 1, + sym__expression, + ACTIONS(103), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(105), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1153), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1163), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1169), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120867] = 3, + STATE(2976), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2498), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [116728] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 4, + ACTIONS(6427), 1, + sym__special_character, + STATE(1998), 1, + aux_sym__literal_repeat1, + ACTIONS(5509), 5, sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 38, + ACTIONS(5507), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -180656,7 +177361,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -180670,7 +177374,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -180684,261 +177387,384 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [120917] = 5, - ACTIONS(3), 1, + [116783] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(6456), 1, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DOLLAR, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, + aux_sym_number_token1, + ACTIONS(1125), 1, + aux_sym_number_token2, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1133), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1211), 1, + sym_word, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + anon_sym_TILDE, + ACTIONS(1221), 1, sym__special_character, - STATE(2311), 1, - aux_sym__literal_repeat1, - ACTIONS(1364), 4, - sym_file_descriptor, + ACTIONS(1225), 1, sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 36, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(2685), 1, + sym__expression, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1215), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1217), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1223), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2732), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [116880] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DOLLAR, + ACTIONS(1119), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1211), 1, sym_word, - [120971] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2312), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6459), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1251), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1253), 25, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + anon_sym_TILDE, + ACTIONS(1221), 1, + sym__special_character, + ACTIONS(1225), 1, sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [121025] = 3, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(3450), 1, + sym__expression, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1215), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1217), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1223), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2732), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [116977] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DOLLAR, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1133), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1211), 1, sym_word, - ACTIONS(1314), 27, + ACTIONS(1213), 1, + anon_sym_BANG, + ACTIONS(1219), 1, + anon_sym_TILDE, + ACTIONS(1221), 1, + sym__special_character, + ACTIONS(1225), 1, + sym_test_operator, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(3449), 1, + sym__expression, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1215), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1217), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1223), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2732), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [117074] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6431), 1, + anon_sym_DQUOTE, + ACTIONS(6435), 1, + sym_variable_name, + STATE(3505), 1, + sym_string, + ACTIONS(6433), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1235), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ACTIONS(6429), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 26, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [121075] = 5, - ACTIONS(71), 1, + sym_word, + [117135] = 8, + ACTIONS(3), 1, sym_comment, - STATE(2293), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6441), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4370), 14, - anon_sym_PIPE, + ACTIONS(6431), 1, + anon_sym_DQUOTE, + ACTIONS(6435), 1, + sym_variable_name, + STATE(3505), 1, + sym_string, + ACTIONS(6433), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1241), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(6429), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 26, + anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym__special_character, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(4372), 25, + [117196] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1292), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [121129] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1308), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1310), 28, - sym__concat, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [121179] = 5, + sym_word, + [117247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6462), 1, - sym__special_character, - STATE(2316), 1, - aux_sym__literal_repeat1, - ACTIONS(1364), 5, + ACTIONS(1350), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 35, + ACTIONS(1348), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -180961,7 +177787,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -180974,62 +177802,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [121233] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1304), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1306), 28, - sym__concat, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [121283] = 3, + [117298] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1336), 15, + ACTIONS(1296), 16, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_LPAREN, anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, @@ -181040,7 +177822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1338), 27, + ACTIONS(1298), 27, sym_file_descriptor, sym__concat, sym_test_operator, @@ -181068,218 +177850,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [121333] = 3, - ACTIONS(71), 1, + [117349] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1308), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1310), 28, - sym__concat, + ACTIONS(6437), 1, + sym__special_character, + STATE(2171), 1, + aux_sym__literal_repeat1, + ACTIONS(5509), 4, + sym_file_descriptor, sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5507), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [121383] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1344), 15, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1346), 27, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, + anon_sym_DOLLAR, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [121433] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1312), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1314), 28, - sym__concat, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [121483] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1340), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1342), 28, - sym__concat, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [121533] = 6, + aux_sym__simple_variable_name_token1, + sym_word, + [117404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5664), 1, - aux_sym_concatenation_token1, - ACTIONS(5666), 1, - sym__concat, - STATE(2329), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5069), 5, + ACTIONS(2169), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5067), 34, + ACTIONS(2167), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -181289,6 +177931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -181304,32 +177947,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [121589] = 6, + [117455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5664), 1, - aux_sym_concatenation_token1, - ACTIONS(5666), 1, - sym__concat, - STATE(2336), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5375), 5, + ACTIONS(1354), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5373), 34, + ACTIONS(1352), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -181341,6 +177981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -181354,32 +177995,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [121645] = 6, + [117506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5638), 1, - aux_sym_concatenation_token1, - ACTIONS(5640), 1, - sym__concat, - STATE(2297), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4372), 5, + ACTIONS(2169), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 34, + ACTIONS(2167), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -181406,15 +178044,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [121701] = 3, + [117557] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1356), 15, + ACTIONS(1304), 16, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_LPAREN, anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, @@ -181425,7 +178064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1358), 27, + ACTIONS(1306), 27, sym_file_descriptor, sym__concat, sym_test_operator, @@ -181453,361 +178092,632 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [121751] = 6, - ACTIONS(3), 1, + [117608] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(5638), 1, - aux_sym_concatenation_token1, - ACTIONS(5640), 1, - sym__concat, - STATE(2290), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4469), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1119), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1187), 1, sym_word, - [121807] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5638), 1, - aux_sym_concatenation_token1, - ACTIONS(5640), 1, - sym__concat, - STATE(2297), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2096), 5, - sym_file_descriptor, - sym_variable_name, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, + sym__special_character, + ACTIONS(1201), 1, sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(2094), 34, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(3128), 1, + sym__expression, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1199), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2567), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [117705] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1119), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1187), 1, sym_word, - [121863] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5664), 1, - aux_sym_concatenation_token1, - ACTIONS(6465), 1, - sym__concat, - STATE(1371), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 5, - sym_file_descriptor, - sym_variable_name, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, + sym__special_character, + ACTIONS(1201), 1, sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 34, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(3129), 1, + sym__expression, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1199), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2567), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [117802] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1276), 16, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [121919] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5664), 1, - aux_sym_concatenation_token1, - ACTIONS(5666), 1, - sym__concat, - STATE(2336), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5176), 5, + ACTIONS(1278), 27, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5174), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [117853] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DOLLAR, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1187), 1, sym_word, - [121975] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5664), 1, - aux_sym_concatenation_token1, - ACTIONS(5666), 1, - sym__concat, - STATE(2329), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5180), 5, - sym_file_descriptor, - sym_variable_name, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, + sym__special_character, + ACTIONS(1201), 1, sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5178), 34, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(3130), 1, + sym__expression, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1199), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2567), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [117950] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1119), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, + sym__special_character, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(3131), 1, + sym__expression, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [122031] = 5, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1199), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2567), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [118047] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(6467), 1, - sym__special_character, - STATE(2345), 1, - aux_sym__literal_repeat1, - ACTIONS(241), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + ACTIONS(1101), 1, anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DOLLAR, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1133), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1187), 1, sym_word, - ACTIONS(278), 25, - sym_file_descriptor, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, + sym__special_character, + ACTIONS(1201), 1, sym_test_operator, - sym__bare_dollar, - sym__brace_start, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(3132), 1, + sym__expression, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1199), 2, sym_raw_string, sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2567), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [118144] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DOLLAR, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, + aux_sym_number_token1, + ACTIONS(1125), 1, + aux_sym_number_token2, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1129), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, + sym__special_character, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(3133), 1, + sym__expression, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122085] = 3, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1199), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2567), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [118241] = 26, ACTIONS(71), 1, sym_comment, - ACTIONS(1328), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, anon_sym_DOLLAR, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, aux_sym_number_token1, + ACTIONS(1125), 1, aux_sym_number_token2, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1133), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1187), 1, sym_word, - ACTIONS(1330), 27, - sym_file_descriptor, - sym__concat, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, + sym__special_character, + ACTIONS(1201), 1, sym_test_operator, - sym__bare_dollar, - sym__brace_start, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(2942), 1, + sym__expression, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(1135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1199), 2, sym_raw_string, sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2567), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [118338] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1101), 1, + anon_sym_LPAREN, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1115), 1, + anon_sym_DOLLAR, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, + aux_sym_number_token1, + ACTIONS(1125), 1, + aux_sym_number_token2, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, + sym__brace_start, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, + sym__special_character, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + STATE(2548), 1, + aux_sym__literal_repeat1, + STATE(3136), 1, + sym__expression, + ACTIONS(1099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122135] = 3, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1199), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2674), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2567), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [118435] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1348), 15, + ACTIONS(1308), 16, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_LPAREN, anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, @@ -181818,7 +178728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1350), 27, + ACTIONS(1310), 27, sym_file_descriptor, sym__concat, sym_test_operator, @@ -181846,15 +178756,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122185] = 3, + [118486] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1352), 15, + ACTIONS(1312), 16, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_LPAREN, anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, @@ -181865,7 +178776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1354), 27, + ACTIONS(1314), 27, sym_file_descriptor, sym__concat, sym_test_operator, @@ -181893,85 +178804,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122235] = 6, - ACTIONS(3), 1, + [118537] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(5664), 1, - aux_sym_concatenation_token1, - ACTIONS(6469), 1, - sym__concat, - STATE(1371), 1, + STATE(2231), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(6133), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1272), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [122291] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5638), 1, - aux_sym_concatenation_token1, - ACTIONS(5640), 1, - sym__concat, - STATE(2297), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5391), 5, + ACTIONS(1274), 25, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5389), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -181979,29 +178846,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [122347] = 3, + [118592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 4, + ACTIONS(1358), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 38, + ACTIONS(1356), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -182012,7 +178875,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -182023,9 +178885,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -182040,10 +178902,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [122397] = 3, + [118643] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1340), 15, + ACTIONS(1296), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -182059,7 +178921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1342), 27, + ACTIONS(1298), 27, sym_file_descriptor, sym__concat, sym_test_operator, @@ -182087,30 +178949,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122447] = 6, - ACTIONS(3), 1, + [118693] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5638), 1, - aux_sym_concatenation_token1, - ACTIONS(5640), 1, + ACTIONS(1320), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1322), 28, sym__concat, - STATE(2290), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5395), 5, + sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [118743] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1274), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5393), 34, + ACTIONS(1272), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -182120,7 +179026,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -182136,11 +179041,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [122503] = 3, + [118793] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1324), 15, + ACTIONS(1344), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1346), 28, + sym__concat, + sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [118843] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1356), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -182156,7 +179109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1326), 27, + ACTIONS(1358), 27, sym_file_descriptor, sym__concat, sym_test_operator, @@ -182184,60 +179137,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122553] = 6, - ACTIONS(3), 1, + [118893] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5664), 1, - aux_sym_concatenation_token1, - ACTIONS(5666), 1, - sym__concat, - STATE(2329), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1356), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [122609] = 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1358), 28, + sym__concat, + sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [118943] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1320), 15, + ACTIONS(1344), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -182253,7 +179203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1322), 27, + ACTIONS(1346), 27, sym_file_descriptor, sym__concat, sym_test_operator, @@ -182281,10 +179231,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122659] = 3, + [118993] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1251), 15, + ACTIONS(1336), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1338), 28, + sym__concat, + sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [119043] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1292), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -182300,7 +179297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1253), 27, + ACTIONS(1294), 27, sym_file_descriptor, sym__concat, sym_test_operator, @@ -182328,14 +179325,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122709] = 5, + [119093] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6471), 1, + ACTIONS(6439), 1, sym__special_character, - STATE(2345), 1, + STATE(2290), 1, aux_sym__literal_repeat1, - ACTIONS(1362), 15, + ACTIONS(241), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -182351,7 +179348,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1364), 25, + ACTIONS(278), 25, sym_file_descriptor, sym_test_operator, sym__bare_dollar, @@ -182377,37 +179374,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122763] = 3, - ACTIONS(71), 1, + [119147] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1314), 27, + ACTIONS(1274), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1272), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -182415,23 +179407,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122812] = 5, + sym_word, + [119197] = 5, ACTIONS(71), 1, sym_comment, - STATE(2466), 1, + STATE(2279), 1, aux_sym_concatenation_repeat1, - ACTIONS(1143), 2, + ACTIONS(6441), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1261), 15, + ACTIONS(1276), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -182446,9 +179444,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - sym__special_character, - ACTIONS(1263), 23, + ACTIONS(1278), 25, sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -182471,36 +179469,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [122865] = 3, + anon_sym_COLON, + [119251] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1336), 14, + ACTIONS(1332), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1338), 27, + ACTIONS(1334), 27, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -182510,6 +179509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -182517,85 +179517,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122914] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6482), 1, - anon_sym_esac, - ACTIONS(6484), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(6486), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6488), 1, - anon_sym_DOLLAR, - ACTIONS(6490), 1, - sym__special_character, - ACTIONS(6492), 1, - anon_sym_DQUOTE, - ACTIONS(6494), 1, - aux_sym_number_token1, - ACTIONS(6496), 1, - aux_sym_number_token2, - ACTIONS(6498), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6502), 1, - anon_sym_BQUOTE, - ACTIONS(6504), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6508), 1, - sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, - sym__brace_start, - STATE(6426), 1, - aux_sym__literal_repeat1, - STATE(7044), 1, - sym_last_case_item, - ACTIONS(6476), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6506), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3236), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6474), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(6478), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6303), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [123009] = 6, + [119301] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(6514), 1, + ACTIONS(6444), 1, aux_sym_concatenation_token1, - ACTIONS(6516), 1, + ACTIONS(6446), 1, sym__concat, - STATE(2359), 1, + STATE(2283), 1, aux_sym_concatenation_repeat1, - ACTIONS(1286), 13, + ACTIONS(1266), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -182604,12 +179535,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1288), 25, + ACTIONS(1268), 25, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -182619,6 +179551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -182627,7 +179560,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -182635,35 +179567,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [123064] = 3, + [119357] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1261), 15, + ACTIONS(6444), 1, + aux_sym_concatenation_token1, + ACTIONS(6448), 1, + sym__concat, + STATE(2283), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 14, anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(1263), 26, + ACTIONS(1288), 25, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -182672,47 +179610,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [123113] = 5, + [119413] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6518), 1, - sym__special_character, - STATE(2366), 1, - aux_sym__literal_repeat1, - ACTIONS(4564), 14, + STATE(2283), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6450), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1276), 14, anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(4566), 25, + ACTIONS(1278), 25, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -182725,83 +179663,13 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [123166] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6486), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6488), 1, - anon_sym_DOLLAR, - ACTIONS(6490), 1, - sym__special_character, - ACTIONS(6492), 1, - anon_sym_DQUOTE, - ACTIONS(6494), 1, - aux_sym_number_token1, - ACTIONS(6496), 1, - aux_sym_number_token2, - ACTIONS(6498), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6502), 1, - anon_sym_BQUOTE, - ACTIONS(6504), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6508), 1, - sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, - sym__brace_start, - ACTIONS(6522), 1, - anon_sym_esac, - ACTIONS(6524), 1, - aux_sym_heredoc_redirect_token1, - STATE(6426), 1, - aux_sym__literal_repeat1, - STATE(7056), 1, - sym_last_case_item, - ACTIONS(6476), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6506), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3233), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6474), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(6520), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6303), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [123261] = 3, + [119467] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(1324), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -182816,10 +179684,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1302), 27, + ACTIONS(1326), 28, sym__concat, sym_test_operator, anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -182844,85 +179713,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COLON, aux_sym_concatenation_token1, - [123310] = 3, + [119517] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1332), 14, - anon_sym_EQ, + ACTIONS(1356), 15, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1334), 27, - sym__concat, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [123359] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2424), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6526), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1261), 14, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1263), 24, + ACTIONS(1358), 27, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -182931,6 +179751,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -182938,15 +179760,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [123412] = 5, + [119567] = 5, ACTIONS(71), 1, sym_comment, - STATE(2350), 1, + STATE(2281), 1, aux_sym_concatenation_repeat1, - ACTIONS(6514), 2, + ACTIONS(6444), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(2094), 13, + ACTIONS(1272), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -182955,12 +179777,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(2096), 25, + ACTIONS(1274), 25, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -182970,6 +179793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -182978,7 +179802,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -182986,88 +179809,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [123465] = 26, + [119621] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6486), 1, + ACTIONS(6453), 1, + sym__special_character, + STATE(2296), 1, + aux_sym__literal_repeat1, + ACTIONS(5317), 5, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5315), 35, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(6488), 1, anon_sym_DOLLAR, - ACTIONS(6490), 1, - sym__special_character, - ACTIONS(6492), 1, anon_sym_DQUOTE, - ACTIONS(6494), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(6496), 1, aux_sym_number_token2, - ACTIONS(6498), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6500), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6502), 1, anon_sym_BQUOTE, - ACTIONS(6504), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6508), 1, - sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, - sym__brace_start, - ACTIONS(6530), 1, - anon_sym_esac, - ACTIONS(6532), 1, - aux_sym_heredoc_redirect_token1, - STATE(6426), 1, - aux_sym__literal_repeat1, - STATE(7005), 1, - sym_last_case_item, - ACTIONS(6476), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6506), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3385), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6474), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - ACTIONS(6528), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6303), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [123560] = 5, + [119675] = 3, ACTIONS(71), 1, sym_comment, - STATE(2359), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6534), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1251), 13, + ACTIONS(1320), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -183077,10 +179877,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1253), 25, + ACTIONS(1322), 27, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -183095,6 +179896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -183103,174 +179905,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [123613] = 26, - ACTIONS(3), 1, + [119725] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6486), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6488), 1, + STATE(2282), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6444), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2171), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(6490), 1, sym__special_character, - ACTIONS(6492), 1, - anon_sym_DQUOTE, - ACTIONS(6494), 1, aux_sym_number_token1, - ACTIONS(6496), 1, aux_sym_number_token2, - ACTIONS(6498), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6500), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6502), 1, anon_sym_BQUOTE, - ACTIONS(6504), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6508), 1, + sym_word, + ACTIONS(2173), 25, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, sym__brace_start, - ACTIONS(6539), 1, - anon_sym_esac, - ACTIONS(6541), 1, - aux_sym_heredoc_redirect_token1, - STATE(6426), 1, - aux_sym__literal_repeat1, - STATE(7275), 1, - sym_last_case_item, - ACTIONS(6476), 2, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6506), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3452), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6474), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(6537), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6303), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [123708] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6486), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6488), 1, - anon_sym_DOLLAR, - ACTIONS(6490), 1, - sym__special_character, - ACTIONS(6492), 1, anon_sym_DQUOTE, - ACTIONS(6494), 1, - aux_sym_number_token1, - ACTIONS(6496), 1, - aux_sym_number_token2, - ACTIONS(6498), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6502), 1, - anon_sym_BQUOTE, - ACTIONS(6504), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6508), 1, - sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, - sym__brace_start, - ACTIONS(6545), 1, - anon_sym_esac, - ACTIONS(6547), 1, - aux_sym_heredoc_redirect_token1, - STATE(6426), 1, - aux_sym__literal_repeat1, - STATE(7134), 1, - sym_last_case_item, - ACTIONS(6476), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6506), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3451), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6474), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(6543), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6303), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [123803] = 3, + [119779] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1344), 14, + ACTIONS(6455), 1, + sym__special_character, + STATE(2290), 1, + aux_sym__literal_repeat1, + ACTIONS(1360), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1346), 27, + ACTIONS(1362), 25, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -183279,44 +179995,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [123852] = 3, + [119833] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1356), 14, + ACTIONS(1348), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1358), 27, + ACTIONS(1350), 27, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -183326,6 +180042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -183333,98 +180050,229 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [123901] = 26, + [119883] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6486), 1, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, + sym_file_descriptor, + ACTIONS(5861), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(5851), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + ACTIONS(5849), 16, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(6488), 1, anon_sym_DOLLAR, - ACTIONS(6490), 1, sym__special_character, - ACTIONS(6492), 1, anon_sym_DQUOTE, - ACTIONS(6494), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(6496), 1, aux_sym_number_token2, - ACTIONS(6498), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6500), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6502), 1, - anon_sym_BQUOTE, - ACTIONS(6504), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6508), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [119941] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5856), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5858), 1, + sym_file_descriptor, + ACTIONS(5861), 3, + sym_variable_name, sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, sym__brace_start, - ACTIONS(6551), 1, - anon_sym_esac, - ACTIONS(6553), 1, - aux_sym_heredoc_redirect_token1, - STATE(6426), 1, - aux_sym__literal_repeat1, - STATE(7007), 1, - sym_last_case_item, - ACTIONS(6476), 2, + ACTIONS(5851), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5853), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + ACTIONS(5849), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6506), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3386), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6474), 3, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(6549), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6303), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [123996] = 6, - ACTIONS(3), 1, + [119999] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5844), 1, - aux_sym_concatenation_token1, - ACTIONS(5846), 1, + ACTIONS(1328), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1330), 28, sym__concat, - STATE(2385), 1, + sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [120049] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2281), 1, aux_sym_concatenation_repeat1, - ACTIONS(5478), 4, + ACTIONS(6444), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4577), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(4579), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [120103] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6458), 1, + sym__special_character, + STATE(2296), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 5, sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5476), 34, + ACTIONS(1360), 35, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -183437,7 +180285,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -183449,40 +180296,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [124051] = 5, + [120157] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6555), 1, - sym__special_character, - STATE(2366), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 14, + STATE(2282), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6444), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4593), 14, anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(1364), 25, + ACTIONS(4595), 25, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -183495,25 +180343,25 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124104] = 6, + [120211] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5844), 1, + ACTIONS(5539), 1, aux_sym_concatenation_token1, - ACTIONS(5846), 1, + ACTIONS(6461), 1, sym__concat, - STATE(2403), 1, + STATE(1330), 1, aux_sym_concatenation_repeat1, - ACTIONS(5470), 4, + ACTIONS(1268), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5468), 34, + ACTIONS(1266), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -183531,6 +180379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -183546,38 +180395,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [124159] = 3, - ACTIONS(71), 1, + [120267] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1271), 15, + ACTIONS(5539), 1, + aux_sym_concatenation_token1, + ACTIONS(6463), 1, + sym__concat, + STATE(1330), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1286), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1281), 26, + [120323] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5539), 1, + aux_sym_concatenation_token1, + ACTIONS(5541), 1, + sym__concat, + STATE(2298), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1272), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -183585,24 +180482,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124208] = 5, + sym_word, + [120379] = 5, ACTIONS(71), 1, sym_comment, - STATE(2350), 1, + STATE(2281), 1, aux_sym_concatenation_repeat1, - ACTIONS(6514), 2, + ACTIONS(6444), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(5389), 13, + ACTIONS(5315), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -183611,12 +180513,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5391), 25, + ACTIONS(5317), 25, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -183626,6 +180529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -183634,7 +180538,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -183642,38 +180545,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124261] = 5, + [120433] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6518), 1, - sym__special_character, - STATE(2366), 1, - aux_sym__literal_repeat1, - ACTIONS(4467), 14, + STATE(2282), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6444), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5319), 14, anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(4469), 25, + ACTIONS(5321), 25, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -183686,253 +180591,334 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124314] = 5, - ACTIONS(71), 1, + [120487] = 6, + ACTIONS(3), 1, sym_comment, - STATE(2429), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6514), 2, - sym__concat, + ACTIONS(5579), 1, aux_sym_concatenation_token1, - ACTIONS(5393), 13, + ACTIONS(6465), 1, + sym__concat, + STATE(1345), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1266), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(5395), 25, + [120543] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5579), 1, + aux_sym_concatenation_token1, + ACTIONS(6467), 1, + sym__concat, + STATE(1345), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1286), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124367] = 26, + aux_sym__simple_variable_name_token1, + sym_word, + [120599] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6486), 1, + ACTIONS(5579), 1, + aux_sym_concatenation_token1, + ACTIONS(5609), 1, + sym__concat, + STATE(2303), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1272), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(6488), 1, anon_sym_DOLLAR, - ACTIONS(6490), 1, sym__special_character, - ACTIONS(6492), 1, anon_sym_DQUOTE, - ACTIONS(6494), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(6496), 1, aux_sym_number_token2, - ACTIONS(6498), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6500), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6502), 1, anon_sym_BQUOTE, - ACTIONS(6504), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6508), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [120655] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5929), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4318), 3, + sym_variable_name, sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, sym__brace_start, - ACTIONS(6560), 1, - anon_sym_esac, - ACTIONS(6562), 1, - aux_sym_heredoc_redirect_token1, - STATE(6426), 1, - aux_sym__literal_repeat1, - STATE(6851), 1, - sym_last_case_item, - ACTIONS(6476), 2, + ACTIONS(4304), 17, anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6506), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3377), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6474), 3, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(6558), 3, + ACTIONS(5927), 20, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, - STATE(6303), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [124462] = 5, - ACTIONS(71), 1, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [120709] = 5, + ACTIONS(3), 1, sym_comment, - STATE(2407), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6564), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1261), 14, + ACTIONS(6469), 1, + sym__special_character, + STATE(2345), 1, + aux_sym__literal_repeat1, + ACTIONS(5317), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5315), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1263), 24, + [120763] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1274), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1272), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124515] = 5, + aux_sym__simple_variable_name_token1, + sym_word, + [120813] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1105), 1, - aux_sym_concatenation_token1, - STATE(2540), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1261), 15, - anon_sym_EQ, + ACTIONS(1304), 15, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - sym__special_character, - ACTIONS(1263), 24, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [124568] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1332), 14, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1334), 27, + ACTIONS(1306), 27, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -183942,6 +180928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -183949,312 +180936,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124617] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6486), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6488), 1, - anon_sym_DOLLAR, - ACTIONS(6490), 1, - sym__special_character, - ACTIONS(6492), 1, - anon_sym_DQUOTE, - ACTIONS(6494), 1, - aux_sym_number_token1, - ACTIONS(6496), 1, - aux_sym_number_token2, - ACTIONS(6498), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6502), 1, - anon_sym_BQUOTE, - ACTIONS(6504), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6508), 1, - sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, - sym__brace_start, - ACTIONS(6568), 1, - anon_sym_esac, - ACTIONS(6570), 1, - aux_sym_heredoc_redirect_token1, - STATE(6426), 1, - aux_sym__literal_repeat1, - STATE(6997), 1, - sym_last_case_item, - ACTIONS(6476), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6506), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3383), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6474), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(6566), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6303), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [124712] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6486), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6488), 1, - anon_sym_DOLLAR, - ACTIONS(6490), 1, - sym__special_character, - ACTIONS(6492), 1, - anon_sym_DQUOTE, - ACTIONS(6494), 1, - aux_sym_number_token1, - ACTIONS(6496), 1, - aux_sym_number_token2, - ACTIONS(6498), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6502), 1, - anon_sym_BQUOTE, - ACTIONS(6504), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6508), 1, - sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, - sym__brace_start, - ACTIONS(6574), 1, - anon_sym_esac, - ACTIONS(6576), 1, - aux_sym_heredoc_redirect_token1, - STATE(6426), 1, - aux_sym__literal_repeat1, - STATE(7603), 1, - sym_last_case_item, - ACTIONS(6476), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6506), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3440), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6474), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(6572), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6303), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [124807] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6486), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6488), 1, - anon_sym_DOLLAR, - ACTIONS(6490), 1, - sym__special_character, - ACTIONS(6492), 1, - anon_sym_DQUOTE, - ACTIONS(6494), 1, - aux_sym_number_token1, - ACTIONS(6496), 1, - aux_sym_number_token2, - ACTIONS(6498), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6502), 1, - anon_sym_BQUOTE, - ACTIONS(6504), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6508), 1, - sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, - sym__brace_start, - ACTIONS(6580), 1, - anon_sym_esac, - ACTIONS(6582), 1, - aux_sym_heredoc_redirect_token1, - STATE(6426), 1, - aux_sym__literal_repeat1, - STATE(6824), 1, - sym_last_case_item, - ACTIONS(6476), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6506), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3378), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6474), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(6578), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6303), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [124902] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6486), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6488), 1, - anon_sym_DOLLAR, - ACTIONS(6490), 1, - sym__special_character, - ACTIONS(6492), 1, - anon_sym_DQUOTE, - ACTIONS(6494), 1, - aux_sym_number_token1, - ACTIONS(6496), 1, - aux_sym_number_token2, - ACTIONS(6498), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6502), 1, - anon_sym_BQUOTE, - ACTIONS(6504), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6508), 1, - sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, - sym__brace_start, - ACTIONS(6586), 1, - anon_sym_esac, - ACTIONS(6588), 1, - aux_sym_heredoc_redirect_token1, - STATE(6426), 1, - aux_sym__literal_repeat1, - STATE(6991), 1, - sym_last_case_item, - ACTIONS(6476), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6506), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3382), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6474), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(6584), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6303), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [124997] = 3, + [120863] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1352), 14, + ACTIONS(1276), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1354), 27, + ACTIONS(1278), 27, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -184264,111 +180975,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [125046] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 5, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [125095] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2555), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1105), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1261), 15, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - sym__special_character, - ACTIONS(1263), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [125148] = 3, + [120913] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 14, + ACTIONS(1348), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -184383,10 +181001,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1298), 27, + ACTIONS(1350), 28, sym__concat, sym_test_operator, anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -184411,36 +181030,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COLON, aux_sym_concatenation_token1, - [125197] = 3, + [120963] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(1324), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1302), 27, + ACTIONS(1326), 27, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -184450,6 +181069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -184457,183 +181077,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125246] = 6, - ACTIONS(3), 1, + [121013] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5844), 1, - aux_sym_concatenation_token1, - ACTIONS(6590), 1, - sym__concat, - STATE(1722), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 4, + ACTIONS(1308), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1310), 27, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [125301] = 6, - ACTIONS(3), 1, + [121063] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5844), 1, - aux_sym_concatenation_token1, - ACTIONS(5846), 1, - sym__concat, - STATE(2385), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 4, + ACTIONS(1328), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1330), 27, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [125356] = 6, + [121113] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1369), 1, - sym_test_operator, - STATE(2575), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1143), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(6594), 14, - anon_sym_EQ, + ACTIONS(1336), 15, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6592), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [125411] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1296), 14, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1298), 27, + ACTIONS(1338), 27, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -184643,6 +181210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -184650,34 +181218,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125460] = 6, - ACTIONS(3), 1, + [121163] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5920), 1, - aux_sym_concatenation_token1, - ACTIONS(5946), 1, - sym__concat, - STATE(2404), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 4, + ACTIONS(1312), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1314), 27, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -184685,50 +181256,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [125515] = 3, + [121213] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1340), 14, + ACTIONS(1352), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1342), 27, + ACTIONS(1354), 27, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -184738,6 +181304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -184745,29 +181312,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125564] = 6, + [121263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5920), 1, - aux_sym_concatenation_token1, - ACTIONS(6596), 1, - sym__concat, - STATE(1704), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 4, + ACTIONS(1274), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 34, + ACTIONS(1272), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -184777,7 +181343,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -184794,130 +181359,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [125619] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1251), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1253), 27, - sym__concat, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [125668] = 3, + [121313] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1324), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1326), 27, + STATE(2282), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6444), 2, sym__concat, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, aux_sym_concatenation_token1, - [125717] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6518), 1, - sym__special_character, - STATE(2366), 1, - aux_sym__literal_repeat1, - ACTIONS(4480), 14, + ACTIONS(2167), 14, anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(4482), 25, + ACTIONS(2169), 25, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -184930,19 +181405,18 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125770] = 5, + [121367] = 5, ACTIONS(71), 1, sym_comment, - STATE(2407), 1, + STATE(2281), 1, aux_sym_concatenation_repeat1, - ACTIONS(6564), 2, + ACTIONS(6444), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(5178), 14, + ACTIONS(4426), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -184951,13 +181425,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(5180), 24, + ACTIONS(4428), 25, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -184967,14 +181441,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -184982,15 +181457,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125823] = 5, + [121421] = 5, ACTIONS(71), 1, sym_comment, - STATE(2429), 1, + STATE(2282), 1, aux_sym_concatenation_repeat1, - ACTIONS(6514), 2, + ACTIONS(6444), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1261), 13, + ACTIONS(4511), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -184999,12 +181474,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1263), 25, + ACTIONS(4513), 25, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -185014,6 +181490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -185022,7 +181499,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -185030,17 +181506,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125876] = 6, + [121475] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1369), 1, - sym_test_operator, - STATE(2575), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1143), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(6600), 14, + ACTIONS(1340), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -185055,7 +181524,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6598), 23, + ACTIONS(1342), 28, + sym__concat, + sym_test_operator, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -185077,39 +181548,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [125931] = 3, - ACTIONS(71), 1, + anon_sym_COLON, + aux_sym_concatenation_token1, + [121525] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 14, + ACTIONS(5539), 1, + aux_sym_concatenation_token1, + ACTIONS(5541), 1, + sym__concat, + STATE(2298), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5317), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5315), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1294), 27, - sym_file_descriptor, + [121581] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5539), 1, + aux_sym_concatenation_token1, + ACTIONS(5541), 1, sym__concat, + STATE(2299), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5321), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5319), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -185117,91 +181639,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125980] = 3, - ACTIONS(71), 1, + sym_word, + [121637] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 14, + ACTIONS(5579), 1, + aux_sym_concatenation_token1, + ACTIONS(5609), 1, + sym__concat, + STATE(2303), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5325), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5323), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1330), 27, - sym_file_descriptor, + [121693] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5579), 1, + aux_sym_concatenation_token1, + ACTIONS(5609), 1, sym__concat, + STATE(2304), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5329), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5327), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126029] = 3, + aux_sym__simple_variable_name_token1, + sym_word, + [121749] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1320), 14, + ACTIONS(1292), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1322), 27, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1294), 28, + sym__concat, + sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [121799] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5539), 1, + aux_sym_concatenation_token1, + ACTIONS(5541), 1, sym__concat, + STATE(2299), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2169), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(2167), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -185209,45 +181836,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126078] = 3, - ACTIONS(71), 1, + sym_word, + [121855] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1251), 14, + ACTIONS(5539), 1, + aux_sym_concatenation_token1, + ACTIONS(5541), 1, + sym__concat, + STATE(2298), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4428), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4426), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1253), 27, - sym_file_descriptor, + [121911] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5539), 1, + aux_sym_concatenation_token1, + ACTIONS(5541), 1, sym__concat, + STATE(2299), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4513), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4511), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -185255,45 +181936,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126127] = 3, - ACTIONS(71), 1, + sym_word, + [121967] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 14, + ACTIONS(5539), 1, + aux_sym_concatenation_token1, + ACTIONS(5541), 1, + sym__concat, + STATE(2299), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2173), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(2171), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1326), 27, - sym_file_descriptor, + [122023] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5539), 1, + aux_sym_concatenation_token1, + ACTIONS(5541), 1, sym__concat, + STATE(2298), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4579), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4577), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -185301,29 +182036,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126176] = 6, + sym_word, + [122079] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5844), 1, + ACTIONS(5539), 1, aux_sym_concatenation_token1, - ACTIONS(6602), 1, + ACTIONS(5541), 1, sym__concat, - STATE(1722), 1, + STATE(2299), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 4, + ACTIONS(4595), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 34, + ACTIONS(4593), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -185341,6 +182083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -185356,23 +182099,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [126231] = 6, + [122135] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5920), 1, + ACTIONS(5539), 1, aux_sym_concatenation_token1, - ACTIONS(6604), 1, + ACTIONS(5541), 1, sym__concat, - STATE(1704), 1, + STATE(2298), 1, aux_sym_concatenation_repeat1, - ACTIONS(1267), 4, + ACTIONS(5167), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 34, + ACTIONS(5165), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -185407,67 +182150,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [126286] = 5, - ACTIONS(71), 1, + [122191] = 6, + ACTIONS(3), 1, sym_comment, - STATE(2407), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6564), 2, - sym__concat, + ACTIONS(5539), 1, aux_sym_concatenation_token1, - ACTIONS(5067), 14, + ACTIONS(5541), 1, + sym__concat, + STATE(2299), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5175), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5173), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(5069), 24, + [122247] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1274), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1272), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126339] = 5, + sym_word, + [122297] = 3, ACTIONS(71), 1, sym_comment, - STATE(2426), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6564), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5373), 14, + ACTIONS(1316), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -185476,12 +182265,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(5375), 24, + ACTIONS(1318), 27, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -185493,8 +182282,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -185503,64 +182294,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126392] = 6, - ACTIONS(71), 1, + [122347] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6564), 1, + ACTIONS(5579), 1, aux_sym_concatenation_token1, - ACTIONS(6606), 1, + ACTIONS(5609), 1, sym__concat, - STATE(2435), 1, + STATE(2303), 1, aux_sym_concatenation_repeat1, - ACTIONS(1265), 14, + ACTIONS(5167), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5165), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1267), 24, + [122403] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5579), 1, + aux_sym_concatenation_token1, + ACTIONS(5609), 1, + sym__concat, + STATE(2304), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5175), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5173), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126447] = 5, + aux_sym__simple_variable_name_token1, + sym_word, + [122459] = 3, ACTIONS(71), 1, sym_comment, - STATE(2495), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1143), 2, + ACTIONS(1340), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1342), 27, + sym_file_descriptor, sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - ACTIONS(1261), 14, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [122509] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1332), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -185575,9 +182459,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1263), 24, + ACTIONS(1334), 28, + sym__concat, sym_test_operator, anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -185597,18 +182483,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym__special_character, - [126500] = 5, + anon_sym_COLON, + aux_sym_concatenation_token1, + [122559] = 3, ACTIONS(71), 1, sym_comment, - STATE(2459), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1143), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1261), 14, + ACTIONS(1352), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -185623,8 +182506,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1263), 24, + ACTIONS(1354), 28, + sym__concat, sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -185644,178 +182530,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - sym__special_character, - [126553] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6486), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6488), 1, - anon_sym_DOLLAR, - ACTIONS(6490), 1, - sym__special_character, - ACTIONS(6492), 1, - anon_sym_DQUOTE, - ACTIONS(6494), 1, - aux_sym_number_token1, - ACTIONS(6496), 1, - aux_sym_number_token2, - ACTIONS(6498), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6502), 1, - anon_sym_BQUOTE, - ACTIONS(6504), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6508), 1, - sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, - sym__brace_start, - ACTIONS(6610), 1, - anon_sym_esac, - ACTIONS(6612), 1, - aux_sym_heredoc_redirect_token1, - STATE(6426), 1, - aux_sym__literal_repeat1, - STATE(7451), 1, - sym_last_case_item, - ACTIONS(6476), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6506), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3420), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6474), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(6608), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6303), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [126648] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6486), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6488), 1, - anon_sym_DOLLAR, - ACTIONS(6490), 1, - sym__special_character, - ACTIONS(6492), 1, - anon_sym_DQUOTE, - ACTIONS(6494), 1, - aux_sym_number_token1, - ACTIONS(6496), 1, - aux_sym_number_token2, - ACTIONS(6498), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6502), 1, - anon_sym_BQUOTE, - ACTIONS(6504), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6508), 1, - sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, - sym__brace_start, - ACTIONS(6616), 1, - anon_sym_esac, - ACTIONS(6618), 1, - aux_sym_heredoc_redirect_token1, - STATE(6426), 1, - aux_sym__literal_repeat1, - STATE(7440), 1, - sym_last_case_item, - ACTIONS(6476), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6506), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3419), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6474), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(6614), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6303), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [126743] = 3, + aux_sym_concatenation_token1, + [122609] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1348), 14, + ACTIONS(1300), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1350), 27, + ACTIONS(1302), 27, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -185825,6 +182574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -185832,132 +182582,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126792] = 5, + [122659] = 3, ACTIONS(71), 1, sym_comment, - STATE(2350), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6514), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4552), 13, + ACTIONS(1356), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(4554), 25, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1358), 28, + sym__concat, + sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [122709] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6471), 1, + sym__special_character, + STATE(2345), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1360), 36, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, + anon_sym_DOLLAR, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [126845] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6486), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6488), 1, - anon_sym_DOLLAR, - ACTIONS(6490), 1, - sym__special_character, - ACTIONS(6492), 1, - anon_sym_DQUOTE, - ACTIONS(6494), 1, aux_sym_number_token1, - ACTIONS(6496), 1, aux_sym_number_token2, - ACTIONS(6498), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6500), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6502), 1, anon_sym_BQUOTE, - ACTIONS(6504), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6508), 1, - sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, - sym__brace_start, - ACTIONS(6622), 1, - anon_sym_esac, - ACTIONS(6624), 1, - aux_sym_heredoc_redirect_token1, - STATE(6426), 1, - aux_sym__literal_repeat1, - STATE(7413), 1, - sym_last_case_item, - ACTIONS(6476), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6506), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3416), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6474), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - ACTIONS(6620), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6303), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [126940] = 5, + [122763] = 5, ACTIONS(71), 1, sym_comment, - STATE(2429), 1, + STATE(2413), 1, aux_sym_concatenation_repeat1, - ACTIONS(6514), 2, + ACTIONS(6474), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4564), 13, + ACTIONS(5315), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -185971,7 +182700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(4566), 25, + ACTIONS(5317), 25, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -185997,66 +182726,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126993] = 26, + [122816] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6480), 1, + ACTIONS(6482), 1, anon_sym_LPAREN, + ACTIONS(6484), 1, + anon_sym_esac, ACTIONS(6486), 1, - anon_sym_DOLLAR_LBRACK, + aux_sym_heredoc_redirect_token1, ACTIONS(6488), 1, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LBRACK, ACTIONS(6490), 1, - sym__special_character, + anon_sym_DOLLAR, ACTIONS(6492), 1, - anon_sym_DQUOTE, + sym__special_character, ACTIONS(6494), 1, - aux_sym_number_token1, + anon_sym_DQUOTE, ACTIONS(6496), 1, - aux_sym_number_token2, + aux_sym_number_token1, ACTIONS(6498), 1, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token2, ACTIONS(6500), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(6502), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(6504), 1, + anon_sym_BQUOTE, + ACTIONS(6506), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6508), 1, - sym_test_operator, ACTIONS(6510), 1, - sym_extglob_pattern, + sym_test_operator, ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, sym__brace_start, - ACTIONS(6628), 1, - anon_sym_esac, - ACTIONS(6630), 1, - aux_sym_heredoc_redirect_token1, - STATE(6426), 1, + STATE(6459), 1, aux_sym__literal_repeat1, - STATE(7402), 1, + STATE(6931), 1, sym_last_case_item, - ACTIONS(6476), 2, + ACTIONS(6478), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6506), 2, + ACTIONS(6508), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3411), 2, + STATE(3377), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6695), 2, + STATE(6638), 2, sym_concatenation, sym__extglob_blob, - ACTIONS(6474), 3, + ACTIONS(6476), 3, sym_raw_string, sym_ansi_c_string, sym_word, - ACTIONS(6626), 3, + ACTIONS(6480), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(6303), 9, + STATE(6312), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -186066,38 +182795,40 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [127088] = 5, + [122911] = 6, ACTIONS(71), 1, sym_comment, + ACTIONS(6516), 1, + aux_sym_concatenation_token1, ACTIONS(6518), 1, - sym__special_character, - STATE(2366), 1, - aux_sym__literal_repeat1, - ACTIONS(4546), 14, + sym__concat, + STATE(2422), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1266), 14, anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(4548), 25, + ACTIONS(1268), 24, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -186110,65 +182841,64 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127141] = 3, - ACTIONS(3), 1, + [122966] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1263), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1304), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [127190] = 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1306), 27, + sym__concat, + sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [123015] = 5, ACTIONS(71), 1, sym_comment, - STATE(2426), 1, + STATE(2413), 1, aux_sym_concatenation_repeat1, - ACTIONS(6564), 2, + ACTIONS(6474), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(5174), 14, + ACTIONS(5165), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -186181,9 +182911,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(5176), 24, + ACTIONS(5167), 25, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -186198,6 +182927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -186208,82 +182938,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127243] = 3, - ACTIONS(71), 1, + [123068] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1316), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1318), 27, + ACTIONS(1274), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1272), 36, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127292] = 3, + sym_word, + [123117] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 14, + ACTIONS(1251), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1310), 27, + ACTIONS(1258), 26, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -186292,37 +183021,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127341] = 6, + [123166] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5920), 1, - aux_sym_concatenation_token1, - ACTIONS(5946), 1, - sym__concat, - STATE(2391), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5391), 4, + ACTIONS(1274), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5389), 34, + ACTIONS(1272), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -186332,7 +183060,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, @@ -186349,110 +183076,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [127396] = 3, - ACTIONS(71), 1, + [123215] = 26, + ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6490), 1, anon_sym_DOLLAR, + ACTIONS(6492), 1, sym__special_character, + ACTIONS(6494), 1, + anon_sym_DQUOTE, + ACTIONS(6496), 1, aux_sym_number_token1, + ACTIONS(6498), 1, aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6504), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1306), 27, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(6506), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6510), 1, sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, sym__brace_start, + ACTIONS(6522), 1, + anon_sym_esac, + ACTIONS(6524), 1, + aux_sym_heredoc_redirect_token1, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(7523), 1, + sym_last_case_item, + ACTIONS(6478), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(6508), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127445] = 6, - ACTIONS(71), 1, + STATE(3332), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6476), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6520), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [123310] = 26, + ACTIONS(3), 1, sym_comment, - ACTIONS(6526), 1, - aux_sym_concatenation_token1, - ACTIONS(6632), 1, - sym__concat, - STATE(2425), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1265), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6490), 1, anon_sym_DOLLAR, + ACTIONS(6492), 1, sym__special_character, + ACTIONS(6494), 1, + anon_sym_DQUOTE, + ACTIONS(6496), 1, aux_sym_number_token1, + ACTIONS(6498), 1, aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6504), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1267), 24, - sym_file_descriptor, + ACTIONS(6506), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6510), 1, sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, sym__brace_start, + ACTIONS(6528), 1, + anon_sym_esac, + ACTIONS(6530), 1, + aux_sym_heredoc_redirect_token1, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(7284), 1, + sym_last_case_item, + ACTIONS(6478), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(6508), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127500] = 5, + STATE(3333), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6476), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6526), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [123405] = 5, ACTIONS(71), 1, sym_comment, - STATE(2425), 1, + STATE(2417), 1, aux_sym_concatenation_repeat1, - ACTIONS(6634), 2, + ACTIONS(6532), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1251), 14, + ACTIONS(5323), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -186461,14 +183231,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1253), 24, + ACTIONS(5325), 24, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -186476,15 +183247,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -186492,16 +183262,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127553] = 6, + [123458] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6564), 1, - aux_sym_concatenation_token1, - ACTIONS(6637), 1, - sym__concat, - STATE(2435), 1, + STATE(2418), 1, aux_sym_concatenation_repeat1, - ACTIONS(1286), 14, + ACTIONS(6532), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5327), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -186516,7 +183285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1288), 24, + ACTIONS(5329), 24, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -186541,15 +183310,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127608] = 5, + [123511] = 3, ACTIONS(71), 1, sym_comment, - STATE(2350), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6514), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2072), 13, + ACTIONS(1332), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -186558,13 +183322,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(2074), 25, + ACTIONS(1334), 27, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -186573,6 +183339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -186581,7 +183348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -186589,66 +183356,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127661] = 26, + [123560] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6480), 1, + ACTIONS(6482), 1, anon_sym_LPAREN, - ACTIONS(6486), 1, - anon_sym_DOLLAR_LBRACK, ACTIONS(6488), 1, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LBRACK, ACTIONS(6490), 1, - sym__special_character, + anon_sym_DOLLAR, ACTIONS(6492), 1, - anon_sym_DQUOTE, + sym__special_character, ACTIONS(6494), 1, - aux_sym_number_token1, + anon_sym_DQUOTE, ACTIONS(6496), 1, - aux_sym_number_token2, + aux_sym_number_token1, ACTIONS(6498), 1, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token2, ACTIONS(6500), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(6502), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(6504), 1, + anon_sym_BQUOTE, + ACTIONS(6506), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6508), 1, - sym_test_operator, ACTIONS(6510), 1, - sym_extglob_pattern, + sym_test_operator, ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, sym__brace_start, - ACTIONS(6641), 1, + ACTIONS(6536), 1, anon_sym_esac, - ACTIONS(6643), 1, + ACTIONS(6538), 1, aux_sym_heredoc_redirect_token1, - STATE(6426), 1, + STATE(6459), 1, aux_sym__literal_repeat1, - STATE(7528), 1, + STATE(7316), 1, sym_last_case_item, - ACTIONS(6476), 2, + ACTIONS(6478), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6506), 2, + ACTIONS(6508), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3310), 2, + STATE(3402), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6695), 2, + STATE(6638), 2, sym_concatenation, sym__extglob_blob, - ACTIONS(6474), 3, + ACTIONS(6476), 3, sym_raw_string, sym_ansi_c_string, sym_word, - ACTIONS(6639), 3, + ACTIONS(6534), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(6303), 9, + STATE(6312), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -186658,40 +183425,83 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [127756] = 6, - ACTIONS(71), 1, + [123655] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6514), 1, + ACTIONS(5875), 1, aux_sym_concatenation_token1, - ACTIONS(6645), 1, + ACTIONS(5877), 1, sym__concat, - STATE(2359), 1, + STATE(2378), 1, aux_sym_concatenation_repeat1, - ACTIONS(1265), 13, + ACTIONS(5317), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5315), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1267), 25, + [123710] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5875), 1, + aux_sym_concatenation_token1, + ACTIONS(5877), 1, + sym__concat, + STATE(2388), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5321), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5319), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -186699,18 +183509,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127811] = 3, + sym_word, + [123765] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 14, + STATE(2414), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6474), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5319), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -186719,15 +183540,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1310), 27, + ACTIONS(5321), 25, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -186736,51 +183555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [127860] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5920), 1, - aux_sym_concatenation_token1, - ACTIONS(5946), 1, - sym__concat, - STATE(2404), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5395), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5393), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -186788,29 +183563,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [127915] = 5, + [123818] = 5, ACTIONS(71), 1, sym_comment, - STATE(2429), 1, + STATE(2414), 1, aux_sym_concatenation_repeat1, - ACTIONS(6514), 2, + ACTIONS(6474), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4467), 13, + ACTIONS(5173), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -186824,7 +183593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(4469), 25, + ACTIONS(5175), 25, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -186850,15 +183619,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127968] = 5, + [123871] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6490), 1, + anon_sym_DOLLAR, + ACTIONS(6492), 1, + sym__special_character, + ACTIONS(6494), 1, + anon_sym_DQUOTE, + ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, + aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6502), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6504), 1, + anon_sym_BQUOTE, + ACTIONS(6506), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6510), 1, + sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(6542), 1, + anon_sym_esac, + ACTIONS(6544), 1, + aux_sym_heredoc_redirect_token1, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(7203), 1, + sym_last_case_item, + ACTIONS(6478), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6508), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3443), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6476), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6540), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [123966] = 3, ACTIONS(71), 1, sym_comment, - STATE(2491), 1, + ACTIONS(1276), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1278), 27, + sym__concat, + sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [124015] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2512), 1, aux_sym_concatenation_repeat1, - ACTIONS(1077), 2, + ACTIONS(1113), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1261), 14, + ACTIONS(1272), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -186873,7 +183757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1263), 24, + ACTIONS(1274), 24, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -186894,19 +183778,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, + anon_sym_COLON, sym__special_character, - [128021] = 5, + [124068] = 3, ACTIONS(71), 1, sym_comment, - STATE(2429), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6514), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5067), 13, + ACTIONS(1336), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -186915,13 +183794,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5069), 25, + ACTIONS(1338), 27, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -186930,6 +183811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -186938,7 +183820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -186946,15 +183828,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128074] = 5, + [124117] = 5, ACTIONS(71), 1, sym_comment, - STATE(2435), 1, + STATE(2417), 1, aux_sym_concatenation_repeat1, - ACTIONS(6647), 2, + ACTIONS(6532), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1251), 14, + ACTIONS(1272), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -186969,7 +183851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1253), 24, + ACTIONS(1274), 24, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -186994,19 +183876,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128127] = 5, + [124170] = 6, ACTIONS(71), 1, sym_comment, - STATE(2350), 1, + ACTIONS(1376), 1, + sym_test_operator, + STATE(2528), 1, aux_sym_concatenation_repeat1, - ACTIONS(6514), 2, + ACTIONS(1113), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4370), 13, + ACTIONS(6548), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6546), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [124225] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6550), 1, + sym__special_character, + STATE(2370), 1, + aux_sym__literal_repeat1, + ACTIONS(1360), 14, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -187014,12 +183946,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(4372), 25, + ACTIONS(1362), 25, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -187034,42 +183965,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128180] = 5, + [124278] = 5, ACTIONS(71), 1, sym_comment, - STATE(2424), 1, + STATE(2480), 1, aux_sym_concatenation_repeat1, - ACTIONS(6526), 2, + ACTIONS(1157), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(5393), 14, + ACTIONS(1272), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(5395), 24, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1274), 24, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym__special_character, + [124331] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6516), 1, + aux_sym_concatenation_token1, + ACTIONS(6553), 1, + sym__concat, + STATE(2422), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1288), 24, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -187090,15 +184070,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128233] = 5, + [124386] = 5, ACTIONS(71), 1, sym_comment, - STATE(2441), 1, + STATE(2348), 1, aux_sym_concatenation_repeat1, - ACTIONS(6526), 2, + ACTIONS(6516), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(5389), 14, + ACTIONS(5315), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -187113,7 +184093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5391), 24, + ACTIONS(5317), 24, sym_file_descriptor, sym_test_operator, sym__brace_start, @@ -187138,110 +184118,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128286] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1292), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1294), 27, - sym__concat, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [128335] = 5, - ACTIONS(71), 1, + [124439] = 26, + ACTIONS(3), 1, sym_comment, - STATE(2350), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6514), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5373), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6490), 1, anon_sym_DOLLAR, + ACTIONS(6492), 1, + sym__special_character, + ACTIONS(6494), 1, + anon_sym_DQUOTE, + ACTIONS(6496), 1, aux_sym_number_token1, + ACTIONS(6498), 1, aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6504), 1, anon_sym_BQUOTE, + ACTIONS(6506), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6510), 1, + sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(6557), 1, + anon_sym_esac, + ACTIONS(6559), 1, + aux_sym_heredoc_redirect_token1, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(7226), 1, + sym_last_case_item, + ACTIONS(6478), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6508), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3446), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6476), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - ACTIONS(5375), 25, + ACTIONS(6555), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124534] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5805), 1, + aux_sym_concatenation_token1, + ACTIONS(6561), 1, + sym__concat, + STATE(1544), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1266), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128388] = 6, + aux_sym__simple_variable_name_token1, + sym_word, + [124589] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6526), 1, - aux_sym_concatenation_token1, - ACTIONS(6650), 1, - sym__concat, - STATE(2425), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1286), 14, + ACTIONS(1340), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -187256,8 +184254,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1288), 24, + ACTIONS(1342), 27, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -187274,6 +184274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -187281,101 +184282,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128443] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1348), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1350), 27, - sym__concat, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [128492] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1312), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1314), 26, - sym_test_operator, - sym_extglob_pattern, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [128540] = 3, + [124638] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1328), 14, + ACTIONS(1292), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -187384,13 +184294,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1330), 26, + ACTIONS(1294), 27, sym_file_descriptor, sym__concat, sym_variable_name, @@ -187401,15 +184311,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -187417,104 +184328,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128588] = 7, - ACTIONS(71), 1, + [124687] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1115), 1, - anon_sym_RBRACK, - ACTIONS(6652), 1, - sym__special_character, - ACTIONS(6654), 1, + ACTIONS(5875), 1, + aux_sym_concatenation_token1, + ACTIONS(6563), 1, sym__concat, - STATE(2474), 1, - aux_sym__literal_repeat1, - ACTIONS(243), 14, - anon_sym_EQ, + STATE(1612), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1266), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(354), 22, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [124742] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5805), 1, + aux_sym_concatenation_token1, + ACTIONS(6565), 1, + sym__concat, + STATE(1544), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 4, + sym_file_descriptor, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1286), 34, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [128644] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1308), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1310), 26, - sym_file_descriptor, + [124797] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5805), 1, + aux_sym_concatenation_token1, + ACTIONS(5865), 1, sym__concat, + STATE(2375), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1272), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128692] = 3, + aux_sym__simple_variable_name_token1, + sym_word, + [124852] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1348), 14, + STATE(2372), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6516), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5319), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -187529,9 +184498,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1350), 26, + ACTIONS(5321), 24, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -187548,7 +184516,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -187556,10 +184523,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128740] = 3, + [124905] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 14, + ACTIONS(1348), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -187574,9 +184541,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1306), 26, + ACTIONS(1350), 27, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -187601,35 +184569,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128788] = 3, + [124954] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1324), 14, + ACTIONS(6567), 1, + sym__special_character, + STATE(2370), 1, + aux_sym__literal_repeat1, + ACTIONS(4577), 14, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1326), 26, + ACTIONS(4579), 25, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -187638,43 +184609,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128836] = 3, + [125007] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1251), 14, + ACTIONS(6567), 1, + sym__special_character, + STATE(2370), 1, + aux_sym__literal_repeat1, + ACTIONS(4500), 14, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1253), 26, + ACTIONS(4502), 25, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -187683,22 +184657,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128884] = 5, + [125060] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1105), 1, - aux_sym_concatenation_token1, - STATE(2533), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1273), 14, + ACTIONS(1312), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -187713,9 +184683,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1369), 24, + ACTIONS(1314), 27, sym__concat, sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -187735,13 +184706,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [128936] = 3, + anon_sym_COLON, + aux_sym_concatenation_token1, + [125109] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6490), 1, + anon_sym_DOLLAR, + ACTIONS(6492), 1, + sym__special_character, + ACTIONS(6494), 1, + anon_sym_DQUOTE, + ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, + aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6502), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6504), 1, + anon_sym_BQUOTE, + ACTIONS(6506), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6510), 1, + sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(6571), 1, + anon_sym_esac, + ACTIONS(6573), 1, + aux_sym_heredoc_redirect_token1, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(6875), 1, + sym_last_case_item, + ACTIONS(6478), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6508), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3344), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6476), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6569), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [125204] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6490), 1, + anon_sym_DOLLAR, + ACTIONS(6492), 1, + sym__special_character, + ACTIONS(6494), 1, + anon_sym_DQUOTE, + ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, + aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6502), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6504), 1, + anon_sym_BQUOTE, + ACTIONS(6506), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6510), 1, + sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(6577), 1, + anon_sym_esac, + ACTIONS(6579), 1, + aux_sym_heredoc_redirect_token1, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(6887), 1, + sym_last_case_item, + ACTIONS(6478), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6508), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3352), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6476), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6575), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [125299] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5875), 1, + aux_sym_concatenation_token1, + ACTIONS(6581), 1, + sym__concat, + STATE(1612), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1286), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [125354] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1340), 14, + ACTIONS(1352), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -187750,13 +184910,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1342), 26, + ACTIONS(1354), 27, sym_file_descriptor, sym__concat, sym_variable_name, @@ -187767,31 +184927,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [125403] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5875), 1, + aux_sym_concatenation_token1, + ACTIONS(5877), 1, + sym__concat, + STATE(2378), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1272), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128984] = 5, + sym_word, + [125458] = 5, ACTIONS(71), 1, sym_comment, - STATE(2564), 1, + STATE(2417), 1, aux_sym_concatenation_repeat1, - ACTIONS(6656), 2, + ACTIONS(6532), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1261), 14, + ACTIONS(5165), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -187806,8 +185016,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1263), 23, + ACTIONS(5167), 24, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -187830,10 +185041,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129036] = 3, + [125511] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1320), 14, + ACTIONS(1296), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -187842,13 +185053,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1322), 26, + ACTIONS(1298), 27, sym_file_descriptor, sym__concat, sym_variable_name, @@ -187859,15 +185070,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -187875,110 +185087,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129084] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1105), 1, - aux_sym_concatenation_token1, - ACTIONS(6658), 1, - anon_sym_RBRACK, - ACTIONS(6660), 1, - sym__concat, - STATE(2533), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1273), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1369), 22, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [129140] = 5, + [125560] = 5, ACTIONS(71), 1, sym_comment, - STATE(2575), 1, + STATE(2418), 1, aux_sym_concatenation_repeat1, - ACTIONS(1143), 2, + ACTIONS(6532), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1273), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1369), 23, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [129192] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6662), 1, - sym__special_character, - STATE(2568), 1, - aux_sym__literal_repeat1, - ACTIONS(5393), 12, + ACTIONS(5173), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -187990,8 +185107,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(5395), 26, + ACTIONS(5175), 24, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -188001,32 +185120,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129244] = 5, + [125613] = 5, ACTIONS(71), 1, sym_comment, - STATE(2550), 1, + STATE(2413), 1, aux_sym_concatenation_repeat1, - ACTIONS(6664), 2, + ACTIONS(6474), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1261), 13, + ACTIONS(4426), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -188040,8 +185157,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1263), 24, + ACTIONS(4428), 25, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -188065,16 +185183,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129296] = 6, + [125666] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1143), 1, + ACTIONS(1087), 1, aux_sym_concatenation_token1, - ACTIONS(6666), 1, - sym__concat, - STATE(2312), 1, + STATE(2456), 1, aux_sym_concatenation_repeat1, - ACTIONS(1265), 14, + ACTIONS(1272), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -188089,7 +185205,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1267), 23, + sym__special_character, + ACTIONS(1274), 24, + sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -188110,18 +185228,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [129350] = 5, + [125719] = 5, ACTIONS(71), 1, sym_comment, - STATE(2494), 1, + STATE(2414), 1, aux_sym_concatenation_repeat1, - ACTIONS(6668), 2, + ACTIONS(6474), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1261), 14, + ACTIONS(4511), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -188130,14 +185248,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1263), 23, + ACTIONS(4513), 25, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -188145,14 +185263,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -188160,59 +185279,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129402] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1105), 1, - aux_sym_concatenation_token1, - ACTIONS(6670), 1, - anon_sym_RBRACK, - ACTIONS(6672), 1, - sym__concat, - STATE(2533), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1273), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1369), 22, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [129458] = 3, + [125772] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 14, + ACTIONS(1304), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -188227,9 +185297,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1298), 26, + ACTIONS(1306), 27, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -188254,18 +185325,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129506] = 7, + [125821] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1207), 1, - anon_sym_RBRACK, - ACTIONS(6652), 1, - sym__special_character, - ACTIONS(6674), 1, + STATE(2485), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1113), 2, sym__concat, - STATE(2474), 1, - aux_sym__literal_repeat1, - ACTIONS(243), 14, + aux_sym_concatenation_token1, + ACTIONS(1272), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -188280,8 +185348,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(354), 22, + ACTIONS(1274), 24, sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -188303,15 +185372,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [129562] = 5, + sym__special_character, + [125874] = 3, ACTIONS(71), 1, sym_comment, - STATE(2464), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6676), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1251), 14, + ACTIONS(1300), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -188326,8 +185391,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1253), 23, + ACTIONS(1302), 27, + sym__concat, sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -188347,13 +185414,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [129614] = 3, + anon_sym_COLON, + aux_sym_concatenation_token1, + [125923] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1352), 14, + STATE(2414), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6474), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2171), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -188366,11 +185440,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1354), 26, + ACTIONS(2173), 25, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -188384,9 +185456,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -188395,58 +185467,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129662] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1143), 1, - aux_sym_concatenation_token1, - ACTIONS(6679), 1, - sym__concat, - STATE(2312), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1265), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1267), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [129716] = 3, + [125976] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1356), 14, + ACTIONS(1308), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -188455,13 +185479,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1358), 26, + ACTIONS(1310), 27, sym_file_descriptor, sym__concat, sym_variable_name, @@ -188472,15 +185496,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -188488,14 +185513,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129764] = 3, + [126025] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1344), 14, + ACTIONS(1272), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -188503,14 +185531,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1346), 26, + ACTIONS(1274), 26, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -188522,21 +185547,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129812] = 3, + [126074] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1316), 14, + ACTIONS(1312), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -188545,13 +185571,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1318), 26, + ACTIONS(1314), 27, sym_file_descriptor, sym__concat, sym_variable_name, @@ -188562,15 +185588,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -188578,300 +185605,347 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129860] = 6, - ACTIONS(3), 1, + [126123] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(6013), 1, - aux_sym_concatenation_token1, - ACTIONS(6681), 1, - sym__concat, - STATE(1879), 1, + STATE(2510), 1, aux_sym_concatenation_repeat1, - ACTIONS(1267), 4, - sym_file_descriptor, + ACTIONS(1087), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1272), 15, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + sym__special_character, + ACTIONS(1274), 23, sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 33, - anon_sym_LPAREN_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [126176] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2348), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6516), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1272), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - [129914] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6013), 1, - aux_sym_concatenation_token1, - ACTIONS(6683), 1, - sym__concat, - STATE(1879), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 4, + ACTIONS(1274), 24, sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 33, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [126229] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6490), 1, + anon_sym_DOLLAR, + ACTIONS(6492), 1, + sym__special_character, + ACTIONS(6494), 1, + anon_sym_DQUOTE, + ACTIONS(6496), 1, aux_sym_number_token1, + ACTIONS(6498), 1, aux_sym_number_token2, + ACTIONS(6500), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6504), 1, anon_sym_BQUOTE, + ACTIONS(6506), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(6510), 1, + sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(6585), 1, + anon_sym_esac, + ACTIONS(6587), 1, + aux_sym_heredoc_redirect_token1, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(7459), 1, + sym_last_case_item, + ACTIONS(6478), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6508), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(3239), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6476), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [129968] = 5, - ACTIONS(71), 1, + ACTIONS(6583), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [126324] = 26, + ACTIONS(3), 1, sym_comment, - ACTIONS(6652), 1, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6490), 1, + anon_sym_DOLLAR, + ACTIONS(6492), 1, sym__special_character, - STATE(2474), 1, + ACTIONS(6494), 1, + anon_sym_DQUOTE, + ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, + aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6502), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6504), 1, + anon_sym_BQUOTE, + ACTIONS(6506), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6510), 1, + sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(6591), 1, + anon_sym_esac, + ACTIONS(6593), 1, + aux_sym_heredoc_redirect_token1, + STATE(6459), 1, aux_sym__literal_repeat1, - ACTIONS(243), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, + STATE(7290), 1, + sym_last_case_item, + ACTIONS(6478), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6508), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3188), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6476), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6589), 3, + anon_sym_SEMI, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(354), 24, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [130020] = 6, - ACTIONS(71), 1, + anon_sym_SEMI_SEMI, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [126419] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1143), 1, + ACTIONS(5805), 1, aux_sym_concatenation_token1, - ACTIONS(6685), 1, + ACTIONS(5865), 1, sym__concat, - STATE(2312), 1, + STATE(2375), 1, aux_sym_concatenation_repeat1, - ACTIONS(1286), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1288), 23, + ACTIONS(5509), 4, + sym_file_descriptor, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5507), 34, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [130074] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6687), 1, - sym__special_character, - STATE(2474), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 14, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1364), 24, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [130126] = 6, - ACTIONS(71), 1, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [126474] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1077), 1, + ACTIONS(5805), 1, aux_sym_concatenation_token1, - ACTIONS(6690), 1, + ACTIONS(5865), 1, sym__concat, - STATE(2464), 1, + STATE(2379), 1, aux_sym_concatenation_repeat1, - ACTIONS(1286), 14, - anon_sym_EQ, + ACTIONS(5515), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5513), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1288), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [130180] = 5, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [126529] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6662), 1, - sym__special_character, - STATE(2568), 1, - aux_sym__literal_repeat1, - ACTIONS(5721), 12, + STATE(2413), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6474), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4577), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -188883,8 +185957,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(5723), 26, + ACTIONS(4579), 25, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -188894,7 +185969,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -188903,18 +185977,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130232] = 3, + [126582] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1336), 14, + ACTIONS(1316), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -188923,13 +185997,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1338), 26, + ACTIONS(1318), 27, sym_file_descriptor, sym__concat, sym_variable_name, @@ -188940,15 +186014,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -188956,10 +186031,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130280] = 3, + [126631] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6490), 1, + anon_sym_DOLLAR, + ACTIONS(6492), 1, + sym__special_character, + ACTIONS(6494), 1, + anon_sym_DQUOTE, + ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, + aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6502), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6504), 1, + anon_sym_BQUOTE, + ACTIONS(6506), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6510), 1, + sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(6597), 1, + anon_sym_esac, + ACTIONS(6599), 1, + aux_sym_heredoc_redirect_token1, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(7373), 1, + sym_last_case_item, + ACTIONS(6478), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6508), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3278), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6476), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6595), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [126726] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(6474), 1, + aux_sym_concatenation_token1, + ACTIONS(6601), 1, + sym__concat, + STATE(2423), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1266), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -188968,15 +186118,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1302), 26, + ACTIONS(1268), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -188984,7 +186133,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -188993,7 +186141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -189001,10 +186149,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130328] = 3, + [126781] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 13, + ACTIONS(6474), 1, + aux_sym_concatenation_token1, + ACTIONS(6603), 1, + sym__concat, + STATE(2423), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189018,9 +186172,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1294), 27, + ACTIONS(1288), 25, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -189037,7 +186190,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -189046,58 +186198,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130376] = 6, - ACTIONS(3), 1, + [126836] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6013), 1, - aux_sym_concatenation_token1, - ACTIONS(6015), 1, - sym__concat, - STATE(2470), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 4, + ACTIONS(1300), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1302), 27, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 33, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [126885] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6490), 1, + anon_sym_DOLLAR, + ACTIONS(6492), 1, + sym__special_character, + ACTIONS(6494), 1, + anon_sym_DQUOTE, + ACTIONS(6496), 1, aux_sym_number_token1, + ACTIONS(6498), 1, aux_sym_number_token2, + ACTIONS(6500), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6504), 1, anon_sym_BQUOTE, + ACTIONS(6506), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(6510), 1, + sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(6607), 1, + anon_sym_esac, + ACTIONS(6609), 1, + aux_sym_heredoc_redirect_token1, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(7296), 1, + sym_last_case_item, + ACTIONS(6478), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6508), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(3189), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6476), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [130430] = 3, + ACTIONS(6605), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [126980] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1332), 13, + ACTIONS(6532), 1, + aux_sym_concatenation_token1, + ACTIONS(6611), 1, + sym__concat, + STATE(2420), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1266), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189110,10 +186335,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1334), 27, + ACTIONS(1268), 24, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -189127,10 +186352,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -189139,10 +186362,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130478] = 3, + [127035] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1332), 14, + ACTIONS(6532), 1, + aux_sym_concatenation_token1, + ACTIONS(6613), 1, + sym__concat, + STATE(2420), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189151,15 +186380,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1334), 26, + ACTIONS(1288), 24, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -189167,16 +186396,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -189184,15 +186411,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130526] = 5, + [127090] = 5, ACTIONS(71), 1, sym_comment, - STATE(2483), 1, + STATE(2414), 1, aux_sym_concatenation_repeat1, - ACTIONS(6692), 2, + ACTIONS(6474), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1251), 13, + ACTIONS(4593), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189206,8 +186433,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1253), 24, + ACTIONS(4595), 25, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -189231,57 +186459,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130578] = 5, + [127143] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6695), 1, - sym__special_character, - STATE(2557), 1, - aux_sym__literal_repeat1, - ACTIONS(243), 14, - anon_sym_EQ, + STATE(2420), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6615), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1276), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(354), 24, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1278), 24, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [130630] = 3, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [127196] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1320), 14, + ACTIONS(1316), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -189296,9 +186525,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1322), 26, + ACTIONS(1318), 27, + sym__concat, sym_test_operator, - sym_extglob_pattern, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -189323,15 +186552,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [130678] = 5, + aux_sym_concatenation_token1, + [127245] = 5, ACTIONS(71), 1, sym_comment, - STATE(2486), 1, + STATE(2422), 1, aux_sym_concatenation_repeat1, - ACTIONS(6697), 2, + ACTIONS(6618), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1251), 14, + ACTIONS(1276), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189346,7 +186576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1253), 23, + ACTIONS(1278), 24, sym_file_descriptor, sym_test_operator, sym__brace_start, @@ -189361,6 +186591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, @@ -189370,15 +186601,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130730] = 5, + [127298] = 5, ACTIONS(71), 1, sym_comment, - STATE(2543), 1, + STATE(2423), 1, aux_sym_concatenation_repeat1, - ACTIONS(6664), 2, + ACTIONS(6621), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(5389), 13, + ACTIONS(1276), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189392,8 +186623,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5391), 24, + ACTIONS(1278), 25, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -189417,158 +186649,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130782] = 6, + [127351] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6668), 1, - aux_sym_concatenation_token1, - ACTIONS(6700), 1, - sym__concat, - STATE(2486), 1, + STATE(2507), 1, aux_sym_concatenation_repeat1, - ACTIONS(1286), 14, + ACTIONS(1113), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1272), 15, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1288), 23, - sym_file_descriptor, + ACTIONS(1274), 23, sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [130836] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [127404] = 5, ACTIONS(71), 1, sym_comment, - STATE(2488), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6668), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5389), 14, + ACTIONS(6567), 1, + sym__special_character, + STATE(2370), 1, + aux_sym__literal_repeat1, + ACTIONS(4504), 14, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(5391), 23, + ACTIONS(4506), 25, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130888] = 5, - ACTIONS(71), 1, + [127457] = 26, + ACTIONS(3), 1, sym_comment, - STATE(2494), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6668), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5393), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6490), 1, anon_sym_DOLLAR, + ACTIONS(6492), 1, sym__special_character, + ACTIONS(6494), 1, + anon_sym_DQUOTE, + ACTIONS(6496), 1, aux_sym_number_token1, + ACTIONS(6498), 1, aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6504), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(5395), 23, - sym_file_descriptor, + ACTIONS(6506), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6510), 1, sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, sym__brace_start, + ACTIONS(6626), 1, + anon_sym_esac, + ACTIONS(6628), 1, + aux_sym_heredoc_redirect_token1, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(6905), 1, + sym_last_case_item, + ACTIONS(6478), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(6508), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130940] = 6, + STATE(3440), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6476), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6624), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [127552] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1077), 1, - aux_sym_concatenation_token1, - ACTIONS(6702), 1, - sym__concat, - STATE(2464), 1, + ACTIONS(1376), 1, + sym_test_operator, + STATE(2528), 1, aux_sym_concatenation_repeat1, - ACTIONS(1265), 14, + ACTIONS(1113), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(6632), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -189583,8 +186839,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1267), 23, - sym_test_operator, + ACTIONS(6630), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -189604,37 +186861,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [130994] = 3, + [127607] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6490), 1, + anon_sym_DOLLAR, + ACTIONS(6492), 1, + sym__special_character, + ACTIONS(6494), 1, + anon_sym_DQUOTE, + ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, + aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6502), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6504), 1, + anon_sym_BQUOTE, + ACTIONS(6506), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6510), 1, + sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(6636), 1, + anon_sym_esac, + ACTIONS(6638), 1, + aux_sym_heredoc_redirect_token1, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(7345), 1, + sym_last_case_item, + ACTIONS(6478), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6508), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3190), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6476), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6634), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [127702] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6490), 1, + anon_sym_DOLLAR, + ACTIONS(6492), 1, + sym__special_character, + ACTIONS(6494), 1, + anon_sym_DQUOTE, + ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, + aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6502), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6504), 1, + anon_sym_BQUOTE, + ACTIONS(6506), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6510), 1, + sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(6642), 1, + anon_sym_esac, + ACTIONS(6644), 1, + aux_sym_heredoc_redirect_token1, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(7352), 1, + sym_last_case_item, + ACTIONS(6478), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6508), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3191), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6476), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6640), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [127797] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1261), 14, + ACTIONS(1356), 14, anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(1263), 26, + ACTIONS(1358), 27, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -189643,24 +187039,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131042] = 5, + [127846] = 3, ACTIONS(71), 1, sym_comment, - STATE(2550), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6664), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5393), 13, + ACTIONS(1344), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189669,13 +187059,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5395), 24, + ACTIONS(1346), 27, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -189683,6 +187076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -189691,7 +187085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -189699,16 +187093,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131094] = 6, + [127895] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6668), 1, - aux_sym_concatenation_token1, - ACTIONS(6704), 1, - sym__concat, - STATE(2486), 1, + STATE(2413), 1, aux_sym_concatenation_repeat1, - ACTIONS(1265), 14, + ACTIONS(6474), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1272), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189717,14 +187110,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1267), 23, + ACTIONS(1274), 25, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -189732,14 +187125,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -189747,16 +187141,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131148] = 6, + [127948] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1143), 1, - aux_sym_concatenation_token1, - ACTIONS(6706), 1, - sym__concat, - STATE(2312), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1265), 14, + ACTIONS(1296), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -189771,7 +187159,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1267), 23, + ACTIONS(1298), 27, + sym__concat, sym_test_operator, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, @@ -189793,12 +187182,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [131202] = 3, + anon_sym_COLON, + aux_sym_concatenation_token1, + [127997] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 14, + ACTIONS(1320), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189813,9 +187205,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1314), 26, + ACTIONS(1322), 27, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -189840,63 +187233,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131250] = 7, + [128046] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1105), 1, - aux_sym_concatenation_token1, - ACTIONS(6708), 1, - anon_sym_RBRACK, - ACTIONS(6710), 1, - sym__concat, - STATE(2533), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1273), 14, - anon_sym_EQ, + ACTIONS(6567), 1, + sym__special_character, + STATE(2370), 1, + aux_sym__literal_repeat1, + ACTIONS(4426), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1369), 22, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [131306] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1300), 13, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -189904,13 +187254,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1302), 27, + ACTIONS(4428), 25, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -189925,19 +187273,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131354] = 3, + [128099] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 14, + ACTIONS(1356), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189946,13 +187293,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1314), 26, + ACTIONS(1358), 27, sym_file_descriptor, sym__concat, sym_variable_name, @@ -189963,15 +187310,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -189979,106 +187327,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131402] = 5, - ACTIONS(71), 1, + [128148] = 26, + ACTIONS(3), 1, sym_comment, - STATE(2475), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1077), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1273), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1369), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [131454] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1203), 1, - anon_sym_RBRACK, - ACTIONS(6652), 1, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6488), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6490), 1, + anon_sym_DOLLAR, + ACTIONS(6492), 1, sym__special_character, - ACTIONS(6712), 1, - sym__concat, - STATE(2474), 1, + ACTIONS(6494), 1, + anon_sym_DQUOTE, + ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, + aux_sym_number_token2, + ACTIONS(6500), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6502), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6504), 1, + anon_sym_BQUOTE, + ACTIONS(6506), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6510), 1, + sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(6648), 1, + anon_sym_esac, + ACTIONS(6650), 1, + aux_sym_heredoc_redirect_token1, + STATE(6459), 1, aux_sym__literal_repeat1, - ACTIONS(243), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, + STATE(6978), 1, + sym_last_case_item, + ACTIONS(6478), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6508), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3441), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6476), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6646), 3, + anon_sym_SEMI, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(354), 22, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [131510] = 3, + anon_sym_SEMI_SEMI, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [128243] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 13, + ACTIONS(1324), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -190087,12 +187408,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1298), 27, + ACTIONS(1326), 27, sym_file_descriptor, sym__concat, sym_variable_name, @@ -190103,6 +187425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -190112,7 +187435,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -190120,57 +187442,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131558] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2473), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1143), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1273), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1369), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [131610] = 3, + [128292] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 14, + ACTIONS(1328), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -190185,9 +187460,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1294), 26, + ACTIONS(1330), 27, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -190212,10 +187488,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131658] = 3, + [128341] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1336), 14, + ACTIONS(1308), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -190230,9 +187506,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1338), 26, + ACTIONS(1310), 27, + sym__concat, sym_test_operator, - sym_extglob_pattern, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -190257,58 +187533,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [131706] = 6, + aux_sym_concatenation_token1, + [128390] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1369), 1, - sym_test_operator, - STATE(2475), 1, + STATE(2414), 1, aux_sym_concatenation_repeat1, - ACTIONS(1077), 2, + ACTIONS(6474), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(6600), 14, - anon_sym_EQ, + ACTIONS(2167), 13, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6598), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(2169), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [131760] = 3, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [128443] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1316), 13, + ACTIONS(1276), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -190317,12 +187594,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1318), 27, + ACTIONS(1278), 27, sym_file_descriptor, sym__concat, sym_variable_name, @@ -190333,6 +187611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -190342,7 +187621,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -190350,10 +187628,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131808] = 3, + [128492] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1320), 13, + ACTIONS(1308), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -190362,15 +187640,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1322), 27, + ACTIONS(1310), 26, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -190378,6 +187656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -190387,7 +187666,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -190395,58 +187673,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131856] = 6, + [128540] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1369), 1, - sym_test_operator, - STATE(2475), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1077), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(6594), 14, - anon_sym_EQ, + ACTIONS(1336), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6592), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1338), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [131910] = 3, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [128588] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1328), 13, + ACTIONS(1340), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -190455,15 +187730,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1330), 27, + ACTIONS(1342), 26, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -190471,6 +187746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -190480,7 +187756,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -190488,57 +187763,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131958] = 5, + [128636] = 3, ACTIONS(71), 1, sym_comment, - STATE(2511), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6714), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1251), 14, - anon_sym_EQ, + ACTIONS(1292), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1253), 23, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1294), 26, + sym_file_descriptor, + sym__concat, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [132010] = 3, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [128684] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1340), 13, + ACTIONS(1348), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -190547,15 +187820,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1342), 27, + ACTIONS(1350), 26, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -190563,6 +187836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -190572,7 +187846,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -190580,10 +187853,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132058] = 3, + [128732] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1352), 13, + ACTIONS(1292), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -190596,8 +187869,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1354), 27, + ACTIONS(1294), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -190613,7 +187887,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -190625,10 +187898,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132106] = 3, + [128780] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1251), 13, + ACTIONS(1352), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -190637,15 +187910,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1253), 27, + ACTIONS(1354), 26, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -190653,6 +187926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -190662,7 +187936,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -190670,10 +187943,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132154] = 3, + [128828] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1356), 13, + ACTIONS(1356), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -190682,15 +187955,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1358), 27, + ACTIONS(1358), 26, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -190698,6 +187971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -190707,7 +187981,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -190715,10 +187988,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132202] = 3, + [128876] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1344), 13, + ACTIONS(1344), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -190727,15 +188000,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1346), 27, + ACTIONS(1346), 26, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -190743,6 +188016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -190752,7 +188026,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -190760,10 +188033,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132250] = 3, + [128924] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1336), 13, + ACTIONS(1356), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -190772,15 +188045,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1338), 27, + ACTIONS(1358), 26, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -190788,6 +188061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -190797,7 +188071,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -190805,10 +188078,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132298] = 3, + [128972] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1324), 13, + ACTIONS(1348), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -190821,8 +188094,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1326), 27, + ACTIONS(1350), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -190838,7 +188112,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -190850,55 +188123,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132346] = 3, + [129020] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1340), 14, - anon_sym_EQ, + ACTIONS(6652), 1, + aux_sym_concatenation_token1, + ACTIONS(6654), 1, + sym__concat, + STATE(2458), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1266), 13, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1342), 26, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1268), 24, + sym_file_descriptor, sym_test_operator, - sym_extglob_pattern, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [132394] = 3, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [129074] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 13, + ACTIONS(6652), 1, + aux_sym_concatenation_token1, + ACTIONS(6656), 1, + sym__concat, + STATE(2458), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -190912,10 +188194,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1314), 27, + ACTIONS(1288), 24, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -190931,7 +188211,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -190940,15 +188219,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132442] = 5, + [129128] = 6, ACTIONS(71), 1, sym_comment, - STATE(2551), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1105), 2, - sym__concat, + ACTIONS(1087), 1, aux_sym_concatenation_token1, - ACTIONS(1273), 14, + ACTIONS(6658), 1, + sym__concat, + STATE(2467), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1266), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -190963,7 +188243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1369), 23, + ACTIONS(1268), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -190987,10 +188267,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [132494] = 3, + [129182] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4552), 14, + ACTIONS(4511), 14, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -191005,7 +188285,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(4554), 26, + ACTIONS(4513), 26, sym_file_descriptor, sym_test_operator, sym__bare_dollar, @@ -191032,10 +188312,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132542] = 3, + [129230] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1336), 14, + STATE(2458), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6660), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1276), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191044,15 +188329,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1338), 26, + ACTIONS(1278), 24, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -191060,7 +188343,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -191069,7 +188351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -191077,10 +188359,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132590] = 3, + [129282] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1352), 14, + ACTIONS(1087), 1, + aux_sym_concatenation_token1, + ACTIONS(6663), 1, + sym__concat, + STATE(2467), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -191095,10 +188383,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1354), 26, + ACTIONS(1288), 23, sym_test_operator, - sym_extglob_pattern, - anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -191118,14 +188404,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [132638] = 3, + [129336] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1348), 13, + ACTIONS(6665), 1, + sym__special_character, + STATE(2540), 1, + aux_sym__literal_repeat1, + ACTIONS(5593), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191137,11 +188426,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1350), 27, + ACTIONS(5595), 26, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -191150,6 +188437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -191158,19 +188446,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132686] = 3, + [129388] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 14, + ACTIONS(1352), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191185,7 +188472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1310), 26, + ACTIONS(1354), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -191212,14 +188499,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132734] = 3, + [129436] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 14, + ACTIONS(1087), 1, + aux_sym_concatenation_token1, + ACTIONS(6667), 1, + anon_sym_RBRACK, + ACTIONS(6669), 1, + sym__concat, + STATE(2459), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1376), 22, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [129492] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1207), 1, + anon_sym_RBRACK, + ACTIONS(6671), 1, + sym__special_character, + ACTIONS(6673), 1, + sym__concat, + STATE(2487), 1, + aux_sym__literal_repeat1, + ACTIONS(243), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(290), 22, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [129548] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4593), 14, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -191227,14 +188614,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1306), 26, + ACTIONS(4595), 26, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -191246,9 +188630,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [129596] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2454), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6652), 2, + sym__concat, aux_sym_concatenation_token1, + ACTIONS(1272), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1274), 24, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -191257,10 +188689,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132782] = 3, + [129648] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 14, + ACTIONS(1296), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191273,9 +188705,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1310), 26, + ACTIONS(1298), 27, sym_file_descriptor, sym__concat, sym_variable_name, @@ -191291,6 +188722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -191302,10 +188734,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132830] = 3, + [129696] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 14, + STATE(2467), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6675), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1276), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -191320,10 +188757,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1310), 26, + ACTIONS(1278), 23, sym_test_operator, - sym_extglob_pattern, - anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -191343,14 +188778,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [132878] = 3, + [129748] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 14, + ACTIONS(1324), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -191365,7 +188799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1306), 26, + ACTIONS(1326), 26, sym_test_operator, sym_extglob_pattern, anon_sym_RPAREN_RPAREN, @@ -191392,10 +188826,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [132926] = 3, + [129796] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 14, + ACTIONS(1348), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -191410,7 +188844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1310), 26, + ACTIONS(1350), 26, sym_test_operator, sym_extglob_pattern, anon_sym_RPAREN_RPAREN, @@ -191437,63 +188871,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [132974] = 5, + [129844] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(6662), 1, - sym__special_character, - STATE(2568), 1, - aux_sym__literal_repeat1, - ACTIONS(4467), 12, + ACTIONS(1087), 1, + aux_sym_concatenation_token1, + ACTIONS(6678), 1, + anon_sym_RBRACK, + ACTIONS(6680), 1, + sym__concat, + STATE(2459), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4469), 26, - sym_file_descriptor, - sym_variable_name, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1376), 22, sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [133026] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [129900] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(1105), 1, - aux_sym_concatenation_token1, - ACTIONS(6717), 1, + ACTIONS(1141), 1, + anon_sym_RBRACK, + ACTIONS(6671), 1, + sym__special_character, + ACTIONS(6682), 1, sym__concat, - STATE(2511), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1286), 14, + STATE(2487), 1, + aux_sym__literal_repeat1, + ACTIONS(243), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -191508,7 +188946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1288), 23, + ACTIONS(290), 22, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -191529,19 +188967,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [133080] = 3, + [129956] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4370), 14, + ACTIONS(1304), 13, anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -191549,11 +188984,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(4372), 26, + ACTIONS(1306), 27, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -191568,19 +189005,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [133128] = 3, + [130004] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 13, + ACTIONS(1276), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191594,7 +189031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1310), 27, + ACTIONS(1278), 27, sym_file_descriptor, sym__concat, sym_variable_name, @@ -191622,60 +189059,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [133176] = 3, + [130052] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1356), 14, + ACTIONS(1332), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1358), 26, - sym_file_descriptor, - sym__concat, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1334), 26, sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + sym_extglob_pattern, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [133224] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [130100] = 3, ACTIONS(71), 1, sym_comment, - STATE(2723), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1143), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1261), 14, + ACTIONS(1352), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -191690,8 +189122,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1263), 23, + ACTIONS(1354), 26, sym_test_operator, + sym_extglob_pattern, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -191711,113 +189145,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym__special_character, - [133276] = 5, - ACTIONS(71), 1, + anon_sym_COLON, + [130148] = 6, + ACTIONS(3), 1, sym_comment, - STATE(2564), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6656), 2, - sym__concat, + ACTIONS(5977), 1, aux_sym_concatenation_token1, - ACTIONS(5476), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(5478), 23, + ACTIONS(6684), 1, + sym__concat, + STATE(1743), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1266), 33, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [133328] = 5, - ACTIONS(71), 1, + sym_word, + [130202] = 6, + ACTIONS(3), 1, sym_comment, - STATE(2553), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6656), 2, - sym__concat, + ACTIONS(5977), 1, aux_sym_concatenation_token1, - ACTIONS(5468), 14, + ACTIONS(6686), 1, + sym__concat, + STATE(1743), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1286), 33, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(5470), 23, + [130256] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5977), 1, + aux_sym_concatenation_token1, + ACTIONS(5991), 1, + sym__concat, + STATE(2476), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1272), 33, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [133380] = 6, + sym_word, + [130310] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1105), 1, - aux_sym_concatenation_token1, - ACTIONS(6719), 1, - sym__concat, - STATE(2511), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1265), 14, + ACTIONS(1336), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -191832,8 +189311,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1267), 23, + ACTIONS(1338), 26, sym_test_operator, + sym_extglob_pattern, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -191853,111 +189334,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [133434] = 5, + anon_sym_COLON, + [130358] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(6662), 1, - sym__special_character, - STATE(2568), 1, - aux_sym__literal_repeat1, - ACTIONS(5695), 12, + ACTIONS(1157), 1, + aux_sym_concatenation_token1, + ACTIONS(6688), 1, + sym__concat, + STATE(2492), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1266), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5697), 26, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [133486] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1304), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1306), 27, - sym_file_descriptor, - sym__concat, - sym_variable_name, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1268), 23, sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [133534] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [130412] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6664), 1, - aux_sym_concatenation_token1, - ACTIONS(6721), 1, - sym__concat, - STATE(2483), 1, + STATE(2501), 1, aux_sym_concatenation_repeat1, - ACTIONS(1286), 13, + ACTIONS(6690), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5315), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191966,12 +189403,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1288), 24, + ACTIONS(5317), 23, sym_file_descriptor, sym_test_operator, sym__brace_start, @@ -191980,15 +189418,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -191996,55 +189433,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [133588] = 3, + [130464] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1294), 26, - sym_file_descriptor, + STATE(2502), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6690), 2, sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [133636] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1332), 14, + ACTIONS(5319), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -192053,16 +189450,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1334), 26, + ACTIONS(5321), 23, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -192070,6 +189465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -192077,8 +189473,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -192086,18 +189480,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [133684] = 7, + [130516] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(1105), 1, + ACTIONS(1087), 1, aux_sym_concatenation_token1, - ACTIONS(6723), 1, + ACTIONS(6692), 1, anon_sym_RBRACK, - ACTIONS(6725), 1, + ACTIONS(6694), 1, sym__concat, - STATE(2533), 1, + STATE(2459), 1, aux_sym_concatenation_repeat1, - ACTIONS(1273), 14, + ACTIONS(1253), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -192112,7 +189506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1369), 22, + ACTIONS(1376), 22, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -192135,16 +189529,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [133740] = 7, + [130572] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(1123), 1, + ACTIONS(1079), 1, anon_sym_RBRACK, - ACTIONS(6652), 1, + ACTIONS(6671), 1, sym__special_character, - ACTIONS(6727), 1, + ACTIONS(6696), 1, sym__concat, - STATE(2474), 1, + STATE(2487), 1, aux_sym__literal_repeat1, ACTIONS(243), 14, anon_sym_EQ, @@ -192161,7 +189555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(354), 22, + ACTIONS(290), 22, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -192184,65 +189578,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [133796] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2548), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6729), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1251), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1253), 23, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [133848] = 7, + [130628] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1105), 1, + ACTIONS(1113), 1, aux_sym_concatenation_token1, - ACTIONS(6732), 1, - anon_sym_RBRACK, - ACTIONS(6734), 1, + ACTIONS(6698), 1, sym__concat, - STATE(2533), 1, + STATE(2279), 1, aux_sym_concatenation_repeat1, - ACTIONS(1273), 14, + ACTIONS(1266), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -192257,8 +189602,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1369), 22, + ACTIONS(1268), 23, sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -192280,62 +189626,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [133904] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6664), 1, - aux_sym_concatenation_token1, - ACTIONS(6736), 1, - sym__concat, - STATE(2483), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1265), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1267), 24, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [133958] = 6, + [130682] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1105), 1, + ACTIONS(1157), 1, aux_sym_concatenation_token1, - ACTIONS(6738), 1, + ACTIONS(6700), 1, sym__concat, - STATE(2511), 1, + STATE(2492), 1, aux_sym_concatenation_repeat1, ACTIONS(1286), 14, anon_sym_EQ, @@ -192373,21 +189671,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [134012] = 7, + [130736] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1119), 1, - anon_sym_RBRACK, - ACTIONS(6652), 1, + ACTIONS(6702), 1, sym__special_character, - ACTIONS(6740), 1, - sym__concat, - STATE(2474), 1, + STATE(2487), 1, aux_sym__literal_repeat1, - ACTIONS(243), 14, + ACTIONS(1360), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -192402,7 +189696,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(354), 22, + ACTIONS(1362), 24, + sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -192423,111 +189718,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [134068] = 6, + [130788] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(6656), 1, + ACTIONS(1087), 1, aux_sym_concatenation_token1, - ACTIONS(6742), 1, + ACTIONS(6705), 1, + anon_sym_RBRACK, + ACTIONS(6707), 1, sym__concat, - STATE(2548), 1, + STATE(2459), 1, aux_sym_concatenation_repeat1, - ACTIONS(1286), 14, + ACTIONS(1253), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1288), 23, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1376), 22, sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [134122] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [130844] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 13, + ACTIONS(1149), 1, + anon_sym_RBRACK, + ACTIONS(6671), 1, + sym__special_character, + ACTIONS(6709), 1, + sym__concat, + STATE(2487), 1, + aux_sym__literal_repeat1, + ACTIONS(243), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1310), 27, - sym_file_descriptor, - sym__concat, - sym_variable_name, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(290), 22, sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [134170] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [130900] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(1105), 1, + ACTIONS(1087), 1, aux_sym_concatenation_token1, - ACTIONS(6744), 1, + ACTIONS(6711), 1, + anon_sym_RBRACK, + ACTIONS(6713), 1, sym__concat, - STATE(2511), 1, + STATE(2459), 1, aux_sym_concatenation_repeat1, - ACTIONS(1265), 14, + ACTIONS(1253), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -192542,7 +189845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1267), 23, + ACTIONS(1376), 22, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -192563,62 +189866,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [134224] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4463), 14, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4465), 26, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [134272] = 5, + [130956] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(6746), 1, + ACTIONS(1145), 1, + anon_sym_RBRACK, + ACTIONS(6671), 1, sym__special_character, - STATE(2557), 1, + ACTIONS(6715), 1, + sym__concat, + STATE(2487), 1, aux_sym__literal_repeat1, - ACTIONS(1362), 14, + ACTIONS(243), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -192633,9 +189894,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1364), 24, + ACTIONS(290), 22, sym_test_operator, - anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -192657,58 +189917,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [134324] = 3, + [131012] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(4530), 14, + STATE(2492), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6717), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1276), 14, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4532), 26, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1278), 23, sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [134372] = 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [131064] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6753), 1, - sym_extglob_pattern, - ACTIONS(6751), 14, + ACTIONS(1356), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -192723,8 +189982,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6749), 25, + ACTIONS(1358), 26, sym_test_operator, + sym_extglob_pattern, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -192749,63 +190009,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [134422] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1316), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1318), 26, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [134470] = 7, + [131112] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1097), 1, - anon_sym_RBRACK, - ACTIONS(6652), 1, - sym__special_character, - ACTIONS(6755), 1, - sym__concat, - STATE(2474), 1, - aux_sym__literal_repeat1, - ACTIONS(243), 14, + ACTIONS(1344), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -192820,8 +190027,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(354), 22, + ACTIONS(1346), 26, sym_test_operator, + sym_extglob_pattern, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -192841,65 +190050,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [134526] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5460), 14, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5462), 26, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [134574] = 7, + anon_sym_COLON, + [131160] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1105), 1, - aux_sym_concatenation_token1, - ACTIONS(6757), 1, - anon_sym_RBRACK, - ACTIONS(6759), 1, - sym__concat, - STATE(2533), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1273), 14, + ACTIONS(1356), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -192914,8 +190072,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1369), 22, + ACTIONS(1358), 26, sym_test_operator, + sym_extglob_pattern, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -192935,18 +190095,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [134630] = 6, + anon_sym_COLON, + [131208] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6656), 1, - aux_sym_concatenation_token1, - ACTIONS(6761), 1, - sym__concat, - STATE(2548), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1265), 14, + ACTIONS(1308), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -192959,10 +190115,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1267), 23, + ACTIONS(1310), 27, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -192975,8 +190132,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -192985,10 +190144,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [134684] = 3, + [131256] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(1312), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -193001,9 +190160,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1302), 26, + ACTIONS(1314), 27, sym_file_descriptor, sym__concat, sym_variable_name, @@ -193019,6 +190177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -193030,55 +190189,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [134732] = 3, + [131304] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1348), 14, + STATE(2486), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1157), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1253), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1350), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1376), 23, sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [131356] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1376), 1, + sym_test_operator, + STATE(2486), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1157), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(6632), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6630), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [131410] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1376), 1, + sym_test_operator, + STATE(2486), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1157), 2, + sym__concat, aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [134780] = 3, + ACTIONS(6548), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6546), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [131464] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1344), 14, + ACTIONS(6690), 1, + aux_sym_concatenation_token1, + ACTIONS(6720), 1, + sym__concat, + STATE(2504), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1266), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -193093,9 +190356,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1346), 26, + ACTIONS(1268), 23, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -193109,10 +190371,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -193120,14 +190380,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [134828] = 5, + [131518] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(6763), 1, - sym__special_character, - STATE(2568), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 12, + ACTIONS(6690), 1, + aux_sym_concatenation_token1, + ACTIONS(6722), 1, + sym__concat, + STATE(2504), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -193136,13 +190398,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(1364), 26, + ACTIONS(1288), 23, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -193156,25 +190419,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [134880] = 5, + [131572] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6662), 1, + ACTIONS(6671), 1, sym__special_character, - STATE(2568), 1, + STATE(2487), 1, aux_sym__literal_repeat1, - ACTIONS(4564), 12, + ACTIONS(243), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(290), 24, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [131624] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2504), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6724), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1276), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -193183,13 +190492,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(4566), 26, + ACTIONS(1278), 23, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -193203,21 +190513,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [134932] = 3, + [131676] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 14, + ACTIONS(1316), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -193226,15 +190534,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1310), 26, + ACTIONS(1318), 27, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -193242,7 +190550,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -193252,6 +190559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -193259,10 +190567,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [134980] = 3, + [131724] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1320), 14, + ACTIONS(1300), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -193271,15 +190579,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1322), 26, + ACTIONS(1302), 27, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -193287,7 +190595,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -193297,70 +190604,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [135028] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6013), 1, - aux_sym_concatenation_token1, - ACTIONS(6015), 1, - sym__concat, - STATE(2471), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5391), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5389), 33, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [135082] = 5, + [131772] = 6, ACTIONS(71), 1, sym_comment, - STATE(2582), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1143), 2, - sym__concat, + ACTIONS(1113), 1, aux_sym_concatenation_token1, - ACTIONS(1273), 14, + ACTIONS(6727), 1, + sym__concat, + STATE(2279), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1266), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -193375,7 +190636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1369), 23, + ACTIONS(1268), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -193396,62 +190657,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [135134] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1296), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1298), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [135182] = 6, + [131826] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1143), 1, + ACTIONS(1113), 1, aux_sym_concatenation_token1, - ACTIONS(6766), 1, + ACTIONS(6729), 1, sym__concat, - STATE(2312), 1, + STATE(2279), 1, aux_sym_concatenation_repeat1, ACTIONS(1286), 14, anon_sym_EQ, @@ -193470,7 +190686,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(1288), 23, sym_test_operator, - anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -193490,57 +190705,257 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [135236] = 3, + [131880] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1328), 14, - anon_sym_PIPE, - anon_sym_LT, + STATE(2511), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1087), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1253), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1330), 26, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1376), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [131932] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1087), 1, + aux_sym_concatenation_token1, + ACTIONS(6731), 1, sym__concat, + STATE(2467), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1266), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1268), 23, sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [131986] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1087), 1, + aux_sym_concatenation_token1, + ACTIONS(6733), 1, + sym__concat, + STATE(2467), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1288), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [132040] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1113), 1, aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [135284] = 3, + ACTIONS(6735), 1, + sym__concat, + STATE(2279), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1266), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1268), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [132094] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1340), 14, + ACTIONS(1113), 1, + aux_sym_concatenation_token1, + ACTIONS(6737), 1, + sym__concat, + STATE(2279), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1288), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [132148] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2546), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6739), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5507), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -193549,15 +190964,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1342), 26, + ACTIONS(5509), 23, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -193565,16 +190979,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -193582,21 +190994,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [135332] = 6, + [132200] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6013), 1, + ACTIONS(5977), 1, aux_sym_concatenation_token1, - ACTIONS(6015), 1, + ACTIONS(5991), 1, sym__concat, - STATE(2470), 1, + STATE(2476), 1, aux_sym_concatenation_repeat1, - ACTIONS(5395), 4, + ACTIONS(5317), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5393), 33, + ACTIONS(5315), 33, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -193630,55 +191042,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [135386] = 3, - ACTIONS(71), 1, + [132254] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1326), 26, - sym_file_descriptor, + ACTIONS(5977), 1, + aux_sym_concatenation_token1, + ACTIONS(5991), 1, sym__concat, - sym_variable_name, + STATE(2477), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5321), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5319), 33, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [135434] = 3, + sym_word, + [132308] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1251), 14, + STATE(2550), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6739), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5513), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -193693,10 +191113,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1253), 26, + ACTIONS(5515), 23, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -193711,7 +191129,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -193720,10 +191137,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [135482] = 3, + [132360] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1352), 14, + STATE(2501), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6690), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1272), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -193738,9 +191160,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1354), 26, + ACTIONS(1274), 23, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -193754,10 +191175,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -193765,58 +191184,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [135530] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1143), 1, - aux_sym_concatenation_token1, - ACTIONS(6768), 1, - sym__concat, - STATE(2312), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1286), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1288), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [135584] = 3, + [132412] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1328), 13, + ACTIONS(1336), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -193829,10 +191200,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1330), 26, + ACTIONS(1338), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -193845,7 +191218,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -193857,54 +191229,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [135631] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1261), 15, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - sym__special_character, - ACTIONS(1263), 24, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [135678] = 3, + [132460] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1348), 14, + ACTIONS(1296), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -193919,7 +191247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1350), 25, + ACTIONS(1298), 26, sym_file_descriptor, sym__concat, sym_test_operator, @@ -193935,6 +191263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -193945,54 +191274,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [135725] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1328), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1330), 25, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [135772] = 3, + [132508] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1324), 14, + ACTIONS(1344), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -194001,15 +191286,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1326), 25, + ACTIONS(1346), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -194017,7 +191303,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -194026,6 +191311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -194033,101 +191319,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [135819] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2720), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1143), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1273), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1369), 22, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [135870] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6770), 1, - anon_sym_LBRACK, - ACTIONS(6600), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6598), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [135919] = 3, + [132556] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1251), 14, + ACTIONS(1356), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -194136,15 +191331,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1253), 25, + ACTIONS(1358), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -194152,7 +191348,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -194161,6 +191356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -194168,54 +191364,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [135966] = 3, + [132604] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 14, + ACTIONS(4521), 14, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1298), 25, + ACTIONS(4523), 26, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136013] = 3, + [132652] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(6665), 1, + sym__special_character, + STATE(2540), 1, + aux_sym__literal_repeat1, + ACTIONS(4577), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -194224,15 +191425,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1302), 25, + ACTIONS(4579), 26, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -194246,116 +191445,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136060] = 3, + [132704] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1340), 14, - anon_sym_EQ, + ACTIONS(5401), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1342), 25, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [136107] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1273), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1369), 25, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [136154] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6772), 1, - sym__special_character, - STATE(2595), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -194364,10 +191474,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1364), 25, + ACTIONS(5403), 26, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -194382,6 +191492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -194390,142 +191501,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136205] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1308), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1310), 25, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [136252] = 3, + [132752] = 3, ACTIONS(71), 1, sym_comment, ACTIONS(1304), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1306), 25, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [136299] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1308), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1310), 25, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [136346] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1332), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -194540,7 +191519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1334), 25, + ACTIONS(1306), 26, sym_file_descriptor, sym__concat, sym_test_operator, @@ -194556,6 +191535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -194566,10 +191546,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136393] = 3, + [132800] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 14, + ACTIONS(1276), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -194584,7 +191564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1294), 25, + ACTIONS(1278), 26, sym_file_descriptor, sym__concat, sym_test_operator, @@ -194600,6 +191580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -194610,12 +191591,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136440] = 4, + [132848] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(6775), 1, - sym_extglob_pattern, - ACTIONS(6751), 14, + ACTIONS(1113), 1, + aux_sym_concatenation_token1, + ACTIONS(6741), 1, + sym__concat, + STATE(2279), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -194630,9 +191615,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6749), 24, - sym__concat, + ACTIONS(1288), 23, sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -194652,21 +191637,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [136489] = 5, + [132902] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6777), 1, - sym__special_character, - STATE(2602), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 12, + ACTIONS(1272), 14, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -194675,16 +191657,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1364), 25, + ACTIONS(1274), 26, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -194693,6 +191675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -194701,10 +191684,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136540] = 3, + [132950] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1352), 14, + STATE(2528), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1113), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1253), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -194719,9 +191707,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1354), 25, - sym__concat, + ACTIONS(1376), 23, sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -194741,14 +191729,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [136587] = 3, + [133002] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1316), 14, + STATE(2454), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6652), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5315), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -194757,15 +191748,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1318), 25, + ACTIONS(5317), 24, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -194773,15 +191762,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -194789,10 +191778,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136634] = 3, + [133054] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1320), 14, + STATE(2455), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6652), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5319), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -194801,15 +191795,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1322), 25, + ACTIONS(5321), 24, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -194817,15 +191809,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -194833,54 +191825,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136681] = 3, + [133106] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1328), 14, + ACTIONS(4517), 14, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1330), 25, + ACTIONS(4519), 26, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136728] = 3, + [133154] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1340), 14, + ACTIONS(6743), 1, + sym__special_character, + STATE(2534), 1, + aux_sym__literal_repeat1, + ACTIONS(1360), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1362), 24, + sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [133206] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1312), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -194895,7 +191935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1342), 25, + ACTIONS(1314), 26, sym_file_descriptor, sym__concat, sym_test_operator, @@ -194911,6 +191951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -194921,10 +191962,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136775] = 3, + [133254] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1352), 14, + ACTIONS(1316), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -194939,7 +191980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1354), 25, + ACTIONS(1318), 26, sym_file_descriptor, sym__concat, sym_test_operator, @@ -194955,6 +191996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -194965,10 +192007,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136822] = 3, + [133302] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1356), 14, + ACTIONS(1340), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -194977,15 +192019,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1358), 25, + ACTIONS(1342), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -194993,7 +192036,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -195002,6 +192044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -195009,10 +192052,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136869] = 3, + [133350] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1344), 14, + ACTIONS(1296), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -195021,15 +192064,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1346), 25, + ACTIONS(1298), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -195037,7 +192081,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -195046,6 +192089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -195053,10 +192097,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136916] = 3, + [133398] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1336), 14, + ACTIONS(1300), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -195071,7 +192115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1338), 25, + ACTIONS(1302), 26, sym_file_descriptor, sym__concat, sym_test_operator, @@ -195087,6 +192131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -195097,15 +192142,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136963] = 5, + [133446] = 5, ACTIONS(71), 1, sym_comment, - STATE(2618), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6780), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5393), 13, + ACTIONS(6746), 1, + sym__special_character, + STATE(2540), 1, + aux_sym__literal_repeat1, + ACTIONS(1360), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -195117,10 +192161,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(5395), 23, + ACTIONS(1362), 26, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -195128,30 +192172,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [137014] = 5, + [133498] = 3, ACTIONS(71), 1, sym_comment, - STATE(2619), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6780), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5389), 13, + ACTIONS(1304), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -195164,9 +192205,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(5391), 23, + ACTIONS(1306), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -195181,6 +192225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -195189,10 +192234,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [137065] = 3, + [133546] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 14, + ACTIONS(1276), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -195201,15 +192246,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1314), 25, + ACTIONS(1278), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -195217,7 +192263,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -195226,6 +192271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -195233,10 +192279,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [137112] = 3, + [133594] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 14, + ACTIONS(1320), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -195245,15 +192291,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1310), 25, + ACTIONS(1322), 27, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -195261,15 +192307,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -195277,10 +192324,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [137159] = 3, + [133642] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 14, + ACTIONS(1308), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -195289,15 +192336,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1306), 25, + ACTIONS(1310), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -195305,7 +192353,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -195314,6 +192361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -195321,10 +192369,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [137206] = 3, + [133690] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 14, + ACTIONS(1312), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -195333,15 +192381,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1310), 25, + ACTIONS(1314), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -195349,7 +192398,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -195358,6 +192406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -195365,16 +192414,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [137253] = 6, + [133738] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(6780), 1, + ACTIONS(6739), 1, aux_sym_concatenation_token1, - ACTIONS(6782), 1, + ACTIONS(6749), 1, sym__concat, - STATE(2620), 1, + STATE(2552), 1, aux_sym_concatenation_repeat1, - ACTIONS(1265), 13, + ACTIONS(1266), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -195387,8 +192436,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1267), 23, + ACTIONS(1268), 23, sym_file_descriptor, sym_test_operator, sym__brace_start, @@ -195412,45 +192462,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [137306] = 6, + [133792] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6780), 1, - aux_sym_concatenation_token1, - ACTIONS(6784), 1, - sym__concat, - STATE(2620), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1286), 13, + ACTIONS(6755), 1, + sym_extglob_pattern, + ACTIONS(6753), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1288), 23, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6751), 25, + sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [133842] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6757), 1, + sym__special_character, + STATE(2534), 1, + aux_sym__literal_repeat1, + ACTIONS(243), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(290), 24, + sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [133894] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1324), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1326), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -195459,15 +192600,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [137359] = 5, + [133942] = 6, ACTIONS(71), 1, sym_comment, - STATE(2620), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6786), 2, - sym__concat, + ACTIONS(6739), 1, aux_sym_concatenation_token1, - ACTIONS(1251), 13, + ACTIONS(6759), 1, + sym__concat, + STATE(2552), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -195480,8 +192622,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1253), 23, + ACTIONS(1288), 23, sym_file_descriptor, sym_test_operator, sym__brace_start, @@ -195505,55 +192648,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [137410] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6791), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6789), 23, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [137459] = 3, + [133996] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(2072), 13, + ACTIONS(1328), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -195562,13 +192660,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(2074), 26, + ACTIONS(1330), 27, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -195577,7 +192676,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -195586,18 +192684,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [137506] = 3, + [134044] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(4552), 13, + STATE(2552), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6761), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1276), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -195606,14 +192710,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(4554), 26, + ACTIONS(1278), 23, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -195621,71 +192725,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [137553] = 3, + [134096] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1356), 14, - anon_sym_EQ, + ACTIONS(1316), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1358), 25, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1318), 26, + sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - [137600] = 3, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [134144] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1344), 14, + STATE(2508), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1113), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1253), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -195700,8 +192808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1346), 25, - sym__concat, + ACTIONS(1376), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -195722,14 +192829,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [137647] = 3, + [134196] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 14, + ACTIONS(1332), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -195742,11 +192848,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1310), 25, + ACTIONS(1334), 27, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -195759,6 +192865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -195770,10 +192877,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [137694] = 3, + [134244] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6797), 14, + ACTIONS(1087), 1, + aux_sym_concatenation_token1, + STATE(2459), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -195788,9 +192899,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6795), 25, + ACTIONS(1376), 24, + sym__concat, sym_test_operator, - anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -195810,14 +192921,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [137741] = 3, + [134296] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 14, + ACTIONS(1300), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -195832,9 +192942,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1306), 25, + ACTIONS(1302), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -195858,10 +192969,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [137788] = 3, + [134344] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 14, + ACTIONS(1336), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -195874,11 +192985,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1310), 25, + ACTIONS(1338), 27, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -195891,6 +193002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -195902,103 +193014,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [137835] = 3, + [134392] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1336), 14, - anon_sym_EQ, + ACTIONS(1340), 13, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1338), 25, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1342), 27, + sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [137882] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1316), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1318), 25, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - [137929] = 5, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [134440] = 5, ACTIONS(71), 1, sym_comment, - STATE(2618), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6780), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1261), 13, + ACTIONS(6665), 1, + sym__special_character, + STATE(2540), 1, + aux_sym__literal_repeat1, + ACTIONS(5315), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -196010,10 +193078,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1263), 23, + ACTIONS(5317), 26, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -196021,25 +193089,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [137980] = 3, + [134492] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1324), 13, + ACTIONS(1292), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -196053,9 +193123,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1326), 26, + ACTIONS(1294), 27, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -196080,10 +193151,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [138027] = 3, + [134540] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1251), 13, + ACTIONS(1348), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -196097,9 +193168,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1253), 26, + ACTIONS(1350), 27, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -196124,10 +193196,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [138074] = 3, + [134588] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4370), 13, + ACTIONS(1352), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -196136,13 +193208,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(4372), 26, + ACTIONS(1354), 27, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -196151,7 +193224,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -196160,18 +193232,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [138121] = 3, + [134636] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(6801), 14, + ACTIONS(1087), 1, + aux_sym_concatenation_token1, + ACTIONS(6764), 1, + anon_sym_RBRACK, + ACTIONS(6766), 1, + sym__concat, + STATE(2459), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -196186,9 +193267,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6799), 25, + ACTIONS(1376), 22, sym_test_operator, - anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -196208,14 +193288,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [138168] = 3, + [134692] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(2094), 13, + STATE(2546), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6739), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1272), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -196224,14 +193307,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(2096), 26, + ACTIONS(1274), 23, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -196239,27 +193322,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [138215] = 3, + [134744] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1348), 13, + ACTIONS(1320), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -196272,10 +193353,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1350), 26, + ACTIONS(1322), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -196288,7 +193371,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -196300,10 +193382,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [138262] = 3, + [134792] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 13, + STATE(2513), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1113), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1253), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1376), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [134844] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2637), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1113), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1272), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1274), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym__special_character, + [134896] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6665), 1, + sym__special_character, + STATE(2540), 1, + aux_sym__literal_repeat1, + ACTIONS(5587), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -196315,11 +193495,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1298), 26, + ACTIONS(5589), 26, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -196327,6 +193506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -196335,19 +193515,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [138309] = 3, + [134948] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 13, + ACTIONS(1324), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -196360,10 +193539,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1302), 26, + ACTIONS(1326), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -196376,7 +193557,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -196388,56 +193568,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [138356] = 5, + [134996] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6803), 1, - sym__special_character, - STATE(2727), 1, - aux_sym__literal_repeat1, - ACTIONS(243), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(354), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [138407] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1312), 14, + ACTIONS(1328), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -196452,9 +193586,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1314), 25, + ACTIONS(1330), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -196478,10 +193613,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [138454] = 3, + [135044] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1332), 13, + ACTIONS(6665), 1, + sym__special_character, + STATE(2540), 1, + aux_sym__literal_repeat1, + ACTIONS(4426), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -196493,11 +193632,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1334), 26, + ACTIONS(4428), 26, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -196505,6 +193643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -196513,19 +193652,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [138501] = 3, + [135096] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 13, + ACTIONS(1356), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -196539,9 +193677,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1294), 26, + ACTIONS(1358), 27, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -196566,10 +193705,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [138548] = 3, + [135144] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1336), 14, + ACTIONS(1344), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -196582,11 +193721,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1338), 25, + ACTIONS(1346), 27, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -196599,6 +193738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -196610,10 +193750,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [138595] = 3, + [135192] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1344), 14, + ACTIONS(1356), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -196626,11 +193766,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1346), 25, + ACTIONS(1358), 27, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -196643,6 +193783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -196654,54 +193795,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [138642] = 3, + [135240] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1314), 25, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(1203), 1, anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [138689] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6807), 14, + ACTIONS(6671), 1, + sym__special_character, + ACTIONS(6768), 1, + sym__concat, + STATE(2487), 1, + aux_sym__literal_repeat1, + ACTIONS(243), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -196716,9 +193821,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6805), 25, + ACTIONS(290), 22, sym_test_operator, - anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -196738,14 +193842,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [138736] = 3, + [135296] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1356), 14, + ACTIONS(1320), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -196754,13 +193856,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1358), 25, + ACTIONS(1322), 26, sym_file_descriptor, sym__concat, sym_test_operator, @@ -196770,15 +193872,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -196786,10 +193889,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [138783] = 3, + [135344] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1352), 14, + ACTIONS(1332), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -196804,9 +193907,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1354), 25, + ACTIONS(1334), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -196830,10 +193934,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [138830] = 3, + [135392] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1316), 13, + ACTIONS(1324), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -196842,12 +193946,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1318), 26, + ACTIONS(1326), 26, sym_file_descriptor, sym__concat, sym_test_operator, @@ -196857,6 +193962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -196866,7 +193972,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -196874,10 +193979,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [138877] = 3, + [135440] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1340), 14, + ACTIONS(1328), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -196886,13 +193991,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1342), 25, + ACTIONS(1330), 26, sym_file_descriptor, sym__concat, sym_test_operator, @@ -196902,15 +194007,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -196918,10 +194024,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [138924] = 3, + [135488] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1356), 13, + ACTIONS(1332), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -196930,12 +194036,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1358), 26, + ACTIONS(1334), 26, sym_file_descriptor, sym__concat, sym_test_operator, @@ -196945,6 +194052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -196954,7 +194062,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -196962,54 +194069,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [138971] = 3, + [135536] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1314), 25, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [139018] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1344), 13, + ACTIONS(1356), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -197022,10 +194085,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1346), 26, + ACTIONS(1358), 26, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -197038,7 +194103,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -197050,10 +194114,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [139065] = 3, + [135584] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1320), 14, + ACTIONS(6770), 1, + sym__special_character, + STATE(2583), 1, + aux_sym__literal_repeat1, + ACTIONS(1360), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -197068,10 +194136,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1322), 25, - sym__concat, + ACTIONS(1362), 23, sym_test_operator, - sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -197091,13 +194157,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [139112] = 3, + [135635] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1336), 14, + ACTIONS(1316), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -197112,10 +194178,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1338), 25, + ACTIONS(1318), 25, sym__concat, sym_test_operator, - sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -197138,54 +194203,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [139159] = 3, + aux_sym_concatenation_token1, + [135682] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(1340), 14, - anon_sym_EQ, + ACTIONS(5851), 2, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(5853), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1342), 25, - sym__concat, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(5856), 5, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_PIPE_AMP, anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [139206] = 3, + anon_sym_LT_LT_DASH, + ACTIONS(5849), 6, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5858), 7, + sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5861), 14, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [135737] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6807), 14, + ACTIONS(1308), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -197200,9 +194270,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6805), 25, + ACTIONS(1310), 25, + sym__concat, sym_test_operator, - anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -197222,58 +194292,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [139253] = 3, + aux_sym_concatenation_token1, + [135784] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 14, - anon_sym_EQ, + ACTIONS(5851), 2, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_LT_LT, + ACTIONS(5853), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1314), 25, - sym__concat, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(5856), 5, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_PIPE_AMP, anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [139300] = 3, + anon_sym_LT_LT_DASH, + ACTIONS(5849), 6, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5858), 7, + sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5861), 14, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [135839] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1336), 14, + ACTIONS(1300), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -197288,7 +194362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1338), 25, + ACTIONS(1302), 25, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -197314,10 +194388,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - [139347] = 3, + [135886] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1352), 14, + ACTIONS(6773), 1, + sym_extglob_pattern, + ACTIONS(6753), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -197332,10 +194408,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1354), 25, + ACTIONS(6751), 24, sym__concat, sym_test_operator, - sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -197358,10 +194433,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [139394] = 3, + [135935] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1328), 14, + ACTIONS(1332), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -197376,7 +194451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1330), 25, + ACTIONS(1334), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -197402,54 +194477,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [139441] = 3, - ACTIONS(71), 1, + [135982] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 14, - anon_sym_EQ, + ACTIONS(1235), 1, + sym_file_descriptor, + ACTIONS(2727), 1, + anon_sym_DQUOTE, + ACTIONS(6779), 1, + sym_variable_name, + STATE(4341), 1, + sym_string, + ACTIONS(6777), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6775), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 24, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [136039] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1241), 1, + sym_file_descriptor, + ACTIONS(2727), 1, + anon_sym_DQUOTE, + ACTIONS(6779), 1, + sym_variable_name, + STATE(4341), 1, + sym_string, + ACTIONS(6777), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(6775), 9, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1346), 25, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 24, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [139488] = 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [136096] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1356), 14, + ACTIONS(6781), 1, + sym__special_character, + STATE(2728), 1, + aux_sym__literal_repeat1, + ACTIONS(243), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -197464,8 +194597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1358), 25, - sym__concat, + ACTIONS(290), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -197486,14 +194618,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [139535] = 3, + [136147] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1320), 14, + ACTIONS(1320), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -197506,9 +194637,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1322), 25, + ACTIONS(1322), 26, sym_file_descriptor, sym__concat, sym_test_operator, @@ -197523,6 +194653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -197534,10 +194665,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [139582] = 3, + [136194] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1316), 14, + ACTIONS(1328), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -197550,9 +194681,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1318), 25, + ACTIONS(1330), 26, sym_file_descriptor, sym__concat, sym_test_operator, @@ -197567,6 +194697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -197578,146 +194709,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [139629] = 3, + [136241] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 14, - anon_sym_EQ, + ACTIONS(1296), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1310), 25, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1298), 25, + sym_file_descriptor, sym__concat, sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [139676] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1304), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1306), 25, - sym__concat, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_PIPE_AMP, anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [139723] = 3, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [136288] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1310), 25, + ACTIONS(6783), 1, + aux_sym_concatenation_token1, + ACTIONS(6785), 1, sym__concat, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [139770] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6809), 1, - sym__special_character, - STATE(2595), 1, - aux_sym__literal_repeat1, - ACTIONS(5393), 12, + STATE(2630), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1266), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -197729,10 +194774,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(5395), 25, + ACTIONS(1268), 23, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -197745,21 +194790,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [139821] = 3, + [136341] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1320), 13, + ACTIONS(1304), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -197768,12 +194812,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1322), 26, + ACTIONS(1306), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -197783,16 +194828,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -197800,54 +194844,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [139868] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1352), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1354), 25, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [139915] = 3, + [136388] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1336), 13, + ACTIONS(1276), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -197856,12 +194856,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1338), 26, + ACTIONS(1278), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -197871,16 +194872,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -197888,54 +194888,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [139962] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1292), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1294), 25, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [140009] = 3, + [136435] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1340), 13, + ACTIONS(1348), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -197948,8 +194904,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1342), 26, + ACTIONS(1350), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -197964,7 +194921,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, @@ -197976,10 +194932,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [140056] = 3, + [136482] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 13, + ACTIONS(1304), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -197993,7 +194949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1314), 26, + ACTIONS(1306), 26, sym_file_descriptor, sym__concat, sym_test_operator, @@ -198020,14 +194976,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [140103] = 5, + [136529] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6809), 1, - sym__special_character, - STATE(2595), 1, - aux_sym__literal_repeat1, - ACTIONS(5067), 12, + ACTIONS(1308), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198036,13 +194988,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(5069), 25, + ACTIONS(1310), 25, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -198050,26 +195004,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [140154] = 3, + [136576] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1316), 14, + ACTIONS(1312), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -198084,7 +195038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1318), 25, + ACTIONS(1314), 25, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -198106,58 +195060,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - [140201] = 3, + [136623] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1340), 14, - anon_sym_EQ, + ACTIONS(1276), 13, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1342), 25, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1278), 26, + sym_file_descriptor, sym__concat, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - [140248] = 3, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [136670] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1332), 14, + ACTIONS(1320), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -198172,7 +195126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1334), 25, + ACTIONS(1322), 25, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -198194,14 +195148,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - [140295] = 3, + [136717] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1352), 13, + ACTIONS(1312), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198210,57 +195164,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1354), 26, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [140342] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1292), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1294), 25, + ACTIONS(1314), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -198270,6 +195180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -198278,7 +195189,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -198286,10 +195196,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [140389] = 3, + [136764] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 13, + ACTIONS(6787), 1, + sym__special_character, + STATE(2699), 1, + aux_sym__literal_repeat1, + ACTIONS(5315), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198301,11 +195215,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1310), 26, + ACTIONS(5317), 25, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -198313,6 +195225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -198321,63 +195234,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [140436] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1332), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1334), 25, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [140483] = 3, + [136815] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 13, + ACTIONS(1340), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198391,7 +195259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1306), 26, + ACTIONS(1342), 26, sym_file_descriptor, sym__concat, sym_test_operator, @@ -198418,10 +195286,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [140530] = 3, + [136862] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 13, + ACTIONS(1292), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198435,7 +195303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1310), 26, + ACTIONS(1294), 26, sym_file_descriptor, sym__concat, sym_test_operator, @@ -198462,14 +195330,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [140577] = 5, + [136909] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(6811), 1, - sym__special_character, - STATE(2692), 1, - aux_sym__literal_repeat1, - ACTIONS(5178), 13, + ACTIONS(6783), 1, + aux_sym_concatenation_token1, + ACTIONS(6789), 1, + sym__concat, + STATE(2630), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198481,56 +195351,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(5180), 24, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [140628] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6809), 1, - sym__special_character, - STATE(2595), 1, - aux_sym__literal_repeat1, - ACTIONS(4564), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(4566), 25, + ACTIONS(1288), 23, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -198543,119 +195367,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [140679] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6813), 1, - sym__special_character, - STATE(2695), 1, - aux_sym__literal_repeat1, - ACTIONS(243), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(354), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [140730] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5821), 2, - anon_sym_PIPE, - anon_sym_LT_LT, - ACTIONS(5823), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(5826), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_LT_LT_DASH, - ACTIONS(5819), 6, - anon_sym_DOLLAR, sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5828), 7, - sym_file_descriptor, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5831), 14, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [140785] = 5, + [136962] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6815), 1, + ACTIONS(6791), 1, sym__special_character, - STATE(2692), 1, + STATE(2631), 1, aux_sym__literal_repeat1, - ACTIONS(1362), 13, + ACTIONS(4426), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198667,9 +195396,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1364), 24, + ACTIONS(4428), 25, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -198684,54 +195412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [140836] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5821), 2, - anon_sym_PIPE, - anon_sym_LT_LT, - ACTIONS(5823), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(5826), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_LT_LT_DASH, - ACTIONS(5819), 6, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5828), 7, - sym_file_descriptor, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5831), 14, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, @@ -198742,12 +195423,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [140891] = 4, + [137013] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6822), 1, - sym__concat, - ACTIONS(6820), 14, + ACTIONS(1296), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -198762,9 +195441,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6818), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1298), 25, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -198784,17 +195463,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [140940] = 5, + aux_sym_concatenation_token1, + [137060] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6824), 1, - sym__special_character, - STATE(2695), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 14, + ACTIONS(1324), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -198809,7 +195485,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1364), 23, + ACTIONS(1326), 25, + sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -198830,15 +195507,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [140991] = 4, + aux_sym_concatenation_token1, + [137107] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6831), 1, - sym__concat, - ACTIONS(6829), 14, + ACTIONS(1324), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -198853,9 +195529,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6827), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1326), 25, + sym__concat, + sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -198875,10 +195552,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [141040] = 3, + [137154] = 3, ACTIONS(71), 1, sym_comment, ACTIONS(1328), 14, @@ -198922,10 +195599,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - [141087] = 3, + [137201] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1320), 14, + ACTIONS(1348), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -198940,9 +195617,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1322), 25, + ACTIONS(1350), 25, sym__concat, sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -198965,15 +195643,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [141134] = 5, + [137248] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6833), 1, - sym__special_character, - STATE(2699), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 14, + ACTIONS(6795), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -198988,8 +195661,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1364), 23, + ACTIONS(6793), 25, sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -199012,10 +195686,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [141185] = 3, + anon_sym_COLON, + [137295] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(1356), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -199030,7 +195705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1302), 25, + ACTIONS(1358), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -199056,10 +195731,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [141232] = 3, + [137342] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 14, + ACTIONS(4593), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -199068,15 +195743,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1298), 25, + ACTIONS(4595), 26, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -199084,28 +195758,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [141279] = 4, + [137389] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6840), 1, - sym__concat, - ACTIONS(6838), 14, + ACTIONS(1332), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -199120,9 +195793,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6836), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1334), 25, + sym__concat, + sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -199142,48 +195816,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [141328] = 5, + [137436] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6809), 1, - sym__special_character, - STATE(2595), 1, - aux_sym__literal_repeat1, - ACTIONS(4467), 12, + ACTIONS(1352), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4469), 25, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1354), 25, + sym__concat, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [137483] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6791), 1, + sym__special_character, + STATE(2631), 1, + aux_sym__literal_repeat1, + ACTIONS(4577), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4579), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, @@ -199191,12 +195909,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [141379] = 4, + [137534] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6846), 1, - sym__concat, - ACTIONS(6844), 14, + ACTIONS(6797), 1, + sym__special_character, + STATE(2583), 1, + aux_sym__literal_repeat1, + ACTIONS(243), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -199211,9 +195931,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6842), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(290), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -199233,155 +195952,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [141428] = 8, - ACTIONS(3), 1, + [137585] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1241), 1, - sym_file_descriptor, - ACTIONS(2867), 1, - anon_sym_DQUOTE, - ACTIONS(6852), 1, - sym_variable_name, - STATE(4263), 1, - sym_string, - ACTIONS(6850), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6848), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 24, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1316), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [141485] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 1, - sym_file_descriptor, - ACTIONS(2867), 1, - anon_sym_DQUOTE, - ACTIONS(6852), 1, - sym_variable_name, - STATE(4263), 1, - sym_string, - ACTIONS(6850), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6848), 9, + anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 24, - anon_sym_SEMI, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1318), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [141542] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [137632] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1251), 14, + ACTIONS(1332), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1253), 25, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1334), 25, sym__concat, sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [141589] = 3, + [137679] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 14, + ACTIONS(1336), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -199396,9 +196061,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1310), 25, + ACTIONS(1338), 25, sym__concat, sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -199418,14 +196084,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [141636] = 3, + [137726] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 14, + ACTIONS(1300), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -199440,7 +196105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1306), 25, + ACTIONS(1302), 25, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -199466,10 +196131,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - [141683] = 3, + [137773] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 14, + ACTIONS(1336), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -199484,7 +196149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1310), 25, + ACTIONS(1338), 25, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -199506,14 +196171,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - [141730] = 3, + [137820] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1324), 14, + ACTIONS(6799), 1, + sym__special_character, + STATE(2712), 1, + aux_sym__literal_repeat1, + ACTIONS(5323), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -199525,12 +196194,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1326), 25, + ACTIONS(5325), 24, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -199545,19 +196213,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [141777] = 3, + [137871] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1348), 14, + STATE(2630), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6801), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1276), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -199570,11 +196242,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1350), 25, + ACTIONS(1278), 23, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -199589,7 +196259,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -199598,58 +196267,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [141824] = 3, + [137922] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1261), 14, - anon_sym_EQ, + ACTIONS(6804), 1, + sym__special_character, + STATE(2631), 1, + aux_sym__literal_repeat1, + ACTIONS(1360), 12, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1263), 25, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1362), 25, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [137973] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1316), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, sym__special_character, - [141871] = 5, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1318), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [138020] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6811), 1, + ACTIONS(6791), 1, sym__special_character, - STATE(2692), 1, + STATE(2631), 1, aux_sym__literal_repeat1, - ACTIONS(5067), 13, + ACTIONS(5315), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -199661,9 +196376,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(5069), 24, + ACTIONS(5317), 25, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -199678,6 +196392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, @@ -199688,14 +196403,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [141922] = 5, + [138071] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6854), 1, - sym__special_character, - STATE(2602), 1, - aux_sym__literal_repeat1, - ACTIONS(5393), 12, + ACTIONS(1300), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -199704,12 +196415,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(5395), 25, + ACTIONS(1302), 25, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -199723,21 +196437,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [141973] = 3, + [138118] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1348), 14, + ACTIONS(1340), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -199752,7 +196465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1350), 25, + ACTIONS(1342), 25, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -199778,14 +196491,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - [142020] = 5, + [138165] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6856), 1, - sym__special_character, - STATE(2699), 1, - aux_sym__literal_repeat1, - ACTIONS(243), 14, + ACTIONS(1292), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -199800,7 +196509,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(354), 23, + ACTIONS(1294), 25, + sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -199821,59 +196531,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [142071] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6809), 1, - sym__special_character, - STATE(2595), 1, - aux_sym__literal_repeat1, - ACTIONS(5721), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5723), 25, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [142122] = 3, + aux_sym_concatenation_token1, + [138212] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(1113), 1, + aux_sym_concatenation_token1, + ACTIONS(6807), 1, + sym__concat, + STATE(2279), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1266), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -199888,8 +196559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1302), 25, - sym__concat, + ACTIONS(1268), 22, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -199910,18 +196580,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [142169] = 6, + [138265] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1143), 1, + ACTIONS(1113), 1, aux_sym_concatenation_token1, - ACTIONS(6858), 1, + ACTIONS(6809), 1, sym__concat, - STATE(2312), 1, + STATE(2279), 1, aux_sym_concatenation_repeat1, ACTIONS(1286), 14, anon_sym_EQ, @@ -199961,10 +196629,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [142222] = 3, + [138318] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 14, + ACTIONS(1352), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1354), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [138365] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1348), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -199979,7 +196691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1294), 25, + ACTIONS(1350), 25, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -200005,10 +196717,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - [142269] = 3, + [138412] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 14, + ACTIONS(1356), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -200023,9 +196735,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1298), 25, + ACTIONS(1358), 25, sym__concat, sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -200045,20 +196758,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [142316] = 6, + [138459] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1143), 1, - aux_sym_concatenation_token1, - ACTIONS(6860), 1, - sym__concat, - STATE(2312), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1265), 14, + ACTIONS(1344), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -200073,8 +196779,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1267), 22, + ACTIONS(1346), 25, + sym__concat, sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -200094,12 +196802,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [142369] = 3, + [138506] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6864), 14, + ACTIONS(1356), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -200114,9 +196823,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6862), 25, + ACTIONS(1358), 25, + sym__concat, sym_test_operator, - anon_sym_RPAREN_RPAREN, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -200136,14 +196846,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [142416] = 3, + [138553] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1261), 13, + ACTIONS(6799), 1, + sym__special_character, + STATE(2712), 1, + aux_sym__literal_repeat1, + ACTIONS(5165), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -200152,12 +196865,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1263), 26, + ACTIONS(5167), 24, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -200167,13 +196880,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, @@ -200184,14 +196895,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [142463] = 5, + [138604] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6809), 1, - sym__special_character, - STATE(2595), 1, - aux_sym__literal_repeat1, - ACTIONS(5695), 12, + ACTIONS(1296), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -200203,10 +196910,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(5697), 25, + ACTIONS(1298), 26, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -200222,22 +196930,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [142514] = 5, + [138651] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6866), 1, - sym__special_character, - STATE(2727), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 14, + ACTIONS(1352), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -200252,7 +196957,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1364), 23, + ACTIONS(1354), 25, + sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -200276,10 +196982,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [142565] = 3, + aux_sym_concatenation_token1, + [138698] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1320), 14, + ACTIONS(1308), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1310), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [138745] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1312), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1314), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [138792] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6813), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -200294,9 +197089,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1322), 25, - sym__concat, + ACTIONS(6811), 25, sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -200316,14 +197111,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [142612] = 3, + anon_sym_COLON, + [138839] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1324), 14, + ACTIONS(1320), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -200338,7 +197133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1326), 25, + ACTIONS(1322), 25, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -200360,14 +197155,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - [142659] = 3, + [138886] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1251), 14, + ACTIONS(6815), 1, + anon_sym_LBRACK, + ACTIONS(6632), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -200382,9 +197179,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1253), 25, - sym__concat, - sym_test_operator, + ACTIONS(6630), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -200404,14 +197201,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, + anon_sym_COLON, + [138935] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1316), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1318), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - [142706] = 3, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [138982] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 14, + ACTIONS(1324), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -200426,7 +197266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1298), 25, + ACTIONS(1326), 25, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -200448,14 +197288,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - [142753] = 3, + [139029] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1251), 14, + ACTIONS(1328), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -200470,7 +197310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1253), 25, + ACTIONS(1330), 25, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -200496,10 +197336,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - [142800] = 3, + [139076] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1324), 14, + ACTIONS(1300), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1302), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [139123] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1304), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -200514,7 +197398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1326), 25, + ACTIONS(1306), 25, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -200536,14 +197420,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - [142847] = 3, + [139170] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1348), 14, + ACTIONS(1332), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -200558,7 +197442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1350), 25, + ACTIONS(1334), 25, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -200584,10 +197468,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - [142894] = 3, + [139217] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(1356), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -200602,7 +197486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1302), 25, + ACTIONS(1358), 25, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -200628,10 +197512,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - [142941] = 3, + [139264] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1332), 14, + ACTIONS(1344), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -200646,7 +197530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1334), 25, + ACTIONS(1346), 25, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -200672,10 +197556,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - [142988] = 3, + [139311] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1336), 14, + ACTIONS(1356), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -200690,9 +197574,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1338), 24, + ACTIONS(1358), 25, + sym__concat, sym_test_operator, - sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -200712,37 +197596,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [143034] = 8, + aux_sym_concatenation_token1, + [139358] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6877), 1, - anon_sym_STAR_STAR, - ACTIONS(6869), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6871), 2, + ACTIONS(1336), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6873), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6875), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6791), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6789), 22, + anon_sym_STAR_STAR, + ACTIONS(1338), 25, sym__concat, sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -200760,59 +197640,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [143090] = 21, + aux_sym_concatenation_token1, + [139405] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6879), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(6883), 1, - anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(6791), 1, + sym__special_character, + STATE(2631), 1, + aux_sym__literal_repeat1, + ACTIONS(5165), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5167), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [139456] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2597), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6783), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5315), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(5317), 23, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [139507] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2610), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6783), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5319), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(5321), 23, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [139558] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1340), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_STAR_STAR, - ACTIONS(6913), 1, - anon_sym_EQ_TILDE, - ACTIONS(6915), 1, - anon_sym_QMARK, - STATE(6721), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + anon_sym_STAR_STAR, + ACTIONS(1342), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -200824,56 +197816,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [143172] = 21, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [139605] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(1292), 14, anon_sym_EQ, - ACTIONS(6889), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, - anon_sym_AMP_AMP, - ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_STAR_STAR, - ACTIONS(6913), 1, - anon_sym_EQ_TILDE, - ACTIONS(6915), 1, - anon_sym_QMARK, - ACTIONS(6917), 1, - anon_sym_RPAREN_RPAREN, - STATE(6687), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + anon_sym_STAR_STAR, + ACTIONS(1294), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -200885,56 +197860,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [143254] = 21, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [139652] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(6821), 1, + sym__concat, + ACTIONS(6819), 14, anon_sym_EQ, - ACTIONS(6889), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, - anon_sym_AMP_AMP, - ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_STAR_STAR, - ACTIONS(6913), 1, - anon_sym_EQ_TILDE, - ACTIONS(6915), 1, - anon_sym_QMARK, - ACTIONS(6919), 1, - anon_sym_RPAREN_RPAREN, - STATE(6625), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + anon_sym_STAR_STAR, + ACTIONS(6817), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -200946,56 +197906,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [143336] = 21, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [139701] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(1352), 14, anon_sym_EQ, - ACTIONS(6889), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, - anon_sym_AMP_AMP, - ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_STAR_STAR, - ACTIONS(6913), 1, - anon_sym_EQ_TILDE, - ACTIONS(6915), 1, - anon_sym_QMARK, - ACTIONS(6921), 1, - anon_sym_RPAREN_RPAREN, - STATE(6602), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + anon_sym_STAR_STAR, + ACTIONS(1354), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201007,56 +197949,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [143418] = 21, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [139748] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(6883), 1, - anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(1320), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1322), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [139795] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1276), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_STAR_STAR, - ACTIONS(6913), 1, - anon_sym_EQ_TILDE, - ACTIONS(6915), 1, - anon_sym_QMARK, - ACTIONS(6923), 1, - anon_sym_RPAREN_RPAREN, - STATE(6630), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + anon_sym_STAR_STAR, + ACTIONS(1278), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201068,117 +198037,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [143500] = 21, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [139842] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(6883), 1, - anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(6791), 1, + sym__special_character, + STATE(2631), 1, + aux_sym__literal_repeat1, + ACTIONS(5587), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5589), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [139893] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1324), 13, anon_sym_PIPE, - ACTIONS(6895), 1, - anon_sym_CARET, - ACTIONS(6897), 1, - anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_STAR_STAR, - ACTIONS(6913), 1, - anon_sym_EQ_TILDE, - ACTIONS(6915), 1, - anon_sym_QMARK, - ACTIONS(6925), 1, - anon_sym_RPAREN_RPAREN, - STATE(6720), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6905), 2, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1326), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(6907), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6909), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6887), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [143582] = 21, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [139940] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(6883), 1, - anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(1348), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1350), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [139987] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1253), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_STAR_STAR, - ACTIONS(6913), 1, - anon_sym_EQ_TILDE, - ACTIONS(6915), 1, - anon_sym_QMARK, - ACTIONS(6927), 1, - anon_sym_RPAREN_RPAREN, - STATE(6682), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + anon_sym_STAR_STAR, + ACTIONS(1376), 25, + sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201190,117 +198215,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [143664] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(6883), 1, - anon_sym_EQ, - ACTIONS(6889), 1, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, - anon_sym_PIPE, - ACTIONS(6895), 1, - anon_sym_CARET, - ACTIONS(6897), 1, - anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_STAR_STAR, - ACTIONS(6913), 1, - anon_sym_EQ_TILDE, - ACTIONS(6915), 1, - anon_sym_QMARK, - ACTIONS(6929), 1, - anon_sym_RPAREN_RPAREN, - STATE(6655), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6903), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [140034] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1332), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1334), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(6907), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6909), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6887), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [143746] = 21, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [140081] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(6883), 1, - anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(1352), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1354), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [140128] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1356), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_STAR_STAR, - ACTIONS(6913), 1, - anon_sym_EQ_TILDE, - ACTIONS(6915), 1, - anon_sym_QMARK, - ACTIONS(6931), 1, - anon_sym_RPAREN_RPAREN, - STATE(6623), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + anon_sym_STAR_STAR, + ACTIONS(1358), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201312,56 +198347,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [143828] = 21, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [140175] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(1344), 14, anon_sym_EQ, - ACTIONS(6889), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, - anon_sym_AMP_AMP, - ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_STAR_STAR, - ACTIONS(6913), 1, - anon_sym_EQ_TILDE, - ACTIONS(6915), 1, - anon_sym_QMARK, - ACTIONS(6933), 1, - anon_sym_RPAREN_RPAREN, - STATE(6608), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + anon_sym_STAR_STAR, + ACTIONS(1346), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201373,56 +198391,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [143910] = 21, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [140222] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(1356), 14, anon_sym_EQ, - ACTIONS(6889), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, - anon_sym_AMP_AMP, - ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_STAR_STAR, - ACTIONS(6913), 1, - anon_sym_EQ_TILDE, - ACTIONS(6915), 1, - anon_sym_QMARK, - ACTIONS(6935), 1, - anon_sym_RPAREN_RPAREN, - STATE(6592), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + anon_sym_STAR_STAR, + ACTIONS(1358), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201434,56 +198435,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [143992] = 21, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [140269] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(6883), 1, - anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(1336), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1338), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [140316] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1272), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_STAR_STAR, - ACTIONS(6913), 1, - anon_sym_EQ_TILDE, - ACTIONS(6915), 1, - anon_sym_QMARK, - ACTIONS(6937), 1, - anon_sym_RPAREN_RPAREN, - STATE(6577), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + anon_sym_STAR_STAR, + ACTIONS(1274), 25, + sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201495,56 +198523,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [144074] = 21, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + sym__special_character, + [140363] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(6883), 1, - anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(1356), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1358), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [140410] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6823), 1, + sym__special_character, + STATE(2683), 1, + aux_sym__literal_repeat1, + ACTIONS(1360), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_STAR_STAR, - ACTIONS(6913), 1, - anon_sym_EQ_TILDE, - ACTIONS(6915), 1, - anon_sym_QMARK, - ACTIONS(6939), 1, - anon_sym_RPAREN_RPAREN, - STATE(6559), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + anon_sym_STAR_STAR, + ACTIONS(1362), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201556,56 +198614,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [144156] = 21, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [140461] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(6883), 1, - anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(1336), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1338), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [140508] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6830), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6828), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_STAR_STAR, - ACTIONS(6913), 1, - anon_sym_EQ_TILDE, - ACTIONS(6915), 1, - anon_sym_QMARK, - ACTIONS(6941), 1, - anon_sym_RPAREN_RPAREN, - STATE(6712), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + anon_sym_STAR_STAR, + ACTIONS(6826), 23, + sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201617,56 +198702,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [144238] = 21, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [140557] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(6883), 1, - anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(1344), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1346), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [140604] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1272), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1274), 26, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [140651] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1308), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_STAR_STAR, - ACTIONS(6913), 1, - anon_sym_EQ_TILDE, - ACTIONS(6915), 1, - anon_sym_QMARK, - ACTIONS(6943), 1, - anon_sym_RPAREN_RPAREN, - STATE(6606), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + anon_sym_STAR_STAR, + ACTIONS(1310), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201678,56 +198834,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [144320] = 21, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [140698] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(6883), 1, - anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(1340), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1342), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [140745] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1312), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_STAR_STAR, - ACTIONS(6913), 1, - anon_sym_EQ_TILDE, - ACTIONS(6915), 1, - anon_sym_QMARK, - ACTIONS(6945), 1, - anon_sym_RPAREN_RPAREN, - STATE(6697), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + anon_sym_STAR_STAR, + ACTIONS(1314), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201739,56 +198922,4116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [144402] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6881), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [140792] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1296), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1298), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [140839] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1292), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1294), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [140886] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1356), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1358), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [140933] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1344), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1346), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [140980] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1304), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1306), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [141027] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1276), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1278), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [141074] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6791), 1, + sym__special_character, + STATE(2631), 1, + aux_sym__literal_repeat1, + ACTIONS(5593), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5595), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [141125] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1356), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1358), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [141172] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6832), 1, + sym__special_character, + STATE(2699), 1, + aux_sym__literal_repeat1, + ACTIONS(1360), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1362), 25, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [141223] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2171), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2173), 26, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [141270] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1308), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1310), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [141317] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2597), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6783), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1272), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1274), 23, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [141368] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6839), 1, + sym__concat, + ACTIONS(6837), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6835), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [141417] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1312), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1314), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [141464] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6841), 1, + sym__special_character, + STATE(2683), 1, + aux_sym__literal_repeat1, + ACTIONS(243), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(290), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [141515] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1320), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1322), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [141562] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1324), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1326), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [141609] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1328), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1330), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [141656] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1332), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1334), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [141703] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1296), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1298), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [141750] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1336), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1338), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [141797] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6843), 1, + sym__special_character, + STATE(2712), 1, + aux_sym__literal_repeat1, + ACTIONS(1360), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1362), 24, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [141848] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1324), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1326), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [141895] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1316), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1318), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [141942] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1300), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1302), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [141989] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6848), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6846), 25, + sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [142036] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1272), 15, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + sym__special_character, + ACTIONS(1274), 24, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [142083] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1340), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1342), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [142130] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1292), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1294), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [142177] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2167), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2169), 26, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [142224] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1348), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1350), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [142271] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6852), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6850), 25, + sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [142318] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4511), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4513), 26, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [142365] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1328), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1330), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [142412] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1352), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1354), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [142459] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6795), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6793), 25, + sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [142506] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1344), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1346), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [142553] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6854), 1, + sym__special_character, + STATE(2728), 1, + aux_sym__literal_repeat1, + ACTIONS(1360), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1362), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [142604] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1304), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1306), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [142651] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1356), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1358), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [142698] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1356), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1358), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [142745] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2638), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1113), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1253), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1376), 22, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [142796] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6861), 1, + sym__concat, + ACTIONS(6859), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6857), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [142845] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6867), 1, + sym__concat, + ACTIONS(6865), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6863), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [142894] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1276), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1278), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [142941] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1348), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1350), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [142988] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6795), 1, + anon_sym_EQ, + ACTIONS(6871), 1, + anon_sym_AMP_AMP, + ACTIONS(6873), 1, + anon_sym_PIPE, + ACTIONS(6875), 1, + anon_sym_CARET, + ACTIONS(6877), 1, + anon_sym_AMP, + ACTIONS(6891), 1, + anon_sym_STAR_STAR, + ACTIONS(6893), 1, + sym_test_operator, + ACTIONS(6869), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6879), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6881), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6883), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6885), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6889), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6793), 16, + sym__concat, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [143060] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6895), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(6899), 1, + anon_sym_EQ, + ACTIONS(6905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP_AMP, + ACTIONS(6909), 1, + anon_sym_PIPE, + ACTIONS(6911), 1, + anon_sym_CARET, + ACTIONS(6913), 1, + anon_sym_AMP, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, + anon_sym_QMARK, + STATE(6694), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6925), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6903), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [143142] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1316), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1318), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [143188] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(6899), 1, + anon_sym_EQ, + ACTIONS(6905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP_AMP, + ACTIONS(6909), 1, + anon_sym_PIPE, + ACTIONS(6911), 1, + anon_sym_CARET, + ACTIONS(6913), 1, + anon_sym_AMP, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, + anon_sym_QMARK, + ACTIONS(6933), 1, + anon_sym_RPAREN_RPAREN, + STATE(6698), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6925), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6903), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [143270] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1300), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1302), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [143316] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1324), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1326), 24, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [143362] = 14, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6875), 1, + anon_sym_CARET, + ACTIONS(6877), 1, + anon_sym_AMP, + ACTIONS(6891), 1, + anon_sym_STAR_STAR, + ACTIONS(6893), 1, + sym_test_operator, + ACTIONS(6795), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(6869), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6879), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6881), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6883), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6885), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6889), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6793), 17, + sym__concat, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [143430] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1348), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1350), 24, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [143476] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(6899), 1, + anon_sym_EQ, + ACTIONS(6905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP_AMP, + ACTIONS(6909), 1, + anon_sym_PIPE, + ACTIONS(6911), 1, + anon_sym_CARET, + ACTIONS(6913), 1, + anon_sym_AMP, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, + anon_sym_QMARK, + ACTIONS(6935), 1, + anon_sym_RPAREN_RPAREN, + STATE(6703), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6925), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6903), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [143558] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1332), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1334), 24, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [143604] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1352), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1354), 24, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [143650] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1336), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1338), 24, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [143696] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1320), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1322), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [143742] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(6899), 1, + anon_sym_EQ, + ACTIONS(6905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP_AMP, + ACTIONS(6909), 1, + anon_sym_PIPE, + ACTIONS(6911), 1, + anon_sym_CARET, + ACTIONS(6913), 1, + anon_sym_AMP, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, + anon_sym_QMARK, + ACTIONS(6937), 1, + anon_sym_RPAREN_RPAREN, + STATE(6706), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6925), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6903), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [143824] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5888), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(5890), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [143870] = 11, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6925), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6941), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(6939), 18, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [143932] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6943), 1, + sym__special_character, + STATE(2920), 1, + aux_sym__literal_repeat1, + ACTIONS(5507), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(5509), 23, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [143982] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(6899), 1, + anon_sym_EQ, + ACTIONS(6905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP_AMP, + ACTIONS(6909), 1, + anon_sym_PIPE, + ACTIONS(6911), 1, + anon_sym_CARET, + ACTIONS(6913), 1, + anon_sym_AMP, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, + anon_sym_QMARK, + ACTIONS(6945), 1, + anon_sym_RPAREN_RPAREN, + STATE(6708), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6925), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6903), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [144064] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6848), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6846), 24, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [144110] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5173), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(5175), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [144156] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(6899), 1, + anon_sym_EQ, + ACTIONS(6905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP_AMP, + ACTIONS(6909), 1, + anon_sym_PIPE, + ACTIONS(6911), 1, + anon_sym_CARET, + ACTIONS(6913), 1, + anon_sym_AMP, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, + anon_sym_QMARK, + ACTIONS(6947), 1, + anon_sym_RPAREN_RPAREN, + STATE(6710), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6925), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6903), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [144238] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(6899), 1, + anon_sym_EQ, + ACTIONS(6905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP_AMP, + ACTIONS(6909), 1, + anon_sym_PIPE, + ACTIONS(6911), 1, + anon_sym_CARET, + ACTIONS(6913), 1, + anon_sym_AMP, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, + anon_sym_QMARK, + ACTIONS(6949), 1, + anon_sym_RPAREN_RPAREN, + STATE(6712), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6925), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6903), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [144320] = 13, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6877), 1, + anon_sym_AMP, + ACTIONS(6891), 1, + anon_sym_STAR_STAR, + ACTIONS(6893), 1, + sym_test_operator, + ACTIONS(6869), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6879), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6881), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6883), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6885), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6795), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(6889), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6793), 17, + sym__concat, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [144386] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(6899), 1, + anon_sym_EQ, + ACTIONS(6905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP_AMP, + ACTIONS(6909), 1, + anon_sym_PIPE, + ACTIONS(6911), 1, + anon_sym_CARET, + ACTIONS(6913), 1, + anon_sym_AMP, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, + anon_sym_QMARK, + ACTIONS(6951), 1, + anon_sym_RPAREN_RPAREN, + STATE(6718), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6925), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6903), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [144468] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6925), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6955), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6953), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [144524] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6667), 1, + anon_sym_RBRACK, + ACTIONS(6957), 1, + sym__concat, + ACTIONS(1253), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1376), 22, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [144574] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(6899), 1, + anon_sym_EQ, + ACTIONS(6905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP_AMP, + ACTIONS(6909), 1, + anon_sym_PIPE, + ACTIONS(6911), 1, + anon_sym_CARET, + ACTIONS(6913), 1, + anon_sym_AMP, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, + anon_sym_QMARK, + ACTIONS(6959), 1, + anon_sym_RPAREN_RPAREN, + STATE(6723), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6925), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6903), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [144656] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(6899), 1, + anon_sym_EQ, + ACTIONS(6905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP_AMP, + ACTIONS(6909), 1, + anon_sym_PIPE, + ACTIONS(6911), 1, + anon_sym_CARET, + ACTIONS(6913), 1, + anon_sym_AMP, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, + anon_sym_QMARK, + ACTIONS(6961), 1, + anon_sym_RPAREN_RPAREN, + STATE(6548), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6925), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6903), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [144738] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1324), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1326), 24, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [144784] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6813), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6811), 24, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [144830] = 10, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6917), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6925), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6941), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(6939), 20, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [144890] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6925), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6941), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6939), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [144946] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6925), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6941), 8, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6939), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [145000] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(6899), 1, + anon_sym_EQ, + ACTIONS(6905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP_AMP, + ACTIONS(6909), 1, + anon_sym_PIPE, + ACTIONS(6911), 1, + anon_sym_CARET, + ACTIONS(6913), 1, + anon_sym_AMP, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, + anon_sym_QMARK, + ACTIONS(6963), 1, + anon_sym_RPAREN_RPAREN, + STATE(6553), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6925), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6903), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [145082] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6925), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6941), 10, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6939), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [145134] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6941), 13, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6939), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [145184] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6941), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6939), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [145232] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(6899), 1, + anon_sym_EQ, + ACTIONS(6905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP_AMP, + ACTIONS(6909), 1, + anon_sym_PIPE, + ACTIONS(6911), 1, + anon_sym_CARET, + ACTIONS(6913), 1, + anon_sym_AMP, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, + anon_sym_QMARK, + ACTIONS(6965), 1, + anon_sym_RPAREN_RPAREN, + STATE(6560), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6925), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6903), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [145314] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1348), 14, anon_sym_EQ, - ACTIONS(6889), 1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1350), 24, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [145360] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6969), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6911), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_STAR_STAR, + ACTIONS(6967), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [145406] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(6899), 1, + anon_sym_EQ, + ACTIONS(6905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP_AMP, + ACTIONS(6909), 1, + anon_sym_PIPE, + ACTIONS(6911), 1, + anon_sym_CARET, ACTIONS(6913), 1, + anon_sym_AMP, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6929), 1, anon_sym_EQ_TILDE, - ACTIONS(6915), 1, + ACTIONS(6931), 1, anon_sym_QMARK, - ACTIONS(6947), 1, + ACTIONS(6971), 1, anon_sym_RPAREN_RPAREN, - STATE(6653), 1, + STATE(6566), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201800,56 +203043,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [144484] = 21, + [145488] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(6899), 1, anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(6905), 1, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, + ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6895), 1, + ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6897), 1, + ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6911), 1, + ACTIONS(6927), 1, anon_sym_STAR_STAR, - ACTIONS(6913), 1, + ACTIONS(6929), 1, anon_sym_EQ_TILDE, - ACTIONS(6915), 1, + ACTIONS(6931), 1, anon_sym_QMARK, - ACTIONS(6949), 1, + ACTIONS(6973), 1, anon_sym_RPAREN_RPAREN, - STATE(6612), 1, + STATE(6571), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201861,56 +203104,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [144566] = 21, + [145570] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(6899), 1, anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(6905), 1, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, + ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6895), 1, + ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6897), 1, + ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6911), 1, + ACTIONS(6927), 1, anon_sym_STAR_STAR, - ACTIONS(6913), 1, + ACTIONS(6929), 1, anon_sym_EQ_TILDE, - ACTIONS(6915), 1, + ACTIONS(6931), 1, anon_sym_QMARK, - ACTIONS(6951), 1, + ACTIONS(6975), 1, anon_sym_RPAREN_RPAREN, - STATE(6715), 1, + STATE(6577), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(6921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6925), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6903), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [145652] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6969), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + anon_sym_STAR_STAR, + ACTIONS(6967), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201922,56 +203199,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [144648] = 21, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [145698] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6977), 1, + sym__special_character, + STATE(2781), 1, + aux_sym__literal_repeat1, + ACTIONS(1360), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1362), 24, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [145748] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(6899), 1, anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(6905), 1, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, + ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6895), 1, + ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6897), 1, + ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6911), 1, + ACTIONS(6927), 1, anon_sym_STAR_STAR, - ACTIONS(6913), 1, + ACTIONS(6929), 1, anon_sym_EQ_TILDE, - ACTIONS(6915), 1, + ACTIONS(6931), 1, anon_sym_QMARK, - ACTIONS(6953), 1, + ACTIONS(6980), 1, anon_sym_RPAREN_RPAREN, - STATE(6639), 1, + STATE(6651), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201983,56 +203314,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [144730] = 21, + [145830] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(6899), 1, anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(6905), 1, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, + ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6895), 1, + ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6897), 1, + ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6911), 1, + ACTIONS(6927), 1, anon_sym_STAR_STAR, - ACTIONS(6913), 1, + ACTIONS(6929), 1, anon_sym_EQ_TILDE, - ACTIONS(6915), 1, + ACTIONS(6931), 1, anon_sym_QMARK, - ACTIONS(6955), 1, + ACTIONS(6982), 1, anon_sym_RPAREN_RPAREN, - STATE(6600), 1, + STATE(6578), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202044,56 +203375,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [144812] = 21, + [145912] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1324), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1326), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [145958] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(6899), 1, anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(6905), 1, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, + ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6895), 1, + ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6897), 1, + ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6911), 1, + ACTIONS(6927), 1, anon_sym_STAR_STAR, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, + anon_sym_QMARK, + ACTIONS(6984), 1, + anon_sym_RPAREN_RPAREN, + STATE(6669), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6925), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6903), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [146040] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(6899), 1, + anon_sym_EQ, + ACTIONS(6905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP_AMP, + ACTIONS(6909), 1, + anon_sym_PIPE, + ACTIONS(6911), 1, + anon_sym_CARET, ACTIONS(6913), 1, + anon_sym_AMP, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6929), 1, anon_sym_EQ_TILDE, - ACTIONS(6915), 1, + ACTIONS(6931), 1, anon_sym_QMARK, - ACTIONS(6957), 1, + ACTIONS(6986), 1, anon_sym_RPAREN_RPAREN, - STATE(6562), 1, + STATE(6583), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6917), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6925), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6903), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [146122] = 17, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP_AMP, + ACTIONS(6909), 1, + anon_sym_PIPE, + ACTIONS(6911), 1, + anon_sym_CARET, + ACTIONS(6913), 1, + anon_sym_AMP, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6931), 1, + anon_sym_QMARK, + ACTIONS(6941), 1, + anon_sym_EQ, ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + ACTIONS(6939), 15, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202105,56 +203595,605 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [144894] = 21, + anon_sym_EQ_TILDE, + anon_sym_COLON, + [146196] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1348), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1350), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [146242] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2167), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2169), 26, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [146288] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(6899), 1, anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(6905), 1, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, + ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6895), 1, + ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6897), 1, + ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6911), 1, + ACTIONS(6927), 1, anon_sym_STAR_STAR, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, + anon_sym_QMARK, + ACTIONS(6988), 1, + anon_sym_RPAREN_RPAREN, + STATE(6587), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6925), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6903), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [146370] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5851), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(5856), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5849), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5853), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(5858), 7, + sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5861), 15, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [146424] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5173), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5175), 26, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [146470] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(6899), 1, + anon_sym_EQ, + ACTIONS(6905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP_AMP, + ACTIONS(6909), 1, + anon_sym_PIPE, + ACTIONS(6911), 1, + anon_sym_CARET, ACTIONS(6913), 1, + anon_sym_AMP, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6929), 1, anon_sym_EQ_TILDE, - ACTIONS(6915), 1, + ACTIONS(6931), 1, anon_sym_QMARK, - ACTIONS(6959), 1, + ACTIONS(6990), 1, anon_sym_RPAREN_RPAREN, - STATE(6607), 1, + STATE(6592), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6925), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6903), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [146552] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1332), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1334), 24, + sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [146598] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(6899), 1, + anon_sym_EQ, + ACTIONS(6905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP_AMP, + ACTIONS(6909), 1, + anon_sym_PIPE, + ACTIONS(6911), 1, + anon_sym_CARET, + ACTIONS(6913), 1, + anon_sym_AMP, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, + anon_sym_QMARK, + ACTIONS(6992), 1, + anon_sym_RPAREN_RPAREN, + STATE(6598), 1, + aux_sym_arithmetic_expansion_repeat1, ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6925), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6903), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [146680] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1352), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1354), 24, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [146726] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1332), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1334), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [146772] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1352), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1354), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [146818] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1356), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1358), 24, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [146864] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1344), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + anon_sym_STAR_STAR, + ACTIONS(1346), 24, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202166,56 +204205,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [144976] = 21, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [146910] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(6899), 1, anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(6905), 1, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, + ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + ACTIONS(6909), 1, + anon_sym_PIPE, + ACTIONS(6911), 1, + anon_sym_CARET, + ACTIONS(6913), 1, + anon_sym_AMP, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, + anon_sym_QMARK, + ACTIONS(6994), 1, + anon_sym_RPAREN_RPAREN, + STATE(6605), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6925), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6903), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [146992] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5851), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(5856), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(5849), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5853), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(5858), 7, + sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(5861), 15, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [147046] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1356), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_STAR_STAR, - ACTIONS(6913), 1, - anon_sym_EQ_TILDE, - ACTIONS(6915), 1, - anon_sym_QMARK, - ACTIONS(6961), 1, - anon_sym_RPAREN_RPAREN, - STATE(6701), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + anon_sym_STAR_STAR, + ACTIONS(1358), 24, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202227,56 +204356,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [145058] = 21, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [147092] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(6899), 1, anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(6905), 1, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, + ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6895), 1, + ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6897), 1, + ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6911), 1, + ACTIONS(6927), 1, anon_sym_STAR_STAR, - ACTIONS(6913), 1, + ACTIONS(6929), 1, anon_sym_EQ_TILDE, - ACTIONS(6915), 1, + ACTIONS(6931), 1, anon_sym_QMARK, - ACTIONS(6963), 1, + ACTIONS(6996), 1, anon_sym_RPAREN_RPAREN, - STATE(6633), 1, + STATE(6609), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202288,56 +204426,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [145140] = 21, + [147174] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(6899), 1, anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(6905), 1, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, + ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6895), 1, + ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6897), 1, + ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6911), 1, + ACTIONS(6927), 1, anon_sym_STAR_STAR, - ACTIONS(6913), 1, + ACTIONS(6929), 1, anon_sym_EQ_TILDE, - ACTIONS(6915), 1, + ACTIONS(6931), 1, anon_sym_QMARK, - ACTIONS(6965), 1, + ACTIONS(6998), 1, anon_sym_RPAREN_RPAREN, - STATE(6660), 1, + STATE(6613), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202349,56 +204487,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [145222] = 21, + [147256] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(6899), 1, anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(6905), 1, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, + ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6895), 1, + ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6897), 1, + ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6911), 1, + ACTIONS(6927), 1, anon_sym_STAR_STAR, - ACTIONS(6913), 1, + ACTIONS(6929), 1, anon_sym_EQ_TILDE, - ACTIONS(6915), 1, + ACTIONS(6931), 1, anon_sym_QMARK, - ACTIONS(6967), 1, + ACTIONS(7000), 1, anon_sym_RPAREN_RPAREN, - STATE(6693), 1, + STATE(6620), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202410,56 +204548,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [145304] = 21, + [147338] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(1336), 14, anon_sym_EQ, - ACTIONS(6889), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, - anon_sym_AMP_AMP, - ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_STAR_STAR, - ACTIONS(6913), 1, - anon_sym_EQ_TILDE, - ACTIONS(6915), 1, - anon_sym_QMARK, - ACTIONS(6969), 1, - anon_sym_RPAREN_RPAREN, - STATE(6586), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + anon_sym_STAR_STAR, + ACTIONS(1338), 24, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202471,56 +204582,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [145386] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(6883), 1, - anon_sym_EQ, - ACTIONS(6889), 1, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, - anon_sym_PIPE, - ACTIONS(6895), 1, - anon_sym_CARET, - ACTIONS(6897), 1, - anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_STAR_STAR, - ACTIONS(6913), 1, - anon_sym_EQ_TILDE, - ACTIONS(6915), 1, - anon_sym_QMARK, - ACTIONS(6971), 1, - anon_sym_RPAREN_RPAREN, - STATE(6565), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6903), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [147384] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6891), 1, + anon_sym_STAR_STAR, + ACTIONS(6893), 1, + sym_test_operator, + ACTIONS(6869), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6885), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(6887), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(6889), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + ACTIONS(6828), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6826), 21, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202532,56 +204631,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [145468] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(6883), 1, - anon_sym_EQ, - ACTIONS(6889), 1, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, - anon_sym_PIPE, - ACTIONS(6895), 1, - anon_sym_CARET, - ACTIONS(6897), 1, - anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_STAR_STAR, - ACTIONS(6913), 1, - anon_sym_EQ_TILDE, - ACTIONS(6915), 1, - anon_sym_QMARK, - ACTIONS(6973), 1, - anon_sym_RPAREN_RPAREN, - STATE(6579), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6903), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [147442] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6891), 1, + anon_sym_STAR_STAR, + ACTIONS(6869), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6885), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(6887), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(6889), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + ACTIONS(6828), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6826), 22, + sym__concat, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202593,56 +204679,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [145550] = 21, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [147498] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(6899), 1, anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(6905), 1, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, + ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6895), 1, + ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6897), 1, + ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6911), 1, + ACTIONS(6927), 1, anon_sym_STAR_STAR, - ACTIONS(6913), 1, + ACTIONS(6929), 1, anon_sym_EQ_TILDE, - ACTIONS(6915), 1, + ACTIONS(6931), 1, anon_sym_QMARK, - ACTIONS(6975), 1, + ACTIONS(7002), 1, anon_sym_RPAREN_RPAREN, - STATE(6601), 1, + STATE(6627), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202654,56 +204749,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [145632] = 21, + [147580] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(6883), 1, - anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(1336), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1338), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [147626] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6869), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6828), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_STAR_STAR, - ACTIONS(6913), 1, - anon_sym_EQ_TILDE, - ACTIONS(6915), 1, - anon_sym_QMARK, - ACTIONS(6977), 1, - anon_sym_RPAREN_RPAREN, - STATE(6683), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + anon_sym_STAR_STAR, + ACTIONS(6826), 22, + sym__concat, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202715,56 +204827,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [145714] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(6883), 1, - anon_sym_EQ, - ACTIONS(6889), 1, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, - anon_sym_PIPE, - ACTIONS(6895), 1, - anon_sym_CARET, - ACTIONS(6897), 1, - anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_STAR_STAR, - ACTIONS(6913), 1, - anon_sym_EQ_TILDE, - ACTIONS(6915), 1, - anon_sym_QMARK, - ACTIONS(6979), 1, - anon_sym_RPAREN_RPAREN, - STATE(6723), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6899), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6903), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [147674] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6891), 1, + anon_sym_STAR_STAR, + ACTIONS(6869), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6885), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(6887), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(6889), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + ACTIONS(6828), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6826), 22, + sym__concat, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202776,56 +204875,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [145796] = 21, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [147730] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(6899), 1, anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(6905), 1, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, + ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6895), 1, + ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6897), 1, + ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6911), 1, + ACTIONS(6927), 1, anon_sym_STAR_STAR, - ACTIONS(6913), 1, + ACTIONS(6929), 1, anon_sym_EQ_TILDE, - ACTIONS(6915), 1, + ACTIONS(6931), 1, anon_sym_QMARK, - ACTIONS(6981), 1, + ACTIONS(7004), 1, anon_sym_RPAREN_RPAREN, - STATE(6594), 1, + STATE(6633), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202837,117 +204945,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [145878] = 21, - ACTIONS(71), 1, + [147812] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(6883), 1, - anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(1235), 1, + sym_file_descriptor, + ACTIONS(7008), 1, + anon_sym_DQUOTE, + ACTIONS(7012), 1, + sym_variable_name, + STATE(4270), 1, + sym_string, + ACTIONS(7010), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7006), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 23, + anon_sym_SEMI, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6895), 1, - anon_sym_CARET, - ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_STAR_STAR, - ACTIONS(6913), 1, - anon_sym_EQ_TILDE, - ACTIONS(6915), 1, - anon_sym_QMARK, - ACTIONS(6983), 1, - anon_sym_RPAREN_RPAREN, - STATE(6708), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6909), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6887), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [145960] = 21, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [147868] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(6899), 1, anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(6905), 1, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, + ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6895), 1, + ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6897), 1, + ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6911), 1, + ACTIONS(6927), 1, anon_sym_STAR_STAR, - ACTIONS(6913), 1, + ACTIONS(6929), 1, anon_sym_EQ_TILDE, - ACTIONS(6915), 1, + ACTIONS(6931), 1, anon_sym_QMARK, - ACTIONS(6985), 1, + ACTIONS(7014), 1, anon_sym_RPAREN_RPAREN, - STATE(6669), 1, + STATE(6637), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202959,56 +205054,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [146042] = 21, + [147950] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(6899), 1, anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(6905), 1, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, + ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6895), 1, + ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6897), 1, + ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6911), 1, + ACTIONS(6927), 1, anon_sym_STAR_STAR, - ACTIONS(6913), 1, + ACTIONS(6929), 1, anon_sym_EQ_TILDE, - ACTIONS(6915), 1, + ACTIONS(6931), 1, anon_sym_QMARK, - ACTIONS(6987), 1, + ACTIONS(7016), 1, anon_sym_RPAREN_RPAREN, - STATE(6647), 1, + STATE(6641), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203020,14 +205115,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [146124] = 5, + [148032] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6989), 1, + ACTIONS(7018), 1, sym__special_character, - STATE(2806), 1, + STATE(2852), 1, aux_sym__literal_repeat1, - ACTIONS(5393), 12, + ACTIONS(5315), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -203040,7 +205135,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(5395), 24, + ACTIONS(5317), 24, sym_file_descriptor, sym_test_operator, sym__brace_start, @@ -203049,12 +205144,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, @@ -203065,56 +205160,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [146174] = 21, + [148082] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(7020), 1, + sym_extglob_pattern, + ACTIONS(6753), 14, anon_sym_EQ, - ACTIONS(6889), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, - anon_sym_AMP_AMP, - ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6911), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6913), 1, + ACTIONS(6751), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, - ACTIONS(6915), 1, anon_sym_QMARK, - ACTIONS(6991), 1, - anon_sym_RPAREN_RPAREN, - STATE(6624), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, + [148130] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6891), 1, + anon_sym_STAR_STAR, + ACTIONS(6893), 1, + sym_test_operator, + ACTIONS(6869), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(6879), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(6881), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(6883), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(6885), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(6887), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(6889), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + ACTIONS(6795), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(6793), 17, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203126,56 +205251,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [146256] = 21, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [148194] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(6899), 1, anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(6905), 1, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, + ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6895), 1, + ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6897), 1, + ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6911), 1, + ACTIONS(6927), 1, anon_sym_STAR_STAR, - ACTIONS(6913), 1, + ACTIONS(6929), 1, anon_sym_EQ_TILDE, - ACTIONS(6915), 1, + ACTIONS(6931), 1, anon_sym_QMARK, - ACTIONS(6993), 1, + ACTIONS(7022), 1, anon_sym_RPAREN_RPAREN, - STATE(6576), 1, + STATE(6646), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203187,56 +205317,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [146338] = 21, + [148276] = 17, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(6883), 1, - anon_sym_EQ, - ACTIONS(6889), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, + ACTIONS(6871), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + ACTIONS(6873), 1, anon_sym_PIPE, - ACTIONS(6895), 1, + ACTIONS(6875), 1, anon_sym_CARET, - ACTIONS(6897), 1, + ACTIONS(6877), 1, anon_sym_AMP, - ACTIONS(6911), 1, + ACTIONS(6891), 1, anon_sym_STAR_STAR, - ACTIONS(6913), 1, - anon_sym_EQ_TILDE, - ACTIONS(6915), 1, - anon_sym_QMARK, - ACTIONS(6995), 1, - anon_sym_RPAREN_RPAREN, - STATE(6621), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, + ACTIONS(6893), 1, + sym_test_operator, + ACTIONS(7024), 1, + anon_sym_EQ, + ACTIONS(7028), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6869), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(6879), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(6881), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(6883), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(6885), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(6887), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(6889), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + ACTIONS(7026), 15, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203248,103 +205371,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [146420] = 7, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [148350] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5821), 2, + ACTIONS(1340), 13, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - ACTIONS(5826), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5819), 5, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(5823), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(5828), 7, + ACTIONS(1342), 25, sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5831), 15, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [146474] = 21, + [148396] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(6899), 1, anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(6905), 1, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, + ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6895), 1, + ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6897), 1, + ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6911), 1, + ACTIONS(6927), 1, anon_sym_STAR_STAR, - ACTIONS(6913), 1, + ACTIONS(6929), 1, anon_sym_EQ_TILDE, - ACTIONS(6915), 1, + ACTIONS(6931), 1, anon_sym_QMARK, - ACTIONS(6997), 1, + ACTIONS(7030), 1, anon_sym_RPAREN_RPAREN, - STATE(6685), 1, + STATE(6636), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203356,56 +205478,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [146556] = 21, + [148478] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(1340), 14, anon_sym_EQ, - ACTIONS(6889), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, - anon_sym_AMP_AMP, - ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_STAR_STAR, - ACTIONS(6913), 1, - anon_sym_EQ_TILDE, - ACTIONS(6915), 1, - anon_sym_QMARK, - ACTIONS(6999), 1, - anon_sym_RPAREN_RPAREN, - STATE(6684), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + anon_sym_STAR_STAR, + ACTIONS(1342), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203417,56 +205512,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [146638] = 21, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [148524] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(6899), 1, anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(6905), 1, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, + ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6895), 1, + ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6897), 1, + ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6911), 1, + ACTIONS(6927), 1, anon_sym_STAR_STAR, - ACTIONS(6913), 1, + ACTIONS(6929), 1, anon_sym_EQ_TILDE, - ACTIONS(6915), 1, + ACTIONS(6931), 1, anon_sym_QMARK, - ACTIONS(7001), 1, + ACTIONS(7032), 1, anon_sym_RPAREN_RPAREN, - STATE(6644), 1, + STATE(6649), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203478,117 +205582,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [146720] = 21, + [148606] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(6883), 1, - anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(1292), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1294), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [148652] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1356), 13, anon_sym_PIPE, - ACTIONS(6895), 1, - anon_sym_CARET, - ACTIONS(6897), 1, - anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_STAR_STAR, - ACTIONS(6913), 1, - anon_sym_EQ_TILDE, - ACTIONS(6915), 1, - anon_sym_QMARK, - ACTIONS(7003), 1, - anon_sym_RPAREN_RPAREN, - STATE(6552), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6905), 2, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1358), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(6907), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6909), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6887), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [146802] = 21, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [148698] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(6899), 1, anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(6905), 1, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, + ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6895), 1, + ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6897), 1, + ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6911), 1, + ACTIONS(6927), 1, anon_sym_STAR_STAR, - ACTIONS(6913), 1, + ACTIONS(6929), 1, anon_sym_EQ_TILDE, - ACTIONS(6915), 1, + ACTIONS(6931), 1, anon_sym_QMARK, - ACTIONS(7005), 1, + ACTIONS(7034), 1, anon_sym_RPAREN_RPAREN, - STATE(6680), 1, + STATE(6655), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203600,56 +205729,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [146884] = 21, + [148780] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(6899), 1, anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(6905), 1, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, + ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6895), 1, + ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6897), 1, + ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6911), 1, + ACTIONS(6927), 1, anon_sym_STAR_STAR, - ACTIONS(6913), 1, + ACTIONS(6929), 1, anon_sym_EQ_TILDE, - ACTIONS(6915), 1, + ACTIONS(6931), 1, anon_sym_QMARK, - ACTIONS(7007), 1, + ACTIONS(7036), 1, anon_sym_RPAREN_RPAREN, - STATE(6593), 1, + STATE(6659), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203661,56 +205790,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [146966] = 21, + [148862] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(6899), 1, anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(6905), 1, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, + ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6895), 1, + ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6897), 1, + ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6911), 1, + ACTIONS(6927), 1, anon_sym_STAR_STAR, - ACTIONS(6913), 1, + ACTIONS(6929), 1, anon_sym_EQ_TILDE, - ACTIONS(6915), 1, + ACTIONS(6931), 1, anon_sym_QMARK, - ACTIONS(7009), 1, + ACTIONS(7038), 1, anon_sym_RPAREN_RPAREN, - STATE(6617), 1, + STATE(6547), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203722,56 +205851,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [147048] = 21, + [148944] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(6883), 1, - anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(5871), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5873), 26, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [148990] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1344), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1346), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [149036] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1356), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1358), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [149082] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6852), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_STAR_STAR, - ACTIONS(6913), 1, - anon_sym_EQ_TILDE, - ACTIONS(6915), 1, - anon_sym_QMARK, - ACTIONS(7011), 1, - anon_sym_RPAREN_RPAREN, - STATE(6691), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + anon_sym_STAR_STAR, + ACTIONS(6850), 24, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203783,56 +206014,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [147130] = 21, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [149128] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(6899), 1, anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(6905), 1, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, + ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6895), 1, + ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6897), 1, + ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6911), 1, + ACTIONS(6927), 1, anon_sym_STAR_STAR, - ACTIONS(6913), 1, + ACTIONS(6929), 1, anon_sym_EQ_TILDE, - ACTIONS(6915), 1, + ACTIONS(6931), 1, anon_sym_QMARK, - ACTIONS(7013), 1, - anon_sym_RPAREN_RPAREN, - STATE(6622), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + ACTIONS(6939), 14, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203844,56 +206080,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [147212] = 21, + anon_sym_COLON, + [149204] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(7042), 14, anon_sym_EQ, - ACTIONS(6889), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, - anon_sym_AMP_AMP, - ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_STAR_STAR, - ACTIONS(6913), 1, - anon_sym_EQ_TILDE, - ACTIONS(6915), 1, - anon_sym_QMARK, - ACTIONS(7015), 1, - anon_sym_RPAREN_RPAREN, - STATE(6629), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + anon_sym_STAR_STAR, + ACTIONS(7040), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203905,56 +206115,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [147294] = 21, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [149250] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(7046), 14, anon_sym_EQ, - ACTIONS(6889), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, - anon_sym_AMP_AMP, - ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_STAR_STAR, - ACTIONS(6913), 1, - anon_sym_EQ_TILDE, - ACTIONS(6915), 1, - anon_sym_QMARK, - ACTIONS(7017), 1, - anon_sym_RPAREN_RPAREN, - STATE(6588), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + anon_sym_STAR_STAR, + ACTIONS(7044), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203966,56 +206158,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [147376] = 21, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [149296] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(6899), 1, anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(6905), 1, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, + ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6895), 1, + ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6897), 1, + ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6911), 1, + ACTIONS(6927), 1, anon_sym_STAR_STAR, - ACTIONS(6913), 1, + ACTIONS(6929), 1, anon_sym_EQ_TILDE, - ACTIONS(6915), 1, + ACTIONS(6931), 1, anon_sym_QMARK, - ACTIONS(7019), 1, + ACTIONS(7048), 1, anon_sym_RPAREN_RPAREN, - STATE(6688), 1, + STATE(6664), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204027,56 +206228,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [147458] = 21, + [149378] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(6899), 1, anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(6905), 1, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, + ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6895), 1, + ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6897), 1, + ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6911), 1, + ACTIONS(6927), 1, anon_sym_STAR_STAR, - ACTIONS(6913), 1, + ACTIONS(6929), 1, anon_sym_EQ_TILDE, - ACTIONS(6915), 1, + ACTIONS(6931), 1, anon_sym_QMARK, - ACTIONS(7021), 1, + ACTIONS(7050), 1, anon_sym_RPAREN_RPAREN, - STATE(6548), 1, + STATE(6667), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204088,56 +206289,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [147540] = 21, + [149460] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(1292), 14, anon_sym_EQ, - ACTIONS(6889), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, - anon_sym_AMP_AMP, - ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_STAR_STAR, - ACTIONS(6913), 1, - anon_sym_EQ_TILDE, - ACTIONS(6915), 1, - anon_sym_QMARK, - ACTIONS(7023), 1, - anon_sym_RPAREN_RPAREN, - STATE(6580), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + anon_sym_STAR_STAR, + ACTIONS(1294), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204149,56 +206323,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [147622] = 21, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [149506] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(6795), 14, anon_sym_EQ, - ACTIONS(6889), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, - anon_sym_AMP_AMP, - ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_STAR_STAR, - ACTIONS(6913), 1, - anon_sym_EQ_TILDE, - ACTIONS(6915), 1, - anon_sym_QMARK, - ACTIONS(7025), 1, - anon_sym_RPAREN_RPAREN, - STATE(6656), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + anon_sym_STAR_STAR, + ACTIONS(6793), 24, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204210,10 +206366,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [147704] = 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [149552] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1261), 15, + ACTIONS(6795), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -204228,8 +206393,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - sym__special_character, - ACTIONS(1263), 23, + ACTIONS(6793), 24, + sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -204253,56 +206418,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [147750] = 21, + [149598] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6955), 14, anon_sym_EQ, - ACTIONS(6889), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, - anon_sym_AMP_AMP, - ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_STAR_STAR, - ACTIONS(6913), 1, - anon_sym_EQ_TILDE, - ACTIONS(6915), 1, - anon_sym_QMARK, - ACTIONS(7027), 1, - anon_sym_RPAREN_RPAREN, - STATE(6650), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + anon_sym_STAR_STAR, + ACTIONS(6953), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204314,99 +206453,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [147832] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1261), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1263), 26, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [147878] = 21, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [149646] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(7054), 14, anon_sym_EQ, - ACTIONS(6889), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, - anon_sym_AMP_AMP, - ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_STAR_STAR, - ACTIONS(6913), 1, - anon_sym_EQ_TILDE, - ACTIONS(6915), 1, - anon_sym_QMARK, - ACTIONS(7029), 1, - anon_sym_RPAREN_RPAREN, - STATE(6657), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + anon_sym_STAR_STAR, + ACTIONS(7052), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204418,56 +206496,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [147960] = 21, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [149692] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(6899), 1, anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(6905), 1, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, + ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6895), 1, + ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6897), 1, + ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6911), 1, + ACTIONS(6927), 1, anon_sym_STAR_STAR, - ACTIONS(6913), 1, + ACTIONS(6929), 1, anon_sym_EQ_TILDE, - ACTIONS(6915), 1, + ACTIONS(6931), 1, anon_sym_QMARK, - ACTIONS(7031), 1, + ACTIONS(7056), 1, anon_sym_RPAREN_RPAREN, - STATE(6643), 1, + STATE(6720), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204479,10 +206566,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [148042] = 3, + [149774] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7035), 14, + ACTIONS(1272), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -204497,9 +206584,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7033), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + sym__special_character, + ACTIONS(1274), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -204519,48 +206606,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [148088] = 15, + [149820] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6807), 1, + ACTIONS(1336), 14, anon_sym_EQ, - ACTIONS(6877), 1, - anon_sym_STAR_STAR, - ACTIONS(7037), 1, anon_sym_PIPE, - ACTIONS(7039), 1, anon_sym_CARET, - ACTIONS(7041), 1, anon_sym_AMP, - ACTIONS(7049), 1, - sym_test_operator, - ACTIONS(6869), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6871), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6873), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7043), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7045), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7047), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6875), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 17, - sym__concat, + anon_sym_STAR_STAR, + ACTIONS(1338), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204574,32 +206645,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [148158] = 3, + anon_sym_COLON, + [149866] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(7053), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(6913), 1, anon_sym_AMP, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7051), 24, + ACTIONS(6941), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(6939), 18, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204613,63 +206701,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [148204] = 21, + [149930] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(6899), 1, anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(6905), 1, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, + ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6895), 1, + ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6897), 1, + ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6911), 1, + ACTIONS(6927), 1, anon_sym_STAR_STAR, - ACTIONS(6913), 1, + ACTIONS(6929), 1, anon_sym_EQ_TILDE, - ACTIONS(6915), 1, + ACTIONS(6931), 1, anon_sym_QMARK, - ACTIONS(7055), 1, + ACTIONS(7058), 1, anon_sym_RPAREN_RPAREN, - STATE(6692), 1, + STATE(6670), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204681,98 +206765,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [148286] = 3, - ACTIONS(71), 1, + [150012] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, + ACTIONS(1241), 1, + sym_file_descriptor, + ACTIONS(7008), 1, + anon_sym_DQUOTE, + ACTIONS(7012), 1, + sym_variable_name, + STATE(4270), 1, + sym_string, + ACTIONS(7010), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7006), 9, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6862), 24, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 23, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [148332] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7057), 1, - sym__special_character, - STATE(2806), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 12, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1364), 24, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [148382] = 3, + aux_sym_heredoc_redirect_token1, + [150068] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5770), 13, + ACTIONS(7060), 1, + sym__special_character, + STATE(2852), 1, + aux_sym__literal_repeat1, + ACTIONS(1360), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -204784,11 +206832,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(5772), 25, + ACTIONS(1362), 24, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -204801,9 +206847,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -204812,74 +206858,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [148428] = 5, + [150118] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6732), 1, - anon_sym_RBRACK, - ACTIONS(7060), 1, - sym__concat, - ACTIONS(1273), 14, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(6899), 1, anon_sym_EQ, + ACTIONS(6905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP_AMP, + ACTIONS(6909), 1, anon_sym_PIPE, + ACTIONS(6911), 1, anon_sym_CARET, + ACTIONS(6913), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(6927), 1, anon_sym_STAR_STAR, - ACTIONS(1369), 22, - sym_test_operator, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, + anon_sym_QMARK, + ACTIONS(7063), 1, + anon_sym_RPAREN_RPAREN, + STATE(6674), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [148478] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7064), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7062), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204891,24 +206919,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [148524] = 5, + [150200] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6877), 1, - anon_sym_STAR_STAR, - ACTIONS(6869), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6807), 13, + ACTIONS(7065), 1, + sym_extglob_pattern, + ACTIONS(6753), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -204922,9 +206938,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 22, - sym__concat, + anon_sym_STAR_STAR, + ACTIONS(6751), 23, sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204945,56 +206963,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [148574] = 21, + [150248] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(6899), 1, anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(6905), 1, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, + ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6895), 1, + ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6897), 1, + ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6911), 1, + ACTIONS(6927), 1, anon_sym_STAR_STAR, - ACTIONS(6913), 1, + ACTIONS(6929), 1, anon_sym_EQ_TILDE, - ACTIONS(6915), 1, + ACTIONS(6931), 1, anon_sym_QMARK, - ACTIONS(7066), 1, + ACTIONS(7067), 1, anon_sym_RPAREN_RPAREN, - STATE(6613), 1, + STATE(6679), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205006,15 +207024,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [148656] = 5, + [150330] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6877), 1, - anon_sym_STAR_STAR, - ACTIONS(6869), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6807), 13, + ACTIONS(1356), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -205028,9 +207041,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 22, - sym__concat, + anon_sym_STAR_STAR, + ACTIONS(1358), 24, sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205051,19 +207067,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [148706] = 6, + [150376] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6877), 1, - anon_sym_STAR_STAR, - ACTIONS(6869), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6875), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6807), 10, + ACTIONS(1324), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -205074,9 +207081,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6805), 22, - sym__concat, - sym_test_operator, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1326), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205094,25 +207107,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [148758] = 7, + anon_sym_COLON, + [150422] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6877), 1, - anon_sym_STAR_STAR, - ACTIONS(6869), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6873), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6875), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6807), 8, + ACTIONS(6678), 1, + anon_sym_RBRACK, + ACTIONS(7069), 1, + sym__concat, + ACTIONS(1253), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -205121,9 +207126,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6805), 22, - sym__concat, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1376), 22, sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205141,17 +207153,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [148812] = 5, + [150472] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6723), 1, - anon_sym_RBRACK, - ACTIONS(7068), 1, - sym__concat, - ACTIONS(1273), 14, + ACTIONS(1328), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -205166,8 +207173,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1369), 22, - sym_test_operator, + ACTIONS(1330), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -205189,35 +207197,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [148862] = 9, + anon_sym_COLON, + [150518] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6877), 1, - anon_sym_STAR_STAR, - ACTIONS(7049), 1, - sym_test_operator, - ACTIONS(6869), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6871), 2, + ACTIONS(7073), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6873), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6875), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6807), 6, + anon_sym_STAR_STAR, + ACTIONS(7071), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [150564] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1348), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6805), 21, - sym__concat, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1350), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205235,13 +207281,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [148920] = 3, + anon_sym_COLON, + [150610] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5766), 13, + ACTIONS(1296), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -205253,11 +207299,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, + anon_sym_BQUOTE, sym_word, - ACTIONS(5768), 25, + ACTIONS(1298), 25, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -205272,19 +207318,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [148966] = 3, + [150656] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1352), 14, + ACTIONS(1344), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -205299,9 +207345,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1354), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1346), 24, + sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -205321,13 +207367,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [149012] = 3, + [150702] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1261), 13, + ACTIONS(1308), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -205336,13 +207382,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(1263), 25, + ACTIONS(1310), 25, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -205350,73 +207397,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [149058] = 21, + [150748] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(1356), 14, anon_sym_EQ, - ACTIONS(6889), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, - anon_sym_AMP_AMP, - ACTIONS(6893), 1, anon_sym_PIPE, - ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_STAR_STAR, - ACTIONS(6913), 1, - anon_sym_EQ_TILDE, - ACTIONS(6915), 1, - anon_sym_QMARK, - ACTIONS(7070), 1, - anon_sym_RPAREN_RPAREN, - STATE(6698), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + anon_sym_STAR_STAR, + ACTIONS(1358), 24, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205428,29 +207447,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [149140] = 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [150794] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 14, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(6899), 1, anon_sym_EQ, + ACTIONS(6905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP_AMP, + ACTIONS(6909), 1, anon_sym_PIPE, + ACTIONS(6911), 1, anon_sym_CARET, + ACTIONS(6913), 1, anon_sym_AMP, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, + anon_sym_QMARK, + ACTIONS(7075), 1, + anon_sym_RPAREN_RPAREN, + STATE(6687), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1310), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205462,38 +207517,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [150876] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1235), 1, + sym_file_descriptor, + ACTIONS(3135), 1, + anon_sym_DQUOTE, + ACTIONS(7081), 1, + sym_variable_name, + STATE(4523), 1, + sym_string, + ACTIONS(7079), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7077), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 23, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [149186] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1304), 14, - anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [150932] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1306), 24, + ACTIONS(6955), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6953), 22, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205514,29 +207613,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [149232] = 3, + [150988] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 14, + ACTIONS(1272), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1274), 25, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [151034] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(6899), 1, anon_sym_EQ, + ACTIONS(6905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP_AMP, + ACTIONS(6909), 1, anon_sym_PIPE, + ACTIONS(6911), 1, anon_sym_CARET, + ACTIONS(6913), 1, anon_sym_AMP, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, + anon_sym_QMARK, + ACTIONS(7083), 1, + anon_sym_RPAREN_RPAREN, + STATE(6696), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1310), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205548,38 +207717,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [151116] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1241), 1, + sym_file_descriptor, + ACTIONS(3135), 1, + anon_sym_DQUOTE, + ACTIONS(7081), 1, + sym_variable_name, + STATE(4523), 1, + sym_string, + ACTIONS(7079), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7077), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 23, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [149278] = 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [151172] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 14, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(6899), 1, anon_sym_EQ, + ACTIONS(6905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP_AMP, + ACTIONS(6909), 1, anon_sym_PIPE, + ACTIONS(6911), 1, anon_sym_CARET, + ACTIONS(6913), 1, anon_sym_AMP, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, + anon_sym_QMARK, + ACTIONS(7085), 1, + anon_sym_RPAREN_RPAREN, + STATE(6707), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1314), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205591,38 +207826,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [149324] = 3, + [151254] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7064), 14, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(6899), 1, anon_sym_EQ, + ACTIONS(6905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP_AMP, + ACTIONS(6909), 1, anon_sym_PIPE, + ACTIONS(6911), 1, anon_sym_CARET, + ACTIONS(6913), 1, anon_sym_AMP, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, + anon_sym_QMARK, + ACTIONS(7087), 1, + anon_sym_RPAREN_RPAREN, + STATE(6711), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7062), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205634,38 +207887,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [151336] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2171), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2173), 26, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [149370] = 3, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [151382] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1340), 14, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(6899), 1, anon_sym_EQ, + ACTIONS(6905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP_AMP, + ACTIONS(6909), 1, anon_sym_PIPE, + ACTIONS(6911), 1, anon_sym_CARET, + ACTIONS(6913), 1, anon_sym_AMP, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, + anon_sym_QMARK, + ACTIONS(7089), 1, + anon_sym_RPAREN_RPAREN, + STATE(6724), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1342), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205677,48 +207991,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [151464] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(6899), 1, + anon_sym_EQ, + ACTIONS(6905), 1, anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(6909), 1, + anon_sym_PIPE, + ACTIONS(6911), 1, + anon_sym_CARET, + ACTIONS(6913), 1, + anon_sym_AMP, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6929), 1, anon_sym_EQ_TILDE, + ACTIONS(6931), 1, anon_sym_QMARK, - anon_sym_COLON, - [149416] = 11, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6877), 1, - anon_sym_STAR_STAR, - ACTIONS(7049), 1, - sym_test_operator, - ACTIONS(6869), 2, + ACTIONS(7091), 1, + anon_sym_RPAREN_RPAREN, + STATE(6676), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6871), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6873), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7045), 2, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7047), 2, + ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6875), 3, + ACTIONS(6921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6807), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6805), 19, - sym__concat, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205730,48 +208052,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [149478] = 12, + [151546] = 11, ACTIONS(71), 1, sym_comment, - ACTIONS(6877), 1, + ACTIONS(6891), 1, anon_sym_STAR_STAR, - ACTIONS(7049), 1, + ACTIONS(6893), 1, sym_test_operator, ACTIONS(6869), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6871), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6873), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7043), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7045), 2, + ACTIONS(6881), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7047), 2, + ACTIONS(6883), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6875), 3, + ACTIONS(6885), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6889), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6807), 4, + ACTIONS(6795), 4, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(6805), 17, + ACTIONS(6793), 19, sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -205786,46 +208098,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [149542] = 13, + [151608] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6877), 1, - anon_sym_STAR_STAR, - ACTIONS(7041), 1, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(6899), 1, + anon_sym_EQ, + ACTIONS(6905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP_AMP, + ACTIONS(6909), 1, + anon_sym_PIPE, + ACTIONS(6911), 1, + anon_sym_CARET, + ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(7049), 1, - sym_test_operator, - ACTIONS(6869), 2, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, + anon_sym_QMARK, + ACTIONS(7093), 1, + anon_sym_RPAREN_RPAREN, + STATE(6557), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6871), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6873), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7043), 2, + ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7045), 2, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7047), 2, + ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6807), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(6875), 3, + ACTIONS(6921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 17, - sym__concat, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205837,49 +208164,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [151690] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1312), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1314), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [149608] = 14, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [151736] = 15, ACTIONS(71), 1, sym_comment, - ACTIONS(6877), 1, - anon_sym_STAR_STAR, - ACTIONS(7039), 1, + ACTIONS(6907), 1, + anon_sym_AMP_AMP, + ACTIONS(6909), 1, + anon_sym_PIPE, + ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(7041), 1, + ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(7049), 1, - sym_test_operator, - ACTIONS(6807), 2, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6941), 1, anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(6869), 2, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6871), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6873), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7043), 2, + ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7045), 2, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7047), 2, + ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6875), 3, + ACTIONS(6921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 17, - sym__concat, + ACTIONS(6939), 17, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205892,51 +208259,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [149676] = 16, + anon_sym_COLON, + [151806] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6807), 1, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(6899), 1, anon_sym_EQ, - ACTIONS(6877), 1, - anon_sym_STAR_STAR, - ACTIONS(7037), 1, + ACTIONS(6905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP_AMP, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(7039), 1, + ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(7041), 1, + ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(7049), 1, - sym_test_operator, - ACTIONS(7072), 1, - anon_sym_AMP_AMP, - ACTIONS(6869), 2, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, + anon_sym_QMARK, + ACTIONS(7095), 1, + anon_sym_RPAREN_RPAREN, + STATE(6568), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6871), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6873), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7043), 2, + ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7045), 2, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7047), 2, + ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6875), 3, + ACTIONS(6921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 16, - sym__concat, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205948,57 +208323,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [149748] = 19, + [151888] = 14, ACTIONS(71), 1, sym_comment, - ACTIONS(6877), 1, - anon_sym_STAR_STAR, - ACTIONS(7037), 1, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(7039), 1, + ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(7041), 1, + ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(7049), 1, - sym_test_operator, - ACTIONS(7072), 1, - anon_sym_AMP_AMP, - ACTIONS(7074), 1, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6941), 1, anon_sym_EQ, - ACTIONS(7076), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7078), 1, - anon_sym_EQ_TILDE, - ACTIONS(7080), 1, - anon_sym_QMARK, - ACTIONS(6869), 2, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6871), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6873), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7043), 2, + ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7045), 2, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7047), 2, + ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6875), 3, + ACTIONS(6921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 13, - sym__concat, + ACTIONS(6939), 18, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206010,33 +208372,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RBRACK, - [149826] = 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [151956] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6708), 1, - anon_sym_RBRACK, - ACTIONS(7082), 1, - sym__concat, - ACTIONS(1273), 14, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(6899), 1, anon_sym_EQ, + ACTIONS(6905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP_AMP, + ACTIONS(6909), 1, anon_sym_PIPE, + ACTIONS(6911), 1, anon_sym_CARET, + ACTIONS(6913), 1, anon_sym_AMP, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, + anon_sym_QMARK, + ACTIONS(7097), 1, + anon_sym_RPAREN_RPAREN, + STATE(6579), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1369), 22, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206048,22 +208438,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [149876] = 5, + [152038] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6670), 1, - anon_sym_RBRACK, - ACTIONS(7084), 1, - sym__concat, - ACTIONS(1273), 14, + ACTIONS(1253), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -206078,7 +208456,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1369), 22, + ACTIONS(1376), 24, + sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -206099,52 +208478,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [149926] = 18, + [152084] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(6807), 1, - anon_sym_EQ, - ACTIONS(6877), 1, + ACTIONS(6891), 1, anon_sym_STAR_STAR, - ACTIONS(7037), 1, - anon_sym_PIPE, - ACTIONS(7039), 1, - anon_sym_CARET, - ACTIONS(7041), 1, - anon_sym_AMP, - ACTIONS(7049), 1, + ACTIONS(6893), 1, sym_test_operator, - ACTIONS(7072), 1, - anon_sym_AMP_AMP, - ACTIONS(7076), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7080), 1, - anon_sym_QMARK, ACTIONS(6869), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6871), 2, + ACTIONS(6885), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6873), 2, + ACTIONS(6887), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7043), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7045), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7047), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6875), 3, + ACTIONS(6889), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 14, + ACTIONS(6795), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6793), 21, sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -206157,58 +208521,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RBRACK, anon_sym_EQ_TILDE, - [150002] = 21, + anon_sym_QMARK, + [152142] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(6899), 1, anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(6905), 1, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, + ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6895), 1, + ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6897), 1, + ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6911), 1, + ACTIONS(6927), 1, anon_sym_STAR_STAR, - ACTIONS(6913), 1, + ACTIONS(6929), 1, anon_sym_EQ_TILDE, - ACTIONS(6915), 1, + ACTIONS(6931), 1, anon_sym_QMARK, - ACTIONS(7086), 1, + ACTIONS(7099), 1, anon_sym_RPAREN_RPAREN, - STATE(6661), 1, + STATE(6590), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206220,34 +208591,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [150084] = 8, + [152224] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6877), 1, - anon_sym_STAR_STAR, - ACTIONS(6869), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6871), 2, + ACTIONS(1332), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6873), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6875), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6807), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6805), 22, - sym__concat, - sym_test_operator, + anon_sym_STAR_STAR, + ACTIONS(1334), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206265,57 +208631,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [150140] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + [152270] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(7090), 1, - anon_sym_EQ, - ACTIONS(7092), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7088), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(1320), 13, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1322), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - [150188] = 3, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [152316] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6797), 14, + ACTIONS(6692), 1, + anon_sym_RBRACK, + ACTIONS(7101), 1, + sym__concat, + ACTIONS(1253), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -206330,8 +208699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6795), 24, - sym__concat, + ACTIONS(1376), 22, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -206352,37 +208720,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [150234] = 8, + [152366] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6911), 1, - anon_sym_STAR_STAR, - ACTIONS(6885), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6905), 2, + ACTIONS(1352), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7096), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7094), 22, + anon_sym_STAR_STAR, + ACTIONS(1354), 24, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206403,10 +208765,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [150290] = 3, + [152412] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1324), 13, + ACTIONS(7103), 1, + sym__special_character, + STATE(2781), 1, + aux_sym__literal_repeat1, + ACTIONS(5315), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5317), 24, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [152462] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1304), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -206420,7 +208827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1326), 25, + ACTIONS(1306), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -206446,10 +208853,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [150336] = 3, + [152508] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1251), 13, + ACTIONS(4511), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -206461,11 +208868,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1253), 25, + ACTIONS(4513), 26, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -206478,24 +208884,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [150382] = 4, + [152554] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6885), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7096), 14, + ACTIONS(1356), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -206510,9 +208914,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7094), 22, + ACTIONS(1358), 24, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206533,56 +208939,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [150430] = 21, + [152600] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(6899), 1, anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(6905), 1, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, + ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6895), 1, + ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6897), 1, + ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6911), 1, + ACTIONS(6927), 1, anon_sym_STAR_STAR, - ACTIONS(6913), 1, + ACTIONS(6929), 1, anon_sym_EQ_TILDE, - ACTIONS(6915), 1, + ACTIONS(6931), 1, anon_sym_QMARK, - ACTIONS(7098), 1, + ACTIONS(7105), 1, anon_sym_RPAREN_RPAREN, - STATE(6642), 1, + STATE(6603), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206594,48 +209000,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [150512] = 16, + [152682] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(6889), 1, - anon_sym_PIPE_PIPE, ACTIONS(6891), 1, - anon_sym_AMP_AMP, - ACTIONS(6893), 1, + anon_sym_STAR_STAR, + ACTIONS(6869), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6889), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6795), 8, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6895), 1, anon_sym_CARET, - ACTIONS(6897), 1, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6793), 22, + sym__concat, + sym_test_operator, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [152736] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(6899), 1, + anon_sym_EQ, + ACTIONS(6905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP_AMP, + ACTIONS(6909), 1, + anon_sym_PIPE, ACTIONS(6911), 1, + anon_sym_CARET, + ACTIONS(6913), 1, + anon_sym_AMP, + ACTIONS(6927), 1, anon_sym_STAR_STAR, - ACTIONS(7102), 1, - anon_sym_EQ, - ACTIONS(6885), 2, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, + anon_sym_QMARK, + ACTIONS(7107), 1, + anon_sym_RPAREN_RPAREN, + STATE(6614), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7100), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206647,13 +209108,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [150584] = 3, + [152818] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(2072), 12, + ACTIONS(1272), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -206665,8 +209123,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(2074), 26, + ACTIONS(1274), 25, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -206681,7 +209140,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -206693,10 +209151,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [150630] = 3, + [152864] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1336), 14, + ACTIONS(6891), 1, + anon_sym_STAR_STAR, + ACTIONS(6869), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6889), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6795), 10, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -206707,15 +209174,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1338), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6793), 22, + sym__concat, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206733,37 +209194,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [150676] = 8, + [152916] = 21, ACTIONS(71), 1, sym_comment, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(6899), 1, + anon_sym_EQ, + ACTIONS(6905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP_AMP, + ACTIONS(6909), 1, + anon_sym_PIPE, ACTIONS(6911), 1, + anon_sym_CARET, + ACTIONS(6913), 1, + anon_sym_AMP, + ACTIONS(6927), 1, anon_sym_STAR_STAR, - ACTIONS(6885), 2, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, + anon_sym_QMARK, + ACTIONS(7109), 1, + anon_sym_RPAREN_RPAREN, + STATE(6628), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6905), 2, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7096), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7094), 22, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206775,19 +209258,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [152998] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1235), 1, + sym_file_descriptor, + ACTIONS(3354), 1, + anon_sym_DQUOTE, + ACTIONS(7115), 1, + sym_variable_name, + STATE(4471), 1, + sym_string, + ACTIONS(7113), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7111), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 23, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [150732] = 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [153054] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7106), 14, + ACTIONS(6891), 1, + anon_sym_STAR_STAR, + ACTIONS(6869), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6795), 13, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -206801,12 +209328,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7104), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6793), 22, + sym__concat, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206824,78 +209348,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [150778] = 3, + [153104] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(1348), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(6891), 1, + anon_sym_STAR_STAR, + ACTIONS(6869), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6885), 2, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1350), 25, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [150824] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6658), 1, - anon_sym_RBRACK, - ACTIONS(7108), 1, - sym__concat, - ACTIONS(1273), 14, + ACTIONS(6887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6889), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6795), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1369), 22, + ACTIONS(6793), 22, + sym__concat, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206913,12 +209396,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [150874] = 3, + [153160] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1328), 14, + ACTIONS(1344), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -206933,7 +209417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1330), 24, + ACTIONS(1346), 24, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -206958,29 +209442,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [150920] = 3, + [153206] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1320), 14, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(6899), 1, anon_sym_EQ, + ACTIONS(6905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP_AMP, + ACTIONS(6909), 1, anon_sym_PIPE, + ACTIONS(6911), 1, anon_sym_CARET, + ACTIONS(6913), 1, anon_sym_AMP, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, + anon_sym_QMARK, + ACTIONS(7117), 1, + anon_sym_RPAREN_RPAREN, + STATE(6558), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1322), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206992,62 +209503,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [153288] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1241), 1, + sym_file_descriptor, + ACTIONS(3354), 1, + anon_sym_DQUOTE, + ACTIONS(7115), 1, + sym_variable_name, + STATE(4471), 1, + sym_string, + ACTIONS(7113), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7111), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 23, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [150966] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1296), 13, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1298), 25, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [151012] = 3, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [153344] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1344), 14, + ACTIONS(1272), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -207062,9 +209569,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1346), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1274), 24, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -207084,32 +209590,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym__special_character, + [153390] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP_AMP, + ACTIONS(6909), 1, + anon_sym_PIPE, + ACTIONS(6911), 1, + anon_sym_CARET, + ACTIONS(6913), 1, + anon_sym_AMP, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(7121), 1, + anon_sym_EQ, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6925), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7119), 16, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [151058] = 3, + [153462] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1356), 14, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(6899), 1, anon_sym_EQ, + ACTIONS(6905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP_AMP, + ACTIONS(6909), 1, anon_sym_PIPE, + ACTIONS(6911), 1, anon_sym_CARET, + ACTIONS(6913), 1, anon_sym_AMP, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, + anon_sym_QMARK, + ACTIONS(7123), 1, + anon_sym_RPAREN_RPAREN, + STATE(6640), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1358), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207121,19 +209711,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [151104] = 3, + [153544] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 13, + ACTIONS(1328), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -207147,7 +209728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1302), 25, + ACTIONS(1330), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -207173,56 +209754,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [151150] = 21, + [153590] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(6899), 1, anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(6905), 1, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, + ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6895), 1, + ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6897), 1, + ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6911), 1, + ACTIONS(6927), 1, anon_sym_STAR_STAR, - ACTIONS(6913), 1, + ACTIONS(6929), 1, anon_sym_EQ_TILDE, - ACTIONS(6915), 1, + ACTIONS(6931), 1, anon_sym_QMARK, - ACTIONS(7110), 1, + ACTIONS(7125), 1, anon_sym_RPAREN_RPAREN, - STATE(6724), 1, + STATE(6650), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207234,53 +209815,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [151232] = 3, + [153672] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(1332), 13, + ACTIONS(6795), 1, + anon_sym_EQ, + ACTIONS(6871), 1, + anon_sym_AMP_AMP, + ACTIONS(6873), 1, anon_sym_PIPE, + ACTIONS(6875), 1, + anon_sym_CARET, + ACTIONS(6877), 1, + anon_sym_AMP, + ACTIONS(6891), 1, + anon_sym_STAR_STAR, + ACTIONS(6893), 1, + sym_test_operator, + ACTIONS(7028), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7127), 1, + anon_sym_QMARK, + ACTIONS(6869), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6879), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6881), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6883), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6885), 2, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1334), 25, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [151278] = 3, + ACTIONS(6887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6889), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6793), 14, + sym__concat, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + [153748] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7114), 14, + ACTIONS(1356), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -207295,7 +209891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7112), 24, + ACTIONS(1358), 24, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -207320,10 +209916,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [151324] = 3, + [153794] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 13, + ACTIONS(4593), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -207335,11 +209931,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1294), 25, + ACTIONS(4595), 26, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -207352,23 +209947,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [151370] = 4, + [153840] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7116), 1, - sym_extglob_pattern, - ACTIONS(6751), 14, + ACTIONS(6837), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -207383,8 +209977,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6749), 23, - sym_test_operator, + ACTIONS(6835), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -207404,13 +209999,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [151418] = 3, + anon_sym_COLON, + [153886] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1273), 14, + ACTIONS(6891), 1, + anon_sym_STAR_STAR, + ACTIONS(6869), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6795), 13, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -207424,12 +210024,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1369), 24, + ACTIONS(6793), 22, sym__concat, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207450,55 +210047,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [151464] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2094), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2096), 26, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [151510] = 4, + [153936] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7118), 1, - sym_extglob_pattern, - ACTIONS(6751), 14, + ACTIONS(6705), 1, + anon_sym_RBRACK, + ACTIONS(7129), 1, + sym__concat, + ACTIONS(1253), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -207513,7 +210069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6749), 23, + ACTIONS(1376), 22, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -207534,13 +210090,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [151558] = 3, + [153986] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1316), 14, + ACTIONS(7133), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -207555,7 +210110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1318), 24, + ACTIONS(7131), 24, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -207580,94 +210135,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [151604] = 5, + [154032] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(7120), 1, - sym__special_character, - STATE(2867), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1364), 24, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(6899), 1, + anon_sym_EQ, + ACTIONS(6905), 1, anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [151654] = 17, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6877), 1, - anon_sym_STAR_STAR, - ACTIONS(7037), 1, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(7039), 1, + ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(7041), 1, + ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(7049), 1, - sym_test_operator, - ACTIONS(7072), 1, - anon_sym_AMP_AMP, - ACTIONS(7076), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7123), 1, - anon_sym_EQ, - ACTIONS(6869), 2, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, + anon_sym_QMARK, + ACTIONS(7135), 1, + anon_sym_RPAREN_RPAREN, + STATE(6660), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6871), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6873), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7043), 2, + ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7045), 2, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7047), 2, + ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6875), 3, + ACTIONS(6921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7125), 15, - sym__concat, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207679,13 +210196,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [151728] = 3, + [154114] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1316), 13, + ACTIONS(7137), 1, + sym__special_character, + STATE(2920), 1, + aux_sym__literal_repeat1, + ACTIONS(1360), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -207697,11 +210215,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1318), 25, + ACTIONS(1362), 23, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -207716,62 +210233,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [151774] = 3, + [154164] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1328), 13, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(6899), 1, + anon_sym_EQ, + ACTIONS(6905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP_AMP, + ACTIONS(6909), 1, anon_sym_PIPE, + ACTIONS(6911), 1, + anon_sym_CARET, + ACTIONS(6913), 1, + anon_sym_AMP, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, + anon_sym_QMARK, + ACTIONS(7140), 1, + anon_sym_RPAREN_RPAREN, + STATE(6665), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1330), 25, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [151820] = 3, + ACTIONS(6923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6925), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6903), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [154246] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1320), 14, + ACTIONS(6764), 1, + anon_sym_RBRACK, + ACTIONS(7142), 1, + sym__concat, + ACTIONS(1253), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -207786,9 +210324,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1322), 24, + ACTIONS(1376), 22, sym_test_operator, - sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -207808,13 +210345,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [151866] = 3, + [154296] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1336), 14, + ACTIONS(6819), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -207829,9 +210365,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1338), 24, - sym_test_operator, - sym_extglob_pattern, + ACTIONS(6817), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -207851,32 +210387,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [151912] = 3, + anon_sym_COLON, + [154342] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(1340), 14, - anon_sym_EQ, + ACTIONS(6871), 1, + anon_sym_AMP_AMP, + ACTIONS(6873), 1, anon_sym_PIPE, + ACTIONS(6875), 1, anon_sym_CARET, + ACTIONS(6877), 1, anon_sym_AMP, + ACTIONS(6891), 1, + anon_sym_STAR_STAR, + ACTIONS(6893), 1, + sym_test_operator, + ACTIONS(7028), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7127), 1, + anon_sym_QMARK, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7146), 1, + anon_sym_EQ_TILDE, + ACTIONS(6869), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6879), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6881), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6883), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6885), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6887), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6889), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1342), 24, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6793), 13, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207888,23 +210448,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_RBRACK, + [154420] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(6899), 1, + anon_sym_EQ, + ACTIONS(6905), 1, anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, anon_sym_AMP_AMP, + ACTIONS(6909), 1, + anon_sym_PIPE, + ACTIONS(6911), 1, + anon_sym_CARET, + ACTIONS(6913), 1, + anon_sym_AMP, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, + anon_sym_QMARK, + ACTIONS(7148), 1, + anon_sym_RPAREN_RPAREN, + STATE(6671), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6917), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [151958] = 5, + ACTIONS(6921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6925), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6903), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [154502] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6757), 1, - anon_sym_RBRACK, - ACTIONS(7127), 1, - sym__concat, - ACTIONS(1273), 14, + ACTIONS(7152), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -207919,8 +210528,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1369), 22, - sym_test_operator, + ACTIONS(7150), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -207942,29 +210552,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [152008] = 3, + anon_sym_COLON, + [154548] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 14, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(6899), 1, anon_sym_EQ, + ACTIONS(6905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP_AMP, + ACTIONS(6909), 1, anon_sym_PIPE, + ACTIONS(6911), 1, anon_sym_CARET, + ACTIONS(6913), 1, anon_sym_AMP, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, + anon_sym_QMARK, + ACTIONS(7154), 1, + anon_sym_RPAREN_RPAREN, + STATE(6615), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1314), 24, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207976,19 +210614,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [152054] = 3, + [154630] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1352), 14, + ACTIONS(1272), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -208003,9 +210632,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1354), 24, + sym__special_character, + ACTIONS(1274), 23, sym_test_operator, - sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -208025,13 +210654,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [152100] = 3, + [154676] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1356), 13, + ACTIONS(4304), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5927), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -208039,18 +210674,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1358), 25, + ACTIONS(5929), 10, sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -208060,21 +210685,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + ACTIONS(4318), 16, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [152146] = 3, + [154726] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6795), 1, + anon_sym_EQ, + ACTIONS(6873), 1, + anon_sym_PIPE, + ACTIONS(6875), 1, + anon_sym_CARET, + ACTIONS(6877), 1, + anon_sym_AMP, + ACTIONS(6891), 1, + anon_sym_STAR_STAR, + ACTIONS(6893), 1, + sym_test_operator, + ACTIONS(6869), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6879), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6881), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6883), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6885), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6889), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6793), 17, + sym__concat, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [154796] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(6899), 1, + anon_sym_EQ, + ACTIONS(6905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP_AMP, + ACTIONS(6909), 1, + anon_sym_PIPE, + ACTIONS(6911), 1, + anon_sym_CARET, + ACTIONS(6913), 1, + anon_sym_AMP, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, + anon_sym_QMARK, + ACTIONS(7156), 1, + anon_sym_RPAREN_RPAREN, + STATE(6681), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6925), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6903), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [154878] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(6899), 1, + anon_sym_EQ, + ACTIONS(6905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP_AMP, + ACTIONS(6909), 1, + anon_sym_PIPE, + ACTIONS(6911), 1, + anon_sym_CARET, + ACTIONS(6913), 1, + anon_sym_AMP, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, + anon_sym_QMARK, + ACTIONS(7158), 1, + anon_sym_RPAREN_RPAREN, + STATE(6686), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6925), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6903), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [154960] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6711), 1, + anon_sym_RBRACK, + ACTIONS(7160), 1, + sym__concat, + ACTIONS(1253), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1376), 22, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [155010] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5373), 13, + ACTIONS(5871), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -208088,7 +210941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(5375), 25, + ACTIONS(5873), 25, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -208114,10 +210967,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [152192] = 3, + [155056] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1344), 13, + ACTIONS(1272), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -208129,11 +210982,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1346), 25, + ACTIONS(1274), 26, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -208146,67 +210998,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [152238] = 21, + [155102] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(6899), 1, anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(6905), 1, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, + ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6895), 1, + ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6897), 1, + ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6911), 1, + ACTIONS(6927), 1, anon_sym_STAR_STAR, - ACTIONS(6913), 1, + ACTIONS(6929), 1, anon_sym_EQ_TILDE, - ACTIONS(6915), 1, + ACTIONS(6931), 1, anon_sym_QMARK, - ACTIONS(7129), 1, + ACTIONS(7162), 1, anon_sym_RPAREN_RPAREN, - STATE(6574), 1, + STATE(6690), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208218,29 +211071,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [152320] = 3, + [155184] = 13, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 14, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(6911), 1, anon_sym_CARET, + ACTIONS(6913), 1, anon_sym_AMP, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6941), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1310), 24, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6939), 18, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208254,34 +211121,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [152366] = 3, - ACTIONS(71), 1, + anon_sym_COLON, + [155250] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 14, + ACTIONS(7166), 1, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1306), 24, - sym_test_operator, - sym_extglob_pattern, + ACTIONS(7168), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7164), 36, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -208296,37 +211148,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [152412] = 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [155298] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 14, + ACTIONS(1276), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1278), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [155344] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(6899), 1, anon_sym_EQ, + ACTIONS(6905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP_AMP, + ACTIONS(6909), 1, anon_sym_PIPE, + ACTIONS(6911), 1, anon_sym_CARET, + ACTIONS(6913), 1, anon_sym_AMP, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, + anon_sym_QMARK, + ACTIONS(7170), 1, + anon_sym_RPAREN_RPAREN, + STATE(6695), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1310), 24, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208338,19 +211272,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [152458] = 3, + [155426] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5766), 12, + ACTIONS(5888), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -208363,7 +211288,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(5768), 26, + ACTIONS(5890), 26, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -208390,29 +211315,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [152504] = 3, + [155472] = 13, ACTIONS(71), 1, sym_comment, - ACTIONS(1320), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(7172), 1, anon_sym_AMP, + ACTIONS(7186), 1, + anon_sym_STAR_STAR, + ACTIONS(7188), 1, + sym_test_operator, + ACTIONS(6830), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7174), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7176), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7178), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7180), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7182), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6795), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1322), 24, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6793), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208426,75 +211364,246 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [152550] = 7, - ACTIONS(71), 1, + anon_sym_COLON, + [155537] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(5821), 2, - anon_sym_PIPE, - anon_sym_LT_LT, - ACTIONS(5826), 4, + ACTIONS(3630), 1, + anon_sym_DQUOTE, + ACTIONS(7194), 1, + sym_variable_name, + STATE(4297), 1, + sym_string, + ACTIONS(1235), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(7192), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7190), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - ACTIONS(5819), 5, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [155592] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6476), 1, + sym_word, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6490), 1, anon_sym_DOLLAR, + ACTIONS(6496), 1, aux_sym_number_token1, + ACTIONS(6498), 1, aux_sym_number_token2, + ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5823), 5, + ACTIONS(6510), 1, + sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(7198), 1, + anon_sym_esac, + ACTIONS(7200), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7202), 1, + sym__special_character, + ACTIONS(7204), 1, + anon_sym_DQUOTE, + ACTIONS(7208), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7210), 1, + anon_sym_BQUOTE, + ACTIONS(7212), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(7489), 1, + sym_last_case_item, + ACTIONS(7196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7206), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7214), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3357), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [155681] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3630), 1, + anon_sym_DQUOTE, + ACTIONS(7194), 1, + sym_variable_name, + STATE(4297), 1, + sym_string, + ACTIONS(1241), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(7192), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7190), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(5828), 7, - sym_file_descriptor, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - ACTIONS(5831), 15, - sym_variable_name, + [155736] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6476), 1, + sym_word, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6490), 1, + anon_sym_DOLLAR, + ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, + aux_sym_number_token2, + ACTIONS(6502), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6510), 1, sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7200), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7202), 1, sym__special_character, + ACTIONS(7204), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7208), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7210), 1, anon_sym_BQUOTE, + ACTIONS(7212), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(7216), 1, + anon_sym_esac, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(7494), 1, + sym_last_case_item, + ACTIONS(7196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7206), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7214), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [152604] = 8, + STATE(3360), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [155825] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1235), 1, sym_file_descriptor, - ACTIONS(3030), 1, + ACTIONS(3630), 1, anon_sym_DQUOTE, - ACTIONS(7135), 1, + ACTIONS(7194), 1, sym_variable_name, - STATE(4446), 1, + STATE(4297), 1, sym_string, - ACTIONS(7133), 2, + ACTIONS(7192), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7131), 9, + ACTIONS(7190), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -208504,7 +211613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 23, + ACTIONS(1227), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -208515,8 +211624,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -208528,21 +211635,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - [152660] = 8, + anon_sym_BQUOTE, + [155880] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6795), 1, + anon_sym_EQ, + ACTIONS(7220), 1, + anon_sym_PIPE, + ACTIONS(7222), 1, + anon_sym_CARET, + ACTIONS(7224), 1, + anon_sym_AMP, + ACTIONS(7238), 1, + anon_sym_STAR_STAR, + ACTIONS(7240), 1, + sym_test_operator, + ACTIONS(7218), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7226), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7228), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7230), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7232), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7234), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7236), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6793), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [155949] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1241), 1, sym_file_descriptor, - ACTIONS(3030), 1, + ACTIONS(3630), 1, anon_sym_DQUOTE, - ACTIONS(7135), 1, + ACTIONS(7194), 1, sym_variable_name, - STATE(4446), 1, + STATE(4297), 1, sym_string, - ACTIONS(7133), 2, + ACTIONS(7192), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7131), 9, + ACTIONS(7190), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -208552,7 +211714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 23, + ACTIONS(1239), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -208563,8 +211725,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -208576,29 +211736,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - [152716] = 3, + anon_sym_BQUOTE, + [156004] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(6807), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7250), 1, + anon_sym_STAR_STAR, + ACTIONS(7252), 1, + sym_test_operator, + ACTIONS(7242), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7244), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7246), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7248), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6805), 24, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6828), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6826), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208616,53 +211782,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [152762] = 17, + [156061] = 17, ACTIONS(71), 1, sym_comment, - ACTIONS(6889), 1, + ACTIONS(7024), 1, + anon_sym_EQ, + ACTIONS(7250), 1, + anon_sym_STAR_STAR, + ACTIONS(7252), 1, + sym_test_operator, + ACTIONS(7254), 1, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, + ACTIONS(7256), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + ACTIONS(7258), 1, anon_sym_PIPE, - ACTIONS(6895), 1, + ACTIONS(7260), 1, anon_sym_CARET, - ACTIONS(6897), 1, + ACTIONS(7262), 1, anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_STAR_STAR, - ACTIONS(6915), 1, - anon_sym_QMARK, - ACTIONS(7139), 1, - anon_sym_EQ, - ACTIONS(6885), 2, + ACTIONS(7242), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(7244), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7264), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(7266), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(7268), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6907), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(7248), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7137), 15, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(7026), 14, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208674,12 +211838,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, - anon_sym_COLON, - [152836] = 3, + anon_sym_QMARK, + [156134] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1340), 14, + ACTIONS(1253), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -208694,9 +211859,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1342), 24, + ACTIONS(1376), 23, sym_test_operator, - sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -208716,32 +211880,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [152882] = 3, + [156179] = 14, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 14, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(7222), 1, anon_sym_CARET, + ACTIONS(7224), 1, anon_sym_AMP, + ACTIONS(7238), 1, + anon_sym_STAR_STAR, + ACTIONS(7240), 1, + sym_test_operator, + ACTIONS(6795), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(7218), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7226), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7228), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7230), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7232), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7234), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7236), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1314), 24, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6793), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208755,36 +211933,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [152928] = 3, + [156246] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(1352), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7238), 1, + anon_sym_STAR_STAR, + ACTIONS(7218), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7232), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7234), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7236), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1354), 24, + ACTIONS(6795), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6793), 21, sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208802,186 +211980,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [152974] = 18, + [156301] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(6883), 1, - anon_sym_EQ, - ACTIONS(6889), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, - anon_sym_AMP_AMP, - ACTIONS(6893), 1, - anon_sym_PIPE, - ACTIONS(6895), 1, - anon_sym_CARET, - ACTIONS(6897), 1, - anon_sym_AMP, - ACTIONS(6911), 1, + ACTIONS(7276), 1, anon_sym_STAR_STAR, - ACTIONS(6913), 1, - anon_sym_EQ_TILDE, - ACTIONS(6915), 1, - anon_sym_QMARK, - ACTIONS(6885), 2, + ACTIONS(7278), 1, + sym_test_operator, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6901), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6903), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(7270), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(7272), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(7274), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7137), 14, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_COLON, - [153050] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 1, - sym_file_descriptor, - ACTIONS(7143), 1, - anon_sym_DQUOTE, - ACTIONS(7147), 1, - sym_variable_name, - STATE(4322), 1, - sym_string, - ACTIONS(7145), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7141), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 23, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [153106] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1241), 1, - sym_file_descriptor, - ACTIONS(7143), 1, - anon_sym_DQUOTE, - ACTIONS(7147), 1, - sym_variable_name, - STATE(4322), 1, - sym_string, - ACTIONS(7145), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7141), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 23, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [153162] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6807), 14, + ACTIONS(6795), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6805), 24, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6793), 20, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208999,49 +212029,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [153208] = 15, + [156358] = 13, ACTIONS(71), 1, sym_comment, - ACTIONS(6891), 1, - anon_sym_AMP_AMP, - ACTIONS(6893), 1, - anon_sym_PIPE, - ACTIONS(6895), 1, - anon_sym_CARET, - ACTIONS(6897), 1, + ACTIONS(7224), 1, anon_sym_AMP, - ACTIONS(6911), 1, + ACTIONS(7238), 1, anon_sym_STAR_STAR, - ACTIONS(7139), 1, - anon_sym_EQ, - ACTIONS(6885), 2, + ACTIONS(7240), 1, + sym_test_operator, + ACTIONS(7218), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(7226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(7228), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(7230), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(7232), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(7234), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(6795), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7236), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7137), 17, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(6793), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209054,47 +212079,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [153278] = 14, + [156423] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(6893), 1, - anon_sym_PIPE, - ACTIONS(6895), 1, - anon_sym_CARET, - ACTIONS(6897), 1, - anon_sym_AMP, - ACTIONS(6911), 1, + ACTIONS(7238), 1, anon_sym_STAR_STAR, - ACTIONS(7139), 1, - anon_sym_EQ, - ACTIONS(6885), 2, + ACTIONS(7240), 1, + sym_test_operator, + ACTIONS(7218), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(7226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(7228), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(7230), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(7232), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(7234), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(7236), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7137), 18, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(6795), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(6793), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209108,32 +212131,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [153346] = 3, + [156486] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6801), 14, + ACTIONS(7276), 1, + anon_sym_STAR_STAR, + ACTIONS(7278), 1, + sym_test_operator, + ACTIONS(7280), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(7282), 1, anon_sym_EQ, + ACTIONS(7286), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP_AMP, + ACTIONS(7290), 1, anon_sym_PIPE, + ACTIONS(7292), 1, anon_sym_CARET, + ACTIONS(7294), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7302), 1, + anon_sym_EQ_TILDE, + ACTIONS(7304), 1, + anon_sym_QMARK, + ACTIONS(6830), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7270), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7272), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7296), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7298), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7300), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7274), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6799), 24, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7284), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209145,201 +212193,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [153392] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1320), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1322), 25, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [153438] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 1, - sym_file_descriptor, - ACTIONS(3371), 1, - anon_sym_DQUOTE, - ACTIONS(7153), 1, - sym_variable_name, - STATE(4512), 1, - sym_string, - ACTIONS(7151), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7149), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 23, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [153494] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1241), 1, - sym_file_descriptor, - ACTIONS(3371), 1, - anon_sym_DQUOTE, - ACTIONS(7153), 1, - sym_variable_name, - STATE(4512), 1, - sym_string, - ACTIONS(7151), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7149), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 23, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [153550] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1336), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1338), 25, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [153596] = 3, + [156565] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4370), 12, + ACTIONS(1272), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -209352,9 +212209,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(4372), 26, + ACTIONS(1274), 25, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -209379,115 +212235,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [153642] = 3, + [156610] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(1340), 13, + ACTIONS(7220), 1, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1342), 25, - sym_file_descriptor, - sym__concat, + ACTIONS(7222), 1, + anon_sym_CARET, + ACTIONS(7224), 1, + anon_sym_AMP, + ACTIONS(7238), 1, + anon_sym_STAR_STAR, + ACTIONS(7240), 1, sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(7280), 1, + anon_sym_RBRACK, + ACTIONS(7306), 1, + anon_sym_EQ, + ACTIONS(7310), 1, anon_sym_PIPE_PIPE, + ACTIONS(7312), 1, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [153688] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1312), 13, - anon_sym_PIPE, + ACTIONS(7314), 1, + anon_sym_EQ_TILDE, + ACTIONS(7316), 1, + anon_sym_QMARK, + ACTIONS(7218), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7226), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7228), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7230), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7232), 2, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1314), 25, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [153734] = 3, + ACTIONS(7234), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7236), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7308), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [156689] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 14, + ACTIONS(7280), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(7318), 1, anon_sym_EQ, + ACTIONS(7322), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7324), 1, + anon_sym_AMP_AMP, + ACTIONS(7326), 1, anon_sym_PIPE, + ACTIONS(7328), 1, anon_sym_CARET, + ACTIONS(7330), 1, anon_sym_AMP, + ACTIONS(7344), 1, + anon_sym_STAR_STAR, + ACTIONS(7346), 1, + anon_sym_EQ_TILDE, + ACTIONS(7348), 1, + anon_sym_QMARK, + ACTIONS(7350), 1, + sym_test_operator, + ACTIONS(6830), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7334), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7336), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7338), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7340), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7342), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7320), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [156768] = 11, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7238), 1, anon_sym_STAR_STAR, - ACTIONS(1310), 24, + ACTIONS(7240), 1, sym_test_operator, - sym_extglob_pattern, + ACTIONS(7218), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7228), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7230), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7232), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7234), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7236), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6795), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(6793), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209503,34 +212400,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [153780] = 3, + [156829] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7186), 1, + anon_sym_STAR_STAR, + ACTIONS(7188), 1, + sym_test_operator, + ACTIONS(6830), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7180), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7182), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1306), 24, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6828), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6826), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209548,32 +212448,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [153826] = 3, + anon_sym_COLON, + [156886] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 14, - anon_sym_EQ, + ACTIONS(7250), 1, + anon_sym_STAR_STAR, + ACTIONS(7252), 1, + sym_test_operator, + ACTIONS(7254), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7256), 1, + anon_sym_AMP_AMP, + ACTIONS(7258), 1, anon_sym_PIPE, + ACTIONS(7260), 1, anon_sym_CARET, + ACTIONS(7262), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7352), 1, + anon_sym_EQ, + ACTIONS(7356), 1, + anon_sym_RPAREN, + ACTIONS(7358), 1, + anon_sym_EQ_TILDE, + ACTIONS(7360), 1, + anon_sym_QMARK, + ACTIONS(7242), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7244), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7246), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7264), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7266), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7268), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7248), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7354), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [156965] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7186), 1, anon_sym_STAR_STAR, - ACTIONS(1310), 24, - sym_test_operator, - sym_extglob_pattern, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7180), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7182), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7184), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6828), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6826), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209591,222 +212554,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [153872] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1352), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1354), 25, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [153918] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7155), 1, - sym__special_character, - STATE(2912), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1364), 23, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [153968] = 3, + anon_sym_COLON, + [157020] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(5770), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7186), 1, + anon_sym_STAR_STAR, + ACTIONS(6830), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7180), 2, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5772), 26, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [154014] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7158), 1, - sym__special_character, - STATE(2867), 1, - aux_sym__literal_repeat1, - ACTIONS(5393), 12, + ACTIONS(7182), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7184), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6828), 6, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5395), 24, - sym_file_descriptor, + ACTIONS(6826), 21, sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [154064] = 13, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [157075] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6895), 1, + ACTIONS(6795), 14, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_STAR_STAR, - ACTIONS(6885), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6899), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6901), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6905), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7139), 2, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7137), 18, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + anon_sym_STAR_STAR, + ACTIONS(6793), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209820,45 +212639,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [154130] = 12, + [157120] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7172), 1, anon_sym_AMP, - ACTIONS(6911), 1, + ACTIONS(7186), 1, anon_sym_STAR_STAR, - ACTIONS(6885), 2, + ACTIONS(7188), 1, + sym_test_operator, + ACTIONS(7362), 1, + anon_sym_EQ, + ACTIONS(7366), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7368), 1, + anon_sym_AMP_AMP, + ACTIONS(7370), 1, + anon_sym_PIPE, + ACTIONS(7372), 1, + anon_sym_CARET, + ACTIONS(7374), 1, + anon_sym_EQ_TILDE, + ACTIONS(7376), 1, + anon_sym_QMARK, + ACTIONS(7378), 1, + anon_sym_COLON, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(7174), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(7176), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(7178), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(7180), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(7182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(7184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7139), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(7137), 18, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(7364), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209870,46 +212705,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [154194] = 11, + [157199] = 17, ACTIONS(71), 1, sym_comment, - ACTIONS(6911), 1, + ACTIONS(7024), 1, + anon_sym_EQ, + ACTIONS(7220), 1, + anon_sym_PIPE, + ACTIONS(7222), 1, + anon_sym_CARET, + ACTIONS(7224), 1, + anon_sym_AMP, + ACTIONS(7238), 1, anon_sym_STAR_STAR, - ACTIONS(6885), 2, + ACTIONS(7240), 1, + sym_test_operator, + ACTIONS(7310), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7312), 1, + anon_sym_AMP_AMP, + ACTIONS(7218), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(7226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(7228), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(7230), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(7232), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(7234), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(7236), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7139), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(7137), 18, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(7026), 14, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209921,172 +212758,336 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [154256] = 3, + [157272] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(6476), 1, + sym_word, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6490), 1, anon_sym_DOLLAR, + ACTIONS(6496), 1, aux_sym_number_token1, + ACTIONS(6498), 1, aux_sym_number_token2, + ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1310), 25, - sym_file_descriptor, - sym__concat, + ACTIONS(6510), 1, sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6542), 1, + anon_sym_esac, + ACTIONS(7200), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(7202), 1, sym__special_character, + ACTIONS(7204), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7208), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7210), 1, + anon_sym_BQUOTE, + ACTIONS(7212), 1, anon_sym_DOLLAR_BQUOTE, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(7203), 1, + sym_last_case_item, + ACTIONS(7196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7206), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7214), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [154302] = 3, + STATE(3443), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [157361] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 13, + ACTIONS(7380), 1, + anon_sym_LBRACK, + ACTIONS(6632), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6630), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [157408] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6476), 1, + sym_word, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6490), 1, anon_sym_DOLLAR, + ACTIONS(6496), 1, aux_sym_number_token1, + ACTIONS(6498), 1, aux_sym_number_token2, + ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1306), 25, - sym_file_descriptor, - sym__concat, + ACTIONS(6510), 1, sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6557), 1, + anon_sym_esac, + ACTIONS(7200), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(7202), 1, sym__special_character, + ACTIONS(7204), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7208), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7210), 1, + anon_sym_BQUOTE, + ACTIONS(7212), 1, anon_sym_DOLLAR_BQUOTE, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(7226), 1, + sym_last_case_item, + ACTIONS(7196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7206), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7214), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [154348] = 3, + STATE(3446), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [157497] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(6476), 1, + sym_word, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6490), 1, anon_sym_DOLLAR, + ACTIONS(6496), 1, aux_sym_number_token1, + ACTIONS(6498), 1, aux_sym_number_token2, + ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1310), 25, - sym_file_descriptor, - sym__concat, + ACTIONS(6510), 1, sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7200), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(7202), 1, sym__special_character, + ACTIONS(7204), 1, anon_sym_DQUOTE, + ACTIONS(7208), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7210), 1, + anon_sym_BQUOTE, + ACTIONS(7212), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7382), 1, + anon_sym_esac, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(6796), 1, + sym_last_case_item, + ACTIONS(7196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7206), 2, sym_raw_string, sym_ansi_c_string, + ACTIONS(7214), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3451), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [157586] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6476), 1, + sym_word, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6490), 1, + anon_sym_DOLLAR, + ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, + aux_sym_number_token2, + ACTIONS(6502), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6510), 1, + sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(7200), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7202), 1, + sym__special_character, + ACTIONS(7204), 1, + anon_sym_DQUOTE, + ACTIONS(7208), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7210), 1, + anon_sym_BQUOTE, + ACTIONS(7212), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(7384), 1, + anon_sym_esac, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(6822), 1, + sym_last_case_item, + ACTIONS(7196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7206), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7214), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [154394] = 10, + STATE(3455), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [157675] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(6911), 1, + ACTIONS(7238), 1, anon_sym_STAR_STAR, - ACTIONS(6885), 2, + ACTIONS(7240), 1, + sym_test_operator, + ACTIONS(7218), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6901), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6903), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(7232), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(7234), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(7236), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7139), 4, + ACTIONS(6795), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(7137), 20, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6793), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210102,37 +213103,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [154454] = 8, + [157732] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6911), 1, - anon_sym_STAR_STAR, - ACTIONS(6885), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6905), 2, + ACTIONS(1253), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7139), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7137), 22, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + anon_sym_STAR_STAR, + ACTIONS(1376), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210150,25 +213147,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [154510] = 7, + [157777] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(6911), 1, + ACTIONS(7238), 1, anon_sym_STAR_STAR, - ACTIONS(6885), 2, + ACTIONS(7218), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6907), 2, + ACTIONS(7234), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(7236), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7139), 8, + ACTIONS(6795), 8, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -210177,9 +213174,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7137), 22, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(6793), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210197,36 +213193,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [154564] = 8, + [157830] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(6877), 1, + ACTIONS(7238), 1, anon_sym_STAR_STAR, - ACTIONS(6869), 2, + ACTIONS(7218), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6871), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6873), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6875), 3, + ACTIONS(7236), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6791), 6, + ACTIONS(6795), 10, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6789), 22, - sym__concat, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6793), 21, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -210248,13 +213241,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [154620] = 4, + [157881] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(6869), 2, + ACTIONS(7276), 1, + anon_sym_STAR_STAR, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6791), 14, + ACTIONS(7272), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7274), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6795), 8, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -210263,15 +213265,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6789), 22, - sym__concat, + ACTIONS(6793), 21, sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210289,32 +213285,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [154668] = 3, + [157934] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6829), 14, + ACTIONS(7276), 1, + anon_sym_STAR_STAR, + ACTIONS(7278), 1, + sym_test_operator, + ACTIONS(7282), 1, anon_sym_EQ, + ACTIONS(7286), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP_AMP, + ACTIONS(7290), 1, anon_sym_PIPE, + ACTIONS(7292), 1, anon_sym_CARET, + ACTIONS(7294), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7302), 1, + anon_sym_EQ_TILDE, + ACTIONS(7304), 1, + anon_sym_QMARK, + ACTIONS(7386), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(6830), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7270), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7272), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7296), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7298), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7300), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7274), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6827), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7284), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210326,37 +213346,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [154714] = 3, + [158013] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(1261), 14, - anon_sym_EQ, + ACTIONS(7220), 1, anon_sym_PIPE, + ACTIONS(7222), 1, anon_sym_CARET, + ACTIONS(7224), 1, anon_sym_AMP, + ACTIONS(7238), 1, + anon_sym_STAR_STAR, + ACTIONS(7240), 1, + sym_test_operator, + ACTIONS(7306), 1, + anon_sym_EQ, + ACTIONS(7310), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7312), 1, + anon_sym_AMP_AMP, + ACTIONS(7314), 1, + anon_sym_EQ_TILDE, + ACTIONS(7316), 1, + anon_sym_QMARK, + ACTIONS(7386), 1, + anon_sym_RBRACK, + ACTIONS(7218), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7226), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7228), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7230), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7232), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7234), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7236), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1263), 24, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7308), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210368,39 +213405,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym__special_character, - [154760] = 3, + [158092] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(1261), 15, + ACTIONS(7318), 1, anon_sym_EQ, + ACTIONS(7322), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7324), 1, + anon_sym_AMP_AMP, + ACTIONS(7326), 1, anon_sym_PIPE, + ACTIONS(7328), 1, anon_sym_CARET, + ACTIONS(7330), 1, anon_sym_AMP, + ACTIONS(7344), 1, + anon_sym_STAR_STAR, + ACTIONS(7346), 1, + anon_sym_EQ_TILDE, + ACTIONS(7348), 1, + anon_sym_QMARK, + ACTIONS(7350), 1, + sym_test_operator, + ACTIONS(7386), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(6830), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7334), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7336), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7338), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7340), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7342), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - sym__special_character, - ACTIONS(1263), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7320), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210412,38 +213464,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [154806] = 3, + [158171] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6820), 14, - anon_sym_EQ, + ACTIONS(7250), 1, + anon_sym_STAR_STAR, + ACTIONS(7252), 1, + sym_test_operator, + ACTIONS(7254), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7256), 1, + anon_sym_AMP_AMP, + ACTIONS(7258), 1, anon_sym_PIPE, + ACTIONS(7260), 1, anon_sym_CARET, + ACTIONS(7262), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7352), 1, + anon_sym_EQ, + ACTIONS(7358), 1, + anon_sym_EQ_TILDE, + ACTIONS(7360), 1, + anon_sym_QMARK, + ACTIONS(7388), 1, + anon_sym_RPAREN, + ACTIONS(7242), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7244), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7246), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7264), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7266), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7268), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7248), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6818), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7354), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210455,19 +213523,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [154852] = 3, + [158250] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(7162), 14, + ACTIONS(7276), 1, + anon_sym_STAR_STAR, + ACTIONS(6830), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7274), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6795), 10, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -210478,15 +213546,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7160), 24, + ACTIONS(6793), 21, + sym_test_operator, anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210506,27 +213568,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [154898] = 3, - ACTIONS(71), 1, + [158301] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7166), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7164), 24, - anon_sym_RPAREN_RPAREN, + ACTIONS(1322), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1320), 36, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -210542,64 +213590,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [154944] = 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [158346] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(6883), 1, + ACTIONS(6795), 1, anon_sym_EQ, - ACTIONS(6889), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, - anon_sym_AMP_AMP, - ACTIONS(6893), 1, + ACTIONS(7220), 1, anon_sym_PIPE, - ACTIONS(6895), 1, + ACTIONS(7222), 1, anon_sym_CARET, - ACTIONS(6897), 1, + ACTIONS(7224), 1, anon_sym_AMP, - ACTIONS(6911), 1, + ACTIONS(7238), 1, anon_sym_STAR_STAR, - ACTIONS(6913), 1, - anon_sym_EQ_TILDE, - ACTIONS(6915), 1, + ACTIONS(7240), 1, + sym_test_operator, + ACTIONS(7310), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7312), 1, + anon_sym_AMP_AMP, + ACTIONS(7316), 1, anon_sym_QMARK, - ACTIONS(7168), 1, - anon_sym_RPAREN_RPAREN, - STATE(6699), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6885), 2, + ACTIONS(7218), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(7226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(7228), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(7230), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(7232), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(7234), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(7236), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + ACTIONS(6793), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210611,35 +213665,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [155026] = 9, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + [158421] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6877), 1, - anon_sym_STAR_STAR, - ACTIONS(7049), 1, - sym_test_operator, - ACTIONS(6869), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6871), 2, + ACTIONS(6852), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6873), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6875), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6791), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6789), 21, - sym__concat, + anon_sym_STAR_STAR, + ACTIONS(6850), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210657,121 +213706,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [155084] = 3, + [158466] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(5373), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5375), 26, - sym_file_descriptor, - sym_variable_name, + ACTIONS(7172), 1, + anon_sym_AMP, + ACTIONS(7186), 1, + anon_sym_STAR_STAR, + ACTIONS(7188), 1, sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(7362), 1, + anon_sym_EQ, + ACTIONS(7366), 1, anon_sym_PIPE_PIPE, + ACTIONS(7368), 1, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [155130] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1261), 13, + ACTIONS(7370), 1, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1263), 25, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [155176] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6911), 1, - anon_sym_STAR_STAR, - ACTIONS(6885), 2, + ACTIONS(7372), 1, + anon_sym_CARET, + ACTIONS(7374), 1, + anon_sym_EQ_TILDE, + ACTIONS(7376), 1, + anon_sym_QMARK, + ACTIONS(7390), 1, + anon_sym_COLON, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6909), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7139), 10, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7174), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7176), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7178), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7180), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7137), 22, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(7184), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7364), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210783,24 +213768,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [155228] = 5, + [158545] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6911), 1, + ACTIONS(7276), 1, anon_sym_STAR_STAR, - ACTIONS(6885), 2, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7139), 13, + ACTIONS(6795), 13, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -210814,9 +213790,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7137), 22, + ACTIONS(6793), 21, + sym_test_operator, anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210836,31 +213812,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [155278] = 4, - ACTIONS(71), 1, + [158594] = 16, + ACTIONS(3), 1, sym_comment, - ACTIONS(6885), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7139), 14, - anon_sym_EQ, + ACTIONS(7402), 1, anon_sym_PIPE, + ACTIONS(7404), 1, anon_sym_CARET, + ACTIONS(7406), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7418), 1, + anon_sym_STAR_STAR, + ACTIONS(7420), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7392), 2, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(7394), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7398), 2, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + ACTIONS(7400), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(7408), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7412), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7414), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7416), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7137), 22, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(7410), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7396), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210872,196 +213867,290 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [155326] = 5, + [158665] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(7170), 1, - sym__special_character, - STATE(2912), 1, - aux_sym__literal_repeat1, - ACTIONS(5476), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(6476), 1, + sym_word, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6490), 1, anon_sym_DOLLAR, + ACTIONS(6496), 1, aux_sym_number_token1, + ACTIONS(6498), 1, aux_sym_number_token2, + ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(5478), 23, - sym_file_descriptor, + ACTIONS(6510), 1, sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6636), 1, + anon_sym_esac, + ACTIONS(7200), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7202), 1, + sym__special_character, + ACTIONS(7204), 1, anon_sym_DQUOTE, + ACTIONS(7208), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7210), 1, + anon_sym_BQUOTE, + ACTIONS(7212), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(7345), 1, + sym_last_case_item, + ACTIONS(7196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7206), 2, sym_raw_string, sym_ansi_c_string, + ACTIONS(7214), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3190), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [158754] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6476), 1, + sym_word, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6490), 1, + anon_sym_DOLLAR, + ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, + aux_sym_number_token2, + ACTIONS(6502), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6510), 1, + sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(6642), 1, + anon_sym_esac, + ACTIONS(7200), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7202), 1, + sym__special_character, + ACTIONS(7204), 1, + anon_sym_DQUOTE, + ACTIONS(7208), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7210), 1, anon_sym_BQUOTE, + ACTIONS(7212), 1, anon_sym_DOLLAR_BQUOTE, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(7352), 1, + sym_last_case_item, + ACTIONS(7196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7206), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7214), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [155376] = 3, + STATE(3191), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [158843] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(4552), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(6476), 1, + sym_word, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6490), 1, anon_sym_DOLLAR, + ACTIONS(6496), 1, aux_sym_number_token1, + ACTIONS(6498), 1, aux_sym_number_token2, + ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4554), 26, - sym_file_descriptor, - sym_variable_name, + ACTIONS(6510), 1, sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7200), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7202), 1, sym__special_character, + ACTIONS(7204), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7208), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7210), 1, anon_sym_BQUOTE, + ACTIONS(7212), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(7422), 1, + anon_sym_esac, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(7385), 1, + sym_last_case_item, + ACTIONS(7196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7206), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7214), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [155422] = 5, + STATE(3192), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [158932] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(4247), 5, + ACTIONS(6476), 1, + sym_word, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6490), 1, anon_sym_DOLLAR, + ACTIONS(6496), 1, aux_sym_number_token1, + ACTIONS(6498), 1, aux_sym_number_token2, + ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5930), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(5932), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - ACTIONS(4261), 16, - sym_variable_name, + ACTIONS(6510), 1, sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7200), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7202), 1, sym__special_character, + ACTIONS(7204), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7208), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7210), 1, anon_sym_BQUOTE, + ACTIONS(7212), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(7424), 1, + anon_sym_esac, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(7389), 1, + sym_last_case_item, + ACTIONS(7196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7206), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7214), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [155472] = 20, + STATE(3193), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [159021] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(7172), 1, - anon_sym_EQ, - ACTIONS(7176), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7178), 1, - anon_sym_AMP_AMP, - ACTIONS(7180), 1, - anon_sym_PIPE, - ACTIONS(7182), 1, - anon_sym_CARET, - ACTIONS(7184), 1, - anon_sym_AMP, - ACTIONS(7198), 1, + ACTIONS(7276), 1, anon_sym_STAR_STAR, - ACTIONS(7200), 1, - anon_sym_EQ_TILDE, - ACTIONS(7202), 1, - anon_sym_QMARK, - ACTIONS(7204), 1, - anon_sym_COLON, - ACTIONS(7206), 1, - sym_test_operator, - ACTIONS(6793), 2, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7186), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7188), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7190), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7192), 2, + ACTIONS(7270), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7194), 2, + ACTIONS(7272), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7196), 3, + ACTIONS(7274), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7174), 11, + ACTIONS(6828), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6826), 21, + sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211073,42 +214162,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [155551] = 12, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7220), 1, - anon_sym_STAR_STAR, - ACTIONS(7222), 1, - sym_test_operator, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7208), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7210), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7212), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7216), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7218), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6807), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6805), 16, - anon_sym_RPAREN_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [159076] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1324), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211121,85 +214192,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [155614] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6474), 1, - sym_word, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, - anon_sym_DOLLAR, - ACTIONS(6494), 1, - aux_sym_number_token1, - ACTIONS(6496), 1, - aux_sym_number_token2, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, - sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, - sym__brace_start, - ACTIONS(6560), 1, - anon_sym_esac, - ACTIONS(7226), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, - sym__special_character, - ACTIONS(7230), 1, - anon_sym_DQUOTE, - ACTIONS(7234), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, - anon_sym_BQUOTE, - ACTIONS(7238), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6426), 1, - aux_sym__literal_repeat1, - STATE(6851), 1, - sym_last_case_item, - ACTIONS(7224), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7240), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3377), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6303), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [155703] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7242), 1, - anon_sym_LBRACK, - ACTIONS(6600), 14, - anon_sym_EQ, + anon_sym_DASHa, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -211208,9 +214212,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6598), 22, + [159121] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7276), 1, + anon_sym_STAR_STAR, + ACTIONS(7278), 1, + sym_test_operator, + ACTIONS(7282), 1, + anon_sym_EQ, + ACTIONS(7286), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP_AMP, + ACTIONS(7290), 1, + anon_sym_PIPE, + ACTIONS(7292), 1, + anon_sym_CARET, + ACTIONS(7294), 1, + anon_sym_AMP, + ACTIONS(7302), 1, + anon_sym_EQ_TILDE, + ACTIONS(7304), 1, + anon_sym_QMARK, + ACTIONS(7426), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7270), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7272), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7296), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7298), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7300), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7274), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7284), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211222,21 +214271,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [155750] = 3, + [159200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7246), 1, + ACTIONS(1330), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(7244), 36, + ACTIONS(1328), 36, anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -211273,49 +214313,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - [155795] = 15, - ACTIONS(3), 1, + [159245] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(7256), 1, + ACTIONS(7220), 1, anon_sym_PIPE, - ACTIONS(7258), 1, + ACTIONS(7222), 1, anon_sym_CARET, - ACTIONS(7260), 1, + ACTIONS(7224), 1, anon_sym_AMP, - ACTIONS(7272), 1, + ACTIONS(7238), 1, anon_sym_STAR_STAR, - ACTIONS(7274), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7250), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7252), 2, + ACTIONS(7240), 1, + sym_test_operator, + ACTIONS(7306), 1, + anon_sym_EQ, + ACTIONS(7310), 1, anon_sym_PIPE_PIPE, - anon_sym_DASHo, - ACTIONS(7254), 2, + ACTIONS(7312), 1, anon_sym_AMP_AMP, - anon_sym_DASHa, - ACTIONS(7262), 2, + ACTIONS(7314), 1, + anon_sym_EQ_TILDE, + ACTIONS(7316), 1, + anon_sym_QMARK, + ACTIONS(7426), 1, + anon_sym_RBRACK, + ACTIONS(7218), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7266), 2, + ACTIONS(7228), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7230), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7232), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7268), 2, + ACTIONS(7234), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7270), 3, + ACTIONS(7236), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7264), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7248), 13, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(7308), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211327,43 +214372,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [155864] = 13, - ACTIONS(3), 1, + [159324] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(7256), 1, + ACTIONS(7318), 1, + anon_sym_EQ, + ACTIONS(7322), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7324), 1, + anon_sym_AMP_AMP, + ACTIONS(7326), 1, anon_sym_PIPE, - ACTIONS(7258), 1, + ACTIONS(7328), 1, anon_sym_CARET, - ACTIONS(7260), 1, + ACTIONS(7330), 1, anon_sym_AMP, - ACTIONS(7272), 1, + ACTIONS(7344), 1, anon_sym_STAR_STAR, - ACTIONS(7274), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7250), 2, + ACTIONS(7346), 1, + anon_sym_EQ_TILDE, + ACTIONS(7348), 1, + anon_sym_QMARK, + ACTIONS(7350), 1, + sym_test_operator, + ACTIONS(7426), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7262), 2, + ACTIONS(7332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7266), 2, + ACTIONS(7334), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7336), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7338), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7268), 2, + ACTIONS(7340), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7270), 3, + ACTIONS(7342), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7264), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7248), 17, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(7320), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211375,34 +214431,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - [155929] = 4, + [159403] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7276), 1, - anon_sym_EQ, - ACTIONS(7088), 13, + ACTIONS(7220), 1, anon_sym_PIPE, + ACTIONS(7222), 1, anon_sym_CARET, + ACTIONS(7224), 1, anon_sym_AMP, + ACTIONS(7238), 1, + anon_sym_STAR_STAR, + ACTIONS(7240), 1, + sym_test_operator, + ACTIONS(7306), 1, + anon_sym_EQ, + ACTIONS(7310), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7312), 1, + anon_sym_AMP_AMP, + ACTIONS(7314), 1, + anon_sym_EQ_TILDE, + ACTIONS(7316), 1, + anon_sym_QMARK, + ACTIONS(7218), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7226), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7228), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7230), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7232), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7234), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7236), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7092), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6793), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211414,18 +214488,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [155976] = 3, + anon_sym_RBRACK, + [159480] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6807), 14, + ACTIONS(7238), 1, + anon_sym_STAR_STAR, + ACTIONS(7218), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6795), 13, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -211439,11 +214511,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6805), 23, + ACTIONS(6793), 21, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211464,48 +214533,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [156021] = 17, + [159529] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7123), 1, - anon_sym_EQ, - ACTIONS(7280), 1, + ACTIONS(7250), 1, + anon_sym_STAR_STAR, + ACTIONS(7252), 1, + sym_test_operator, + ACTIONS(7254), 1, anon_sym_PIPE_PIPE, - ACTIONS(7282), 1, + ACTIONS(7256), 1, anon_sym_AMP_AMP, - ACTIONS(7284), 1, + ACTIONS(7258), 1, anon_sym_PIPE, - ACTIONS(7286), 1, + ACTIONS(7260), 1, anon_sym_CARET, - ACTIONS(7288), 1, + ACTIONS(7262), 1, anon_sym_AMP, - ACTIONS(7302), 1, - anon_sym_STAR_STAR, - ACTIONS(7304), 1, - sym_test_operator, - ACTIONS(7278), 2, + ACTIONS(7352), 1, + anon_sym_EQ, + ACTIONS(7358), 1, + anon_sym_EQ_TILDE, + ACTIONS(7360), 1, + anon_sym_QMARK, + ACTIONS(7428), 1, + anon_sym_RPAREN, + ACTIONS(7242), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7290), 2, + ACTIONS(7244), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7264), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7292), 2, + ACTIONS(7266), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7294), 2, + ACTIONS(7268), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7296), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7298), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7300), 3, + ACTIONS(7248), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7125), 14, + ACTIONS(7354), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211517,44 +214592,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [156094] = 12, - ACTIONS(3), 1, + [159608] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(7258), 1, - anon_sym_CARET, - ACTIONS(7260), 1, - anon_sym_AMP, - ACTIONS(7272), 1, + ACTIONS(7276), 1, anon_sym_STAR_STAR, - ACTIONS(7274), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7250), 2, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7262), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7266), 2, + ACTIONS(6795), 13, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7268), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7270), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7264), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7248), 18, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(6793), 21, + sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211567,30 +214629,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - [156157] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [159657] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(6807), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7443), 1, + anon_sym_LT_LT_LT, + ACTIONS(7446), 1, + sym_file_descriptor, + ACTIONS(7449), 1, + sym_variable_name, + STATE(6731), 1, + sym_subscript, + ACTIONS(7440), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3005), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3591), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(7437), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(7430), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(7434), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6805), 23, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(7432), 14, sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [159720] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1334), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1332), 36, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -211605,36 +214709,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [156202] = 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [159765] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6797), 14, + ACTIONS(7172), 1, + anon_sym_AMP, + ACTIONS(7186), 1, + anon_sym_STAR_STAR, + ACTIONS(7188), 1, + sym_test_operator, + ACTIONS(7362), 1, anon_sym_EQ, + ACTIONS(7366), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7368), 1, + anon_sym_AMP_AMP, + ACTIONS(7370), 1, anon_sym_PIPE, + ACTIONS(7372), 1, anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7374), 1, + anon_sym_EQ_TILDE, + ACTIONS(7376), 1, + anon_sym_QMARK, + ACTIONS(7452), 1, + anon_sym_COLON, + ACTIONS(6830), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7174), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7176), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7178), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7180), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7182), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6795), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7364), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211646,57 +214788,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [156247] = 17, + [159844] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7123), 1, + ACTIONS(7318), 1, anon_sym_EQ, - ACTIONS(7176), 1, + ACTIONS(7322), 1, anon_sym_PIPE_PIPE, - ACTIONS(7178), 1, + ACTIONS(7324), 1, anon_sym_AMP_AMP, - ACTIONS(7180), 1, + ACTIONS(7326), 1, anon_sym_PIPE, - ACTIONS(7182), 1, + ACTIONS(7328), 1, anon_sym_CARET, - ACTIONS(7184), 1, + ACTIONS(7330), 1, anon_sym_AMP, - ACTIONS(7198), 1, + ACTIONS(7344), 1, anon_sym_STAR_STAR, - ACTIONS(7206), 1, + ACTIONS(7346), 1, + anon_sym_EQ_TILDE, + ACTIONS(7348), 1, + anon_sym_QMARK, + ACTIONS(7350), 1, sym_test_operator, - ACTIONS(6793), 2, + ACTIONS(7454), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7186), 2, + ACTIONS(7332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7188), 2, + ACTIONS(7334), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7190), 2, + ACTIONS(7336), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7192), 2, + ACTIONS(7338), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7194), 2, + ACTIONS(7340), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7196), 3, + ACTIONS(7342), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7125), 14, + ACTIONS(7320), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211708,42 +214847,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [156320] = 11, + [159923] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7260), 1, + ACTIONS(1235), 1, + sym_file_descriptor, + ACTIONS(3852), 1, + anon_sym_DQUOTE, + ACTIONS(7460), 1, + sym_variable_name, + STATE(4863), 1, + sym_string, + ACTIONS(7458), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7456), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7272), 1, - anon_sym_STAR_STAR, - ACTIONS(7274), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7250), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7262), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7266), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7268), 2, - anon_sym_PLUS, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [159978] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1241), 1, + sym_file_descriptor, + ACTIONS(3852), 1, + anon_sym_DQUOTE, + ACTIONS(7460), 1, + sym_variable_name, + STATE(4863), 1, + sym_string, + ACTIONS(7458), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7456), 9, anon_sym_DASH, - ACTIONS(7270), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7264), 4, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7248), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [160033] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1338), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1336), 36, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211761,30 +214968,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASHa, anon_sym_PIPE, anon_sym_CARET, - [156381] = 5, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [160078] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7302), 1, + ACTIONS(1272), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1274), 24, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [160123] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6476), 1, + sym_word, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6484), 1, + anon_sym_esac, + ACTIONS(6490), 1, + anon_sym_DOLLAR, + ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, + aux_sym_number_token2, + ACTIONS(6502), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6510), 1, + sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(7200), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7202), 1, + sym__special_character, + ACTIONS(7204), 1, + anon_sym_DQUOTE, + ACTIONS(7208), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7210), 1, + anon_sym_BQUOTE, + ACTIONS(7212), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(6931), 1, + sym_last_case_item, + ACTIONS(7196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7206), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7214), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3377), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [160212] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7276), 1, anon_sym_STAR_STAR, - ACTIONS(7278), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6807), 13, + ACTIONS(7278), 1, + sym_test_operator, + ACTIONS(7282), 1, anon_sym_EQ, + ACTIONS(7286), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP_AMP, + ACTIONS(7290), 1, anon_sym_PIPE, + ACTIONS(7292), 1, anon_sym_CARET, + ACTIONS(7294), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7302), 1, + anon_sym_EQ_TILDE, + ACTIONS(7304), 1, + anon_sym_QMARK, + ACTIONS(7462), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(6830), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7270), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7272), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7296), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7298), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7300), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7274), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 21, - sym_test_operator, + ACTIONS(7284), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211796,39 +215148,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [156430] = 5, + [160291] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7302), 1, + ACTIONS(7172), 1, + anon_sym_AMP, + ACTIONS(7186), 1, anon_sym_STAR_STAR, - ACTIONS(7278), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6807), 13, + ACTIONS(7188), 1, + sym_test_operator, + ACTIONS(7362), 1, anon_sym_EQ, + ACTIONS(7366), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7368), 1, + anon_sym_AMP_AMP, + ACTIONS(7370), 1, anon_sym_PIPE, + ACTIONS(7372), 1, anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7374), 1, + anon_sym_EQ_TILDE, + ACTIONS(7376), 1, + anon_sym_QMARK, + ACTIONS(7464), 1, + anon_sym_COLON, + ACTIONS(6830), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7174), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7176), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7178), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7180), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7182), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 21, - sym_test_operator, + ACTIONS(7364), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211840,40 +215207,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [160370] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7466), 1, + aux_sym_concatenation_token1, + ACTIONS(7468), 1, + sym__concat, + STATE(3134), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5317), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5315), 30, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [156479] = 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [160421] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7466), 1, + aux_sym_concatenation_token1, + ACTIONS(7468), 1, + sym__concat, + STATE(3146), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5321), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5319), 30, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [160472] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7302), 1, - anon_sym_STAR_STAR, - ACTIONS(7278), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7300), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6807), 10, - anon_sym_EQ, + ACTIONS(7220), 1, anon_sym_PIPE, + ACTIONS(7222), 1, anon_sym_CARET, + ACTIONS(7224), 1, anon_sym_AMP, + ACTIONS(7238), 1, + anon_sym_STAR_STAR, + ACTIONS(7240), 1, + sym_test_operator, + ACTIONS(7306), 1, + anon_sym_EQ, + ACTIONS(7310), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7312), 1, + anon_sym_AMP_AMP, + ACTIONS(7314), 1, + anon_sym_EQ_TILDE, + ACTIONS(7316), 1, + anon_sym_QMARK, + ACTIONS(7462), 1, + anon_sym_RBRACK, + ACTIONS(7218), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7226), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7228), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7230), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7232), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7234), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6805), 21, - sym_test_operator, + ACTIONS(7236), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7308), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [160551] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1342), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1340), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211886,40 +215378,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [156530] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7302), 1, - anon_sym_STAR_STAR, - ACTIONS(7278), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7298), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7300), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6807), 8, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6805), 21, - sym_test_operator, + anon_sym_STAR_STAR, + [160596] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1292), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211932,42 +215420,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [156583] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7302), 1, - anon_sym_STAR_STAR, - ACTIONS(7304), 1, - sym_test_operator, - ACTIONS(7278), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7296), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7298), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7300), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6807), 6, + anon_sym_STAR_STAR, + [160641] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7318), 1, anon_sym_EQ, + ACTIONS(7322), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7324), 1, + anon_sym_AMP_AMP, + ACTIONS(7326), 1, anon_sym_PIPE, + ACTIONS(7328), 1, anon_sym_CARET, + ACTIONS(7330), 1, anon_sym_AMP, + ACTIONS(7344), 1, + anon_sym_STAR_STAR, + ACTIONS(7346), 1, + anon_sym_EQ_TILDE, + ACTIONS(7348), 1, + anon_sym_QMARK, + ACTIONS(7350), 1, + sym_test_operator, + ACTIONS(7462), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(6830), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7334), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6805), 20, + ACTIONS(7336), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7338), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7340), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7342), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7320), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211979,42 +215499,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [156640] = 8, - ACTIONS(71), 1, + [160720] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7302), 1, - anon_sym_STAR_STAR, - ACTIONS(7278), 2, + ACTIONS(1350), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1348), 36, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7296), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7298), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7300), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6807), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6805), 21, - sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212027,46 +215521,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [156695] = 11, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7302), 1, - anon_sym_STAR_STAR, - ACTIONS(7304), 1, - sym_test_operator, - ACTIONS(7278), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7292), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7294), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7296), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7298), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7300), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6807), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6805), 18, + anon_sym_STAR_STAR, + [160765] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7466), 1, + aux_sym_concatenation_token1, + ACTIONS(7468), 1, + sym__concat, + STATE(3134), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1272), 30, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [160816] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7472), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7470), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212079,47 +215608,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [156756] = 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [160861] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(7302), 1, + ACTIONS(6795), 1, + anon_sym_EQ, + ACTIONS(7220), 1, + anon_sym_PIPE, + ACTIONS(7222), 1, + anon_sym_CARET, + ACTIONS(7224), 1, + anon_sym_AMP, + ACTIONS(7238), 1, anon_sym_STAR_STAR, - ACTIONS(7304), 1, + ACTIONS(7240), 1, sym_test_operator, - ACTIONS(7278), 2, + ACTIONS(7312), 1, + anon_sym_AMP_AMP, + ACTIONS(7218), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7290), 2, + ACTIONS(7226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7292), 2, + ACTIONS(7228), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7294), 2, + ACTIONS(7230), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7296), 2, + ACTIONS(7232), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7298), 2, + ACTIONS(7234), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7300), 3, + ACTIONS(7236), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6807), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6805), 16, + ACTIONS(6793), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212132,41 +215680,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [156819] = 10, + [160932] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7272), 1, - anon_sym_STAR_STAR, - ACTIONS(7274), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7250), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7262), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7266), 2, + ACTIONS(1235), 1, + sym_file_descriptor, + ACTIONS(7476), 1, + anon_sym_DQUOTE, + ACTIONS(7480), 1, + sym_variable_name, + STATE(4510), 1, + sym_string, + ACTIONS(7478), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7474), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7268), 2, - anon_sym_PLUS, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [160987] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1241), 1, + sym_file_descriptor, + ACTIONS(7476), 1, + anon_sym_DQUOTE, + ACTIONS(7480), 1, + sym_variable_name, + STATE(4510), 1, + sym_string, + ACTIONS(7478), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7474), 9, anon_sym_DASH, - ACTIONS(7270), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7264), 4, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7248), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [161042] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1354), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1352), 36, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212185,42 +215805,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - [156878] = 13, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [161087] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7288), 1, + ACTIONS(7172), 1, anon_sym_AMP, - ACTIONS(7302), 1, + ACTIONS(7186), 1, anon_sym_STAR_STAR, - ACTIONS(7304), 1, + ACTIONS(7188), 1, sym_test_operator, - ACTIONS(7278), 2, + ACTIONS(7362), 1, + anon_sym_EQ, + ACTIONS(7366), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7368), 1, + anon_sym_AMP_AMP, + ACTIONS(7370), 1, + anon_sym_PIPE, + ACTIONS(7372), 1, + anon_sym_CARET, + ACTIONS(7374), 1, + anon_sym_EQ_TILDE, + ACTIONS(7376), 1, + anon_sym_QMARK, + ACTIONS(7482), 1, + anon_sym_COLON, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7290), 2, + ACTIONS(7174), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7292), 2, + ACTIONS(7176), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7294), 2, + ACTIONS(7178), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7296), 2, + ACTIONS(7180), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7298), 2, + ACTIONS(7182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6807), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(7300), 3, + ACTIONS(7184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 16, + ACTIONS(7364), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212232,35 +215878,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [156943] = 5, + [161166] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7198), 1, - anon_sym_STAR_STAR, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6807), 13, + ACTIONS(6899), 1, anon_sym_EQ, + ACTIONS(6905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP_AMP, + ACTIONS(6909), 1, anon_sym_PIPE, + ACTIONS(6911), 1, anon_sym_CARET, + ACTIONS(6913), 1, anon_sym_AMP, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, + anon_sym_QMARK, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7484), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 21, - sym_test_operator, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212272,24 +215936,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [156992] = 5, + [161243] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7198), 1, - anon_sym_STAR_STAR, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6807), 13, + ACTIONS(7486), 1, + sym__concat, + ACTIONS(6859), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -212303,8 +215955,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 21, - sym_test_operator, + anon_sym_STAR_STAR, + ACTIONS(6857), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212322,22 +215976,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [157041] = 6, + [161290] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7198), 1, - anon_sym_STAR_STAR, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7196), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6807), 10, + ACTIONS(7488), 1, + sym__concat, + ACTIONS(6865), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -212348,8 +215995,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6805), 21, - sym_test_operator, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6863), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212367,26 +216019,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [157092] = 7, + [161337] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7198), 1, - anon_sym_STAR_STAR, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7194), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7196), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6807), 8, + ACTIONS(7490), 1, anon_sym_EQ, + ACTIONS(7164), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -212394,8 +216035,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6805), 21, - sym_test_operator, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7168), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212408,42 +216058,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [157145] = 9, + [161384] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7198), 1, + ACTIONS(7276), 1, anon_sym_STAR_STAR, - ACTIONS(7206), 1, + ACTIONS(7278), 1, sym_test_operator, - ACTIONS(6793), 2, + ACTIONS(7282), 1, + anon_sym_EQ, + ACTIONS(7286), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP_AMP, + ACTIONS(7290), 1, + anon_sym_PIPE, + ACTIONS(7292), 1, + anon_sym_CARET, + ACTIONS(7294), 1, + anon_sym_AMP, + ACTIONS(7302), 1, + anon_sym_EQ_TILDE, + ACTIONS(7304), 1, + anon_sym_QMARK, + ACTIONS(7492), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7192), 2, + ACTIONS(7270), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7194), 2, + ACTIONS(7272), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7196), 3, + ACTIONS(7296), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7298), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7300), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7274), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6807), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6805), 20, + ACTIONS(7284), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212455,47 +216124,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [161463] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7494), 1, + sym__special_character, + STATE(3147), 1, + aux_sym__literal_repeat1, + ACTIONS(5315), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5317), 23, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [157202] = 11, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [161512] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7198), 1, + ACTIONS(7220), 1, + anon_sym_PIPE, + ACTIONS(7222), 1, + anon_sym_CARET, + ACTIONS(7224), 1, + anon_sym_AMP, + ACTIONS(7238), 1, anon_sym_STAR_STAR, - ACTIONS(7206), 1, + ACTIONS(7240), 1, sym_test_operator, - ACTIONS(6793), 2, + ACTIONS(7306), 1, + anon_sym_EQ, + ACTIONS(7310), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7312), 1, + anon_sym_AMP_AMP, + ACTIONS(7314), 1, + anon_sym_EQ_TILDE, + ACTIONS(7316), 1, + anon_sym_QMARK, + ACTIONS(7492), 1, + anon_sym_RBRACK, + ACTIONS(7218), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7188), 2, + ACTIONS(7226), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7228), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7190), 2, + ACTIONS(7230), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7192), 2, + ACTIONS(7232), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7194), 2, + ACTIONS(7234), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7196), 3, + ACTIONS(7236), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6807), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6805), 18, + ACTIONS(7308), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212507,48 +216227,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [161591] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7318), 1, + anon_sym_EQ, + ACTIONS(7322), 1, anon_sym_PIPE_PIPE, + ACTIONS(7324), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(7326), 1, + anon_sym_PIPE, + ACTIONS(7328), 1, + anon_sym_CARET, + ACTIONS(7330), 1, + anon_sym_AMP, + ACTIONS(7344), 1, + anon_sym_STAR_STAR, + ACTIONS(7346), 1, anon_sym_EQ_TILDE, + ACTIONS(7348), 1, anon_sym_QMARK, - anon_sym_COLON, - [157263] = 12, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7198), 1, - anon_sym_STAR_STAR, - ACTIONS(7206), 1, + ACTIONS(7350), 1, sym_test_operator, - ACTIONS(6793), 2, + ACTIONS(7492), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7186), 2, + ACTIONS(7332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7188), 2, + ACTIONS(7334), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7190), 2, + ACTIONS(7336), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7192), 2, + ACTIONS(7338), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7194), 2, + ACTIONS(7340), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7196), 3, + ACTIONS(7342), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6807), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6805), 16, + ACTIONS(7320), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212560,47 +216286,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [157326] = 13, + [161670] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7184), 1, - anon_sym_AMP, - ACTIONS(7198), 1, + ACTIONS(7276), 1, anon_sym_STAR_STAR, - ACTIONS(7206), 1, + ACTIONS(7278), 1, sym_test_operator, - ACTIONS(6793), 2, + ACTIONS(7282), 1, + anon_sym_EQ, + ACTIONS(7286), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP_AMP, + ACTIONS(7290), 1, + anon_sym_PIPE, + ACTIONS(7292), 1, + anon_sym_CARET, + ACTIONS(7294), 1, + anon_sym_AMP, + ACTIONS(7302), 1, + anon_sym_EQ_TILDE, + ACTIONS(7304), 1, + anon_sym_QMARK, + ACTIONS(7454), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7186), 2, + ACTIONS(7270), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7272), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7296), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7188), 2, + ACTIONS(7298), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7190), 2, + ACTIONS(7300), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7192), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7194), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6807), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(7196), 3, + ACTIONS(7274), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 16, + ACTIONS(7284), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212612,48 +216345,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [157391] = 14, + [161749] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7182), 1, - anon_sym_CARET, - ACTIONS(7184), 1, - anon_sym_AMP, - ACTIONS(7198), 1, + ACTIONS(7276), 1, anon_sym_STAR_STAR, - ACTIONS(7206), 1, + ACTIONS(7278), 1, sym_test_operator, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6807), 2, + ACTIONS(7282), 1, anon_sym_EQ, + ACTIONS(7286), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP_AMP, + ACTIONS(7290), 1, anon_sym_PIPE, - ACTIONS(7186), 2, + ACTIONS(7292), 1, + anon_sym_CARET, + ACTIONS(7294), 1, + anon_sym_AMP, + ACTIONS(7302), 1, + anon_sym_EQ_TILDE, + ACTIONS(7304), 1, + anon_sym_QMARK, + ACTIONS(7496), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(6830), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7270), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7272), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7296), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7188), 2, + ACTIONS(7298), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7190), 2, + ACTIONS(7300), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7192), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7194), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7196), 3, + ACTIONS(7274), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 16, + ACTIONS(7284), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212665,49 +216404,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [157458] = 15, + [161828] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(6807), 1, - anon_sym_EQ, - ACTIONS(7180), 1, - anon_sym_PIPE, - ACTIONS(7182), 1, - anon_sym_CARET, - ACTIONS(7184), 1, - anon_sym_AMP, - ACTIONS(7198), 1, + ACTIONS(7250), 1, anon_sym_STAR_STAR, - ACTIONS(7206), 1, - sym_test_operator, - ACTIONS(6793), 2, + ACTIONS(7242), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7186), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7188), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7190), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7192), 2, + ACTIONS(7244), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7194), 2, + ACTIONS(7246), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7196), 3, + ACTIONS(7248), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 16, + ACTIONS(6795), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6793), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212721,49 +216444,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [157527] = 16, + [161883] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(6807), 1, + ACTIONS(6795), 1, anon_sym_EQ, - ACTIONS(7178), 1, + ACTIONS(7250), 1, + anon_sym_STAR_STAR, + ACTIONS(7252), 1, + sym_test_operator, + ACTIONS(7254), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7256), 1, anon_sym_AMP_AMP, - ACTIONS(7180), 1, + ACTIONS(7258), 1, anon_sym_PIPE, - ACTIONS(7182), 1, + ACTIONS(7260), 1, anon_sym_CARET, - ACTIONS(7184), 1, + ACTIONS(7262), 1, anon_sym_AMP, - ACTIONS(7198), 1, - anon_sym_STAR_STAR, - ACTIONS(7206), 1, - sym_test_operator, - ACTIONS(6793), 2, + ACTIONS(7360), 1, + anon_sym_QMARK, + ACTIONS(7242), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7186), 2, + ACTIONS(7244), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7264), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7188), 2, + ACTIONS(7266), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7190), 2, + ACTIONS(7268), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7192), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7194), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7196), 3, + ACTIONS(7248), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 15, + ACTIONS(6793), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212775,56 +216506,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [157598] = 19, - ACTIONS(71), 1, + [161958] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7172), 1, - anon_sym_EQ, - ACTIONS(7176), 1, + ACTIONS(1358), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1356), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - ACTIONS(7178), 1, + anon_sym_DASHo, anon_sym_AMP_AMP, - ACTIONS(7180), 1, + anon_sym_DASHa, anon_sym_PIPE, - ACTIONS(7182), 1, anon_sym_CARET, - ACTIONS(7184), 1, anon_sym_AMP, - ACTIONS(7198), 1, - anon_sym_STAR_STAR, - ACTIONS(7200), 1, - anon_sym_EQ_TILDE, - ACTIONS(7202), 1, - anon_sym_QMARK, - ACTIONS(7206), 1, - sym_test_operator, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7186), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7188), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7190), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7192), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7194), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7196), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 12, + anon_sym_STAR_STAR, + [162003] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1346), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1344), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212836,51 +216571,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_COLON, - [157675] = 18, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6807), 1, - anon_sym_EQ, - ACTIONS(7176), 1, anon_sym_PIPE_PIPE, - ACTIONS(7178), 1, + anon_sym_DASHo, anon_sym_AMP_AMP, - ACTIONS(7180), 1, + anon_sym_DASHa, anon_sym_PIPE, - ACTIONS(7182), 1, anon_sym_CARET, - ACTIONS(7184), 1, anon_sym_AMP, - ACTIONS(7198), 1, - anon_sym_STAR_STAR, - ACTIONS(7202), 1, - anon_sym_QMARK, - ACTIONS(7206), 1, - sym_test_operator, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7186), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7188), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7190), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7192), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7194), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7196), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 13, + anon_sym_STAR_STAR, + [162048] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1358), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1356), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212892,87 +216613,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_TILDE, - anon_sym_COLON, - [157750] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1261), 13, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1263), 24, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [157795] = 14, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [162093] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7286), 1, - anon_sym_CARET, - ACTIONS(7288), 1, - anon_sym_AMP, - ACTIONS(7302), 1, + ACTIONS(7250), 1, anon_sym_STAR_STAR, - ACTIONS(7304), 1, + ACTIONS(7252), 1, sym_test_operator, - ACTIONS(6807), 2, - anon_sym_EQ, + ACTIONS(7254), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7256), 1, + anon_sym_AMP_AMP, + ACTIONS(7258), 1, anon_sym_PIPE, - ACTIONS(7278), 2, + ACTIONS(7260), 1, + anon_sym_CARET, + ACTIONS(7262), 1, + anon_sym_AMP, + ACTIONS(7352), 1, + anon_sym_EQ, + ACTIONS(7358), 1, + anon_sym_EQ_TILDE, + ACTIONS(7360), 1, + anon_sym_QMARK, + ACTIONS(7242), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7290), 2, + ACTIONS(7244), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7264), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7292), 2, + ACTIONS(7266), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7294), 2, + ACTIONS(7268), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7296), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7298), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7300), 3, + ACTIONS(7248), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 16, + ACTIONS(6793), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212984,98 +216691,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [157862] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6474), 1, - sym_word, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, - anon_sym_DOLLAR, - ACTIONS(6494), 1, - aux_sym_number_token1, - ACTIONS(6496), 1, - aux_sym_number_token2, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, - sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, - sym__brace_start, - ACTIONS(6530), 1, - anon_sym_esac, - ACTIONS(7226), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, - sym__special_character, - ACTIONS(7230), 1, - anon_sym_DQUOTE, - ACTIONS(7234), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, - anon_sym_BQUOTE, - ACTIONS(7238), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6426), 1, - aux_sym__literal_repeat1, - STATE(7005), 1, - sym_last_case_item, - ACTIONS(7224), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7240), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3385), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6303), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [157951] = 4, + anon_sym_RPAREN, + [162170] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(7306), 1, - sym__concat, - ACTIONS(6844), 14, + ACTIONS(6795), 1, anon_sym_EQ, + ACTIONS(7250), 1, + anon_sym_STAR_STAR, + ACTIONS(7252), 1, + sym_test_operator, + ACTIONS(7256), 1, + anon_sym_AMP_AMP, + ACTIONS(7258), 1, anon_sym_PIPE, + ACTIONS(7260), 1, anon_sym_CARET, + ACTIONS(7262), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7242), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7244), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7246), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7264), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7266), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7268), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7248), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6842), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6793), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213088,20 +216744,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [157998] = 4, + [162241] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7308), 1, - sym__concat, - ACTIONS(6838), 14, + ACTIONS(6813), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -213116,7 +216765,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6836), 22, + ACTIONS(6811), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -213136,103 +216786,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [158045] = 15, + [162286] = 15, ACTIONS(71), 1, sym_comment, - ACTIONS(6807), 1, + ACTIONS(6795), 1, anon_sym_EQ, - ACTIONS(7284), 1, + ACTIONS(7250), 1, + anon_sym_STAR_STAR, + ACTIONS(7252), 1, + sym_test_operator, + ACTIONS(7258), 1, anon_sym_PIPE, - ACTIONS(7286), 1, + ACTIONS(7260), 1, anon_sym_CARET, - ACTIONS(7288), 1, + ACTIONS(7262), 1, anon_sym_AMP, - ACTIONS(7302), 1, - anon_sym_STAR_STAR, - ACTIONS(7304), 1, - sym_test_operator, - ACTIONS(7278), 2, + ACTIONS(7242), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7290), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7292), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7294), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7296), 2, + ACTIONS(7244), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7298), 2, + ACTIONS(7246), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7300), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6805), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [158114] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6807), 1, - anon_sym_EQ, - ACTIONS(7282), 1, - anon_sym_AMP_AMP, - ACTIONS(7284), 1, - anon_sym_PIPE, - ACTIONS(7286), 1, - anon_sym_CARET, - ACTIONS(7288), 1, - anon_sym_AMP, - ACTIONS(7302), 1, - anon_sym_STAR_STAR, - ACTIONS(7304), 1, - sym_test_operator, - ACTIONS(7278), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7290), 2, + ACTIONS(7264), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7292), 2, + ACTIONS(7266), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7294), 2, + ACTIONS(7268), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7296), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7298), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7300), 3, + ACTIONS(7248), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 15, + ACTIONS(6793), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213245,35 +216839,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [158185] = 6, + [162355] = 14, ACTIONS(71), 1, sym_comment, - ACTIONS(7220), 1, + ACTIONS(7250), 1, anon_sym_STAR_STAR, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7218), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6807), 10, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(7252), 1, + sym_test_operator, + ACTIONS(7260), 1, anon_sym_CARET, + ACTIONS(7262), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(6795), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(7242), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7244), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7246), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6805), 21, - sym_test_operator, - anon_sym_RPAREN_RPAREN, + ACTIONS(7264), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7266), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7268), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7248), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6793), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213287,58 +216893,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [158236] = 19, + [162422] = 13, ACTIONS(71), 1, sym_comment, - ACTIONS(7280), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7282), 1, - anon_sym_AMP_AMP, - ACTIONS(7284), 1, - anon_sym_PIPE, - ACTIONS(7286), 1, - anon_sym_CARET, - ACTIONS(7288), 1, - anon_sym_AMP, - ACTIONS(7302), 1, + ACTIONS(7250), 1, anon_sym_STAR_STAR, - ACTIONS(7304), 1, + ACTIONS(7252), 1, sym_test_operator, - ACTIONS(7310), 1, - anon_sym_EQ, - ACTIONS(7312), 1, - anon_sym_EQ_TILDE, - ACTIONS(7314), 1, - anon_sym_QMARK, - ACTIONS(7278), 2, + ACTIONS(7262), 1, + anon_sym_AMP, + ACTIONS(7242), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7290), 2, + ACTIONS(7244), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7264), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7292), 2, + ACTIONS(7266), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7294), 2, + ACTIONS(7268), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7296), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7298), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7300), 3, + ACTIONS(6795), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7248), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 12, + ACTIONS(6793), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213350,51 +216943,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RBRACK, - [158313] = 18, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6807), 1, - anon_sym_EQ, - ACTIONS(7280), 1, anon_sym_PIPE_PIPE, - ACTIONS(7282), 1, anon_sym_AMP_AMP, - ACTIONS(7284), 1, - anon_sym_PIPE, - ACTIONS(7286), 1, - anon_sym_CARET, - ACTIONS(7288), 1, - anon_sym_AMP, - ACTIONS(7302), 1, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [162487] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7250), 1, anon_sym_STAR_STAR, - ACTIONS(7304), 1, + ACTIONS(7252), 1, sym_test_operator, - ACTIONS(7314), 1, - anon_sym_QMARK, - ACTIONS(7278), 2, + ACTIONS(7242), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7290), 2, + ACTIONS(7244), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7264), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7292), 2, + ACTIONS(7266), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7294), 2, + ACTIONS(7268), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7296), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7298), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7300), 3, + ACTIONS(7248), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 13, + ACTIONS(6795), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(6793), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213406,30 +216994,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RPAREN, anon_sym_EQ_TILDE, - [158388] = 3, + anon_sym_QMARK, + [162550] = 11, ACTIONS(71), 1, sym_comment, - ACTIONS(6801), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7250), 1, + anon_sym_STAR_STAR, + ACTIONS(7252), 1, + sym_test_operator, + ACTIONS(7242), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7244), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7246), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7266), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7268), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7248), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6799), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6795), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(6793), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213445,34 +217046,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [158433] = 8, - ACTIONS(3), 1, + [162611] = 9, + ACTIONS(71), 1, sym_comment, - ACTIONS(7272), 1, + ACTIONS(7250), 1, anon_sym_STAR_STAR, - ACTIONS(7274), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7250), 2, + ACTIONS(7252), 1, + sym_test_operator, + ACTIONS(7242), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7266), 2, + ACTIONS(7244), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7268), 2, + ACTIONS(7246), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7270), 3, + ACTIONS(7248), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7248), 26, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(6795), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6793), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213485,81 +217089,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - [158488] = 7, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [162668] = 7, + ACTIONS(71), 1, sym_comment, - ACTIONS(7272), 1, + ACTIONS(7250), 1, anon_sym_STAR_STAR, - ACTIONS(7274), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7250), 2, + ACTIONS(7242), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7268), 2, + ACTIONS(7246), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7270), 3, + ACTIONS(7248), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7248), 28, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(6795), 8, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [158541] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7272), 1, - anon_sym_STAR_STAR, - ACTIONS(7274), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7250), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7270), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7248), 30, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(6793), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213572,48 +217135,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - [158592] = 8, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [162721] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(7322), 1, + ACTIONS(6476), 1, + sym_word, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6490), 1, + anon_sym_DOLLAR, + ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, + aux_sym_number_token2, + ACTIONS(6502), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6510), 1, + sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(6536), 1, + anon_sym_esac, + ACTIONS(7200), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7202), 1, + sym__special_character, + ACTIONS(7204), 1, + anon_sym_DQUOTE, + ACTIONS(7208), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7210), 1, + anon_sym_BQUOTE, + ACTIONS(7212), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(7316), 1, + sym_last_case_item, + ACTIONS(7196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7206), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7214), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3402), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [162810] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7250), 1, anon_sym_STAR_STAR, - ACTIONS(6793), 2, + ACTIONS(7242), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7316), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7318), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7320), 3, + ACTIONS(7248), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6807), 6, + ACTIONS(6795), 10, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6805), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6793), 21, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -213632,53 +217249,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [158647] = 18, + [162861] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6807), 1, - anon_sym_EQ, - ACTIONS(7322), 1, + ACTIONS(7250), 1, anon_sym_STAR_STAR, - ACTIONS(7324), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7326), 1, - anon_sym_AMP_AMP, - ACTIONS(7328), 1, + ACTIONS(7242), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6795), 13, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(7330), 1, anon_sym_CARET, - ACTIONS(7332), 1, anon_sym_AMP, - ACTIONS(7340), 1, - anon_sym_QMARK, - ACTIONS(7342), 1, - sym_test_operator, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7316), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7318), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7334), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7336), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7338), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7320), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 13, + ACTIONS(6793), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213690,54 +217287,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, - [158722] = 19, + anon_sym_QMARK, + [162910] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7322), 1, + ACTIONS(7250), 1, anon_sym_STAR_STAR, - ACTIONS(7324), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7326), 1, - anon_sym_AMP_AMP, - ACTIONS(7328), 1, + ACTIONS(7242), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6795), 13, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(7330), 1, anon_sym_CARET, - ACTIONS(7332), 1, anon_sym_AMP, - ACTIONS(7340), 1, - anon_sym_QMARK, - ACTIONS(7342), 1, - sym_test_operator, - ACTIONS(7344), 1, - anon_sym_EQ, - ACTIONS(7346), 1, - anon_sym_EQ_TILDE, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7316), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7318), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7334), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7336), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7338), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7320), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 12, + ACTIONS(6793), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213749,17 +217331,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RBRACK_RBRACK, - [158799] = 3, - ACTIONS(3), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [162959] = 8, + ACTIONS(71), 1, sym_comment, - ACTIONS(1318), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 36, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(7250), 1, + anon_sym_STAR_STAR, + ACTIONS(7242), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7244), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7248), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6828), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6826), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213772,30 +217379,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - [158844] = 3, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [163014] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6797), 14, + ACTIONS(7498), 1, + sym__concat, + ACTIONS(6837), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -213810,8 +217407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6795), 23, - sym_test_operator, + ACTIONS(6835), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -213831,22 +217427,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [158889] = 5, - ACTIONS(3), 1, + [163061] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(7272), 1, + ACTIONS(7500), 1, + sym__concat, + ACTIONS(6819), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7274), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7250), 2, + ACTIONS(6817), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7248), 33, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213859,63 +217465,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [158938] = 15, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [163108] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(6807), 1, - anon_sym_EQ, - ACTIONS(7322), 1, + ACTIONS(6476), 1, + sym_word, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6490), 1, + anon_sym_DOLLAR, + ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, + aux_sym_number_token2, + ACTIONS(6502), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6510), 1, + sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(6577), 1, + anon_sym_esac, + ACTIONS(7200), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7202), 1, + sym__special_character, + ACTIONS(7204), 1, + anon_sym_DQUOTE, + ACTIONS(7208), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7210), 1, + anon_sym_BQUOTE, + ACTIONS(7212), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(6887), 1, + sym_last_case_item, + ACTIONS(7196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7206), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7214), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3352), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [163197] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7276), 1, anon_sym_STAR_STAR, - ACTIONS(7328), 1, + ACTIONS(7278), 1, + sym_test_operator, + ACTIONS(7282), 1, + anon_sym_EQ, + ACTIONS(7286), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP_AMP, + ACTIONS(7290), 1, anon_sym_PIPE, - ACTIONS(7330), 1, + ACTIONS(7292), 1, anon_sym_CARET, - ACTIONS(7332), 1, + ACTIONS(7294), 1, anon_sym_AMP, - ACTIONS(7342), 1, - sym_test_operator, - ACTIONS(6793), 2, + ACTIONS(7302), 1, + anon_sym_EQ_TILDE, + ACTIONS(7304), 1, + anon_sym_QMARK, + ACTIONS(7502), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7316), 2, + ACTIONS(7270), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7318), 2, + ACTIONS(7272), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7334), 2, + ACTIONS(7296), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7336), 2, + ACTIONS(7298), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7338), 2, + ACTIONS(7300), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7320), 3, + ACTIONS(7274), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 16, + ACTIONS(7284), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213927,48 +217596,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [159007] = 14, + [163276] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7322), 1, - anon_sym_STAR_STAR, - ACTIONS(7330), 1, + ACTIONS(7220), 1, + anon_sym_PIPE, + ACTIONS(7222), 1, anon_sym_CARET, - ACTIONS(7332), 1, + ACTIONS(7224), 1, anon_sym_AMP, - ACTIONS(7342), 1, + ACTIONS(7238), 1, + anon_sym_STAR_STAR, + ACTIONS(7240), 1, sym_test_operator, - ACTIONS(6793), 2, + ACTIONS(7306), 1, + anon_sym_EQ, + ACTIONS(7310), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7312), 1, + anon_sym_AMP_AMP, + ACTIONS(7314), 1, + anon_sym_EQ_TILDE, + ACTIONS(7316), 1, + anon_sym_QMARK, + ACTIONS(7502), 1, + anon_sym_RBRACK, + ACTIONS(7218), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6807), 2, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(7316), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7318), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7334), 2, + ACTIONS(7226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7336), 2, + ACTIONS(7228), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7338), 2, + ACTIONS(7230), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7320), 3, + ACTIONS(7232), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7234), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7236), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 16, + ACTIONS(7308), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213980,47 +217655,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [159074] = 13, + [163355] = 20, ACTIONS(71), 1, sym_comment, + ACTIONS(7318), 1, + anon_sym_EQ, ACTIONS(7322), 1, - anon_sym_STAR_STAR, - ACTIONS(7332), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7324), 1, + anon_sym_AMP_AMP, + ACTIONS(7326), 1, + anon_sym_PIPE, + ACTIONS(7328), 1, + anon_sym_CARET, + ACTIONS(7330), 1, anon_sym_AMP, - ACTIONS(7342), 1, + ACTIONS(7344), 1, + anon_sym_STAR_STAR, + ACTIONS(7346), 1, + anon_sym_EQ_TILDE, + ACTIONS(7348), 1, + anon_sym_QMARK, + ACTIONS(7350), 1, sym_test_operator, - ACTIONS(6793), 2, + ACTIONS(7502), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7316), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7318), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7334), 2, + ACTIONS(7332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7336), 2, + ACTIONS(7334), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7338), 2, + ACTIONS(7336), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6807), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(7320), 3, + ACTIONS(7338), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7340), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7342), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 16, + ACTIONS(7320), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214032,46 +217714,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [159139] = 12, + [163434] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7322), 1, + ACTIONS(7238), 1, anon_sym_STAR_STAR, - ACTIONS(7342), 1, - sym_test_operator, - ACTIONS(6793), 2, + ACTIONS(7218), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7316), 2, + ACTIONS(6795), 13, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7318), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7334), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7336), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7338), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7320), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6807), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6805), 16, + ACTIONS(6793), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214085,41 +217751,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK_RBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [159202] = 11, + [163483] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7322), 1, + ACTIONS(7220), 1, + anon_sym_PIPE, + ACTIONS(7222), 1, + anon_sym_CARET, + ACTIONS(7224), 1, + anon_sym_AMP, + ACTIONS(7238), 1, anon_sym_STAR_STAR, - ACTIONS(7342), 1, + ACTIONS(7240), 1, sym_test_operator, - ACTIONS(6793), 2, + ACTIONS(7306), 1, + anon_sym_EQ, + ACTIONS(7310), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7312), 1, + anon_sym_AMP_AMP, + ACTIONS(7314), 1, + anon_sym_EQ_TILDE, + ACTIONS(7316), 1, + anon_sym_QMARK, + ACTIONS(7496), 1, + anon_sym_RBRACK, + ACTIONS(7218), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7316), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7318), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7336), 2, + ACTIONS(7226), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7228), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7338), 2, + ACTIONS(7230), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7320), 3, + ACTIONS(7232), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7234), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7236), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6807), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6805), 18, + ACTIONS(7308), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214131,26 +217817,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [159263] = 5, + [163562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7272), 1, - anon_sym_STAR_STAR, - ACTIONS(7274), 1, + ACTIONS(7506), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(7250), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7248), 33, + ACTIONS(7504), 36, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214182,33 +217858,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [159312] = 8, - ACTIONS(71), 1, + anon_sym_STAR_STAR, + [163607] = 15, + ACTIONS(3), 1, sym_comment, - ACTIONS(7302), 1, + ACTIONS(7402), 1, + anon_sym_PIPE, + ACTIONS(7404), 1, + anon_sym_CARET, + ACTIONS(7406), 1, + anon_sym_AMP, + ACTIONS(7418), 1, anon_sym_STAR_STAR, - ACTIONS(7278), 2, + ACTIONS(7510), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7394), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7296), 2, + ACTIONS(7398), 2, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + ACTIONS(7400), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(7408), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7412), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7298), 2, + ACTIONS(7414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7300), 3, + ACTIONS(7416), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6791), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7410), 4, anon_sym_LT, anon_sym_GT, - ACTIONS(6789), 21, - sym_test_operator, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7508), 13, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214220,43 +217913,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [159367] = 9, + [163676] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7322), 1, - anon_sym_STAR_STAR, - ACTIONS(7342), 1, - sym_test_operator, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7316), 2, + ACTIONS(7512), 1, + sym__concat, + ACTIONS(6859), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7318), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7320), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6807), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6805), 20, + anon_sym_STAR_STAR, + ACTIONS(6857), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214274,25 +217953,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [159424] = 7, + [163723] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7322), 1, - anon_sym_STAR_STAR, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7318), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7320), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6807), 8, + ACTIONS(7514), 1, + sym__concat, + ACTIONS(6865), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -214301,8 +217970,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6805), 21, - sym_test_operator, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6863), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214320,32 +217996,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [159477] = 4, - ACTIONS(71), 1, + [163770] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(7278), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6791), 14, - anon_sym_EQ, + ACTIONS(7402), 1, anon_sym_PIPE, + ACTIONS(7404), 1, anon_sym_CARET, + ACTIONS(7406), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7418), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7394), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7400), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(7408), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7412), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7414), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7416), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6789), 21, - sym_test_operator, + ACTIONS(7410), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7508), 15, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214358,27 +218051,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [159524] = 6, + anon_sym_DASHo, + [163837] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7322), 1, - anon_sym_STAR_STAR, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7320), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6807), 10, + ACTIONS(6795), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -214389,8 +218066,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6805), 21, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6793), 23, sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214408,35 +218091,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [159575] = 8, + [163882] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(7302), 1, + ACTIONS(7344), 1, anon_sym_STAR_STAR, - ACTIONS(7278), 2, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7296), 2, + ACTIONS(7338), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7298), 2, + ACTIONS(7340), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7300), 3, + ACTIONS(7342), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6791), 6, + ACTIONS(6795), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6789), 21, + ACTIONS(6793), 21, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -214455,37 +218138,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [159630] = 9, + [163937] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(7302), 1, + ACTIONS(6795), 1, + anon_sym_EQ, + ACTIONS(7322), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7324), 1, + anon_sym_AMP_AMP, + ACTIONS(7326), 1, + anon_sym_PIPE, + ACTIONS(7328), 1, + anon_sym_CARET, + ACTIONS(7330), 1, + anon_sym_AMP, + ACTIONS(7344), 1, anon_sym_STAR_STAR, - ACTIONS(7304), 1, + ACTIONS(7348), 1, + anon_sym_QMARK, + ACTIONS(7350), 1, sym_test_operator, - ACTIONS(7278), 2, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7296), 2, + ACTIONS(7332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7334), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7336), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7338), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7298), 2, + ACTIONS(7340), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7300), 3, + ACTIONS(7342), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6791), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6789), 20, + ACTIONS(6793), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214497,24 +218196,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, - anon_sym_QMARK, - [159687] = 5, + [164012] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7322), 1, - anon_sym_STAR_STAR, - ACTIONS(6793), 2, + ACTIONS(7242), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6807), 13, + ACTIONS(6828), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -214528,7 +218218,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 21, + anon_sym_STAR_STAR, + ACTIONS(6826), 21, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -214547,33 +218238,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [159736] = 5, + [164059] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7322), 1, - anon_sym_STAR_STAR, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6807), 13, - anon_sym_EQ, + ACTIONS(7220), 1, anon_sym_PIPE, + ACTIONS(7222), 1, anon_sym_CARET, + ACTIONS(7224), 1, anon_sym_AMP, + ACTIONS(7238), 1, + anon_sym_STAR_STAR, + ACTIONS(7240), 1, + sym_test_operator, + ACTIONS(7306), 1, + anon_sym_EQ, + ACTIONS(7310), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7312), 1, + anon_sym_AMP_AMP, + ACTIONS(7314), 1, + anon_sym_EQ_TILDE, + ACTIONS(7316), 1, + anon_sym_QMARK, + ACTIONS(7454), 1, + anon_sym_RBRACK, + ACTIONS(7218), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7226), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7228), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7230), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7232), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7234), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7236), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 21, - sym_test_operator, + ACTIONS(7308), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214585,156 +218300,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [159785] = 8, - ACTIONS(3), 1, + [164138] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1241), 1, - sym_file_descriptor, - ACTIONS(3679), 1, - anon_sym_DQUOTE, - ACTIONS(7352), 1, - sym_variable_name, - STATE(4859), 1, - sym_string, - ACTIONS(7350), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7348), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 22, - anon_sym_SEMI, + ACTIONS(7318), 1, + anon_sym_EQ, + ACTIONS(7322), 1, anon_sym_PIPE_PIPE, + ACTIONS(7324), 1, anon_sym_AMP_AMP, + ACTIONS(7326), 1, anon_sym_PIPE, + ACTIONS(7328), 1, + anon_sym_CARET, + ACTIONS(7330), 1, anon_sym_AMP, + ACTIONS(7344), 1, + anon_sym_STAR_STAR, + ACTIONS(7346), 1, + anon_sym_EQ_TILDE, + ACTIONS(7348), 1, + anon_sym_QMARK, + ACTIONS(7350), 1, + sym_test_operator, + ACTIONS(7496), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(6830), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7334), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7336), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7338), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [159840] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 1, - sym_file_descriptor, - ACTIONS(3679), 1, - anon_sym_DQUOTE, - ACTIONS(7352), 1, - sym_variable_name, - STATE(4859), 1, - sym_string, - ACTIONS(7350), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7348), 9, + ACTIONS(7340), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7342), 3, anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 22, - anon_sym_SEMI, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7320), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [164217] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7322), 1, anon_sym_PIPE_PIPE, + ACTIONS(7324), 1, anon_sym_AMP_AMP, + ACTIONS(7326), 1, anon_sym_PIPE, + ACTIONS(7328), 1, + anon_sym_CARET, + ACTIONS(7330), 1, anon_sym_AMP, + ACTIONS(7344), 1, + anon_sym_STAR_STAR, + ACTIONS(7346), 1, + anon_sym_EQ_TILDE, + ACTIONS(7348), 1, + anon_sym_QMARK, + ACTIONS(7350), 1, + sym_test_operator, + ACTIONS(7516), 1, + anon_sym_EQ, + ACTIONS(6830), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7334), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7336), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7338), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [159895] = 19, + ACTIONS(7340), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7342), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6793), 12, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_RBRACK_RBRACK, + [164294] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(6883), 1, + ACTIONS(6795), 1, anon_sym_EQ, - ACTIONS(6889), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, + ACTIONS(7324), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + ACTIONS(7326), 1, anon_sym_PIPE, - ACTIONS(6895), 1, + ACTIONS(7328), 1, anon_sym_CARET, - ACTIONS(6897), 1, + ACTIONS(7330), 1, anon_sym_AMP, - ACTIONS(6911), 1, + ACTIONS(7344), 1, anon_sym_STAR_STAR, - ACTIONS(6913), 1, - anon_sym_EQ_TILDE, - ACTIONS(6915), 1, - anon_sym_QMARK, - ACTIONS(6885), 2, + ACTIONS(7350), 1, + sym_test_operator, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(7332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(7334), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(7336), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(7338), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(7340), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7354), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - ACTIONS(6909), 3, + ACTIONS(7342), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + ACTIONS(6793), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214746,81 +218468,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [159972] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1241), 1, - sym_file_descriptor, - ACTIONS(7358), 1, - anon_sym_DQUOTE, - ACTIONS(7362), 1, - sym_variable_name, - STATE(4457), 1, - sym_string, - ACTIONS(7360), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7356), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 22, - anon_sym_SEMI, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [164365] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6795), 1, + anon_sym_EQ, + ACTIONS(7326), 1, anon_sym_PIPE, + ACTIONS(7328), 1, + anon_sym_CARET, + ACTIONS(7330), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [160027] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7272), 1, + ACTIONS(7344), 1, anon_sym_STAR_STAR, - ACTIONS(7274), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7250), 2, + ACTIONS(7350), 1, + sym_test_operator, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7266), 2, + ACTIONS(7332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7334), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7336), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7338), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7268), 2, + ACTIONS(7340), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7270), 3, + ACTIONS(7342), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7264), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7248), 22, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(6793), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214833,24 +218522,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [164434] = 14, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7328), 1, anon_sym_CARET, + ACTIONS(7330), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [160084] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1322), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 36, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(7344), 1, + anon_sym_STAR_STAR, + ACTIONS(7350), 1, + sym_test_operator, + ACTIONS(6795), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7332), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7334), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7336), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7338), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7340), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7342), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6793), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214863,36 +218575,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [164501] = 13, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7330), 1, anon_sym_AMP, + ACTIONS(7344), 1, + anon_sym_STAR_STAR, + ACTIONS(7350), 1, + sym_test_operator, + ACTIONS(6830), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7334), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7336), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(7338), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7340), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6795), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7342), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - [160129] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1330), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6793), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214905,74 +218627,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [164566] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7344), 1, + anon_sym_STAR_STAR, + ACTIONS(7350), 1, + sym_test_operator, + ACTIONS(6830), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7334), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7336), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(7338), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7340), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7342), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - [160174] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7172), 1, + ACTIONS(6795), 4, anon_sym_EQ, - ACTIONS(7176), 1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(6793), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - ACTIONS(7178), 1, anon_sym_AMP_AMP, - ACTIONS(7180), 1, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [164629] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7402), 1, anon_sym_PIPE, - ACTIONS(7182), 1, + ACTIONS(7404), 1, anon_sym_CARET, - ACTIONS(7184), 1, + ACTIONS(7406), 1, anon_sym_AMP, - ACTIONS(7198), 1, + ACTIONS(7418), 1, anon_sym_STAR_STAR, - ACTIONS(7200), 1, - anon_sym_EQ_TILDE, - ACTIONS(7202), 1, - anon_sym_QMARK, - ACTIONS(7206), 1, - sym_test_operator, - ACTIONS(7364), 1, - anon_sym_COLON, - ACTIONS(6793), 2, + ACTIONS(7510), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7394), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7186), 2, + ACTIONS(7408), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7188), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7190), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7192), 2, + ACTIONS(7412), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7194), 2, + ACTIONS(7414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7196), 3, + ACTIONS(7416), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7174), 11, + ACTIONS(7410), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7508), 17, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214984,31 +218730,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [160253] = 5, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + [164694] = 11, ACTIONS(71), 1, sym_comment, - ACTIONS(7220), 1, + ACTIONS(7344), 1, anon_sym_STAR_STAR, - ACTIONS(6793), 2, + ACTIONS(7350), 1, + sym_test_operator, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6807), 13, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7334), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7336), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7338), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7340), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7342), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 21, - sym_test_operator, - anon_sym_RPAREN_RPAREN, + ACTIONS(6795), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(6793), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215024,16 +218781,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [160302] = 3, + [164755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 1, + ACTIONS(7472), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 36, + ACTIONS(7470), 36, anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -215070,16 +218826,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - [160347] = 3, - ACTIONS(3), 1, + [164800] = 9, + ACTIONS(71), 1, sym_comment, - ACTIONS(1306), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 36, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(7344), 1, + anon_sym_STAR_STAR, + ACTIONS(7350), 1, + sym_test_operator, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7338), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7340), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7342), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6795), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6793), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215092,36 +218866,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [164857] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7344), 1, + anon_sym_STAR_STAR, + ACTIONS(6830), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7340), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7342), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - [160392] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1310), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6795), 8, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6793), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215134,79 +218912,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - [160437] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 1, - sym_file_descriptor, - ACTIONS(7358), 1, - anon_sym_DQUOTE, - ACTIONS(7362), 1, - sym_variable_name, - STATE(4457), 1, - sym_string, - ACTIONS(7360), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7356), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [160492] = 4, + [164910] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(7366), 1, - sym__concat, - ACTIONS(6829), 14, + ACTIONS(7344), 1, + anon_sym_STAR_STAR, + ACTIONS(6830), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7342), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6795), 10, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -215217,13 +218943,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6827), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6793), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215241,15 +218962,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [160539] = 4, + [164961] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7368), 1, - sym__concat, - ACTIONS(6820), 14, + ACTIONS(7344), 1, + anon_sym_STAR_STAR, + ACTIONS(6830), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6795), 13, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -215263,10 +218987,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6818), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6793), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215284,18 +219006,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [160586] = 5, + [165010] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7220), 1, + ACTIONS(7344), 1, anon_sym_STAR_STAR, - ACTIONS(6793), 2, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6807), 13, + ACTIONS(6795), 13, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -215309,9 +219031,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 21, + ACTIONS(6793), 21, sym_test_operator, - anon_sym_RPAREN_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215329,31 +219050,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [160635] = 4, - ACTIONS(71), 1, + [165059] = 12, + ACTIONS(3), 1, sym_comment, - ACTIONS(7370), 1, - anon_sym_EQ, - ACTIONS(7088), 13, - anon_sym_PIPE, + ACTIONS(7404), 1, anon_sym_CARET, + ACTIONS(7406), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7418), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7394), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7408), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7412), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7414), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7416), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7092), 23, + ACTIONS(7410), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7508), 18, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215369,123 +219103,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASHo, anon_sym_AMP_AMP, anon_sym_DASHa, + anon_sym_PIPE, + [165122] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7406), 1, + anon_sym_AMP, + ACTIONS(7418), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7394), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7408), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7412), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7414), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7416), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7410), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [160682] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6474), 1, - sym_word, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, - anon_sym_DOLLAR, - ACTIONS(6494), 1, - aux_sym_number_token1, - ACTIONS(6496), 1, - aux_sym_number_token2, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, - sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, - sym__brace_start, - ACTIONS(7226), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, - sym__special_character, - ACTIONS(7230), 1, - anon_sym_DQUOTE, - ACTIONS(7234), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, - anon_sym_BQUOTE, - ACTIONS(7238), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7372), 1, - anon_sym_esac, - STATE(6426), 1, - aux_sym__literal_repeat1, - STATE(6942), 1, - sym_last_case_item, - ACTIONS(7224), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7240), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3407), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6303), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [160771] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7220), 1, - anon_sym_STAR_STAR, - ACTIONS(7222), 1, - sym_test_operator, - ACTIONS(7374), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(7376), 1, - anon_sym_EQ, - ACTIONS(7380), 1, + ACTIONS(7508), 19, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - ACTIONS(7382), 1, + anon_sym_DASHo, anon_sym_AMP_AMP, - ACTIONS(7384), 1, + anon_sym_DASHa, anon_sym_PIPE, - ACTIONS(7386), 1, anon_sym_CARET, - ACTIONS(7388), 1, - anon_sym_AMP, - ACTIONS(7390), 1, - anon_sym_EQ_TILDE, - ACTIONS(7392), 1, - anon_sym_QMARK, - ACTIONS(6793), 2, + [165183] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7418), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7394), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7208), 2, + ACTIONS(7408), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7210), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7212), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7214), 2, + ACTIONS(7412), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7216), 2, + ACTIONS(7414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7218), 3, + ACTIONS(7416), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7378), 11, + ACTIONS(7410), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7508), 20, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215497,46 +219196,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [160850] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6807), 1, - anon_sym_EQ, - ACTIONS(7322), 1, - anon_sym_STAR_STAR, - ACTIONS(7326), 1, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - ACTIONS(7328), 1, + anon_sym_DASHa, anon_sym_PIPE, - ACTIONS(7330), 1, anon_sym_CARET, - ACTIONS(7332), 1, anon_sym_AMP, - ACTIONS(7342), 1, - sym_test_operator, - ACTIONS(6793), 2, + [165242] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7276), 1, + anon_sym_STAR_STAR, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7316), 2, + ACTIONS(7270), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7318), 2, + ACTIONS(7272), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7334), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7336), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7338), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7320), 3, + ACTIONS(7274), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 15, + ACTIONS(6828), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6826), 21, + sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215549,15 +219243,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [160921] = 4, + [165297] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7394), 1, - anon_sym_LBRACK, - ACTIONS(6600), 14, + ACTIONS(7518), 1, + sym__concat, + ACTIONS(6837), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -215572,7 +219270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6598), 22, + ACTIONS(6835), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -215595,44 +219293,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [160968] = 14, - ACTIONS(3), 1, + [165344] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(7256), 1, + ACTIONS(7520), 1, + sym__concat, + ACTIONS(6819), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(7258), 1, anon_sym_CARET, - ACTIONS(7260), 1, anon_sym_AMP, - ACTIONS(7272), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7274), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7250), 2, + ACTIONS(6817), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7254), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_DASHa, - ACTIONS(7262), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7266), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [165391] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7418), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7394), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7412), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7268), 2, + ACTIONS(7414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7270), 3, + ACTIONS(7416), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7264), 4, + ACTIONS(7410), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7248), 15, + ACTIONS(7508), 22, anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_EQ, @@ -215648,54 +219377,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_DASHo, - [161035] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7172), 1, - anon_sym_EQ, - ACTIONS(7176), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7178), 1, anon_sym_AMP_AMP, - ACTIONS(7180), 1, + anon_sym_DASHa, anon_sym_PIPE, - ACTIONS(7182), 1, anon_sym_CARET, - ACTIONS(7184), 1, anon_sym_AMP, - ACTIONS(7198), 1, - anon_sym_STAR_STAR, - ACTIONS(7200), 1, - anon_sym_EQ_TILDE, - ACTIONS(7202), 1, - anon_sym_QMARK, - ACTIONS(7206), 1, - sym_test_operator, - ACTIONS(7396), 1, - anon_sym_COLON, - ACTIONS(6793), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [165448] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7524), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7394), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7186), 2, + ACTIONS(7522), 34, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7188), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7190), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7192), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7194), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7196), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7174), 11, + anon_sym_STAR_STAR, + [165495] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7526), 1, + anon_sym_LBRACK, + ACTIONS(6632), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6630), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215707,96 +219461,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [161114] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6474), 1, - sym_word, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, - anon_sym_DOLLAR, - ACTIONS(6494), 1, - aux_sym_number_token1, - ACTIONS(6496), 1, - aux_sym_number_token2, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, - sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, - sym__brace_start, - ACTIONS(6580), 1, - anon_sym_esac, - ACTIONS(7226), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, - sym__special_character, - ACTIONS(7230), 1, - anon_sym_DQUOTE, - ACTIONS(7234), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, - anon_sym_BQUOTE, - ACTIONS(7238), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6426), 1, - aux_sym__literal_repeat1, - STATE(6824), 1, - sym_last_case_item, - ACTIONS(7224), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7240), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3378), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6303), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [161203] = 7, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [165542] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(7220), 1, + ACTIONS(7276), 1, anon_sym_STAR_STAR, - ACTIONS(6793), 2, + ACTIONS(7278), 1, + sym_test_operator, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7216), 2, + ACTIONS(7270), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7272), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7218), 3, + ACTIONS(7274), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6807), 8, + ACTIONS(6828), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6805), 21, - sym_test_operator, + ACTIONS(6826), 20, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -215817,54 +219518,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [161256] = 20, + [165599] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7322), 1, - anon_sym_STAR_STAR, - ACTIONS(7324), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7326), 1, - anon_sym_AMP_AMP, - ACTIONS(7328), 1, + ACTIONS(7528), 1, + anon_sym_EQ, + ACTIONS(7164), 13, anon_sym_PIPE, - ACTIONS(7330), 1, anon_sym_CARET, - ACTIONS(7332), 1, anon_sym_AMP, - ACTIONS(7340), 1, - anon_sym_QMARK, - ACTIONS(7342), 1, - sym_test_operator, - ACTIONS(7346), 1, - anon_sym_EQ_TILDE, - ACTIONS(7374), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(7398), 1, - anon_sym_EQ, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7316), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7318), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7334), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7336), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7338), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7320), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7400), 11, + anon_sym_STAR_STAR, + ACTIONS(7168), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215876,34 +219552,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [161335] = 9, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [165646] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7322), 1, - anon_sym_STAR_STAR, - ACTIONS(7342), 1, - sym_test_operator, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7316), 2, + ACTIONS(6848), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7318), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7320), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6791), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6789), 20, + anon_sym_STAR_STAR, + ACTIONS(6846), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215921,57 +219600,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [161392] = 20, + [165691] = 17, ACTIONS(71), 1, sym_comment, - ACTIONS(7402), 1, + ACTIONS(7024), 1, anon_sym_EQ, - ACTIONS(7408), 1, + ACTIONS(7322), 1, anon_sym_PIPE_PIPE, - ACTIONS(7410), 1, + ACTIONS(7324), 1, anon_sym_AMP_AMP, - ACTIONS(7412), 1, + ACTIONS(7326), 1, anon_sym_PIPE, - ACTIONS(7414), 1, + ACTIONS(7328), 1, anon_sym_CARET, - ACTIONS(7416), 1, + ACTIONS(7330), 1, anon_sym_AMP, - ACTIONS(7430), 1, + ACTIONS(7344), 1, anon_sym_STAR_STAR, - ACTIONS(7432), 1, - anon_sym_RPAREN, - ACTIONS(7434), 1, - anon_sym_EQ_TILDE, - ACTIONS(7436), 1, - anon_sym_QMARK, - ACTIONS(7438), 1, + ACTIONS(7350), 1, sym_test_operator, - ACTIONS(7404), 2, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7418), 2, + ACTIONS(7332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7420), 2, + ACTIONS(7334), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7422), 2, + ACTIONS(7336), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7424), 2, + ACTIONS(7338), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7426), 2, + ACTIONS(7340), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7428), 3, + ACTIONS(7342), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7406), 11, + ACTIONS(7026), 14, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215983,33 +219656,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [161471] = 8, - ACTIONS(71), 1, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [165764] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(7322), 1, + ACTIONS(7418), 1, anon_sym_STAR_STAR, - ACTIONS(6793), 2, + ACTIONS(7510), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7394), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7316), 2, + ACTIONS(7412), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7318), 2, + ACTIONS(7414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7320), 3, + ACTIONS(7416), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6791), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6789), 21, - sym_test_operator, + ACTIONS(7508), 26, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216022,71 +219694,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [161526] = 8, + [165819] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1235), 1, - sym_file_descriptor, - ACTIONS(3791), 1, - anon_sym_DQUOTE, - ACTIONS(7444), 1, - sym_variable_name, - STATE(4389), 1, - sym_string, - ACTIONS(7442), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7440), 9, + ACTIONS(7418), 1, + anon_sym_STAR_STAR, + ACTIONS(7510), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7394), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7414), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7416), 3, anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [161581] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 36, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7508), 28, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216113,41 +219752,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - [161626] = 9, - ACTIONS(71), 1, + [165872] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(7220), 1, + ACTIONS(7418), 1, anon_sym_STAR_STAR, - ACTIONS(7222), 1, - sym_test_operator, - ACTIONS(6793), 2, + ACTIONS(7510), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7394), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7216), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7218), 3, + ACTIONS(7416), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6807), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6805), 20, - anon_sym_RPAREN_RPAREN, + ACTIONS(7508), 30, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216160,87 +219781,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [161683] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1241), 1, - sym_file_descriptor, - ACTIONS(3791), 1, - anon_sym_DQUOTE, - ACTIONS(7444), 1, - sym_variable_name, - STATE(4389), 1, - sym_string, - ACTIONS(7442), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7440), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [161738] = 8, - ACTIONS(71), 1, + anon_sym_PLUS, + anon_sym_DASH, + [165923] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(7322), 1, + ACTIONS(7418), 1, anon_sym_STAR_STAR, - ACTIONS(6793), 2, + ACTIONS(7510), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7394), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7316), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7318), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7320), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6791), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6789), 21, - sym_test_operator, + ACTIONS(7508), 33, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216253,24 +219822,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [161793] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6864), 14, - anon_sym_EQ, + anon_sym_DASHa, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -216278,11 +219841,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + [165972] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7418), 1, anon_sym_STAR_STAR, - ACTIONS(6862), 23, - sym_test_operator, + ACTIONS(7510), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7394), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7508), 33, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216295,56 +219866,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [161838] = 17, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7123), 1, - anon_sym_EQ, - ACTIONS(7322), 1, - anon_sym_STAR_STAR, - ACTIONS(7324), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7326), 1, - anon_sym_AMP_AMP, - ACTIONS(7328), 1, + anon_sym_DASHa, anon_sym_PIPE, - ACTIONS(7330), 1, anon_sym_CARET, - ACTIONS(7332), 1, anon_sym_AMP, - ACTIONS(7342), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [166021] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7238), 1, + anon_sym_STAR_STAR, + ACTIONS(7240), 1, sym_test_operator, - ACTIONS(6793), 2, + ACTIONS(7218), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7316), 2, + ACTIONS(7232), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7318), 2, + ACTIONS(7234), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7334), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7336), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7338), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7320), 3, + ACTIONS(7236), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7125), 14, + ACTIONS(6828), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6826), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216356,42 +219924,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [161911] = 11, + [166078] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(7220), 1, + ACTIONS(7238), 1, anon_sym_STAR_STAR, - ACTIONS(7222), 1, - sym_test_operator, - ACTIONS(6793), 2, + ACTIONS(7218), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7210), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7212), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7214), 2, + ACTIONS(7232), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7216), 2, + ACTIONS(7234), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7218), 3, + ACTIONS(7236), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6807), 4, + ACTIONS(6828), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(6805), 18, - anon_sym_RPAREN_RPAREN, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6826), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216407,56 +219975,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [161972] = 20, + [166133] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7280), 1, + ACTIONS(7250), 1, + anon_sym_STAR_STAR, + ACTIONS(7252), 1, + sym_test_operator, + ACTIONS(7254), 1, anon_sym_PIPE_PIPE, - ACTIONS(7282), 1, + ACTIONS(7256), 1, anon_sym_AMP_AMP, - ACTIONS(7284), 1, + ACTIONS(7258), 1, anon_sym_PIPE, - ACTIONS(7286), 1, + ACTIONS(7260), 1, anon_sym_CARET, - ACTIONS(7288), 1, + ACTIONS(7262), 1, anon_sym_AMP, - ACTIONS(7302), 1, - anon_sym_STAR_STAR, - ACTIONS(7304), 1, - sym_test_operator, - ACTIONS(7310), 1, + ACTIONS(7352), 1, anon_sym_EQ, - ACTIONS(7312), 1, + ACTIONS(7358), 1, anon_sym_EQ_TILDE, - ACTIONS(7314), 1, + ACTIONS(7360), 1, anon_sym_QMARK, - ACTIONS(7374), 1, - anon_sym_RBRACK, - ACTIONS(7278), 2, + ACTIONS(7530), 1, + anon_sym_RPAREN, + ACTIONS(7242), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7290), 2, + ACTIONS(7244), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7264), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7292), 2, + ACTIONS(7266), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7294), 2, + ACTIONS(7268), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7296), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7298), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7300), 3, + ACTIONS(7248), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7446), 11, + ACTIONS(7354), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216468,10 +220039,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [162051] = 3, + [166212] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6476), 1, + sym_word, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6490), 1, + anon_sym_DOLLAR, + ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, + aux_sym_number_token2, + ACTIONS(6502), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6510), 1, + sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(7200), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7202), 1, + sym__special_character, + ACTIONS(7204), 1, + anon_sym_DQUOTE, + ACTIONS(7208), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7210), 1, + anon_sym_BQUOTE, + ACTIONS(7212), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7532), 1, + anon_sym_esac, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(7214), 1, + sym_last_case_item, + ACTIONS(7196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7206), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7214), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3452), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [166301] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1273), 14, + ACTIONS(7218), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6828), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -216486,10 +220124,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1369), 23, + ACTIONS(6826), 21, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216507,35 +220143,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [162096] = 8, + [166348] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(7198), 1, + ACTIONS(7238), 1, anon_sym_STAR_STAR, - ACTIONS(6793), 2, + ACTIONS(7218), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7192), 2, + ACTIONS(7232), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7194), 2, + ACTIONS(7234), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7196), 3, + ACTIONS(7236), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6807), 6, + ACTIONS(6828), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6805), 21, + ACTIONS(6826), 21, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -216554,57 +220190,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [162151] = 3, + [166403] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1261), 12, + ACTIONS(6813), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1263), 25, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6811), 23, sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [162196] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [166448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7450), 1, + ACTIONS(7536), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(7448), 36, + ACTIONS(7534), 36, anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -216641,61 +220277,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - [162241] = 25, + [166493] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(6474), 1, + ACTIONS(6476), 1, sym_word, - ACTIONS(6480), 1, + ACTIONS(6482), 1, anon_sym_LPAREN, - ACTIONS(6488), 1, + ACTIONS(6490), 1, anon_sym_DOLLAR, - ACTIONS(6494), 1, - aux_sym_number_token1, ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, aux_sym_number_token2, - ACTIONS(6500), 1, + ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, - sym_test_operator, ACTIONS(6510), 1, - sym_extglob_pattern, + sym_test_operator, ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, sym__brace_start, - ACTIONS(6551), 1, - anon_sym_esac, - ACTIONS(7226), 1, + ACTIONS(7200), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, + ACTIONS(7202), 1, sym__special_character, - ACTIONS(7230), 1, + ACTIONS(7204), 1, anon_sym_DQUOTE, - ACTIONS(7234), 1, + ACTIONS(7208), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, + ACTIONS(7210), 1, anon_sym_BQUOTE, - ACTIONS(7238), 1, + ACTIONS(7212), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6426), 1, + ACTIONS(7538), 1, + anon_sym_esac, + STATE(6459), 1, aux_sym__literal_repeat1, - STATE(7007), 1, + STATE(7398), 1, sym_last_case_item, - ACTIONS(7224), 2, + ACTIONS(7196), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, + ACTIONS(7206), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7240), 2, + ACTIONS(7214), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3386), 2, + STATE(3403), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6695), 2, + STATE(6638), 2, sym_concatenation, sym__extglob_blob, - STATE(6303), 9, + STATE(6312), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -216705,10 +220341,57 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [162330] = 3, + [166582] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1235), 1, + sym_file_descriptor, + ACTIONS(3630), 1, + anon_sym_DQUOTE, + ACTIONS(7194), 1, + sym_variable_name, + STATE(4297), 1, + sym_string, + ACTIONS(7192), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7190), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [166637] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6864), 14, + ACTIONS(6795), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -216723,7 +220406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6862), 23, + ACTIONS(6793), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -216747,43 +220430,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [162375] = 13, + [166682] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1241), 1, + sym_file_descriptor, + ACTIONS(3630), 1, + anon_sym_DQUOTE, + ACTIONS(7194), 1, + sym_variable_name, + STATE(4297), 1, + sym_string, + ACTIONS(7192), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7190), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [166737] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(7220), 1, + ACTIONS(7344), 1, anon_sym_STAR_STAR, - ACTIONS(7222), 1, + ACTIONS(7350), 1, sym_test_operator, - ACTIONS(7388), 1, - anon_sym_AMP, - ACTIONS(6793), 2, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7208), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7210), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7212), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7214), 2, + ACTIONS(7338), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7216), 2, + ACTIONS(7340), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6807), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(7218), 3, + ACTIONS(7342), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 16, - anon_sym_RPAREN_RPAREN, + ACTIONS(6828), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6826), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216797,51 +220518,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [162440] = 17, + [166794] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7123), 1, - anon_sym_EQ, - ACTIONS(7220), 1, + ACTIONS(7250), 1, anon_sym_STAR_STAR, - ACTIONS(7222), 1, + ACTIONS(7252), 1, sym_test_operator, - ACTIONS(7380), 1, + ACTIONS(7254), 1, anon_sym_PIPE_PIPE, - ACTIONS(7382), 1, + ACTIONS(7256), 1, anon_sym_AMP_AMP, - ACTIONS(7384), 1, + ACTIONS(7258), 1, anon_sym_PIPE, - ACTIONS(7386), 1, + ACTIONS(7260), 1, anon_sym_CARET, - ACTIONS(7388), 1, + ACTIONS(7262), 1, anon_sym_AMP, - ACTIONS(6793), 2, + ACTIONS(7352), 1, + anon_sym_EQ, + ACTIONS(7358), 1, + anon_sym_EQ_TILDE, + ACTIONS(7360), 1, + anon_sym_QMARK, + ACTIONS(7540), 1, + anon_sym_RPAREN, + ACTIONS(7242), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7208), 2, + ACTIONS(7244), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7264), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7210), 2, + ACTIONS(7266), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7212), 2, + ACTIONS(7268), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7216), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7218), 3, + ACTIONS(7248), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7125), 14, - anon_sym_RPAREN_RPAREN, + ACTIONS(7354), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216853,46 +220584,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [162513] = 14, - ACTIONS(71), 1, + [166873] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7220), 1, - anon_sym_STAR_STAR, - ACTIONS(7222), 1, - sym_test_operator, - ACTIONS(7386), 1, - anon_sym_CARET, - ACTIONS(7388), 1, - anon_sym_AMP, - ACTIONS(6793), 2, + ACTIONS(7544), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7542), 36, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6807), 2, - anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_PIPE, - ACTIONS(7208), 2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7210), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7212), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7218), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 16, - anon_sym_RPAREN_RPAREN, + anon_sym_STAR_STAR, + [166918] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7250), 1, + anon_sym_STAR_STAR, + ACTIONS(7242), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7244), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7248), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6828), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6826), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216906,47 +220666,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [162580] = 15, + [166973] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(6807), 1, - anon_sym_EQ, - ACTIONS(7220), 1, + ACTIONS(7344), 1, anon_sym_STAR_STAR, - ACTIONS(7222), 1, - sym_test_operator, - ACTIONS(7384), 1, + ACTIONS(6830), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7338), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7340), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7342), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6828), 6, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(7386), 1, anon_sym_CARET, - ACTIONS(7388), 1, anon_sym_AMP, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7208), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7210), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7212), 2, + ACTIONS(6826), 21, + sym_test_operator, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7214), 2, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [167028] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7186), 1, + anon_sym_STAR_STAR, + ACTIONS(6830), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7180), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7216), 2, + ACTIONS(7182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7218), 3, + ACTIONS(7184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 16, - anon_sym_RPAREN_RPAREN, + ACTIONS(6795), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6793), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216960,49 +220760,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [162649] = 16, + anon_sym_COLON, + [167083] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(6807), 1, + ACTIONS(6795), 1, anon_sym_EQ, - ACTIONS(7220), 1, + ACTIONS(7172), 1, + anon_sym_AMP, + ACTIONS(7186), 1, anon_sym_STAR_STAR, - ACTIONS(7222), 1, + ACTIONS(7188), 1, sym_test_operator, - ACTIONS(7382), 1, + ACTIONS(7366), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7368), 1, anon_sym_AMP_AMP, - ACTIONS(7384), 1, + ACTIONS(7370), 1, anon_sym_PIPE, - ACTIONS(7386), 1, + ACTIONS(7372), 1, anon_sym_CARET, - ACTIONS(7388), 1, - anon_sym_AMP, - ACTIONS(6793), 2, + ACTIONS(7376), 1, + anon_sym_QMARK, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7208), 2, + ACTIONS(7174), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7210), 2, + ACTIONS(7176), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7212), 2, + ACTIONS(7178), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7214), 2, + ACTIONS(7180), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7216), 2, + ACTIONS(7182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7218), 3, + ACTIONS(7184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 15, - anon_sym_RPAREN_RPAREN, + ACTIONS(6793), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217014,56 +220822,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, anon_sym_EQ_TILDE, - anon_sym_QMARK, - [162720] = 19, + anon_sym_COLON, + [167158] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7220), 1, + ACTIONS(7172), 1, + anon_sym_AMP, + ACTIONS(7186), 1, anon_sym_STAR_STAR, - ACTIONS(7222), 1, + ACTIONS(7188), 1, sym_test_operator, - ACTIONS(7376), 1, + ACTIONS(7362), 1, anon_sym_EQ, - ACTIONS(7380), 1, + ACTIONS(7366), 1, anon_sym_PIPE_PIPE, - ACTIONS(7382), 1, + ACTIONS(7368), 1, anon_sym_AMP_AMP, - ACTIONS(7384), 1, + ACTIONS(7370), 1, anon_sym_PIPE, - ACTIONS(7386), 1, + ACTIONS(7372), 1, anon_sym_CARET, - ACTIONS(7388), 1, - anon_sym_AMP, - ACTIONS(7390), 1, + ACTIONS(7374), 1, anon_sym_EQ_TILDE, - ACTIONS(7392), 1, + ACTIONS(7376), 1, anon_sym_QMARK, - ACTIONS(6793), 2, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7208), 2, + ACTIONS(7174), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7210), 2, + ACTIONS(7176), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7212), 2, + ACTIONS(7178), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7214), 2, + ACTIONS(7180), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7216), 2, + ACTIONS(7182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7218), 3, + ACTIONS(7184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 12, - anon_sym_RPAREN_RPAREN, + ACTIONS(6793), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217075,159 +220881,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [162797] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7452), 1, - sym__special_character, - STATE(3065), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1364), 23, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [162846] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6474), 1, - sym_word, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, - anon_sym_DOLLAR, - ACTIONS(6494), 1, - aux_sym_number_token1, - ACTIONS(6496), 1, - aux_sym_number_token2, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, - sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, - sym__brace_start, - ACTIONS(7226), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, - sym__special_character, - ACTIONS(7230), 1, - anon_sym_DQUOTE, - ACTIONS(7234), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, - anon_sym_BQUOTE, - ACTIONS(7238), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7455), 1, - anon_sym_esac, - STATE(6426), 1, - aux_sym__literal_repeat1, - STATE(7013), 1, - sym_last_case_item, - ACTIONS(7224), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7240), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3388), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6303), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [162935] = 18, + anon_sym_COLON, + [167235] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(6807), 1, + ACTIONS(6795), 1, anon_sym_EQ, - ACTIONS(7220), 1, + ACTIONS(7172), 1, + anon_sym_AMP, + ACTIONS(7186), 1, anon_sym_STAR_STAR, - ACTIONS(7222), 1, + ACTIONS(7188), 1, sym_test_operator, - ACTIONS(7380), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7382), 1, + ACTIONS(7368), 1, anon_sym_AMP_AMP, - ACTIONS(7384), 1, + ACTIONS(7370), 1, anon_sym_PIPE, - ACTIONS(7386), 1, + ACTIONS(7372), 1, anon_sym_CARET, - ACTIONS(7388), 1, - anon_sym_AMP, - ACTIONS(7392), 1, - anon_sym_QMARK, - ACTIONS(6793), 2, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7208), 2, + ACTIONS(7174), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7210), 2, + ACTIONS(7176), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7212), 2, + ACTIONS(7178), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7214), 2, + ACTIONS(7180), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7216), 2, + ACTIONS(7182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7218), 3, + ACTIONS(7184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 13, - anon_sym_RPAREN_RPAREN, + ACTIONS(6793), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217239,35 +220933,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, anon_sym_EQ_TILDE, - [163010] = 8, + anon_sym_QMARK, + anon_sym_COLON, + [167306] = 15, ACTIONS(71), 1, sym_comment, - ACTIONS(7220), 1, + ACTIONS(6795), 1, + anon_sym_EQ, + ACTIONS(7172), 1, + anon_sym_AMP, + ACTIONS(7186), 1, anon_sym_STAR_STAR, - ACTIONS(6793), 2, + ACTIONS(7188), 1, + sym_test_operator, + ACTIONS(7370), 1, + anon_sym_PIPE, + ACTIONS(7372), 1, + anon_sym_CARET, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7214), 2, + ACTIONS(7174), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7176), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7178), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7180), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7216), 2, + ACTIONS(7182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7218), 3, + ACTIONS(7184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6807), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6805), 21, - sym_test_operator, - anon_sym_RPAREN_RPAREN, + ACTIONS(6793), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217281,35 +220988,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [163065] = 4, + anon_sym_COLON, + [167375] = 14, ACTIONS(71), 1, sym_comment, - ACTIONS(7457), 1, - sym__concat, - ACTIONS(6820), 14, + ACTIONS(7172), 1, + anon_sym_AMP, + ACTIONS(7186), 1, + anon_sym_STAR_STAR, + ACTIONS(7188), 1, + sym_test_operator, + ACTIONS(7372), 1, + anon_sym_CARET, + ACTIONS(6795), 2, anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(6830), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7174), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7176), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7178), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7180), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7182), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6818), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6793), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217323,81 +221041,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [163112] = 25, - ACTIONS(71), 1, + anon_sym_COLON, + [167442] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6474), 1, - sym_word, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, - anon_sym_DOLLAR, - ACTIONS(6494), 1, - aux_sym_number_token1, - ACTIONS(6496), 1, - aux_sym_number_token2, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, + ACTIONS(7466), 1, + aux_sym_concatenation_token1, + ACTIONS(7546), 1, + sym__concat, + STATE(3149), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 4, + sym_file_descriptor, sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, sym__brace_start, - ACTIONS(7226), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1266), 30, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(7230), 1, anon_sym_DQUOTE, - ACTIONS(7234), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - ACTIONS(7238), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7459), 1, - anon_sym_esac, - STATE(6426), 1, - aux_sym__literal_repeat1, - STATE(7016), 1, - sym_last_case_item, - ACTIONS(7224), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7240), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3389), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6303), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [163201] = 3, + sym_word, + [167493] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1273), 14, + ACTIONS(6852), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -217412,7 +221107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1369), 23, + ACTIONS(6850), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -217436,29 +221131,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [163246] = 4, + [167538] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(7461), 1, - sym__concat, - ACTIONS(6829), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7186), 1, + anon_sym_STAR_STAR, + ACTIONS(7188), 1, + sym_test_operator, + ACTIONS(6830), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7174), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7176), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7178), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7180), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7182), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6827), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6795), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(6793), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217472,125 +221179,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [163293] = 20, + anon_sym_COLON, + [167601] = 11, ACTIONS(71), 1, sym_comment, - ACTIONS(7220), 1, + ACTIONS(7186), 1, anon_sym_STAR_STAR, - ACTIONS(7222), 1, + ACTIONS(7188), 1, sym_test_operator, - ACTIONS(7376), 1, - anon_sym_EQ, - ACTIONS(7380), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7382), 1, - anon_sym_AMP_AMP, - ACTIONS(7384), 1, - anon_sym_PIPE, - ACTIONS(7386), 1, - anon_sym_CARET, - ACTIONS(7388), 1, - anon_sym_AMP, - ACTIONS(7390), 1, - anon_sym_EQ_TILDE, - ACTIONS(7392), 1, - anon_sym_QMARK, - ACTIONS(7463), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6793), 2, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7208), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7210), 2, + ACTIONS(7176), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7212), 2, + ACTIONS(7178), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7214), 2, + ACTIONS(7180), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7216), 2, + ACTIONS(7182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7218), 3, + ACTIONS(7184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7378), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [163372] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7467), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7465), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(6795), 4, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - [163417] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7471), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7250), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7469), 34, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(6793), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217603,92 +221226,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - [163464] = 3, - ACTIONS(3), 1, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [167662] = 9, + ACTIONS(71), 1, sym_comment, - ACTIONS(1354), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 36, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(7186), 1, + anon_sym_STAR_STAR, + ACTIONS(7188), 1, + sym_test_operator, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(7180), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7182), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - [163509] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7430), 1, - anon_sym_STAR_STAR, - ACTIONS(7404), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6807), 13, + ACTIONS(6795), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6805), 21, - sym_test_operator, + ACTIONS(6793), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217706,32 +221277,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [163558] = 5, + anon_sym_COLON, + [167719] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(7430), 1, + ACTIONS(7344), 1, anon_sym_STAR_STAR, - ACTIONS(7404), 2, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6807), 13, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7338), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7340), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7342), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 21, + ACTIONS(6828), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6826), 21, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -217750,22 +221324,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [163607] = 6, + [167774] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(7430), 1, + ACTIONS(7186), 1, anon_sym_STAR_STAR, - ACTIONS(7404), 2, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7428), 3, + ACTIONS(7182), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6807), 10, + ACTIONS(6795), 8, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -217774,9 +221351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6805), 21, + ACTIONS(6793), 21, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -217795,25 +221370,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [163658] = 7, + anon_sym_COLON, + [167827] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(7430), 1, + ACTIONS(7186), 1, anon_sym_STAR_STAR, - ACTIONS(7404), 2, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7426), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7428), 3, + ACTIONS(7184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6807), 8, + ACTIONS(6795), 10, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -217822,7 +221394,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6805), 21, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6793), 21, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -217841,37 +221415,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [163711] = 9, - ACTIONS(71), 1, + anon_sym_COLON, + [167878] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7430), 1, - anon_sym_STAR_STAR, - ACTIONS(7438), 1, - sym_test_operator, - ACTIONS(7404), 2, + ACTIONS(7550), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7548), 36, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7424), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7426), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7428), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6807), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6805), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217884,46 +221440,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [163768] = 11, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7430), 1, - anon_sym_STAR_STAR, - ACTIONS(7438), 1, - sym_test_operator, - ACTIONS(7404), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7420), 2, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(7422), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7424), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7426), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7428), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6807), 4, + anon_sym_STAR_STAR, + [167923] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7186), 1, + anon_sym_STAR_STAR, + ACTIONS(6830), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6795), 13, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(6805), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6793), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217939,44 +221499,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_RPAREN, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [163829] = 12, + anon_sym_COLON, + [167972] = 17, ACTIONS(71), 1, sym_comment, - ACTIONS(7430), 1, + ACTIONS(7024), 1, + anon_sym_EQ, + ACTIONS(7276), 1, anon_sym_STAR_STAR, - ACTIONS(7438), 1, + ACTIONS(7278), 1, sym_test_operator, - ACTIONS(7404), 2, + ACTIONS(7286), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP_AMP, + ACTIONS(7290), 1, + anon_sym_PIPE, + ACTIONS(7292), 1, + anon_sym_CARET, + ACTIONS(7294), 1, + anon_sym_AMP, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7418), 2, + ACTIONS(7270), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7272), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7296), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7420), 2, + ACTIONS(7298), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7422), 2, + ACTIONS(7300), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7424), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7426), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7428), 3, + ACTIONS(7274), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6807), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6805), 16, + ACTIONS(7026), 14, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217988,47 +221558,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [163892] = 13, + [168045] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7416), 1, - anon_sym_AMP, - ACTIONS(7430), 1, + ACTIONS(7186), 1, anon_sym_STAR_STAR, - ACTIONS(7438), 1, - sym_test_operator, - ACTIONS(7404), 2, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7418), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7420), 2, + ACTIONS(6795), 13, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(7422), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7424), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7426), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6807), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(7428), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 16, + ACTIONS(6793), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218042,57 +221597,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [163957] = 20, - ACTIONS(71), 1, + anon_sym_COLON, + [168094] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(7280), 1, + ACTIONS(7466), 1, + aux_sym_concatenation_token1, + ACTIONS(7552), 1, + sym__concat, + STATE(3149), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1286), 30, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(7282), 1, anon_sym_AMP_AMP, - ACTIONS(7284), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [168145] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7554), 1, + sym__special_character, + STATE(3147), 1, + aux_sym__literal_repeat1, + ACTIONS(1360), 12, anon_sym_PIPE, - ACTIONS(7286), 1, - anon_sym_CARET, - ACTIONS(7288), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1362), 23, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [168194] = 17, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7024), 1, + anon_sym_EQ, + ACTIONS(7172), 1, anon_sym_AMP, - ACTIONS(7302), 1, + ACTIONS(7186), 1, anon_sym_STAR_STAR, - ACTIONS(7304), 1, + ACTIONS(7188), 1, sym_test_operator, - ACTIONS(7310), 1, - anon_sym_EQ, - ACTIONS(7312), 1, - anon_sym_EQ_TILDE, - ACTIONS(7314), 1, - anon_sym_QMARK, - ACTIONS(7463), 1, - anon_sym_RBRACK, - ACTIONS(7278), 2, + ACTIONS(7366), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7368), 1, + anon_sym_AMP_AMP, + ACTIONS(7370), 1, + anon_sym_PIPE, + ACTIONS(7372), 1, + anon_sym_CARET, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7290), 2, + ACTIONS(7174), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7292), 2, + ACTIONS(7176), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7294), 2, + ACTIONS(7178), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7296), 2, + ACTIONS(7180), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7298), 2, + ACTIONS(7182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7300), 3, + ACTIONS(7184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7446), 11, + ACTIONS(7026), 14, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218104,43 +221746,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [164036] = 14, - ACTIONS(71), 1, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [168267] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(7414), 1, - anon_sym_CARET, - ACTIONS(7416), 1, - anon_sym_AMP, - ACTIONS(7430), 1, - anon_sym_STAR_STAR, - ACTIONS(7438), 1, + ACTIONS(7557), 1, + aux_sym_concatenation_token1, + ACTIONS(7560), 1, + sym__concat, + STATE(3149), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 4, + sym_file_descriptor, sym_test_operator, - ACTIONS(6807), 2, - anon_sym_EQ, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1276), 30, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [168318] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1272), 13, anon_sym_PIPE, - ACTIONS(7404), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7418), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7420), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7422), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7424), 2, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1274), 24, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [168363] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7276), 1, + anon_sym_STAR_STAR, + ACTIONS(6830), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7270), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7426), 2, + ACTIONS(7272), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7428), 3, + ACTIONS(7274), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 16, + ACTIONS(6795), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6793), 21, + sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218154,57 +221877,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [164103] = 20, + [168418] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(7322), 1, + ACTIONS(6795), 1, + anon_sym_EQ, + ACTIONS(7276), 1, anon_sym_STAR_STAR, - ACTIONS(7324), 1, + ACTIONS(7278), 1, + sym_test_operator, + ACTIONS(7286), 1, anon_sym_PIPE_PIPE, - ACTIONS(7326), 1, + ACTIONS(7288), 1, anon_sym_AMP_AMP, - ACTIONS(7328), 1, + ACTIONS(7290), 1, anon_sym_PIPE, - ACTIONS(7330), 1, + ACTIONS(7292), 1, anon_sym_CARET, - ACTIONS(7332), 1, + ACTIONS(7294), 1, anon_sym_AMP, - ACTIONS(7340), 1, + ACTIONS(7304), 1, anon_sym_QMARK, - ACTIONS(7342), 1, - sym_test_operator, - ACTIONS(7346), 1, - anon_sym_EQ_TILDE, - ACTIONS(7398), 1, - anon_sym_EQ, - ACTIONS(7463), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(6793), 2, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7316), 2, + ACTIONS(7270), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7318), 2, + ACTIONS(7272), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7334), 2, + ACTIONS(7296), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7336), 2, + ACTIONS(7298), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7338), 2, + ACTIONS(7300), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7320), 3, + ACTIONS(7274), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7400), 11, + ACTIONS(6793), 13, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218216,44 +221939,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [164182] = 15, + anon_sym_EQ_TILDE, + [168493] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6807), 1, - anon_sym_EQ, - ACTIONS(7412), 1, - anon_sym_PIPE, - ACTIONS(7414), 1, - anon_sym_CARET, - ACTIONS(7416), 1, + ACTIONS(7172), 1, anon_sym_AMP, - ACTIONS(7430), 1, + ACTIONS(7186), 1, anon_sym_STAR_STAR, - ACTIONS(7438), 1, + ACTIONS(7188), 1, sym_test_operator, - ACTIONS(7404), 2, + ACTIONS(7362), 1, + anon_sym_EQ, + ACTIONS(7366), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7368), 1, + anon_sym_AMP_AMP, + ACTIONS(7370), 1, + anon_sym_PIPE, + ACTIONS(7372), 1, + anon_sym_CARET, + ACTIONS(7374), 1, + anon_sym_EQ_TILDE, + ACTIONS(7376), 1, + anon_sym_QMARK, + ACTIONS(7563), 1, + anon_sym_COLON, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7418), 2, + ACTIONS(7174), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7420), 2, + ACTIONS(7176), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7422), 2, + ACTIONS(7178), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7424), 2, + ACTIONS(7180), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7426), 2, + ACTIONS(7182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7428), 3, + ACTIONS(7184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 16, + ACTIONS(7364), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218265,39 +221999,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [164251] = 9, + [168572] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7198), 1, + ACTIONS(7276), 1, anon_sym_STAR_STAR, - ACTIONS(7206), 1, + ACTIONS(7278), 1, sym_test_operator, - ACTIONS(6793), 2, + ACTIONS(7282), 1, + anon_sym_EQ, + ACTIONS(7286), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7288), 1, + anon_sym_AMP_AMP, + ACTIONS(7290), 1, + anon_sym_PIPE, + ACTIONS(7292), 1, + anon_sym_CARET, + ACTIONS(7294), 1, + anon_sym_AMP, + ACTIONS(7302), 1, + anon_sym_EQ_TILDE, + ACTIONS(7304), 1, + anon_sym_QMARK, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7192), 2, + ACTIONS(7270), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7194), 2, + ACTIONS(7272), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7196), 3, + ACTIONS(7296), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7298), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7300), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7274), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6791), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6789), 20, + ACTIONS(6793), 12, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218309,55 +222057,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [164308] = 16, + [168649] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(6807), 1, + ACTIONS(6795), 1, anon_sym_EQ, - ACTIONS(7410), 1, + ACTIONS(7276), 1, + anon_sym_STAR_STAR, + ACTIONS(7278), 1, + sym_test_operator, + ACTIONS(7288), 1, anon_sym_AMP_AMP, - ACTIONS(7412), 1, + ACTIONS(7290), 1, anon_sym_PIPE, - ACTIONS(7414), 1, + ACTIONS(7292), 1, anon_sym_CARET, - ACTIONS(7416), 1, + ACTIONS(7294), 1, anon_sym_AMP, - ACTIONS(7430), 1, - anon_sym_STAR_STAR, - ACTIONS(7438), 1, - sym_test_operator, - ACTIONS(7404), 2, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7418), 2, + ACTIONS(7270), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7272), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7296), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7420), 2, + ACTIONS(7298), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7422), 2, + ACTIONS(7300), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7424), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7426), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7428), 3, + ACTIONS(7274), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 15, + ACTIONS(6793), 15, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218370,57 +222110,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [164379] = 20, + [168720] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7402), 1, + ACTIONS(6795), 14, anon_sym_EQ, - ACTIONS(7408), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7410), 1, - anon_sym_AMP_AMP, - ACTIONS(7412), 1, anon_sym_PIPE, - ACTIONS(7414), 1, anon_sym_CARET, - ACTIONS(7416), 1, anon_sym_AMP, - ACTIONS(7430), 1, - anon_sym_STAR_STAR, - ACTIONS(7434), 1, - anon_sym_EQ_TILDE, - ACTIONS(7436), 1, - anon_sym_QMARK, - ACTIONS(7438), 1, - sym_test_operator, - ACTIONS(7473), 1, - anon_sym_RPAREN, - ACTIONS(7404), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7418), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7420), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7422), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7424), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7426), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7428), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7406), 11, + anon_sym_STAR_STAR, + ACTIONS(6793), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218432,142 +222145,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [164458] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7475), 1, - aux_sym_concatenation_token1, - ACTIONS(7477), 1, - sym__concat, - STATE(3120), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5395), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5393), 30, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [164509] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7475), 1, - aux_sym_concatenation_token1, - ACTIONS(7477), 1, - sym__concat, - STATE(3117), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5391), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5389), 30, - anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [164560] = 19, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [168765] = 15, ACTIONS(71), 1, sym_comment, - ACTIONS(7402), 1, + ACTIONS(6795), 1, anon_sym_EQ, - ACTIONS(7408), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7410), 1, - anon_sym_AMP_AMP, - ACTIONS(7412), 1, + ACTIONS(7276), 1, + anon_sym_STAR_STAR, + ACTIONS(7278), 1, + sym_test_operator, + ACTIONS(7290), 1, anon_sym_PIPE, - ACTIONS(7414), 1, + ACTIONS(7292), 1, anon_sym_CARET, - ACTIONS(7416), 1, + ACTIONS(7294), 1, anon_sym_AMP, - ACTIONS(7430), 1, - anon_sym_STAR_STAR, - ACTIONS(7434), 1, - anon_sym_EQ_TILDE, - ACTIONS(7436), 1, - anon_sym_QMARK, - ACTIONS(7438), 1, - sym_test_operator, - ACTIONS(7404), 2, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7418), 2, + ACTIONS(7270), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7272), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7296), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7420), 2, + ACTIONS(7298), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7422), 2, + ACTIONS(7300), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7424), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7426), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7428), 3, + ACTIONS(7274), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 12, + ACTIONS(6793), 16, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218579,51 +222204,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RPAREN, - [164637] = 18, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6807), 1, - anon_sym_EQ, - ACTIONS(7408), 1, anon_sym_PIPE_PIPE, - ACTIONS(7410), 1, anon_sym_AMP_AMP, - ACTIONS(7412), 1, - anon_sym_PIPE, - ACTIONS(7414), 1, - anon_sym_CARET, - ACTIONS(7416), 1, - anon_sym_AMP, - ACTIONS(7430), 1, - anon_sym_STAR_STAR, - ACTIONS(7436), 1, + anon_sym_EQ_TILDE, anon_sym_QMARK, - ACTIONS(7438), 1, + [168834] = 14, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7276), 1, + anon_sym_STAR_STAR, + ACTIONS(7278), 1, sym_test_operator, - ACTIONS(7404), 2, + ACTIONS(7292), 1, + anon_sym_CARET, + ACTIONS(7294), 1, + anon_sym_AMP, + ACTIONS(6795), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7418), 2, + ACTIONS(7270), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7272), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7296), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7420), 2, + ACTIONS(7298), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7422), 2, + ACTIONS(7300), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7424), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7426), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7428), 3, + ACTIONS(7274), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 13, + ACTIONS(6793), 16, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218635,35 +222257,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_TILDE, - [164712] = 8, + anon_sym_QMARK, + [168901] = 13, ACTIONS(71), 1, sym_comment, - ACTIONS(7198), 1, + ACTIONS(7276), 1, anon_sym_STAR_STAR, - ACTIONS(6793), 2, + ACTIONS(7278), 1, + sym_test_operator, + ACTIONS(7294), 1, + anon_sym_AMP, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7192), 2, + ACTIONS(7270), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7194), 2, + ACTIONS(7272), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7196), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6791), 6, + ACTIONS(7296), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7298), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7300), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6795), 3, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6789), 21, - sym_test_operator, + ACTIONS(7274), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6793), 16, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218677,40 +222311,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [164767] = 8, + [168966] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(7430), 1, + ACTIONS(7276), 1, anon_sym_STAR_STAR, - ACTIONS(7404), 2, + ACTIONS(7278), 1, + sym_test_operator, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7424), 2, + ACTIONS(7270), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7426), 2, + ACTIONS(7272), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7428), 3, + ACTIONS(7296), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7298), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7300), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7274), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6807), 6, + ACTIONS(6795), 4, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6805), 21, - sym_test_operator, + ACTIONS(6793), 16, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218724,41 +222362,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [164822] = 9, + [169029] = 11, ACTIONS(71), 1, sym_comment, - ACTIONS(7430), 1, + ACTIONS(7276), 1, anon_sym_STAR_STAR, - ACTIONS(7438), 1, + ACTIONS(7278), 1, sym_test_operator, - ACTIONS(7404), 2, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7424), 2, + ACTIONS(7270), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7426), 2, + ACTIONS(7272), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7428), 3, + ACTIONS(7298), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7300), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7274), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6791), 6, + ACTIONS(6795), 4, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6789), 20, + ACTIONS(6793), 18, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218774,34 +222412,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [164879] = 4, + [169090] = 25, ACTIONS(71), 1, sym_comment, - ACTIONS(7479), 1, - sym__concat, - ACTIONS(6838), 14, + ACTIONS(6476), 1, + sym_word, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6490), 1, + anon_sym_DOLLAR, + ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, + aux_sym_number_token2, + ACTIONS(6502), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6510), 1, + sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(6571), 1, + anon_sym_esac, + ACTIONS(7200), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7202), 1, + sym__special_character, + ACTIONS(7204), 1, + anon_sym_DQUOTE, + ACTIONS(7208), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7210), 1, + anon_sym_BQUOTE, + ACTIONS(7212), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(6875), 1, + sym_last_case_item, + ACTIONS(7196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7206), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7214), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3344), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [169179] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7172), 1, + anon_sym_AMP, + ACTIONS(7186), 1, + anon_sym_STAR_STAR, + ACTIONS(7188), 1, + sym_test_operator, + ACTIONS(7362), 1, anon_sym_EQ, + ACTIONS(7366), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7368), 1, + anon_sym_AMP_AMP, + ACTIONS(7370), 1, anon_sym_PIPE, + ACTIONS(7372), 1, anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7374), 1, + anon_sym_EQ_TILDE, + ACTIONS(7376), 1, + anon_sym_QMARK, + ACTIONS(7565), 1, + anon_sym_COLON, + ACTIONS(6830), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7174), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7176), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7178), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7180), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7182), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6836), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7364), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218813,42 +222537,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [164926] = 8, + [169258] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7430), 1, - anon_sym_STAR_STAR, - ACTIONS(7404), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7424), 2, + ACTIONS(6848), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7426), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7428), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6791), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6789), 21, + anon_sym_STAR_STAR, + ACTIONS(6846), 23, sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218869,34 +222579,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [164981] = 8, + [169303] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7220), 1, - anon_sym_STAR_STAR, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7214), 2, + ACTIONS(7133), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7216), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7218), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6791), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6789), 21, - sym_test_operator, - anon_sym_RPAREN_RPAREN, + anon_sym_STAR_STAR, + ACTIONS(7131), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218914,35 +222617,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [165036] = 8, + [169347] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7198), 1, - anon_sym_STAR_STAR, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7192), 2, + ACTIONS(1332), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7194), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7196), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6791), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6789), 21, - sym_test_operator, + anon_sym_STAR_STAR, + ACTIONS(1334), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218955,21 +222654,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [165091] = 4, + [169391] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7481), 1, - sym__concat, - ACTIONS(6844), 14, - anon_sym_EQ, + ACTIONS(1332), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -218983,7 +222678,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6842), 22, + ACTIONS(1334), 23, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -218998,62 +222694,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [165138] = 20, + [169435] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7172), 1, + ACTIONS(6965), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, anon_sym_EQ, - ACTIONS(7176), 1, + ACTIONS(7573), 1, anon_sym_PIPE_PIPE, - ACTIONS(7178), 1, + ACTIONS(7575), 1, anon_sym_AMP_AMP, - ACTIONS(7180), 1, + ACTIONS(7577), 1, anon_sym_PIPE, - ACTIONS(7182), 1, + ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(7184), 1, + ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7198), 1, + ACTIONS(7595), 1, anon_sym_STAR_STAR, - ACTIONS(7200), 1, + ACTIONS(7597), 1, anon_sym_EQ_TILDE, - ACTIONS(7202), 1, + ACTIONS(7599), 1, anon_sym_QMARK, - ACTIONS(7206), 1, - sym_test_operator, - ACTIONS(7483), 1, - anon_sym_COLON, - ACTIONS(6793), 2, + ACTIONS(7569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7186), 2, + ACTIONS(7583), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7188), 2, + ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7190), 2, + ACTIONS(7587), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7192), 2, + ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7194), 2, + ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7196), 3, + ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7174), 11, + ACTIONS(7571), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219065,161 +222759,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [165217] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6474), 1, - sym_word, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, - anon_sym_DOLLAR, - ACTIONS(6494), 1, - aux_sym_number_token1, - ACTIONS(6496), 1, - aux_sym_number_token2, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, - sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, - sym__brace_start, - ACTIONS(6616), 1, - anon_sym_esac, - ACTIONS(7226), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, - sym__special_character, - ACTIONS(7230), 1, - anon_sym_DQUOTE, - ACTIONS(7234), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, - anon_sym_BQUOTE, - ACTIONS(7238), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6426), 1, - aux_sym__literal_repeat1, - STATE(7440), 1, - sym_last_case_item, - ACTIONS(7224), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7240), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3419), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6303), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [165306] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6474), 1, - sym_word, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, - anon_sym_DOLLAR, - ACTIONS(6494), 1, - aux_sym_number_token1, - ACTIONS(6496), 1, - aux_sym_number_token2, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, - sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, - sym__brace_start, - ACTIONS(6610), 1, - anon_sym_esac, - ACTIONS(7226), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, - sym__special_character, - ACTIONS(7230), 1, - anon_sym_DQUOTE, - ACTIONS(7234), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, - anon_sym_BQUOTE, - ACTIONS(7238), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6426), 1, - aux_sym__literal_repeat1, - STATE(7451), 1, - sym_last_case_item, - ACTIONS(7224), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7240), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3420), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6303), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [165395] = 8, + [169511] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7430), 1, - anon_sym_STAR_STAR, - ACTIONS(7404), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7424), 2, + ACTIONS(1352), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7426), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7428), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6791), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6789), 21, - sym_test_operator, + anon_sym_STAR_STAR, + ACTIONS(1354), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219232,218 +222793,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [165450] = 8, + [169555] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(7220), 1, + ACTIONS(7605), 1, anon_sym_STAR_STAR, - ACTIONS(6793), 2, + ACTIONS(7601), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7216), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7218), 3, + ACTIONS(7603), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6791), 6, - anon_sym_EQ, + ACTIONS(7508), 9, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6789), 21, - sym_test_operator, - anon_sym_RPAREN_RPAREN, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7510), 21, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [165505] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6474), 1, - sym_word, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, - anon_sym_DOLLAR, - ACTIONS(6494), 1, - aux_sym_number_token1, - ACTIONS(6496), 1, - aux_sym_number_token2, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, - sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, - sym__brace_start, - ACTIONS(7226), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, - sym__special_character, - ACTIONS(7230), 1, - anon_sym_DQUOTE, - ACTIONS(7234), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, - anon_sym_BQUOTE, - ACTIONS(7238), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7485), 1, - anon_sym_esac, - STATE(6426), 1, - aux_sym__literal_repeat1, - STATE(7494), 1, - sym_last_case_item, - ACTIONS(7224), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7240), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3422), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6303), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [165594] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7475), 1, - aux_sym_concatenation_token1, - ACTIONS(7477), 1, - sym__concat, - STATE(3120), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 30, - anon_sym_LPAREN_LPAREN, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [165645] = 20, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [169605] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7402), 1, + ACTIONS(6971), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, anon_sym_EQ, - ACTIONS(7408), 1, + ACTIONS(7573), 1, anon_sym_PIPE_PIPE, - ACTIONS(7410), 1, + ACTIONS(7575), 1, anon_sym_AMP_AMP, - ACTIONS(7412), 1, + ACTIONS(7577), 1, anon_sym_PIPE, - ACTIONS(7414), 1, + ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(7416), 1, + ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7430), 1, + ACTIONS(7595), 1, anon_sym_STAR_STAR, - ACTIONS(7434), 1, + ACTIONS(7597), 1, anon_sym_EQ_TILDE, - ACTIONS(7436), 1, + ACTIONS(7599), 1, anon_sym_QMARK, - ACTIONS(7438), 1, - sym_test_operator, - ACTIONS(7487), 1, - anon_sym_RPAREN, - ACTIONS(7404), 2, + ACTIONS(7569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7418), 2, + ACTIONS(7583), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7420), 2, + ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7422), 2, + ACTIONS(7587), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7424), 2, + ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7426), 2, + ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7428), 3, + ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7406), 11, + ACTIONS(7571), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219455,35 +222901,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [165724] = 9, + [169681] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(7220), 1, + ACTIONS(7595), 1, anon_sym_STAR_STAR, - ACTIONS(7222), 1, - sym_test_operator, - ACTIONS(6793), 2, + ACTIONS(7569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7214), 2, + ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7216), 2, + ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7218), 3, + ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6791), 6, + ACTIONS(6941), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6789), 20, - anon_sym_RPAREN_RPAREN, + ACTIONS(6939), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219501,42 +222944,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [165781] = 3, - ACTIONS(3), 1, + [169735] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(7491), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7489), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(6969), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -219545,103 +222965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - [165826] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7493), 1, - sym__special_character, - STATE(3065), 1, - aux_sym__literal_repeat1, - ACTIONS(5393), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5395), 23, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [165875] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7495), 1, - aux_sym_concatenation_token1, - ACTIONS(7498), 1, - sym__concat, - STATE(3115), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1253), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 30, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [165926] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7503), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7501), 36, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(6967), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -219656,41 +222980,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - [165971] = 6, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [169779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7475), 1, - aux_sym_concatenation_token1, - ACTIONS(7505), 1, - sym__concat, - STATE(3115), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 4, + ACTIONS(1310), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 30, + ACTIONS(1308), 31, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -219707,6 +223014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -219721,13 +223029,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [166022] = 3, - ACTIONS(3), 1, + [169823] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(7491), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7489), 36, - anon_sym_SEMI, + ACTIONS(1356), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1358), 23, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -219746,67 +223065,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASHo, anon_sym_AMP_AMP, anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - [166067] = 16, - ACTIONS(3), 1, + anon_sym_RPAREN, + [169867] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(7256), 1, + ACTIONS(6973), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, anon_sym_PIPE, - ACTIONS(7258), 1, + ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(7260), 1, + ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7272), 1, + ACTIONS(7595), 1, anon_sym_STAR_STAR, - ACTIONS(7511), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7250), 2, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7252), 2, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - ACTIONS(7254), 2, - anon_sym_AMP_AMP, - anon_sym_DASHa, - ACTIONS(7262), 2, + ACTIONS(7583), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7266), 2, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7268), 2, + ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7507), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(7270), 3, + ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7264), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7509), 11, + ACTIONS(7571), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219818,56 +223127,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [166138] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7475), 1, - aux_sym_concatenation_token1, - ACTIONS(7513), 1, - sym__concat, - STATE(3115), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 30, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [166189] = 3, + [169943] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6801), 14, - anon_sym_EQ, + ACTIONS(1344), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -219881,8 +223144,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6799), 23, - sym_test_operator, + ACTIONS(1346), 23, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -219897,126 +223160,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [166234] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6474), 1, - sym_word, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, - anon_sym_DOLLAR, - ACTIONS(6494), 1, - aux_sym_number_token1, - ACTIONS(6496), 1, - aux_sym_number_token2, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, - sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, - sym__brace_start, - ACTIONS(7226), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, - sym__special_character, - ACTIONS(7230), 1, - anon_sym_DQUOTE, - ACTIONS(7234), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, - anon_sym_BQUOTE, - ACTIONS(7238), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7515), 1, - anon_sym_esac, - STATE(6426), 1, - aux_sym__literal_repeat1, - STATE(7495), 1, - sym_last_case_item, - ACTIONS(7224), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7240), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3423), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6303), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [166323] = 20, + [169987] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(7220), 1, + ACTIONS(7595), 1, anon_sym_STAR_STAR, - ACTIONS(7222), 1, - sym_test_operator, - ACTIONS(7376), 1, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6941), 8, anon_sym_EQ, - ACTIONS(7380), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7382), 1, - anon_sym_AMP_AMP, - ACTIONS(7384), 1, anon_sym_PIPE, - ACTIONS(7386), 1, anon_sym_CARET, - ACTIONS(7388), 1, anon_sym_AMP, - ACTIONS(7390), 1, - anon_sym_EQ_TILDE, - ACTIONS(7392), 1, - anon_sym_QMARK, - ACTIONS(7517), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7208), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7210), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7212), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7214), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7216), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7218), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7378), 11, + ACTIONS(6939), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220028,54 +223204,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [166402] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7280), 1, anon_sym_PIPE_PIPE, - ACTIONS(7282), 1, anon_sym_AMP_AMP, - ACTIONS(7284), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [170039] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1356), 13, anon_sym_PIPE, - ACTIONS(7286), 1, anon_sym_CARET, - ACTIONS(7288), 1, anon_sym_AMP, - ACTIONS(7302), 1, - anon_sym_STAR_STAR, - ACTIONS(7304), 1, - sym_test_operator, - ACTIONS(7310), 1, - anon_sym_EQ, - ACTIONS(7312), 1, - anon_sym_EQ_TILDE, - ACTIONS(7314), 1, - anon_sym_QMARK, - ACTIONS(7517), 1, - anon_sym_RBRACK, - ACTIONS(7278), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7290), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7292), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7294), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7296), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7298), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7300), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7446), 11, + anon_sym_STAR_STAR, + ACTIONS(1358), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220087,113 +223245,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [166481] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7322), 1, - anon_sym_STAR_STAR, - ACTIONS(7324), 1, anon_sym_PIPE_PIPE, - ACTIONS(7326), 1, + anon_sym_DASHo, anon_sym_AMP_AMP, - ACTIONS(7328), 1, - anon_sym_PIPE, - ACTIONS(7330), 1, - anon_sym_CARET, - ACTIONS(7332), 1, - anon_sym_AMP, - ACTIONS(7340), 1, - anon_sym_QMARK, - ACTIONS(7342), 1, - sym_test_operator, - ACTIONS(7346), 1, - anon_sym_EQ_TILDE, - ACTIONS(7398), 1, - anon_sym_EQ, - ACTIONS(7517), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7316), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7318), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7334), 2, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7336), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7338), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7320), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7400), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [166560] = 20, + anon_sym_RPAREN, + [170083] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7402), 1, + ACTIONS(6969), 14, anon_sym_EQ, - ACTIONS(7408), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7410), 1, - anon_sym_AMP_AMP, - ACTIONS(7412), 1, anon_sym_PIPE, - ACTIONS(7414), 1, anon_sym_CARET, - ACTIONS(7416), 1, anon_sym_AMP, - ACTIONS(7430), 1, - anon_sym_STAR_STAR, - ACTIONS(7434), 1, - anon_sym_EQ_TILDE, - ACTIONS(7436), 1, - anon_sym_QMARK, - ACTIONS(7438), 1, - sym_test_operator, - ACTIONS(7519), 1, - anon_sym_RPAREN, - ACTIONS(7404), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7418), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7420), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7422), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7424), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7426), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7428), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7406), 11, + anon_sym_STAR_STAR, + ACTIONS(6967), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220205,164 +223286,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [166639] = 12, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [170127] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7534), 1, - anon_sym_LT_LT_LT, - ACTIONS(7537), 1, + ACTIONS(1342), 5, sym_file_descriptor, - ACTIONS(7540), 1, - sym_variable_name, - STATE(6771), 1, - sym_subscript, - ACTIONS(7531), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3127), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - STATE(3581), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(7528), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(7521), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(7525), 5, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1340), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(7523), 14, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [166702] = 20, - ACTIONS(71), 1, + sym_word, + [170171] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(7322), 1, - anon_sym_STAR_STAR, - ACTIONS(7324), 1, + ACTIONS(4078), 1, + anon_sym_DQUOTE, + ACTIONS(7611), 1, + sym_variable_name, + STATE(4444), 1, + sym_string, + ACTIONS(1235), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(7609), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7607), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 20, + anon_sym_SEMI, anon_sym_PIPE_PIPE, - ACTIONS(7326), 1, anon_sym_AMP_AMP, - ACTIONS(7328), 1, anon_sym_PIPE, - ACTIONS(7330), 1, - anon_sym_CARET, - ACTIONS(7332), 1, anon_sym_AMP, - ACTIONS(7340), 1, - anon_sym_QMARK, - ACTIONS(7342), 1, - sym_test_operator, - ACTIONS(7346), 1, - anon_sym_EQ_TILDE, - ACTIONS(7398), 1, - anon_sym_EQ, - ACTIONS(7543), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7316), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7318), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7334), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7336), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7338), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7320), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7400), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [166781] = 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [170225] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7172), 1, + ACTIONS(6975), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, anon_sym_EQ, - ACTIONS(7176), 1, + ACTIONS(7573), 1, anon_sym_PIPE_PIPE, - ACTIONS(7178), 1, + ACTIONS(7575), 1, anon_sym_AMP_AMP, - ACTIONS(7180), 1, + ACTIONS(7577), 1, anon_sym_PIPE, - ACTIONS(7182), 1, + ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(7184), 1, + ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7198), 1, + ACTIONS(7595), 1, anon_sym_STAR_STAR, - ACTIONS(7200), 1, + ACTIONS(7597), 1, anon_sym_EQ_TILDE, - ACTIONS(7202), 1, + ACTIONS(7599), 1, anon_sym_QMARK, - ACTIONS(7206), 1, - sym_test_operator, - ACTIONS(7545), 1, - anon_sym_COLON, - ACTIONS(6793), 2, + ACTIONS(7569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7186), 2, + ACTIONS(7583), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7188), 2, + ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7190), 2, + ACTIONS(7587), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7192), 2, + ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7194), 2, + ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7196), 3, + ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7174), 11, + ACTIONS(7571), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220374,29 +223439,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [166860] = 4, + [170301] = 13, ACTIONS(71), 1, sym_comment, - ACTIONS(7404), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6791), 14, - anon_sym_EQ, + ACTIONS(7605), 1, + anon_sym_STAR_STAR, + ACTIONS(7613), 1, anon_sym_PIPE, + ACTIONS(7615), 1, anon_sym_CARET, + ACTIONS(7617), 1, anon_sym_AMP, + ACTIONS(7601), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7619), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7621), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7623), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7625), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7627), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7603), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6789), 21, - sym_test_operator, + ACTIONS(7510), 17, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220409,62 +223486,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_DASHa, anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [166907] = 20, + [170365] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1292), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [170409] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7280), 1, + ACTIONS(6933), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, anon_sym_PIPE_PIPE, - ACTIONS(7282), 1, + ACTIONS(7575), 1, anon_sym_AMP_AMP, - ACTIONS(7284), 1, + ACTIONS(7577), 1, anon_sym_PIPE, - ACTIONS(7286), 1, + ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(7288), 1, + ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7302), 1, + ACTIONS(7595), 1, anon_sym_STAR_STAR, - ACTIONS(7304), 1, - sym_test_operator, - ACTIONS(7310), 1, - anon_sym_EQ, - ACTIONS(7312), 1, + ACTIONS(7597), 1, anon_sym_EQ_TILDE, - ACTIONS(7314), 1, + ACTIONS(7599), 1, anon_sym_QMARK, - ACTIONS(7543), 1, - anon_sym_RBRACK, - ACTIONS(7278), 2, + ACTIONS(7569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7290), 2, + ACTIONS(7583), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7292), 2, + ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7294), 2, + ACTIONS(7587), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7296), 2, + ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7298), 2, + ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7300), 3, + ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7446), 11, + ACTIONS(7571), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220476,108 +223588,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [166986] = 8, - ACTIONS(3), 1, + [170485] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1235), 1, - sym_file_descriptor, - ACTIONS(3791), 1, - anon_sym_DQUOTE, - ACTIONS(7444), 1, - sym_variable_name, - STATE(4389), 1, - sym_string, - ACTIONS(7442), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7440), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(7605), 1, + anon_sym_STAR_STAR, + ACTIONS(7601), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7508), 12, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7510), 21, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [167041] = 25, + [170533] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(6474), 1, + ACTIONS(6476), 1, sym_word, - ACTIONS(6480), 1, + ACTIONS(6482), 1, anon_sym_LPAREN, - ACTIONS(6488), 1, + ACTIONS(6490), 1, anon_sym_DOLLAR, - ACTIONS(6494), 1, - aux_sym_number_token1, ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, aux_sym_number_token2, - ACTIONS(6500), 1, + ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, - sym_test_operator, ACTIONS(6510), 1, - sym_extglob_pattern, + sym_test_operator, ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, sym__brace_start, - ACTIONS(6641), 1, - anon_sym_esac, - ACTIONS(7226), 1, + ACTIONS(7200), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, + ACTIONS(7202), 1, sym__special_character, - ACTIONS(7230), 1, + ACTIONS(7204), 1, anon_sym_DQUOTE, - ACTIONS(7234), 1, + ACTIONS(7208), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, + ACTIONS(7210), 1, anon_sym_BQUOTE, - ACTIONS(7238), 1, + ACTIONS(7212), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6426), 1, + STATE(6459), 1, aux_sym__literal_repeat1, - STATE(7528), 1, + STATE(7345), 1, sym_last_case_item, - ACTIONS(7224), 2, + ACTIONS(7196), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, + ACTIONS(7206), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7240), 2, + ACTIONS(7214), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3310), 2, + STATE(3468), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6695), 2, + STATE(6638), 2, sym_concatenation, sym__extglob_blob, - STATE(6303), 9, + STATE(6312), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -220587,108 +223693,183 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [167130] = 8, - ACTIONS(3), 1, + [170619] = 24, + ACTIONS(71), 1, sym_comment, - ACTIONS(1241), 1, - sym_file_descriptor, - ACTIONS(3791), 1, + ACTIONS(6476), 1, + sym_word, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6490), 1, + anon_sym_DOLLAR, + ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, + aux_sym_number_token2, + ACTIONS(6502), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6510), 1, + sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(7200), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7202), 1, + sym__special_character, + ACTIONS(7204), 1, anon_sym_DQUOTE, - ACTIONS(7444), 1, - sym_variable_name, - STATE(4389), 1, + ACTIONS(7208), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7210), 1, + anon_sym_BQUOTE, + ACTIONS(7212), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(7352), 1, + sym_last_case_item, + ACTIONS(7196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7206), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7214), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3468), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(7442), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7440), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [167185] = 25, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [170705] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(6474), 1, + ACTIONS(6476), 1, sym_word, - ACTIONS(6480), 1, + ACTIONS(6482), 1, anon_sym_LPAREN, - ACTIONS(6488), 1, + ACTIONS(6490), 1, anon_sym_DOLLAR, - ACTIONS(6494), 1, - aux_sym_number_token1, ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, aux_sym_number_token2, - ACTIONS(6500), 1, + ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, - sym_test_operator, ACTIONS(6510), 1, + sym_test_operator, + ACTIONS(6512), 1, sym_extglob_pattern, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(7200), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7202), 1, + sym__special_character, + ACTIONS(7204), 1, + anon_sym_DQUOTE, + ACTIONS(7208), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7210), 1, + anon_sym_BQUOTE, + ACTIONS(7212), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(7385), 1, + sym_last_case_item, + ACTIONS(7196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7206), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7214), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3468), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [170791] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6476), 1, + sym_word, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6490), 1, + anon_sym_DOLLAR, + ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, + aux_sym_number_token2, + ACTIONS(6502), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6510), 1, + sym_test_operator, ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, sym__brace_start, - ACTIONS(6574), 1, - anon_sym_esac, - ACTIONS(7226), 1, + ACTIONS(7200), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, + ACTIONS(7202), 1, sym__special_character, - ACTIONS(7230), 1, + ACTIONS(7204), 1, anon_sym_DQUOTE, - ACTIONS(7234), 1, + ACTIONS(7208), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, + ACTIONS(7210), 1, anon_sym_BQUOTE, - ACTIONS(7238), 1, + ACTIONS(7212), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6426), 1, + STATE(6459), 1, aux_sym__literal_repeat1, - STATE(7603), 1, + STATE(7389), 1, sym_last_case_item, - ACTIONS(7224), 2, + ACTIONS(7196), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, + ACTIONS(7206), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7240), 2, + ACTIONS(7214), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3440), 2, + STATE(3468), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6695), 2, + STATE(6638), 2, sym_concatenation, sym__extglob_blob, - STATE(6303), 9, + STATE(6312), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -220698,61 +223879,59 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [167274] = 25, + [170877] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(6474), 1, + ACTIONS(6476), 1, sym_word, - ACTIONS(6480), 1, + ACTIONS(6482), 1, anon_sym_LPAREN, - ACTIONS(6488), 1, + ACTIONS(6490), 1, anon_sym_DOLLAR, - ACTIONS(6494), 1, - aux_sym_number_token1, ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, aux_sym_number_token2, - ACTIONS(6500), 1, + ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, - sym_test_operator, ACTIONS(6510), 1, - sym_extglob_pattern, + sym_test_operator, ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, sym__brace_start, - ACTIONS(7226), 1, + ACTIONS(7200), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, + ACTIONS(7202), 1, sym__special_character, - ACTIONS(7230), 1, + ACTIONS(7204), 1, anon_sym_DQUOTE, - ACTIONS(7234), 1, + ACTIONS(7208), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, + ACTIONS(7210), 1, anon_sym_BQUOTE, - ACTIONS(7238), 1, + ACTIONS(7212), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7547), 1, - anon_sym_esac, - STATE(6426), 1, + STATE(6459), 1, aux_sym__literal_repeat1, - STATE(7291), 1, + STATE(7427), 1, sym_last_case_item, - ACTIONS(7224), 2, + ACTIONS(7196), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, + ACTIONS(7206), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7240), 2, + ACTIONS(7214), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3438), 2, + STATE(3468), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6695), 2, + STATE(6638), 2, sym_concatenation, sym__extglob_blob, - STATE(6303), 9, + STATE(6312), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -220762,61 +223941,59 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [167363] = 25, + [170963] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(6474), 1, + ACTIONS(6476), 1, sym_word, - ACTIONS(6480), 1, + ACTIONS(6482), 1, anon_sym_LPAREN, - ACTIONS(6488), 1, + ACTIONS(6490), 1, anon_sym_DOLLAR, - ACTIONS(6494), 1, - aux_sym_number_token1, ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, aux_sym_number_token2, - ACTIONS(6500), 1, + ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, - sym_test_operator, ACTIONS(6510), 1, - sym_extglob_pattern, + sym_test_operator, ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, sym__brace_start, - ACTIONS(7226), 1, + ACTIONS(7200), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, + ACTIONS(7202), 1, sym__special_character, - ACTIONS(7230), 1, + ACTIONS(7204), 1, anon_sym_DQUOTE, - ACTIONS(7234), 1, + ACTIONS(7208), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, + ACTIONS(7210), 1, anon_sym_BQUOTE, - ACTIONS(7238), 1, + ACTIONS(7212), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7549), 1, - anon_sym_esac, - STATE(6426), 1, + STATE(6459), 1, aux_sym__literal_repeat1, - STATE(7315), 1, + STATE(7428), 1, sym_last_case_item, - ACTIONS(7224), 2, + ACTIONS(7196), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, + ACTIONS(7206), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7240), 2, + ACTIONS(7214), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3437), 2, + STATE(3468), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6695), 2, + STATE(6638), 2, sym_concatenation, sym__extglob_blob, - STATE(6303), 9, + STATE(6312), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -220826,96 +224003,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [167452] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6807), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6805), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [167497] = 20, + [171049] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7220), 1, - anon_sym_STAR_STAR, - ACTIONS(7222), 1, - sym_test_operator, - ACTIONS(7376), 1, + ACTIONS(6982), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, anon_sym_EQ, - ACTIONS(7380), 1, + ACTIONS(7573), 1, anon_sym_PIPE_PIPE, - ACTIONS(7382), 1, + ACTIONS(7575), 1, anon_sym_AMP_AMP, - ACTIONS(7384), 1, + ACTIONS(7577), 1, anon_sym_PIPE, - ACTIONS(7386), 1, + ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(7388), 1, + ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7390), 1, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, anon_sym_EQ_TILDE, - ACTIONS(7392), 1, + ACTIONS(7599), 1, anon_sym_QMARK, - ACTIONS(7551), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6793), 2, + ACTIONS(7569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7208), 2, + ACTIONS(7583), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7210), 2, + ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7212), 2, + ACTIONS(7587), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7214), 2, + ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7216), 2, + ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7218), 3, + ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7378), 11, + ACTIONS(7571), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220927,54 +224060,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [167576] = 20, + [171125] = 13, ACTIONS(71), 1, sym_comment, - ACTIONS(7280), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7282), 1, - anon_sym_AMP_AMP, - ACTIONS(7284), 1, + ACTIONS(7508), 1, anon_sym_PIPE, - ACTIONS(7286), 1, + ACTIONS(7605), 1, + anon_sym_STAR_STAR, + ACTIONS(7615), 1, anon_sym_CARET, - ACTIONS(7288), 1, + ACTIONS(7617), 1, anon_sym_AMP, - ACTIONS(7302), 1, - anon_sym_STAR_STAR, - ACTIONS(7304), 1, - sym_test_operator, - ACTIONS(7310), 1, - anon_sym_EQ, - ACTIONS(7312), 1, - anon_sym_EQ_TILDE, - ACTIONS(7314), 1, - anon_sym_QMARK, - ACTIONS(7551), 1, - anon_sym_RBRACK, - ACTIONS(7278), 2, + ACTIONS(7601), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7290), 2, + ACTIONS(7619), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7292), 2, + ACTIONS(7621), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7294), 2, + ACTIONS(7623), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7296), 2, + ACTIONS(7625), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7298), 2, + ACTIONS(7627), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7300), 3, + ACTIONS(7603), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7446), 11, + ACTIONS(7510), 17, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220986,54 +224106,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [167655] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7322), 1, - anon_sym_STAR_STAR, - ACTIONS(7324), 1, anon_sym_PIPE_PIPE, - ACTIONS(7326), 1, + anon_sym_DASHo, anon_sym_AMP_AMP, - ACTIONS(7328), 1, + anon_sym_DASHa, + anon_sym_RPAREN, + [171189] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1336), 13, anon_sym_PIPE, - ACTIONS(7330), 1, anon_sym_CARET, - ACTIONS(7332), 1, anon_sym_AMP, - ACTIONS(7340), 1, - anon_sym_QMARK, - ACTIONS(7342), 1, - sym_test_operator, - ACTIONS(7346), 1, - anon_sym_EQ_TILDE, - ACTIONS(7398), 1, - anon_sym_EQ, - ACTIONS(7551), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7316), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7318), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7334), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7336), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7338), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7320), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7400), 11, + anon_sym_STAR_STAR, + ACTIONS(1338), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221045,54 +224144,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [167734] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7402), 1, - anon_sym_EQ, - ACTIONS(7408), 1, anon_sym_PIPE_PIPE, - ACTIONS(7410), 1, + anon_sym_DASHo, anon_sym_AMP_AMP, - ACTIONS(7412), 1, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [171233] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7605), 1, + anon_sym_STAR_STAR, + ACTIONS(7617), 1, + anon_sym_AMP, + ACTIONS(7508), 2, anon_sym_PIPE, - ACTIONS(7414), 1, anon_sym_CARET, - ACTIONS(7416), 1, - anon_sym_AMP, - ACTIONS(7430), 1, - anon_sym_STAR_STAR, - ACTIONS(7434), 1, - anon_sym_EQ_TILDE, - ACTIONS(7436), 1, - anon_sym_QMARK, - ACTIONS(7438), 1, - sym_test_operator, - ACTIONS(7553), 1, - anon_sym_RPAREN, - ACTIONS(7404), 2, + ACTIONS(7601), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7418), 2, + ACTIONS(7619), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7420), 2, + ACTIONS(7621), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7422), 2, + ACTIONS(7623), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7424), 2, + ACTIONS(7625), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7426), 2, + ACTIONS(7627), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7428), 3, + ACTIONS(7603), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7406), 11, + ACTIONS(7510), 17, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221104,54 +224197,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [167813] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7172), 1, - anon_sym_EQ, - ACTIONS(7176), 1, anon_sym_PIPE_PIPE, - ACTIONS(7178), 1, + anon_sym_DASHo, anon_sym_AMP_AMP, - ACTIONS(7180), 1, + anon_sym_DASHa, + anon_sym_RPAREN, + [171295] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1324), 13, anon_sym_PIPE, - ACTIONS(7182), 1, anon_sym_CARET, - ACTIONS(7184), 1, anon_sym_AMP, - ACTIONS(7198), 1, - anon_sym_STAR_STAR, - ACTIONS(7200), 1, - anon_sym_EQ_TILDE, - ACTIONS(7202), 1, - anon_sym_QMARK, - ACTIONS(7206), 1, - sym_test_operator, - ACTIONS(7555), 1, - anon_sym_COLON, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7186), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7188), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7190), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7192), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7194), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7196), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7174), 11, + anon_sym_STAR_STAR, + ACTIONS(1326), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221163,54 +224234,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [167892] = 20, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [171339] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7220), 1, - anon_sym_STAR_STAR, - ACTIONS(7222), 1, - sym_test_operator, - ACTIONS(7376), 1, + ACTIONS(6986), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, anon_sym_EQ, - ACTIONS(7380), 1, + ACTIONS(7573), 1, anon_sym_PIPE_PIPE, - ACTIONS(7382), 1, + ACTIONS(7575), 1, anon_sym_AMP_AMP, - ACTIONS(7384), 1, + ACTIONS(7577), 1, anon_sym_PIPE, - ACTIONS(7386), 1, + ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(7388), 1, + ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7390), 1, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, anon_sym_EQ_TILDE, - ACTIONS(7392), 1, + ACTIONS(7599), 1, anon_sym_QMARK, - ACTIONS(7557), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6793), 2, + ACTIONS(7569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7208), 2, + ACTIONS(7583), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7210), 2, + ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7212), 2, + ACTIONS(7587), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7214), 2, + ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7216), 2, + ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7218), 3, + ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7378), 11, + ACTIONS(7571), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221222,54 +224300,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [167971] = 20, + [171415] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7280), 1, + ACTIONS(7117), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, anon_sym_PIPE_PIPE, - ACTIONS(7282), 1, + ACTIONS(7575), 1, anon_sym_AMP_AMP, - ACTIONS(7284), 1, + ACTIONS(7577), 1, anon_sym_PIPE, - ACTIONS(7286), 1, + ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(7288), 1, + ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7302), 1, + ACTIONS(7595), 1, anon_sym_STAR_STAR, - ACTIONS(7304), 1, - sym_test_operator, - ACTIONS(7310), 1, - anon_sym_EQ, - ACTIONS(7312), 1, + ACTIONS(7597), 1, anon_sym_EQ_TILDE, - ACTIONS(7314), 1, + ACTIONS(7599), 1, anon_sym_QMARK, - ACTIONS(7557), 1, - anon_sym_RBRACK, - ACTIONS(7278), 2, + ACTIONS(7569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7290), 2, + ACTIONS(7583), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7292), 2, + ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7294), 2, + ACTIONS(7587), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7296), 2, + ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7298), 2, + ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7300), 3, + ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7446), 11, + ACTIONS(7571), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221281,10 +224357,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [168050] = 3, + [171491] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6807), 14, + ACTIONS(1320), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -221299,8 +224375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6805), 23, - sym_test_operator, + ACTIONS(1322), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -221323,113 +224398,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [168095] = 20, + [171535] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(7322), 1, + ACTIONS(7595), 1, anon_sym_STAR_STAR, - ACTIONS(7324), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7326), 1, - anon_sym_AMP_AMP, - ACTIONS(7328), 1, - anon_sym_PIPE, - ACTIONS(7330), 1, - anon_sym_CARET, - ACTIONS(7332), 1, - anon_sym_AMP, - ACTIONS(7340), 1, - anon_sym_QMARK, - ACTIONS(7342), 1, - sym_test_operator, - ACTIONS(7346), 1, - anon_sym_EQ_TILDE, - ACTIONS(7398), 1, - anon_sym_EQ, - ACTIONS(7557), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(6793), 2, + ACTIONS(7569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7316), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7318), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7334), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7336), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7338), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7320), 3, + ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7400), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [168174] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7172), 1, + ACTIONS(6941), 10, anon_sym_EQ, - ACTIONS(7176), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7178), 1, - anon_sym_AMP_AMP, - ACTIONS(7180), 1, anon_sym_PIPE, - ACTIONS(7182), 1, anon_sym_CARET, - ACTIONS(7184), 1, anon_sym_AMP, - ACTIONS(7198), 1, - anon_sym_STAR_STAR, - ACTIONS(7200), 1, - anon_sym_EQ_TILDE, - ACTIONS(7202), 1, - anon_sym_QMARK, - ACTIONS(7206), 1, - sym_test_operator, - ACTIONS(7559), 1, - anon_sym_COLON, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7186), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7188), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7190), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7192), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7194), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7196), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7174), 11, + ACTIONS(6939), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221441,270 +224433,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [168253] = 3, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [171585] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1261), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1263), 24, + ACTIONS(1314), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1312), 31, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [168298] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7220), 1, - anon_sym_STAR_STAR, - ACTIONS(7222), 1, - sym_test_operator, - ACTIONS(7376), 1, - anon_sym_EQ, - ACTIONS(7380), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7382), 1, - anon_sym_AMP_AMP, - ACTIONS(7384), 1, - anon_sym_PIPE, - ACTIONS(7386), 1, - anon_sym_CARET, - ACTIONS(7388), 1, - anon_sym_AMP, - ACTIONS(7390), 1, - anon_sym_EQ_TILDE, - ACTIONS(7392), 1, - anon_sym_QMARK, - ACTIONS(7561), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7208), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7210), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7212), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7216), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7218), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7378), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [168377] = 17, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7123), 1, - anon_sym_EQ, - ACTIONS(7408), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7410), 1, - anon_sym_AMP_AMP, - ACTIONS(7412), 1, - anon_sym_PIPE, - ACTIONS(7414), 1, - anon_sym_CARET, - ACTIONS(7416), 1, - anon_sym_AMP, - ACTIONS(7430), 1, - anon_sym_STAR_STAR, - ACTIONS(7438), 1, - sym_test_operator, - ACTIONS(7404), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7418), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7420), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7422), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7424), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7426), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7428), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7125), 14, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [168450] = 20, + sym_word, + [171629] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7280), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7282), 1, - anon_sym_AMP_AMP, - ACTIONS(7284), 1, + ACTIONS(1328), 13, anon_sym_PIPE, - ACTIONS(7286), 1, anon_sym_CARET, - ACTIONS(7288), 1, anon_sym_AMP, - ACTIONS(7302), 1, - anon_sym_STAR_STAR, - ACTIONS(7304), 1, - sym_test_operator, - ACTIONS(7310), 1, - anon_sym_EQ, - ACTIONS(7312), 1, - anon_sym_EQ_TILDE, - ACTIONS(7314), 1, - anon_sym_QMARK, - ACTIONS(7561), 1, - anon_sym_RBRACK, - ACTIONS(7278), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7290), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7292), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7294), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7296), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7298), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7300), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7446), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [168529] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7322), 1, anon_sym_STAR_STAR, - ACTIONS(7324), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7326), 1, - anon_sym_AMP_AMP, - ACTIONS(7328), 1, - anon_sym_PIPE, - ACTIONS(7330), 1, - anon_sym_CARET, - ACTIONS(7332), 1, - anon_sym_AMP, - ACTIONS(7340), 1, - anon_sym_QMARK, - ACTIONS(7342), 1, - sym_test_operator, - ACTIONS(7346), 1, - anon_sym_EQ_TILDE, - ACTIONS(7398), 1, - anon_sym_EQ, - ACTIONS(7561), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(6793), 2, + ACTIONS(1330), 23, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7316), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7318), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7334), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7336), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7338), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7320), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7400), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221716,294 +224515,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [168608] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7220), 1, - anon_sym_STAR_STAR, - ACTIONS(7222), 1, - sym_test_operator, - ACTIONS(7376), 1, - anon_sym_EQ, - ACTIONS(7380), 1, anon_sym_PIPE_PIPE, - ACTIONS(7382), 1, + anon_sym_DASHo, anon_sym_AMP_AMP, - ACTIONS(7384), 1, - anon_sym_PIPE, - ACTIONS(7386), 1, - anon_sym_CARET, - ACTIONS(7388), 1, - anon_sym_AMP, - ACTIONS(7390), 1, - anon_sym_EQ_TILDE, - ACTIONS(7392), 1, - anon_sym_QMARK, - ACTIONS(7563), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7208), 2, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7210), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7212), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7214), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7216), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7218), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7378), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [168687] = 20, - ACTIONS(71), 1, + anon_sym_RPAREN, + [171673] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(7280), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7282), 1, - anon_sym_AMP_AMP, - ACTIONS(7284), 1, - anon_sym_PIPE, - ACTIONS(7286), 1, - anon_sym_CARET, - ACTIONS(7288), 1, - anon_sym_AMP, - ACTIONS(7302), 1, - anon_sym_STAR_STAR, - ACTIONS(7304), 1, - sym_test_operator, - ACTIONS(7310), 1, - anon_sym_EQ, - ACTIONS(7312), 1, - anon_sym_EQ_TILDE, - ACTIONS(7314), 1, - anon_sym_QMARK, - ACTIONS(7563), 1, - anon_sym_RBRACK, - ACTIONS(7278), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7290), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7292), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7294), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7296), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7298), 2, - anon_sym_PLUS, + ACTIONS(1235), 1, + sym_file_descriptor, + ACTIONS(7631), 1, + anon_sym_DQUOTE, + ACTIONS(7635), 1, + sym_variable_name, + STATE(4316), 1, + sym_string, + ACTIONS(7633), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7629), 9, anon_sym_DASH, - ACTIONS(7300), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7446), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [168766] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7322), 1, - anon_sym_STAR_STAR, - ACTIONS(7324), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7326), 1, - anon_sym_AMP_AMP, - ACTIONS(7328), 1, - anon_sym_PIPE, - ACTIONS(7330), 1, - anon_sym_CARET, - ACTIONS(7332), 1, - anon_sym_AMP, - ACTIONS(7340), 1, + anon_sym_BANG, anon_sym_QMARK, - ACTIONS(7342), 1, - sym_test_operator, - ACTIONS(7346), 1, - anon_sym_EQ_TILDE, - ACTIONS(7398), 1, - anon_sym_EQ, - ACTIONS(7563), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7316), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7318), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7334), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7336), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7338), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7320), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7400), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [168845] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1314), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 36, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 21, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - [168890] = 20, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_BQUOTE, + [171727] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7220), 1, - anon_sym_STAR_STAR, - ACTIONS(7222), 1, - sym_test_operator, - ACTIONS(7376), 1, + ACTIONS(6988), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, anon_sym_EQ, - ACTIONS(7380), 1, + ACTIONS(7573), 1, anon_sym_PIPE_PIPE, - ACTIONS(7382), 1, + ACTIONS(7575), 1, anon_sym_AMP_AMP, - ACTIONS(7384), 1, + ACTIONS(7577), 1, anon_sym_PIPE, - ACTIONS(7386), 1, + ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(7388), 1, + ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7390), 1, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, anon_sym_EQ_TILDE, - ACTIONS(7392), 1, + ACTIONS(7599), 1, anon_sym_QMARK, - ACTIONS(7543), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6793), 2, + ACTIONS(7569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7208), 2, + ACTIONS(7583), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7210), 2, + ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7212), 2, + ACTIONS(7587), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7214), 2, + ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7216), 2, + ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7218), 3, + ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7378), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [168969] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1346), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7571), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222015,61 +224627,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - [169014] = 3, - ACTIONS(3), 1, + [171803] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1358), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(1320), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -222078,13 +224644,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - [169059] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1338), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 36, - anon_sym_SEMI, + ACTIONS(1322), 23, + anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -222103,39 +224664,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASHo, anon_sym_AMP_AMP, anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - [169104] = 8, + [171847] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3791), 1, + ACTIONS(1241), 1, + sym_file_descriptor, + ACTIONS(7631), 1, anon_sym_DQUOTE, - ACTIONS(7444), 1, + ACTIONS(7635), 1, sym_variable_name, - STATE(4389), 1, + STATE(4316), 1, sym_string, - ACTIONS(1235), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(7442), 2, + ACTIONS(7633), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7440), 9, + ACTIONS(7629), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -222145,7 +224692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 21, + ACTIONS(1239), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -222166,122 +224713,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [169159] = 8, - ACTIONS(3), 1, + anon_sym_BQUOTE, + [171901] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(3791), 1, - anon_sym_DQUOTE, - ACTIONS(7444), 1, - sym_variable_name, - STATE(4389), 1, - sym_string, - ACTIONS(1241), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(7442), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7440), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 21, - anon_sym_SEMI, + ACTIONS(6899), 1, + anon_sym_EQ, + ACTIONS(6905), 1, anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, anon_sym_AMP_AMP, + ACTIONS(6909), 1, anon_sym_PIPE, + ACTIONS(6911), 1, + anon_sym_CARET, + ACTIONS(6913), 1, anon_sym_AMP, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, + anon_sym_QMARK, + ACTIONS(7637), 1, + anon_sym_COLON, + ACTIONS(6901), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6919), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [169214] = 25, - ACTIONS(71), 1, + ACTIONS(6923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6925), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6903), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [171977] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6474), 1, - sym_word, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, - anon_sym_DOLLAR, - ACTIONS(6494), 1, - aux_sym_number_token1, - ACTIONS(6496), 1, - aux_sym_number_token2, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, + ACTIONS(1318), 5, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, sym__brace_start, - ACTIONS(7226), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1316), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(7230), 1, anon_sym_DQUOTE, - ACTIONS(7234), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - ACTIONS(7238), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7565), 1, - anon_sym_esac, - STATE(6426), 1, - aux_sym__literal_repeat1, - STATE(6923), 1, - sym_last_case_item, - ACTIONS(7224), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7240), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3424), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6303), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [169303] = 19, + sym_word, + [172021] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7025), 1, + ACTIONS(6990), 1, anon_sym_RBRACK, ACTIONS(7567), 1, anon_sym_EQ, @@ -222335,17 +224869,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [169379] = 19, + [172097] = 14, ACTIONS(71), 1, sym_comment, - ACTIONS(6969), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(6941), 1, anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, ACTIONS(7577), 1, anon_sym_PIPE, ACTIONS(7579), 1, @@ -222354,10 +224882,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(7595), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, ACTIONS(7569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -222380,7 +224904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(6939), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222392,28 +224916,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [169455] = 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [172163] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(1340), 13, + ACTIONS(7156), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, anon_sym_PIPE, + ACTIONS(7579), 1, anon_sym_CARET, + ACTIONS(7581), 1, anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1342), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7571), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222425,18 +224978,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [169499] = 3, + [172239] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7166), 14, + ACTIONS(1340), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -222451,7 +224996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7164), 22, + ACTIONS(1342), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -222471,13 +225016,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [169543] = 3, + [172283] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7162), 14, + ACTIONS(1324), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -222492,7 +225037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7160), 22, + ACTIONS(1326), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -222515,69 +225060,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [169587] = 3, + [172327] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 13, + ACTIONS(6992), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, anon_sym_PIPE, + ACTIONS(7579), 1, anon_sym_CARET, + ACTIONS(7581), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(7595), 1, anon_sym_STAR_STAR, - ACTIONS(1314), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(7583), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [169631] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1308), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1310), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7571), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222589,18 +225117,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [169675] = 3, + [172403] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 13, + ACTIONS(1332), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -222614,9 +225135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1306), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1334), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -222631,35 +225150,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [169719] = 3, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [172447] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 13, + ACTIONS(6994), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, anon_sym_PIPE, + ACTIONS(7579), 1, anon_sym_CARET, + ACTIONS(7581), 1, anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1310), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7571), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222671,18 +225215,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [169763] = 3, + [172523] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1336), 13, + ACTIONS(1352), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -222696,9 +225233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1338), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1354), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -222713,58 +225248,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [169807] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1330), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 31, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [169851] = 3, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [172567] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1320), 13, + ACTIONS(1292), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -222778,9 +225274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1322), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1294), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -222795,75 +225289,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [169895] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1358), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 31, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [169939] = 3, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [172611] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 14, + ACTIONS(6996), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, anon_sym_PIPE, + ACTIONS(7579), 1, anon_sym_CARET, + ACTIONS(7581), 1, anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1310), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7571), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222875,36 +225354,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [169983] = 3, + [172687] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 14, + ACTIONS(6998), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, anon_sym_PIPE, + ACTIONS(7579), 1, anon_sym_CARET, + ACTIONS(7581), 1, anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1306), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7571), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222916,36 +225411,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [170027] = 3, + [172763] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 14, + ACTIONS(7030), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, anon_sym_PIPE, + ACTIONS(7579), 1, anon_sym_CARET, + ACTIONS(7581), 1, anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1310), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7571), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222957,60 +225468,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [170071] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1346), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 31, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [170115] = 19, + [172839] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7017), 1, + ACTIONS(6935), 1, anon_sym_RBRACK, ACTIONS(7567), 1, anon_sym_EQ, @@ -223064,33 +225525,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [170191] = 8, + [172915] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7607), 1, - anon_sym_STAR_STAR, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7601), 2, + ACTIONS(1328), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7603), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7605), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6791), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6789), 20, - sym_test_operator, + anon_sym_STAR_STAR, + ACTIONS(1330), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223108,53 +225563,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [170245] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1318), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 31, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [170289] = 19, + [172959] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7031), 1, + ACTIONS(7000), 1, anon_sym_RBRACK, ACTIONS(7567), 1, anon_sym_EQ, @@ -223208,138 +225623,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [170365] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1241), 1, - sym_file_descriptor, - ACTIONS(4084), 1, - anon_sym_DQUOTE, - ACTIONS(7613), 1, - sym_variable_name, - STATE(4606), 1, - sym_string, - ACTIONS(7611), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7609), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_BQUOTE, - [170419] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 1, - sym_file_descriptor, - ACTIONS(4084), 1, - anon_sym_DQUOTE, - ACTIONS(7613), 1, - sym_variable_name, - STATE(4606), 1, - sym_string, - ACTIONS(7611), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7609), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_BQUOTE, - [170473] = 16, + [173035] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7102), 1, + ACTIONS(7154), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, anon_sym_EQ, - ACTIONS(7617), 1, + ACTIONS(7573), 1, anon_sym_PIPE_PIPE, - ACTIONS(7619), 1, + ACTIONS(7575), 1, anon_sym_AMP_AMP, - ACTIONS(7621), 1, + ACTIONS(7577), 1, anon_sym_PIPE, - ACTIONS(7623), 1, + ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(7625), 1, + ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7639), 1, + ACTIONS(7595), 1, anon_sym_STAR_STAR, - ACTIONS(7615), 2, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7627), 2, + ACTIONS(7583), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7629), 2, + ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7631), 2, + ACTIONS(7587), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7633), 2, + ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7635), 2, + ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7637), 3, + ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7100), 14, + ACTIONS(7571), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223351,13 +225680,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [170543] = 3, + [173111] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7448), 13, + ACTIONS(1356), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -223371,9 +225698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7450), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1358), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -223388,17 +225713,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [170587] = 3, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [173155] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7002), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [173231] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7166), 14, + ACTIONS(1340), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -223413,7 +225796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7164), 22, + ACTIONS(1342), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -223433,13 +225816,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [170631] = 3, + [173275] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 14, + ACTIONS(1344), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -223454,7 +225837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1306), 22, + ACTIONS(1346), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -223477,10 +225860,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [170675] = 19, + [173319] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7015), 1, + ACTIONS(7004), 1, anon_sym_RBRACK, ACTIONS(7567), 1, anon_sym_EQ, @@ -223534,33 +225917,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [170751] = 8, + [173395] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7607), 1, - anon_sym_STAR_STAR, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7601), 2, + ACTIONS(1356), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7603), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7605), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6791), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6789), 20, - sym_test_operator, + anon_sym_STAR_STAR, + ACTIONS(1358), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223578,12 +225955,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [170805] = 3, + [173439] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7162), 14, + ACTIONS(1324), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -223598,7 +225976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7160), 22, + ACTIONS(1326), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -223621,52 +225999,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [170849] = 19, + [173483] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6883), 1, + ACTIONS(7162), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(7573), 1, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, + ACTIONS(7575), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + ACTIONS(7577), 1, anon_sym_PIPE, - ACTIONS(6895), 1, + ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(6897), 1, + ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(6911), 1, + ACTIONS(7595), 1, anon_sym_STAR_STAR, - ACTIONS(6913), 1, + ACTIONS(7597), 1, anon_sym_EQ_TILDE, - ACTIONS(6915), 1, + ACTIONS(7599), 1, anon_sym_QMARK, - ACTIONS(7641), 1, - anon_sym_COLON, - ACTIONS(6885), 2, + ACTIONS(7569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(7583), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(7587), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + ACTIONS(7571), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223678,15 +226056,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [170925] = 5, + [173559] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7645), 1, - anon_sym_STAR_STAR, - ACTIONS(7643), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7248), 12, + ACTIONS(7133), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -223699,9 +226073,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7274), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + anon_sym_STAR_STAR, + ACTIONS(7131), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223714,41 +226089,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [170973] = 9, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [173603] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7607), 1, + ACTIONS(7014), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, anon_sym_STAR_STAR, - ACTIONS(7647), 1, - sym_test_operator, - ACTIONS(6793), 2, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7601), 2, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7603), 2, + ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7605), 3, + ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6791), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6789), 19, + ACTIONS(7571), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223760,23 +226154,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [171029] = 5, + [173679] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7645), 1, - anon_sym_STAR_STAR, - ACTIONS(7643), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7248), 12, + ACTIONS(1340), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -223789,9 +226170,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7274), 21, - anon_sym_RPAREN_RPAREN, + anon_sym_STAR_STAR, + ACTIONS(1342), 23, anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223811,31 +226194,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [171077] = 6, + anon_sym_RPAREN, + [173723] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(7645), 1, - anon_sym_STAR_STAR, - ACTIONS(7643), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7649), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7248), 9, + ACTIONS(6476), 1, + sym_word, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6490), 1, + anon_sym_DOLLAR, + ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, + aux_sym_number_token2, + ACTIONS(6502), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6510), 1, + sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(7200), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7202), 1, + sym__special_character, + ACTIONS(7204), 1, + anon_sym_DQUOTE, + ACTIONS(7208), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7210), 1, + anon_sym_BQUOTE, + ACTIONS(7212), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(6931), 1, + sym_last_case_item, + ACTIONS(7196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7206), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7214), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3468), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [173809] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7016), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, anon_sym_PIPE, + ACTIONS(7579), 1, anon_sym_CARET, + ACTIONS(7581), 1, anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7274), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223847,86 +226314,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [171127] = 7, + [173885] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(7645), 1, - anon_sym_STAR_STAR, - ACTIONS(7643), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7651), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7649), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7248), 7, + ACTIONS(7647), 1, anon_sym_PIPE, + ACTIONS(7649), 1, anon_sym_CARET, + ACTIONS(7651), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7274), 21, + ACTIONS(7665), 1, + anon_sym_STAR_STAR, + ACTIONS(7420), 2, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(7639), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7643), 2, anon_sym_PIPE_PIPE, anon_sym_DASHo, + ACTIONS(7645), 2, anon_sym_AMP_AMP, anon_sym_DASHa, + ACTIONS(7653), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [171179] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7645), 1, - anon_sym_STAR_STAR, - ACTIONS(7643), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7651), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7653), 2, + ACTIONS(7655), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7657), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7659), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7649), 3, + ACTIONS(7661), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7248), 5, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7274), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(7641), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223938,45 +226368,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [171233] = 10, + [173955] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7645), 1, - anon_sym_STAR_STAR, - ACTIONS(7643), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7651), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7653), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7655), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7657), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7248), 3, + ACTIONS(1292), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(7649), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7274), 19, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + anon_sym_STAR_STAR, + ACTIONS(1294), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223989,16 +226401,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [171291] = 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [173999] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1340), 14, - anon_sym_EQ, + ACTIONS(7470), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -224012,7 +226426,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1342), 22, + ACTIONS(7472), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -224027,18 +226443,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [171335] = 19, + [174043] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7013), 1, + ACTIONS(6937), 1, anon_sym_RBRACK, ACTIONS(7567), 1, anon_sym_EQ, @@ -224092,40 +226507,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [171411] = 11, + [174119] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7645), 1, - anon_sym_STAR_STAR, - ACTIONS(7643), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7651), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7653), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7655), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7657), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7659), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7248), 3, + ACTIONS(1328), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(7649), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7274), 17, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + anon_sym_STAR_STAR, + ACTIONS(1330), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224138,85 +226540,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - [171471] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [174163] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1261), 12, + ACTIONS(7534), 13, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1263), 24, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [171515] = 12, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7645), 1, - anon_sym_STAR_STAR, - ACTIONS(7661), 1, - anon_sym_AMP, - ACTIONS(7248), 2, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(7643), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7651), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7653), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7655), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7657), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7659), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7649), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7274), 17, + anon_sym_STAR_STAR, + ACTIONS(7536), 23, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224232,11 +226585,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASHo, anon_sym_AMP_AMP, anon_sym_DASHa, - [171577] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [174207] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6820), 14, - anon_sym_EQ, + ACTIONS(7470), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -224250,7 +226606,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6818), 22, + ACTIONS(7472), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -224265,18 +226623,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [171621] = 19, + [174251] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7055), 1, + ACTIONS(7022), 1, anon_sym_RBRACK, ACTIONS(7567), 1, anon_sym_EQ, @@ -224330,68 +226687,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [171697] = 3, + [174327] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(1344), 13, + ACTIONS(7056), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, anon_sym_PIPE, + ACTIONS(7579), 1, anon_sym_CARET, + ACTIONS(7581), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(7595), 1, anon_sym_STAR_STAR, - ACTIONS(1346), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(7583), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [171741] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1336), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1338), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7571), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224403,19 +226744,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [171785] = 19, + [174403] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7011), 1, + ACTIONS(6980), 1, anon_sym_RBRACK, ACTIONS(7567), 1, anon_sym_EQ, @@ -224469,28 +226801,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [171861] = 3, + [174479] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(1356), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7675), 1, + anon_sym_STAR_STAR, + ACTIONS(7667), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7669), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7671), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7673), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1358), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6955), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6953), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224503,68 +226839,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [171905] = 13, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [174533] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7248), 1, - anon_sym_PIPE, - ACTIONS(7645), 1, - anon_sym_STAR_STAR, - ACTIONS(7661), 1, - anon_sym_AMP, - ACTIONS(7663), 1, - anon_sym_CARET, - ACTIONS(7643), 2, + ACTIONS(7667), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7651), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7653), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7655), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7657), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7659), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7649), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7274), 17, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - [171969] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1328), 14, + ACTIONS(6955), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -224579,9 +226868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1330), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6953), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224599,45 +226886,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [172013] = 13, + [174579] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7645), 1, - anon_sym_STAR_STAR, - ACTIONS(7661), 1, - anon_sym_AMP, - ACTIONS(7663), 1, - anon_sym_CARET, - ACTIONS(7665), 1, + ACTIONS(7032), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, anon_sym_PIPE, - ACTIONS(7643), 2, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7651), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7653), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7655), 2, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7657), 2, + ACTIONS(7587), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7659), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7649), 3, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7274), 17, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(7571), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224649,49 +226946,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - [172077] = 14, + [174655] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(7645), 1, + ACTIONS(7675), 1, anon_sym_STAR_STAR, - ACTIONS(7661), 1, - anon_sym_AMP, - ACTIONS(7663), 1, - anon_sym_CARET, - ACTIONS(7665), 1, - anon_sym_PIPE, - ACTIONS(7643), 2, + ACTIONS(7667), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7651), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7653), 2, + ACTIONS(7669), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7655), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7657), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7659), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7667), 2, - anon_sym_AMP_AMP, - anon_sym_DASHa, - ACTIONS(7649), 3, + ACTIONS(7671), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7673), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7274), 15, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(6955), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6953), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224704,49 +226984,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, - [172143] = 15, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [174709] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7645), 1, - anon_sym_STAR_STAR, - ACTIONS(7661), 1, - anon_sym_AMP, - ACTIONS(7663), 1, - anon_sym_CARET, - ACTIONS(7665), 1, + ACTIONS(7034), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, anon_sym_PIPE, - ACTIONS(7643), 2, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7651), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7653), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7655), 2, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7657), 2, + ACTIONS(7587), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7659), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7667), 2, - anon_sym_AMP_AMP, - anon_sym_DASHa, - ACTIONS(7669), 2, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - ACTIONS(7649), 3, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7274), 13, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(7571), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224758,11 +227049,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [172211] = 3, + [174785] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6829), 14, - anon_sym_EQ, + ACTIONS(1292), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -224776,7 +227066,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6827), 22, + ACTIONS(1294), 23, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -224791,24 +227082,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, + [174829] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1235), 1, + sym_file_descriptor, + ACTIONS(3630), 1, + anon_sym_DQUOTE, + ACTIONS(7194), 1, + sym_variable_name, + STATE(4297), 1, + sym_string, + ACTIONS(7192), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7190), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [174883] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7036), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, anon_sym_EQ_TILDE, + ACTIONS(7599), 1, anon_sym_QMARK, - [172255] = 3, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [174959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 5, + ACTIONS(1326), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 31, + ACTIONS(1324), 31, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -224840,16 +227234,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [172299] = 3, + [175003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 5, + ACTIONS(1302), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 31, + ACTIONS(1300), 31, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -224881,92 +227275,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [172343] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1312), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1314), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [172387] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1344), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1346), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [172431] = 19, + [175047] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7009), 1, + ACTIONS(7038), 1, anon_sym_RBRACK, ACTIONS(7567), 1, anon_sym_EQ, @@ -225020,22 +227332,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [172507] = 3, + [175123] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 5, + ACTIONS(1241), 1, sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 31, - anon_sym_LPAREN_LPAREN, + ACTIONS(3630), 1, + anon_sym_DQUOTE, + ACTIONS(7194), 1, + sym_variable_name, + STATE(4297), 1, + sym_string, + ACTIONS(7192), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7190), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -225043,34 +227375,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [172551] = 3, + [175177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(1322), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 31, + ACTIONS(1320), 31, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -225102,56 +227419,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [172595] = 8, - ACTIONS(3), 1, + [175221] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(7673), 1, - anon_sym_DQUOTE, - ACTIONS(7677), 1, - sym_variable_name, - STATE(4393), 1, - sym_string, - ACTIONS(1241), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(7675), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7671), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 20, - anon_sym_SEMI, + ACTIONS(7048), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, anon_sym_AMP_AMP, + ACTIONS(7577), 1, anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [172649] = 3, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [175297] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7244), 13, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6941), 13, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -225164,12 +227498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7246), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6939), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225182,23 +227511,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [172693] = 3, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [175345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 5, + ACTIONS(1350), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 31, + ACTIONS(1348), 31, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -225230,73 +227560,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [172737] = 8, - ACTIONS(3), 1, + [175389] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(7673), 1, - anon_sym_DQUOTE, + ACTIONS(7675), 1, + anon_sym_STAR_STAR, ACTIONS(7677), 1, - sym_variable_name, - STATE(4393), 1, - sym_string, - ACTIONS(1235), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(7675), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7671), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 20, - anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(7681), 1, anon_sym_PIPE_PIPE, + ACTIONS(7683), 1, anon_sym_AMP_AMP, + ACTIONS(7685), 1, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [172791] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6820), 14, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(7687), 1, anon_sym_CARET, + ACTIONS(7689), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7697), 1, + anon_sym_RPAREN, + ACTIONS(7699), 1, + anon_sym_EQ_TILDE, + ACTIONS(7701), 1, + anon_sym_QMARK, + ACTIONS(7667), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7669), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7671), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7691), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7693), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7695), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7673), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6818), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7679), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225308,36 +227617,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [172835] = 3, + [175465] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6829), 14, + ACTIONS(7050), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, anon_sym_PIPE, + ACTIONS(7579), 1, anon_sym_CARET, + ACTIONS(7581), 1, anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6827), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7571), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225349,81 +227674,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [175541] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6945), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [172879] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6474), 1, - sym_word, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, - anon_sym_DOLLAR, - ACTIONS(6494), 1, - aux_sym_number_token1, - ACTIONS(6496), 1, - aux_sym_number_token2, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, - sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, - sym__brace_start, - ACTIONS(7226), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, - sym__special_character, - ACTIONS(7230), 1, - anon_sym_DQUOTE, - ACTIONS(7234), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, - anon_sym_BQUOTE, - ACTIONS(7238), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6426), 1, - aux_sym__literal_repeat1, - STATE(6851), 1, - sym_last_case_item, - ACTIONS(7224), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7240), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3477), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6303), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [172965] = 3, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7571), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [175617] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 14, + ACTIONS(1348), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -225438,7 +227749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1310), 22, + ACTIONS(1350), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -225461,52 +227772,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [173009] = 19, + [175661] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7007), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7675), 1, + anon_sym_STAR_STAR, + ACTIONS(7677), 1, anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7681), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7683), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7685), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7687), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7689), 1, anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7597), 1, + ACTIONS(7699), 1, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, + ACTIONS(7701), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7703), 1, + anon_sym_RPAREN, + ACTIONS(7667), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7669), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7671), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7691), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7693), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7695), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7591), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7673), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7679), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225518,164 +227829,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [173085] = 24, + [175737] = 11, ACTIONS(71), 1, sym_comment, - ACTIONS(6474), 1, - sym_word, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, - anon_sym_DOLLAR, - ACTIONS(6494), 1, - aux_sym_number_token1, - ACTIONS(6496), 1, - aux_sym_number_token2, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, - sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, - sym__brace_start, - ACTIONS(7226), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, - sym__special_character, - ACTIONS(7230), 1, - anon_sym_DQUOTE, - ACTIONS(7234), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, - anon_sym_BQUOTE, - ACTIONS(7238), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6426), 1, - aux_sym__literal_repeat1, - STATE(6824), 1, - sym_last_case_item, - ACTIONS(7224), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7240), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3477), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6303), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [173171] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1241), 1, - sym_file_descriptor, - ACTIONS(7673), 1, - anon_sym_DQUOTE, - ACTIONS(7677), 1, - sym_variable_name, - STATE(4393), 1, - sym_string, - ACTIONS(7675), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7671), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(7605), 1, + anon_sym_STAR_STAR, + ACTIONS(7601), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7619), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7621), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7623), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7625), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [173225] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 1, - sym_file_descriptor, - ACTIONS(7673), 1, - anon_sym_DQUOTE, - ACTIONS(7677), 1, - sym_variable_name, - STATE(4393), 1, - sym_string, - ACTIONS(7675), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7671), 9, + ACTIONS(7627), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7508), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7603), 3, anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 21, - anon_sym_SEMI, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7510), 17, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_DASHa, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [173279] = 19, + [175797] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7066), 1, + ACTIONS(7058), 1, anon_sym_RBRACK, ACTIONS(7567), 1, anon_sym_EQ, @@ -225729,57 +227935,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [173355] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4084), 1, - anon_sym_DQUOTE, - ACTIONS(7613), 1, - sym_variable_name, - STATE(4606), 1, - sym_string, - ACTIONS(1241), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(7611), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7609), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [173409] = 3, + [175873] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1356), 14, - anon_sym_EQ, + ACTIONS(1324), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -225793,51 +227952,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1358), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [173453] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7615), 2, + ACTIONS(1326), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7139), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7137), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225850,64 +227969,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [173499] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4084), 1, - anon_sym_DQUOTE, - ACTIONS(7613), 1, - sym_variable_name, - STATE(4606), 1, - sym_string, - ACTIONS(1235), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(7611), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7609), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [173553] = 19, + [175917] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7005), 1, + ACTIONS(7063), 1, anon_sym_RBRACK, ACTIONS(7567), 1, anon_sym_EQ, @@ -225961,10 +228033,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [173629] = 3, + [175993] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1328), 13, + ACTIONS(6837), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -225978,9 +228051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1330), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(6835), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -225995,23 +228066,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [173673] = 5, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [176037] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7639), 1, - anon_sym_STAR_STAR, - ACTIONS(7615), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7139), 13, - anon_sym_EQ, + ACTIONS(1348), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -226024,7 +228090,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7137), 20, + anon_sym_STAR_STAR, + ACTIONS(1350), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226037,27 +228107,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [173721] = 6, + [176081] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(7639), 1, - anon_sym_STAR_STAR, - ACTIONS(7615), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7637), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7139), 10, + ACTIONS(6476), 1, + sym_word, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6490), 1, + anon_sym_DOLLAR, + ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, + aux_sym_number_token2, + ACTIONS(6502), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6510), 1, + sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(7200), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7202), 1, + sym__special_character, + ACTIONS(7204), 1, + anon_sym_DQUOTE, + ACTIONS(7208), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7210), 1, + anon_sym_BQUOTE, + ACTIONS(7212), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(7316), 1, + sym_last_case_item, + ACTIONS(7196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7206), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7214), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3468), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [176167] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7152), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -226068,7 +228191,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7137), 20, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7150), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226089,22 +228218,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [173771] = 7, + [176211] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7639), 1, - anon_sym_STAR_STAR, - ACTIONS(7615), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7635), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7637), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7139), 8, + ACTIONS(6819), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -226113,7 +228230,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7137), 20, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6817), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226134,32 +228259,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [173823] = 8, + [176255] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7639), 1, - anon_sym_STAR_STAR, - ACTIONS(7615), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7633), 2, + ACTIONS(1332), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7637), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7139), 6, + anon_sym_STAR_STAR, + ACTIONS(1334), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [176299] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7054), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(7137), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7052), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226180,51 +228341,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [173877] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1310), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 31, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [173921] = 3, + [176343] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 14, + ACTIONS(7073), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -226239,7 +228359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1310), 22, + ACTIONS(7071), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -226259,13 +228379,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [173965] = 19, + [176387] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4078), 1, + anon_sym_DQUOTE, + ACTIONS(7611), 1, + sym_variable_name, + STATE(4444), 1, + sym_string, + ACTIONS(1241), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(7609), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7607), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [176441] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7003), 1, + ACTIONS(7067), 1, anon_sym_RBRACK, ACTIONS(7567), 1, anon_sym_EQ, @@ -226319,69 +228485,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [174041] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1306), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 31, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [174085] = 3, + [176517] = 10, ACTIONS(71), 1, sym_comment, - ACTIONS(1316), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7605), 1, + anon_sym_STAR_STAR, + ACTIONS(7601), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7621), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7623), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7625), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7627), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7508), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7603), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1318), 23, - anon_sym_RPAREN_RPAREN, + ACTIONS(7510), 19, anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226399,29 +228532,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [174129] = 3, + anon_sym_RPAREN, + [176575] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7605), 1, + anon_sym_STAR_STAR, + ACTIONS(7601), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7625), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7627), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7603), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1314), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7508), 5, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7510), 21, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226434,24 +228571,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [174173] = 3, + [176629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1334), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 31, + ACTIONS(1332), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [176673] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1354), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1352), 31, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -226483,10 +228661,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [174217] = 19, + [176717] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7001), 1, + ACTIONS(6984), 1, anon_sym_RBRACK, ACTIONS(7567), 1, anon_sym_EQ, @@ -226540,36 +228718,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [174293] = 10, + [176793] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7639), 1, - anon_sym_STAR_STAR, - ACTIONS(7615), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7629), 2, + ACTIONS(7548), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(7631), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7633), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7637), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7139), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(7137), 18, + anon_sym_STAR_STAR, + ACTIONS(7550), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226582,45 +228751,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [174351] = 11, + [176837] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7639), 1, - anon_sym_STAR_STAR, - ACTIONS(7615), 2, + ACTIONS(7569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7627), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7629), 2, + ACTIONS(6941), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(7631), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7633), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7637), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7139), 4, - anon_sym_EQ, + anon_sym_STAR_STAR, + ACTIONS(6939), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [176883] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1328), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(7137), 16, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1330), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226633,14 +228835,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [174411] = 19, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [176927] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6999), 1, + ACTIONS(6947), 1, anon_sym_RBRACK, ACTIONS(7567), 1, anon_sym_EQ, @@ -226694,40 +228899,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [174487] = 12, - ACTIONS(71), 1, + [177003] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(7625), 1, + ACTIONS(7631), 1, + anon_sym_DQUOTE, + ACTIONS(7635), 1, + sym_variable_name, + STATE(4316), 1, + sym_string, + ACTIONS(1235), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(7633), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7629), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7639), 1, - anon_sym_STAR_STAR, - ACTIONS(7615), 2, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [177057] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1338), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1336), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [177101] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7639), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7627), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7629), 2, + ACTIONS(7522), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(7631), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7633), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7139), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(7637), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7137), 16, + anon_sym_STAR_STAR, + ACTIONS(7524), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226740,45 +229021,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [174549] = 13, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [177147] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7623), 1, + ACTIONS(7542), 13, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(7625), 1, anon_sym_AMP, - ACTIONS(7639), 1, - anon_sym_STAR_STAR, - ACTIONS(7139), 2, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(7615), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7627), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7629), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7631), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7633), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7637), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7137), 16, + anon_sym_STAR_STAR, + ACTIONS(7544), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226791,46 +229062,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [177191] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7631), 1, + anon_sym_DQUOTE, + ACTIONS(7635), 1, + sym_variable_name, + STATE(4316), 1, + sym_string, + ACTIONS(1241), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(7633), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7629), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, - [174613] = 14, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [177245] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7139), 1, + ACTIONS(7158), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, anon_sym_EQ, - ACTIONS(7621), 1, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, anon_sym_PIPE, - ACTIONS(7623), 1, + ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(7625), 1, + ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7639), 1, + ACTIONS(7595), 1, anon_sym_STAR_STAR, - ACTIONS(7615), 2, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7627), 2, + ACTIONS(7583), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7629), 2, + ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7631), 2, + ACTIONS(7587), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7633), 2, + ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7635), 2, + ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7637), 3, + ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7137), 16, + ACTIONS(7571), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226842,49 +229172,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [174679] = 15, + [177321] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7139), 1, - anon_sym_EQ, - ACTIONS(7619), 1, - anon_sym_AMP_AMP, - ACTIONS(7621), 1, + ACTIONS(1352), 13, anon_sym_PIPE, - ACTIONS(7623), 1, anon_sym_CARET, - ACTIONS(7625), 1, anon_sym_AMP, - ACTIONS(7639), 1, - anon_sym_STAR_STAR, - ACTIONS(7615), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7627), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7629), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7631), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7633), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7637), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7137), 15, + anon_sym_STAR_STAR, + ACTIONS(1354), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226897,53 +229205,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [174747] = 18, + [177365] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7617), 1, + ACTIONS(7075), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, anon_sym_PIPE_PIPE, - ACTIONS(7619), 1, + ACTIONS(7575), 1, anon_sym_AMP_AMP, - ACTIONS(7621), 1, + ACTIONS(7577), 1, anon_sym_PIPE, - ACTIONS(7623), 1, + ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(7625), 1, + ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7639), 1, + ACTIONS(7595), 1, anon_sym_STAR_STAR, - ACTIONS(7679), 1, - anon_sym_EQ, - ACTIONS(7681), 1, + ACTIONS(7597), 1, anon_sym_EQ_TILDE, - ACTIONS(7683), 1, + ACTIONS(7599), 1, anon_sym_QMARK, - ACTIONS(7615), 2, + ACTIONS(7569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7627), 2, + ACTIONS(7583), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7629), 2, + ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7631), 2, + ACTIONS(7587), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7633), 2, + ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7635), 2, + ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7637), 3, + ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7137), 12, + ACTIONS(7571), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226955,49 +229270,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RPAREN, - [174821] = 17, + [177441] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7139), 1, + ACTIONS(6899), 1, anon_sym_EQ, - ACTIONS(7617), 1, + ACTIONS(6905), 1, anon_sym_PIPE_PIPE, - ACTIONS(7619), 1, + ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(7621), 1, + ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(7623), 1, + ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(7625), 1, + ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(7639), 1, + ACTIONS(6927), 1, anon_sym_STAR_STAR, - ACTIONS(7683), 1, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, anon_sym_QMARK, - ACTIONS(7615), 2, + ACTIONS(7705), 1, + anon_sym_COLON, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7627), 2, + ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7629), 2, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7631), 2, + ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7633), 2, + ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7635), 2, + ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7637), 3, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7137), 13, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227009,12 +229327,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - [174893] = 3, + [177517] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1316), 14, + ACTIONS(1336), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -227029,7 +229345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1318), 22, + ACTIONS(1338), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -227052,10 +229368,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [174937] = 19, + [177561] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1330), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1328), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [177605] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6997), 1, + ACTIONS(6949), 1, anon_sym_RBRACK, ACTIONS(7567), 1, anon_sym_EQ, @@ -227109,67 +229466,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [175013] = 8, - ACTIONS(3), 1, + [177681] = 13, + ACTIONS(71), 1, sym_comment, - ACTIONS(1241), 1, - sym_file_descriptor, - ACTIONS(7673), 1, - anon_sym_DQUOTE, - ACTIONS(7677), 1, - sym_variable_name, - STATE(4393), 1, - sym_string, - ACTIONS(7675), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7671), 9, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(6941), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7593), 3, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6939), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 21, - anon_sym_SEMI, + [177745] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1348), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1350), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [177789] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1320), 13, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_BQUOTE, - [175067] = 8, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1322), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [177833] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1235), 1, sym_file_descriptor, - ACTIONS(7673), 1, + ACTIONS(7631), 1, anon_sym_DQUOTE, - ACTIONS(7677), 1, + ACTIONS(7635), 1, sym_variable_name, - STATE(4393), 1, + STATE(4316), 1, sym_string, - ACTIONS(7675), 2, + ACTIONS(7633), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7671), 9, + ACTIONS(7629), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -227189,6 +229633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -227200,11 +229645,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - anon_sym_BQUOTE, - [175121] = 3, + [177887] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7114), 14, + ACTIONS(1344), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -227219,7 +229663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7112), 22, + ACTIONS(1346), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -227242,10 +229686,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [175165] = 3, + [177931] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7465), 13, + ACTIONS(1356), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -227259,7 +229703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7467), 23, + ACTIONS(1358), 23, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -227283,10 +229727,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [175209] = 19, + [177975] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1241), 1, + sym_file_descriptor, + ACTIONS(7631), 1, + anon_sym_DQUOTE, + ACTIONS(7635), 1, + sym_variable_name, + STATE(4316), 1, + sym_string, + ACTIONS(7633), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7629), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [178029] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6995), 1, + ACTIONS(7170), 1, anon_sym_RBRACK, ACTIONS(7567), 1, anon_sym_EQ, @@ -227340,10 +229830,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [175285] = 19, + [178105] = 17, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6941), 1, + anon_sym_EQ, + ACTIONS(7675), 1, + anon_sym_STAR_STAR, + ACTIONS(7681), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7683), 1, + anon_sym_AMP_AMP, + ACTIONS(7685), 1, + anon_sym_PIPE, + ACTIONS(7687), 1, + anon_sym_CARET, + ACTIONS(7689), 1, + anon_sym_AMP, + ACTIONS(7701), 1, + anon_sym_QMARK, + ACTIONS(7667), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7669), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7671), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7691), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7693), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7695), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7673), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6939), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + [178177] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7070), 1, + ACTIONS(7083), 1, anon_sym_RBRACK, ACTIONS(7567), 1, anon_sym_EQ, @@ -227397,27 +229942,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [175361] = 3, + [178253] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(1316), 13, + ACTIONS(7675), 1, + anon_sym_STAR_STAR, + ACTIONS(7677), 1, + anon_sym_EQ, + ACTIONS(7681), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7683), 1, + anon_sym_AMP_AMP, + ACTIONS(7685), 1, anon_sym_PIPE, + ACTIONS(7687), 1, anon_sym_CARET, + ACTIONS(7689), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7699), 1, + anon_sym_EQ_TILDE, + ACTIONS(7701), 1, + anon_sym_QMARK, + ACTIONS(7667), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7669), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7671), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7691), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7693), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7695), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7673), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1318), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6939), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227429,38 +229997,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_RPAREN, - [175405] = 4, + [178327] = 15, ACTIONS(71), 1, sym_comment, - ACTIONS(7643), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7469), 13, + ACTIONS(6941), 1, + anon_sym_EQ, + ACTIONS(7675), 1, + anon_sym_STAR_STAR, + ACTIONS(7683), 1, + anon_sym_AMP_AMP, + ACTIONS(7685), 1, anon_sym_PIPE, + ACTIONS(7687), 1, anon_sym_CARET, + ACTIONS(7689), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7667), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7669), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7671), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7691), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7693), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7695), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7673), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7471), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(6939), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227473,34 +230048,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [175451] = 3, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [178395] = 14, ACTIONS(71), 1, sym_comment, - ACTIONS(7106), 14, + ACTIONS(6941), 1, anon_sym_EQ, + ACTIONS(7675), 1, + anon_sym_STAR_STAR, + ACTIONS(7685), 1, anon_sym_PIPE, + ACTIONS(7687), 1, anon_sym_CARET, + ACTIONS(7689), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7667), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7669), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7671), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7691), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7693), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7695), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7673), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7104), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6939), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227514,39 +230100,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [175495] = 8, + [178461] = 13, ACTIONS(71), 1, sym_comment, - ACTIONS(7639), 1, + ACTIONS(7675), 1, anon_sym_STAR_STAR, - ACTIONS(7615), 2, + ACTIONS(7687), 1, + anon_sym_CARET, + ACTIONS(7689), 1, + anon_sym_AMP, + ACTIONS(6941), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(7667), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7633), 2, + ACTIONS(7669), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7635), 2, + ACTIONS(7671), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7637), 3, + ACTIONS(7691), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7693), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7695), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7673), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7096), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7094), 20, + ACTIONS(6939), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227560,34 +230151,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [175549] = 3, + [178525] = 17, ACTIONS(71), 1, sym_comment, - ACTIONS(1320), 14, + ACTIONS(6941), 1, anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, anon_sym_PIPE, + ACTIONS(7579), 1, anon_sym_CARET, + ACTIONS(7581), 1, anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1322), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6939), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227599,36 +230207,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_RBRACK, anon_sym_EQ_TILDE, - anon_sym_QMARK, - [175593] = 3, + [178597] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(1320), 13, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(7675), 1, + anon_sym_STAR_STAR, + ACTIONS(7689), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7667), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7669), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7671), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7691), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7693), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7695), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6941), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7673), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1322), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6939), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227641,36 +230255,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_RPAREN, - [175637] = 4, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [178659] = 11, ACTIONS(71), 1, sym_comment, - ACTIONS(7615), 2, + ACTIONS(7675), 1, + anon_sym_STAR_STAR, + ACTIONS(7667), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7096), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7669), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7671), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7691), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7693), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7695), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7673), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7094), 20, + ACTIONS(6941), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(6939), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227684,34 +230305,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [175683] = 3, + [178719] = 10, ACTIONS(71), 1, sym_comment, - ACTIONS(1328), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7675), 1, + anon_sym_STAR_STAR, + ACTIONS(7667), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7669), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7671), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7693), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7695), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7673), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1330), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6941), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(6939), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227724,40 +230350,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_RPAREN, - [175727] = 8, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [178777] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(7639), 1, + ACTIONS(7675), 1, anon_sym_STAR_STAR, - ACTIONS(7615), 2, + ACTIONS(7667), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7633), 2, + ACTIONS(7669), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7635), 2, + ACTIONS(7671), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7637), 3, + ACTIONS(7673), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7096), 6, + ACTIONS(6941), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(7094), 20, + ACTIONS(6939), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227778,67 +230402,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [175781] = 19, + [178831] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(6993), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, - anon_sym_PIPE, - ACTIONS(7579), 1, - anon_sym_CARET, - ACTIONS(7581), 1, - anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7675), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7667), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7671), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7673), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [175857] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7489), 13, + ACTIONS(6941), 8, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -227846,17 +230426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7491), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6939), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227869,17 +230439,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [175901] = 3, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [178883] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(7501), 13, + ACTIONS(7675), 1, + anon_sym_STAR_STAR, + ACTIONS(7667), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7673), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6941), 10, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -227889,15 +230470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7503), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6939), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227910,17 +230483,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [175945] = 3, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [178933] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1316), 14, + ACTIONS(7675), 1, + anon_sym_STAR_STAR, + ACTIONS(7667), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6941), 13, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -227934,10 +230513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1318), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6939), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227958,10 +230534,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [175989] = 3, + [178981] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1352), 14, + ACTIONS(7667), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6941), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -227976,9 +230555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1354), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6939), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227996,13 +230573,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [176033] = 19, + [179027] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6991), 1, + ACTIONS(6951), 1, anon_sym_RBRACK, ACTIONS(7567), 1, anon_sym_EQ, @@ -228056,146 +230633,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [176109] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7489), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7491), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [176153] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1340), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1342), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [176197] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7645), 1, - anon_sym_STAR_STAR, - ACTIONS(7661), 1, - anon_sym_AMP, - ACTIONS(7663), 1, - anon_sym_CARET, - ACTIONS(7665), 1, - anon_sym_PIPE, - ACTIONS(7511), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - ACTIONS(7643), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7651), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7653), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7655), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7657), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7659), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7667), 2, - anon_sym_AMP_AMP, - anon_sym_DASHa, - ACTIONS(7669), 2, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - ACTIONS(7649), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7685), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [176267] = 19, + [179103] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6987), 1, + ACTIONS(6895), 1, anon_sym_RBRACK, ACTIONS(7567), 1, anon_sym_EQ, @@ -228249,10 +230690,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [176343] = 3, + [179179] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(1320), 14, + ACTIONS(6476), 1, + sym_word, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6490), 1, + anon_sym_DOLLAR, + ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, + aux_sym_number_token2, + ACTIONS(6502), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6510), 1, + sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(7200), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7202), 1, + sym__special_character, + ACTIONS(7204), 1, + anon_sym_DQUOTE, + ACTIONS(7208), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7210), 1, + anon_sym_BQUOTE, + ACTIONS(7212), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(6875), 1, + sym_last_case_item, + ACTIONS(7196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7206), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7214), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3468), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [179265] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6476), 1, + sym_word, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6490), 1, + anon_sym_DOLLAR, + ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, + aux_sym_number_token2, + ACTIONS(6502), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6510), 1, + sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(7200), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7202), 1, + sym__special_character, + ACTIONS(7204), 1, + anon_sym_DQUOTE, + ACTIONS(7208), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7210), 1, + anon_sym_BQUOTE, + ACTIONS(7212), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(6887), 1, + sym_last_case_item, + ACTIONS(7196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7206), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7214), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3468), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [179351] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6837), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -228267,7 +230832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1322), 22, + ACTIONS(6835), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -228287,13 +230852,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [176387] = 3, + [179395] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1328), 14, + ACTIONS(6819), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -228308,7 +230873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1330), 22, + ACTIONS(6817), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -228328,55 +230893,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [176431] = 19, + [179439] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6985), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7504), 13, anon_sym_PIPE, - ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + anon_sym_STAR_STAR, + ACTIONS(7506), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228388,28 +230929,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [176507] = 3, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [179483] = 15, ACTIONS(71), 1, sym_comment, - ACTIONS(1352), 13, + ACTIONS(7647), 1, anon_sym_PIPE, + ACTIONS(7649), 1, anon_sym_CARET, + ACTIONS(7651), 1, anon_sym_AMP, + ACTIONS(7665), 1, + anon_sym_STAR_STAR, + ACTIONS(7639), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7643), 2, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + ACTIONS(7645), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(7653), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7655), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7657), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7659), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7661), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1354), 23, + ACTIONS(7510), 13, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228421,106 +230990,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [176551] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 1, - sym_file_descriptor, - ACTIONS(3791), 1, - anon_sym_DQUOTE, - ACTIONS(7444), 1, - sym_variable_name, - STATE(4389), 1, - sym_string, - ACTIONS(7442), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7440), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [176605] = 19, + [179551] = 14, ACTIONS(71), 1, sym_comment, - ACTIONS(6983), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7647), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7649), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7651), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7665), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7639), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7645), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(7653), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7655), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7657), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7659), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7510), 15, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228532,27 +231040,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [176681] = 3, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + [179617] = 13, ACTIONS(71), 1, sym_comment, - ACTIONS(1352), 13, + ACTIONS(7647), 1, anon_sym_PIPE, + ACTIONS(7649), 1, anon_sym_CARET, + ACTIONS(7651), 1, anon_sym_AMP, + ACTIONS(7665), 1, + anon_sym_STAR_STAR, + ACTIONS(7639), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7653), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7655), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7657), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7659), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7661), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1354), 23, + ACTIONS(7510), 17, + anon_sym_RPAREN_RPAREN, anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228568,57 +231093,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASHo, anon_sym_AMP_AMP, anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [176725] = 19, + [179681] = 13, ACTIONS(71), 1, sym_comment, - ACTIONS(6981), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7508), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7649), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7651), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7665), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7639), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7653), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7655), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7657), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7659), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7510), 17, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228630,52 +231140,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [176801] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6979), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + anon_sym_DASHo, anon_sym_AMP_AMP, - ACTIONS(7577), 1, - anon_sym_PIPE, - ACTIONS(7579), 1, - anon_sym_CARET, - ACTIONS(7581), 1, + anon_sym_DASHa, + [179745] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7651), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7665), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7508), 2, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7639), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7653), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7655), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7657), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7659), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7510), 17, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228687,52 +231190,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [176877] = 19, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + [179807] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(6977), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(1235), 1, + sym_file_descriptor, + ACTIONS(4078), 1, + anon_sym_DQUOTE, + ACTIONS(7611), 1, + sym_variable_name, + STATE(4444), 1, + sym_string, + ACTIONS(7609), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7607), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, anon_sym_PIPE, - ACTIONS(7579), 1, - anon_sym_CARET, - ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7595), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [179861] = 11, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7665), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7639), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7653), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7655), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7657), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7659), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7508), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7510), 17, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228744,52 +231285,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [176953] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6975), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + anon_sym_DASHo, anon_sym_AMP_AMP, - ACTIONS(7577), 1, - anon_sym_PIPE, - ACTIONS(7579), 1, - anon_sym_CARET, - ACTIONS(7581), 1, - anon_sym_AMP, - ACTIONS(7595), 1, + anon_sym_DASHa, + [179921] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6476), 1, + sym_word, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6490), 1, + anon_sym_DOLLAR, + ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, + aux_sym_number_token2, + ACTIONS(6502), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6510), 1, + sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(7200), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7202), 1, + sym__special_character, + ACTIONS(7204), 1, + anon_sym_DQUOTE, + ACTIONS(7208), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7210), 1, + anon_sym_BQUOTE, + ACTIONS(7212), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(7489), 1, + sym_last_case_item, + ACTIONS(7196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7206), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7214), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3468), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [180007] = 10, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7665), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7639), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7655), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7657), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7659), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7508), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7510), 19, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228801,33 +231393,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [177029] = 8, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [180065] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(7607), 1, + ACTIONS(7665), 1, anon_sym_STAR_STAR, - ACTIONS(6793), 2, + ACTIONS(7639), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7601), 2, + ACTIONS(7659), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7603), 2, + ACTIONS(7661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7605), 3, + ACTIONS(7663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6807), 6, - anon_sym_EQ, + ACTIONS(7508), 5, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6805), 20, - sym_test_operator, + ACTIONS(7510), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228840,17 +231438,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [177083] = 3, + [180119] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(1356), 13, + ACTIONS(7665), 1, + anon_sym_STAR_STAR, + ACTIONS(7639), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7661), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7663), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7508), 7, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -228858,16 +231468,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(7510), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [180171] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7665), 1, + anon_sym_STAR_STAR, + ACTIONS(7639), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1358), 23, + ACTIONS(7508), 9, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7510), 21, + anon_sym_RPAREN_RPAREN, anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228887,11 +231534,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [177127] = 3, + [180221] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1344), 13, + ACTIONS(7665), 1, + anon_sym_STAR_STAR, + ACTIONS(7639), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7508), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -228904,11 +231555,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1346), 23, + ACTIONS(7510), 21, + anon_sym_RPAREN_RPAREN, anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228928,53 +231577,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [177171] = 19, + [180269] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6973), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, - anon_sym_PIPE, - ACTIONS(7579), 1, - anon_sym_CARET, - ACTIONS(7581), 1, - anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7665), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7639), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7508), 12, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7510), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228986,10 +231612,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [177247] = 19, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [180317] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6971), 1, + ACTIONS(7085), 1, anon_sym_RBRACK, ACTIONS(7567), 1, anon_sym_EQ, @@ -229043,59 +231677,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [177323] = 24, + [180393] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(6474), 1, + ACTIONS(6476), 1, sym_word, - ACTIONS(6480), 1, + ACTIONS(6482), 1, anon_sym_LPAREN, - ACTIONS(6488), 1, + ACTIONS(6490), 1, anon_sym_DOLLAR, - ACTIONS(6494), 1, - aux_sym_number_token1, ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, aux_sym_number_token2, - ACTIONS(6500), 1, + ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, - sym_test_operator, ACTIONS(6510), 1, - sym_extglob_pattern, + sym_test_operator, ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, sym__brace_start, - ACTIONS(7226), 1, + ACTIONS(7200), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, + ACTIONS(7202), 1, sym__special_character, - ACTIONS(7230), 1, + ACTIONS(7204), 1, anon_sym_DQUOTE, - ACTIONS(7234), 1, + ACTIONS(7208), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, + ACTIONS(7210), 1, anon_sym_BQUOTE, - ACTIONS(7238), 1, + ACTIONS(7212), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6426), 1, + STATE(6459), 1, aux_sym__literal_repeat1, - STATE(7291), 1, + STATE(7494), 1, sym_last_case_item, - ACTIONS(7224), 2, + ACTIONS(7196), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, + ACTIONS(7206), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7240), 2, + ACTIONS(7214), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3477), 2, + STATE(3468), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6695), 2, + STATE(6638), 2, sym_concatenation, sym__extglob_blob, - STATE(6303), 9, + STATE(6312), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -229105,103 +231739,21 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [177409] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1294), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 31, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [177453] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1336), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1338), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [177497] = 8, + [180479] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1241), 1, sym_file_descriptor, - ACTIONS(3791), 1, + ACTIONS(4078), 1, anon_sym_DQUOTE, - ACTIONS(7444), 1, + ACTIONS(7611), 1, sym_variable_name, - STATE(4389), 1, + STATE(4444), 1, sym_string, - ACTIONS(7442), 2, + ACTIONS(7609), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7440), 9, + ACTIONS(7607), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -229221,6 +231773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -229232,51 +231785,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [177551] = 18, + [180533] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6807), 1, + ACTIONS(7054), 14, anon_sym_EQ, - ACTIONS(7607), 1, - anon_sym_STAR_STAR, - ACTIONS(7647), 1, - sym_test_operator, - ACTIONS(7687), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7689), 1, - anon_sym_AMP_AMP, - ACTIONS(7691), 1, anon_sym_PIPE, - ACTIONS(7693), 1, anon_sym_CARET, - ACTIONS(7695), 1, anon_sym_AMP, - ACTIONS(7703), 1, - anon_sym_QMARK, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7601), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7603), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7697), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7699), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7701), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7605), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 12, + anon_sym_STAR_STAR, + ACTIONS(7052), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229288,53 +231817,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, - [177625] = 19, + anon_sym_QMARK, + [180577] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6967), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7073), 14, anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, anon_sym_PIPE, - ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + anon_sym_STAR_STAR, + ACTIONS(7071), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229346,109 +231858,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [177701] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6965), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, - anon_sym_PIPE, - ACTIONS(7579), 1, - anon_sym_CARET, - ACTIONS(7581), 1, - anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7583), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7587), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7591), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7593), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7571), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [177777] = 19, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [180621] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6963), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7548), 13, anon_sym_PIPE, - ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + anon_sym_STAR_STAR, + ACTIONS(7550), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229460,103 +231900,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [177853] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7607), 1, - anon_sym_STAR_STAR, - ACTIONS(7647), 1, - sym_test_operator, - ACTIONS(7687), 1, anon_sym_PIPE_PIPE, - ACTIONS(7689), 1, + anon_sym_DASHo, anon_sym_AMP_AMP, - ACTIONS(7691), 1, - anon_sym_PIPE, - ACTIONS(7693), 1, - anon_sym_CARET, - ACTIONS(7695), 1, - anon_sym_AMP, - ACTIONS(7703), 1, - anon_sym_QMARK, - ACTIONS(7705), 1, - anon_sym_EQ, - ACTIONS(7707), 1, - anon_sym_EQ_TILDE, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7601), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7603), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7697), 2, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7699), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7701), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7605), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6805), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [177929] = 16, + [180665] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(6807), 1, - anon_sym_EQ, - ACTIONS(7607), 1, - anon_sym_STAR_STAR, - ACTIONS(7647), 1, + ACTIONS(6476), 1, + sym_word, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6490), 1, + anon_sym_DOLLAR, + ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, + aux_sym_number_token2, + ACTIONS(6502), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6510), 1, sym_test_operator, - ACTIONS(7689), 1, - anon_sym_AMP_AMP, - ACTIONS(7691), 1, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(7200), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7202), 1, + sym__special_character, + ACTIONS(7204), 1, + anon_sym_DQUOTE, + ACTIONS(7208), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7210), 1, + anon_sym_BQUOTE, + ACTIONS(7212), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(6841), 1, + sym_last_case_item, + ACTIONS(7196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7206), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7214), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3468), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [180751] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7605), 1, + anon_sym_STAR_STAR, + ACTIONS(7613), 1, anon_sym_PIPE, - ACTIONS(7693), 1, + ACTIONS(7615), 1, anon_sym_CARET, - ACTIONS(7695), 1, + ACTIONS(7617), 1, anon_sym_AMP, - ACTIONS(6793), 2, + ACTIONS(7420), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(7601), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7601), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7603), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7697), 2, + ACTIONS(7619), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7699), 2, + ACTIONS(7621), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7701), 2, + ACTIONS(7623), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7605), 3, + ACTIONS(7625), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7627), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7709), 2, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + ACTIONS(7711), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(7603), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 14, + ACTIONS(7707), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229568,13 +232024,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [177999] = 19, + [180821] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6961), 1, + ACTIONS(7087), 1, anon_sym_RBRACK, ACTIONS(7567), 1, anon_sym_EQ, @@ -229628,12 +232081,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [178075] = 19, + [180897] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(6959), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(6476), 1, + sym_word, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6490), 1, + anon_sym_DOLLAR, + ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, + aux_sym_number_token2, + ACTIONS(6502), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6510), 1, + sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(7200), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7202), 1, + sym__special_character, + ACTIONS(7204), 1, + anon_sym_DQUOTE, + ACTIONS(7208), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7210), 1, + anon_sym_BQUOTE, + ACTIONS(7212), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(6849), 1, + sym_last_case_item, + ACTIONS(7196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7206), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7214), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3468), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [180983] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7121), 1, anon_sym_EQ, ACTIONS(7573), 1, anon_sym_PIPE_PIPE, @@ -229647,10 +232160,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(7595), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, ACTIONS(7569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -229673,7 +232182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7119), 14, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229685,85 +232194,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [178151] = 3, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [181053] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(7121), 1, + anon_sym_EQ, + ACTIONS(7675), 1, anon_sym_STAR_STAR, - ACTIONS(1314), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(7681), 1, anon_sym_PIPE_PIPE, - anon_sym_DASHo, + ACTIONS(7683), 1, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [178195] = 15, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6807), 1, - anon_sym_EQ, - ACTIONS(7607), 1, - anon_sym_STAR_STAR, - ACTIONS(7647), 1, - sym_test_operator, - ACTIONS(7691), 1, + ACTIONS(7685), 1, anon_sym_PIPE, - ACTIONS(7693), 1, + ACTIONS(7687), 1, anon_sym_CARET, - ACTIONS(7695), 1, + ACTIONS(7689), 1, anon_sym_AMP, - ACTIONS(6793), 2, + ACTIONS(7667), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7601), 2, + ACTIONS(7669), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7603), 2, + ACTIONS(7671), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7697), 2, + ACTIONS(7691), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7699), 2, + ACTIONS(7693), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7701), 2, + ACTIONS(7695), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7605), 3, + ACTIONS(7673), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 15, + ACTIONS(7119), 14, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229775,56 +232248,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [178263] = 19, - ACTIONS(71), 1, + [181123] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(6957), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(1235), 1, + sym_file_descriptor, + ACTIONS(4078), 1, + anon_sym_DQUOTE, + ACTIONS(7611), 1, + sym_variable_name, + STATE(4444), 1, + sym_string, + ACTIONS(7609), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7607), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, anon_sym_PIPE, - ACTIONS(7579), 1, - anon_sym_CARET, - ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7595), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_BQUOTE, + [181177] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7605), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7601), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7508), 12, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7510), 21, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229836,29 +232331,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [178339] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7086), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + anon_sym_DASHo, anon_sym_AMP_AMP, - ACTIONS(7577), 1, - anon_sym_PIPE, - ACTIONS(7579), 1, - anon_sym_CARET, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [181225] = 12, + ACTIONS(71), 1, + sym_comment, ACTIONS(7581), 1, anon_sym_AMP, ACTIONS(7595), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, ACTIONS(7569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -229877,11 +232365,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6941), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(6939), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229893,52 +232385,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [178415] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6955), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, - anon_sym_PIPE, - ACTIONS(7579), 1, - anon_sym_CARET, - ACTIONS(7581), 1, - anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7597), 1, + anon_sym_RBRACK, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, anon_sym_QMARK, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, + [181287] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7470), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + anon_sym_STAR_STAR, + ACTIONS(7472), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229950,43 +232422,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [178491] = 14, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [181331] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7607), 1, - anon_sym_STAR_STAR, - ACTIONS(7647), 1, - sym_test_operator, - ACTIONS(7693), 1, + ACTIONS(1344), 13, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(7695), 1, anon_sym_AMP, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6807), 2, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(7601), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7603), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7697), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7699), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7701), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7605), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 15, + anon_sym_STAR_STAR, + ACTIONS(1346), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229999,55 +232465,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [178557] = 19, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [181375] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6953), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(1356), 13, anon_sym_PIPE, - ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + anon_sym_STAR_STAR, + ACTIONS(1358), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230059,10 +232505,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [178633] = 19, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [181419] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6951), 1, + ACTIONS(6959), 1, anon_sym_RBRACK, ACTIONS(7567), 1, anon_sym_EQ, @@ -230116,42 +232570,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [178709] = 13, + [181495] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7607), 1, - anon_sym_STAR_STAR, - ACTIONS(7647), 1, - sym_test_operator, - ACTIONS(7695), 1, + ACTIONS(7534), 13, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7601), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7603), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7697), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7699), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7701), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6807), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(7605), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 15, + anon_sym_STAR_STAR, + ACTIONS(7536), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230164,85 +232603,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [178773] = 3, - ACTIONS(3), 1, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [181539] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1334), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 31, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(7470), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [178817] = 12, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7607), 1, - anon_sym_STAR_STAR, - ACTIONS(7647), 1, - sym_test_operator, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7601), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7603), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7697), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7699), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7701), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7605), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6807), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6805), 15, + anon_sym_STAR_STAR, + ACTIONS(7472), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230255,41 +232644,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [178879] = 11, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [181583] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7607), 1, - anon_sym_STAR_STAR, - ACTIONS(7647), 1, - sym_test_operator, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7601), 2, + ACTIONS(1340), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7603), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7699), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7701), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7605), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6807), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6805), 17, + anon_sym_STAR_STAR, + ACTIONS(1342), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230302,15 +232686,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [178939] = 19, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [181627] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6949), 1, + ACTIONS(7089), 1, anon_sym_RBRACK, ACTIONS(7567), 1, anon_sym_EQ, @@ -230364,34 +232750,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [179015] = 9, + [181703] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7607), 1, - anon_sym_STAR_STAR, - ACTIONS(7647), 1, - sym_test_operator, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7601), 2, + ACTIONS(1348), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7603), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7605), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6807), 6, + anon_sym_STAR_STAR, + ACTIONS(1350), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [181747] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7042), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6805), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7040), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230409,54 +232829,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [179071] = 19, + [181791] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6947), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7042), 14, anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, anon_sym_PIPE, - ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + anon_sym_STAR_STAR, + ACTIONS(7040), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230468,52 +232864,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [179147] = 19, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [181835] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(6945), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(6476), 1, + sym_word, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6490), 1, + anon_sym_DOLLAR, + ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, + aux_sym_number_token2, + ACTIONS(6502), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6510), 1, + sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(7200), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7202), 1, + sym__special_character, + ACTIONS(7204), 1, + anon_sym_DQUOTE, + ACTIONS(7208), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7210), 1, + anon_sym_BQUOTE, + ACTIONS(7212), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(7214), 1, + sym_last_case_item, + ACTIONS(7196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7206), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7214), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3468), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [181921] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7046), 14, anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, anon_sym_PIPE, - ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + anon_sym_STAR_STAR, + ACTIONS(7044), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230525,52 +232967,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [179223] = 19, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [181965] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6943), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(1356), 14, anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, anon_sym_PIPE, - ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + anon_sym_STAR_STAR, + ACTIONS(1358), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230582,10 +233008,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [179299] = 19, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [182009] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6941), 1, + ACTIONS(7093), 1, anon_sym_RBRACK, ACTIONS(7567), 1, anon_sym_EQ, @@ -230639,41 +233074,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [179375] = 19, - ACTIONS(71), 1, + [182085] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(6939), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(1241), 1, + sym_file_descriptor, + ACTIONS(4078), 1, + anon_sym_DQUOTE, + ACTIONS(7611), 1, + sym_variable_name, + STATE(4444), 1, + sym_string, + ACTIONS(7609), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7607), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, anon_sym_PIPE, - ACTIONS(7579), 1, - anon_sym_CARET, - ACTIONS(7581), 1, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_BQUOTE, + [182139] = 8, + ACTIONS(71), 1, + sym_comment, ACTIONS(7595), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, ACTIONS(7569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, @@ -230684,7 +233138,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(6955), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6953), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230696,52 +233157,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [179451] = 19, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [182193] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6937), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(1356), 14, anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, anon_sym_PIPE, - ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + anon_sym_STAR_STAR, + ACTIONS(1358), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230753,52 +233198,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [179527] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6935), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, - anon_sym_PIPE, - ACTIONS(7579), 1, - anon_sym_CARET, - ACTIONS(7581), 1, - anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7597), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, anon_sym_QMARK, + [182237] = 4, + ACTIONS(71), 1, + sym_comment, ACTIONS(7569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(6955), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + anon_sym_STAR_STAR, + ACTIONS(6953), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230810,41 +233240,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [179603] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6933), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, - anon_sym_PIPE, - ACTIONS(7579), 1, - anon_sym_CARET, - ACTIONS(7581), 1, - anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7597), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, anon_sym_QMARK, + [182283] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, ACTIONS(7569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, @@ -230855,7 +233267,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(6955), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6953), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230867,52 +233286,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [179679] = 19, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [182337] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6931), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(1336), 14, anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, anon_sym_PIPE, - ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + anon_sym_STAR_STAR, + ACTIONS(1338), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230924,31 +233327,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [179755] = 7, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [182381] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(7607), 1, + ACTIONS(7719), 1, anon_sym_STAR_STAR, - ACTIONS(6793), 2, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7603), 2, + ACTIONS(7713), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7605), 3, + ACTIONS(7717), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6807), 8, + ACTIONS(6795), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6805), 20, + ACTIONS(6793), 20, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -230969,52 +233382,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [179807] = 19, + [182435] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(6929), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(6795), 1, anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7719), 1, + anon_sym_STAR_STAR, + ACTIONS(7721), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7723), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7725), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7727), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7729), 1, anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, + ACTIONS(7737), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7739), 1, + sym_test_operator, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7713), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7715), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7733), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7735), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7591), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7717), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(6793), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231026,31 +233437,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [179883] = 6, + anon_sym_EQ_TILDE, + [182509] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7607), 1, + ACTIONS(7719), 1, anon_sym_STAR_STAR, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7605), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6807), 10, - anon_sym_EQ, + ACTIONS(7721), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7723), 1, + anon_sym_AMP_AMP, + ACTIONS(7725), 1, anon_sym_PIPE, + ACTIONS(7727), 1, anon_sym_CARET, + ACTIONS(7729), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7737), 1, + anon_sym_QMARK, + ACTIONS(7739), 1, + sym_test_operator, + ACTIONS(7741), 1, + anon_sym_EQ, + ACTIONS(7743), 1, + anon_sym_EQ_TILDE, + ACTIONS(6830), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7713), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6805), 20, - sym_test_operator, + ACTIONS(7731), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7733), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7735), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7717), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6793), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231062,60 +233495,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [179933] = 19, + [182585] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(6927), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(6795), 1, anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7719), 1, + anon_sym_STAR_STAR, + ACTIONS(7723), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7725), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7727), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7729), 1, anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7739), 1, + sym_test_operator, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7713), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7715), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7733), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7735), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7591), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7717), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(6793), 14, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231127,52 +233546,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [180009] = 19, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [182655] = 15, ACTIONS(71), 1, sym_comment, - ACTIONS(6925), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(6795), 1, anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7719), 1, + anon_sym_STAR_STAR, + ACTIONS(7725), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7727), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7729), 1, anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7739), 1, + sym_test_operator, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7713), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7715), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7733), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7735), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7591), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7717), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(6793), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231184,52 +233598,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [180085] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6883), 1, - anon_sym_EQ, - ACTIONS(6889), 1, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, - anon_sym_PIPE, - ACTIONS(6895), 1, - anon_sym_CARET, - ACTIONS(6897), 1, - anon_sym_AMP, - ACTIONS(6911), 1, - anon_sym_STAR_STAR, - ACTIONS(6913), 1, anon_sym_EQ_TILDE, - ACTIONS(6915), 1, anon_sym_QMARK, - ACTIONS(7709), 1, - anon_sym_COLON, - ACTIONS(6885), 2, + [182723] = 14, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7719), 1, + anon_sym_STAR_STAR, + ACTIONS(7727), 1, + anon_sym_CARET, + ACTIONS(7729), 1, + anon_sym_AMP, + ACTIONS(7739), 1, + sym_test_operator, + ACTIONS(6795), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(7713), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7715), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7731), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(7733), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(7735), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6907), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(7717), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + ACTIONS(6793), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231241,30 +233650,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [180161] = 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [182789] = 13, ACTIONS(71), 1, sym_comment, - ACTIONS(7607), 1, + ACTIONS(7719), 1, anon_sym_STAR_STAR, - ACTIONS(6793), 2, + ACTIONS(7729), 1, + anon_sym_AMP, + ACTIONS(7739), 1, + sym_test_operator, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6807), 13, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7713), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7715), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7731), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7733), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7735), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6795), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7717), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6805), 20, - sym_test_operator, + ACTIONS(6793), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231278,33 +233703,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [180209] = 3, + [182853] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7719), 1, + anon_sym_STAR_STAR, + ACTIONS(7739), 1, + sym_test_operator, + ACTIONS(6830), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7713), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7715), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7731), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7733), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7735), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7717), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1310), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6795), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(6793), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231317,35 +233752,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [180253] = 3, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [182915] = 11, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7719), 1, + anon_sym_STAR_STAR, + ACTIONS(7739), 1, + sym_test_operator, + ACTIONS(6830), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7713), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7715), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7733), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7735), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7717), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1306), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6795), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(6793), 17, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231358,35 +233799,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [180297] = 3, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [182975] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7719), 1, + anon_sym_STAR_STAR, + ACTIONS(7739), 1, + sym_test_operator, + ACTIONS(6830), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7713), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7715), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7717), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1310), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6795), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6793), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231399,60 +233844,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [180341] = 19, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [183031] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(6923), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, - anon_sym_PIPE, - ACTIONS(7579), 1, - anon_sym_CARET, - ACTIONS(7581), 1, - anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7719), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7715), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7717), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(6795), 8, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6793), 20, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231464,15 +233888,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [180417] = 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [183083] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(7607), 1, + ACTIONS(7719), 1, anon_sym_STAR_STAR, - ACTIONS(6793), 2, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6807), 13, + ACTIONS(7717), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6795), 10, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -231483,10 +233919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6805), 20, + ACTIONS(6793), 20, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -231507,52 +233940,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [180465] = 19, + [183133] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6921), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7719), 1, + anon_sym_STAR_STAR, + ACTIONS(6830), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6795), 13, anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, anon_sym_PIPE, - ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(6793), 20, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231564,65 +233975,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [180541] = 17, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7123), 1, - anon_sym_EQ, - ACTIONS(7607), 1, - anon_sym_STAR_STAR, - ACTIONS(7647), 1, - sym_test_operator, - ACTIONS(7687), 1, anon_sym_PIPE_PIPE, - ACTIONS(7689), 1, anon_sym_AMP_AMP, - ACTIONS(7691), 1, - anon_sym_PIPE, - ACTIONS(7693), 1, - anon_sym_CARET, - ACTIONS(7695), 1, - anon_sym_AMP, - ACTIONS(6793), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7601), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7603), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7697), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7699), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7701), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7605), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7125), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [180613] = 3, + [183181] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7064), 14, + ACTIONS(7719), 1, + anon_sym_STAR_STAR, + ACTIONS(6830), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6795), 13, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -231636,10 +234005,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7062), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6793), 20, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231657,71 +234024,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [180657] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1302), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 31, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [180701] = 3, + [183229] = 17, ACTIONS(71), 1, sym_comment, - ACTIONS(7064), 14, + ACTIONS(7024), 1, anon_sym_EQ, + ACTIONS(7719), 1, + anon_sym_STAR_STAR, + ACTIONS(7721), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7723), 1, + anon_sym_AMP_AMP, + ACTIONS(7725), 1, anon_sym_PIPE, + ACTIONS(7727), 1, anon_sym_CARET, + ACTIONS(7729), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7739), 1, + sym_test_operator, + ACTIONS(6830), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7713), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7715), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7731), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7733), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7735), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7717), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7062), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7026), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231733,20 +234079,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [180745] = 19, + [183301] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6476), 1, + sym_word, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6490), 1, + anon_sym_DOLLAR, + ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, + aux_sym_number_token2, + ACTIONS(6502), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6510), 1, + sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(7200), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7202), 1, + sym__special_character, + ACTIONS(7204), 1, + anon_sym_DQUOTE, + ACTIONS(7208), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7210), 1, + anon_sym_BQUOTE, + ACTIONS(7212), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(7398), 1, + sym_last_case_item, + ACTIONS(7196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7206), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7214), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3468), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [183387] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6476), 1, + sym_word, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6490), 1, + anon_sym_DOLLAR, + ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, + aux_sym_number_token2, + ACTIONS(6502), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6510), 1, + sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(7200), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7202), 1, + sym__special_character, + ACTIONS(7204), 1, + anon_sym_DQUOTE, + ACTIONS(7208), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7210), 1, + anon_sym_BQUOTE, + ACTIONS(7212), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(6983), 1, + sym_last_case_item, + ACTIONS(7196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7206), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7214), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3468), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [183473] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(6919), 1, - anon_sym_RBRACK, ACTIONS(7567), 1, anon_sym_EQ, ACTIONS(7573), 1, @@ -231787,7 +234248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(6939), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231799,10 +234260,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [180821] = 19, + anon_sym_RBRACK, + [183547] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6917), 1, + ACTIONS(6961), 1, anon_sym_RBRACK, ACTIONS(7567), 1, anon_sym_EQ, @@ -231856,10 +234318,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [180897] = 19, + [183623] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6879), 1, + ACTIONS(7095), 1, anon_sym_RBRACK, ACTIONS(7567), 1, anon_sym_EQ, @@ -231913,52 +234375,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [180973] = 19, + [183699] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7617), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7619), 1, - anon_sym_AMP_AMP, - ACTIONS(7621), 1, + ACTIONS(6969), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(7623), 1, anon_sym_CARET, - ACTIONS(7625), 1, anon_sym_AMP, - ACTIONS(7639), 1, - anon_sym_STAR_STAR, - ACTIONS(7679), 1, - anon_sym_EQ, - ACTIONS(7681), 1, - anon_sym_EQ_TILDE, - ACTIONS(7683), 1, - anon_sym_QMARK, - ACTIONS(7713), 1, - anon_sym_RPAREN, - ACTIONS(7615), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7627), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7629), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7631), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7633), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7637), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7711), 11, + anon_sym_STAR_STAR, + ACTIONS(6967), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231970,10 +234407,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [181049] = 19, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [183743] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7168), 1, + ACTIONS(7097), 1, anon_sym_RBRACK, ACTIONS(7567), 1, anon_sym_EQ, @@ -232027,10 +234473,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [181125] = 3, + [183819] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7053), 14, + ACTIONS(6969), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -232045,7 +234491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7051), 22, + ACTIONS(6967), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -232068,52 +234514,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [181169] = 19, + [183863] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7617), 1, + ACTIONS(1352), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1354), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - ACTIONS(7619), 1, anon_sym_AMP_AMP, - ACTIONS(7621), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [183907] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7504), 13, anon_sym_PIPE, - ACTIONS(7623), 1, anon_sym_CARET, - ACTIONS(7625), 1, anon_sym_AMP, - ACTIONS(7639), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7506), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [183951] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7675), 1, anon_sym_STAR_STAR, - ACTIONS(7679), 1, + ACTIONS(7677), 1, anon_sym_EQ, ACTIONS(7681), 1, - anon_sym_EQ_TILDE, + anon_sym_PIPE_PIPE, ACTIONS(7683), 1, + anon_sym_AMP_AMP, + ACTIONS(7685), 1, + anon_sym_PIPE, + ACTIONS(7687), 1, + anon_sym_CARET, + ACTIONS(7689), 1, + anon_sym_AMP, + ACTIONS(7699), 1, + anon_sym_EQ_TILDE, + ACTIONS(7701), 1, anon_sym_QMARK, - ACTIONS(7715), 1, + ACTIONS(7745), 1, anon_sym_RPAREN, - ACTIONS(7615), 2, + ACTIONS(7667), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7627), 2, + ACTIONS(7669), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7671), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7691), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7629), 2, + ACTIONS(7693), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7631), 2, + ACTIONS(7695), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7633), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7635), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7637), 3, + ACTIONS(7673), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7711), 11, + ACTIONS(7679), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232125,10 +234653,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [181245] = 19, + [184027] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7019), 1, + ACTIONS(7099), 1, anon_sym_RBRACK, ACTIONS(7567), 1, anon_sym_EQ, @@ -232182,52 +234710,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [181321] = 19, + [184103] = 15, ACTIONS(71), 1, sym_comment, - ACTIONS(7021), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7605), 1, + anon_sym_STAR_STAR, + ACTIONS(7613), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7615), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7617), 1, anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7601), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7619), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7621), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7623), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7625), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7627), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7709), 2, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + ACTIONS(7711), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(7603), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7510), 13, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232239,29 +234762,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [181397] = 19, + anon_sym_RPAREN, + [184171] = 11, ACTIONS(71), 1, sym_comment, - ACTIONS(7023), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, - anon_sym_PIPE, - ACTIONS(7579), 1, - anon_sym_CARET, - ACTIONS(7581), 1, - anon_sym_AMP, ACTIONS(7595), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, ACTIONS(7569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -232284,7 +234790,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(6941), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(6939), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [184231] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1336), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1338), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232296,10 +234844,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [181473] = 19, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [184275] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1358), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1356), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [184319] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7027), 1, + ACTIONS(6963), 1, anon_sym_RBRACK, ACTIONS(7567), 1, anon_sym_EQ, @@ -232353,10 +234951,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [181549] = 19, + [184395] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7110), 1, + ACTIONS(7091), 1, anon_sym_RBRACK, ACTIONS(7567), 1, anon_sym_EQ, @@ -232410,10 +235008,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [181625] = 19, + [184471] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7098), 1, + ACTIONS(7105), 1, anon_sym_RBRACK, ACTIONS(7567), 1, anon_sym_EQ, @@ -232467,11 +235065,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [181701] = 3, + [184547] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7035), 14, - anon_sym_EQ, + ACTIONS(1292), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -232485,7 +235082,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7033), 22, + ACTIONS(1294), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -232500,24 +235099,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [181745] = 3, + [184591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(1346), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 31, + ACTIONS(1344), 31, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -232549,134 +235147,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [181789] = 24, - ACTIONS(71), 1, + [184635] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6474), 1, - sym_word, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, - anon_sym_DOLLAR, - ACTIONS(6494), 1, - aux_sym_number_token1, - ACTIONS(6496), 1, - aux_sym_number_token2, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, + ACTIONS(1358), 5, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, sym__brace_start, - ACTIONS(7226), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1356), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(7230), 1, anon_sym_DQUOTE, - ACTIONS(7234), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, - anon_sym_BQUOTE, - ACTIONS(7238), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6426), 1, - aux_sym__literal_repeat1, - STATE(6923), 1, - sym_last_case_item, - ACTIONS(7224), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7240), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3477), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6303), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [181875] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6474), 1, - sym_word, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, - anon_sym_DOLLAR, - ACTIONS(6494), 1, aux_sym_number_token1, - ACTIONS(6496), 1, aux_sym_number_token2, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, - sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, - sym__brace_start, - ACTIONS(7226), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, - sym__special_character, - ACTIONS(7230), 1, - anon_sym_DQUOTE, - ACTIONS(7234), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - ACTIONS(7238), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6426), 1, - aux_sym__literal_repeat1, - STATE(6942), 1, - sym_last_case_item, - ACTIONS(7224), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7240), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3477), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6303), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [181961] = 16, + sym_word, + [184679] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7102), 1, + ACTIONS(7107), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, anon_sym_EQ, ACTIONS(7573), 1, anon_sym_PIPE_PIPE, @@ -232690,6 +235207,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(7595), 1, anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, ACTIONS(7569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -232712,7 +235233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7100), 14, + ACTIONS(7571), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232724,240 +235245,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [182031] = 3, + [184755] = 15, ACTIONS(71), 1, sym_comment, - ACTIONS(7448), 13, + ACTIONS(6941), 1, + anon_sym_EQ, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, anon_sym_PIPE, + ACTIONS(7579), 1, anon_sym_CARET, + ACTIONS(7581), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(7595), 1, anon_sym_STAR_STAR, - ACTIONS(7450), 23, - anon_sym_COMMA, + ACTIONS(7569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(7583), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [182075] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7719), 1, - anon_sym_STAR_STAR, - ACTIONS(7717), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7248), 12, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7274), 21, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(7587), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [182123] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6474), 1, - sym_word, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, - anon_sym_DOLLAR, - ACTIONS(6494), 1, - aux_sym_number_token1, - ACTIONS(6496), 1, - aux_sym_number_token2, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, - sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, - sym__brace_start, - ACTIONS(7226), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, - sym__special_character, - ACTIONS(7230), 1, - anon_sym_DQUOTE, - ACTIONS(7234), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, - anon_sym_BQUOTE, - ACTIONS(7238), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6426), 1, - aux_sym__literal_repeat1, - STATE(7005), 1, - sym_last_case_item, - ACTIONS(7224), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7240), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3477), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6303), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [182209] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6474), 1, - sym_word, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, - anon_sym_DOLLAR, - ACTIONS(6494), 1, - aux_sym_number_token1, - ACTIONS(6496), 1, - aux_sym_number_token2, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, - sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, - sym__brace_start, - ACTIONS(7226), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, - sym__special_character, - ACTIONS(7230), 1, - anon_sym_DQUOTE, - ACTIONS(7234), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, - anon_sym_BQUOTE, - ACTIONS(7238), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6426), 1, - aux_sym__literal_repeat1, - STATE(7007), 1, - sym_last_case_item, - ACTIONS(7224), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7240), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3477), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6303), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [182295] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7719), 1, - anon_sym_STAR_STAR, - ACTIONS(7717), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7248), 12, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7274), 21, - anon_sym_COMMA, + ACTIONS(6939), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232970,162 +235295,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [182343] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6474), 1, - sym_word, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, - anon_sym_DOLLAR, - ACTIONS(6494), 1, - aux_sym_number_token1, - ACTIONS(6496), 1, - aux_sym_number_token2, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, - sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, - sym__brace_start, - ACTIONS(7226), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, - sym__special_character, - ACTIONS(7230), 1, - anon_sym_DQUOTE, - ACTIONS(7234), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, - anon_sym_BQUOTE, - ACTIONS(7238), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6426), 1, - aux_sym__literal_repeat1, - STATE(7013), 1, - sym_last_case_item, - ACTIONS(7224), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7240), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3477), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6303), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [182429] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6474), 1, - sym_word, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, - anon_sym_DOLLAR, - ACTIONS(6494), 1, - aux_sym_number_token1, - ACTIONS(6496), 1, - aux_sym_number_token2, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, - sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, - sym__brace_start, - ACTIONS(7226), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, - sym__special_character, - ACTIONS(7230), 1, - anon_sym_DQUOTE, - ACTIONS(7234), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, - anon_sym_BQUOTE, - ACTIONS(7238), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6426), 1, - aux_sym__literal_repeat1, - STATE(7016), 1, - sym_last_case_item, - ACTIONS(7224), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7240), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3477), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6303), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [182515] = 6, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [184823] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7719), 1, - anon_sym_STAR_STAR, - ACTIONS(7717), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7721), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7248), 9, + ACTIONS(6871), 1, + anon_sym_AMP_AMP, + ACTIONS(6873), 1, anon_sym_PIPE, + ACTIONS(6875), 1, anon_sym_CARET, + ACTIONS(6877), 1, anon_sym_AMP, + ACTIONS(6891), 1, + anon_sym_STAR_STAR, + ACTIONS(6893), 1, + sym_test_operator, + ACTIONS(7028), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7146), 1, + anon_sym_EQ_TILDE, + ACTIONS(7737), 1, + anon_sym_QMARK, + ACTIONS(6830), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6879), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6881), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6883), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6885), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6887), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7274), 21, - anon_sym_COMMA, + ACTIONS(6889), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7747), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233137,164 +235355,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [182565] = 24, + [184899] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6474), 1, - sym_word, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, + ACTIONS(1272), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(6494), 1, aux_sym_number_token1, - ACTIONS(6496), 1, aux_sym_number_token2, - ACTIONS(6500), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, + sym_word, + ACTIONS(1274), 24, + sym_file_descriptor, sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, sym__brace_start, - ACTIONS(7226), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, - sym__special_character, - ACTIONS(7230), 1, - anon_sym_DQUOTE, - ACTIONS(7234), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, - anon_sym_BQUOTE, - ACTIONS(7238), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6426), 1, - aux_sym__literal_repeat1, - STATE(7020), 1, - sym_last_case_item, - ACTIONS(7224), 2, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7240), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3477), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6303), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [182651] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6474), 1, - sym_word, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, - anon_sym_DOLLAR, - ACTIONS(6494), 1, - aux_sym_number_token1, - ACTIONS(6496), 1, - aux_sym_number_token2, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, - sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, - sym__brace_start, - ACTIONS(7226), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, sym__special_character, - ACTIONS(7230), 1, anon_sym_DQUOTE, - ACTIONS(7234), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, anon_sym_BQUOTE, - ACTIONS(7238), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6426), 1, - aux_sym__literal_repeat1, - STATE(7021), 1, - sym_last_case_item, - ACTIONS(7224), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7240), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3477), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6303), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [182737] = 7, + [184943] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7719), 1, + ACTIONS(7109), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, anon_sym_STAR_STAR, - ACTIONS(7717), 2, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7723), 2, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7721), 3, + ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7248), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7274), 21, - anon_sym_COMMA, + ACTIONS(7571), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233306,19 +235453,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [182789] = 3, + [185019] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7035), 14, + ACTIONS(7152), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -233333,7 +235471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7033), 22, + ACTIONS(7150), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -233356,62 +235494,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [182833] = 8, - ACTIONS(71), 1, + [185063] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7719), 1, - anon_sym_STAR_STAR, - ACTIONS(7717), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7723), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7725), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7721), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7248), 5, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7274), 21, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(1306), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 31, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [182887] = 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [185107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 5, + ACTIONS(1278), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 31, + ACTIONS(1276), 31, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -233443,36 +235576,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [182931] = 10, + [185151] = 10, ACTIONS(71), 1, sym_comment, - ACTIONS(7719), 1, + ACTIONS(7595), 1, anon_sym_STAR_STAR, - ACTIONS(7717), 2, + ACTIONS(7569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7723), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7725), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7727), 2, + ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7729), 2, + ACTIONS(7587), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7248), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(7721), 3, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7274), 19, - anon_sym_COMMA, + ACTIONS(6941), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(6939), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233485,45 +235618,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_RPAREN, - [182989] = 11, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [185209] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7719), 1, + ACTIONS(7123), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, + anon_sym_PIPE, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, anon_sym_STAR_STAR, - ACTIONS(7717), 2, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7723), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7725), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7727), 2, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7729), 2, + ACTIONS(7587), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7731), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7248), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(7721), 3, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7274), 17, - anon_sym_COMMA, + ACTIONS(7571), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233535,15 +235681,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_RPAREN, - [183049] = 3, + [185285] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7053), 14, + ACTIONS(1320), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -233558,7 +235699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7051), 22, + ACTIONS(1322), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -233581,52 +235722,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [183093] = 19, + [185329] = 14, ACTIONS(71), 1, sym_comment, - ACTIONS(6877), 1, + ACTIONS(7605), 1, anon_sym_STAR_STAR, - ACTIONS(7037), 1, + ACTIONS(7613), 1, anon_sym_PIPE, - ACTIONS(7039), 1, + ACTIONS(7615), 1, anon_sym_CARET, - ACTIONS(7041), 1, + ACTIONS(7617), 1, anon_sym_AMP, - ACTIONS(7049), 1, - sym_test_operator, - ACTIONS(7072), 1, - anon_sym_AMP_AMP, - ACTIONS(7074), 1, - anon_sym_EQ, - ACTIONS(7076), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7078), 1, - anon_sym_EQ_TILDE, - ACTIONS(7703), 1, - anon_sym_QMARK, - ACTIONS(6793), 2, + ACTIONS(7601), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6871), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6873), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7043), 2, + ACTIONS(7619), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7045), 2, + ACTIONS(7621), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7047), 2, + ACTIONS(7623), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6875), 3, + ACTIONS(7625), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7627), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7711), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(7603), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7733), 11, + ACTIONS(7510), 15, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233638,27 +235771,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [183169] = 3, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_RPAREN, + [185395] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7064), 14, + ACTIONS(7125), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, anon_sym_PIPE, + ACTIONS(7579), 1, anon_sym_CARET, + ACTIONS(7581), 1, anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7587), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7062), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7571), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233670,49 +235831,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [183213] = 12, + [185471] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7719), 1, - anon_sym_STAR_STAR, - ACTIONS(7735), 1, - anon_sym_AMP, - ACTIONS(7248), 2, + ACTIONS(6899), 1, + anon_sym_EQ, + ACTIONS(6905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6907), 1, + anon_sym_AMP_AMP, + ACTIONS(6909), 1, anon_sym_PIPE, + ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(7717), 2, + ACTIONS(6913), 1, + anon_sym_AMP, + ACTIONS(6927), 1, + anon_sym_STAR_STAR, + ACTIONS(6929), 1, + anon_sym_EQ_TILDE, + ACTIONS(6931), 1, + anon_sym_QMARK, + ACTIONS(7749), 1, + anon_sym_COLON, + ACTIONS(6901), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7723), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7725), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7727), 2, + ACTIONS(6915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7729), 2, + ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7731), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7721), 3, + ACTIONS(6921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7274), 17, - anon_sym_COMMA, + ACTIONS(6903), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233724,15 +235888,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_RPAREN, - [183275] = 3, + [185547] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7064), 14, + ACTIONS(7046), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -233747,7 +235906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7062), 22, + ACTIONS(7044), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -233770,52 +235929,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [183319] = 19, + [185591] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(6883), 1, + ACTIONS(7135), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, anon_sym_EQ, - ACTIONS(6889), 1, + ACTIONS(7573), 1, anon_sym_PIPE_PIPE, - ACTIONS(6891), 1, + ACTIONS(7575), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + ACTIONS(7577), 1, anon_sym_PIPE, - ACTIONS(6895), 1, + ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(6897), 1, + ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(6911), 1, + ACTIONS(7595), 1, anon_sym_STAR_STAR, - ACTIONS(6913), 1, + ACTIONS(7597), 1, anon_sym_EQ_TILDE, - ACTIONS(6915), 1, + ACTIONS(7599), 1, anon_sym_QMARK, - ACTIONS(7737), 1, - anon_sym_COLON, - ACTIONS(6885), 2, + ACTIONS(7569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6899), 2, + ACTIONS(7583), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6901), 2, + ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6903), 2, + ACTIONS(7587), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6905), 2, + ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6907), 2, + ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6909), 3, + ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6887), 11, + ACTIONS(7571), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233827,41 +235986,279 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [183395] = 13, + [185667] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6476), 1, + sym_word, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6490), 1, + anon_sym_DOLLAR, + ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, + aux_sym_number_token2, + ACTIONS(6502), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6510), 1, + sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(7200), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7202), 1, + sym__special_character, + ACTIONS(7204), 1, + anon_sym_DQUOTE, + ACTIONS(7208), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7210), 1, + anon_sym_BQUOTE, + ACTIONS(7212), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(7203), 1, + sym_last_case_item, + ACTIONS(7196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7206), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7214), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3468), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [185753] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6476), 1, + sym_word, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6490), 1, + anon_sym_DOLLAR, + ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, + aux_sym_number_token2, + ACTIONS(6502), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6510), 1, + sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(7200), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7202), 1, + sym__special_character, + ACTIONS(7204), 1, + anon_sym_DQUOTE, + ACTIONS(7208), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7210), 1, + anon_sym_BQUOTE, + ACTIONS(7212), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(7226), 1, + sym_last_case_item, + ACTIONS(7196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7206), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7214), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3468), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [185839] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1296), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [185883] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6476), 1, + sym_word, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6490), 1, + anon_sym_DOLLAR, + ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, + aux_sym_number_token2, + ACTIONS(6502), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6510), 1, + sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(7200), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7202), 1, + sym__special_character, + ACTIONS(7204), 1, + anon_sym_DQUOTE, + ACTIONS(7208), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7210), 1, + anon_sym_BQUOTE, + ACTIONS(7212), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(6796), 1, + sym_last_case_item, + ACTIONS(7196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7206), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7214), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3468), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [185969] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(7248), 1, + ACTIONS(7140), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, anon_sym_PIPE, - ACTIONS(7719), 1, - anon_sym_STAR_STAR, - ACTIONS(7735), 1, - anon_sym_AMP, - ACTIONS(7739), 1, + ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(7717), 2, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7723), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7725), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7727), 2, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7729), 2, + ACTIONS(7587), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7731), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7721), 3, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7274), 17, - anon_sym_COMMA, + ACTIONS(7571), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233873,45 +236270,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_RPAREN, - [183459] = 13, + [186045] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(7719), 1, + ACTIONS(7605), 1, anon_sym_STAR_STAR, - ACTIONS(7735), 1, - anon_sym_AMP, - ACTIONS(7739), 1, - anon_sym_CARET, - ACTIONS(7741), 1, - anon_sym_PIPE, - ACTIONS(7717), 2, + ACTIONS(7601), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7723), 2, + ACTIONS(7627), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7725), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7729), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7731), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7721), 3, + ACTIONS(7603), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7274), 17, + ACTIONS(7508), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7510), 21, anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -233928,45 +236310,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASHo, anon_sym_AMP_AMP, anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RPAREN, - [183523] = 14, + [186097] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(7719), 1, - anon_sym_STAR_STAR, - ACTIONS(7735), 1, - anon_sym_AMP, - ACTIONS(7739), 1, - anon_sym_CARET, - ACTIONS(7741), 1, + ACTIONS(6476), 1, + sym_word, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6490), 1, + anon_sym_DOLLAR, + ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, + aux_sym_number_token2, + ACTIONS(6502), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6510), 1, + sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(7200), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7202), 1, + sym__special_character, + ACTIONS(7204), 1, + anon_sym_DQUOTE, + ACTIONS(7208), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7210), 1, + anon_sym_BQUOTE, + ACTIONS(7212), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(6822), 1, + sym_last_case_item, + ACTIONS(7196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7206), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7214), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3468), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [186183] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7148), 1, + anon_sym_RBRACK, + ACTIONS(7567), 1, + anon_sym_EQ, + ACTIONS(7573), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7575), 1, + anon_sym_AMP_AMP, + ACTIONS(7577), 1, anon_sym_PIPE, - ACTIONS(7717), 2, + ACTIONS(7579), 1, + anon_sym_CARET, + ACTIONS(7581), 1, + anon_sym_AMP, + ACTIONS(7595), 1, + anon_sym_STAR_STAR, + ACTIONS(7597), 1, + anon_sym_EQ_TILDE, + ACTIONS(7599), 1, + anon_sym_QMARK, + ACTIONS(7569), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7723), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7725), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7727), 2, + ACTIONS(7583), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7729), 2, + ACTIONS(7587), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7731), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7743), 2, - anon_sym_AMP_AMP, - anon_sym_DASHa, - ACTIONS(7721), 3, + ACTIONS(7589), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7591), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7274), 15, - anon_sym_COMMA, + ACTIONS(7571), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233978,50 +236434,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_RPAREN, - [183589] = 15, + [186259] = 9, ACTIONS(71), 1, sym_comment, ACTIONS(7719), 1, anon_sym_STAR_STAR, - ACTIONS(7735), 1, - anon_sym_AMP, ACTIONS(7739), 1, - anon_sym_CARET, - ACTIONS(7741), 1, - anon_sym_PIPE, - ACTIONS(7717), 2, + sym_test_operator, + ACTIONS(6830), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7723), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7725), 2, + ACTIONS(7713), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7729), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7731), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7743), 2, - anon_sym_AMP_AMP, - anon_sym_DASHa, - ACTIONS(7745), 2, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - ACTIONS(7721), 3, + ACTIONS(7715), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7717), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7274), 13, - anon_sym_COMMA, + ACTIONS(6828), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6826), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234033,28 +236473,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RPAREN, - [183657] = 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [186315] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(7244), 13, + ACTIONS(7719), 1, + anon_sym_STAR_STAR, + ACTIONS(6830), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7713), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7715), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7717), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6828), 6, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, + ACTIONS(6826), 20, + sym_test_operator, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [186369] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7719), 1, + anon_sym_STAR_STAR, + ACTIONS(6830), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7713), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7715), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7717), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7246), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6828), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6826), 20, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234067,67 +236566,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [183701] = 24, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [186423] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(6474), 1, + ACTIONS(6476), 1, sym_word, - ACTIONS(6480), 1, + ACTIONS(6482), 1, anon_sym_LPAREN, - ACTIONS(6488), 1, + ACTIONS(6490), 1, anon_sym_DOLLAR, - ACTIONS(6494), 1, - aux_sym_number_token1, ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, aux_sym_number_token2, - ACTIONS(6500), 1, + ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, - sym_test_operator, ACTIONS(6510), 1, - sym_extglob_pattern, + sym_test_operator, ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, sym__brace_start, - ACTIONS(7226), 1, + ACTIONS(7200), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, + ACTIONS(7202), 1, sym__special_character, - ACTIONS(7230), 1, + ACTIONS(7204), 1, anon_sym_DQUOTE, - ACTIONS(7234), 1, + ACTIONS(7208), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, + ACTIONS(7210), 1, anon_sym_BQUOTE, - ACTIONS(7238), 1, + ACTIONS(7212), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6426), 1, + STATE(6459), 1, aux_sym__literal_repeat1, - STATE(6898), 1, + STATE(6852), 1, sym_last_case_item, - ACTIONS(7224), 2, + ACTIONS(7196), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, + ACTIONS(7206), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7240), 2, + ACTIONS(7214), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3477), 2, + STATE(3468), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6695), 2, + STATE(6638), 2, sym_concatenation, sym__extglob_blob, - STATE(6303), 9, + STATE(6312), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -234137,71 +236635,75 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [183787] = 19, + [186509] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(7617), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7619), 1, - anon_sym_AMP_AMP, - ACTIONS(7621), 1, - anon_sym_PIPE, - ACTIONS(7623), 1, - anon_sym_CARET, - ACTIONS(7625), 1, - anon_sym_AMP, - ACTIONS(7639), 1, - anon_sym_STAR_STAR, - ACTIONS(7679), 1, - anon_sym_EQ, - ACTIONS(7681), 1, - anon_sym_EQ_TILDE, - ACTIONS(7683), 1, - anon_sym_QMARK, - ACTIONS(7747), 1, - anon_sym_RPAREN, - ACTIONS(7615), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7627), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7629), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7631), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7633), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7635), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7637), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7711), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [183863] = 4, + ACTIONS(6476), 1, + sym_word, + ACTIONS(6482), 1, + anon_sym_LPAREN, + ACTIONS(6490), 1, + anon_sym_DOLLAR, + ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, + aux_sym_number_token2, + ACTIONS(6502), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6510), 1, + sym_test_operator, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(7200), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7202), 1, + sym__special_character, + ACTIONS(7204), 1, + anon_sym_DQUOTE, + ACTIONS(7208), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7210), 1, + anon_sym_BQUOTE, + ACTIONS(7212), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6459), 1, + aux_sym__literal_repeat1, + STATE(6971), 1, + sym_last_case_item, + ACTIONS(7196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7206), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7214), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3468), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6638), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6312), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [186595] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7569), 2, + ACTIONS(7601), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7139), 14, - anon_sym_EQ, + ACTIONS(7522), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -234215,7 +236717,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7137), 20, + ACTIONS(7524), 21, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234228,24 +236731,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [183909] = 5, + anon_sym_RPAREN, + [186641] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7139), 13, - anon_sym_EQ, + ACTIONS(7542), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -234258,7 +236755,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7137), 20, + anon_sym_STAR_STAR, + ACTIONS(7544), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234271,67 +236772,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [183957] = 24, + anon_sym_RPAREN, + [186685] = 24, ACTIONS(71), 1, sym_comment, - ACTIONS(6474), 1, + ACTIONS(6476), 1, sym_word, - ACTIONS(6480), 1, + ACTIONS(6482), 1, anon_sym_LPAREN, - ACTIONS(6488), 1, + ACTIONS(6490), 1, anon_sym_DOLLAR, - ACTIONS(6494), 1, - aux_sym_number_token1, ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, aux_sym_number_token2, - ACTIONS(6500), 1, + ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, - sym_test_operator, ACTIONS(6510), 1, - sym_extglob_pattern, + sym_test_operator, ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, sym__brace_start, - ACTIONS(7226), 1, + ACTIONS(7200), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, + ACTIONS(7202), 1, sym__special_character, - ACTIONS(7230), 1, + ACTIONS(7204), 1, anon_sym_DQUOTE, - ACTIONS(7234), 1, + ACTIONS(7208), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, + ACTIONS(7210), 1, anon_sym_BQUOTE, - ACTIONS(7238), 1, + ACTIONS(7212), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6426), 1, + STATE(6459), 1, aux_sym__literal_repeat1, - STATE(7440), 1, + STATE(6853), 1, sym_last_case_item, - ACTIONS(7224), 2, + ACTIONS(7196), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, + ACTIONS(7206), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7240), 2, + ACTIONS(7214), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3477), 2, + STATE(3468), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6695), 2, + STATE(6638), 2, sym_concatenation, sym__extglob_blob, - STATE(6303), 9, + STATE(6312), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -234341,110 +236842,122 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [184043] = 6, - ACTIONS(71), 1, + [186771] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7593), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7139), 10, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3666), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3668), 1, + anon_sym_DOLLAR, + ACTIONS(3672), 1, + anon_sym_DQUOTE, + ACTIONS(3674), 1, + aux_sym_number_token1, + ACTIONS(3676), 1, + aux_sym_number_token2, + ACTIONS(3678), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3680), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3682), 1, + anon_sym_BQUOTE, + ACTIONS(3684), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3692), 1, + sym__brace_start, + ACTIONS(7755), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7757), 1, + sym__special_character, + ACTIONS(7759), 1, + sym_test_operator, + STATE(4920), 1, + aux_sym__literal_repeat1, + ACTIONS(3652), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3686), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3485), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(7751), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(7753), 3, + anon_sym_SEMI, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7137), 20, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_SEMI_SEMI, + STATE(4539), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [186850] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7761), 1, + sym__special_character, + STATE(3457), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1360), 29, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [184093] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7591), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7593), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7139), 8, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7137), 20, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [184145] = 8, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [186897] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1241), 1, - sym_file_descriptor, - ACTIONS(4084), 1, + ACTIONS(3672), 1, anon_sym_DQUOTE, - ACTIONS(7613), 1, + ACTIONS(7768), 1, sym_variable_name, - STATE(4606), 1, + STATE(4636), 1, sym_string, - ACTIONS(7611), 2, + ACTIONS(1235), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(7766), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7609), 9, + ACTIONS(7764), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -234454,38 +236967,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 21, + ACTIONS(1227), 19, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI_SEMI, + aux_sym_heredoc_redirect_token1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [186950] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7770), 1, + aux_sym_concatenation_token1, + ACTIONS(7772), 1, + sym__concat, + STATE(3467), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1266), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1268), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [184199] = 3, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [186999] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 5, + ACTIONS(7774), 1, + sym__special_character, + STATE(3457), 1, + aux_sym__literal_repeat1, + ACTIONS(5317), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 31, + ACTIONS(5315), 29, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -234502,98 +237059,1020 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [187046] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3462), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7770), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2171), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(2173), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [187093] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7770), 1, aux_sym_concatenation_token1, + ACTIONS(7776), 1, + sym__concat, + STATE(3467), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1288), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [187142] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7778), 1, + sym_word, + ACTIONS(7782), 1, + anon_sym_LPAREN, + ACTIONS(7784), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7786), 1, anon_sym_DOLLAR, + ACTIONS(7788), 1, sym__special_character, + ACTIONS(7790), 1, anon_sym_DQUOTE, + ACTIONS(7794), 1, + aux_sym_number_token1, + ACTIONS(7796), 1, + aux_sym_number_token2, + ACTIONS(7798), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7800), 1, + anon_sym_RBRACE3, + ACTIONS(7802), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7804), 1, + anon_sym_BQUOTE, + ACTIONS(7806), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7810), 1, + sym_variable_name, + ACTIONS(7812), 1, + sym_test_operator, + ACTIONS(7814), 1, + sym__expansion_word, + ACTIONS(7816), 1, + sym__brace_start, + STATE(6248), 1, + sym_command_substitution, + STATE(6499), 1, + aux_sym__literal_repeat1, + ACTIONS(7780), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7792), 2, sym_raw_string, sym_ansi_c_string, + ACTIONS(7808), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(6450), 5, + sym_string, + sym_array, + sym_simple_expansion, + sym_expansion, + sym_process_substitution, + STATE(6788), 5, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_number, + sym__concatenation_in_expansion, + [187229] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3459), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7770), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4426), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(4428), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [187276] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3459), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7770), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4577), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + sym_word, + ACTIONS(4579), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + [187323] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3462), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7770), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4593), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - [184243] = 24, + ACTIONS(4595), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [187370] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(6474), 1, + STATE(3467), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7818), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1276), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1278), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [187417] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7821), 1, sym_word, - ACTIONS(6480), 1, + ACTIONS(7827), 1, anon_sym_LPAREN, - ACTIONS(6488), 1, + ACTIONS(7830), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7833), 1, anon_sym_DOLLAR, - ACTIONS(6494), 1, + ACTIONS(7836), 1, + sym__special_character, + ACTIONS(7839), 1, + anon_sym_DQUOTE, + ACTIONS(7845), 1, aux_sym_number_token1, - ACTIONS(6496), 1, + ACTIONS(7848), 1, aux_sym_number_token2, - ACTIONS(6500), 1, + ACTIONS(7851), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7854), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, + ACTIONS(7857), 1, + anon_sym_BQUOTE, + ACTIONS(7860), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7866), 1, sym_test_operator, - ACTIONS(6510), 1, + ACTIONS(7869), 1, sym_extglob_pattern, - ACTIONS(6512), 1, + ACTIONS(7872), 1, sym__brace_start, - ACTIONS(7226), 1, + STATE(6391), 1, + aux_sym__literal_repeat1, + ACTIONS(7824), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7842), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7863), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3468), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6693), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6332), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [187500] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7782), 1, + anon_sym_LPAREN, + ACTIONS(7784), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, + ACTIONS(7786), 1, + anon_sym_DOLLAR, + ACTIONS(7788), 1, sym__special_character, - ACTIONS(7230), 1, + ACTIONS(7790), 1, anon_sym_DQUOTE, - ACTIONS(7234), 1, + ACTIONS(7794), 1, + aux_sym_number_token1, + ACTIONS(7796), 1, + aux_sym_number_token2, + ACTIONS(7798), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, + ACTIONS(7802), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7804), 1, anon_sym_BQUOTE, - ACTIONS(7238), 1, + ACTIONS(7806), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6426), 1, + ACTIONS(7810), 1, + sym_variable_name, + ACTIONS(7816), 1, + sym__brace_start, + ACTIONS(7875), 1, + sym_word, + ACTIONS(7879), 1, + anon_sym_RBRACE3, + ACTIONS(7881), 1, + sym_test_operator, + ACTIONS(7883), 1, + sym__expansion_word, + STATE(6264), 1, + sym_command_substitution, + STATE(6496), 1, aux_sym__literal_repeat1, - STATE(7451), 1, - sym_last_case_item, - ACTIONS(7224), 2, + ACTIONS(7780), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, + ACTIONS(7808), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7877), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(6458), 5, + sym_string, + sym_array, + sym_simple_expansion, + sym_expansion, + sym_process_substitution, + STATE(6786), 5, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_number, + sym__concatenation_in_expansion, + [187587] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3462), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7770), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4511), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(4513), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [187634] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3459), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7770), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5165), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(5167), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [187681] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3459), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7770), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1272), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1274), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [187728] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3462), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7770), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5173), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(5175), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [187775] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7782), 1, + anon_sym_LPAREN, + ACTIONS(7784), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7786), 1, + anon_sym_DOLLAR, + ACTIONS(7788), 1, + sym__special_character, + ACTIONS(7790), 1, + anon_sym_DQUOTE, + ACTIONS(7794), 1, + aux_sym_number_token1, + ACTIONS(7796), 1, + aux_sym_number_token2, + ACTIONS(7798), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7802), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7804), 1, + anon_sym_BQUOTE, + ACTIONS(7806), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7810), 1, + sym_variable_name, + ACTIONS(7816), 1, + sym__brace_start, + ACTIONS(7885), 1, + sym_word, + ACTIONS(7889), 1, + anon_sym_RBRACE3, + ACTIONS(7891), 1, + sym_test_operator, + ACTIONS(7893), 1, + sym__expansion_word, + STATE(6278), 1, + sym_command_substitution, + STATE(6494), 1, + aux_sym__literal_repeat1, + ACTIONS(7780), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7808), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7887), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(6442), 5, + sym_string, + sym_array, + sym_simple_expansion, + sym_expansion, + sym_process_substitution, + STATE(6735), 5, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_number, + sym__concatenation_in_expansion, + [187862] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3459), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7770), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5315), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(5317), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [187909] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3462), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7770), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5319), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(5321), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [187956] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3462), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7770), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2167), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(2169), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [188003] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1235), 1, + sym_file_descriptor, + ACTIONS(7631), 1, + anon_sym_DQUOTE, + ACTIONS(7635), 1, + sym_variable_name, + STATE(4316), 1, + sym_string, + ACTIONS(7633), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7629), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [188056] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3666), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3668), 1, + anon_sym_DOLLAR, + ACTIONS(3672), 1, + anon_sym_DQUOTE, + ACTIONS(3674), 1, + aux_sym_number_token1, + ACTIONS(3676), 1, + aux_sym_number_token2, + ACTIONS(3678), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3680), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3682), 1, + anon_sym_BQUOTE, + ACTIONS(3684), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3692), 1, + sym__brace_start, + ACTIONS(7757), 1, + sym__special_character, + ACTIONS(7759), 1, + sym_test_operator, + ACTIONS(7897), 1, + aux_sym_heredoc_redirect_token1, + STATE(4920), 1, + aux_sym__literal_repeat1, + ACTIONS(3652), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3686), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3485), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(7751), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(7895), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4539), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [188135] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3672), 1, + anon_sym_DQUOTE, + ACTIONS(7768), 1, + sym_variable_name, + STATE(4636), 1, + sym_string, + ACTIONS(1241), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(7766), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7764), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 19, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + aux_sym_heredoc_redirect_token1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, sym_raw_string, sym_ansi_c_string, - ACTIONS(7240), 2, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3477), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6303), 9, - sym_arithmetic_expansion, - sym_brace_expression, + sym_word, + [188188] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1241), 1, + sym_file_descriptor, + ACTIONS(7631), 1, + anon_sym_DQUOTE, + ACTIONS(7635), 1, + sym_variable_name, + STATE(4316), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [184329] = 8, + ACTIONS(7633), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7629), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [188241] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1235), 1, sym_file_descriptor, - ACTIONS(4084), 1, + ACTIONS(4078), 1, anon_sym_DQUOTE, - ACTIONS(7613), 1, + ACTIONS(7611), 1, sym_variable_name, - STATE(4606), 1, + STATE(4444), 1, sym_string, - ACTIONS(7611), 2, + ACTIONS(7609), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7609), 9, + ACTIONS(7607), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -234603,7 +238082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 21, + ACTIONS(1227), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -234613,7 +238092,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -234625,22 +238103,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - [184383] = 3, + [188294] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 5, + ACTIONS(1241), 1, sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 31, - anon_sym_LPAREN_LPAREN, + ACTIONS(4078), 1, + anon_sym_DQUOTE, + ACTIONS(7611), 1, + sym_variable_name, + STATE(4444), 1, + sym_string, + ACTIONS(7609), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7607), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 20, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -234648,77 +238146,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [188347] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3666), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(3668), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(3672), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3674), 1, aux_sym_number_token1, + ACTIONS(3676), 1, aux_sym_number_token2, + ACTIONS(3678), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3680), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3682), 1, anon_sym_BQUOTE, + ACTIONS(3684), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [184427] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6474), 1, - sym_word, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, - anon_sym_DOLLAR, - ACTIONS(6494), 1, - aux_sym_number_token1, - ACTIONS(6496), 1, - aux_sym_number_token2, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, - sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, + ACTIONS(3692), 1, sym__brace_start, - ACTIONS(7226), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, + ACTIONS(7757), 1, sym__special_character, - ACTIONS(7230), 1, - anon_sym_DQUOTE, - ACTIONS(7234), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, - anon_sym_BQUOTE, - ACTIONS(7238), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6426), 1, + ACTIONS(7759), 1, + sym_test_operator, + ACTIONS(7901), 1, + aux_sym_heredoc_redirect_token1, + STATE(4920), 1, aux_sym__literal_repeat1, - STATE(7494), 1, - sym_last_case_item, - ACTIONS(7224), 2, + ACTIONS(3652), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7240), 2, + ACTIONS(3686), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3477), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, + STATE(3485), 2, sym_concatenation, - sym__extglob_blob, - STATE(6303), 9, + aux_sym_for_statement_repeat1, + ACTIONS(7751), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(7899), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4539), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -234728,59 +238206,55 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [184513] = 24, - ACTIONS(71), 1, + [188426] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(6474), 1, - sym_word, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, - anon_sym_DOLLAR, - ACTIONS(6494), 1, - aux_sym_number_token1, - ACTIONS(6496), 1, - aux_sym_number_token2, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, - sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, - sym__brace_start, - ACTIONS(7226), 1, + ACTIONS(2183), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7909), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, + ACTIONS(7912), 1, + anon_sym_DOLLAR, + ACTIONS(7915), 1, sym__special_character, - ACTIONS(7230), 1, + ACTIONS(7918), 1, anon_sym_DQUOTE, - ACTIONS(7234), 1, + ACTIONS(7921), 1, + aux_sym_number_token1, + ACTIONS(7924), 1, + aux_sym_number_token2, + ACTIONS(7927), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, + ACTIONS(7930), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7933), 1, anon_sym_BQUOTE, - ACTIONS(7238), 1, + ACTIONS(7936), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6426), 1, + ACTIONS(7942), 1, + sym_test_operator, + ACTIONS(7945), 1, + sym__brace_start, + STATE(4920), 1, aux_sym__literal_repeat1, - STATE(7495), 1, - sym_last_case_item, - ACTIONS(7224), 2, + ACTIONS(7906), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7240), 2, + ACTIONS(7939), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3477), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, + STATE(3485), 2, sym_concatenation, - sym__extglob_blob, - STATE(6303), 9, + aux_sym_for_statement_repeat1, + ACTIONS(2181), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(7903), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4539), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -234790,105 +238264,55 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [184599] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7589), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7591), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7593), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7139), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7137), 20, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [184653] = 24, - ACTIONS(71), 1, + [188505] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(6474), 1, - sym_word, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, + ACTIONS(3666), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3668), 1, anon_sym_DOLLAR, - ACTIONS(6494), 1, + ACTIONS(3672), 1, + anon_sym_DQUOTE, + ACTIONS(3674), 1, aux_sym_number_token1, - ACTIONS(6496), 1, + ACTIONS(3676), 1, aux_sym_number_token2, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, - sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, - sym__brace_start, - ACTIONS(7226), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, - sym__special_character, - ACTIONS(7230), 1, - anon_sym_DQUOTE, - ACTIONS(7234), 1, + ACTIONS(3678), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, + ACTIONS(3680), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3682), 1, anon_sym_BQUOTE, - ACTIONS(7238), 1, + ACTIONS(3684), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6426), 1, + ACTIONS(3692), 1, + sym__brace_start, + ACTIONS(7757), 1, + sym__special_character, + ACTIONS(7759), 1, + sym_test_operator, + ACTIONS(7950), 1, + aux_sym_heredoc_redirect_token1, + STATE(4920), 1, aux_sym__literal_repeat1, - STATE(7503), 1, - sym_last_case_item, - ACTIONS(7224), 2, + ACTIONS(3652), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7240), 2, + ACTIONS(3686), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3477), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, + STATE(3485), 2, sym_concatenation, - sym__extglob_blob, - STATE(6303), 9, + aux_sym_for_statement_repeat1, + ACTIONS(7751), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(7948), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4539), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -234898,793 +238322,271 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [184739] = 24, + [188584] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6474), 1, - sym_word, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, + ACTIONS(1352), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(6494), 1, aux_sym_number_token1, - ACTIONS(6496), 1, aux_sym_number_token2, - ACTIONS(6500), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1354), 23, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, sym__brace_start, - ACTIONS(7226), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, + aux_sym_concatenation_token1, sym__special_character, - ACTIONS(7230), 1, anon_sym_DQUOTE, - ACTIONS(7234), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, - anon_sym_BQUOTE, - ACTIONS(7238), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6426), 1, - aux_sym__literal_repeat1, - STATE(7504), 1, - sym_last_case_item, - ACTIONS(7224), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [188626] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1304), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1306), 23, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(7240), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3477), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6303), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [184825] = 24, + [188668] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6474), 1, - sym_word, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, + ACTIONS(1276), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(6494), 1, aux_sym_number_token1, - ACTIONS(6496), 1, aux_sym_number_token2, - ACTIONS(6500), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1278), 23, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, sym__brace_start, - ACTIONS(7226), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [188710] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7952), 1, + sym_word, + ACTIONS(7956), 1, + anon_sym_LPAREN, + ACTIONS(7958), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, + ACTIONS(7960), 1, + anon_sym_DOLLAR, + ACTIONS(7962), 1, sym__special_character, - ACTIONS(7230), 1, + ACTIONS(7964), 1, anon_sym_DQUOTE, - ACTIONS(7234), 1, + ACTIONS(7968), 1, + aux_sym_number_token1, + ACTIONS(7970), 1, + aux_sym_number_token2, + ACTIONS(7972), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, + ACTIONS(7974), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7976), 1, anon_sym_BQUOTE, - ACTIONS(7238), 1, + ACTIONS(7978), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6426), 1, + ACTIONS(7982), 1, + sym__comment_word, + ACTIONS(7984), 1, + sym__empty_value, + ACTIONS(7986), 1, + sym_test_operator, + ACTIONS(7988), 1, + sym__brace_start, + STATE(4313), 1, aux_sym__literal_repeat1, - STATE(7489), 1, - sym_last_case_item, - ACTIONS(7224), 2, + ACTIONS(7954), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, + ACTIONS(7966), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7240), 2, + ACTIONS(7980), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3477), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, + STATE(4705), 2, sym_concatenation, - sym__extglob_blob, - STATE(6303), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [184911] = 10, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7585), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7591), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7593), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7139), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(7137), 18, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [184969] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7129), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, - anon_sym_PIPE, - ACTIONS(7579), 1, - anon_sym_CARET, - ACTIONS(7581), 1, - anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7591), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7593), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7571), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [185045] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1340), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1342), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [185089] = 11, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7591), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7593), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7139), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(7137), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [185149] = 12, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7581), 1, - anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7591), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7139), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(7593), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7137), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [185211] = 13, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7579), 1, - anon_sym_CARET, - ACTIONS(7581), 1, - anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7139), 2, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7591), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7593), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7137), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [185275] = 14, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7139), 1, - anon_sym_EQ, - ACTIONS(7577), 1, - anon_sym_PIPE, - ACTIONS(7579), 1, - anon_sym_CARET, - ACTIONS(7581), 1, - anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7591), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7593), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7137), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [185341] = 15, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7139), 1, - anon_sym_EQ, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, - anon_sym_PIPE, - ACTIONS(7579), 1, - anon_sym_CARET, - ACTIONS(7581), 1, - anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7591), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7593), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7137), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [185409] = 18, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, - anon_sym_PIPE, - ACTIONS(7579), 1, - anon_sym_CARET, - ACTIONS(7581), 1, - anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7591), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7593), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7137), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_RBRACK, - [185483] = 17, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7139), 1, - anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, - anon_sym_PIPE, - ACTIONS(7579), 1, - anon_sym_CARET, - ACTIONS(7581), 1, - anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7591), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7593), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7137), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - [185555] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7029), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, - anon_sym_PIPE, - ACTIONS(7579), 1, - anon_sym_CARET, - ACTIONS(7581), 1, - anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7591), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7593), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7571), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [185631] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7114), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7112), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [185675] = 24, + sym_array, + STATE(4830), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [188792] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6474), 1, - sym_word, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, + ACTIONS(1328), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(6494), 1, aux_sym_number_token1, - ACTIONS(6496), 1, aux_sym_number_token2, - ACTIONS(6500), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1330), 23, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, sym__brace_start, - ACTIONS(7226), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [188834] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1878), 1, + anon_sym_DOLLAR, + ACTIONS(1884), 1, + aux_sym_number_token1, + ACTIONS(1886), 1, + aux_sym_number_token2, + ACTIONS(1890), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1904), 1, + sym__brace_start, + ACTIONS(7990), 1, + sym_word, + ACTIONS(7994), 1, + anon_sym_LPAREN, + ACTIONS(7996), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, + ACTIONS(7998), 1, sym__special_character, - ACTIONS(7230), 1, + ACTIONS(8000), 1, anon_sym_DQUOTE, - ACTIONS(7234), 1, + ACTIONS(8004), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, + ACTIONS(8006), 1, anon_sym_BQUOTE, - ACTIONS(7238), 1, + ACTIONS(8008), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6426), 1, + ACTIONS(8012), 1, + sym__comment_word, + ACTIONS(8014), 1, + sym__empty_value, + ACTIONS(8016), 1, + sym_test_operator, + STATE(1532), 1, aux_sym__literal_repeat1, - STATE(7035), 1, - sym_last_case_item, - ACTIONS(7224), 2, + ACTIONS(7992), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, + ACTIONS(8002), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7240), 2, + ACTIONS(8010), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3477), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, + STATE(1878), 2, sym_concatenation, - sym__extglob_blob, - STATE(6303), 9, + sym_array, + STATE(1205), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -235694,59 +238596,56 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [185761] = 24, - ACTIONS(71), 1, + [188916] = 23, + ACTIONS(3), 1, sym_comment, - ACTIONS(6474), 1, + ACTIONS(8018), 1, sym_word, - ACTIONS(6480), 1, + ACTIONS(8022), 1, anon_sym_LPAREN, - ACTIONS(6488), 1, - anon_sym_DOLLAR, - ACTIONS(6494), 1, - aux_sym_number_token1, - ACTIONS(6496), 1, - aux_sym_number_token2, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, - sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, - sym__brace_start, - ACTIONS(7226), 1, + ACTIONS(8024), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, + ACTIONS(8026), 1, + anon_sym_DOLLAR, + ACTIONS(8028), 1, sym__special_character, - ACTIONS(7230), 1, + ACTIONS(8030), 1, anon_sym_DQUOTE, - ACTIONS(7234), 1, + ACTIONS(8034), 1, + aux_sym_number_token1, + ACTIONS(8036), 1, + aux_sym_number_token2, + ACTIONS(8038), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, + ACTIONS(8040), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8042), 1, anon_sym_BQUOTE, - ACTIONS(7238), 1, + ACTIONS(8044), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6426), 1, + ACTIONS(8048), 1, + sym__comment_word, + ACTIONS(8050), 1, + sym__empty_value, + ACTIONS(8052), 1, + sym_test_operator, + ACTIONS(8054), 1, + sym__brace_start, + STATE(4412), 1, aux_sym__literal_repeat1, - STATE(7049), 1, - sym_last_case_item, - ACTIONS(7224), 2, + ACTIONS(8020), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, + ACTIONS(8032), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7240), 2, + ACTIONS(8046), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3477), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, + STATE(4728), 2, sym_concatenation, - sym__extglob_blob, - STATE(6303), 9, + sym_array, + STATE(4259), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -235756,100 +238655,56 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [185847] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1336), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1338), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [185891] = 24, - ACTIONS(71), 1, + [188998] = 23, + ACTIONS(3), 1, sym_comment, - ACTIONS(6474), 1, - sym_word, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, + ACTIONS(2038), 1, anon_sym_DOLLAR, - ACTIONS(6494), 1, + ACTIONS(2044), 1, aux_sym_number_token1, - ACTIONS(6496), 1, + ACTIONS(2046), 1, aux_sym_number_token2, - ACTIONS(6500), 1, + ACTIONS(2050), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, - sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, + ACTIONS(2064), 1, sym__brace_start, - ACTIONS(7226), 1, + ACTIONS(8056), 1, + sym_word, + ACTIONS(8060), 1, + anon_sym_LPAREN, + ACTIONS(8062), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, + ACTIONS(8064), 1, sym__special_character, - ACTIONS(7230), 1, + ACTIONS(8066), 1, anon_sym_DQUOTE, - ACTIONS(7234), 1, + ACTIONS(8070), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, + ACTIONS(8072), 1, anon_sym_BQUOTE, - ACTIONS(7238), 1, + ACTIONS(8074), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6426), 1, + ACTIONS(8078), 1, + sym__comment_word, + ACTIONS(8080), 1, + sym__empty_value, + ACTIONS(8082), 1, + sym_test_operator, + STATE(1809), 1, aux_sym__literal_repeat1, - STATE(7315), 1, - sym_last_case_item, - ACTIONS(7224), 2, + ACTIONS(8058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, + ACTIONS(8068), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7240), 2, + ACTIONS(8076), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3477), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, + STATE(1976), 2, sym_concatenation, - sym__extglob_blob, - STATE(6303), 9, + sym_array, + STATE(2339), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -235859,493 +238714,212 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [185977] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7719), 1, - anon_sym_STAR_STAR, - ACTIONS(7735), 1, - anon_sym_AMP, - ACTIONS(7739), 1, - anon_sym_CARET, - ACTIONS(7741), 1, - anon_sym_PIPE, - ACTIONS(7511), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(7717), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7723), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7725), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7729), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7731), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7743), 2, - anon_sym_AMP_AMP, - anon_sym_DASHa, - ACTIONS(7745), 2, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - ACTIONS(7721), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7749), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [186047] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7489), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7491), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [186091] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7501), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7503), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [186135] = 3, + [189080] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7489), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(1308), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1310), 23, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7491), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [186179] = 3, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [189122] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1344), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(1332), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1346), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [186223] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7589), 2, - anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1334), 23, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, - ACTIONS(7591), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7593), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7096), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7094), 20, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [186277] = 4, - ACTIONS(71), 1, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [189164] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7096), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7094), 20, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(1274), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1272), 30, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [186323] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1356), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1358), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [186367] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7589), 2, - anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7593), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7096), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7094), 20, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [186421] = 3, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [189206] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7106), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(1312), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7104), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [186465] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6474), 1, - sym_word, - ACTIONS(6480), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(6494), 1, aux_sym_number_token1, - ACTIONS(6496), 1, aux_sym_number_token2, - ACTIONS(6500), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1314), 23, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, sym__brace_start, - ACTIONS(7226), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [189248] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8084), 1, + sym_word, + ACTIONS(8088), 1, + anon_sym_LPAREN, + ACTIONS(8090), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, + ACTIONS(8092), 1, + anon_sym_DOLLAR, + ACTIONS(8094), 1, sym__special_character, - ACTIONS(7230), 1, + ACTIONS(8096), 1, anon_sym_DQUOTE, - ACTIONS(7234), 1, + ACTIONS(8100), 1, + aux_sym_number_token1, + ACTIONS(8102), 1, + aux_sym_number_token2, + ACTIONS(8104), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, + ACTIONS(8106), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8108), 1, anon_sym_BQUOTE, - ACTIONS(7238), 1, + ACTIONS(8110), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6426), 1, + ACTIONS(8114), 1, + sym__comment_word, + ACTIONS(8116), 1, + sym__empty_value, + ACTIONS(8118), 1, + sym_test_operator, + ACTIONS(8120), 1, + sym__brace_start, + STATE(1796), 1, aux_sym__literal_repeat1, - STATE(7528), 1, - sym_last_case_item, - ACTIONS(7224), 2, + ACTIONS(8086), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, + ACTIONS(8098), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7240), 2, + ACTIONS(8112), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3477), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, + STATE(1949), 2, sym_concatenation, - sym__extglob_blob, - STATE(6303), 9, + sym_array, + STATE(2335), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -236355,59 +238929,115 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [186551] = 24, - ACTIONS(71), 1, + [189330] = 23, + ACTIONS(3), 1, sym_comment, - ACTIONS(6474), 1, + ACTIONS(8122), 1, sym_word, - ACTIONS(6480), 1, + ACTIONS(8126), 1, anon_sym_LPAREN, - ACTIONS(6488), 1, + ACTIONS(8128), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8130), 1, anon_sym_DOLLAR, - ACTIONS(6494), 1, + ACTIONS(8132), 1, + sym__special_character, + ACTIONS(8134), 1, + anon_sym_DQUOTE, + ACTIONS(8138), 1, aux_sym_number_token1, - ACTIONS(6496), 1, + ACTIONS(8140), 1, aux_sym_number_token2, - ACTIONS(6500), 1, + ACTIONS(8142), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8144), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6508), 1, + ACTIONS(8146), 1, + anon_sym_BQUOTE, + ACTIONS(8148), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8152), 1, + sym__comment_word, + ACTIONS(8154), 1, + sym__empty_value, + ACTIONS(8156), 1, sym_test_operator, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, + ACTIONS(8158), 1, sym__brace_start, - ACTIONS(7226), 1, + STATE(5474), 1, + aux_sym__literal_repeat1, + ACTIONS(8124), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8136), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8150), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(5576), 2, + sym_concatenation, + sym_array, + STATE(5264), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [189412] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8160), 1, + sym_word, + ACTIONS(8164), 1, + anon_sym_LPAREN, + ACTIONS(8166), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, + ACTIONS(8168), 1, + anon_sym_DOLLAR, + ACTIONS(8170), 1, sym__special_character, - ACTIONS(7230), 1, + ACTIONS(8172), 1, anon_sym_DQUOTE, - ACTIONS(7234), 1, + ACTIONS(8176), 1, + aux_sym_number_token1, + ACTIONS(8178), 1, + aux_sym_number_token2, + ACTIONS(8180), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, + ACTIONS(8182), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8184), 1, anon_sym_BQUOTE, - ACTIONS(7238), 1, + ACTIONS(8186), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6426), 1, + ACTIONS(8190), 1, + sym__comment_word, + ACTIONS(8192), 1, + sym__empty_value, + ACTIONS(8194), 1, + sym_test_operator, + ACTIONS(8196), 1, + sym__brace_start, + STATE(4460), 1, aux_sym__literal_repeat1, - STATE(7603), 1, - sym_last_case_item, - ACTIONS(7224), 2, + ACTIONS(8162), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7232), 2, + ACTIONS(8174), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(7240), 2, + ACTIONS(8188), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3477), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6695), 2, + STATE(4899), 2, sym_concatenation, - sym__extglob_blob, - STATE(6303), 9, + sym_array, + STATE(4323), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -236417,139 +239047,128 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [186637] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1352), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1354), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [186681] = 4, - ACTIONS(71), 1, + [189494] = 23, + ACTIONS(3), 1, sym_comment, - ACTIONS(7717), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7469), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7471), 21, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [186727] = 3, - ACTIONS(71), 1, + ACTIONS(7956), 1, + anon_sym_LPAREN, + ACTIONS(7958), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7960), 1, + anon_sym_DOLLAR, + ACTIONS(7964), 1, + anon_sym_DQUOTE, + ACTIONS(7968), 1, + aux_sym_number_token1, + ACTIONS(7970), 1, + aux_sym_number_token2, + ACTIONS(7972), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7974), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7976), 1, + anon_sym_BQUOTE, + ACTIONS(7978), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7982), 1, + sym__comment_word, + ACTIONS(7984), 1, + sym__empty_value, + ACTIONS(7988), 1, + sym__brace_start, + ACTIONS(8198), 1, + sym_word, + ACTIONS(8200), 1, + sym__special_character, + ACTIONS(8204), 1, + sym_test_operator, + STATE(4313), 1, + aux_sym__literal_repeat1, + ACTIONS(7954), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7980), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8202), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4705), 2, + sym_concatenation, + sym_array, + STATE(5234), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [189576] = 23, + ACTIONS(3), 1, sym_comment, - ACTIONS(7465), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7467), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [186771] = 5, + ACTIONS(2125), 1, + anon_sym_DOLLAR, + ACTIONS(2131), 1, + aux_sym_number_token1, + ACTIONS(2133), 1, + aux_sym_number_token2, + ACTIONS(2137), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2151), 1, + sym__brace_start, + ACTIONS(8206), 1, + sym_word, + ACTIONS(8210), 1, + anon_sym_LPAREN, + ACTIONS(8212), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8214), 1, + sym__special_character, + ACTIONS(8216), 1, + anon_sym_DQUOTE, + ACTIONS(8220), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8222), 1, + anon_sym_BQUOTE, + ACTIONS(8224), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8228), 1, + sym__comment_word, + ACTIONS(8230), 1, + sym__empty_value, + ACTIONS(8232), 1, + sym_test_operator, + STATE(1748), 1, + aux_sym__literal_repeat1, + ACTIONS(8208), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8218), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8226), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1960), 2, + sym_concatenation, + sym_array, + STATE(1405), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [189658] = 3, ACTIONS(71), 1, sym_comment, - STATE(3461), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7751), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4370), 11, + ACTIONS(1316), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -236561,8 +239180,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(4372), 21, + ACTIONS(1318), 23, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -236575,6 +239195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -236583,100 +239204,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [186818] = 8, - ACTIONS(3), 1, + [189700] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_DQUOTE, - ACTIONS(7757), 1, + ACTIONS(1296), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1298), 23, + sym_file_descriptor, + sym__concat, sym_variable_name, - STATE(4808), 1, - sym_string, - ACTIONS(1241), 2, sym_test_operator, sym__brace_start, - ACTIONS(7755), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7753), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 19, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [186871] = 21, + [189742] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3729), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3731), 1, + ACTIONS(1694), 1, anon_sym_DOLLAR, - ACTIONS(3735), 1, - anon_sym_DQUOTE, - ACTIONS(3737), 1, + ACTIONS(1700), 1, aux_sym_number_token1, - ACTIONS(3739), 1, + ACTIONS(1702), 1, aux_sym_number_token2, - ACTIONS(3741), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3743), 1, + ACTIONS(1706), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3745), 1, - anon_sym_BQUOTE, - ACTIONS(3747), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3755), 1, + ACTIONS(1720), 1, sym__brace_start, - ACTIONS(7763), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7765), 1, + ACTIONS(8234), 1, + sym_word, + ACTIONS(8238), 1, + anon_sym_LPAREN, + ACTIONS(8240), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8242), 1, sym__special_character, - ACTIONS(7767), 1, + ACTIONS(8244), 1, + anon_sym_DQUOTE, + ACTIONS(8248), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8250), 1, + anon_sym_BQUOTE, + ACTIONS(8252), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8256), 1, + sym__comment_word, + ACTIONS(8258), 1, + sym__empty_value, + ACTIONS(8260), 1, sym_test_operator, - STATE(4975), 1, + STATE(1323), 1, aux_sym__literal_repeat1, - ACTIONS(3715), 2, + ACTIONS(8236), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3749), 2, + ACTIONS(8246), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8254), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3478), 2, + STATE(1584), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(7759), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(7761), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4460), 9, + sym_array, + STATE(1060), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -236686,16 +239302,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [186950] = 6, + [189824] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7751), 1, - aux_sym_concatenation_token1, - ACTIONS(7769), 1, - sym__concat, - STATE(3468), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1265), 11, + ACTIONS(1344), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -236707,8 +239317,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1267), 21, + ACTIONS(1346), 23, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -236721,6 +239332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -236729,74 +239341,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [186999] = 21, - ACTIONS(3), 1, + [189866] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(3729), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3731), 1, + ACTIONS(1356), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(3735), 1, - anon_sym_DQUOTE, - ACTIONS(3737), 1, aux_sym_number_token1, - ACTIONS(3739), 1, aux_sym_number_token2, - ACTIONS(3741), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3743), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3745), 1, anon_sym_BQUOTE, - ACTIONS(3747), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3755), 1, - sym__brace_start, - ACTIONS(7765), 1, - sym__special_character, - ACTIONS(7767), 1, + sym_word, + ACTIONS(1358), 23, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - ACTIONS(7773), 1, - aux_sym_heredoc_redirect_token1, - STATE(4975), 1, - aux_sym__literal_repeat1, - ACTIONS(3715), 2, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3749), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3478), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(7759), 3, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - sym_word, - ACTIONS(7771), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4460), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [187078] = 6, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [189908] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7751), 1, - aux_sym_concatenation_token1, - ACTIONS(7775), 1, - sym__concat, - STATE(3468), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1286), 11, + ACTIONS(1336), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -236808,8 +239395,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1288), 21, + ACTIONS(1338), 23, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -236822,6 +239410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -236830,167 +239419,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [187127] = 25, - ACTIONS(71), 1, + [189950] = 23, + ACTIONS(3), 1, sym_comment, - ACTIONS(7777), 1, - sym_word, - ACTIONS(7781), 1, + ACTIONS(8088), 1, anon_sym_LPAREN, - ACTIONS(7783), 1, + ACTIONS(8090), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7785), 1, + ACTIONS(8092), 1, anon_sym_DOLLAR, - ACTIONS(7787), 1, - sym__special_character, - ACTIONS(7789), 1, + ACTIONS(8096), 1, anon_sym_DQUOTE, - ACTIONS(7793), 1, + ACTIONS(8100), 1, aux_sym_number_token1, - ACTIONS(7795), 1, + ACTIONS(8102), 1, aux_sym_number_token2, - ACTIONS(7797), 1, + ACTIONS(8104), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7799), 1, - anon_sym_RBRACE3, - ACTIONS(7801), 1, + ACTIONS(8106), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7803), 1, + ACTIONS(8108), 1, anon_sym_BQUOTE, - ACTIONS(7805), 1, + ACTIONS(8110), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7809), 1, - sym_variable_name, - ACTIONS(7811), 1, - sym_test_operator, - ACTIONS(7813), 1, - sym__expansion_word, - ACTIONS(7815), 1, + ACTIONS(8114), 1, + sym__comment_word, + ACTIONS(8116), 1, + sym__empty_value, + ACTIONS(8120), 1, sym__brace_start, - STATE(6346), 1, - sym_command_substitution, - STATE(6482), 1, + ACTIONS(8262), 1, + sym_word, + ACTIONS(8264), 1, + sym__special_character, + ACTIONS(8268), 1, + sym_test_operator, + STATE(1796), 1, aux_sym__literal_repeat1, - ACTIONS(7779), 2, + ACTIONS(8086), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7791), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7807), 2, + ACTIONS(8112), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(6427), 5, - sym_string, + ACTIONS(8266), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1949), 2, + sym_concatenation, sym_array, - sym_simple_expansion, - sym_expansion, - sym_process_substitution, - STATE(6782), 5, + STATE(1666), 9, sym_arithmetic_expansion, sym_brace_expression, + sym_string, sym_translated_string, sym_number, - sym__concatenation_in_expansion, - [187214] = 8, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [190032] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1241), 1, - sym_file_descriptor, - ACTIONS(7673), 1, + ACTIONS(7956), 1, + anon_sym_LPAREN, + ACTIONS(7958), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7960), 1, + anon_sym_DOLLAR, + ACTIONS(7964), 1, anon_sym_DQUOTE, - ACTIONS(7677), 1, - sym_variable_name, - STATE(4393), 1, + ACTIONS(7968), 1, + aux_sym_number_token1, + ACTIONS(7970), 1, + aux_sym_number_token2, + ACTIONS(7972), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7974), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7976), 1, + anon_sym_BQUOTE, + ACTIONS(7978), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7982), 1, + sym__comment_word, + ACTIONS(7984), 1, + sym__empty_value, + ACTIONS(7988), 1, + sym__brace_start, + ACTIONS(8270), 1, + sym_word, + ACTIONS(8272), 1, + sym__special_character, + ACTIONS(8276), 1, + sym_test_operator, + STATE(4313), 1, + aux_sym__literal_repeat1, + ACTIONS(7954), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7980), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8274), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4705), 2, + sym_concatenation, + sym_array, + STATE(4575), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(7675), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7671), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [187267] = 8, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [190114] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1235), 1, - sym_file_descriptor, - ACTIONS(7673), 1, + ACTIONS(2038), 1, + anon_sym_DOLLAR, + ACTIONS(2044), 1, + aux_sym_number_token1, + ACTIONS(2046), 1, + aux_sym_number_token2, + ACTIONS(2050), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2064), 1, + sym__brace_start, + ACTIONS(8060), 1, + anon_sym_LPAREN, + ACTIONS(8062), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8066), 1, anon_sym_DQUOTE, - ACTIONS(7677), 1, - sym_variable_name, - STATE(4393), 1, + ACTIONS(8070), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8072), 1, + anon_sym_BQUOTE, + ACTIONS(8074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8078), 1, + sym__comment_word, + ACTIONS(8080), 1, + sym__empty_value, + ACTIONS(8278), 1, + sym_word, + ACTIONS(8280), 1, + sym__special_character, + ACTIONS(8284), 1, + sym_test_operator, + STATE(1809), 1, + aux_sym__literal_repeat1, + ACTIONS(8058), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8076), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8282), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1976), 2, + sym_concatenation, + sym_array, + STATE(1680), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(7675), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7671), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [187320] = 5, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [190196] = 3, ACTIONS(71), 1, sym_comment, - STATE(3459), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7751), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5067), 11, + ACTIONS(1300), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -237002,8 +239611,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5069), 21, + ACTIONS(1302), 23, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -237016,6 +239626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -237024,99 +239635,246 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [187367] = 5, - ACTIONS(71), 1, + [190238] = 23, + ACTIONS(3), 1, sym_comment, - STATE(3461), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7751), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5373), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(8286), 1, + sym_word, + ACTIONS(8290), 1, + anon_sym_LPAREN, + ACTIONS(8292), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8294), 1, anon_sym_DOLLAR, + ACTIONS(8296), 1, + sym__special_character, + ACTIONS(8298), 1, + anon_sym_DQUOTE, + ACTIONS(8302), 1, aux_sym_number_token1, + ACTIONS(8304), 1, aux_sym_number_token2, + ACTIONS(8306), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8308), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(8310), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(5375), 21, - sym_file_descriptor, - sym_variable_name, + ACTIONS(8312), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8316), 1, + sym__comment_word, + ACTIONS(8318), 1, + sym__empty_value, + ACTIONS(8320), 1, sym_test_operator, + ACTIONS(8322), 1, sym__brace_start, + STATE(1314), 1, + aux_sym__literal_repeat1, + ACTIONS(8288), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(8300), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(8314), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [187414] = 5, - ACTIONS(71), 1, + STATE(1506), 2, + sym_concatenation, + sym_array, + STATE(1054), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [190320] = 23, + ACTIONS(3), 1, sym_comment, - STATE(3461), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7751), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4552), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(2038), 1, anon_sym_DOLLAR, + ACTIONS(2044), 1, aux_sym_number_token1, + ACTIONS(2046), 1, aux_sym_number_token2, + ACTIONS(2050), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2064), 1, + sym__brace_start, + ACTIONS(8060), 1, + anon_sym_LPAREN, + ACTIONS(8062), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8066), 1, + anon_sym_DQUOTE, + ACTIONS(8070), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8072), 1, anon_sym_BQUOTE, + ACTIONS(8074), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8078), 1, + sym__comment_word, + ACTIONS(8080), 1, + sym__empty_value, + ACTIONS(8324), 1, sym_word, - ACTIONS(4554), 21, - sym_file_descriptor, - sym_variable_name, + ACTIONS(8326), 1, + sym__special_character, + ACTIONS(8330), 1, sym_test_operator, - sym__brace_start, + STATE(1809), 1, + aux_sym__literal_repeat1, + ACTIONS(8058), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8076), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8328), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1976), 2, + sym_concatenation, + sym_array, + STATE(1443), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [190402] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8332), 1, + sym_word, + ACTIONS(8336), 1, + anon_sym_LPAREN, + ACTIONS(8338), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(8340), 1, + anon_sym_DOLLAR, + ACTIONS(8342), 1, sym__special_character, + ACTIONS(8344), 1, anon_sym_DQUOTE, + ACTIONS(8348), 1, + aux_sym_number_token1, + ACTIONS(8350), 1, + aux_sym_number_token2, + ACTIONS(8352), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8354), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8356), 1, + anon_sym_BQUOTE, + ACTIONS(8358), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8362), 1, + sym__comment_word, + ACTIONS(8364), 1, + sym__empty_value, + ACTIONS(8366), 1, + sym_test_operator, + ACTIONS(8368), 1, + sym__brace_start, + STATE(3540), 1, + aux_sym__literal_repeat1, + ACTIONS(8334), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8346), 2, sym_raw_string, sym_ansi_c_string, + ACTIONS(8360), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3547), 2, + sym_concatenation, + sym_array, + STATE(3473), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [190484] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8370), 1, + sym_word, + ACTIONS(8374), 1, + anon_sym_LPAREN, + ACTIONS(8376), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8378), 1, + anon_sym_DOLLAR, + ACTIONS(8380), 1, + sym__special_character, + ACTIONS(8382), 1, + anon_sym_DQUOTE, + ACTIONS(8386), 1, + aux_sym_number_token1, + ACTIONS(8388), 1, + aux_sym_number_token2, + ACTIONS(8390), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(8392), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8394), 1, + anon_sym_BQUOTE, + ACTIONS(8396), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(8400), 1, + sym__comment_word, + ACTIONS(8402), 1, + sym__empty_value, + ACTIONS(8404), 1, + sym_test_operator, + ACTIONS(8406), 1, + sym__brace_start, + STATE(2662), 1, + aux_sym__literal_repeat1, + ACTIONS(8372), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8384), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8398), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [187461] = 5, + STATE(2792), 2, + sym_concatenation, + sym_array, + STATE(2363), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [190566] = 3, ACTIONS(71), 1, sym_comment, - STATE(3468), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7817), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1251), 11, + ACTIONS(1320), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -237128,8 +239886,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1253), 21, + ACTIONS(1322), 23, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -237142,6 +239901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -237150,119 +239910,246 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [187508] = 5, + [190608] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(7820), 1, + ACTIONS(8408), 1, + sym_word, + ACTIONS(8412), 1, + anon_sym_LPAREN, + ACTIONS(8414), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8416), 1, + anon_sym_DOLLAR, + ACTIONS(8418), 1, sym__special_character, - STATE(3473), 1, - aux_sym__literal_repeat1, - ACTIONS(5395), 4, - sym_file_descriptor, + ACTIONS(8420), 1, + anon_sym_DQUOTE, + ACTIONS(8424), 1, + aux_sym_number_token1, + ACTIONS(8426), 1, + aux_sym_number_token2, + ACTIONS(8428), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8430), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8432), 1, + anon_sym_BQUOTE, + ACTIONS(8434), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8438), 1, + sym__comment_word, + ACTIONS(8440), 1, + sym__empty_value, + ACTIONS(8442), 1, sym_test_operator, + ACTIONS(8444), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5393), 29, + STATE(1911), 1, + aux_sym__literal_repeat1, + ACTIONS(8410), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8422), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8436), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2201), 2, + sym_concatenation, + sym_array, + STATE(1316), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [190690] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4213), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4215), 1, anon_sym_DOLLAR, + ACTIONS(4217), 1, + sym__special_character, + ACTIONS(4219), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4223), 1, aux_sym_number_token1, + ACTIONS(4225), 1, aux_sym_number_token2, + ACTIONS(4227), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4229), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4231), 1, anon_sym_BQUOTE, + ACTIONS(4233), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4243), 1, + sym__brace_start, + ACTIONS(8446), 1, + sym_word, + ACTIONS(8448), 1, + anon_sym_LPAREN, + ACTIONS(8452), 1, + sym__comment_word, + ACTIONS(8454), 1, + sym__empty_value, + ACTIONS(8456), 1, + sym_test_operator, + STATE(2644), 1, + aux_sym__literal_repeat1, + ACTIONS(4211), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4235), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [187555] = 25, - ACTIONS(71), 1, + ACTIONS(8450), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2756), 2, + sym_concatenation, + sym_array, + STATE(2393), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [190772] = 23, + ACTIONS(3), 1, sym_comment, - ACTIONS(7781), 1, + ACTIONS(7956), 1, anon_sym_LPAREN, - ACTIONS(7783), 1, + ACTIONS(7958), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7785), 1, + ACTIONS(7960), 1, anon_sym_DOLLAR, - ACTIONS(7787), 1, - sym__special_character, - ACTIONS(7789), 1, + ACTIONS(7964), 1, anon_sym_DQUOTE, - ACTIONS(7793), 1, + ACTIONS(7968), 1, aux_sym_number_token1, - ACTIONS(7795), 1, + ACTIONS(7970), 1, aux_sym_number_token2, - ACTIONS(7797), 1, + ACTIONS(7972), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7801), 1, + ACTIONS(7974), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7803), 1, + ACTIONS(7976), 1, anon_sym_BQUOTE, - ACTIONS(7805), 1, + ACTIONS(7978), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7809), 1, - sym_variable_name, - ACTIONS(7815), 1, + ACTIONS(7982), 1, + sym__comment_word, + ACTIONS(7984), 1, + sym__empty_value, + ACTIONS(7988), 1, sym__brace_start, - ACTIONS(7822), 1, + ACTIONS(8458), 1, sym_word, - ACTIONS(7826), 1, - anon_sym_RBRACE3, - ACTIONS(7828), 1, + ACTIONS(8460), 1, + sym__special_character, + ACTIONS(8464), 1, sym_test_operator, - ACTIONS(7830), 1, - sym__expansion_word, - STATE(6353), 1, - sym_command_substitution, - STATE(6530), 1, + STATE(4313), 1, aux_sym__literal_repeat1, - ACTIONS(7779), 2, + ACTIONS(7954), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7807), 2, + ACTIONS(7980), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7824), 2, + ACTIONS(8462), 2, sym_raw_string, sym_ansi_c_string, - STATE(6379), 5, - sym_string, + STATE(4705), 2, + sym_concatenation, sym_array, + STATE(4530), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, sym_expansion, + sym_command_substitution, sym_process_substitution, - STATE(6788), 5, + [190854] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7956), 1, + anon_sym_LPAREN, + ACTIONS(7958), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7960), 1, + anon_sym_DOLLAR, + ACTIONS(7964), 1, + anon_sym_DQUOTE, + ACTIONS(7968), 1, + aux_sym_number_token1, + ACTIONS(7970), 1, + aux_sym_number_token2, + ACTIONS(7972), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7974), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7976), 1, + anon_sym_BQUOTE, + ACTIONS(7978), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7982), 1, + sym__comment_word, + ACTIONS(7984), 1, + sym__empty_value, + ACTIONS(7988), 1, + sym__brace_start, + ACTIONS(8466), 1, + sym_word, + ACTIONS(8468), 1, + sym__special_character, + ACTIONS(8472), 1, + sym_test_operator, + STATE(4313), 1, + aux_sym__literal_repeat1, + ACTIONS(7954), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7980), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8470), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4705), 2, + sym_concatenation, + sym_array, + STATE(4597), 9, sym_arithmetic_expansion, sym_brace_expression, + sym_string, sym_translated_string, sym_number, - sym__concatenation_in_expansion, - [187642] = 5, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [190936] = 3, ACTIONS(71), 1, sym_comment, - STATE(3461), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7751), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2094), 11, + ACTIONS(1340), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -237274,8 +240161,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(2096), 21, + ACTIONS(1342), 23, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -237288,6 +240176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -237296,15 +240185,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [187689] = 5, + [190978] = 3, ACTIONS(71), 1, sym_comment, - STATE(3459), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7751), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4564), 11, + ACTIONS(1292), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -237316,8 +240200,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(4566), 21, + ACTIONS(1294), 23, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -237330,6 +240215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -237338,160 +240224,262 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [187736] = 5, + [191020] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(7832), 1, + ACTIONS(8088), 1, + anon_sym_LPAREN, + ACTIONS(8090), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8092), 1, + anon_sym_DOLLAR, + ACTIONS(8096), 1, + anon_sym_DQUOTE, + ACTIONS(8100), 1, + aux_sym_number_token1, + ACTIONS(8102), 1, + aux_sym_number_token2, + ACTIONS(8104), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8106), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8108), 1, + anon_sym_BQUOTE, + ACTIONS(8110), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8114), 1, + sym__comment_word, + ACTIONS(8116), 1, + sym__empty_value, + ACTIONS(8120), 1, + sym__brace_start, + ACTIONS(8474), 1, + sym_word, + ACTIONS(8476), 1, sym__special_character, - STATE(3473), 1, - aux_sym__literal_repeat1, - ACTIONS(1364), 4, - sym_file_descriptor, + ACTIONS(8480), 1, sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 29, + STATE(1796), 1, + aux_sym__literal_repeat1, + ACTIONS(8086), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8112), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8478), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1949), 2, + sym_concatenation, + sym_array, + STATE(1365), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [191102] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8482), 1, + sym_word, + ACTIONS(8486), 1, + anon_sym_LPAREN, + ACTIONS(8488), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(8490), 1, anon_sym_DOLLAR, + ACTIONS(8492), 1, + sym__special_character, + ACTIONS(8494), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(8498), 1, aux_sym_number_token1, + ACTIONS(8500), 1, aux_sym_number_token2, + ACTIONS(8502), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(8504), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(8506), 1, anon_sym_BQUOTE, + ACTIONS(8508), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(8512), 1, + sym__comment_word, + ACTIONS(8514), 1, + sym__empty_value, + ACTIONS(8516), 1, + sym_test_operator, + ACTIONS(8518), 1, + sym__brace_start, + STATE(1719), 1, + aux_sym__literal_repeat1, + ACTIONS(8484), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8496), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8510), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [187783] = 8, + STATE(1871), 2, + sym_concatenation, + sym_array, + STATE(1188), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [191184] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_DQUOTE, - ACTIONS(7757), 1, + ACTIONS(8522), 1, + anon_sym_SLASH, + ACTIONS(8524), 1, + anon_sym_PERCENT, + ACTIONS(8526), 1, + anon_sym_COLON, + ACTIONS(8530), 1, + anon_sym_RBRACE3, + ACTIONS(8532), 1, + anon_sym_AT, + ACTIONS(8534), 1, + anon_sym_STAR2, + STATE(6428), 1, + aux_sym__expansion_body_repeat1, + STATE(7195), 1, + sym__expansion_operator, + STATE(7390), 1, + sym__expansion_expression, + STATE(7433), 1, + sym__expansion_regex, + STATE(7442), 1, + sym__expansion_regex_replacement, + STATE(7447), 1, + sym__expansion_regex_removal, + STATE(7463), 1, + sym__expansion_max_length, + ACTIONS(8520), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(8540), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(8528), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(8538), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(8542), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(8536), 8, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + [191260] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1324), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1326), 23, + sym_file_descriptor, + sym__concat, sym_variable_name, - STATE(4808), 1, - sym_string, - ACTIONS(1235), 2, sym_test_operator, sym__brace_start, - ACTIONS(7755), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7753), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 19, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [187836] = 21, - ACTIONS(3), 1, + [191302] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(3729), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3731), 1, + ACTIONS(1348), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(3735), 1, - anon_sym_DQUOTE, - ACTIONS(3737), 1, aux_sym_number_token1, - ACTIONS(3739), 1, aux_sym_number_token2, - ACTIONS(3741), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3743), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3745), 1, anon_sym_BQUOTE, - ACTIONS(3747), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3755), 1, - sym__brace_start, - ACTIONS(7765), 1, - sym__special_character, - ACTIONS(7767), 1, + sym_word, + ACTIONS(1350), 23, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - ACTIONS(7837), 1, - aux_sym_heredoc_redirect_token1, - STATE(4975), 1, - aux_sym__literal_repeat1, - ACTIONS(3715), 2, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3749), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3478), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(7759), 3, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - sym_word, - ACTIONS(7835), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4460), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [187915] = 5, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [191344] = 3, ACTIONS(71), 1, sym_comment, - STATE(3459), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7751), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1261), 11, + ACTIONS(1356), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -237503,8 +240491,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1263), 21, + ACTIONS(1358), 23, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -237517,6 +240506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, @@ -237525,133 +240515,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [187962] = 23, + [191386] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7839), 1, - sym_word, - ACTIONS(7845), 1, - anon_sym_LPAREN, - ACTIONS(7848), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7851), 1, - anon_sym_DOLLAR, - ACTIONS(7854), 1, + ACTIONS(8544), 1, sym__special_character, - ACTIONS(7857), 1, - anon_sym_DQUOTE, - ACTIONS(7863), 1, + STATE(3533), 1, + aux_sym__literal_repeat1, + ACTIONS(5587), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, aux_sym_number_token1, - ACTIONS(7866), 1, aux_sym_number_token2, - ACTIONS(7869), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7872), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7875), 1, - anon_sym_BQUOTE, - ACTIONS(7878), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7884), 1, + sym_word, + ACTIONS(5589), 21, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(7887), 1, - sym_extglob_pattern, - ACTIONS(7890), 1, sym__brace_start, - STATE(6409), 1, - aux_sym__literal_repeat1, - ACTIONS(7842), 2, anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7860), 2, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(7881), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3477), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6591), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6328), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [188045] = 21, - ACTIONS(3), 1, + [191431] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(2216), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7899), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7902), 1, - anon_sym_DOLLAR, - ACTIONS(7905), 1, + ACTIONS(8544), 1, sym__special_character, - ACTIONS(7908), 1, - anon_sym_DQUOTE, - ACTIONS(7911), 1, + STATE(3533), 1, + aux_sym__literal_repeat1, + ACTIONS(4577), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, aux_sym_number_token1, - ACTIONS(7914), 1, aux_sym_number_token2, - ACTIONS(7917), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7920), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7923), 1, - anon_sym_BQUOTE, - ACTIONS(7926), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7932), 1, + sym_word, + ACTIONS(4579), 21, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(7935), 1, sym__brace_start, - STATE(4975), 1, - aux_sym__literal_repeat1, - ACTIONS(7896), 2, anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7929), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3478), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2214), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - ACTIONS(7893), 3, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(4460), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [188124] = 5, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [191476] = 5, ACTIONS(71), 1, sym_comment, - STATE(3459), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7751), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5393), 11, + ACTIONS(8546), 1, + sym__special_character, + STATE(3533), 1, + aux_sym__literal_repeat1, + ACTIONS(1360), 10, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -237661,9 +240612,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(5395), 21, + ACTIONS(1362), 21, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -237677,23 +240627,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [188171] = 5, + [191521] = 5, ACTIONS(71), 1, sym_comment, - STATE(3461), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7751), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5389), 11, + ACTIONS(8544), 1, + sym__special_character, + STATE(3533), 1, + aux_sym__literal_repeat1, + ACTIONS(4426), 10, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -237703,9 +240652,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(5391), 21, + ACTIONS(4428), 21, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -237719,23 +240667,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [188218] = 5, + [191566] = 5, ACTIONS(71), 1, sym_comment, - STATE(3461), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7751), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2072), 11, + ACTIONS(8544), 1, + sym__special_character, + STATE(3533), 1, + aux_sym__literal_repeat1, + ACTIONS(5593), 10, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -237745,9 +240692,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(2074), 21, + ACTIONS(5595), 21, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -237761,29 +240707,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [188265] = 8, + [191611] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8522), 1, + anon_sym_SLASH, + ACTIONS(8524), 1, + anon_sym_PERCENT, + ACTIONS(8526), 1, + anon_sym_COLON, + ACTIONS(8549), 1, + anon_sym_RBRACE3, + ACTIONS(8551), 1, + anon_sym_AT, + STATE(6401), 1, + aux_sym__expansion_body_repeat1, + STATE(6806), 1, + sym__expansion_max_length, + STATE(6807), 1, + sym__expansion_operator, + STATE(7240), 1, + sym__expansion_regex_removal, + STATE(7488), 1, + sym__expansion_expression, + STATE(7527), 1, + sym__expansion_regex, + STATE(7529), 1, + sym__expansion_regex_replacement, + ACTIONS(8520), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(8540), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(8528), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(8538), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(8542), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(8536), 8, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + [191684] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1241), 1, sym_file_descriptor, - ACTIONS(4084), 1, + ACTIONS(8555), 1, anon_sym_DQUOTE, - ACTIONS(7613), 1, + ACTIONS(8559), 1, sym_variable_name, - STATE(4606), 1, + STATE(5344), 1, sym_string, - ACTIONS(7611), 2, + ACTIONS(8557), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7609), 9, + ACTIONS(8553), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -237793,18 +240793,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 20, - anon_sym_SEMI, + ACTIONS(1239), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -237813,122 +240811,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [188318] = 5, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [191735] = 8, + ACTIONS(3), 1, sym_comment, - STATE(3459), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7751), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4467), 11, + ACTIONS(1241), 1, + sym_file_descriptor, + ACTIONS(3630), 1, + anon_sym_DQUOTE, + ACTIONS(7194), 1, + sym_variable_name, + STATE(4297), 1, + sym_string, + ACTIONS(7192), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7190), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 18, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(4469), 21, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [188365] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3729), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3731), 1, - anon_sym_DOLLAR, - ACTIONS(3735), 1, - anon_sym_DQUOTE, - ACTIONS(3737), 1, - aux_sym_number_token1, - ACTIONS(3739), 1, - aux_sym_number_token2, - ACTIONS(3741), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3743), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3745), 1, - anon_sym_BQUOTE, - ACTIONS(3747), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3755), 1, - sym__brace_start, - ACTIONS(7765), 1, - sym__special_character, - ACTIONS(7767), 1, - sym_test_operator, - ACTIONS(7940), 1, + anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - STATE(4975), 1, - aux_sym__literal_repeat1, - ACTIONS(3715), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3749), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3478), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(7759), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(7938), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4460), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [188444] = 8, + anon_sym_LT_LT_LT, + [191786] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1235), 1, sym_file_descriptor, - ACTIONS(4084), 1, + ACTIONS(3630), 1, anon_sym_DQUOTE, - ACTIONS(7613), 1, + ACTIONS(7194), 1, sym_variable_name, - STATE(4606), 1, + STATE(4297), 1, sym_string, - ACTIONS(7611), 2, + ACTIONS(7192), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7609), 9, + ACTIONS(7190), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -237938,17 +240879,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 20, - anon_sym_SEMI, + ACTIONS(1227), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -237959,131 +240897,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - [188497] = 25, + anon_sym_LT_LT_LT, + [191837] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7781), 1, - anon_sym_LPAREN, - ACTIONS(7783), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7785), 1, - anon_sym_DOLLAR, - ACTIONS(7787), 1, - sym__special_character, - ACTIONS(7789), 1, - anon_sym_DQUOTE, - ACTIONS(7793), 1, - aux_sym_number_token1, - ACTIONS(7795), 1, - aux_sym_number_token2, - ACTIONS(7797), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7801), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7803), 1, - anon_sym_BQUOTE, - ACTIONS(7805), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7809), 1, - sym_variable_name, - ACTIONS(7815), 1, - sym__brace_start, - ACTIONS(7942), 1, - sym_word, - ACTIONS(7946), 1, - anon_sym_RBRACE3, - ACTIONS(7948), 1, - sym_test_operator, - ACTIONS(7950), 1, - sym__expansion_word, - STATE(6314), 1, - sym_command_substitution, - STATE(6488), 1, - aux_sym__literal_repeat1, - ACTIONS(7779), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7807), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7944), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(6449), 5, - sym_string, - sym_array, - sym_simple_expansion, - sym_expansion, - sym_process_substitution, - STATE(6787), 5, - sym_arithmetic_expansion, - sym_brace_expression, - sym_translated_string, - sym_number, - sym__concatenation_in_expansion, - [188584] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7952), 1, - sym_word, - ACTIONS(7956), 1, - anon_sym_LPAREN, - ACTIONS(7958), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7960), 1, - anon_sym_DOLLAR, - ACTIONS(7962), 1, + ACTIONS(8544), 1, sym__special_character, - ACTIONS(7964), 1, - anon_sym_DQUOTE, - ACTIONS(7968), 1, - aux_sym_number_token1, - ACTIONS(7970), 1, - aux_sym_number_token2, - ACTIONS(7972), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7974), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7976), 1, - anon_sym_BQUOTE, - ACTIONS(7978), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7982), 1, - sym__comment_word, - ACTIONS(7984), 1, - sym__empty_value, - ACTIONS(7986), 1, - sym_test_operator, - ACTIONS(7988), 1, - sym__brace_start, - STATE(4287), 1, + STATE(3533), 1, aux_sym__literal_repeat1, - ACTIONS(7954), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7966), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7980), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(4759), 2, - sym_concatenation, - sym_array, - STATE(5137), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [188666] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1320), 11, + ACTIONS(5165), 10, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -238093,11 +240915,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1322), 23, + ACTIONS(5167), 21, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -238110,78 +240930,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [188708] = 23, + [191882] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7990), 1, - sym_word, - ACTIONS(7994), 1, - anon_sym_LPAREN, - ACTIONS(7996), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7998), 1, - anon_sym_DOLLAR, - ACTIONS(8000), 1, - sym__special_character, - ACTIONS(8002), 1, + ACTIONS(1235), 1, + sym_file_descriptor, + ACTIONS(8555), 1, anon_sym_DQUOTE, - ACTIONS(8006), 1, - aux_sym_number_token1, - ACTIONS(8008), 1, - aux_sym_number_token2, - ACTIONS(8010), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8012), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8014), 1, - anon_sym_BQUOTE, - ACTIONS(8016), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8020), 1, - sym__comment_word, - ACTIONS(8022), 1, - sym__empty_value, - ACTIONS(8024), 1, - sym_test_operator, - ACTIONS(8026), 1, - sym__brace_start, - STATE(3536), 1, - aux_sym__literal_repeat1, - ACTIONS(7992), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8004), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8018), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3601), 2, - sym_concatenation, - sym_array, - STATE(3466), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(8559), 1, + sym_variable_name, + STATE(5344), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [188790] = 3, + ACTIONS(8557), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8553), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 18, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [191933] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 11, + ACTIONS(8544), 1, + sym__special_character, + STATE(3533), 1, + aux_sym__literal_repeat1, + ACTIONS(5315), 10, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -238191,11 +240998,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1314), 23, + ACTIONS(5317), 21, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -238208,63 +241013,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [188832] = 20, + [191978] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8030), 1, + ACTIONS(8522), 1, anon_sym_SLASH, - ACTIONS(8032), 1, + ACTIONS(8524), 1, anon_sym_PERCENT, - ACTIONS(8034), 1, + ACTIONS(8526), 1, anon_sym_COLON, - ACTIONS(8038), 1, - anon_sym_RBRACE3, - ACTIONS(8040), 1, + ACTIONS(8551), 1, anon_sym_AT, - ACTIONS(8042), 1, - anon_sym_STAR2, - STATE(6394), 1, + ACTIONS(8561), 1, + anon_sym_RBRACE3, + STATE(6444), 1, aux_sym__expansion_body_repeat1, - STATE(6972), 1, - sym__expansion_operator, - STATE(6973), 1, - sym__expansion_max_length, - STATE(6974), 1, + STATE(7176), 1, + sym__expansion_expression, + STATE(7222), 1, + sym__expansion_regex, + STATE(7223), 1, + sym__expansion_regex_replacement, + STATE(7224), 1, sym__expansion_regex_removal, - STATE(6978), 1, + STATE(7271), 1, + sym__expansion_max_length, + STATE(7312), 1, + sym__expansion_operator, + ACTIONS(8520), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(8540), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(8528), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(8538), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(8542), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(8536), 8, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + [192051] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8522), 1, + anon_sym_SLASH, + ACTIONS(8524), 1, + anon_sym_PERCENT, + ACTIONS(8526), 1, + anon_sym_COLON, + ACTIONS(8551), 1, + anon_sym_AT, + ACTIONS(8563), 1, + anon_sym_RBRACE3, + STATE(6405), 1, + aux_sym__expansion_body_repeat1, + STATE(6975), 1, + sym__expansion_expression, + STATE(7379), 1, sym__expansion_regex_replacement, - STATE(6979), 1, + STATE(7416), 1, + sym__expansion_regex_removal, + STATE(7422), 1, + sym__expansion_max_length, + STATE(7443), 1, + sym__expansion_operator, + STATE(7480), 1, sym__expansion_regex, - STATE(6980), 1, + ACTIONS(8520), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(8540), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(8528), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(8538), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(8542), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(8536), 8, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + [192124] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8522), 1, + anon_sym_SLASH, + ACTIONS(8524), 1, + anon_sym_PERCENT, + ACTIONS(8526), 1, + anon_sym_COLON, + ACTIONS(8530), 1, + anon_sym_RBRACE3, + ACTIONS(8551), 1, + anon_sym_AT, + STATE(6432), 1, + aux_sym__expansion_body_repeat1, + STATE(6835), 1, + sym__expansion_regex_replacement, + STATE(6884), 1, + sym__expansion_regex_removal, + STATE(6886), 1, + sym__expansion_max_length, + STATE(6911), 1, + sym__expansion_operator, + STATE(7305), 1, sym__expansion_expression, - ACTIONS(8028), 2, + STATE(7526), 1, + sym__expansion_regex, + ACTIONS(8520), 2, anon_sym_COMMA, anon_sym_CARET, - ACTIONS(8048), 2, + ACTIONS(8540), 2, anon_sym_COMMA_COMMA, anon_sym_CARET_CARET, - ACTIONS(8036), 3, + ACTIONS(8528), 3, sym__immediate_double_hash, anon_sym_POUND, anon_sym_PERCENT_PERCENT, - ACTIONS(8046), 3, + ACTIONS(8538), 3, anon_sym_SLASH_SLASH, anon_sym_SLASH_POUND, anon_sym_SLASH_PERCENT, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(8044), 8, + ACTIONS(8536), 8, anon_sym_EQ2, anon_sym_COLON_EQ, anon_sym_DASH3, @@ -238273,10 +241183,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_PLUS, anon_sym_QMARK2, anon_sym_COLON_QMARK, - [188908] = 3, + [192197] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1336), 11, + ACTIONS(2167), 10, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -238286,11 +241196,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1338), 23, + ACTIONS(2169), 22, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -238303,78 +241211,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [188950] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7956), 1, - anon_sym_LPAREN, - ACTIONS(7958), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7960), 1, - anon_sym_DOLLAR, - ACTIONS(7964), 1, - anon_sym_DQUOTE, - ACTIONS(7968), 1, - aux_sym_number_token1, - ACTIONS(7970), 1, - aux_sym_number_token2, - ACTIONS(7972), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7974), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7976), 1, anon_sym_BQUOTE, - ACTIONS(7978), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7982), 1, - sym__comment_word, - ACTIONS(7984), 1, - sym__empty_value, - ACTIONS(7988), 1, - sym__brace_start, - ACTIONS(8052), 1, - sym_word, - ACTIONS(8054), 1, - sym__special_character, - ACTIONS(8058), 1, - sym_test_operator, - STATE(4287), 1, - aux_sym__literal_repeat1, - ACTIONS(7954), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7980), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8056), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4759), 2, - sym_concatenation, - sym_array, - STATE(4802), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [189032] = 3, + [192237] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1344), 11, + ACTIONS(5173), 10, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -238384,11 +241233,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1346), 23, + ACTIONS(5175), 22, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -238401,65 +241248,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [189074] = 23, + [192277] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2263), 1, + ACTIONS(3666), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3668), 1, anon_sym_DOLLAR, - ACTIONS(2269), 1, + ACTIONS(3670), 1, + sym__special_character, + ACTIONS(3672), 1, + anon_sym_DQUOTE, + ACTIONS(3674), 1, aux_sym_number_token1, - ACTIONS(2271), 1, + ACTIONS(3676), 1, aux_sym_number_token2, - ACTIONS(2275), 1, + ACTIONS(3678), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3680), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2289), 1, + ACTIONS(3682), 1, + anon_sym_BQUOTE, + ACTIONS(3684), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3690), 1, + sym_test_operator, + ACTIONS(3692), 1, sym__brace_start, - ACTIONS(8060), 1, + ACTIONS(8565), 1, + aux_sym_heredoc_redirect_token1, + STATE(3578), 1, + aux_sym__heredoc_command, + STATE(5280), 1, + aux_sym__literal_repeat1, + STATE(5411), 1, + sym_concatenation, + ACTIONS(3652), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3686), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3650), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - ACTIONS(8064), 1, - anon_sym_LPAREN, - ACTIONS(8066), 1, + STATE(5109), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [192353] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8567), 1, + sym_word, + ACTIONS(8571), 1, + anon_sym_RPAREN, + ACTIONS(8573), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8068), 1, + ACTIONS(8575), 1, + anon_sym_DOLLAR, + ACTIONS(8577), 1, sym__special_character, - ACTIONS(8070), 1, + ACTIONS(8579), 1, anon_sym_DQUOTE, - ACTIONS(8074), 1, + ACTIONS(8583), 1, + aux_sym_number_token1, + ACTIONS(8585), 1, + aux_sym_number_token2, + ACTIONS(8587), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8076), 1, + ACTIONS(8589), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8591), 1, anon_sym_BQUOTE, - ACTIONS(8078), 1, + ACTIONS(8593), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8082), 1, - sym__comment_word, - ACTIONS(8084), 1, - sym__empty_value, - ACTIONS(8086), 1, + ACTIONS(8597), 1, sym_test_operator, - STATE(1887), 1, + ACTIONS(8599), 1, + sym__brace_start, + STATE(5324), 1, aux_sym__literal_repeat1, - ACTIONS(8062), 2, + ACTIONS(8569), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8072), 2, + ACTIONS(8581), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8080), 2, + ACTIONS(8595), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2158), 2, + STATE(3606), 2, sym_concatenation, - sym_array, - STATE(2324), 9, + aux_sym_for_statement_repeat1, + STATE(5119), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -238469,56 +241367,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [189156] = 23, - ACTIONS(3), 1, + [192429] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(7956), 1, - anon_sym_LPAREN, - ACTIONS(7958), 1, + ACTIONS(8567), 1, + sym_word, + ACTIONS(8573), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7960), 1, + ACTIONS(8575), 1, anon_sym_DOLLAR, - ACTIONS(7964), 1, + ACTIONS(8577), 1, + sym__special_character, + ACTIONS(8579), 1, anon_sym_DQUOTE, - ACTIONS(7968), 1, + ACTIONS(8583), 1, aux_sym_number_token1, - ACTIONS(7970), 1, + ACTIONS(8585), 1, aux_sym_number_token2, - ACTIONS(7972), 1, + ACTIONS(8587), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7974), 1, + ACTIONS(8589), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7976), 1, + ACTIONS(8591), 1, anon_sym_BQUOTE, - ACTIONS(7978), 1, + ACTIONS(8593), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7982), 1, - sym__comment_word, - ACTIONS(7984), 1, - sym__empty_value, - ACTIONS(7988), 1, - sym__brace_start, - ACTIONS(8088), 1, - sym_word, - ACTIONS(8090), 1, - sym__special_character, - ACTIONS(8094), 1, + ACTIONS(8597), 1, sym_test_operator, - STATE(4287), 1, + ACTIONS(8599), 1, + sym__brace_start, + ACTIONS(8601), 1, + anon_sym_RPAREN, + STATE(5324), 1, aux_sym__literal_repeat1, - ACTIONS(7954), 2, + ACTIONS(8569), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7980), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8092), 2, + ACTIONS(8581), 2, sym_raw_string, sym_ansi_c_string, - STATE(4759), 2, + ACTIONS(8595), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3606), 2, sym_concatenation, - sym_array, - STATE(4550), 9, + aux_sym_for_statement_repeat1, + STATE(5119), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -238528,56 +241422,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [189238] = 23, - ACTIONS(3), 1, + [192505] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(8096), 1, + ACTIONS(8567), 1, sym_word, - ACTIONS(8100), 1, - anon_sym_LPAREN, - ACTIONS(8102), 1, + ACTIONS(8573), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8104), 1, + ACTIONS(8575), 1, anon_sym_DOLLAR, - ACTIONS(8106), 1, + ACTIONS(8577), 1, sym__special_character, - ACTIONS(8108), 1, + ACTIONS(8579), 1, anon_sym_DQUOTE, - ACTIONS(8112), 1, + ACTIONS(8583), 1, aux_sym_number_token1, - ACTIONS(8114), 1, + ACTIONS(8585), 1, aux_sym_number_token2, - ACTIONS(8116), 1, + ACTIONS(8587), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8118), 1, + ACTIONS(8589), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8120), 1, + ACTIONS(8591), 1, anon_sym_BQUOTE, - ACTIONS(8122), 1, + ACTIONS(8593), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8126), 1, - sym__comment_word, - ACTIONS(8128), 1, - sym__empty_value, - ACTIONS(8130), 1, + ACTIONS(8597), 1, sym_test_operator, - ACTIONS(8132), 1, + ACTIONS(8599), 1, sym__brace_start, - STATE(1361), 1, + ACTIONS(8603), 1, + anon_sym_RPAREN, + STATE(5324), 1, aux_sym__literal_repeat1, - ACTIONS(8098), 2, + ACTIONS(8569), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8110), 2, + ACTIONS(8581), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8124), 2, + ACTIONS(8595), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1667), 2, + STATE(3549), 2, sym_concatenation, - sym_array, - STATE(1148), 9, + aux_sym_for_statement_repeat1, + STATE(5119), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -238587,10 +241477,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [189320] = 3, + [192581] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1356), 11, + ACTIONS(2171), 10, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -238600,11 +241490,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1358), 23, + ACTIONS(2173), 22, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -238617,124 +241505,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [189362] = 23, + [192621] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(8134), 1, - sym_word, - ACTIONS(8138), 1, - anon_sym_LPAREN, - ACTIONS(8140), 1, + ACTIONS(3666), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8142), 1, + ACTIONS(3668), 1, anon_sym_DOLLAR, - ACTIONS(8144), 1, + ACTIONS(3670), 1, sym__special_character, - ACTIONS(8146), 1, + ACTIONS(3672), 1, anon_sym_DQUOTE, - ACTIONS(8150), 1, + ACTIONS(3674), 1, aux_sym_number_token1, - ACTIONS(8152), 1, + ACTIONS(3676), 1, aux_sym_number_token2, - ACTIONS(8154), 1, + ACTIONS(3678), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8156), 1, + ACTIONS(3680), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8158), 1, + ACTIONS(3682), 1, anon_sym_BQUOTE, - ACTIONS(8160), 1, + ACTIONS(3684), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8164), 1, - sym__comment_word, - ACTIONS(8166), 1, - sym__empty_value, - ACTIONS(8168), 1, + ACTIONS(3690), 1, sym_test_operator, - ACTIONS(8170), 1, + ACTIONS(3692), 1, sym__brace_start, - STATE(4431), 1, + ACTIONS(8605), 1, + aux_sym_heredoc_redirect_token1, + STATE(3578), 1, + aux_sym__heredoc_command, + STATE(5280), 1, aux_sym__literal_repeat1, - ACTIONS(8136), 2, + STATE(5411), 1, + sym_concatenation, + ACTIONS(3652), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8148), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8162), 2, + ACTIONS(3686), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(4925), 2, - sym_concatenation, - sym_array, - STATE(4410), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [189444] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8172), 1, - sym_word, - ACTIONS(8176), 1, - anon_sym_LPAREN, - ACTIONS(8178), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8180), 1, - anon_sym_DOLLAR, - ACTIONS(8182), 1, - sym__special_character, - ACTIONS(8184), 1, - anon_sym_DQUOTE, - ACTIONS(8188), 1, - aux_sym_number_token1, - ACTIONS(8190), 1, - aux_sym_number_token2, - ACTIONS(8192), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8194), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8196), 1, - anon_sym_BQUOTE, - ACTIONS(8198), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8202), 1, - sym__comment_word, - ACTIONS(8204), 1, - sym__empty_value, - ACTIONS(8206), 1, - sym_test_operator, - ACTIONS(8208), 1, - sym__brace_start, - STATE(1742), 1, - aux_sym__literal_repeat1, - ACTIONS(8174), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8186), 2, + ACTIONS(3650), 3, sym_raw_string, sym_ansi_c_string, - ACTIONS(8200), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1959), 2, - sym_concatenation, - sym_array, - STATE(2279), 9, + sym_word, + STATE(5109), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -238744,10 +241569,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [189526] = 3, + [192697] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 11, + ACTIONS(5871), 10, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -238757,11 +241582,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1302), 23, + ACTIONS(5873), 22, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -238774,65 +241597,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [189568] = 23, + [192737] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7956), 1, - anon_sym_LPAREN, - ACTIONS(7958), 1, + ACTIONS(3666), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7960), 1, + ACTIONS(3668), 1, anon_sym_DOLLAR, - ACTIONS(7964), 1, + ACTIONS(3670), 1, + sym__special_character, + ACTIONS(3672), 1, anon_sym_DQUOTE, - ACTIONS(7968), 1, + ACTIONS(3674), 1, aux_sym_number_token1, - ACTIONS(7970), 1, + ACTIONS(3676), 1, aux_sym_number_token2, - ACTIONS(7972), 1, + ACTIONS(3678), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7974), 1, + ACTIONS(3680), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7976), 1, + ACTIONS(3682), 1, anon_sym_BQUOTE, - ACTIONS(7978), 1, + ACTIONS(3684), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7982), 1, - sym__comment_word, - ACTIONS(7984), 1, - sym__empty_value, - ACTIONS(7988), 1, - sym__brace_start, - ACTIONS(8210), 1, - sym_word, - ACTIONS(8212), 1, - sym__special_character, - ACTIONS(8216), 1, + ACTIONS(3690), 1, sym_test_operator, - STATE(4287), 1, + ACTIONS(3692), 1, + sym__brace_start, + ACTIONS(8607), 1, + aux_sym_heredoc_redirect_token1, + STATE(3578), 1, + aux_sym__heredoc_command, + STATE(5280), 1, aux_sym__literal_repeat1, - ACTIONS(7954), 2, + STATE(5411), 1, + sym_concatenation, + ACTIONS(3652), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7980), 2, + ACTIONS(3686), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8214), 2, + ACTIONS(3650), 3, sym_raw_string, sym_ansi_c_string, - STATE(4759), 2, - sym_concatenation, - sym_array, - STATE(4525), 9, + sym_word, + STATE(5109), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -238842,56 +241661,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [189650] = 23, + [192813] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(8176), 1, - anon_sym_LPAREN, - ACTIONS(8178), 1, + ACTIONS(3666), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8180), 1, + ACTIONS(3668), 1, anon_sym_DOLLAR, - ACTIONS(8184), 1, + ACTIONS(3670), 1, + sym__special_character, + ACTIONS(3672), 1, anon_sym_DQUOTE, - ACTIONS(8188), 1, + ACTIONS(3674), 1, aux_sym_number_token1, - ACTIONS(8190), 1, + ACTIONS(3676), 1, aux_sym_number_token2, - ACTIONS(8192), 1, + ACTIONS(3678), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8194), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8196), 1, - anon_sym_BQUOTE, - ACTIONS(8198), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8202), 1, - sym__comment_word, - ACTIONS(8204), 1, - sym__empty_value, - ACTIONS(8208), 1, - sym__brace_start, - ACTIONS(8218), 1, - sym_word, - ACTIONS(8220), 1, - sym__special_character, - ACTIONS(8224), 1, + ACTIONS(3680), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3682), 1, + anon_sym_BQUOTE, + ACTIONS(3684), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3690), 1, sym_test_operator, - STATE(1742), 1, + ACTIONS(3692), 1, + sym__brace_start, + ACTIONS(8609), 1, + aux_sym_heredoc_redirect_token1, + STATE(3578), 1, + aux_sym__heredoc_command, + STATE(5280), 1, aux_sym__literal_repeat1, - ACTIONS(8174), 2, + STATE(5411), 1, + sym_concatenation, + ACTIONS(3652), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8200), 2, + ACTIONS(3686), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8222), 2, + ACTIONS(3650), 3, sym_raw_string, sym_ansi_c_string, - STATE(1959), 2, - sym_concatenation, - sym_array, - STATE(1355), 9, + sym_word, + STATE(5109), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -238901,88 +241716,107 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [189732] = 3, + [192889] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(8567), 1, + sym_word, + ACTIONS(8573), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8575), 1, anon_sym_DOLLAR, + ACTIONS(8577), 1, + sym__special_character, + ACTIONS(8579), 1, + anon_sym_DQUOTE, + ACTIONS(8583), 1, aux_sym_number_token1, + ACTIONS(8585), 1, aux_sym_number_token2, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8589), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(8591), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1310), 23, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(8593), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8597), 1, sym_test_operator, + ACTIONS(8599), 1, sym__brace_start, + ACTIONS(8611), 1, + anon_sym_RPAREN, + STATE(5324), 1, + aux_sym__literal_repeat1, + ACTIONS(8569), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(8581), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [189774] = 3, - ACTIONS(71), 1, + STATE(3563), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5119), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [192965] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1306), 23, - sym_file_descriptor, - sym__concat, + ACTIONS(8615), 1, + anon_sym_DQUOTE, + ACTIONS(8619), 1, sym_variable_name, + STATE(5158), 1, + sym_string, + ACTIONS(1235), 2, sym_test_operator, sym__brace_start, + ACTIONS(8617), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8613), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 16, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [189816] = 3, + sym_word, + [193015] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 11, + ACTIONS(1272), 10, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -238992,11 +241826,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1310), 23, + ACTIONS(1274), 22, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -239009,65 +241841,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [189858] = 23, - ACTIONS(3), 1, + [193055] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1831), 1, - anon_sym_DOLLAR, - ACTIONS(1837), 1, - aux_sym_number_token1, - ACTIONS(1839), 1, - aux_sym_number_token2, - ACTIONS(1843), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1857), 1, - sym__brace_start, - ACTIONS(8226), 1, + ACTIONS(8567), 1, sym_word, - ACTIONS(8230), 1, - anon_sym_LPAREN, - ACTIONS(8232), 1, + ACTIONS(8573), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8234), 1, + ACTIONS(8575), 1, + anon_sym_DOLLAR, + ACTIONS(8577), 1, sym__special_character, - ACTIONS(8236), 1, + ACTIONS(8579), 1, anon_sym_DQUOTE, - ACTIONS(8240), 1, + ACTIONS(8583), 1, + aux_sym_number_token1, + ACTIONS(8585), 1, + aux_sym_number_token2, + ACTIONS(8587), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8242), 1, + ACTIONS(8589), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8591), 1, anon_sym_BQUOTE, - ACTIONS(8244), 1, + ACTIONS(8593), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8248), 1, - sym__comment_word, - ACTIONS(8250), 1, - sym__empty_value, - ACTIONS(8252), 1, + ACTIONS(8597), 1, sym_test_operator, - STATE(1720), 1, + ACTIONS(8599), 1, + sym__brace_start, + ACTIONS(8621), 1, + anon_sym_RPAREN, + STATE(5324), 1, aux_sym__literal_repeat1, - ACTIONS(8228), 2, + ACTIONS(8569), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8238), 2, + ACTIONS(8581), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8246), 2, + ACTIONS(8595), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1735), 2, + STATE(3561), 2, sym_concatenation, - sym_array, - STATE(1166), 9, + aux_sym_for_statement_repeat1, + STATE(5119), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -239077,95 +241905,107 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [189940] = 3, + [193131] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1324), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(8567), 1, + sym_word, + ACTIONS(8573), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8575), 1, anon_sym_DOLLAR, + ACTIONS(8577), 1, + sym__special_character, + ACTIONS(8579), 1, + anon_sym_DQUOTE, + ACTIONS(8583), 1, aux_sym_number_token1, + ACTIONS(8585), 1, aux_sym_number_token2, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8589), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(8591), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1326), 23, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(8593), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8597), 1, sym_test_operator, + ACTIONS(8599), 1, sym__brace_start, + ACTIONS(8623), 1, + anon_sym_RPAREN, + STATE(5324), 1, + aux_sym__literal_repeat1, + ACTIONS(8569), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(8581), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [189982] = 23, + STATE(3606), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5119), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [193207] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2263), 1, + ACTIONS(3666), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3668), 1, anon_sym_DOLLAR, - ACTIONS(2269), 1, + ACTIONS(3670), 1, + sym__special_character, + ACTIONS(3672), 1, + anon_sym_DQUOTE, + ACTIONS(3674), 1, aux_sym_number_token1, - ACTIONS(2271), 1, + ACTIONS(3676), 1, aux_sym_number_token2, - ACTIONS(2275), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2289), 1, - sym__brace_start, - ACTIONS(8064), 1, - anon_sym_LPAREN, - ACTIONS(8066), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8070), 1, - anon_sym_DQUOTE, - ACTIONS(8074), 1, + ACTIONS(3678), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8076), 1, + ACTIONS(3680), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3682), 1, anon_sym_BQUOTE, - ACTIONS(8078), 1, + ACTIONS(3684), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8082), 1, - sym__comment_word, - ACTIONS(8084), 1, - sym__empty_value, - ACTIONS(8254), 1, - sym_word, - ACTIONS(8256), 1, - sym__special_character, - ACTIONS(8260), 1, + ACTIONS(3690), 1, sym_test_operator, - STATE(1887), 1, + ACTIONS(3692), 1, + sym__brace_start, + ACTIONS(8625), 1, + aux_sym_heredoc_redirect_token1, + STATE(3578), 1, + aux_sym__heredoc_command, + STATE(5280), 1, aux_sym__literal_repeat1, - ACTIONS(8062), 2, + STATE(5411), 1, + sym_concatenation, + ACTIONS(3652), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8080), 2, + ACTIONS(3686), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8258), 2, + ACTIONS(3650), 3, sym_raw_string, sym_ansi_c_string, - STATE(2158), 2, - sym_concatenation, - sym_array, - STATE(1470), 9, + sym_word, + STATE(5109), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -239175,212 +242015,327 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [190064] = 3, + [193283] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1251), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(8567), 1, + sym_word, + ACTIONS(8573), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8575), 1, anon_sym_DOLLAR, + ACTIONS(8577), 1, + sym__special_character, + ACTIONS(8579), 1, + anon_sym_DQUOTE, + ACTIONS(8583), 1, aux_sym_number_token1, + ACTIONS(8585), 1, aux_sym_number_token2, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8589), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(8591), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1253), 23, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(8593), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8597), 1, sym_test_operator, + ACTIONS(8599), 1, sym__brace_start, + ACTIONS(8627), 1, + anon_sym_RPAREN, + STATE(5324), 1, + aux_sym__literal_repeat1, + ACTIONS(8569), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(8581), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [190106] = 3, + STATE(3606), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5119), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [193359] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 4, - sym_file_descriptor, + ACTIONS(3666), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3668), 1, + anon_sym_DOLLAR, + ACTIONS(3670), 1, + sym__special_character, + ACTIONS(3672), 1, + anon_sym_DQUOTE, + ACTIONS(3674), 1, + aux_sym_number_token1, + ACTIONS(3676), 1, + aux_sym_number_token2, + ACTIONS(3678), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3680), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3682), 1, + anon_sym_BQUOTE, + ACTIONS(3684), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3690), 1, sym_test_operator, + ACTIONS(3692), 1, sym__brace_start, + ACTIONS(8629), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 30, + STATE(3578), 1, + aux_sym__heredoc_command, + STATE(5280), 1, + aux_sym__literal_repeat1, + STATE(5411), 1, + sym_concatenation, + ACTIONS(3652), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3686), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3650), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5109), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [193435] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8567), 1, + sym_word, + ACTIONS(8573), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(8575), 1, anon_sym_DOLLAR, + ACTIONS(8577), 1, sym__special_character, + ACTIONS(8579), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(8583), 1, aux_sym_number_token1, + ACTIONS(8585), 1, aux_sym_number_token2, + ACTIONS(8587), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(8589), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(8591), 1, anon_sym_BQUOTE, + ACTIONS(8593), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(8597), 1, + sym_test_operator, + ACTIONS(8599), 1, + sym__brace_start, + ACTIONS(8631), 1, + anon_sym_RPAREN, + STATE(5324), 1, + aux_sym__literal_repeat1, + ACTIONS(8569), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8581), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8595), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [190148] = 3, + STATE(3567), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5119), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [193511] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(8567), 1, + sym_word, + ACTIONS(8573), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8575), 1, anon_sym_DOLLAR, + ACTIONS(8577), 1, + sym__special_character, + ACTIONS(8579), 1, + anon_sym_DQUOTE, + ACTIONS(8583), 1, aux_sym_number_token1, + ACTIONS(8585), 1, aux_sym_number_token2, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8589), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(8591), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1298), 23, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(8593), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8597), 1, sym_test_operator, + ACTIONS(8599), 1, sym__brace_start, + ACTIONS(8633), 1, + anon_sym_RPAREN, + STATE(5324), 1, + aux_sym__literal_repeat1, + ACTIONS(8569), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(8581), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [190190] = 3, + STATE(3568), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5119), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [193587] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(8567), 1, + sym_word, + ACTIONS(8573), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8575), 1, anon_sym_DOLLAR, + ACTIONS(8577), 1, + sym__special_character, + ACTIONS(8579), 1, + anon_sym_DQUOTE, + ACTIONS(8583), 1, aux_sym_number_token1, + ACTIONS(8585), 1, aux_sym_number_token2, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8589), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(8591), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1294), 23, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(8593), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8597), 1, sym_test_operator, + ACTIONS(8599), 1, sym__brace_start, + ACTIONS(8635), 1, + anon_sym_RPAREN, + STATE(5324), 1, + aux_sym__literal_repeat1, + ACTIONS(8569), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(8581), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [190232] = 23, - ACTIONS(3), 1, + STATE(3606), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5119), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [193663] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(8262), 1, + ACTIONS(8567), 1, sym_word, - ACTIONS(8266), 1, - anon_sym_LPAREN, - ACTIONS(8268), 1, + ACTIONS(8573), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8270), 1, + ACTIONS(8575), 1, anon_sym_DOLLAR, - ACTIONS(8272), 1, + ACTIONS(8577), 1, sym__special_character, - ACTIONS(8274), 1, + ACTIONS(8579), 1, anon_sym_DQUOTE, - ACTIONS(8278), 1, + ACTIONS(8583), 1, aux_sym_number_token1, - ACTIONS(8280), 1, + ACTIONS(8585), 1, aux_sym_number_token2, - ACTIONS(8282), 1, + ACTIONS(8587), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8284), 1, + ACTIONS(8589), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8286), 1, + ACTIONS(8591), 1, anon_sym_BQUOTE, - ACTIONS(8288), 1, + ACTIONS(8593), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8292), 1, - sym__comment_word, - ACTIONS(8294), 1, - sym__empty_value, - ACTIONS(8296), 1, + ACTIONS(8597), 1, sym_test_operator, - ACTIONS(8298), 1, + ACTIONS(8599), 1, sym__brace_start, - STATE(1618), 1, + ACTIONS(8637), 1, + anon_sym_RPAREN, + STATE(5324), 1, aux_sym__literal_repeat1, - ACTIONS(8264), 2, + ACTIONS(8569), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8276), 2, + ACTIONS(8581), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8290), 2, + ACTIONS(8595), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1747), 2, + STATE(3606), 2, sym_concatenation, - sym_array, - STATE(1192), 9, + aux_sym_for_statement_repeat1, + STATE(5119), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -239390,134 +242345,204 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [190314] = 3, + [193739] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1332), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(6490), 1, anon_sym_DOLLAR, + ACTIONS(6496), 1, aux_sym_number_token1, + ACTIONS(6498), 1, aux_sym_number_token2, + ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(7200), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7202), 1, + sym__special_character, + ACTIONS(7204), 1, + anon_sym_DQUOTE, + ACTIONS(7208), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7210), 1, anon_sym_BQUOTE, + ACTIONS(7212), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8639), 1, sym_word, - ACTIONS(1334), 23, - sym_file_descriptor, - sym__concat, + ACTIONS(8643), 1, + sym_test_operator, + STATE(6370), 1, + aux_sym__literal_repeat1, + ACTIONS(7196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7214), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8641), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(6668), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6366), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [193815] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8615), 1, + anon_sym_DQUOTE, + ACTIONS(8619), 1, sym_variable_name, + STATE(5158), 1, + sym_string, + ACTIONS(1241), 2, sym_test_operator, sym__brace_start, + ACTIONS(8617), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8613), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 16, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [190356] = 3, + sym_word, + [193865] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1316), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(8567), 1, + sym_word, + ACTIONS(8573), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8575), 1, anon_sym_DOLLAR, + ACTIONS(8577), 1, + sym__special_character, + ACTIONS(8579), 1, + anon_sym_DQUOTE, + ACTIONS(8583), 1, aux_sym_number_token1, + ACTIONS(8585), 1, aux_sym_number_token2, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8589), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(8591), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1318), 23, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(8593), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8597), 1, sym_test_operator, + ACTIONS(8599), 1, sym__brace_start, + ACTIONS(8645), 1, + anon_sym_RPAREN, + STATE(5324), 1, + aux_sym__literal_repeat1, + ACTIONS(8569), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(8581), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [190398] = 23, - ACTIONS(3), 1, + STATE(3595), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5119), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [193941] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(8300), 1, + ACTIONS(8567), 1, sym_word, - ACTIONS(8304), 1, - anon_sym_LPAREN, - ACTIONS(8306), 1, + ACTIONS(8573), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8308), 1, + ACTIONS(8575), 1, anon_sym_DOLLAR, - ACTIONS(8310), 1, + ACTIONS(8577), 1, sym__special_character, - ACTIONS(8312), 1, + ACTIONS(8579), 1, anon_sym_DQUOTE, - ACTIONS(8316), 1, + ACTIONS(8583), 1, aux_sym_number_token1, - ACTIONS(8318), 1, + ACTIONS(8585), 1, aux_sym_number_token2, - ACTIONS(8320), 1, + ACTIONS(8587), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8322), 1, + ACTIONS(8589), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8324), 1, + ACTIONS(8591), 1, anon_sym_BQUOTE, - ACTIONS(8326), 1, + ACTIONS(8593), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8330), 1, - sym__comment_word, - ACTIONS(8332), 1, - sym__empty_value, - ACTIONS(8334), 1, + ACTIONS(8597), 1, sym_test_operator, - ACTIONS(8336), 1, + ACTIONS(8599), 1, sym__brace_start, - STATE(5408), 1, + ACTIONS(8647), 1, + anon_sym_RPAREN, + STATE(5324), 1, aux_sym__literal_repeat1, - ACTIONS(8302), 2, + ACTIONS(8569), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8314), 2, + ACTIONS(8581), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8328), 2, + ACTIONS(8595), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(5566), 2, + STATE(3577), 2, sym_concatenation, - sym_array, - STATE(5253), 9, + aux_sym_for_statement_repeat1, + STATE(5119), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -239527,56 +242552,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [190480] = 23, - ACTIONS(3), 1, + [194017] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(2038), 1, + ACTIONS(6490), 1, anon_sym_DOLLAR, - ACTIONS(2044), 1, + ACTIONS(6496), 1, aux_sym_number_token1, - ACTIONS(2046), 1, + ACTIONS(6498), 1, aux_sym_number_token2, - ACTIONS(2050), 1, + ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2064), 1, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, sym__brace_start, - ACTIONS(8338), 1, - sym_word, - ACTIONS(8342), 1, - anon_sym_LPAREN, - ACTIONS(8344), 1, + ACTIONS(7200), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8346), 1, + ACTIONS(7202), 1, sym__special_character, - ACTIONS(8348), 1, + ACTIONS(7204), 1, anon_sym_DQUOTE, - ACTIONS(8352), 1, + ACTIONS(7208), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8354), 1, + ACTIONS(7210), 1, anon_sym_BQUOTE, - ACTIONS(8356), 1, + ACTIONS(7212), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8360), 1, - sym__comment_word, - ACTIONS(8362), 1, - sym__empty_value, - ACTIONS(8364), 1, + ACTIONS(8649), 1, + sym_word, + ACTIONS(8653), 1, sym_test_operator, - STATE(1929), 1, + STATE(6524), 1, aux_sym__literal_repeat1, - ACTIONS(8340), 2, + ACTIONS(7196), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8350), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8358), 2, + ACTIONS(7214), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1947), 2, + ACTIONS(8651), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(6763), 2, sym_concatenation, - sym_array, - STATE(1337), 9, + sym__extglob_blob, + STATE(6380), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -239586,56 +242607,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [190562] = 23, - ACTIONS(3), 1, + [194093] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(8366), 1, + ACTIONS(8567), 1, sym_word, - ACTIONS(8370), 1, - anon_sym_LPAREN, - ACTIONS(8372), 1, + ACTIONS(8573), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8374), 1, + ACTIONS(8575), 1, anon_sym_DOLLAR, - ACTIONS(8376), 1, + ACTIONS(8577), 1, sym__special_character, - ACTIONS(8378), 1, + ACTIONS(8579), 1, anon_sym_DQUOTE, - ACTIONS(8382), 1, + ACTIONS(8583), 1, aux_sym_number_token1, - ACTIONS(8384), 1, + ACTIONS(8585), 1, aux_sym_number_token2, - ACTIONS(8386), 1, + ACTIONS(8587), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8388), 1, + ACTIONS(8589), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8390), 1, + ACTIONS(8591), 1, anon_sym_BQUOTE, - ACTIONS(8392), 1, + ACTIONS(8593), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8396), 1, - sym__comment_word, - ACTIONS(8398), 1, - sym__empty_value, - ACTIONS(8400), 1, + ACTIONS(8597), 1, sym_test_operator, - ACTIONS(8402), 1, + ACTIONS(8599), 1, sym__brace_start, - STATE(4383), 1, + ACTIONS(8655), 1, + anon_sym_RPAREN, + STATE(5324), 1, aux_sym__literal_repeat1, - ACTIONS(8368), 2, + ACTIONS(8569), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8380), 2, + ACTIONS(8581), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8394), 2, + ACTIONS(8595), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(4639), 2, + STATE(3575), 2, sym_concatenation, - sym_array, - STATE(4238), 9, + aux_sym_for_statement_repeat1, + STATE(5119), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -239645,56 +242662,149 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [190644] = 23, - ACTIONS(3), 1, + [194169] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(2263), 1, + ACTIONS(8567), 1, + sym_word, + ACTIONS(8573), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8575), 1, anon_sym_DOLLAR, - ACTIONS(2269), 1, + ACTIONS(8577), 1, + sym__special_character, + ACTIONS(8579), 1, + anon_sym_DQUOTE, + ACTIONS(8583), 1, aux_sym_number_token1, - ACTIONS(2271), 1, + ACTIONS(8585), 1, aux_sym_number_token2, - ACTIONS(2275), 1, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8589), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2289), 1, + ACTIONS(8591), 1, + anon_sym_BQUOTE, + ACTIONS(8593), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8597), 1, + sym_test_operator, + ACTIONS(8599), 1, sym__brace_start, - ACTIONS(8064), 1, - anon_sym_LPAREN, - ACTIONS(8066), 1, + ACTIONS(8657), 1, + anon_sym_RPAREN, + STATE(5324), 1, + aux_sym__literal_repeat1, + ACTIONS(8569), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8581), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8595), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3606), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5119), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [194245] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1241), 1, + sym_file_descriptor, + ACTIONS(8661), 1, + anon_sym_DQUOTE, + ACTIONS(8665), 1, + sym_variable_name, + STATE(5430), 1, + sym_string, + ACTIONS(8663), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8659), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [194295] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8567), 1, + sym_word, + ACTIONS(8573), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8070), 1, + ACTIONS(8575), 1, + anon_sym_DOLLAR, + ACTIONS(8577), 1, + sym__special_character, + ACTIONS(8579), 1, anon_sym_DQUOTE, - ACTIONS(8074), 1, + ACTIONS(8583), 1, + aux_sym_number_token1, + ACTIONS(8585), 1, + aux_sym_number_token2, + ACTIONS(8587), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8076), 1, + ACTIONS(8589), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8591), 1, anon_sym_BQUOTE, - ACTIONS(8078), 1, + ACTIONS(8593), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8082), 1, - sym__comment_word, - ACTIONS(8084), 1, - sym__empty_value, - ACTIONS(8404), 1, - sym_word, - ACTIONS(8406), 1, - sym__special_character, - ACTIONS(8410), 1, + ACTIONS(8597), 1, sym_test_operator, - STATE(1887), 1, + ACTIONS(8599), 1, + sym__brace_start, + ACTIONS(8667), 1, + anon_sym_RPAREN, + STATE(5324), 1, aux_sym__literal_repeat1, - ACTIONS(8062), 2, + ACTIONS(8569), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8080), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8408), 2, + ACTIONS(8581), 2, sym_raw_string, sym_ansi_c_string, - STATE(2158), 2, + ACTIONS(8595), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3606), 2, sym_concatenation, - sym_array, - STATE(1558), 9, + aux_sym_for_statement_repeat1, + STATE(5119), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -239704,56 +242814,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [190726] = 23, + [194371] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7956), 1, - anon_sym_LPAREN, - ACTIONS(7958), 1, + ACTIONS(8675), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(8677), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7960), 1, + ACTIONS(8680), 1, anon_sym_DOLLAR, - ACTIONS(7964), 1, + ACTIONS(8683), 1, + sym__special_character, + ACTIONS(8686), 1, anon_sym_DQUOTE, - ACTIONS(7968), 1, + ACTIONS(8689), 1, aux_sym_number_token1, - ACTIONS(7970), 1, + ACTIONS(8692), 1, aux_sym_number_token2, - ACTIONS(7972), 1, + ACTIONS(8695), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7974), 1, + ACTIONS(8698), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7976), 1, + ACTIONS(8701), 1, anon_sym_BQUOTE, - ACTIONS(7978), 1, + ACTIONS(8704), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7982), 1, - sym__comment_word, - ACTIONS(7984), 1, - sym__empty_value, - ACTIONS(7988), 1, - sym__brace_start, - ACTIONS(8412), 1, - sym_word, - ACTIONS(8414), 1, - sym__special_character, - ACTIONS(8418), 1, + ACTIONS(8710), 1, sym_test_operator, - STATE(4287), 1, + ACTIONS(8713), 1, + sym__brace_start, + STATE(3578), 1, + aux_sym__heredoc_command, + STATE(5280), 1, aux_sym__literal_repeat1, - ACTIONS(7954), 2, + STATE(5411), 1, + sym_concatenation, + ACTIONS(8672), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7980), 2, + ACTIONS(8707), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8416), 2, + ACTIONS(8669), 3, sym_raw_string, sym_ansi_c_string, - STATE(4759), 2, - sym_concatenation, - sym_array, - STATE(4531), 9, + sym_word, + STATE(5109), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -239763,10 +242869,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [190808] = 3, + [194447] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1352), 11, + ACTIONS(5888), 10, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -239776,11 +242882,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1354), 23, + ACTIONS(5890), 22, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -239793,124 +242897,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [190850] = 23, + [194487] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1761), 1, - anon_sym_DOLLAR, - ACTIONS(1767), 1, - aux_sym_number_token1, - ACTIONS(1769), 1, - aux_sym_number_token2, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1787), 1, - sym__brace_start, - ACTIONS(8420), 1, - sym_word, - ACTIONS(8424), 1, - anon_sym_LPAREN, - ACTIONS(8426), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8428), 1, - sym__special_character, - ACTIONS(8430), 1, + ACTIONS(3672), 1, anon_sym_DQUOTE, - ACTIONS(8434), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8436), 1, - anon_sym_BQUOTE, - ACTIONS(8438), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8442), 1, - sym__comment_word, - ACTIONS(8444), 1, - sym__empty_value, - ACTIONS(8446), 1, + ACTIONS(7768), 1, + sym_variable_name, + STATE(4636), 1, + sym_string, + ACTIONS(1241), 2, sym_test_operator, - STATE(1480), 1, - aux_sym__literal_repeat1, - ACTIONS(8422), 2, + sym__brace_start, + ACTIONS(7766), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7764), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 16, anon_sym_LPAREN_LPAREN, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8432), 2, + anon_sym_DOLLAR_LBRACK, + sym__special_character, sym_raw_string, sym_ansi_c_string, - ACTIONS(8440), 2, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1498), 2, - sym_concatenation, - sym_array, - STATE(1156), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [190932] = 23, + sym_word, + [194537] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8176), 1, - anon_sym_LPAREN, - ACTIONS(8178), 1, + ACTIONS(1235), 1, + sym_file_descriptor, + ACTIONS(4078), 1, + anon_sym_DQUOTE, + ACTIONS(7611), 1, + sym_variable_name, + STATE(4444), 1, + sym_string, + ACTIONS(7609), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7607), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [194587] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8567), 1, + sym_word, + ACTIONS(8573), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8180), 1, + ACTIONS(8575), 1, anon_sym_DOLLAR, - ACTIONS(8184), 1, + ACTIONS(8577), 1, + sym__special_character, + ACTIONS(8579), 1, anon_sym_DQUOTE, - ACTIONS(8188), 1, + ACTIONS(8583), 1, aux_sym_number_token1, - ACTIONS(8190), 1, + ACTIONS(8585), 1, aux_sym_number_token2, - ACTIONS(8192), 1, + ACTIONS(8587), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8194), 1, + ACTIONS(8589), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8196), 1, + ACTIONS(8591), 1, anon_sym_BQUOTE, - ACTIONS(8198), 1, + ACTIONS(8593), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8202), 1, - sym__comment_word, - ACTIONS(8204), 1, - sym__empty_value, - ACTIONS(8208), 1, - sym__brace_start, - ACTIONS(8448), 1, - sym_word, - ACTIONS(8450), 1, - sym__special_character, - ACTIONS(8454), 1, + ACTIONS(8597), 1, sym_test_operator, - STATE(1742), 1, + ACTIONS(8599), 1, + sym__brace_start, + ACTIONS(8716), 1, + anon_sym_RPAREN, + STATE(5324), 1, aux_sym__literal_repeat1, - ACTIONS(8174), 2, + ACTIONS(8569), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8200), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8452), 2, + ACTIONS(8581), 2, sym_raw_string, sym_ansi_c_string, - STATE(1959), 2, + ACTIONS(8595), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3606), 2, sym_concatenation, - sym_array, - STATE(1512), 9, + aux_sym_for_statement_repeat1, + STATE(5119), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -239920,10 +243045,10 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [191014] = 3, + [194663] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1348), 11, + ACTIONS(4511), 10, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -239933,11 +243058,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1350), 23, + ACTIONS(4513), 22, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -239950,65 +243073,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [191056] = 23, - ACTIONS(3), 1, + [194703] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(4151), 1, + ACTIONS(8567), 1, + sym_word, + ACTIONS(8573), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4153), 1, + ACTIONS(8575), 1, anon_sym_DOLLAR, - ACTIONS(4155), 1, + ACTIONS(8577), 1, sym__special_character, - ACTIONS(4157), 1, + ACTIONS(8579), 1, anon_sym_DQUOTE, - ACTIONS(4161), 1, + ACTIONS(8583), 1, aux_sym_number_token1, - ACTIONS(4163), 1, + ACTIONS(8585), 1, aux_sym_number_token2, - ACTIONS(4165), 1, + ACTIONS(8587), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4167), 1, + ACTIONS(8589), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4169), 1, + ACTIONS(8591), 1, anon_sym_BQUOTE, - ACTIONS(4171), 1, + ACTIONS(8593), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4181), 1, - sym__brace_start, - ACTIONS(8456), 1, - sym_word, - ACTIONS(8458), 1, - anon_sym_LPAREN, - ACTIONS(8462), 1, - sym__comment_word, - ACTIONS(8464), 1, - sym__empty_value, - ACTIONS(8466), 1, + ACTIONS(8597), 1, sym_test_operator, - STATE(2714), 1, + ACTIONS(8599), 1, + sym__brace_start, + ACTIONS(8718), 1, + anon_sym_RPAREN, + STATE(5324), 1, aux_sym__literal_repeat1, - ACTIONS(4149), 2, + ACTIONS(8569), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4173), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8460), 2, + ACTIONS(8581), 2, sym_raw_string, sym_ansi_c_string, - STATE(2878), 2, + ACTIONS(8595), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3586), 2, sym_concatenation, - sym_array, - STATE(2406), 9, + aux_sym_for_statement_repeat1, + STATE(5119), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -240018,56 +243137,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [191138] = 23, - ACTIONS(3), 1, + [194779] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(8468), 1, + ACTIONS(8567), 1, sym_word, - ACTIONS(8472), 1, - anon_sym_LPAREN, - ACTIONS(8474), 1, + ACTIONS(8573), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8476), 1, + ACTIONS(8575), 1, anon_sym_DOLLAR, - ACTIONS(8478), 1, + ACTIONS(8577), 1, sym__special_character, - ACTIONS(8480), 1, + ACTIONS(8579), 1, anon_sym_DQUOTE, - ACTIONS(8484), 1, + ACTIONS(8583), 1, aux_sym_number_token1, - ACTIONS(8486), 1, + ACTIONS(8585), 1, aux_sym_number_token2, - ACTIONS(8488), 1, + ACTIONS(8587), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8490), 1, + ACTIONS(8589), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8492), 1, + ACTIONS(8591), 1, anon_sym_BQUOTE, - ACTIONS(8494), 1, + ACTIONS(8593), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8498), 1, - sym__comment_word, - ACTIONS(8500), 1, - sym__empty_value, - ACTIONS(8502), 1, + ACTIONS(8597), 1, sym_test_operator, - ACTIONS(8504), 1, + ACTIONS(8599), 1, sym__brace_start, - STATE(1900), 1, + ACTIONS(8720), 1, + anon_sym_RPAREN, + STATE(5324), 1, aux_sym__literal_repeat1, - ACTIONS(8470), 2, + ACTIONS(8569), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8482), 2, + ACTIONS(8581), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8496), 2, + ACTIONS(8595), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2103), 2, + STATE(3587), 2, sym_concatenation, - sym_array, - STATE(1391), 9, + aux_sym_for_statement_repeat1, + STATE(5119), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -240077,134 +243192,107 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [191220] = 3, + [194855] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1340), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(8567), 1, sym_word, - ACTIONS(1342), 23, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8573), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(8575), 1, + anon_sym_DOLLAR, + ACTIONS(8577), 1, sym__special_character, + ACTIONS(8579), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [191262] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1328), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, + ACTIONS(8583), 1, aux_sym_number_token1, + ACTIONS(8585), 1, aux_sym_number_token2, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8589), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(8591), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1330), 23, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(8593), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8597), 1, sym_test_operator, + ACTIONS(8599), 1, sym__brace_start, + ACTIONS(8722), 1, + anon_sym_RPAREN, + STATE(5324), 1, + aux_sym__literal_repeat1, + ACTIONS(8569), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(8581), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [191304] = 23, - ACTIONS(3), 1, + STATE(3606), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5119), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [194931] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(8506), 1, + ACTIONS(8567), 1, sym_word, - ACTIONS(8510), 1, - anon_sym_LPAREN, - ACTIONS(8512), 1, + ACTIONS(8573), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8514), 1, + ACTIONS(8575), 1, anon_sym_DOLLAR, - ACTIONS(8516), 1, + ACTIONS(8577), 1, sym__special_character, - ACTIONS(8518), 1, + ACTIONS(8579), 1, anon_sym_DQUOTE, - ACTIONS(8522), 1, + ACTIONS(8583), 1, aux_sym_number_token1, - ACTIONS(8524), 1, + ACTIONS(8585), 1, aux_sym_number_token2, - ACTIONS(8526), 1, + ACTIONS(8587), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8528), 1, + ACTIONS(8589), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8530), 1, + ACTIONS(8591), 1, anon_sym_BQUOTE, - ACTIONS(8532), 1, + ACTIONS(8593), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8536), 1, - sym__comment_word, - ACTIONS(8538), 1, - sym__empty_value, - ACTIONS(8540), 1, + ACTIONS(8597), 1, sym_test_operator, - ACTIONS(8542), 1, + ACTIONS(8599), 1, sym__brace_start, - STATE(2678), 1, + ACTIONS(8724), 1, + anon_sym_RPAREN, + STATE(5324), 1, aux_sym__literal_repeat1, - ACTIONS(8508), 2, + ACTIONS(8569), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8520), 2, + ACTIONS(8581), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8534), 2, + ACTIONS(8595), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2934), 2, + STATE(3606), 2, sym_concatenation, - sym_array, - STATE(2440), 9, + aux_sym_for_statement_repeat1, + STATE(5119), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -240214,237 +243302,21 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [191386] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8030), 1, - anon_sym_SLASH, - ACTIONS(8032), 1, - anon_sym_PERCENT, - ACTIONS(8034), 1, - anon_sym_COLON, - ACTIONS(8544), 1, - anon_sym_RBRACE3, - ACTIONS(8546), 1, - anon_sym_AT, - STATE(6465), 1, - aux_sym__expansion_body_repeat1, - STATE(7232), 1, - sym__expansion_operator, - STATE(7233), 1, - sym__expansion_max_length, - STATE(7234), 1, - sym__expansion_regex_removal, - STATE(7235), 1, - sym__expansion_regex_replacement, - STATE(7236), 1, - sym__expansion_regex, - STATE(7237), 1, - sym__expansion_expression, - ACTIONS(8028), 2, - anon_sym_COMMA, - anon_sym_CARET, - ACTIONS(8048), 2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - ACTIONS(8036), 3, - sym__immediate_double_hash, - anon_sym_POUND, - anon_sym_PERCENT_PERCENT, - ACTIONS(8046), 3, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - ACTIONS(8050), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(8044), 8, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - [191459] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8030), 1, - anon_sym_SLASH, - ACTIONS(8032), 1, - anon_sym_PERCENT, - ACTIONS(8034), 1, - anon_sym_COLON, - ACTIONS(8546), 1, - anon_sym_AT, - ACTIONS(8548), 1, - anon_sym_RBRACE3, - STATE(6477), 1, - aux_sym__expansion_body_repeat1, - STATE(6876), 1, - sym__expansion_max_length, - STATE(7218), 1, - sym__expansion_operator, - STATE(7220), 1, - sym__expansion_regex_removal, - STATE(7221), 1, - sym__expansion_regex_replacement, - STATE(7222), 1, - sym__expansion_regex, - STATE(7223), 1, - sym__expansion_expression, - ACTIONS(8028), 2, - anon_sym_COMMA, - anon_sym_CARET, - ACTIONS(8048), 2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - ACTIONS(8036), 3, - sym__immediate_double_hash, - anon_sym_POUND, - anon_sym_PERCENT_PERCENT, - ACTIONS(8046), 3, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - ACTIONS(8050), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(8044), 8, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - [191532] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8030), 1, - anon_sym_SLASH, - ACTIONS(8032), 1, - anon_sym_PERCENT, - ACTIONS(8034), 1, - anon_sym_COLON, - ACTIONS(8038), 1, - anon_sym_RBRACE3, - ACTIONS(8546), 1, - anon_sym_AT, - STATE(6390), 1, - aux_sym__expansion_body_repeat1, - STATE(6959), 1, - sym__expansion_operator, - STATE(6960), 1, - sym__expansion_max_length, - STATE(6964), 1, - sym__expansion_regex_removal, - STATE(6965), 1, - sym__expansion_regex_replacement, - STATE(6966), 1, - sym__expansion_regex, - STATE(6967), 1, - sym__expansion_expression, - ACTIONS(8028), 2, - anon_sym_COMMA, - anon_sym_CARET, - ACTIONS(8048), 2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - ACTIONS(8036), 3, - sym__immediate_double_hash, - anon_sym_POUND, - anon_sym_PERCENT_PERCENT, - ACTIONS(8046), 3, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - ACTIONS(8050), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(8044), 8, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - [191605] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8030), 1, - anon_sym_SLASH, - ACTIONS(8032), 1, - anon_sym_PERCENT, - ACTIONS(8034), 1, - anon_sym_COLON, - ACTIONS(8546), 1, - anon_sym_AT, - ACTIONS(8550), 1, - anon_sym_RBRACE3, - STATE(6402), 1, - aux_sym__expansion_body_repeat1, - STATE(6985), 1, - sym__expansion_operator, - STATE(6986), 1, - sym__expansion_max_length, - STATE(6987), 1, - sym__expansion_regex_removal, - STATE(6988), 1, - sym__expansion_regex_replacement, - STATE(6992), 1, - sym__expansion_regex, - STATE(6993), 1, - sym__expansion_expression, - ACTIONS(8028), 2, - anon_sym_COMMA, - anon_sym_CARET, - ACTIONS(8048), 2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - ACTIONS(8036), 3, - sym__immediate_double_hash, - anon_sym_POUND, - anon_sym_PERCENT_PERCENT, - ACTIONS(8046), 3, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - ACTIONS(8050), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(8044), 8, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - [191678] = 8, + [195007] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1235), 1, sym_file_descriptor, - ACTIONS(3791), 1, + ACTIONS(8728), 1, anon_sym_DQUOTE, - ACTIONS(7444), 1, + ACTIONS(8732), 1, sym_variable_name, - STATE(4389), 1, + STATE(5493), 1, sym_string, - ACTIONS(7442), 2, + ACTIONS(8730), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7440), 9, + ACTIONS(8726), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -240454,7 +243326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 18, + ACTIONS(1227), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -240471,106 +243343,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [191729] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(8552), 1, - sym__special_character, - STATE(3544), 1, - aux_sym__literal_repeat1, - ACTIONS(5067), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5069), 21, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [191774] = 8, + [195057] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1241), 1, sym_file_descriptor, - ACTIONS(8556), 1, - anon_sym_DQUOTE, - ACTIONS(8560), 1, - sym_variable_name, - STATE(5364), 1, - sym_string, - ACTIONS(8558), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(8554), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 18, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [191825] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 1, - sym_file_descriptor, - ACTIONS(8556), 1, + ACTIONS(8728), 1, anon_sym_DQUOTE, - ACTIONS(8560), 1, + ACTIONS(8732), 1, sym_variable_name, - STATE(5364), 1, + STATE(5493), 1, sym_string, - ACTIONS(8558), 2, + ACTIONS(8730), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8554), 9, + ACTIONS(8726), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -240580,7 +243368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 18, + ACTIONS(1239), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -240589,7 +243377,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -240599,137 +243386,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [191876] = 5, + [195107] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8552), 1, - sym__special_character, - STATE(3544), 1, - aux_sym__literal_repeat1, - ACTIONS(4564), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, + ACTIONS(8567), 1, sym_word, - ACTIONS(4566), 21, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8573), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [191921] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1241), 1, - sym_file_descriptor, - ACTIONS(3791), 1, - anon_sym_DQUOTE, - ACTIONS(7444), 1, - sym_variable_name, - STATE(4389), 1, - sym_string, - ACTIONS(7442), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7440), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(8575), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 18, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [191972] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(8552), 1, + ACTIONS(8577), 1, sym__special_character, - STATE(3544), 1, - aux_sym__literal_repeat1, - ACTIONS(5695), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, + ACTIONS(8579), 1, + anon_sym_DQUOTE, + ACTIONS(8583), 1, aux_sym_number_token1, + ACTIONS(8585), 1, aux_sym_number_token2, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8589), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5697), 21, - sym_file_descriptor, - sym_variable_name, + ACTIONS(8591), 1, + anon_sym_BQUOTE, + ACTIONS(8593), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8597), 1, sym_test_operator, + ACTIONS(8599), 1, sym__brace_start, + ACTIONS(8734), 1, + anon_sym_RPAREN, + STATE(5324), 1, + aux_sym__literal_repeat1, + ACTIONS(8569), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, + ACTIONS(8581), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [192017] = 5, + STATE(3606), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5119), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [195183] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(8552), 1, - sym__special_character, - STATE(3544), 1, - aux_sym__literal_repeat1, - ACTIONS(4467), 10, + ACTIONS(5849), 10, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -240740,7 +243455,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(4469), 21, + ACTIONS(5861), 22, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -240754,6 +243469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -240762,14 +243478,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [192062] = 5, + [195223] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(8552), 1, - sym__special_character, - STATE(3544), 1, - aux_sym__literal_repeat1, - ACTIONS(5393), 10, + ACTIONS(4593), 10, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -240780,7 +243492,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(5395), 21, + ACTIONS(4595), 22, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -240794,6 +243506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -240802,132 +243515,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [192107] = 5, - ACTIONS(71), 1, + [195263] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(8562), 1, - sym__special_character, - STATE(3544), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(3666), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3668), 1, anon_sym_DOLLAR, + ACTIONS(3670), 1, + sym__special_character, + ACTIONS(3672), 1, + anon_sym_DQUOTE, + ACTIONS(3674), 1, aux_sym_number_token1, + ACTIONS(3676), 1, aux_sym_number_token2, + ACTIONS(3678), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3680), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1364), 21, - sym_file_descriptor, - sym_variable_name, + ACTIONS(3682), 1, + anon_sym_BQUOTE, + ACTIONS(3684), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3690), 1, sym_test_operator, + ACTIONS(3692), 1, sym__brace_start, + ACTIONS(8736), 1, + aux_sym_heredoc_redirect_token1, + STATE(3578), 1, + aux_sym__heredoc_command, + STATE(5280), 1, + aux_sym__literal_repeat1, + STATE(5411), 1, + sym_concatenation, + ACTIONS(3652), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(3686), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [192152] = 5, + ACTIONS(3650), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5109), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [195339] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8552), 1, - sym__special_character, - STATE(3544), 1, - aux_sym__literal_repeat1, - ACTIONS(5721), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(8567), 1, + sym_word, + ACTIONS(8573), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8575), 1, anon_sym_DOLLAR, + ACTIONS(8577), 1, + sym__special_character, + ACTIONS(8579), 1, + anon_sym_DQUOTE, + ACTIONS(8583), 1, aux_sym_number_token1, + ACTIONS(8585), 1, aux_sym_number_token2, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8589), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5723), 21, - sym_file_descriptor, - sym_variable_name, + ACTIONS(8591), 1, + anon_sym_BQUOTE, + ACTIONS(8593), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8597), 1, sym_test_operator, + ACTIONS(8599), 1, sym__brace_start, + ACTIONS(8738), 1, + anon_sym_RPAREN, + STATE(5324), 1, + aux_sym__literal_repeat1, + ACTIONS(8569), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, + ACTIONS(8581), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [192197] = 21, + STATE(3590), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5119), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [195415] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8567), 1, sym_word, - ACTIONS(8569), 1, - anon_sym_RPAREN, - ACTIONS(8571), 1, - anon_sym_DOLLAR_LBRACK, ACTIONS(8573), 1, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LBRACK, ACTIONS(8575), 1, - sym__special_character, + anon_sym_DOLLAR, ACTIONS(8577), 1, + sym__special_character, + ACTIONS(8579), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, - aux_sym_number_token1, ACTIONS(8583), 1, - aux_sym_number_token2, + aux_sym_number_token1, ACTIONS(8585), 1, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token2, ACTIONS(8587), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(8589), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(8591), 1, + anon_sym_BQUOTE, + ACTIONS(8593), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_test_operator, ACTIONS(8597), 1, + sym_test_operator, + ACTIONS(8599), 1, sym__brace_start, - STATE(5365), 1, + ACTIONS(8740), 1, + anon_sym_RPAREN, + STATE(5324), 1, aux_sym__literal_repeat1, - ACTIONS(8567), 2, + ACTIONS(8569), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8579), 2, + ACTIONS(8581), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8593), 2, + ACTIONS(8595), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3604), 2, + STATE(3606), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5045), 9, + STATE(5119), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -240937,89 +243680,149 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [192273] = 3, - ACTIONS(71), 1, + [195491] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(4552), 10, + ACTIONS(1235), 1, + sym_file_descriptor, + ACTIONS(7631), 1, + anon_sym_DQUOTE, + ACTIONS(7635), 1, + sym_variable_name, + STATE(4316), 1, + sym_string, + ACTIONS(7633), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7629), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [195541] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8567), 1, + sym_word, + ACTIONS(8573), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8575), 1, anon_sym_DOLLAR, + ACTIONS(8577), 1, + sym__special_character, + ACTIONS(8579), 1, + anon_sym_DQUOTE, + ACTIONS(8583), 1, aux_sym_number_token1, + ACTIONS(8585), 1, aux_sym_number_token2, + ACTIONS(8587), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8589), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4554), 22, - sym_file_descriptor, - sym_variable_name, + ACTIONS(8591), 1, + anon_sym_BQUOTE, + ACTIONS(8593), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8597), 1, sym_test_operator, + ACTIONS(8599), 1, sym__brace_start, + ACTIONS(8742), 1, + anon_sym_RPAREN, + STATE(5324), 1, + aux_sym__literal_repeat1, + ACTIONS(8569), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(8581), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(8595), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [192313] = 21, + STATE(3598), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5119), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [195617] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8567), 1, sym_word, - ACTIONS(8571), 1, - anon_sym_DOLLAR_LBRACK, ACTIONS(8573), 1, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LBRACK, ACTIONS(8575), 1, - sym__special_character, + anon_sym_DOLLAR, ACTIONS(8577), 1, + sym__special_character, + ACTIONS(8579), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, - aux_sym_number_token1, ACTIONS(8583), 1, - aux_sym_number_token2, + aux_sym_number_token1, ACTIONS(8585), 1, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token2, ACTIONS(8587), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(8589), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(8591), 1, + anon_sym_BQUOTE, + ACTIONS(8593), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_test_operator, ACTIONS(8597), 1, - sym__brace_start, + sym_test_operator, ACTIONS(8599), 1, + sym__brace_start, + ACTIONS(8744), 1, anon_sym_RPAREN, - STATE(5365), 1, + STATE(5324), 1, aux_sym__literal_repeat1, - ACTIONS(8567), 2, + ACTIONS(8569), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8579), 2, + ACTIONS(8581), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8593), 2, + ACTIONS(8595), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3549), 2, + STATE(3606), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5045), 9, + STATE(5119), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -241029,52 +243832,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [192389] = 21, + [195693] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8567), 1, sym_word, - ACTIONS(8571), 1, - anon_sym_DOLLAR_LBRACK, ACTIONS(8573), 1, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LBRACK, ACTIONS(8575), 1, - sym__special_character, + anon_sym_DOLLAR, ACTIONS(8577), 1, + sym__special_character, + ACTIONS(8579), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, - aux_sym_number_token1, ACTIONS(8583), 1, - aux_sym_number_token2, + aux_sym_number_token1, ACTIONS(8585), 1, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token2, ACTIONS(8587), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(8589), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(8591), 1, + anon_sym_BQUOTE, + ACTIONS(8593), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_test_operator, ACTIONS(8597), 1, + sym_test_operator, + ACTIONS(8599), 1, sym__brace_start, - ACTIONS(8601), 1, + ACTIONS(8746), 1, anon_sym_RPAREN, - STATE(5365), 1, + STATE(5324), 1, aux_sym__literal_repeat1, - ACTIONS(8567), 2, + ACTIONS(8569), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8579), 2, + ACTIONS(8581), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8593), 2, + ACTIONS(8595), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3604), 2, + STATE(3605), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5045), 9, + STATE(5119), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -241084,52 +243887,149 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [192465] = 21, + [195769] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3672), 1, + anon_sym_DQUOTE, + ACTIONS(7768), 1, + sym_variable_name, + STATE(4636), 1, + sym_string, + ACTIONS(1235), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(7766), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7764), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 16, + anon_sym_LPAREN_LPAREN, + aux_sym_heredoc_redirect_token1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [195819] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(6490), 1, + anon_sym_DOLLAR, + ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, + aux_sym_number_token2, + ACTIONS(6502), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6512), 1, + sym_extglob_pattern, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(7200), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7202), 1, + sym__special_character, + ACTIONS(7204), 1, + anon_sym_DQUOTE, + ACTIONS(7208), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7210), 1, + anon_sym_BQUOTE, + ACTIONS(7212), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8748), 1, sym_word, - ACTIONS(8571), 1, + ACTIONS(8752), 1, + sym_test_operator, + STATE(6434), 1, + aux_sym__literal_repeat1, + ACTIONS(7196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7214), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8750), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(6550), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6326), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [195895] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3666), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8573), 1, + ACTIONS(3668), 1, anon_sym_DOLLAR, - ACTIONS(8575), 1, + ACTIONS(3670), 1, sym__special_character, - ACTIONS(8577), 1, + ACTIONS(3672), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(3674), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(3676), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(3678), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(3680), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(3682), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(3684), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(3690), 1, sym_test_operator, - ACTIONS(8597), 1, + ACTIONS(3692), 1, sym__brace_start, - ACTIONS(8603), 1, - anon_sym_RPAREN, - STATE(5365), 1, + ACTIONS(8754), 1, + aux_sym_heredoc_redirect_token1, + STATE(3578), 1, + aux_sym__heredoc_command, + STATE(5280), 1, aux_sym__literal_repeat1, - ACTIONS(8567), 2, + STATE(5411), 1, + sym_concatenation, + ACTIONS(3652), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8579), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8593), 2, + ACTIONS(3686), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3604), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5045), 9, + ACTIONS(3650), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(5109), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -241139,52 +244039,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [192541] = 21, + [195971] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8567), 1, sym_word, - ACTIONS(8571), 1, - anon_sym_DOLLAR_LBRACK, ACTIONS(8573), 1, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LBRACK, ACTIONS(8575), 1, - sym__special_character, + anon_sym_DOLLAR, ACTIONS(8577), 1, + sym__special_character, + ACTIONS(8579), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, - aux_sym_number_token1, ACTIONS(8583), 1, - aux_sym_number_token2, + aux_sym_number_token1, ACTIONS(8585), 1, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token2, ACTIONS(8587), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(8589), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(8591), 1, + anon_sym_BQUOTE, + ACTIONS(8593), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_test_operator, ACTIONS(8597), 1, + sym_test_operator, + ACTIONS(8599), 1, sym__brace_start, - ACTIONS(8605), 1, + ACTIONS(8756), 1, anon_sym_RPAREN, - STATE(5365), 1, + STATE(5324), 1, aux_sym__literal_repeat1, - ACTIONS(8567), 2, + ACTIONS(8569), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8579), 2, + ACTIONS(8581), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8593), 2, + ACTIONS(8595), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3550), 2, + STATE(3611), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5045), 9, + STATE(5119), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -241194,89 +244094,94 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [192617] = 3, - ACTIONS(71), 1, + [196047] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1261), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1263), 22, + ACTIONS(1241), 1, sym_file_descriptor, + ACTIONS(4078), 1, + anon_sym_DQUOTE, + ACTIONS(7611), 1, sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + STATE(4444), 1, + sym_string, + ACTIONS(7609), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7607), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1239), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [192657] = 21, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [196097] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8567), 1, sym_word, - ACTIONS(8571), 1, - anon_sym_DOLLAR_LBRACK, ACTIONS(8573), 1, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LBRACK, ACTIONS(8575), 1, - sym__special_character, + anon_sym_DOLLAR, ACTIONS(8577), 1, + sym__special_character, + ACTIONS(8579), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, - aux_sym_number_token1, ACTIONS(8583), 1, - aux_sym_number_token2, + aux_sym_number_token1, ACTIONS(8585), 1, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token2, ACTIONS(8587), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(8589), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(8591), 1, + anon_sym_BQUOTE, + ACTIONS(8593), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_test_operator, ACTIONS(8597), 1, + sym_test_operator, + ACTIONS(8599), 1, sym__brace_start, - ACTIONS(8607), 1, + ACTIONS(8758), 1, anon_sym_RPAREN, - STATE(5365), 1, + STATE(5324), 1, aux_sym__literal_repeat1, - ACTIONS(8567), 2, + ACTIONS(8569), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8579), 2, + ACTIONS(8581), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8593), 2, + ACTIONS(8595), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3554), 2, + STATE(3606), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5045), 9, + STATE(5119), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -241286,52 +244191,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [192733] = 21, + [196173] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(2183), 1, + anon_sym_RPAREN, + ACTIONS(8760), 1, sym_word, - ACTIONS(8571), 1, + ACTIONS(8766), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8573), 1, + ACTIONS(8769), 1, anon_sym_DOLLAR, - ACTIONS(8575), 1, + ACTIONS(8772), 1, sym__special_character, - ACTIONS(8577), 1, + ACTIONS(8775), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8781), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8784), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8787), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8790), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8793), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8796), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8802), 1, sym_test_operator, - ACTIONS(8597), 1, + ACTIONS(8805), 1, sym__brace_start, - ACTIONS(8609), 1, - anon_sym_RPAREN, - STATE(5365), 1, + STATE(5324), 1, aux_sym__literal_repeat1, - ACTIONS(8567), 2, + ACTIONS(8763), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8579), 2, + ACTIONS(8778), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8593), 2, + ACTIONS(8799), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3604), 2, + STATE(3606), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5045), 9, + STATE(5119), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -241341,52 +244246,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [192809] = 21, - ACTIONS(71), 1, + [196249] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(6488), 1, - anon_sym_DOLLAR, - ACTIONS(6494), 1, - aux_sym_number_token1, - ACTIONS(6496), 1, - aux_sym_number_token2, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, - sym__brace_start, - ACTIONS(7226), 1, + ACTIONS(3666), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, + ACTIONS(3668), 1, + anon_sym_DOLLAR, + ACTIONS(3670), 1, sym__special_character, - ACTIONS(7230), 1, + ACTIONS(3672), 1, anon_sym_DQUOTE, - ACTIONS(7234), 1, + ACTIONS(3674), 1, + aux_sym_number_token1, + ACTIONS(3676), 1, + aux_sym_number_token2, + ACTIONS(3678), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, + ACTIONS(3680), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3682), 1, anon_sym_BQUOTE, - ACTIONS(7238), 1, + ACTIONS(3684), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8611), 1, - sym_word, - ACTIONS(8615), 1, + ACTIONS(3690), 1, sym_test_operator, - STATE(6405), 1, + ACTIONS(3692), 1, + sym__brace_start, + ACTIONS(8808), 1, + aux_sym_heredoc_redirect_token1, + STATE(3578), 1, + aux_sym__heredoc_command, + STATE(5280), 1, aux_sym__literal_repeat1, - ACTIONS(7224), 2, + STATE(5411), 1, + sym_concatenation, + ACTIONS(3652), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7240), 2, + ACTIONS(3686), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8613), 2, + ACTIONS(3650), 3, sym_raw_string, sym_ansi_c_string, - STATE(6725), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6338), 9, + sym_word, + STATE(5109), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -241396,89 +244301,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [192885] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2094), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2096), 22, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [192925] = 21, + [196325] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8567), 1, sym_word, - ACTIONS(8571), 1, - anon_sym_DOLLAR_LBRACK, ACTIONS(8573), 1, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LBRACK, ACTIONS(8575), 1, - sym__special_character, + anon_sym_DOLLAR, ACTIONS(8577), 1, + sym__special_character, + ACTIONS(8579), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, - aux_sym_number_token1, ACTIONS(8583), 1, - aux_sym_number_token2, + aux_sym_number_token1, ACTIONS(8585), 1, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token2, ACTIONS(8587), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(8589), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(8591), 1, + anon_sym_BQUOTE, + ACTIONS(8593), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_test_operator, ACTIONS(8597), 1, + sym_test_operator, + ACTIONS(8599), 1, sym__brace_start, - ACTIONS(8617), 1, + ACTIONS(8810), 1, anon_sym_RPAREN, - STATE(5365), 1, + STATE(5324), 1, aux_sym__literal_repeat1, - ACTIONS(8567), 2, + ACTIONS(8569), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8579), 2, + ACTIONS(8581), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8593), 2, + ACTIONS(8595), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3546), 2, + STATE(3582), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5045), 9, + STATE(5119), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -241488,52 +244356,52 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [193001] = 21, + [196401] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8567), 1, sym_word, - ACTIONS(8571), 1, - anon_sym_DOLLAR_LBRACK, ACTIONS(8573), 1, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LBRACK, ACTIONS(8575), 1, - sym__special_character, + anon_sym_DOLLAR, ACTIONS(8577), 1, + sym__special_character, + ACTIONS(8579), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, - aux_sym_number_token1, ACTIONS(8583), 1, - aux_sym_number_token2, + aux_sym_number_token1, ACTIONS(8585), 1, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token2, ACTIONS(8587), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(8589), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(8591), 1, + anon_sym_BQUOTE, + ACTIONS(8593), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_test_operator, ACTIONS(8597), 1, + sym_test_operator, + ACTIONS(8599), 1, sym__brace_start, - ACTIONS(8619), 1, + ACTIONS(8812), 1, anon_sym_RPAREN, - STATE(5365), 1, + STATE(5324), 1, aux_sym__literal_repeat1, - ACTIONS(8567), 2, + ACTIONS(8569), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8579), 2, + ACTIONS(8581), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8593), 2, + ACTIONS(8595), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3613), 2, + STATE(3550), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5045), 9, + STATE(5119), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -241543,64 +244411,21 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [193077] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8623), 1, - anon_sym_DQUOTE, - ACTIONS(8627), 1, - sym_variable_name, - STATE(5204), 1, - sym_string, - ACTIONS(1235), 2, - sym_test_operator, - sym__brace_start, - ACTIONS(8625), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(8621), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 16, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [193127] = 8, + [196477] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8623), 1, + ACTIONS(1235), 1, + sym_file_descriptor, + ACTIONS(8661), 1, anon_sym_DQUOTE, - ACTIONS(8627), 1, + ACTIONS(8665), 1, sym_variable_name, - STATE(5204), 1, + STATE(5430), 1, sym_string, - ACTIONS(1241), 2, - sym_test_operator, - sym__brace_start, - ACTIONS(8625), 2, + ACTIONS(8663), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8621), 9, + ACTIONS(8659), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -241610,69 +244435,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 16, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [193177] = 21, + ACTIONS(1227), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [196527] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8567), 1, sym_word, - ACTIONS(8571), 1, - anon_sym_DOLLAR_LBRACK, ACTIONS(8573), 1, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LBRACK, ACTIONS(8575), 1, - sym__special_character, + anon_sym_DOLLAR, ACTIONS(8577), 1, + sym__special_character, + ACTIONS(8579), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, - aux_sym_number_token1, ACTIONS(8583), 1, - aux_sym_number_token2, + aux_sym_number_token1, ACTIONS(8585), 1, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token2, ACTIONS(8587), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(8589), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LPAREN, ACTIONS(8591), 1, + anon_sym_BQUOTE, + ACTIONS(8593), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_test_operator, ACTIONS(8597), 1, + sym_test_operator, + ACTIONS(8599), 1, sym__brace_start, - ACTIONS(8629), 1, + ACTIONS(8814), 1, anon_sym_RPAREN, - STATE(5365), 1, + STATE(5324), 1, aux_sym__literal_repeat1, - ACTIONS(8567), 2, + ACTIONS(8569), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8579), 2, + ACTIONS(8581), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8593), 2, + ACTIONS(8595), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3604), 2, + STATE(3606), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5045), 9, + STATE(5119), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -241682,22 +244508,21 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [193253] = 8, + [196603] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, + ACTIONS(1241), 1, + sym_file_descriptor, + ACTIONS(7631), 1, anon_sym_DQUOTE, - ACTIONS(7757), 1, + ACTIONS(7635), 1, sym_variable_name, - STATE(4808), 1, + STATE(4316), 1, sym_string, - ACTIONS(1241), 2, - sym_test_operator, - sym__brace_start, - ACTIONS(7755), 2, + ACTIONS(7633), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7753), 9, + ACTIONS(7629), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -241707,69 +244532,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 16, - anon_sym_LPAREN_LPAREN, + ACTIONS(1239), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, + [196653] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3666), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3668), 1, + anon_sym_DOLLAR, + ACTIONS(3670), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3672), 1, + anon_sym_DQUOTE, + ACTIONS(3674), 1, aux_sym_number_token1, + ACTIONS(3676), 1, aux_sym_number_token2, + ACTIONS(3678), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3680), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3682), 1, anon_sym_BQUOTE, + ACTIONS(3684), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3690), 1, + sym_test_operator, + ACTIONS(3692), 1, + sym__brace_start, + ACTIONS(8816), 1, + aux_sym_heredoc_redirect_token1, + STATE(3578), 1, + aux_sym__heredoc_command, + STATE(5280), 1, + aux_sym__literal_repeat1, + STATE(5411), 1, + sym_concatenation, + ACTIONS(3652), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3686), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(3650), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - [193303] = 21, + STATE(5109), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [196729] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(3998), 1, + anon_sym_DOLLAR, + ACTIONS(4002), 1, + aux_sym_number_token1, + ACTIONS(4004), 1, + aux_sym_number_token2, + ACTIONS(4008), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4018), 1, + sym__brace_start, + ACTIONS(4841), 1, sym_word, - ACTIONS(8571), 1, + ACTIONS(4845), 1, + sym_test_operator, + ACTIONS(8820), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8573), 1, - anon_sym_DOLLAR, - ACTIONS(8575), 1, + ACTIONS(8822), 1, sym__special_character, - ACTIONS(8577), 1, + ACTIONS(8824), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, - aux_sym_number_token1, - ACTIONS(8583), 1, - aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8828), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8830), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8832), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_test_operator, - ACTIONS(8597), 1, - sym__brace_start, - ACTIONS(8631), 1, - anon_sym_RPAREN, - STATE(5365), 1, + STATE(2307), 1, aux_sym__literal_repeat1, - ACTIONS(8567), 2, + ACTIONS(8818), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8579), 2, + ACTIONS(8826), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8593), 2, + ACTIONS(8834), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3564), 2, + STATE(963), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5045), 9, + STATE(2516), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -241779,52 +244658,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [193379] = 21, + [196802] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(3732), 1, sym_word, - ACTIONS(8571), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8573), 1, + ACTIONS(3738), 1, anon_sym_DOLLAR, - ACTIONS(8575), 1, - sym__special_character, - ACTIONS(8577), 1, - anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(3742), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(3744), 1, aux_sym_number_token2, - ACTIONS(8585), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(3748), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, - anon_sym_BQUOTE, - ACTIONS(8591), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(3756), 1, sym_test_operator, - ACTIONS(8597), 1, + ACTIONS(3758), 1, sym__brace_start, - ACTIONS(8633), 1, - anon_sym_RPAREN, - STATE(5365), 1, + ACTIONS(8838), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8840), 1, + sym__special_character, + ACTIONS(8842), 1, + anon_sym_DQUOTE, + ACTIONS(8846), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8848), 1, + anon_sym_BQUOTE, + ACTIONS(8850), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2287), 1, aux_sym__literal_repeat1, - ACTIONS(8567), 2, + ACTIONS(8836), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8579), 2, + ACTIONS(8844), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8593), 2, + ACTIONS(8852), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3604), 2, + STATE(735), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5045), 9, + STATE(1780), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -241834,52 +244711,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [193455] = 21, + [196875] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3729), 1, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3731), 1, + ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(3733), 1, - sym__special_character, - ACTIONS(3735), 1, + ACTIONS(307), 1, anon_sym_DQUOTE, - ACTIONS(3737), 1, + ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(3739), 1, + ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(3741), 1, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3743), 1, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3745), 1, - anon_sym_BQUOTE, - ACTIONS(3747), 1, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3753), 1, - sym_test_operator, - ACTIONS(3755), 1, + ACTIONS(327), 1, sym__brace_start, - ACTIONS(8635), 1, - aux_sym_heredoc_redirect_token1, - STATE(3571), 1, - aux_sym__heredoc_command, - STATE(5351), 1, - aux_sym__literal_repeat1, - STATE(5456), 1, - sym_concatenation, - ACTIONS(3715), 2, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + ACTIONS(8854), 1, + sym_word, + ACTIONS(8856), 1, + anon_sym_RBRACK, + ACTIONS(8862), 1, + sym_test_operator, + ACTIONS(288), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3749), 2, + ACTIONS(323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3713), 3, + ACTIONS(8858), 2, + sym__special_character, + sym__comment_word, + ACTIONS(8860), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(5062), 9, + STATE(2670), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -241889,52 +244763,51 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [193531] = 21, + [196946] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(1530), 1, + anon_sym_DOLLAR, + ACTIONS(1536), 1, + aux_sym_number_token1, + ACTIONS(1538), 1, + aux_sym_number_token2, + ACTIONS(1542), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1554), 1, + sym__brace_start, + ACTIONS(8864), 1, sym_word, - ACTIONS(8571), 1, + ACTIONS(8868), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8573), 1, - anon_sym_DOLLAR, - ACTIONS(8575), 1, + ACTIONS(8870), 1, sym__special_character, - ACTIONS(8577), 1, + ACTIONS(8872), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, - aux_sym_number_token1, - ACTIONS(8583), 1, - aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8876), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8878), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8880), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8884), 1, sym_test_operator, - ACTIONS(8597), 1, - sym__brace_start, - ACTIONS(8637), 1, - anon_sym_RPAREN, - STATE(5365), 1, + ACTIONS(8886), 1, + sym_regex, + STATE(1418), 1, aux_sym__literal_repeat1, - ACTIONS(8567), 2, + STATE(1564), 1, + sym_concatenation, + ACTIONS(8866), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8579), 2, + ACTIONS(8874), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8593), 2, + ACTIONS(8882), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3568), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5045), 9, + STATE(1112), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -241944,52 +244817,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [193607] = 21, - ACTIONS(3), 1, + [197021] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3729), 1, + ACTIONS(4597), 1, + sym_word, + ACTIONS(4601), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3731), 1, + ACTIONS(4603), 1, anon_sym_DOLLAR, - ACTIONS(3733), 1, - sym__special_character, - ACTIONS(3735), 1, + ACTIONS(4607), 1, anon_sym_DQUOTE, - ACTIONS(3737), 1, + ACTIONS(4611), 1, aux_sym_number_token1, - ACTIONS(3739), 1, + ACTIONS(4613), 1, aux_sym_number_token2, - ACTIONS(3741), 1, + ACTIONS(4615), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3743), 1, + ACTIONS(4617), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3745), 1, + ACTIONS(4619), 1, anon_sym_BQUOTE, - ACTIONS(3747), 1, + ACTIONS(4621), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3753), 1, + ACTIONS(4625), 1, sym_test_operator, - ACTIONS(3755), 1, + ACTIONS(4627), 1, sym__brace_start, - ACTIONS(8639), 1, - aux_sym_heredoc_redirect_token1, - STATE(3571), 1, - aux_sym__heredoc_command, - STATE(5351), 1, + ACTIONS(8888), 1, + sym__special_character, + STATE(2607), 1, aux_sym__literal_repeat1, - STATE(5456), 1, - sym_concatenation, - ACTIONS(3715), 2, + ACTIONS(4599), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3749), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3713), 3, + ACTIONS(4609), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(5062), 9, + ACTIONS(4623), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(887), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2381), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -241999,52 +244870,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [193683] = 21, + [197094] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(3028), 1, sym_word, - ACTIONS(8571), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8573), 1, + ACTIONS(3034), 1, anon_sym_DOLLAR, - ACTIONS(8575), 1, - sym__special_character, - ACTIONS(8577), 1, - anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(3038), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(3040), 1, aux_sym_number_token2, - ACTIONS(8585), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(3044), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, - anon_sym_BQUOTE, - ACTIONS(8591), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(3052), 1, sym_test_operator, - ACTIONS(8597), 1, + ACTIONS(3054), 1, sym__brace_start, - ACTIONS(8641), 1, - anon_sym_RPAREN, - STATE(5365), 1, + ACTIONS(8892), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8894), 1, + sym__special_character, + ACTIONS(8896), 1, + anon_sym_DQUOTE, + ACTIONS(8900), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8902), 1, + anon_sym_BQUOTE, + ACTIONS(8904), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2006), 1, aux_sym__literal_repeat1, - ACTIONS(8567), 2, + ACTIONS(8890), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8579), 2, + ACTIONS(8898), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8593), 2, + ACTIONS(8906), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3604), 2, + STATE(659), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5045), 9, + STATE(1578), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -242054,89 +244923,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [193759] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4370), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4372), 22, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [193799] = 21, + [197167] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3729), 1, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3731), 1, + ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(3733), 1, - sym__special_character, - ACTIONS(3735), 1, + ACTIONS(307), 1, anon_sym_DQUOTE, - ACTIONS(3737), 1, + ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(3739), 1, + ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(3741), 1, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3743), 1, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3745), 1, - anon_sym_BQUOTE, - ACTIONS(3747), 1, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3753), 1, - sym_test_operator, - ACTIONS(3755), 1, + ACTIONS(327), 1, sym__brace_start, - ACTIONS(8643), 1, - aux_sym_heredoc_redirect_token1, - STATE(3571), 1, - aux_sym__heredoc_command, - STATE(5351), 1, - aux_sym__literal_repeat1, - STATE(5456), 1, - sym_concatenation, - ACTIONS(3715), 2, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + ACTIONS(8854), 1, + sym_word, + ACTIONS(8862), 1, + sym_test_operator, + ACTIONS(8908), 1, + anon_sym_RBRACK, + ACTIONS(288), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3749), 2, + ACTIONS(323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3713), 3, + ACTIONS(8858), 2, + sym__special_character, + sym__comment_word, + ACTIONS(8860), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(5062), 9, + STATE(2670), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -242146,52 +244975,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [193875] = 21, - ACTIONS(3), 1, + [197238] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(8651), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(8653), 1, + ACTIONS(8292), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8656), 1, + ACTIONS(8294), 1, anon_sym_DOLLAR, - ACTIONS(8659), 1, + ACTIONS(8296), 1, sym__special_character, - ACTIONS(8662), 1, + ACTIONS(8298), 1, anon_sym_DQUOTE, - ACTIONS(8665), 1, + ACTIONS(8302), 1, aux_sym_number_token1, - ACTIONS(8668), 1, + ACTIONS(8304), 1, aux_sym_number_token2, - ACTIONS(8671), 1, + ACTIONS(8306), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8674), 1, + ACTIONS(8308), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8677), 1, + ACTIONS(8310), 1, anon_sym_BQUOTE, - ACTIONS(8680), 1, + ACTIONS(8312), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8686), 1, - sym_test_operator, - ACTIONS(8689), 1, + ACTIONS(8322), 1, sym__brace_start, - STATE(3571), 1, - aux_sym__heredoc_command, - STATE(5351), 1, + ACTIONS(8910), 1, + sym_word, + ACTIONS(8914), 1, + sym_test_operator, + STATE(1381), 1, aux_sym__literal_repeat1, - STATE(5456), 1, - sym_concatenation, - ACTIONS(8648), 2, + ACTIONS(8288), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8683), 2, + ACTIONS(8314), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8645), 3, + ACTIONS(8912), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(5062), 9, + STATE(583), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1082), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -242201,21 +245028,21 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [193951] = 8, + [197311] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1235), 1, sym_file_descriptor, - ACTIONS(8694), 1, + ACTIONS(8918), 1, anon_sym_DQUOTE, - ACTIONS(8698), 1, + ACTIONS(8922), 1, sym_variable_name, - STATE(5487), 1, + STATE(5529), 1, sym_string, - ACTIONS(8696), 2, + ACTIONS(8920), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8692), 9, + ACTIONS(8916), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -242225,7 +245052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 17, + ACTIONS(1227), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -242234,7 +245061,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -242243,89 +245069,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [194001] = 3, + [197360] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(2072), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1414), 1, anon_sym_DOLLAR, + ACTIONS(1420), 1, aux_sym_number_token1, + ACTIONS(1422), 1, aux_sym_number_token2, + ACTIONS(1426), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2074), 22, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, + ACTIONS(1438), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8924), 1, + sym_word, + ACTIONS(8928), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(8930), 1, sym__special_character, + ACTIONS(8932), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(8936), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(8938), 1, anon_sym_BQUOTE, + ACTIONS(8940), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(8944), 1, + sym_test_operator, + ACTIONS(8946), 1, + sym_regex, + STATE(1111), 1, + aux_sym__literal_repeat1, + STATE(1208), 1, + sym_concatenation, + ACTIONS(8926), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8934), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8942), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [194041] = 21, + STATE(878), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [197435] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6488), 1, + ACTIONS(8292), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8294), 1, anon_sym_DOLLAR, - ACTIONS(6494), 1, + ACTIONS(8296), 1, + sym__special_character, + ACTIONS(8298), 1, + anon_sym_DQUOTE, + ACTIONS(8302), 1, aux_sym_number_token1, - ACTIONS(6496), 1, + ACTIONS(8304), 1, aux_sym_number_token2, - ACTIONS(6500), 1, + ACTIONS(8306), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8308), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, + ACTIONS(8310), 1, + anon_sym_BQUOTE, + ACTIONS(8312), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8322), 1, sym__brace_start, - ACTIONS(7226), 1, + ACTIONS(8910), 1, + sym_word, + ACTIONS(8914), 1, + sym_test_operator, + STATE(1381), 1, + aux_sym__literal_repeat1, + ACTIONS(8288), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8314), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8912), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(584), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1082), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [197508] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, - sym__special_character, - ACTIONS(7230), 1, + ACTIONS(303), 1, + anon_sym_DOLLAR, + ACTIONS(307), 1, anon_sym_DQUOTE, - ACTIONS(7234), 1, + ACTIONS(311), 1, + aux_sym_number_token1, + ACTIONS(313), 1, + aux_sym_number_token2, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, - anon_sym_BQUOTE, - ACTIONS(7238), 1, + ACTIONS(317), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8700), 1, + ACTIONS(327), 1, + sym__brace_start, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + ACTIONS(8854), 1, sym_word, - ACTIONS(8704), 1, + ACTIONS(8862), 1, sym_test_operator, - STATE(6543), 1, - aux_sym__literal_repeat1, - ACTIONS(7224), 2, + ACTIONS(8948), 1, + anon_sym_RBRACK, + ACTIONS(288), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7240), 2, + ACTIONS(323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8702), 2, + ACTIONS(8858), 2, + sym__special_character, + sym__comment_word, + ACTIONS(8860), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(6775), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6420), 9, + STATE(2670), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -242335,52 +245228,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [194117] = 21, + [197579] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(8950), 1, sym_word, - ACTIONS(8571), 1, + ACTIONS(8954), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8573), 1, + ACTIONS(8956), 1, anon_sym_DOLLAR, - ACTIONS(8575), 1, + ACTIONS(8958), 1, sym__special_character, - ACTIONS(8577), 1, + ACTIONS(8960), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8964), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8966), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8968), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8970), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8972), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8974), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8978), 1, sym_test_operator, - ACTIONS(8597), 1, + ACTIONS(8980), 1, sym__brace_start, - ACTIONS(8706), 1, - anon_sym_RPAREN, - STATE(5365), 1, + STATE(2560), 1, aux_sym__literal_repeat1, - ACTIONS(8567), 2, + ACTIONS(8952), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8579), 2, + ACTIONS(8962), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8593), 2, + ACTIONS(8976), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3561), 2, + STATE(826), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5045), 9, + STATE(2302), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -242390,52 +245281,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [194193] = 21, + [197652] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(3668), 1, + anon_sym_DOLLAR, + ACTIONS(3674), 1, + aux_sym_number_token1, + ACTIONS(3676), 1, + aux_sym_number_token2, + ACTIONS(3680), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3692), 1, + sym__brace_start, + ACTIONS(7751), 1, sym_word, - ACTIONS(8571), 1, + ACTIONS(7759), 1, + sym_test_operator, + ACTIONS(8984), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8573), 1, - anon_sym_DOLLAR, - ACTIONS(8575), 1, + ACTIONS(8986), 1, sym__special_character, - ACTIONS(8577), 1, + ACTIONS(8988), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, - aux_sym_number_token1, - ACTIONS(8583), 1, - aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8994), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8996), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_test_operator, - ACTIONS(8597), 1, - sym__brace_start, - ACTIONS(8708), 1, - anon_sym_RPAREN, - STATE(5365), 1, + STATE(4920), 1, aux_sym__literal_repeat1, - ACTIONS(8567), 2, + ACTIONS(8982), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8579), 2, + ACTIONS(8990), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8593), 2, + ACTIONS(8998), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3604), 2, + STATE(3484), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5045), 9, + STATE(4539), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -242445,52 +245334,103 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [194269] = 21, + [197725] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, - sym_word, - ACTIONS(8571), 1, + ACTIONS(8338), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8573), 1, + ACTIONS(8340), 1, anon_sym_DOLLAR, - ACTIONS(8575), 1, + ACTIONS(8342), 1, sym__special_character, - ACTIONS(8577), 1, + ACTIONS(8344), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8348), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8350), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8352), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8354), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8356), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8358), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(8368), 1, + sym__brace_start, + ACTIONS(9000), 1, + sym_word, + ACTIONS(9004), 1, sym_test_operator, - ACTIONS(8597), 1, + STATE(3542), 1, + aux_sym__literal_repeat1, + ACTIONS(8334), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8360), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9002), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1875), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3476), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [197798] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3668), 1, + anon_sym_DOLLAR, + ACTIONS(3674), 1, + aux_sym_number_token1, + ACTIONS(3676), 1, + aux_sym_number_token2, + ACTIONS(3680), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3692), 1, sym__brace_start, - ACTIONS(8710), 1, - anon_sym_RPAREN, - STATE(5365), 1, + ACTIONS(7751), 1, + sym_word, + ACTIONS(7759), 1, + sym_test_operator, + ACTIONS(8984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8986), 1, + sym__special_character, + ACTIONS(8988), 1, + anon_sym_DQUOTE, + ACTIONS(8992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8994), 1, + anon_sym_BQUOTE, + ACTIONS(8996), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(4920), 1, aux_sym__literal_repeat1, - ACTIONS(8567), 2, + ACTIONS(8982), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8579), 2, + ACTIONS(8990), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8593), 2, + ACTIONS(8998), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3604), 2, + STATE(3479), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5045), 9, + STATE(4539), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -242500,100 +245440,127 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [194345] = 3, + [197871] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(5766), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(5611), 1, + sym_word, + ACTIONS(5617), 1, anon_sym_DOLLAR, + ACTIONS(5621), 1, aux_sym_number_token1, + ACTIONS(5623), 1, aux_sym_number_token2, + ACTIONS(5627), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5768), 22, - sym_file_descriptor, - sym_variable_name, + ACTIONS(5635), 1, sym_test_operator, + ACTIONS(5637), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9008), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(9010), 1, sym__special_character, + ACTIONS(9012), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(9016), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(9018), 1, anon_sym_BQUOTE, + ACTIONS(9020), 1, anon_sym_DOLLAR_BQUOTE, + STATE(3460), 1, + aux_sym__literal_repeat1, + ACTIONS(9006), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9014), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(9022), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [194385] = 8, - ACTIONS(3), 1, + STATE(1353), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3017), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [197944] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1235), 1, - sym_file_descriptor, - ACTIONS(7673), 1, + ACTIONS(3998), 1, + anon_sym_DOLLAR, + ACTIONS(4002), 1, + aux_sym_number_token1, + ACTIONS(4004), 1, + aux_sym_number_token2, + ACTIONS(4008), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4018), 1, + sym__brace_start, + ACTIONS(4841), 1, + sym_word, + ACTIONS(4845), 1, + sym_test_operator, + ACTIONS(8820), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8822), 1, + sym__special_character, + ACTIONS(8824), 1, anon_sym_DQUOTE, - ACTIONS(7677), 1, - sym_variable_name, - STATE(4393), 1, + ACTIONS(8828), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8830), 1, + anon_sym_BQUOTE, + ACTIONS(8832), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2307), 1, + aux_sym__literal_repeat1, + ACTIONS(8818), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8826), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8834), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(962), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2516), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(7675), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7671), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 17, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [194435] = 8, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [198017] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1241), 1, sym_file_descriptor, - ACTIONS(8714), 1, + ACTIONS(8918), 1, anon_sym_DQUOTE, - ACTIONS(8718), 1, + ACTIONS(8922), 1, sym_variable_name, - STATE(5444), 1, + STATE(5529), 1, sym_string, - ACTIONS(8716), 2, + ACTIONS(8920), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8712), 9, + ACTIONS(8916), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -242603,7 +245570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 17, + ACTIONS(1239), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -242620,59 +245587,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [194485] = 3, - ACTIONS(71), 1, + [198066] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(5819), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(299), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(303), 1, anon_sym_DOLLAR, + ACTIONS(307), 1, + anon_sym_DQUOTE, + ACTIONS(311), 1, aux_sym_number_token1, + ACTIONS(313), 1, aux_sym_number_token2, + ACTIONS(315), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(321), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(327), 1, + sym__brace_start, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + ACTIONS(8854), 1, sym_word, - ACTIONS(5831), 22, - sym_file_descriptor, - sym_variable_name, + ACTIONS(8862), 1, sym_test_operator, - sym__brace_start, + ACTIONS(9024), 1, + anon_sym_RBRACK, + ACTIONS(288), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(323), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8858), 2, sym__special_character, - anon_sym_DQUOTE, + sym__comment_word, + ACTIONS(8860), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [194525] = 8, + STATE(2670), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [198137] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1235), 1, + ACTIONS(1241), 1, sym_file_descriptor, - ACTIONS(8714), 1, + ACTIONS(9028), 1, anon_sym_DQUOTE, - ACTIONS(8718), 1, + ACTIONS(9032), 1, sym_variable_name, - STATE(5444), 1, + STATE(5447), 1, sym_string, - ACTIONS(8716), 2, + ACTIONS(9030), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8712), 9, + ACTIONS(9026), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -242682,7 +245663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 17, + ACTIONS(1239), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -242699,53 +245680,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [194575] = 21, - ACTIONS(3), 1, + [198186] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3729), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3731), 1, + ACTIONS(5611), 1, + sym_word, + ACTIONS(5617), 1, anon_sym_DOLLAR, - ACTIONS(3733), 1, - sym__special_character, - ACTIONS(3735), 1, - anon_sym_DQUOTE, - ACTIONS(3737), 1, + ACTIONS(5621), 1, aux_sym_number_token1, - ACTIONS(3739), 1, + ACTIONS(5623), 1, aux_sym_number_token2, - ACTIONS(3741), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3743), 1, + ACTIONS(5627), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3745), 1, - anon_sym_BQUOTE, - ACTIONS(3747), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3753), 1, + ACTIONS(5635), 1, sym_test_operator, - ACTIONS(3755), 1, + ACTIONS(5637), 1, sym__brace_start, - ACTIONS(8720), 1, - aux_sym_heredoc_redirect_token1, - STATE(3571), 1, - aux_sym__heredoc_command, - STATE(5351), 1, + ACTIONS(9008), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9010), 1, + sym__special_character, + ACTIONS(9012), 1, + anon_sym_DQUOTE, + ACTIONS(9016), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9018), 1, + anon_sym_BQUOTE, + ACTIONS(9020), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3460), 1, aux_sym__literal_repeat1, - STATE(5456), 1, - sym_concatenation, - ACTIONS(3715), 2, + ACTIONS(9006), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3749), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3713), 3, + ACTIONS(9014), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(5062), 9, + ACTIONS(9022), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1354), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3017), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -242755,94 +245733,103 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [194651] = 8, - ACTIONS(3), 1, + [198259] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_DQUOTE, - ACTIONS(7757), 1, - sym_variable_name, - STATE(4808), 1, - sym_string, - ACTIONS(1235), 2, - sym_test_operator, - sym__brace_start, - ACTIONS(7755), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7753), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(3998), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 16, - anon_sym_LPAREN_LPAREN, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4002), 1, aux_sym_number_token1, + ACTIONS(4004), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(4008), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4018), 1, + sym__brace_start, + ACTIONS(4098), 1, + sym_word, + ACTIONS(4102), 1, + sym_test_operator, + ACTIONS(8820), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8824), 1, + anon_sym_DQUOTE, + ACTIONS(8828), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8830), 1, anon_sym_BQUOTE, + ACTIONS(8832), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(9034), 1, + sym__special_character, + STATE(2307), 1, + aux_sym__literal_repeat1, + ACTIONS(8818), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8834), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [194701] = 21, - ACTIONS(3), 1, + ACTIONS(9036), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(800), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2129), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [198332] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3729), 1, + ACTIONS(8090), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3731), 1, + ACTIONS(8092), 1, anon_sym_DOLLAR, - ACTIONS(3733), 1, + ACTIONS(8094), 1, sym__special_character, - ACTIONS(3735), 1, + ACTIONS(8096), 1, anon_sym_DQUOTE, - ACTIONS(3737), 1, + ACTIONS(8100), 1, aux_sym_number_token1, - ACTIONS(3739), 1, + ACTIONS(8102), 1, aux_sym_number_token2, - ACTIONS(3741), 1, + ACTIONS(8104), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3743), 1, + ACTIONS(8106), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3745), 1, + ACTIONS(8108), 1, anon_sym_BQUOTE, - ACTIONS(3747), 1, + ACTIONS(8110), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3753), 1, - sym_test_operator, - ACTIONS(3755), 1, + ACTIONS(8120), 1, sym__brace_start, - ACTIONS(8722), 1, - aux_sym_heredoc_redirect_token1, - STATE(3571), 1, - aux_sym__heredoc_command, - STATE(5351), 1, + ACTIONS(9038), 1, + sym_word, + ACTIONS(9042), 1, + sym_test_operator, + STATE(1777), 1, aux_sym__literal_repeat1, - STATE(5456), 1, - sym_concatenation, - ACTIONS(3715), 2, + ACTIONS(8086), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3749), 2, + ACTIONS(8112), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3713), 3, + ACTIONS(9040), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(5062), 9, + STATE(814), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2324), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -242852,52 +245839,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [194777] = 21, + [198405] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, - sym_word, - ACTIONS(8571), 1, + ACTIONS(8090), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8573), 1, + ACTIONS(8092), 1, anon_sym_DOLLAR, - ACTIONS(8575), 1, - sym__special_character, - ACTIONS(8577), 1, + ACTIONS(8096), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8100), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8102), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8104), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8106), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8108), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8110), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_test_operator, - ACTIONS(8597), 1, + ACTIONS(8120), 1, sym__brace_start, - ACTIONS(8724), 1, - anon_sym_RPAREN, - STATE(5365), 1, + ACTIONS(8476), 1, + sym__special_character, + ACTIONS(9044), 1, + sym_word, + ACTIONS(9048), 1, + sym_test_operator, + STATE(1777), 1, aux_sym__literal_repeat1, - ACTIONS(8567), 2, + ACTIONS(8086), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8579), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8593), 2, + ACTIONS(8112), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3590), 2, + ACTIONS(9046), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(651), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5045), 9, + STATE(1415), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -242907,52 +245892,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [194853] = 21, + [198478] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, - sym_word, - ACTIONS(8571), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8573), 1, + ACTIONS(3034), 1, anon_sym_DOLLAR, - ACTIONS(8575), 1, - sym__special_character, - ACTIONS(8577), 1, - anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(3038), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(3040), 1, aux_sym_number_token2, - ACTIONS(8585), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(3044), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(3054), 1, + sym__brace_start, + ACTIONS(3694), 1, + sym_word, + ACTIONS(3698), 1, + sym_test_operator, + ACTIONS(8892), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8896), 1, + anon_sym_DQUOTE, + ACTIONS(8900), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8902), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8904), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_test_operator, - ACTIONS(8597), 1, - sym__brace_start, - ACTIONS(8726), 1, - anon_sym_RPAREN, - STATE(5365), 1, + ACTIONS(9050), 1, + sym__special_character, + STATE(2006), 1, aux_sym__literal_repeat1, - ACTIONS(8567), 2, + ACTIONS(8890), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8579), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8593), 2, + ACTIONS(8906), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3604), 2, + ACTIONS(9052), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(720), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5045), 9, + STATE(1858), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -242962,52 +245945,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [194929] = 21, + [198551] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, - sym_word, - ACTIONS(8571), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8573), 1, + ACTIONS(3034), 1, anon_sym_DOLLAR, - ACTIONS(8575), 1, - sym__special_character, - ACTIONS(8577), 1, - anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(3038), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(3040), 1, aux_sym_number_token2, - ACTIONS(8585), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(3044), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(3054), 1, + sym__brace_start, + ACTIONS(4434), 1, + sym_word, + ACTIONS(4438), 1, + sym_test_operator, + ACTIONS(8892), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8896), 1, + anon_sym_DQUOTE, + ACTIONS(8900), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8902), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8904), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_test_operator, - ACTIONS(8597), 1, - sym__brace_start, - ACTIONS(8728), 1, - anon_sym_RPAREN, - STATE(5365), 1, + ACTIONS(9054), 1, + sym__special_character, + STATE(2006), 1, aux_sym__literal_repeat1, - ACTIONS(8567), 2, + ACTIONS(8890), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8579), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8593), 2, + ACTIONS(8906), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3604), 2, + ACTIONS(9056), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(834), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5045), 9, + STATE(2361), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -243017,52 +245998,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [195005] = 21, + [198624] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, - sym_word, - ACTIONS(8571), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8573), 1, + ACTIONS(3034), 1, anon_sym_DOLLAR, - ACTIONS(8575), 1, - sym__special_character, - ACTIONS(8577), 1, - anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(3038), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(3040), 1, aux_sym_number_token2, - ACTIONS(8585), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(3044), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(3054), 1, + sym__brace_start, + ACTIONS(3694), 1, + sym_word, + ACTIONS(3698), 1, + sym_test_operator, + ACTIONS(8892), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8896), 1, + anon_sym_DQUOTE, + ACTIONS(8900), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8902), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8904), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_test_operator, - ACTIONS(8597), 1, - sym__brace_start, - ACTIONS(8730), 1, - anon_sym_RPAREN, - STATE(5365), 1, + ACTIONS(9050), 1, + sym__special_character, + STATE(2006), 1, aux_sym__literal_repeat1, - ACTIONS(8567), 2, + ACTIONS(8890), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8579), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8593), 2, + ACTIONS(8906), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3577), 2, + ACTIONS(9052), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(724), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5045), 9, + STATE(1858), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -243072,52 +246051,102 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [195081] = 21, + [198697] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8522), 1, + anon_sym_SLASH, + ACTIONS(8524), 1, + anon_sym_PERCENT, + ACTIONS(8526), 1, + anon_sym_COLON, + ACTIONS(8530), 1, + anon_sym_RBRACE3, + ACTIONS(8532), 1, + anon_sym_AT, + ACTIONS(8534), 1, + anon_sym_STAR2, + ACTIONS(9058), 1, + anon_sym_LBRACK, + STATE(6940), 1, + sym__expansion_expression, + STATE(7042), 1, + sym__expansion_regex, + STATE(7074), 1, + sym__expansion_regex_replacement, + STATE(7109), 1, + sym__expansion_regex_removal, + STATE(7118), 1, + sym__expansion_max_length, + STATE(7154), 1, + sym__expansion_operator, + ACTIONS(8520), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(8540), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(8528), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(8538), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(8536), 8, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + [198768] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, - sym_word, - ACTIONS(8571), 1, + ACTIONS(8090), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8573), 1, + ACTIONS(8092), 1, anon_sym_DOLLAR, - ACTIONS(8575), 1, + ACTIONS(8094), 1, sym__special_character, - ACTIONS(8577), 1, + ACTIONS(8096), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8100), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8102), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8104), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8106), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8108), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8110), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_test_operator, - ACTIONS(8597), 1, + ACTIONS(8120), 1, sym__brace_start, - ACTIONS(8732), 1, - anon_sym_RPAREN, - STATE(5365), 1, + ACTIONS(9038), 1, + sym_word, + ACTIONS(9042), 1, + sym_test_operator, + STATE(1777), 1, aux_sym__literal_repeat1, - ACTIONS(8567), 2, + ACTIONS(8086), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8579), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8593), 2, + ACTIONS(8112), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3604), 2, + ACTIONS(9040), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(820), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5045), 9, + STATE(2324), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -243127,52 +246156,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [195157] = 21, + [198841] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3729), 1, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3731), 1, + ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(3733), 1, - sym__special_character, - ACTIONS(3735), 1, + ACTIONS(307), 1, anon_sym_DQUOTE, - ACTIONS(3737), 1, + ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(3739), 1, + ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(3741), 1, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3743), 1, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3745), 1, - anon_sym_BQUOTE, - ACTIONS(3747), 1, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3753), 1, - sym_test_operator, - ACTIONS(3755), 1, + ACTIONS(327), 1, sym__brace_start, - ACTIONS(8734), 1, - aux_sym_heredoc_redirect_token1, - STATE(3571), 1, - aux_sym__heredoc_command, - STATE(5351), 1, - aux_sym__literal_repeat1, - STATE(5456), 1, - sym_concatenation, - ACTIONS(3715), 2, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + ACTIONS(8854), 1, + sym_word, + ACTIONS(8862), 1, + sym_test_operator, + ACTIONS(9060), 1, + anon_sym_RBRACK, + ACTIONS(288), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3749), 2, + ACTIONS(323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3713), 3, + ACTIONS(8858), 2, + sym__special_character, + sym__comment_word, + ACTIONS(8860), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(5062), 9, + STATE(2670), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -243182,52 +246208,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [195233] = 21, + [198912] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, - sym_word, - ACTIONS(8571), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8573), 1, + ACTIONS(3034), 1, anon_sym_DOLLAR, - ACTIONS(8575), 1, - sym__special_character, - ACTIONS(8577), 1, - anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(3038), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(3040), 1, aux_sym_number_token2, - ACTIONS(8585), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(3044), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(3054), 1, + sym__brace_start, + ACTIONS(4434), 1, + sym_word, + ACTIONS(4438), 1, + sym_test_operator, + ACTIONS(8892), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8896), 1, + anon_sym_DQUOTE, + ACTIONS(8900), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8902), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8904), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_test_operator, - ACTIONS(8597), 1, - sym__brace_start, - ACTIONS(8736), 1, - anon_sym_RPAREN, - STATE(5365), 1, + ACTIONS(9054), 1, + sym__special_character, + STATE(2006), 1, aux_sym__literal_repeat1, - ACTIONS(8567), 2, + ACTIONS(8890), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8579), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8593), 2, + ACTIONS(8906), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3595), 2, + ACTIONS(9056), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(835), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5045), 9, + STATE(2361), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -243237,52 +246261,51 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [195309] = 21, + [198985] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(1494), 1, + anon_sym_DOLLAR, + ACTIONS(1500), 1, + aux_sym_number_token1, + ACTIONS(1502), 1, + aux_sym_number_token2, + ACTIONS(1506), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1518), 1, + sym__brace_start, + ACTIONS(9062), 1, sym_word, - ACTIONS(8571), 1, + ACTIONS(9066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8573), 1, - anon_sym_DOLLAR, - ACTIONS(8575), 1, + ACTIONS(9068), 1, sym__special_character, - ACTIONS(8577), 1, + ACTIONS(9070), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, - aux_sym_number_token1, - ACTIONS(8583), 1, - aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9074), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9076), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9078), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(9082), 1, sym_test_operator, - ACTIONS(8597), 1, - sym__brace_start, - ACTIONS(8738), 1, - anon_sym_RPAREN, - STATE(5365), 1, + ACTIONS(9084), 1, + sym_regex, + STATE(1372), 1, aux_sym__literal_repeat1, - ACTIONS(8567), 2, + STATE(1621), 1, + sym_concatenation, + ACTIONS(9064), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8579), 2, + ACTIONS(9072), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8593), 2, + ACTIONS(9080), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3587), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5045), 9, + STATE(1103), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -243292,52 +246315,102 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [195385] = 21, - ACTIONS(71), 1, + [199060] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(8565), 1, - sym_word, - ACTIONS(8571), 1, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8573), 1, + ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(8575), 1, - sym__special_character, - ACTIONS(8577), 1, + ACTIONS(307), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, - anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(327), 1, + sym__brace_start, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + ACTIONS(8854), 1, + sym_word, + ACTIONS(8862), 1, sym_test_operator, - ACTIONS(8597), 1, + ACTIONS(9086), 1, + anon_sym_RBRACK, + ACTIONS(288), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(323), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8858), 2, + sym__special_character, + sym__comment_word, + ACTIONS(8860), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2670), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [199131] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3732), 1, + sym_word, + ACTIONS(3738), 1, + anon_sym_DOLLAR, + ACTIONS(3742), 1, + aux_sym_number_token1, + ACTIONS(3744), 1, + aux_sym_number_token2, + ACTIONS(3748), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3756), 1, + sym_test_operator, + ACTIONS(3758), 1, sym__brace_start, - ACTIONS(8740), 1, - anon_sym_RPAREN, - STATE(5365), 1, + ACTIONS(8838), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8840), 1, + sym__special_character, + ACTIONS(8842), 1, + anon_sym_DQUOTE, + ACTIONS(8846), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8848), 1, + anon_sym_BQUOTE, + ACTIONS(8850), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2287), 1, aux_sym__literal_repeat1, - ACTIONS(8567), 2, + ACTIONS(8836), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8579), 2, + ACTIONS(8844), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8593), 2, + ACTIONS(8852), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3588), 2, + STATE(750), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5045), 9, + STATE(1780), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -243347,52 +246420,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [195461] = 21, + [199204] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, - sym_word, - ACTIONS(8571), 1, + ACTIONS(8090), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8573), 1, + ACTIONS(8092), 1, anon_sym_DOLLAR, - ACTIONS(8575), 1, - sym__special_character, - ACTIONS(8577), 1, + ACTIONS(8096), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8100), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8102), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8104), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8106), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8108), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8110), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_test_operator, - ACTIONS(8597), 1, + ACTIONS(8120), 1, sym__brace_start, - ACTIONS(8742), 1, - anon_sym_RPAREN, - STATE(5365), 1, + ACTIONS(8476), 1, + sym__special_character, + ACTIONS(9044), 1, + sym_word, + ACTIONS(9048), 1, + sym_test_operator, + STATE(1777), 1, aux_sym__literal_repeat1, - ACTIONS(8567), 2, + ACTIONS(8086), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8579), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8593), 2, + ACTIONS(8112), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3604), 2, + ACTIONS(9046), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(640), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5045), 9, + STATE(1415), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -243402,52 +246473,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [195537] = 21, + [199277] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3729), 1, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3731), 1, + ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(3733), 1, - sym__special_character, - ACTIONS(3735), 1, + ACTIONS(307), 1, anon_sym_DQUOTE, - ACTIONS(3737), 1, + ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(3739), 1, + ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(3741), 1, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3743), 1, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3745), 1, - anon_sym_BQUOTE, - ACTIONS(3747), 1, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3753), 1, - sym_test_operator, - ACTIONS(3755), 1, + ACTIONS(327), 1, sym__brace_start, - ACTIONS(8744), 1, - aux_sym_heredoc_redirect_token1, - STATE(3571), 1, - aux_sym__heredoc_command, - STATE(5351), 1, - aux_sym__literal_repeat1, - STATE(5456), 1, - sym_concatenation, - ACTIONS(3715), 2, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + ACTIONS(8854), 1, + sym_word, + ACTIONS(8862), 1, + sym_test_operator, + ACTIONS(9088), 1, + anon_sym_RBRACK, + ACTIONS(288), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3749), 2, + ACTIONS(323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3713), 3, + ACTIONS(8858), 2, + sym__special_character, + sym__comment_word, + ACTIONS(8860), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(5062), 9, + STATE(2670), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -243457,131 +246525,103 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [195613] = 3, + [199348] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(5770), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(5189), 1, + sym_word, + ACTIONS(5193), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5195), 1, anon_sym_DOLLAR, + ACTIONS(5197), 1, + sym__special_character, + ACTIONS(5199), 1, + anon_sym_DQUOTE, + ACTIONS(5203), 1, aux_sym_number_token1, + ACTIONS(5205), 1, aux_sym_number_token2, + ACTIONS(5207), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5209), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5772), 22, - sym_file_descriptor, - sym_variable_name, + ACTIONS(5211), 1, + anon_sym_BQUOTE, + ACTIONS(5213), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5217), 1, sym_test_operator, + ACTIONS(5219), 1, sym__brace_start, + STATE(3035), 1, + aux_sym__literal_repeat1, + ACTIONS(5191), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(5201), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(5215), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [195653] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1241), 1, - sym_file_descriptor, - ACTIONS(8694), 1, - anon_sym_DQUOTE, - ACTIONS(8698), 1, - sym_variable_name, - STATE(5487), 1, + STATE(1068), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2664), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(8696), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(8692), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 17, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [195703] = 21, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [199421] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(5189), 1, sym_word, - ACTIONS(8571), 1, + ACTIONS(5193), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8573), 1, + ACTIONS(5195), 1, anon_sym_DOLLAR, - ACTIONS(8575), 1, + ACTIONS(5197), 1, sym__special_character, - ACTIONS(8577), 1, + ACTIONS(5199), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(5203), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(5205), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(5207), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(5209), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(5211), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(5213), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(5217), 1, sym_test_operator, - ACTIONS(8597), 1, + ACTIONS(5219), 1, sym__brace_start, - ACTIONS(8746), 1, - anon_sym_RPAREN, - STATE(5365), 1, + STATE(3035), 1, aux_sym__literal_repeat1, - ACTIONS(8567), 2, + ACTIONS(5191), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8579), 2, + ACTIONS(5201), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8593), 2, + ACTIONS(5215), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3576), 2, + STATE(1070), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5045), 9, + STATE(2664), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -243591,131 +246631,156 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [195779] = 8, - ACTIONS(3), 1, + [199494] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1241), 1, - sym_file_descriptor, - ACTIONS(4084), 1, + ACTIONS(3992), 1, + sym_word, + ACTIONS(3998), 1, + anon_sym_DOLLAR, + ACTIONS(4002), 1, + aux_sym_number_token1, + ACTIONS(4004), 1, + aux_sym_number_token2, + ACTIONS(4008), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4016), 1, + sym_test_operator, + ACTIONS(4018), 1, + sym__brace_start, + ACTIONS(8820), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8824), 1, anon_sym_DQUOTE, - ACTIONS(7613), 1, - sym_variable_name, - STATE(4606), 1, + ACTIONS(8828), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8830), 1, + anon_sym_BQUOTE, + ACTIONS(8832), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9090), 1, + sym__special_character, + STATE(2307), 1, + aux_sym__literal_repeat1, + ACTIONS(8818), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8834), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9092), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(762), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1836), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(7611), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7609), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 17, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [195829] = 3, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [199567] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(5373), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(2685), 1, + sym_word, + ACTIONS(2691), 1, anon_sym_DOLLAR, + ACTIONS(2697), 1, aux_sym_number_token1, + ACTIONS(2699), 1, aux_sym_number_token2, + ACTIONS(2703), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5375), 22, - sym_file_descriptor, - sym_variable_name, + ACTIONS(2711), 1, sym_test_operator, + ACTIONS(2713), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9096), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(9098), 1, sym__special_character, + ACTIONS(9100), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(9104), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(9106), 1, anon_sym_BQUOTE, + ACTIONS(9108), 1, anon_sym_DOLLAR_BQUOTE, + STATE(1902), 1, + aux_sym__literal_repeat1, + ACTIONS(9094), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9102), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(9110), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [195869] = 21, + STATE(619), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1388), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [199640] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(2685), 1, sym_word, - ACTIONS(8571), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8573), 1, + ACTIONS(2691), 1, anon_sym_DOLLAR, - ACTIONS(8575), 1, - sym__special_character, - ACTIONS(8577), 1, - anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(2697), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(2699), 1, aux_sym_number_token2, - ACTIONS(8585), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(2703), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, - anon_sym_BQUOTE, - ACTIONS(8591), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(2711), 1, sym_test_operator, - ACTIONS(8597), 1, + ACTIONS(2713), 1, sym__brace_start, - ACTIONS(8748), 1, - anon_sym_RPAREN, - STATE(5365), 1, + ACTIONS(9096), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9098), 1, + sym__special_character, + ACTIONS(9100), 1, + anon_sym_DQUOTE, + ACTIONS(9104), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9106), 1, + anon_sym_BQUOTE, + ACTIONS(9108), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(1902), 1, aux_sym__literal_repeat1, - ACTIONS(8567), 2, + ACTIONS(9094), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8579), 2, + ACTIONS(9102), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8593), 2, + ACTIONS(9110), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3606), 2, + STATE(620), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5045), 9, + STATE(1388), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -243725,52 +246790,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [195945] = 21, + [199713] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3729), 1, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3731), 1, + ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(3733), 1, - sym__special_character, - ACTIONS(3735), 1, + ACTIONS(307), 1, anon_sym_DQUOTE, - ACTIONS(3737), 1, + ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(3739), 1, + ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(3741), 1, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3743), 1, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3745), 1, - anon_sym_BQUOTE, - ACTIONS(3747), 1, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3753), 1, - sym_test_operator, - ACTIONS(3755), 1, + ACTIONS(327), 1, sym__brace_start, - ACTIONS(8750), 1, - aux_sym_heredoc_redirect_token1, - STATE(3571), 1, - aux_sym__heredoc_command, - STATE(5351), 1, - aux_sym__literal_repeat1, - STATE(5456), 1, - sym_concatenation, - ACTIONS(3715), 2, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + ACTIONS(8854), 1, + sym_word, + ACTIONS(8862), 1, + sym_test_operator, + ACTIONS(9112), 1, + anon_sym_RBRACK, + ACTIONS(288), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3749), 2, + ACTIONS(323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3713), 3, + ACTIONS(8858), 2, + sym__special_character, + sym__comment_word, + ACTIONS(8860), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(5062), 9, + STATE(2670), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -243780,52 +246842,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [196021] = 21, + [199784] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(2216), 1, - anon_sym_RPAREN, - ACTIONS(8752), 1, - sym_word, - ACTIONS(8758), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8761), 1, + ACTIONS(3034), 1, anon_sym_DOLLAR, - ACTIONS(8764), 1, - sym__special_character, - ACTIONS(8767), 1, - anon_sym_DQUOTE, - ACTIONS(8773), 1, + ACTIONS(3038), 1, aux_sym_number_token1, - ACTIONS(8776), 1, + ACTIONS(3040), 1, aux_sym_number_token2, - ACTIONS(8779), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8782), 1, + ACTIONS(3044), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8785), 1, + ACTIONS(3054), 1, + sym__brace_start, + ACTIONS(3694), 1, + sym_word, + ACTIONS(3698), 1, + sym_test_operator, + ACTIONS(8892), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8896), 1, + anon_sym_DQUOTE, + ACTIONS(8900), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8902), 1, anon_sym_BQUOTE, - ACTIONS(8788), 1, + ACTIONS(8904), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8794), 1, - sym_test_operator, - ACTIONS(8797), 1, - sym__brace_start, - STATE(5365), 1, + ACTIONS(9050), 1, + sym__special_character, + STATE(2006), 1, aux_sym__literal_repeat1, - ACTIONS(8755), 2, + ACTIONS(8890), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8770), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8791), 2, + ACTIONS(8906), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3604), 2, + ACTIONS(9052), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(743), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5045), 9, + STATE(1858), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -243835,52 +246895,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [196097] = 21, - ACTIONS(3), 1, + [199857] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3729), 1, + ACTIONS(8950), 1, + sym_word, + ACTIONS(8954), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3731), 1, + ACTIONS(8956), 1, anon_sym_DOLLAR, - ACTIONS(3733), 1, + ACTIONS(8958), 1, sym__special_character, - ACTIONS(3735), 1, + ACTIONS(8960), 1, anon_sym_DQUOTE, - ACTIONS(3737), 1, + ACTIONS(8964), 1, aux_sym_number_token1, - ACTIONS(3739), 1, + ACTIONS(8966), 1, aux_sym_number_token2, - ACTIONS(3741), 1, + ACTIONS(8968), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3743), 1, + ACTIONS(8970), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3745), 1, + ACTIONS(8972), 1, anon_sym_BQUOTE, - ACTIONS(3747), 1, + ACTIONS(8974), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3753), 1, + ACTIONS(8978), 1, sym_test_operator, - ACTIONS(3755), 1, + ACTIONS(8980), 1, sym__brace_start, - ACTIONS(8800), 1, - aux_sym_heredoc_redirect_token1, - STATE(3571), 1, - aux_sym__heredoc_command, - STATE(5351), 1, + STATE(2560), 1, aux_sym__literal_repeat1, - STATE(5456), 1, - sym_concatenation, - ACTIONS(3715), 2, + ACTIONS(8952), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3749), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3713), 3, + ACTIONS(8962), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(5062), 9, + ACTIONS(8976), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(812), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2302), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -243890,52 +246948,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [196173] = 21, + [199930] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(2317), 1, sym_word, - ACTIONS(8571), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8573), 1, + ACTIONS(2323), 1, anon_sym_DOLLAR, - ACTIONS(8575), 1, - sym__special_character, - ACTIONS(8577), 1, - anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(2327), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(2329), 1, aux_sym_number_token2, - ACTIONS(8585), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(2333), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, - anon_sym_BQUOTE, - ACTIONS(8591), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(2341), 1, sym_test_operator, - ACTIONS(8597), 1, + ACTIONS(2343), 1, sym__brace_start, - ACTIONS(8802), 1, - anon_sym_RPAREN, - STATE(5365), 1, + ACTIONS(9116), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9118), 1, + sym__special_character, + ACTIONS(9120), 1, + anon_sym_DQUOTE, + ACTIONS(9124), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9126), 1, + anon_sym_BQUOTE, + ACTIONS(9128), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(1522), 1, aux_sym__literal_repeat1, - ACTIONS(8567), 2, + ACTIONS(9114), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8579), 2, + ACTIONS(9122), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8593), 2, + ACTIONS(9130), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3604), 2, + STATE(596), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5045), 9, + STATE(1178), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -243945,94 +247001,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [196249] = 8, - ACTIONS(3), 1, + [200003] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1241), 1, - sym_file_descriptor, - ACTIONS(7673), 1, - anon_sym_DQUOTE, - ACTIONS(7677), 1, - sym_variable_name, - STATE(4393), 1, - sym_string, - ACTIONS(7675), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7671), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(2317), 1, + sym_word, + ACTIONS(2323), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 17, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [196299] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3729), 1, + ACTIONS(2327), 1, + aux_sym_number_token1, + ACTIONS(2329), 1, + aux_sym_number_token2, + ACTIONS(2333), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2341), 1, + sym_test_operator, + ACTIONS(2343), 1, + sym__brace_start, + ACTIONS(9116), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3731), 1, - anon_sym_DOLLAR, - ACTIONS(3733), 1, + ACTIONS(9118), 1, sym__special_character, - ACTIONS(3735), 1, + ACTIONS(9120), 1, anon_sym_DQUOTE, - ACTIONS(3737), 1, - aux_sym_number_token1, - ACTIONS(3739), 1, - aux_sym_number_token2, - ACTIONS(3741), 1, + ACTIONS(9124), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3743), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3745), 1, + ACTIONS(9126), 1, anon_sym_BQUOTE, - ACTIONS(3747), 1, + ACTIONS(9128), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3753), 1, - sym_test_operator, - ACTIONS(3755), 1, - sym__brace_start, - ACTIONS(8804), 1, - aux_sym_heredoc_redirect_token1, - STATE(3571), 1, - aux_sym__heredoc_command, - STATE(5351), 1, + STATE(1522), 1, aux_sym__literal_repeat1, - STATE(5456), 1, - sym_concatenation, - ACTIONS(3715), 2, + ACTIONS(9114), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3749), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3713), 3, + ACTIONS(9122), 2, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(5062), 9, + ACTIONS(9130), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(597), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1178), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -244042,52 +247054,102 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [196375] = 21, + [200076] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(6488), 1, + ACTIONS(3668), 1, anon_sym_DOLLAR, - ACTIONS(6494), 1, + ACTIONS(3674), 1, aux_sym_number_token1, - ACTIONS(6496), 1, + ACTIONS(3676), 1, aux_sym_number_token2, - ACTIONS(6500), 1, + ACTIONS(3680), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, - sym_extglob_pattern, - ACTIONS(6512), 1, + ACTIONS(3692), 1, sym__brace_start, - ACTIONS(7226), 1, + ACTIONS(7751), 1, + sym_word, + ACTIONS(7759), 1, + sym_test_operator, + ACTIONS(8984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8986), 1, + sym__special_character, + ACTIONS(8988), 1, + anon_sym_DQUOTE, + ACTIONS(8992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8994), 1, + anon_sym_BQUOTE, + ACTIONS(8996), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(4920), 1, + aux_sym__literal_repeat1, + ACTIONS(8982), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8990), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8998), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3456), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(4539), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [200149] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7228), 1, - sym__special_character, - ACTIONS(7230), 1, + ACTIONS(303), 1, + anon_sym_DOLLAR, + ACTIONS(307), 1, anon_sym_DQUOTE, - ACTIONS(7234), 1, + ACTIONS(311), 1, + aux_sym_number_token1, + ACTIONS(313), 1, + aux_sym_number_token2, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, - anon_sym_BQUOTE, - ACTIONS(7238), 1, + ACTIONS(317), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8806), 1, + ACTIONS(327), 1, + sym__brace_start, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + ACTIONS(8854), 1, sym_word, - ACTIONS(8810), 1, + ACTIONS(8862), 1, sym_test_operator, - STATE(6415), 1, - aux_sym__literal_repeat1, - ACTIONS(7224), 2, + ACTIONS(9132), 1, + anon_sym_RBRACK, + ACTIONS(288), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7240), 2, + ACTIONS(323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8808), 2, + ACTIONS(8858), 2, + sym__special_character, + sym__comment_word, + ACTIONS(8860), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(6569), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6302), 9, + STATE(2670), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -244097,52 +247159,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [196451] = 21, + [200220] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, - sym_word, - ACTIONS(8571), 1, + ACTIONS(8414), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8573), 1, + ACTIONS(8416), 1, anon_sym_DOLLAR, - ACTIONS(8575), 1, + ACTIONS(8418), 1, sym__special_character, - ACTIONS(8577), 1, + ACTIONS(8420), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8424), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8426), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8428), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8430), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8432), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8434), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_test_operator, - ACTIONS(8597), 1, + ACTIONS(8444), 1, sym__brace_start, - ACTIONS(8812), 1, - anon_sym_RPAREN, - STATE(5365), 1, + ACTIONS(9134), 1, + sym_word, + ACTIONS(9138), 1, + sym_test_operator, + STATE(1775), 1, aux_sym__literal_repeat1, - ACTIONS(8567), 2, + ACTIONS(8410), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8579), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8593), 2, + ACTIONS(8436), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3604), 2, + ACTIONS(9136), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(644), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5045), 9, + STATE(1329), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -244152,52 +247212,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [196527] = 21, + [200293] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, - sym_word, - ACTIONS(8571), 1, + ACTIONS(8414), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8573), 1, + ACTIONS(8416), 1, anon_sym_DOLLAR, - ACTIONS(8575), 1, + ACTIONS(8418), 1, sym__special_character, - ACTIONS(8577), 1, + ACTIONS(8420), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(8424), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(8426), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(8428), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(8430), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(8432), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(8434), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, - sym_test_operator, - ACTIONS(8597), 1, + ACTIONS(8444), 1, sym__brace_start, - ACTIONS(8814), 1, - anon_sym_RPAREN, - STATE(5365), 1, + ACTIONS(9134), 1, + sym_word, + ACTIONS(9138), 1, + sym_test_operator, + STATE(1775), 1, aux_sym__literal_repeat1, - ACTIONS(8567), 2, + ACTIONS(8410), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8579), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8593), 2, + ACTIONS(8436), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3610), 2, + ACTIONS(9136), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(635), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5045), 9, + STATE(1329), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -244207,94 +247265,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [196603] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 1, - sym_file_descriptor, - ACTIONS(4084), 1, - anon_sym_DQUOTE, - ACTIONS(7613), 1, - sym_variable_name, - STATE(4606), 1, - sym_string, - ACTIONS(7611), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7609), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 17, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [196653] = 21, + [200366] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8565), 1, + ACTIONS(4771), 1, sym_word, - ACTIONS(8571), 1, + ACTIONS(4775), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8573), 1, + ACTIONS(4777), 1, anon_sym_DOLLAR, - ACTIONS(8575), 1, - sym__special_character, - ACTIONS(8577), 1, + ACTIONS(4781), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(4785), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(4787), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(4789), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(4791), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(4793), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(4795), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8595), 1, + ACTIONS(4799), 1, sym_test_operator, - ACTIONS(8597), 1, + ACTIONS(4801), 1, sym__brace_start, - ACTIONS(8816), 1, - anon_sym_RPAREN, - STATE(5365), 1, + ACTIONS(9140), 1, + sym__special_character, + STATE(2891), 1, aux_sym__literal_repeat1, - ACTIONS(8567), 2, + ACTIONS(4773), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8579), 2, + ACTIONS(4783), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8593), 2, + ACTIONS(4797), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3604), 2, + STATE(959), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5045), 9, + STATE(2482), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -244304,50 +247318,51 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [196729] = 20, + [200439] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3731), 1, + ACTIONS(1454), 1, anon_sym_DOLLAR, - ACTIONS(3737), 1, + ACTIONS(1460), 1, aux_sym_number_token1, - ACTIONS(3739), 1, + ACTIONS(1462), 1, aux_sym_number_token2, - ACTIONS(3743), 1, + ACTIONS(1466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3755), 1, + ACTIONS(1478), 1, sym__brace_start, - ACTIONS(7759), 1, + ACTIONS(9142), 1, sym_word, - ACTIONS(7767), 1, - sym_test_operator, - ACTIONS(8820), 1, + ACTIONS(9146), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8822), 1, + ACTIONS(9148), 1, sym__special_character, - ACTIONS(8824), 1, + ACTIONS(9150), 1, anon_sym_DQUOTE, - ACTIONS(8828), 1, + ACTIONS(9154), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8830), 1, + ACTIONS(9156), 1, anon_sym_BQUOTE, - ACTIONS(8832), 1, + ACTIONS(9158), 1, anon_sym_DOLLAR_BQUOTE, - STATE(4975), 1, + ACTIONS(9162), 1, + sym_test_operator, + ACTIONS(9164), 1, + sym_regex, + STATE(1288), 1, aux_sym__literal_repeat1, - ACTIONS(8818), 2, + STATE(1429), 1, + sym_concatenation, + ACTIONS(9144), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8826), 2, + ACTIONS(9152), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8834), 2, + ACTIONS(9160), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3484), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4460), 9, + STATE(901), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -244357,101 +247372,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [196802] = 19, - ACTIONS(3), 1, + [200514] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(363), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, + ACTIONS(3034), 1, anon_sym_DOLLAR, - ACTIONS(371), 1, - anon_sym_DQUOTE, - ACTIONS(375), 1, + ACTIONS(3038), 1, aux_sym_number_token1, - ACTIONS(377), 1, + ACTIONS(3040), 1, aux_sym_number_token2, - ACTIONS(379), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, + ACTIONS(3044), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, + ACTIONS(3054), 1, sym__brace_start, - ACTIONS(5809), 1, - anon_sym_BQUOTE, - ACTIONS(8836), 1, + ACTIONS(3694), 1, sym_word, - ACTIONS(8838), 1, - anon_sym_RBRACK, - ACTIONS(8844), 1, + ACTIONS(3698), 1, sym_test_operator, - ACTIONS(352), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8840), 2, - sym__special_character, - sym__comment_word, - ACTIONS(8842), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2730), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [196873] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(363), 1, + ACTIONS(8892), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, - anon_sym_DOLLAR, - ACTIONS(371), 1, + ACTIONS(8896), 1, anon_sym_DQUOTE, - ACTIONS(375), 1, - aux_sym_number_token1, - ACTIONS(377), 1, - aux_sym_number_token2, - ACTIONS(379), 1, + ACTIONS(8900), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, - sym__brace_start, - ACTIONS(5809), 1, + ACTIONS(8902), 1, anon_sym_BQUOTE, - ACTIONS(8836), 1, - sym_word, - ACTIONS(8844), 1, - sym_test_operator, - ACTIONS(8846), 1, - anon_sym_RBRACK, - ACTIONS(352), 2, + ACTIONS(8904), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9050), 1, + sym__special_character, + STATE(2006), 1, + aux_sym__literal_repeat1, + ACTIONS(8890), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, + ACTIONS(8906), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8840), 2, - sym__special_character, - sym__comment_word, - ACTIONS(8842), 3, - sym__bare_dollar, + ACTIONS(9052), 2, sym_raw_string, sym_ansi_c_string, - STATE(2730), 9, + STATE(744), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1858), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -244461,50 +247425,51 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [196944] = 20, + [200587] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3731), 1, + ACTIONS(1494), 1, anon_sym_DOLLAR, - ACTIONS(3737), 1, + ACTIONS(1500), 1, aux_sym_number_token1, - ACTIONS(3739), 1, + ACTIONS(1502), 1, aux_sym_number_token2, - ACTIONS(3743), 1, + ACTIONS(1506), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3755), 1, + ACTIONS(1518), 1, sym__brace_start, - ACTIONS(7759), 1, - sym_word, - ACTIONS(7767), 1, - sym_test_operator, - ACTIONS(8820), 1, + ACTIONS(9066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8822), 1, - sym__special_character, - ACTIONS(8824), 1, + ACTIONS(9070), 1, anon_sym_DQUOTE, - ACTIONS(8828), 1, + ACTIONS(9074), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8830), 1, + ACTIONS(9076), 1, anon_sym_BQUOTE, - ACTIONS(8832), 1, + ACTIONS(9078), 1, anon_sym_DOLLAR_BQUOTE, - STATE(4975), 1, + ACTIONS(9084), 1, + sym_regex, + ACTIONS(9166), 1, + sym_word, + ACTIONS(9168), 1, + sym__special_character, + ACTIONS(9172), 1, + sym_test_operator, + STATE(1372), 1, aux_sym__literal_repeat1, - ACTIONS(8818), 2, + STATE(1621), 1, + sym_concatenation, + ACTIONS(9064), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8826), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8834), 2, + ACTIONS(9080), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3460), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4460), 9, + ACTIONS(9170), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1923), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -244514,50 +247479,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [197017] = 20, + [200662] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3612), 1, + ACTIONS(3159), 1, + sym_word, + ACTIONS(3165), 1, anon_sym_DOLLAR, - ACTIONS(3616), 1, + ACTIONS(3171), 1, aux_sym_number_token1, - ACTIONS(3618), 1, + ACTIONS(3173), 1, aux_sym_number_token2, - ACTIONS(3622), 1, + ACTIONS(3177), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3632), 1, - sym__brace_start, - ACTIONS(4975), 1, - sym_word, - ACTIONS(4979), 1, + ACTIONS(3185), 1, sym_test_operator, - ACTIONS(8850), 1, + ACTIONS(3187), 1, + sym__brace_start, + ACTIONS(9176), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8852), 1, + ACTIONS(9178), 1, sym__special_character, - ACTIONS(8854), 1, + ACTIONS(9180), 1, anon_sym_DQUOTE, - ACTIONS(8858), 1, + ACTIONS(9184), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8860), 1, + ACTIONS(9186), 1, anon_sym_BQUOTE, - ACTIONS(8862), 1, + ACTIONS(9188), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2270), 1, + STATE(1945), 1, aux_sym__literal_repeat1, - ACTIONS(8848), 2, + ACTIONS(9174), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8856), 2, + ACTIONS(9182), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8864), 2, + ACTIONS(9190), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(972), 2, + STATE(686), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2572), 9, + STATE(1574), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -244567,92 +247532,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [197090] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1241), 1, - sym_file_descriptor, - ACTIONS(8868), 1, - anon_sym_DQUOTE, - ACTIONS(8872), 1, - sym_variable_name, - STATE(5409), 1, - sym_string, - ACTIONS(8870), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(8866), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [197139] = 21, + [200735] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(1454), 1, - anon_sym_DOLLAR, - ACTIONS(1460), 1, - aux_sym_number_token1, - ACTIONS(1462), 1, - aux_sym_number_token2, - ACTIONS(1466), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1478), 1, - sym__brace_start, - ACTIONS(8874), 1, - sym_word, - ACTIONS(8878), 1, + ACTIONS(8488), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8880), 1, + ACTIONS(8490), 1, + anon_sym_DOLLAR, + ACTIONS(8492), 1, sym__special_character, - ACTIONS(8882), 1, + ACTIONS(8494), 1, anon_sym_DQUOTE, - ACTIONS(8886), 1, + ACTIONS(8498), 1, + aux_sym_number_token1, + ACTIONS(8500), 1, + aux_sym_number_token2, + ACTIONS(8502), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8888), 1, + ACTIONS(8504), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8506), 1, anon_sym_BQUOTE, - ACTIONS(8890), 1, + ACTIONS(8508), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8894), 1, + ACTIONS(8518), 1, + sym__brace_start, + ACTIONS(9192), 1, + sym_word, + ACTIONS(9196), 1, sym_test_operator, - ACTIONS(8896), 1, - sym_regex, - STATE(1180), 1, + STATE(1539), 1, aux_sym__literal_repeat1, - STATE(1346), 1, - sym_concatenation, - ACTIONS(8876), 2, + ACTIONS(8484), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8884), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8892), 2, + ACTIONS(8510), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1000), 9, + ACTIONS(9194), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(598), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1191), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -244662,50 +247585,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [197214] = 20, + [200808] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8102), 1, + ACTIONS(8338), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8104), 1, + ACTIONS(8340), 1, anon_sym_DOLLAR, - ACTIONS(8106), 1, + ACTIONS(8342), 1, sym__special_character, - ACTIONS(8108), 1, + ACTIONS(8344), 1, anon_sym_DQUOTE, - ACTIONS(8112), 1, + ACTIONS(8348), 1, aux_sym_number_token1, - ACTIONS(8114), 1, + ACTIONS(8350), 1, aux_sym_number_token2, - ACTIONS(8116), 1, + ACTIONS(8352), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8118), 1, + ACTIONS(8354), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8120), 1, + ACTIONS(8356), 1, anon_sym_BQUOTE, - ACTIONS(8122), 1, + ACTIONS(8358), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8132), 1, + ACTIONS(8368), 1, sym__brace_start, - ACTIONS(8898), 1, + ACTIONS(9000), 1, sym_word, - ACTIONS(8902), 1, + ACTIONS(9004), 1, sym_test_operator, - STATE(1474), 1, + STATE(3542), 1, aux_sym__literal_repeat1, - ACTIONS(8098), 2, + ACTIONS(8334), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8124), 2, + ACTIONS(8360), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8900), 2, + ACTIONS(9002), 2, sym_raw_string, sym_ansi_c_string, - STATE(573), 2, + STATE(1862), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1158), 9, + STATE(3476), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -244715,50 +247638,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [197287] = 20, + [200881] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8102), 1, + ACTIONS(8488), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8104), 1, + ACTIONS(8490), 1, anon_sym_DOLLAR, - ACTIONS(8106), 1, + ACTIONS(8492), 1, sym__special_character, - ACTIONS(8108), 1, + ACTIONS(8494), 1, anon_sym_DQUOTE, - ACTIONS(8112), 1, + ACTIONS(8498), 1, aux_sym_number_token1, - ACTIONS(8114), 1, + ACTIONS(8500), 1, aux_sym_number_token2, - ACTIONS(8116), 1, + ACTIONS(8502), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8118), 1, + ACTIONS(8504), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8120), 1, + ACTIONS(8506), 1, anon_sym_BQUOTE, - ACTIONS(8122), 1, + ACTIONS(8508), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8132), 1, + ACTIONS(8518), 1, sym__brace_start, - ACTIONS(8898), 1, + ACTIONS(9192), 1, sym_word, - ACTIONS(8902), 1, + ACTIONS(9196), 1, sym_test_operator, - STATE(1474), 1, + STATE(1539), 1, aux_sym__literal_repeat1, - ACTIONS(8098), 2, + ACTIONS(8484), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8124), 2, + ACTIONS(8510), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8900), 2, + ACTIONS(9194), 2, sym_raw_string, sym_ansi_c_string, - STATE(575), 2, + STATE(610), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1158), 9, + STATE(1191), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -244768,50 +247691,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [197360] = 20, + [200954] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(4629), 1, + ACTIONS(4924), 1, sym_word, - ACTIONS(4633), 1, + ACTIONS(4928), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4635), 1, + ACTIONS(4930), 1, anon_sym_DOLLAR, - ACTIONS(4637), 1, + ACTIONS(4932), 1, sym__special_character, - ACTIONS(4639), 1, + ACTIONS(4934), 1, anon_sym_DQUOTE, - ACTIONS(4643), 1, + ACTIONS(4938), 1, aux_sym_number_token1, - ACTIONS(4645), 1, + ACTIONS(4940), 1, aux_sym_number_token2, - ACTIONS(4647), 1, + ACTIONS(4942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4649), 1, + ACTIONS(4944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4651), 1, + ACTIONS(4946), 1, anon_sym_BQUOTE, - ACTIONS(4653), 1, + ACTIONS(4948), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4657), 1, + ACTIONS(4952), 1, sym_test_operator, - ACTIONS(4659), 1, + ACTIONS(4954), 1, sym__brace_start, - STATE(2914), 1, + STATE(2818), 1, aux_sym__literal_repeat1, - ACTIONS(4631), 2, + ACTIONS(4926), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4641), 2, + ACTIONS(4936), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4655), 2, + ACTIONS(4950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(897), 2, + STATE(974), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2487), 9, + STATE(2532), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -244821,50 +247744,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [197433] = 20, + [201027] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(4629), 1, + ACTIONS(4924), 1, sym_word, - ACTIONS(4633), 1, + ACTIONS(4928), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4635), 1, + ACTIONS(4930), 1, anon_sym_DOLLAR, - ACTIONS(4637), 1, + ACTIONS(4932), 1, sym__special_character, - ACTIONS(4639), 1, + ACTIONS(4934), 1, anon_sym_DQUOTE, - ACTIONS(4643), 1, + ACTIONS(4938), 1, aux_sym_number_token1, - ACTIONS(4645), 1, + ACTIONS(4940), 1, aux_sym_number_token2, - ACTIONS(4647), 1, + ACTIONS(4942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4649), 1, + ACTIONS(4944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4651), 1, + ACTIONS(4946), 1, anon_sym_BQUOTE, - ACTIONS(4653), 1, + ACTIONS(4948), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4657), 1, + ACTIONS(4952), 1, sym_test_operator, - ACTIONS(4659), 1, + ACTIONS(4954), 1, sym__brace_start, - STATE(2914), 1, + STATE(2818), 1, aux_sym__literal_repeat1, - ACTIONS(4631), 2, + ACTIONS(4926), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4641), 2, + ACTIONS(4936), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(4655), 2, + ACTIONS(4950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(903), 2, + STATE(975), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2487), 9, + STATE(2532), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -244874,50 +247797,91 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [197506] = 20, - ACTIONS(71), 1, + [201100] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(3471), 1, - sym_word, - ACTIONS(3477), 1, + ACTIONS(1235), 1, + sym_file_descriptor, + ACTIONS(9028), 1, + anon_sym_DQUOTE, + ACTIONS(9032), 1, + sym_variable_name, + STATE(5447), 1, + sym_string, + ACTIONS(9030), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(9026), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(3481), 1, - aux_sym_number_token1, - ACTIONS(3483), 1, - aux_sym_number_token2, - ACTIONS(3487), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3495), 1, - sym_test_operator, - ACTIONS(3497), 1, - sym__brace_start, - ACTIONS(8906), 1, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [201149] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8376), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8908), 1, + ACTIONS(8378), 1, + anon_sym_DOLLAR, + ACTIONS(8380), 1, sym__special_character, - ACTIONS(8910), 1, + ACTIONS(8382), 1, anon_sym_DQUOTE, - ACTIONS(8914), 1, + ACTIONS(8386), 1, + aux_sym_number_token1, + ACTIONS(8388), 1, + aux_sym_number_token2, + ACTIONS(8390), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8916), 1, + ACTIONS(8392), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8394), 1, anon_sym_BQUOTE, - ACTIONS(8918), 1, + ACTIONS(8396), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2024), 1, + ACTIONS(8406), 1, + sym__brace_start, + ACTIONS(9198), 1, + sym_word, + ACTIONS(9202), 1, + sym_test_operator, + STATE(2633), 1, aux_sym__literal_repeat1, - ACTIONS(8904), 2, + ACTIONS(8372), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8912), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8920), 2, + ACTIONS(8398), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(705), 2, + ACTIONS(9200), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(882), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1630), 9, + STATE(2362), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -244927,50 +247891,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [197579] = 20, + [201222] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(5108), 1, - sym_word, - ACTIONS(5112), 1, + ACTIONS(8376), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5114), 1, + ACTIONS(8378), 1, anon_sym_DOLLAR, - ACTIONS(5116), 1, + ACTIONS(8380), 1, sym__special_character, - ACTIONS(5118), 1, + ACTIONS(8382), 1, anon_sym_DQUOTE, - ACTIONS(5122), 1, + ACTIONS(8386), 1, aux_sym_number_token1, - ACTIONS(5124), 1, + ACTIONS(8388), 1, aux_sym_number_token2, - ACTIONS(5126), 1, + ACTIONS(8390), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5128), 1, + ACTIONS(8392), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5130), 1, + ACTIONS(8394), 1, anon_sym_BQUOTE, - ACTIONS(5132), 1, + ACTIONS(8396), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5136), 1, - sym_test_operator, - ACTIONS(5138), 1, + ACTIONS(8406), 1, sym__brace_start, - STATE(3114), 1, + ACTIONS(9198), 1, + sym_word, + ACTIONS(9202), 1, + sym_test_operator, + STATE(2633), 1, aux_sym__literal_repeat1, - ACTIONS(5110), 2, + ACTIONS(8372), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5120), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5134), 2, + ACTIONS(8398), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1056), 2, + ACTIONS(9200), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(881), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2613), 9, + STATE(2362), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -244980,50 +247944,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [197652] = 20, - ACTIONS(71), 1, + [201295] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(3471), 1, - sym_word, - ACTIONS(3477), 1, + ACTIONS(299), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(3481), 1, + ACTIONS(307), 1, + anon_sym_DQUOTE, + ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(3483), 1, + ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(3487), 1, + ACTIONS(315), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3495), 1, - sym_test_operator, - ACTIONS(3497), 1, + ACTIONS(321), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(327), 1, sym__brace_start, - ACTIONS(8906), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8908), 1, - sym__special_character, - ACTIONS(8910), 1, - anon_sym_DQUOTE, - ACTIONS(8914), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8916), 1, + ACTIONS(5884), 1, anon_sym_BQUOTE, - ACTIONS(8918), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2024), 1, - aux_sym__literal_repeat1, - ACTIONS(8904), 2, + ACTIONS(8854), 1, + sym_word, + ACTIONS(8862), 1, + sym_test_operator, + ACTIONS(9204), 1, + anon_sym_RBRACK, + ACTIONS(288), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8912), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8920), 2, + ACTIONS(323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(702), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1630), 9, + ACTIONS(8858), 2, + sym__special_character, + sym__comment_word, + ACTIONS(8860), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2670), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -245033,102 +247996,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [197725] = 19, + [201366] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8030), 1, - anon_sym_SLASH, - ACTIONS(8032), 1, - anon_sym_PERCENT, - ACTIONS(8034), 1, - anon_sym_COLON, - ACTIONS(8038), 1, - anon_sym_RBRACE3, - ACTIONS(8040), 1, - anon_sym_AT, - ACTIONS(8042), 1, - anon_sym_STAR2, - ACTIONS(8922), 1, - anon_sym_LBRACK, - STATE(6994), 1, - sym__expansion_operator, - STATE(6995), 1, - sym__expansion_max_length, - STATE(6999), 1, - sym__expansion_regex_removal, - STATE(7000), 1, - sym__expansion_regex_replacement, - STATE(7001), 1, - sym__expansion_regex, - STATE(7002), 1, - sym__expansion_expression, - ACTIONS(8028), 2, - anon_sym_COMMA, - anon_sym_CARET, - ACTIONS(8048), 2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - ACTIONS(8036), 3, - sym__immediate_double_hash, - anon_sym_POUND, - anon_sym_PERCENT_PERCENT, - ACTIONS(8046), 3, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - ACTIONS(8044), 8, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - [197796] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5108), 1, - sym_word, - ACTIONS(5112), 1, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5114), 1, + ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(5116), 1, - sym__special_character, - ACTIONS(5118), 1, + ACTIONS(307), 1, anon_sym_DQUOTE, - ACTIONS(5122), 1, + ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(5124), 1, + ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(5126), 1, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5128), 1, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5130), 1, - anon_sym_BQUOTE, - ACTIONS(5132), 1, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5136), 1, - sym_test_operator, - ACTIONS(5138), 1, + ACTIONS(327), 1, sym__brace_start, - STATE(3114), 1, - aux_sym__literal_repeat1, - ACTIONS(5110), 2, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + ACTIONS(8854), 1, + sym_word, + ACTIONS(8862), 1, + sym_test_operator, + ACTIONS(9206), 1, + anon_sym_RBRACK, + ACTIONS(288), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5120), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5134), 2, + ACTIONS(323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1035), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2613), 9, + ACTIONS(8858), 2, + sym__special_character, + sym__comment_word, + ACTIONS(8860), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2670), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -245138,50 +248048,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [197869] = 20, + [201437] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3397), 1, + ACTIONS(3998), 1, anon_sym_DOLLAR, - ACTIONS(3401), 1, + ACTIONS(4002), 1, aux_sym_number_token1, - ACTIONS(3403), 1, + ACTIONS(4004), 1, aux_sym_number_token2, - ACTIONS(3407), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3417), 1, + ACTIONS(4018), 1, sym__brace_start, - ACTIONS(4484), 1, + ACTIONS(4098), 1, sym_word, - ACTIONS(4488), 1, + ACTIONS(4102), 1, sym_test_operator, - ACTIONS(8926), 1, + ACTIONS(8820), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8928), 1, - sym__special_character, - ACTIONS(8930), 1, + ACTIONS(8824), 1, anon_sym_DQUOTE, - ACTIONS(8934), 1, + ACTIONS(8828), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8936), 1, + ACTIONS(8830), 1, anon_sym_BQUOTE, - ACTIONS(8938), 1, + ACTIONS(8832), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2161), 1, + ACTIONS(9034), 1, + sym__special_character, + STATE(2307), 1, aux_sym__literal_repeat1, - ACTIONS(8924), 2, + ACTIONS(8818), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8932), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8940), 2, + ACTIONS(8834), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(862), 2, + ACTIONS(9036), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(794), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2422), 9, + STATE(2129), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -245191,50 +248101,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [197942] = 20, + [201510] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3612), 1, + ACTIONS(3269), 1, + sym_word, + ACTIONS(3275), 1, anon_sym_DOLLAR, - ACTIONS(3616), 1, + ACTIONS(3281), 1, aux_sym_number_token1, - ACTIONS(3618), 1, + ACTIONS(3283), 1, aux_sym_number_token2, - ACTIONS(3622), 1, + ACTIONS(3287), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3632), 1, - sym__brace_start, - ACTIONS(4975), 1, - sym_word, - ACTIONS(4979), 1, + ACTIONS(3295), 1, sym_test_operator, - ACTIONS(8850), 1, + ACTIONS(3297), 1, + sym__brace_start, + ACTIONS(9210), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8852), 1, + ACTIONS(9212), 1, sym__special_character, - ACTIONS(8854), 1, + ACTIONS(9214), 1, anon_sym_DQUOTE, - ACTIONS(8858), 1, + ACTIONS(9218), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8860), 1, + ACTIONS(9220), 1, anon_sym_BQUOTE, - ACTIONS(8862), 1, + ACTIONS(9222), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2270), 1, + STATE(2234), 1, aux_sym__literal_repeat1, - ACTIONS(8848), 2, + ACTIONS(9208), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8856), 2, + ACTIONS(9216), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8864), 2, + ACTIONS(9224), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(973), 2, + STATE(672), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2572), 9, + STATE(1559), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -245244,50 +248154,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [198015] = 20, + [201583] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(5604), 1, + ACTIONS(3028), 1, sym_word, - ACTIONS(5610), 1, + ACTIONS(3034), 1, anon_sym_DOLLAR, - ACTIONS(5616), 1, + ACTIONS(3038), 1, aux_sym_number_token1, - ACTIONS(5618), 1, + ACTIONS(3040), 1, aux_sym_number_token2, - ACTIONS(5622), 1, + ACTIONS(3044), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5630), 1, + ACTIONS(3052), 1, sym_test_operator, - ACTIONS(5632), 1, + ACTIONS(3054), 1, sym__brace_start, - ACTIONS(8944), 1, + ACTIONS(8892), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8946), 1, + ACTIONS(8894), 1, sym__special_character, - ACTIONS(8948), 1, + ACTIONS(8896), 1, anon_sym_DQUOTE, - ACTIONS(8952), 1, + ACTIONS(8900), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8954), 1, + ACTIONS(8902), 1, anon_sym_BQUOTE, - ACTIONS(8956), 1, + ACTIONS(8904), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3469), 1, + STATE(2006), 1, aux_sym__literal_repeat1, - ACTIONS(8942), 2, + ACTIONS(8890), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8950), 2, + ACTIONS(8898), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8958), 2, + ACTIONS(8906), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1317), 2, + STATE(660), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(3093), 9, + STATE(1578), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -245297,50 +248207,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [198088] = 20, + [201656] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3397), 1, + ACTIONS(3269), 1, + sym_word, + ACTIONS(3275), 1, anon_sym_DOLLAR, - ACTIONS(3401), 1, + ACTIONS(3281), 1, aux_sym_number_token1, - ACTIONS(3403), 1, + ACTIONS(3283), 1, aux_sym_number_token2, - ACTIONS(3407), 1, + ACTIONS(3287), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3417), 1, - sym__brace_start, - ACTIONS(4484), 1, - sym_word, - ACTIONS(4488), 1, + ACTIONS(3295), 1, sym_test_operator, - ACTIONS(8926), 1, + ACTIONS(3297), 1, + sym__brace_start, + ACTIONS(9210), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8928), 1, + ACTIONS(9212), 1, sym__special_character, - ACTIONS(8930), 1, + ACTIONS(9214), 1, anon_sym_DQUOTE, - ACTIONS(8934), 1, + ACTIONS(9218), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8936), 1, + ACTIONS(9220), 1, anon_sym_BQUOTE, - ACTIONS(8938), 1, + ACTIONS(9222), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2161), 1, + STATE(2234), 1, aux_sym__literal_repeat1, - ACTIONS(8924), 2, + ACTIONS(9208), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8932), 2, + ACTIONS(9216), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8940), 2, + ACTIONS(9224), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(863), 2, + STATE(673), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2422), 9, + STATE(1559), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -245350,50 +248260,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [198161] = 20, + [201729] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(5604), 1, - sym_word, - ACTIONS(5610), 1, + ACTIONS(3668), 1, anon_sym_DOLLAR, - ACTIONS(5616), 1, + ACTIONS(3674), 1, aux_sym_number_token1, - ACTIONS(5618), 1, + ACTIONS(3676), 1, aux_sym_number_token2, - ACTIONS(5622), 1, + ACTIONS(3680), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5630), 1, - sym_test_operator, - ACTIONS(5632), 1, + ACTIONS(3692), 1, sym__brace_start, - ACTIONS(8944), 1, + ACTIONS(7751), 1, + sym_word, + ACTIONS(7759), 1, + sym_test_operator, + ACTIONS(8984), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8946), 1, + ACTIONS(8986), 1, sym__special_character, - ACTIONS(8948), 1, + ACTIONS(8988), 1, anon_sym_DQUOTE, - ACTIONS(8952), 1, + ACTIONS(8992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8954), 1, + ACTIONS(8994), 1, anon_sym_BQUOTE, - ACTIONS(8956), 1, + ACTIONS(8996), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3469), 1, + STATE(4920), 1, aux_sym__literal_repeat1, - ACTIONS(8942), 2, + ACTIONS(8982), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8950), 2, + ACTIONS(8990), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8958), 2, + ACTIONS(8998), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1332), 2, + STATE(3486), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(3093), 9, + STATE(4539), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -245403,50 +248313,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [198234] = 20, + [201802] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(2598), 1, + ACTIONS(3159), 1, sym_word, - ACTIONS(2604), 1, + ACTIONS(3165), 1, anon_sym_DOLLAR, - ACTIONS(2610), 1, + ACTIONS(3171), 1, aux_sym_number_token1, - ACTIONS(2612), 1, + ACTIONS(3173), 1, aux_sym_number_token2, - ACTIONS(2616), 1, + ACTIONS(3177), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2624), 1, + ACTIONS(3185), 1, sym_test_operator, - ACTIONS(2626), 1, + ACTIONS(3187), 1, sym__brace_start, - ACTIONS(8962), 1, + ACTIONS(9176), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8964), 1, + ACTIONS(9178), 1, sym__special_character, - ACTIONS(8966), 1, + ACTIONS(9180), 1, anon_sym_DQUOTE, - ACTIONS(8970), 1, + ACTIONS(9184), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8972), 1, + ACTIONS(9186), 1, anon_sym_BQUOTE, - ACTIONS(8974), 1, + ACTIONS(9188), 1, anon_sym_DOLLAR_BQUOTE, - STATE(1803), 1, + STATE(1945), 1, aux_sym__literal_repeat1, - ACTIONS(8960), 2, + ACTIONS(9174), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8968), 2, + ACTIONS(9182), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8976), 2, + ACTIONS(9190), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(657), 2, + STATE(667), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1381), 9, + STATE(1574), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -245456,144 +248366,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [198307] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 1, - sym_file_descriptor, - ACTIONS(8868), 1, - anon_sym_DQUOTE, - ACTIONS(8872), 1, - sym_variable_name, - STATE(5409), 1, - sym_string, - ACTIONS(8870), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(8866), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [198356] = 20, + [201875] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8178), 1, + ACTIONS(4771), 1, + sym_word, + ACTIONS(4775), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8180), 1, + ACTIONS(4777), 1, anon_sym_DOLLAR, - ACTIONS(8184), 1, + ACTIONS(4781), 1, anon_sym_DQUOTE, - ACTIONS(8188), 1, + ACTIONS(4785), 1, aux_sym_number_token1, - ACTIONS(8190), 1, + ACTIONS(4787), 1, aux_sym_number_token2, - ACTIONS(8192), 1, + ACTIONS(4789), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8194), 1, + ACTIONS(4791), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8196), 1, + ACTIONS(4793), 1, anon_sym_BQUOTE, - ACTIONS(8198), 1, + ACTIONS(4795), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8208), 1, - sym__brace_start, - ACTIONS(8220), 1, - sym__special_character, - ACTIONS(8978), 1, - sym_word, - ACTIONS(8982), 1, - sym_test_operator, - STATE(1744), 1, - aux_sym__literal_repeat1, - ACTIONS(8174), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8200), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8980), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(646), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1370), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [198429] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2598), 1, - sym_word, - ACTIONS(2604), 1, - anon_sym_DOLLAR, - ACTIONS(2610), 1, - aux_sym_number_token1, - ACTIONS(2612), 1, - aux_sym_number_token2, - ACTIONS(2616), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2624), 1, + ACTIONS(4799), 1, sym_test_operator, - ACTIONS(2626), 1, + ACTIONS(4801), 1, sym__brace_start, - ACTIONS(8962), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8964), 1, + ACTIONS(9140), 1, sym__special_character, - ACTIONS(8966), 1, - anon_sym_DQUOTE, - ACTIONS(8970), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8972), 1, - anon_sym_BQUOTE, - ACTIONS(8974), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(1803), 1, + STATE(2891), 1, aux_sym__literal_repeat1, - ACTIONS(8960), 2, + ACTIONS(4773), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8968), 2, + ACTIONS(4783), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8976), 2, + ACTIONS(4797), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(616), 2, + STATE(958), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1381), 9, + STATE(2482), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -245603,50 +248419,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [198502] = 20, - ACTIONS(71), 1, + [201948] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(8512), 1, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8514), 1, + ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(8516), 1, - sym__special_character, - ACTIONS(8518), 1, + ACTIONS(307), 1, anon_sym_DQUOTE, - ACTIONS(8522), 1, + ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(8524), 1, + ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(8526), 1, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8528), 1, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8530), 1, - anon_sym_BQUOTE, - ACTIONS(8532), 1, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8542), 1, + ACTIONS(327), 1, sym__brace_start, - ACTIONS(8984), 1, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + ACTIONS(8854), 1, sym_word, - ACTIONS(8988), 1, + ACTIONS(8862), 1, sym_test_operator, - STATE(2671), 1, - aux_sym__literal_repeat1, - ACTIONS(8508), 2, + ACTIONS(9226), 1, + anon_sym_RBRACK, + ACTIONS(288), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8534), 2, + ACTIONS(323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8986), 2, + ACTIONS(8858), 2, + sym__special_character, + sym__comment_word, + ACTIONS(8860), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(858), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2369), 9, + STATE(2670), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -245656,50 +248471,51 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [198575] = 20, + [202019] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8512), 1, + ACTIONS(2653), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8514), 1, + ACTIONS(2655), 1, anon_sym_DOLLAR, - ACTIONS(8516), 1, + ACTIONS(2657), 1, sym__special_character, - ACTIONS(8518), 1, + ACTIONS(2659), 1, anon_sym_DQUOTE, - ACTIONS(8522), 1, + ACTIONS(2663), 1, aux_sym_number_token1, - ACTIONS(8524), 1, + ACTIONS(2665), 1, aux_sym_number_token2, - ACTIONS(8526), 1, + ACTIONS(2667), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8528), 1, + ACTIONS(2669), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8530), 1, + ACTIONS(2671), 1, anon_sym_BQUOTE, - ACTIONS(8532), 1, + ACTIONS(2673), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8542), 1, + ACTIONS(2681), 1, sym__brace_start, - ACTIONS(8984), 1, + ACTIONS(9228), 1, sym_word, - ACTIONS(8988), 1, + ACTIONS(9232), 1, sym_test_operator, - STATE(2671), 1, + ACTIONS(9234), 1, + sym_regex, + STATE(2384), 1, aux_sym__literal_repeat1, - ACTIONS(8508), 2, + STATE(2533), 1, + sym_concatenation, + ACTIONS(2647), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8534), 2, + ACTIONS(2675), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8986), 2, + ACTIONS(9230), 2, sym_raw_string, sym_ansi_c_string, - STATE(870), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2369), 9, + STATE(2200), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -245709,50 +248525,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [198648] = 20, + [202094] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3876), 1, + ACTIONS(3992), 1, sym_word, - ACTIONS(3882), 1, + ACTIONS(3998), 1, anon_sym_DOLLAR, - ACTIONS(3886), 1, + ACTIONS(4002), 1, aux_sym_number_token1, - ACTIONS(3888), 1, + ACTIONS(4004), 1, aux_sym_number_token2, - ACTIONS(3892), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3900), 1, + ACTIONS(4016), 1, sym_test_operator, - ACTIONS(3902), 1, + ACTIONS(4018), 1, sym__brace_start, - ACTIONS(8992), 1, + ACTIONS(8820), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8994), 1, - sym__special_character, - ACTIONS(8996), 1, + ACTIONS(8824), 1, anon_sym_DQUOTE, - ACTIONS(9000), 1, + ACTIONS(8828), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9002), 1, + ACTIONS(8830), 1, anon_sym_BQUOTE, - ACTIONS(9004), 1, + ACTIONS(8832), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2281), 1, + ACTIONS(9090), 1, + sym__special_character, + STATE(2307), 1, aux_sym__literal_repeat1, - ACTIONS(8990), 2, + ACTIONS(8818), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8998), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9006), 2, + ACTIONS(8834), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(757), 2, + ACTIONS(9092), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(766), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1846), 9, + STATE(1836), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -245762,50 +248578,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [198721] = 20, + [202167] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(2329), 1, + ACTIONS(4597), 1, sym_word, - ACTIONS(2335), 1, + ACTIONS(4601), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4603), 1, anon_sym_DOLLAR, - ACTIONS(2341), 1, + ACTIONS(4607), 1, + anon_sym_DQUOTE, + ACTIONS(4611), 1, aux_sym_number_token1, - ACTIONS(2343), 1, + ACTIONS(4613), 1, aux_sym_number_token2, - ACTIONS(2347), 1, + ACTIONS(4615), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4617), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2355), 1, + ACTIONS(4619), 1, + anon_sym_BQUOTE, + ACTIONS(4621), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4625), 1, sym_test_operator, - ACTIONS(2357), 1, + ACTIONS(4627), 1, sym__brace_start, - ACTIONS(9010), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9012), 1, + ACTIONS(8888), 1, sym__special_character, - ACTIONS(9014), 1, - anon_sym_DQUOTE, - ACTIONS(9018), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9020), 1, - anon_sym_BQUOTE, - ACTIONS(9022), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(1658), 1, + STATE(2607), 1, aux_sym__literal_repeat1, - ACTIONS(9008), 2, + ACTIONS(4599), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9016), 2, + ACTIONS(4609), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(9024), 2, + ACTIONS(4623), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(591), 2, + STATE(888), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1290), 9, + STATE(2381), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -245815,49 +248631,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [198794] = 19, - ACTIONS(3), 1, + [202240] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(8090), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, + ACTIONS(8092), 1, anon_sym_DOLLAR, - ACTIONS(371), 1, + ACTIONS(8096), 1, anon_sym_DQUOTE, - ACTIONS(375), 1, + ACTIONS(8100), 1, aux_sym_number_token1, - ACTIONS(377), 1, + ACTIONS(8102), 1, aux_sym_number_token2, - ACTIONS(379), 1, + ACTIONS(8104), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, + ACTIONS(8106), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, + ACTIONS(8108), 1, + anon_sym_BQUOTE, + ACTIONS(8110), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, + ACTIONS(8120), 1, sym__brace_start, - ACTIONS(5809), 1, - anon_sym_BQUOTE, - ACTIONS(8836), 1, + ACTIONS(8264), 1, + sym__special_character, + ACTIONS(9236), 1, sym_word, - ACTIONS(8844), 1, + ACTIONS(9240), 1, sym_test_operator, - ACTIONS(9026), 1, - anon_sym_RBRACK, - ACTIONS(352), 2, + STATE(1777), 1, + aux_sym__literal_repeat1, + ACTIONS(8086), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, + ACTIONS(8112), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8840), 2, - sym__special_character, - sym__comment_word, - ACTIONS(8842), 3, - sym__bare_dollar, + ACTIONS(9238), 2, sym_raw_string, sym_ansi_c_string, - STATE(2730), 9, + STATE(698), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1646), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -245867,49 +248684,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [198865] = 19, - ACTIONS(3), 1, + [202313] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(363), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, + ACTIONS(2806), 1, + sym_word, + ACTIONS(2812), 1, anon_sym_DOLLAR, - ACTIONS(371), 1, - anon_sym_DQUOTE, - ACTIONS(375), 1, + ACTIONS(2818), 1, aux_sym_number_token1, - ACTIONS(377), 1, + ACTIONS(2820), 1, aux_sym_number_token2, - ACTIONS(379), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, + ACTIONS(2824), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, + ACTIONS(2832), 1, + sym_test_operator, + ACTIONS(2834), 1, sym__brace_start, - ACTIONS(5809), 1, + ACTIONS(9244), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9246), 1, + sym__special_character, + ACTIONS(9248), 1, + anon_sym_DQUOTE, + ACTIONS(9252), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9254), 1, anon_sym_BQUOTE, - ACTIONS(8836), 1, - sym_word, - ACTIONS(8844), 1, - sym_test_operator, - ACTIONS(9028), 1, - anon_sym_RBRACK, - ACTIONS(352), 2, + ACTIONS(9256), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(1918), 1, + aux_sym__literal_repeat1, + ACTIONS(9242), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8840), 2, - sym__special_character, - sym__comment_word, - ACTIONS(8842), 3, - sym__bare_dollar, + ACTIONS(9250), 2, sym_raw_string, sym_ansi_c_string, - STATE(2730), 9, + ACTIONS(9258), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(629), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1421), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -245919,50 +248737,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [198936] = 20, + [202386] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3876), 1, - sym_word, - ACTIONS(3882), 1, + ACTIONS(8090), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8092), 1, anon_sym_DOLLAR, - ACTIONS(3886), 1, + ACTIONS(8096), 1, + anon_sym_DQUOTE, + ACTIONS(8100), 1, aux_sym_number_token1, - ACTIONS(3888), 1, + ACTIONS(8102), 1, aux_sym_number_token2, - ACTIONS(3892), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3900), 1, - sym_test_operator, - ACTIONS(3902), 1, - sym__brace_start, - ACTIONS(8992), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8994), 1, - sym__special_character, - ACTIONS(8996), 1, - anon_sym_DQUOTE, - ACTIONS(9000), 1, + ACTIONS(8104), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9002), 1, + ACTIONS(8106), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8108), 1, anon_sym_BQUOTE, - ACTIONS(9004), 1, + ACTIONS(8110), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2281), 1, + ACTIONS(8120), 1, + sym__brace_start, + ACTIONS(8264), 1, + sym__special_character, + ACTIONS(9236), 1, + sym_word, + ACTIONS(9240), 1, + sym_test_operator, + STATE(1777), 1, aux_sym__literal_repeat1, - ACTIONS(8990), 2, + ACTIONS(8086), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8998), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9006), 2, + ACTIONS(8112), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(742), 2, + ACTIONS(9238), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(700), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1846), 9, + STATE(1646), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -245972,50 +248790,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [199009] = 20, + [202459] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(2329), 1, + ACTIONS(2806), 1, sym_word, - ACTIONS(2335), 1, + ACTIONS(2812), 1, anon_sym_DOLLAR, - ACTIONS(2341), 1, + ACTIONS(2818), 1, aux_sym_number_token1, - ACTIONS(2343), 1, + ACTIONS(2820), 1, aux_sym_number_token2, - ACTIONS(2347), 1, + ACTIONS(2824), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2355), 1, + ACTIONS(2832), 1, sym_test_operator, - ACTIONS(2357), 1, + ACTIONS(2834), 1, sym__brace_start, - ACTIONS(9010), 1, + ACTIONS(9244), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9012), 1, + ACTIONS(9246), 1, sym__special_character, - ACTIONS(9014), 1, + ACTIONS(9248), 1, anon_sym_DQUOTE, - ACTIONS(9018), 1, + ACTIONS(9252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9020), 1, + ACTIONS(9254), 1, anon_sym_BQUOTE, - ACTIONS(9022), 1, + ACTIONS(9256), 1, anon_sym_DOLLAR_BQUOTE, - STATE(1658), 1, + STATE(1918), 1, aux_sym__literal_repeat1, - ACTIONS(9008), 2, + ACTIONS(9242), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9016), 2, + ACTIONS(9250), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(9024), 2, + ACTIONS(9258), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(595), 2, + STATE(632), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1290), 9, + STATE(1421), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -246025,50 +248843,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [199082] = 20, + [202532] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3606), 1, - sym_word, - ACTIONS(3612), 1, + ACTIONS(3998), 1, anon_sym_DOLLAR, - ACTIONS(3616), 1, + ACTIONS(4002), 1, aux_sym_number_token1, - ACTIONS(3618), 1, + ACTIONS(4004), 1, aux_sym_number_token2, - ACTIONS(3622), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3630), 1, - sym_test_operator, - ACTIONS(3632), 1, + ACTIONS(4018), 1, sym__brace_start, - ACTIONS(8850), 1, + ACTIONS(4098), 1, + sym_word, + ACTIONS(4102), 1, + sym_test_operator, + ACTIONS(8820), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8854), 1, + ACTIONS(8824), 1, anon_sym_DQUOTE, - ACTIONS(8858), 1, + ACTIONS(8828), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8860), 1, + ACTIONS(8830), 1, anon_sym_BQUOTE, - ACTIONS(8862), 1, + ACTIONS(8832), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9030), 1, + ACTIONS(9034), 1, sym__special_character, - STATE(2270), 1, + STATE(2307), 1, aux_sym__literal_repeat1, - ACTIONS(8848), 2, + ACTIONS(8818), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8864), 2, + ACTIONS(8834), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9032), 2, + ACTIONS(9036), 2, sym_raw_string, sym_ansi_c_string, - STATE(773), 2, + STATE(779), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1839), 9, + STATE(2129), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -246078,50 +248896,51 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [199155] = 20, + [202605] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3397), 1, + ACTIONS(1494), 1, anon_sym_DOLLAR, - ACTIONS(3401), 1, + ACTIONS(1500), 1, aux_sym_number_token1, - ACTIONS(3403), 1, + ACTIONS(1502), 1, aux_sym_number_token2, - ACTIONS(3407), 1, + ACTIONS(1506), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3417), 1, + ACTIONS(1518), 1, sym__brace_start, - ACTIONS(3663), 1, - sym_word, - ACTIONS(3667), 1, - sym_test_operator, - ACTIONS(8926), 1, + ACTIONS(9066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8930), 1, + ACTIONS(9070), 1, anon_sym_DQUOTE, - ACTIONS(8934), 1, + ACTIONS(9074), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8936), 1, + ACTIONS(9076), 1, anon_sym_BQUOTE, - ACTIONS(8938), 1, + ACTIONS(9078), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9034), 1, + ACTIONS(9084), 1, + sym_regex, + ACTIONS(9260), 1, + sym_word, + ACTIONS(9262), 1, sym__special_character, - STATE(2161), 1, + ACTIONS(9266), 1, + sym_test_operator, + STATE(1372), 1, aux_sym__literal_repeat1, - ACTIONS(8924), 2, + STATE(1621), 1, + sym_concatenation, + ACTIONS(9064), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8940), 2, + ACTIONS(9080), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9036), 2, + ACTIONS(9264), 2, sym_raw_string, sym_ansi_c_string, - STATE(754), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1918), 9, + STATE(1272), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -246131,50 +248950,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [199228] = 20, + [202680] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3397), 1, + ACTIONS(3998), 1, anon_sym_DOLLAR, - ACTIONS(3401), 1, + ACTIONS(4002), 1, aux_sym_number_token1, - ACTIONS(3403), 1, + ACTIONS(4004), 1, aux_sym_number_token2, - ACTIONS(3407), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3417), 1, + ACTIONS(4018), 1, sym__brace_start, - ACTIONS(3663), 1, + ACTIONS(4098), 1, sym_word, - ACTIONS(3667), 1, + ACTIONS(4102), 1, sym_test_operator, - ACTIONS(8926), 1, + ACTIONS(8820), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8930), 1, + ACTIONS(8824), 1, anon_sym_DQUOTE, - ACTIONS(8934), 1, + ACTIONS(8828), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8936), 1, + ACTIONS(8830), 1, anon_sym_BQUOTE, - ACTIONS(8938), 1, + ACTIONS(8832), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(9034), 1, sym__special_character, - STATE(2161), 1, + STATE(2307), 1, aux_sym__literal_repeat1, - ACTIONS(8924), 2, + ACTIONS(8818), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8940), 2, + ACTIONS(8834), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(9036), 2, sym_raw_string, sym_ansi_c_string, - STATE(755), 2, + STATE(788), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1918), 9, + STATE(2129), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -246184,50 +249003,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [199301] = 20, - ACTIONS(71), 1, + [202753] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3606), 1, - sym_word, - ACTIONS(3612), 1, - anon_sym_DOLLAR, - ACTIONS(3616), 1, + ACTIONS(2327), 1, aux_sym_number_token1, - ACTIONS(3618), 1, + ACTIONS(2329), 1, aux_sym_number_token2, - ACTIONS(3622), 1, + ACTIONS(2333), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3630), 1, - sym_test_operator, - ACTIONS(3632), 1, + ACTIONS(2343), 1, sym__brace_start, - ACTIONS(8850), 1, + ACTIONS(9116), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8854), 1, + ACTIONS(9120), 1, anon_sym_DQUOTE, - ACTIONS(8858), 1, + ACTIONS(9124), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8860), 1, + ACTIONS(9126), 1, anon_sym_BQUOTE, - ACTIONS(8862), 1, + ACTIONS(9128), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9030), 1, - sym__special_character, - STATE(2270), 1, - aux_sym__literal_repeat1, - ACTIONS(8848), 2, + ACTIONS(9268), 1, + sym_word, + ACTIONS(9270), 1, + anon_sym_DOLLAR, + ACTIONS(9276), 1, + sym__comment_word, + ACTIONS(9114), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8864), 2, + ACTIONS(9130), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9032), 2, + ACTIONS(9272), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9274), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(714), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1839), 9, + STATE(1402), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -246237,50 +249053,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [199374] = 20, - ACTIONS(71), 1, + [202821] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(8268), 1, + ACTIONS(4928), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8270), 1, - anon_sym_DOLLAR, - ACTIONS(8272), 1, - sym__special_character, - ACTIONS(8274), 1, + ACTIONS(4934), 1, anon_sym_DQUOTE, - ACTIONS(8278), 1, + ACTIONS(4938), 1, aux_sym_number_token1, - ACTIONS(8280), 1, + ACTIONS(4940), 1, aux_sym_number_token2, - ACTIONS(8282), 1, + ACTIONS(4942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8284), 1, + ACTIONS(4944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8286), 1, + ACTIONS(4946), 1, anon_sym_BQUOTE, - ACTIONS(8288), 1, + ACTIONS(4948), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8298), 1, + ACTIONS(4954), 1, sym__brace_start, - ACTIONS(9038), 1, + ACTIONS(9278), 1, sym_word, - ACTIONS(9042), 1, - sym_test_operator, - STATE(1567), 1, - aux_sym__literal_repeat1, - ACTIONS(8264), 2, + ACTIONS(9280), 1, + anon_sym_DOLLAR, + ACTIONS(9286), 1, + sym__comment_word, + ACTIONS(4926), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8290), 2, + ACTIONS(4950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9040), 2, + ACTIONS(9282), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9284), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(601), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1269), 9, + STATE(2604), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -246290,50 +249103,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [199447] = 20, - ACTIONS(71), 1, + [202889] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(8268), 1, + ACTIONS(5281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8270), 1, - anon_sym_DOLLAR, - ACTIONS(8272), 1, - sym__special_character, - ACTIONS(8274), 1, + ACTIONS(5287), 1, anon_sym_DQUOTE, - ACTIONS(8278), 1, + ACTIONS(5291), 1, aux_sym_number_token1, - ACTIONS(8280), 1, + ACTIONS(5293), 1, aux_sym_number_token2, - ACTIONS(8282), 1, + ACTIONS(5295), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8284), 1, + ACTIONS(5297), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8286), 1, + ACTIONS(5299), 1, anon_sym_BQUOTE, - ACTIONS(8288), 1, + ACTIONS(5301), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8298), 1, + ACTIONS(5307), 1, sym__brace_start, - ACTIONS(9038), 1, + ACTIONS(9288), 1, sym_word, - ACTIONS(9042), 1, - sym_test_operator, - STATE(1567), 1, - aux_sym__literal_repeat1, - ACTIONS(8264), 2, + ACTIONS(9290), 1, + anon_sym_DOLLAR, + ACTIONS(9296), 1, + sym__comment_word, + ACTIONS(5279), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8290), 2, + ACTIONS(5303), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9040), 2, + ACTIONS(9292), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9294), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(614), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1269), 9, + STATE(5487), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -246343,50 +249153,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [199520] = 20, - ACTIONS(71), 1, + [202957] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3333), 1, - sym_word, - ACTIONS(3339), 1, - anon_sym_DOLLAR, - ACTIONS(3343), 1, - aux_sym_number_token1, - ACTIONS(3345), 1, - aux_sym_number_token2, - ACTIONS(3349), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3357), 1, - sym_test_operator, - ACTIONS(3359), 1, - sym__brace_start, - ACTIONS(9046), 1, + ACTIONS(5281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9048), 1, - sym__special_character, - ACTIONS(9050), 1, + ACTIONS(5287), 1, anon_sym_DQUOTE, - ACTIONS(9054), 1, + ACTIONS(5291), 1, + aux_sym_number_token1, + ACTIONS(5293), 1, + aux_sym_number_token2, + ACTIONS(5295), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9056), 1, + ACTIONS(5297), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5299), 1, anon_sym_BQUOTE, - ACTIONS(9058), 1, + ACTIONS(5301), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2147), 1, - aux_sym__literal_repeat1, - ACTIONS(9044), 2, + ACTIONS(5307), 1, + sym__brace_start, + ACTIONS(9288), 1, + sym_word, + ACTIONS(9296), 1, + sym__comment_word, + ACTIONS(9298), 1, + anon_sym_DOLLAR, + ACTIONS(5279), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9052), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9060), 2, + ACTIONS(5303), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(707), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1526), 9, + ACTIONS(9292), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9294), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(5487), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -246396,50 +249203,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [199593] = 20, - ACTIONS(71), 1, + [203025] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(2568), 1, - sym_word, - ACTIONS(2574), 1, - anon_sym_DOLLAR, - ACTIONS(2580), 1, - aux_sym_number_token1, - ACTIONS(2582), 1, - aux_sym_number_token2, - ACTIONS(2586), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2594), 1, - sym_test_operator, - ACTIONS(2596), 1, - sym__brace_start, - ACTIONS(9064), 1, + ACTIONS(8292), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9066), 1, - sym__special_character, - ACTIONS(9068), 1, + ACTIONS(8298), 1, anon_sym_DQUOTE, - ACTIONS(9072), 1, + ACTIONS(8302), 1, + aux_sym_number_token1, + ACTIONS(8304), 1, + aux_sym_number_token2, + ACTIONS(8306), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9074), 1, + ACTIONS(8308), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8310), 1, anon_sym_BQUOTE, - ACTIONS(9076), 1, + ACTIONS(8312), 1, anon_sym_DOLLAR_BQUOTE, - STATE(1899), 1, - aux_sym__literal_repeat1, - ACTIONS(9062), 2, + ACTIONS(8322), 1, + sym__brace_start, + ACTIONS(9300), 1, + sym_word, + ACTIONS(9302), 1, + anon_sym_DOLLAR, + ACTIONS(9308), 1, + sym__comment_word, + ACTIONS(8288), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9070), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9078), 2, + ACTIONS(8314), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(653), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1394), 9, + ACTIONS(9304), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9306), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1259), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -246449,50 +249253,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [199666] = 20, - ACTIONS(71), 1, + [203093] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(2568), 1, - sym_word, - ACTIONS(2574), 1, + ACTIONS(2125), 1, anon_sym_DOLLAR, - ACTIONS(2580), 1, + ACTIONS(2131), 1, aux_sym_number_token1, - ACTIONS(2582), 1, + ACTIONS(2133), 1, aux_sym_number_token2, - ACTIONS(2586), 1, + ACTIONS(2137), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2594), 1, - sym_test_operator, - ACTIONS(2596), 1, + ACTIONS(2151), 1, sym__brace_start, - ACTIONS(9064), 1, + ACTIONS(8212), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9066), 1, - sym__special_character, - ACTIONS(9068), 1, + ACTIONS(8216), 1, anon_sym_DQUOTE, - ACTIONS(9072), 1, + ACTIONS(8220), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9074), 1, + ACTIONS(8222), 1, anon_sym_BQUOTE, - ACTIONS(9076), 1, + ACTIONS(8224), 1, anon_sym_DOLLAR_BQUOTE, - STATE(1899), 1, - aux_sym__literal_repeat1, - ACTIONS(9062), 2, + ACTIONS(9310), 1, + sym_word, + ACTIONS(9316), 1, + sym__comment_word, + ACTIONS(8208), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9070), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9078), 2, + ACTIONS(8226), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(615), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1394), 9, + ACTIONS(9312), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9314), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1628), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -246502,49 +249303,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [199739] = 19, + [203161] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(8292), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, - anon_sym_DOLLAR, - ACTIONS(371), 1, + ACTIONS(8298), 1, anon_sym_DQUOTE, - ACTIONS(375), 1, + ACTIONS(8302), 1, aux_sym_number_token1, - ACTIONS(377), 1, + ACTIONS(8304), 1, aux_sym_number_token2, - ACTIONS(379), 1, + ACTIONS(8306), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, + ACTIONS(8308), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, + ACTIONS(8310), 1, + anon_sym_BQUOTE, + ACTIONS(8312), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, + ACTIONS(8322), 1, sym__brace_start, - ACTIONS(5809), 1, - anon_sym_BQUOTE, - ACTIONS(8836), 1, + ACTIONS(9300), 1, sym_word, - ACTIONS(8844), 1, - sym_test_operator, - ACTIONS(9080), 1, - anon_sym_RBRACK, - ACTIONS(352), 2, + ACTIONS(9308), 1, + sym__comment_word, + ACTIONS(9318), 1, + anon_sym_DOLLAR, + ACTIONS(8288), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, + ACTIONS(8314), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8840), 2, + ACTIONS(9304), 2, + sym_test_operator, sym__special_character, - sym__comment_word, - ACTIONS(8842), 3, + ACTIONS(9306), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2730), 9, + STATE(1259), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -246554,49 +249353,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [199810] = 19, - ACTIONS(3), 1, + [203229] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(8414), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, + ACTIONS(8416), 1, anon_sym_DOLLAR, - ACTIONS(371), 1, + ACTIONS(8418), 1, + sym__special_character, + ACTIONS(8420), 1, anon_sym_DQUOTE, - ACTIONS(375), 1, + ACTIONS(8424), 1, aux_sym_number_token1, - ACTIONS(377), 1, + ACTIONS(8426), 1, aux_sym_number_token2, - ACTIONS(379), 1, + ACTIONS(8428), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, + ACTIONS(8430), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, + ACTIONS(8432), 1, + anon_sym_BQUOTE, + ACTIONS(8434), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, + ACTIONS(8444), 1, sym__brace_start, - ACTIONS(5809), 1, - anon_sym_BQUOTE, - ACTIONS(8836), 1, + ACTIONS(9320), 1, sym_word, - ACTIONS(8844), 1, + ACTIONS(9324), 1, sym_test_operator, - ACTIONS(9082), 1, - anon_sym_RBRACK, - ACTIONS(352), 2, + STATE(1776), 1, + aux_sym__literal_repeat1, + STATE(2196), 1, + sym_concatenation, + ACTIONS(8410), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, + ACTIONS(8436), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8840), 2, - sym__special_character, - sym__comment_word, - ACTIONS(8842), 3, - sym__bare_dollar, + ACTIONS(9322), 2, sym_raw_string, sym_ansi_c_string, - STATE(2730), 9, + STATE(1422), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -246606,49 +249405,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [199881] = 19, + [203301] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, - anon_sym_DOLLAR, - ACTIONS(371), 1, - anon_sym_DQUOTE, - ACTIONS(375), 1, + ACTIONS(1700), 1, aux_sym_number_token1, - ACTIONS(377), 1, + ACTIONS(1702), 1, aux_sym_number_token2, - ACTIONS(379), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, + ACTIONS(1706), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, + ACTIONS(1720), 1, sym__brace_start, - ACTIONS(5809), 1, + ACTIONS(8240), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8244), 1, + anon_sym_DQUOTE, + ACTIONS(8248), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8250), 1, anon_sym_BQUOTE, - ACTIONS(8836), 1, + ACTIONS(8252), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9326), 1, sym_word, - ACTIONS(8844), 1, - sym_test_operator, - ACTIONS(9084), 1, - anon_sym_RBRACK, - ACTIONS(352), 2, + ACTIONS(9328), 1, + anon_sym_DOLLAR, + ACTIONS(9334), 1, + sym__comment_word, + ACTIONS(8236), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, + ACTIONS(8254), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8840), 2, + ACTIONS(9330), 2, + sym_test_operator, sym__special_character, - sym__comment_word, - ACTIONS(8842), 3, + ACTIONS(9332), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2730), 9, + STATE(1269), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -246658,50 +249455,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [199952] = 20, - ACTIONS(71), 1, + [203369] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3612), 1, - anon_sym_DOLLAR, - ACTIONS(3616), 1, + ACTIONS(1700), 1, aux_sym_number_token1, - ACTIONS(3618), 1, + ACTIONS(1702), 1, aux_sym_number_token2, - ACTIONS(3622), 1, + ACTIONS(1706), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3632), 1, + ACTIONS(1720), 1, sym__brace_start, - ACTIONS(4131), 1, - sym_word, - ACTIONS(4135), 1, - sym_test_operator, - ACTIONS(8850), 1, + ACTIONS(8240), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8854), 1, + ACTIONS(8244), 1, anon_sym_DQUOTE, - ACTIONS(8858), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8860), 1, + ACTIONS(8250), 1, anon_sym_BQUOTE, - ACTIONS(8862), 1, + ACTIONS(8252), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9086), 1, - sym__special_character, - STATE(2270), 1, - aux_sym__literal_repeat1, - ACTIONS(8848), 2, + ACTIONS(9326), 1, + sym_word, + ACTIONS(9334), 1, + sym__comment_word, + ACTIONS(9336), 1, + anon_sym_DOLLAR, + ACTIONS(8236), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8864), 2, + ACTIONS(8254), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9088), 2, + ACTIONS(9330), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9332), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(786), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1968), 9, + STATE(1269), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -246711,209 +249505,418 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [200025] = 21, + [203437] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1414), 1, + ACTIONS(9338), 1, + anon_sym_LPAREN, + ACTIONS(9340), 1, + anon_sym_BANG, + ACTIONS(9346), 1, + anon_sym_TILDE, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(1420), 1, + ACTIONS(9350), 1, + anon_sym_DQUOTE, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(1422), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(1426), 1, + ACTIONS(9356), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1438), 1, - sym__brace_start, - ACTIONS(9090), 1, - sym_word, - ACTIONS(9094), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9096), 1, - sym__special_character, - ACTIONS(9098), 1, + ACTIONS(9360), 1, + anon_sym_BQUOTE, + ACTIONS(9362), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9364), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(9366), 1, + sym_variable_name, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3321), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [203511] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9338), 1, + anon_sym_LPAREN, + ACTIONS(9340), 1, + anon_sym_BANG, + ACTIONS(9346), 1, + anon_sym_TILDE, + ACTIONS(9348), 1, + anon_sym_DOLLAR, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9102), 1, + ACTIONS(9352), 1, + aux_sym_number_token1, + ACTIONS(9354), 1, + aux_sym_number_token2, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9104), 1, + ACTIONS(9358), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9106), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9110), 1, - sym_test_operator, - ACTIONS(9112), 1, - sym_regex, - STATE(1014), 1, - aux_sym__literal_repeat1, - STATE(1168), 1, - sym_concatenation, - ACTIONS(9092), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9100), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9108), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(854), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(9368), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3404), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [200100] = 20, + [203585] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3612), 1, + ACTIONS(9338), 1, + anon_sym_LPAREN, + ACTIONS(9340), 1, + anon_sym_BANG, + ACTIONS(9346), 1, + anon_sym_TILDE, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(3616), 1, + ACTIONS(9350), 1, + anon_sym_DQUOTE, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(3618), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(3622), 1, + ACTIONS(9356), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3632), 1, - sym__brace_start, - ACTIONS(4131), 1, - sym_word, - ACTIONS(4135), 1, - sym_test_operator, - ACTIONS(8850), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8854), 1, + ACTIONS(9360), 1, + anon_sym_BQUOTE, + ACTIONS(9362), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(9370), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3425), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [203659] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9338), 1, + anon_sym_LPAREN, + ACTIONS(9340), 1, + anon_sym_BANG, + ACTIONS(9346), 1, + anon_sym_TILDE, + ACTIONS(9348), 1, + anon_sym_DOLLAR, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(8858), 1, + ACTIONS(9352), 1, + aux_sym_number_token1, + ACTIONS(9354), 1, + aux_sym_number_token2, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8860), 1, + ACTIONS(9358), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(8862), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9086), 1, - sym__special_character, - STATE(2270), 1, - aux_sym__literal_repeat1, - ACTIONS(8848), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8864), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9088), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(791), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1968), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(9372), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3212), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [200173] = 20, + [203733] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9114), 1, - sym_word, - ACTIONS(9118), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9120), 1, + ACTIONS(9338), 1, + anon_sym_LPAREN, + ACTIONS(9340), 1, + anon_sym_BANG, + ACTIONS(9346), 1, + anon_sym_TILDE, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9122), 1, - sym__special_character, - ACTIONS(9124), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9128), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9130), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9132), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9134), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9136), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9138), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9142), 1, - sym_test_operator, - ACTIONS(9144), 1, - sym__brace_start, - STATE(2457), 1, - aux_sym__literal_repeat1, - ACTIONS(9116), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9126), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9140), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(823), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2271), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(9374), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3307), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [200246] = 19, - ACTIONS(3), 1, + [203807] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(363), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, + ACTIONS(9338), 1, + anon_sym_LPAREN, + ACTIONS(9340), 1, + anon_sym_BANG, + ACTIONS(9346), 1, + anon_sym_TILDE, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(371), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(375), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(377), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(379), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, + ACTIONS(9360), 1, + anon_sym_BQUOTE, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, - sym__brace_start, - ACTIONS(5809), 1, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(9376), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3365), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [203881] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9338), 1, + anon_sym_LPAREN, + ACTIONS(9340), 1, + anon_sym_BANG, + ACTIONS(9346), 1, + anon_sym_TILDE, + ACTIONS(9348), 1, + anon_sym_DOLLAR, + ACTIONS(9350), 1, + anon_sym_DQUOTE, + ACTIONS(9352), 1, + aux_sym_number_token1, + ACTIONS(9354), 1, + aux_sym_number_token2, + ACTIONS(9356), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9358), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(8836), 1, + ACTIONS(9362), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(9378), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3415), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [203955] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2470), 1, + aux_sym_number_token1, + ACTIONS(2472), 1, + aux_sym_number_token2, + ACTIONS(2476), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2488), 1, + sym__brace_start, + ACTIONS(9380), 1, sym_word, - ACTIONS(8844), 1, - sym_test_operator, - ACTIONS(9146), 1, - anon_sym_RBRACK, - ACTIONS(352), 2, + ACTIONS(9384), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9386), 1, + anon_sym_DOLLAR, + ACTIONS(9390), 1, + anon_sym_DQUOTE, + ACTIONS(9394), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9396), 1, + anon_sym_BQUOTE, + ACTIONS(9398), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9402), 1, + sym__comment_word, + ACTIONS(9382), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, + ACTIONS(9388), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9400), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8840), 2, - sym__special_character, - sym__comment_word, - ACTIONS(8842), 3, + ACTIONS(9392), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2730), 9, + STATE(1465), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -246923,185 +249926,206 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [200317] = 8, - ACTIONS(3), 1, + [204023] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1241), 1, - sym_file_descriptor, - ACTIONS(9150), 1, + ACTIONS(9338), 1, + anon_sym_LPAREN, + ACTIONS(9340), 1, + anon_sym_BANG, + ACTIONS(9346), 1, + anon_sym_TILDE, + ACTIONS(9348), 1, + anon_sym_DOLLAR, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9154), 1, + ACTIONS(9352), 1, + aux_sym_number_token1, + ACTIONS(9354), 1, + aux_sym_number_token2, + ACTIONS(9356), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9358), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9360), 1, + anon_sym_BQUOTE, + ACTIONS(9362), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9366), 1, sym_variable_name, - STATE(5537), 1, - sym_string, - ACTIONS(9152), 2, + ACTIONS(9404), 1, aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9148), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [200366] = 20, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3432), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [204097] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9114), 1, - sym_word, - ACTIONS(9118), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9120), 1, + ACTIONS(9338), 1, + anon_sym_LPAREN, + ACTIONS(9340), 1, + anon_sym_BANG, + ACTIONS(9346), 1, + anon_sym_TILDE, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9122), 1, - sym__special_character, - ACTIONS(9124), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9128), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9130), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9132), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9134), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9136), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9138), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9142), 1, - sym_test_operator, - ACTIONS(9144), 1, - sym__brace_start, - STATE(2457), 1, - aux_sym__literal_repeat1, - ACTIONS(9116), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9126), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9140), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(821), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2271), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(9406), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3172), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [200439] = 8, - ACTIONS(3), 1, + [204171] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1235), 1, - sym_file_descriptor, - ACTIONS(9150), 1, + ACTIONS(9338), 1, + anon_sym_LPAREN, + ACTIONS(9340), 1, + anon_sym_BANG, + ACTIONS(9346), 1, + anon_sym_TILDE, + ACTIONS(9348), 1, + anon_sym_DOLLAR, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9154), 1, + ACTIONS(9352), 1, + aux_sym_number_token1, + ACTIONS(9354), 1, + aux_sym_number_token2, + ACTIONS(9356), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9358), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9360), 1, + anon_sym_BQUOTE, + ACTIONS(9362), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9366), 1, sym_variable_name, - STATE(5537), 1, - sym_string, - ACTIONS(9152), 2, + ACTIONS(9408), 1, aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9148), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [200488] = 20, - ACTIONS(71), 1, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3178), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [204245] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(4498), 1, + ACTIONS(2470), 1, + aux_sym_number_token1, + ACTIONS(2472), 1, + aux_sym_number_token2, + ACTIONS(2476), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2488), 1, + sym__brace_start, + ACTIONS(9380), 1, sym_word, - ACTIONS(4502), 1, + ACTIONS(9384), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4504), 1, - anon_sym_DOLLAR, - ACTIONS(4508), 1, + ACTIONS(9390), 1, anon_sym_DQUOTE, - ACTIONS(4512), 1, - aux_sym_number_token1, - ACTIONS(4514), 1, - aux_sym_number_token2, - ACTIONS(4516), 1, + ACTIONS(9394), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4518), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4520), 1, + ACTIONS(9396), 1, anon_sym_BQUOTE, - ACTIONS(4522), 1, + ACTIONS(9398), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4526), 1, - sym_test_operator, - ACTIONS(4528), 1, - sym__brace_start, - ACTIONS(9156), 1, - sym__special_character, - STATE(2715), 1, - aux_sym__literal_repeat1, - ACTIONS(4500), 2, + ACTIONS(9402), 1, + sym__comment_word, + ACTIONS(9410), 1, + anon_sym_DOLLAR, + ACTIONS(9382), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4510), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4524), 2, + ACTIONS(9388), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9400), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(867), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2438), 9, + ACTIONS(9392), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1465), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247111,49 +250135,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [200561] = 19, + [204313] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, - anon_sym_DOLLAR, - ACTIONS(371), 1, - anon_sym_DQUOTE, - ACTIONS(375), 1, + ACTIONS(2131), 1, aux_sym_number_token1, - ACTIONS(377), 1, + ACTIONS(2133), 1, aux_sym_number_token2, - ACTIONS(379), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, + ACTIONS(2137), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, + ACTIONS(2151), 1, sym__brace_start, - ACTIONS(5809), 1, + ACTIONS(8212), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8216), 1, + anon_sym_DQUOTE, + ACTIONS(8220), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8222), 1, anon_sym_BQUOTE, - ACTIONS(8836), 1, + ACTIONS(8224), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9310), 1, sym_word, - ACTIONS(8844), 1, - sym_test_operator, - ACTIONS(9158), 1, - anon_sym_RBRACK, - ACTIONS(352), 2, + ACTIONS(9316), 1, + sym__comment_word, + ACTIONS(9412), 1, + anon_sym_DOLLAR, + ACTIONS(8208), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, + ACTIONS(8226), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8840), 2, + ACTIONS(9312), 2, + sym_test_operator, sym__special_character, - sym__comment_word, - ACTIONS(8842), 3, + ACTIONS(9314), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2730), 9, + STATE(1628), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247163,50 +250185,206 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [200632] = 20, + [204381] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(4498), 1, - sym_word, - ACTIONS(4502), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4504), 1, + ACTIONS(9338), 1, + anon_sym_LPAREN, + ACTIONS(9340), 1, + anon_sym_BANG, + ACTIONS(9346), 1, + anon_sym_TILDE, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(4508), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(4512), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(4514), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(4516), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4518), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4520), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(4522), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4526), 1, - sym_test_operator, - ACTIONS(4528), 1, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(9414), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3202), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [204455] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9338), 1, + anon_sym_LPAREN, + ACTIONS(9340), 1, + anon_sym_BANG, + ACTIONS(9346), 1, + anon_sym_TILDE, + ACTIONS(9348), 1, + anon_sym_DOLLAR, + ACTIONS(9350), 1, + anon_sym_DQUOTE, + ACTIONS(9352), 1, + aux_sym_number_token1, + ACTIONS(9354), 1, + aux_sym_number_token2, + ACTIONS(9356), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9358), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9360), 1, + anon_sym_BQUOTE, + ACTIONS(9362), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(9416), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3265), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [204529] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9338), 1, + anon_sym_LPAREN, + ACTIONS(9340), 1, + anon_sym_BANG, + ACTIONS(9346), 1, + anon_sym_TILDE, + ACTIONS(9348), 1, + anon_sym_DOLLAR, + ACTIONS(9350), 1, + anon_sym_DQUOTE, + ACTIONS(9352), 1, + aux_sym_number_token1, + ACTIONS(9354), 1, + aux_sym_number_token2, + ACTIONS(9356), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9358), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9360), 1, + anon_sym_BQUOTE, + ACTIONS(9362), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(9418), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3292), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [204603] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2131), 1, + aux_sym_number_token1, + ACTIONS(2133), 1, + aux_sym_number_token2, + ACTIONS(2137), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2151), 1, sym__brace_start, - ACTIONS(9156), 1, - sym__special_character, - STATE(2715), 1, - aux_sym__literal_repeat1, - ACTIONS(4500), 2, + ACTIONS(8212), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8216), 1, + anon_sym_DQUOTE, + ACTIONS(8220), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8222), 1, + anon_sym_BQUOTE, + ACTIONS(8224), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9310), 1, + sym_word, + ACTIONS(9316), 1, + sym__comment_word, + ACTIONS(9420), 1, + anon_sym_DOLLAR, + ACTIONS(8208), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4510), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4524), 2, + ACTIONS(8226), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(879), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2438), 9, + ACTIONS(9312), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9314), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1628), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247216,50 +250394,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [200705] = 20, - ACTIONS(71), 1, + [204671] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3391), 1, - sym_word, - ACTIONS(3397), 1, - anon_sym_DOLLAR, - ACTIONS(3401), 1, + ACTIONS(1420), 1, aux_sym_number_token1, - ACTIONS(3403), 1, + ACTIONS(1422), 1, aux_sym_number_token2, - ACTIONS(3407), 1, + ACTIONS(1426), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3415), 1, - sym_test_operator, - ACTIONS(3417), 1, + ACTIONS(1438), 1, sym__brace_start, - ACTIONS(8926), 1, + ACTIONS(8928), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8930), 1, + ACTIONS(8932), 1, anon_sym_DQUOTE, - ACTIONS(8934), 1, - anon_sym_DOLLAR_LBRACE, ACTIONS(8936), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, ACTIONS(8938), 1, + anon_sym_BQUOTE, + ACTIONS(8940), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9160), 1, - sym__special_character, - STATE(2161), 1, - aux_sym__literal_repeat1, - ACTIONS(8924), 2, + ACTIONS(9422), 1, + sym_word, + ACTIONS(9424), 1, + anon_sym_DOLLAR, + ACTIONS(9430), 1, + sym__comment_word, + ACTIONS(8926), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8940), 2, + ACTIONS(8942), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9162), 2, + ACTIONS(9426), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9428), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(691), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1711), 9, + STATE(1006), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247269,49 +250444,100 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [200778] = 19, - ACTIONS(3), 1, + [204739] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(363), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, + anon_sym_LPAREN, + ACTIONS(9434), 1, + anon_sym_BANG, + ACTIONS(9440), 1, + anon_sym_TILDE, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(371), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(375), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(377), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(379), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, + ACTIONS(9454), 1, + anon_sym_BQUOTE, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, + ACTIONS(9458), 1, + aux_sym__simple_variable_name_token1, + STATE(2776), 1, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9438), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3030), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [204813] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 1, + aux_sym_number_token1, + ACTIONS(1422), 1, + aux_sym_number_token2, + ACTIONS(1426), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1438), 1, sym__brace_start, - ACTIONS(5809), 1, + ACTIONS(8928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8932), 1, + anon_sym_DQUOTE, + ACTIONS(8936), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8938), 1, anon_sym_BQUOTE, - ACTIONS(8836), 1, + ACTIONS(8940), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9422), 1, sym_word, - ACTIONS(8844), 1, - sym_test_operator, - ACTIONS(9164), 1, - anon_sym_RBRACK, - ACTIONS(352), 2, + ACTIONS(9430), 1, + sym__comment_word, + ACTIONS(9460), 1, + anon_sym_DOLLAR, + ACTIONS(8926), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, + ACTIONS(8942), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8840), 2, + ACTIONS(9426), 2, + sym_test_operator, sym__special_character, - sym__comment_word, - ACTIONS(8842), 3, + ACTIONS(9428), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2730), 9, + STATE(1006), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247321,51 +250547,100 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [200849] = 21, + [204881] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(2636), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2638), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, + anon_sym_LPAREN, + ACTIONS(9434), 1, + anon_sym_BANG, + ACTIONS(9440), 1, + anon_sym_TILDE, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(2640), 1, - sym__special_character, - ACTIONS(2642), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(2646), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(2648), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(2650), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2652), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2654), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(2656), 1, + ACTIONS(9456), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9462), 1, + aux_sym__simple_variable_name_token1, + STATE(2776), 1, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9438), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2787), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [204955] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, + aux_sym_number_token1, + ACTIONS(1125), 1, + aux_sym_number_token2, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2664), 1, + ACTIONS(1139), 1, sym__brace_start, - ACTIONS(9166), 1, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + ACTIONS(9464), 1, sym_word, - ACTIONS(9170), 1, - sym_test_operator, - ACTIONS(9172), 1, - sym_regex, - STATE(2394), 1, - aux_sym__literal_repeat1, - STATE(2556), 1, - sym_concatenation, - ACTIONS(2630), 2, + ACTIONS(9466), 1, + anon_sym_DOLLAR, + ACTIONS(9472), 1, + sym__comment_word, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2658), 2, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9168), 2, + ACTIONS(9468), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9470), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2199), 9, + STATE(2365), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247375,50 +250650,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [200924] = 20, - ACTIONS(71), 1, + [205023] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(8474), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8476), 1, + ACTIONS(3386), 1, anon_sym_DOLLAR, - ACTIONS(8478), 1, - sym__special_character, - ACTIONS(8480), 1, - anon_sym_DQUOTE, - ACTIONS(8484), 1, + ACTIONS(3392), 1, aux_sym_number_token1, - ACTIONS(8486), 1, + ACTIONS(3394), 1, aux_sym_number_token2, - ACTIONS(8488), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8490), 1, + ACTIONS(3398), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8492), 1, - anon_sym_BQUOTE, - ACTIONS(8494), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8504), 1, + ACTIONS(3410), 1, sym__brace_start, - ACTIONS(9174), 1, + ACTIONS(9474), 1, sym_word, - ACTIONS(9178), 1, - sym_test_operator, - STATE(1801), 1, - aux_sym__literal_repeat1, - ACTIONS(8470), 2, + ACTIONS(9478), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9482), 1, + anon_sym_DQUOTE, + ACTIONS(9486), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9488), 1, + anon_sym_BQUOTE, + ACTIONS(9490), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9494), 1, + sym__comment_word, + ACTIONS(9476), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8496), 2, + ACTIONS(9480), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9492), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9176), 2, + ACTIONS(9484), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(654), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1399), 9, + STATE(1822), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247428,50 +250700,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [200997] = 20, - ACTIONS(71), 1, + [205091] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3391), 1, - sym_word, - ACTIONS(3397), 1, - anon_sym_DOLLAR, - ACTIONS(3401), 1, + ACTIONS(2697), 1, aux_sym_number_token1, - ACTIONS(3403), 1, + ACTIONS(2699), 1, aux_sym_number_token2, - ACTIONS(3407), 1, + ACTIONS(2703), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3415), 1, - sym_test_operator, - ACTIONS(3417), 1, + ACTIONS(2713), 1, sym__brace_start, - ACTIONS(8926), 1, + ACTIONS(9096), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8930), 1, + ACTIONS(9100), 1, anon_sym_DQUOTE, - ACTIONS(8934), 1, + ACTIONS(9104), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8936), 1, + ACTIONS(9106), 1, anon_sym_BQUOTE, - ACTIONS(8938), 1, + ACTIONS(9108), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9160), 1, - sym__special_character, - STATE(2161), 1, - aux_sym__literal_repeat1, - ACTIONS(8924), 2, + ACTIONS(9496), 1, + sym_word, + ACTIONS(9498), 1, + anon_sym_DOLLAR, + ACTIONS(9504), 1, + sym__comment_word, + ACTIONS(9094), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8940), 2, + ACTIONS(9110), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9162), 2, + ACTIONS(9500), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9502), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(684), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1711), 9, + STATE(1670), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247481,50 +250750,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [201070] = 20, - ACTIONS(71), 1, + [205159] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(7996), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7998), 1, - anon_sym_DOLLAR, - ACTIONS(8000), 1, - sym__special_character, - ACTIONS(8002), 1, - anon_sym_DQUOTE, - ACTIONS(8006), 1, + ACTIONS(2697), 1, aux_sym_number_token1, - ACTIONS(8008), 1, + ACTIONS(2699), 1, aux_sym_number_token2, - ACTIONS(8010), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8012), 1, + ACTIONS(2703), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8014), 1, + ACTIONS(2713), 1, + sym__brace_start, + ACTIONS(9096), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9100), 1, + anon_sym_DQUOTE, + ACTIONS(9104), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9106), 1, anon_sym_BQUOTE, - ACTIONS(8016), 1, + ACTIONS(9108), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8026), 1, - sym__brace_start, - ACTIONS(9180), 1, + ACTIONS(9496), 1, sym_word, - ACTIONS(9184), 1, - sym_test_operator, - STATE(3543), 1, - aux_sym__literal_repeat1, - ACTIONS(7992), 2, + ACTIONS(9504), 1, + sym__comment_word, + ACTIONS(9506), 1, + anon_sym_DOLLAR, + ACTIONS(9094), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8018), 2, + ACTIONS(9110), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9182), 2, + ACTIONS(9500), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9502), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1831), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3480), 9, + STATE(1670), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247534,50 +250800,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [201143] = 20, - ACTIONS(71), 1, + [205227] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3731), 1, - anon_sym_DOLLAR, - ACTIONS(3737), 1, + ACTIONS(3137), 1, aux_sym_number_token1, - ACTIONS(3739), 1, + ACTIONS(3139), 1, aux_sym_number_token2, - ACTIONS(3743), 1, + ACTIONS(3143), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3755), 1, + ACTIONS(3153), 1, sym__brace_start, - ACTIONS(7759), 1, + ACTIONS(9508), 1, sym_word, - ACTIONS(7767), 1, - sym_test_operator, - ACTIONS(8820), 1, + ACTIONS(9512), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8822), 1, - sym__special_character, - ACTIONS(8824), 1, + ACTIONS(9514), 1, + anon_sym_DOLLAR, + ACTIONS(9518), 1, anon_sym_DQUOTE, - ACTIONS(8828), 1, + ACTIONS(9522), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8830), 1, + ACTIONS(9524), 1, anon_sym_BQUOTE, - ACTIONS(8832), 1, + ACTIONS(9526), 1, anon_sym_DOLLAR_BQUOTE, - STATE(4975), 1, - aux_sym__literal_repeat1, - ACTIONS(8818), 2, + ACTIONS(9530), 1, + sym__comment_word, + ACTIONS(9510), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8826), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8834), 2, + ACTIONS(9516), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9528), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3458), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4460), 9, + ACTIONS(9520), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4478), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247587,50 +250850,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [201216] = 20, - ACTIONS(71), 1, + [205295] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(7996), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7998), 1, - anon_sym_DOLLAR, - ACTIONS(8000), 1, - sym__special_character, - ACTIONS(8002), 1, - anon_sym_DQUOTE, - ACTIONS(8006), 1, + ACTIONS(3137), 1, aux_sym_number_token1, - ACTIONS(8008), 1, + ACTIONS(3139), 1, aux_sym_number_token2, - ACTIONS(8010), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8012), 1, + ACTIONS(3143), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8014), 1, - anon_sym_BQUOTE, - ACTIONS(8016), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8026), 1, + ACTIONS(3153), 1, sym__brace_start, - ACTIONS(9180), 1, + ACTIONS(9508), 1, sym_word, - ACTIONS(9184), 1, - sym_test_operator, - STATE(3543), 1, - aux_sym__literal_repeat1, - ACTIONS(7992), 2, + ACTIONS(9512), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9518), 1, + anon_sym_DQUOTE, + ACTIONS(9522), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9524), 1, + anon_sym_BQUOTE, + ACTIONS(9526), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9530), 1, + sym__comment_word, + ACTIONS(9532), 1, + anon_sym_DOLLAR, + ACTIONS(9510), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8018), 2, + ACTIONS(9516), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9528), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9182), 2, + ACTIONS(9520), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1808), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3480), 9, + STATE(4478), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247640,50 +250900,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [201289] = 20, - ACTIONS(71), 1, + [205363] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(8178), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8180), 1, - anon_sym_DOLLAR, - ACTIONS(8184), 1, - anon_sym_DQUOTE, - ACTIONS(8188), 1, + ACTIONS(3392), 1, aux_sym_number_token1, - ACTIONS(8190), 1, + ACTIONS(3394), 1, aux_sym_number_token2, - ACTIONS(8192), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8194), 1, + ACTIONS(3398), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8196), 1, - anon_sym_BQUOTE, - ACTIONS(8198), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8208), 1, + ACTIONS(3410), 1, sym__brace_start, - ACTIONS(8450), 1, - sym__special_character, - ACTIONS(9186), 1, + ACTIONS(9474), 1, sym_word, - ACTIONS(9190), 1, - sym_test_operator, - STATE(1744), 1, - aux_sym__literal_repeat1, - ACTIONS(8174), 2, + ACTIONS(9478), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9482), 1, + anon_sym_DQUOTE, + ACTIONS(9486), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9488), 1, + anon_sym_BQUOTE, + ACTIONS(9490), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9494), 1, + sym__comment_word, + ACTIONS(9534), 1, + anon_sym_DOLLAR, + ACTIONS(9476), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8200), 2, + ACTIONS(9480), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9492), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9188), 2, + ACTIONS(9484), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(686), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1688), 9, + STATE(1822), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247693,50 +250950,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [201362] = 20, - ACTIONS(71), 1, + [205431] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(8178), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8180), 1, - anon_sym_DOLLAR, - ACTIONS(8184), 1, - anon_sym_DQUOTE, - ACTIONS(8188), 1, + ACTIONS(2327), 1, aux_sym_number_token1, - ACTIONS(8190), 1, + ACTIONS(2329), 1, aux_sym_number_token2, - ACTIONS(8192), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8194), 1, + ACTIONS(2333), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8196), 1, + ACTIONS(2343), 1, + sym__brace_start, + ACTIONS(9116), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9120), 1, + anon_sym_DQUOTE, + ACTIONS(9124), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9126), 1, anon_sym_BQUOTE, - ACTIONS(8198), 1, + ACTIONS(9128), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8208), 1, - sym__brace_start, - ACTIONS(8450), 1, - sym__special_character, - ACTIONS(9186), 1, + ACTIONS(9268), 1, sym_word, - ACTIONS(9190), 1, - sym_test_operator, - STATE(1744), 1, - aux_sym__literal_repeat1, - ACTIONS(8174), 2, + ACTIONS(9276), 1, + sym__comment_word, + ACTIONS(9536), 1, + anon_sym_DOLLAR, + ACTIONS(9114), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8200), 2, + ACTIONS(9130), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9188), 2, + ACTIONS(9272), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9274), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(673), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1688), 9, + STATE(1402), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247746,50 +251000,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [201435] = 20, - ACTIONS(71), 1, + [205499] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(4943), 1, + ACTIONS(3392), 1, + aux_sym_number_token1, + ACTIONS(3394), 1, + aux_sym_number_token2, + ACTIONS(3398), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3410), 1, + sym__brace_start, + ACTIONS(9474), 1, sym_word, - ACTIONS(4947), 1, + ACTIONS(9478), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4949), 1, - anon_sym_DOLLAR, - ACTIONS(4953), 1, + ACTIONS(9482), 1, anon_sym_DQUOTE, - ACTIONS(4957), 1, - aux_sym_number_token1, - ACTIONS(4959), 1, - aux_sym_number_token2, - ACTIONS(4961), 1, + ACTIONS(9486), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4963), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4965), 1, + ACTIONS(9488), 1, anon_sym_BQUOTE, - ACTIONS(4967), 1, + ACTIONS(9490), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4971), 1, - sym_test_operator, - ACTIONS(4973), 1, - sym__brace_start, - ACTIONS(9192), 1, - sym__special_character, - STATE(2776), 1, - aux_sym__literal_repeat1, - ACTIONS(4945), 2, + ACTIONS(9494), 1, + sym__comment_word, + ACTIONS(9538), 1, + anon_sym_DOLLAR, + ACTIONS(9476), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4955), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4969), 2, + ACTIONS(9480), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9492), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(971), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2489), 9, + ACTIONS(9484), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1822), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247799,50 +251050,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [201508] = 20, - ACTIONS(71), 1, + [205567] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3612), 1, - anon_sym_DOLLAR, - ACTIONS(3616), 1, + ACTIONS(2729), 1, aux_sym_number_token1, - ACTIONS(3618), 1, + ACTIONS(2731), 1, aux_sym_number_token2, - ACTIONS(3622), 1, + ACTIONS(2735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3632), 1, + ACTIONS(2745), 1, sym__brace_start, - ACTIONS(4131), 1, + ACTIONS(9540), 1, sym_word, - ACTIONS(4135), 1, - sym_test_operator, - ACTIONS(8850), 1, + ACTIONS(9544), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8854), 1, + ACTIONS(9546), 1, + anon_sym_DOLLAR, + ACTIONS(9550), 1, anon_sym_DQUOTE, - ACTIONS(8858), 1, + ACTIONS(9554), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8860), 1, + ACTIONS(9556), 1, anon_sym_BQUOTE, - ACTIONS(8862), 1, + ACTIONS(9558), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9086), 1, - sym__special_character, - STATE(2270), 1, - aux_sym__literal_repeat1, - ACTIONS(8848), 2, + ACTIONS(9562), 1, + sym__comment_word, + ACTIONS(9542), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8864), 2, + ACTIONS(9548), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9560), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9088), 2, + ACTIONS(9552), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(788), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1968), 9, + STATE(4277), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247852,51 +251100,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [201581] = 21, - ACTIONS(71), 1, + [205635] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, - anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(2729), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(2731), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(2735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(2745), 1, sym__brace_start, - ACTIONS(9194), 1, + ACTIONS(9540), 1, sym_word, - ACTIONS(9198), 1, + ACTIONS(9544), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9200), 1, - sym__special_character, - ACTIONS(9202), 1, + ACTIONS(9550), 1, anon_sym_DQUOTE, - ACTIONS(9206), 1, + ACTIONS(9554), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9208), 1, + ACTIONS(9556), 1, anon_sym_BQUOTE, - ACTIONS(9210), 1, + ACTIONS(9558), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9214), 1, - sym_test_operator, - ACTIONS(9216), 1, - sym_regex, - STATE(1379), 1, - aux_sym__literal_repeat1, - STATE(1611), 1, - sym_concatenation, - ACTIONS(9196), 2, + ACTIONS(9562), 1, + sym__comment_word, + ACTIONS(9564), 1, + anon_sym_DOLLAR, + ACTIONS(9542), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9204), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9212), 2, + ACTIONS(9548), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9560), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1244), 9, + ACTIONS(9552), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4277), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247906,49 +251150,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [201656] = 19, + [205703] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, + ACTIONS(1530), 1, anon_sym_DOLLAR, - ACTIONS(371), 1, - anon_sym_DQUOTE, - ACTIONS(375), 1, + ACTIONS(1536), 1, aux_sym_number_token1, - ACTIONS(377), 1, + ACTIONS(1538), 1, aux_sym_number_token2, - ACTIONS(379), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, + ACTIONS(1542), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, + ACTIONS(1554), 1, sym__brace_start, - ACTIONS(5809), 1, + ACTIONS(8868), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8872), 1, + anon_sym_DQUOTE, + ACTIONS(8876), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8878), 1, anon_sym_BQUOTE, - ACTIONS(8836), 1, + ACTIONS(8880), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9566), 1, sym_word, - ACTIONS(8844), 1, - sym_test_operator, - ACTIONS(9218), 1, - anon_sym_RBRACK, - ACTIONS(352), 2, + ACTIONS(9572), 1, + sym__comment_word, + ACTIONS(8866), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, + ACTIONS(8882), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8840), 2, + ACTIONS(9568), 2, + sym_test_operator, sym__special_character, - sym__comment_word, - ACTIONS(8842), 3, + ACTIONS(9570), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2730), 9, + STATE(1222), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -247958,50 +251200,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [201727] = 20, - ACTIONS(71), 1, + [205771] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3397), 1, - anon_sym_DOLLAR, - ACTIONS(3401), 1, - aux_sym_number_token1, - ACTIONS(3403), 1, - aux_sym_number_token2, - ACTIONS(3407), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3417), 1, - sym__brace_start, - ACTIONS(3663), 1, - sym_word, - ACTIONS(3667), 1, - sym_test_operator, - ACTIONS(8926), 1, + ACTIONS(707), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8930), 1, + ACTIONS(713), 1, anon_sym_DQUOTE, - ACTIONS(8934), 1, + ACTIONS(717), 1, + aux_sym_number_token1, + ACTIONS(719), 1, + aux_sym_number_token2, + ACTIONS(721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8936), 1, + ACTIONS(723), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(725), 1, anon_sym_BQUOTE, - ACTIONS(8938), 1, + ACTIONS(727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9034), 1, - sym__special_character, - STATE(2161), 1, - aux_sym__literal_repeat1, - ACTIONS(8924), 2, + ACTIONS(737), 1, + sym__brace_start, + ACTIONS(9574), 1, + sym_word, + ACTIONS(9576), 1, + anon_sym_DOLLAR, + ACTIONS(9582), 1, + sym__comment_word, + ACTIONS(705), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8940), 2, + ACTIONS(729), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9036), 2, + ACTIONS(9578), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9580), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(720), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1918), 9, + STATE(903), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248011,49 +251250,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [201800] = 19, + [205839] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(707), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, - anon_sym_DOLLAR, - ACTIONS(371), 1, + ACTIONS(713), 1, anon_sym_DQUOTE, - ACTIONS(375), 1, + ACTIONS(717), 1, aux_sym_number_token1, - ACTIONS(377), 1, + ACTIONS(719), 1, aux_sym_number_token2, - ACTIONS(379), 1, + ACTIONS(721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, + ACTIONS(723), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, + ACTIONS(725), 1, + anon_sym_BQUOTE, + ACTIONS(727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, + ACTIONS(737), 1, sym__brace_start, - ACTIONS(5809), 1, - anon_sym_BQUOTE, - ACTIONS(8836), 1, + ACTIONS(9574), 1, sym_word, - ACTIONS(8844), 1, - sym_test_operator, - ACTIONS(9220), 1, - anon_sym_RBRACK, - ACTIONS(352), 2, + ACTIONS(9582), 1, + sym__comment_word, + ACTIONS(9584), 1, + anon_sym_DOLLAR, + ACTIONS(705), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, + ACTIONS(729), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8840), 2, + ACTIONS(9578), 2, + sym_test_operator, sym__special_character, - sym__comment_word, - ACTIONS(8842), 3, + ACTIONS(9580), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2730), 9, + STATE(903), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248063,51 +251300,100 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [201871] = 21, + [205907] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1551), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, + anon_sym_LPAREN, + ACTIONS(9434), 1, + anon_sym_BANG, + ACTIONS(9440), 1, + anon_sym_TILDE, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(9444), 1, + anon_sym_DQUOTE, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(9450), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, - sym__brace_start, - ACTIONS(9198), 1, + ACTIONS(9454), 1, + anon_sym_BQUOTE, + ACTIONS(9456), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9586), 1, + aux_sym__simple_variable_name_token1, + STATE(2776), 1, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9438), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2836), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [205981] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8024), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9202), 1, + ACTIONS(8030), 1, anon_sym_DQUOTE, - ACTIONS(9206), 1, + ACTIONS(8034), 1, + aux_sym_number_token1, + ACTIONS(8036), 1, + aux_sym_number_token2, + ACTIONS(8038), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9208), 1, + ACTIONS(8040), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8042), 1, anon_sym_BQUOTE, - ACTIONS(9210), 1, + ACTIONS(8044), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9216), 1, - sym_regex, - ACTIONS(9222), 1, + ACTIONS(8054), 1, + sym__brace_start, + ACTIONS(9588), 1, sym_word, - ACTIONS(9224), 1, - sym__special_character, - ACTIONS(9228), 1, - sym_test_operator, - STATE(1379), 1, - aux_sym__literal_repeat1, - STATE(1611), 1, - sym_concatenation, - ACTIONS(9196), 2, + ACTIONS(9590), 1, + anon_sym_DOLLAR, + ACTIONS(9596), 1, + sym__comment_word, + ACTIONS(8020), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9212), 2, + ACTIONS(8046), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9226), 2, + ACTIONS(9592), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9594), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1124), 9, + STATE(4262), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248117,50 +251403,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [201946] = 20, - ACTIONS(71), 1, + [206049] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3333), 1, - sym_word, - ACTIONS(3339), 1, - anon_sym_DOLLAR, - ACTIONS(3343), 1, - aux_sym_number_token1, - ACTIONS(3345), 1, - aux_sym_number_token2, - ACTIONS(3349), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3357), 1, - sym_test_operator, - ACTIONS(3359), 1, - sym__brace_start, - ACTIONS(9046), 1, + ACTIONS(8024), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9048), 1, - sym__special_character, - ACTIONS(9050), 1, + ACTIONS(8030), 1, anon_sym_DQUOTE, - ACTIONS(9054), 1, + ACTIONS(8034), 1, + aux_sym_number_token1, + ACTIONS(8036), 1, + aux_sym_number_token2, + ACTIONS(8038), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9056), 1, + ACTIONS(8040), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8042), 1, anon_sym_BQUOTE, - ACTIONS(9058), 1, + ACTIONS(8044), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2147), 1, - aux_sym__literal_repeat1, - ACTIONS(9044), 2, + ACTIONS(8054), 1, + sym__brace_start, + ACTIONS(9588), 1, + sym_word, + ACTIONS(9596), 1, + sym__comment_word, + ACTIONS(9598), 1, + anon_sym_DOLLAR, + ACTIONS(8020), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9052), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9060), 2, + ACTIONS(8046), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(680), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1526), 9, + ACTIONS(9592), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9594), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4262), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248170,50 +251453,100 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [202019] = 20, + [206117] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8178), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8180), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, + anon_sym_LPAREN, + ACTIONS(9434), 1, + anon_sym_BANG, + ACTIONS(9440), 1, + anon_sym_TILDE, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(8182), 1, - sym__special_character, - ACTIONS(8184), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(8188), 1, + ACTIONS(9446), 1, + aux_sym_number_token1, + ACTIONS(9448), 1, + aux_sym_number_token2, + ACTIONS(9450), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9452), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9454), 1, + anon_sym_BQUOTE, + ACTIONS(9456), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9600), 1, + aux_sym__simple_variable_name_token1, + STATE(2776), 1, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9438), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2880), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [206191] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1536), 1, aux_sym_number_token1, - ACTIONS(8190), 1, + ACTIONS(1538), 1, aux_sym_number_token2, - ACTIONS(8192), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8194), 1, + ACTIONS(1542), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8196), 1, + ACTIONS(1554), 1, + sym__brace_start, + ACTIONS(8868), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8872), 1, + anon_sym_DQUOTE, + ACTIONS(8876), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8878), 1, anon_sym_BQUOTE, - ACTIONS(8198), 1, + ACTIONS(8880), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8208), 1, - sym__brace_start, - ACTIONS(9230), 1, + ACTIONS(9566), 1, sym_word, - ACTIONS(9234), 1, - sym_test_operator, - STATE(1744), 1, - aux_sym__literal_repeat1, - ACTIONS(8174), 2, + ACTIONS(9572), 1, + sym__comment_word, + ACTIONS(9602), 1, + anon_sym_DOLLAR, + ACTIONS(8866), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8200), 2, + ACTIONS(8882), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9232), 2, + ACTIONS(9568), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9570), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(816), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2337), 9, + STATE(1222), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248223,103 +251556,100 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [202092] = 20, + [206259] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(4943), 1, - sym_word, - ACTIONS(4947), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4949), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, + anon_sym_LPAREN, + ACTIONS(9434), 1, + anon_sym_BANG, + ACTIONS(9440), 1, + anon_sym_TILDE, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(4953), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(4957), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(4959), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(4961), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4963), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4965), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(4967), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4971), 1, - sym_test_operator, - ACTIONS(4973), 1, - sym__brace_start, - ACTIONS(9192), 1, - sym__special_character, + ACTIONS(9604), 1, + aux_sym__simple_variable_name_token1, STATE(2776), 1, - aux_sym__literal_repeat1, - ACTIONS(4945), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4955), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4969), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(981), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2489), 9, - sym_arithmetic_expansion, - sym_brace_expression, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9438), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2882), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [202165] = 20, - ACTIONS(71), 1, + [206333] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(8474), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8476), 1, - anon_sym_DOLLAR, - ACTIONS(8478), 1, - sym__special_character, - ACTIONS(8480), 1, - anon_sym_DQUOTE, - ACTIONS(8484), 1, + ACTIONS(1536), 1, aux_sym_number_token1, - ACTIONS(8486), 1, + ACTIONS(1538), 1, aux_sym_number_token2, - ACTIONS(8488), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8490), 1, + ACTIONS(1542), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8492), 1, + ACTIONS(1554), 1, + sym__brace_start, + ACTIONS(8868), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8872), 1, + anon_sym_DQUOTE, + ACTIONS(8876), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8878), 1, anon_sym_BQUOTE, - ACTIONS(8494), 1, + ACTIONS(8880), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8504), 1, - sym__brace_start, - ACTIONS(9174), 1, + ACTIONS(9566), 1, sym_word, - ACTIONS(9178), 1, - sym_test_operator, - STATE(1801), 1, - aux_sym__literal_repeat1, - ACTIONS(8470), 2, + ACTIONS(9572), 1, + sym__comment_word, + ACTIONS(9606), 1, + anon_sym_DOLLAR, + ACTIONS(8866), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8496), 2, + ACTIONS(8882), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9176), 2, + ACTIONS(9568), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9570), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(642), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1399), 9, + STATE(1222), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248329,50 +251659,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [202238] = 20, - ACTIONS(71), 1, + [206401] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(8178), 1, + ACTIONS(8488), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8180), 1, - anon_sym_DOLLAR, - ACTIONS(8182), 1, - sym__special_character, - ACTIONS(8184), 1, + ACTIONS(8494), 1, anon_sym_DQUOTE, - ACTIONS(8188), 1, + ACTIONS(8498), 1, aux_sym_number_token1, - ACTIONS(8190), 1, + ACTIONS(8500), 1, aux_sym_number_token2, - ACTIONS(8192), 1, + ACTIONS(8502), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8194), 1, + ACTIONS(8504), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8196), 1, + ACTIONS(8506), 1, anon_sym_BQUOTE, - ACTIONS(8198), 1, + ACTIONS(8508), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8208), 1, + ACTIONS(8518), 1, sym__brace_start, - ACTIONS(9230), 1, + ACTIONS(9608), 1, sym_word, - ACTIONS(9234), 1, - sym_test_operator, - STATE(1744), 1, - aux_sym__literal_repeat1, - ACTIONS(8174), 2, + ACTIONS(9610), 1, + anon_sym_DOLLAR, + ACTIONS(9616), 1, + sym__comment_word, + ACTIONS(8484), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8200), 2, + ACTIONS(8510), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9232), 2, + ACTIONS(9612), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9614), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(806), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2337), 9, + STATE(1416), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248382,103 +251709,100 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [202311] = 20, + [206469] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3731), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, + anon_sym_LPAREN, + ACTIONS(9434), 1, + anon_sym_BANG, + ACTIONS(9440), 1, + anon_sym_TILDE, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(3737), 1, + ACTIONS(9444), 1, + anon_sym_DQUOTE, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(3739), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(3743), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3755), 1, - sym__brace_start, - ACTIONS(7759), 1, - sym_word, - ACTIONS(7767), 1, - sym_test_operator, - ACTIONS(8820), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8822), 1, - sym__special_character, - ACTIONS(8824), 1, - anon_sym_DQUOTE, - ACTIONS(8828), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8830), 1, + ACTIONS(9452), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(8832), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - STATE(4975), 1, - aux_sym__literal_repeat1, - ACTIONS(8818), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8826), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8834), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3475), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4460), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9618), 1, + aux_sym__simple_variable_name_token1, + STATE(2776), 1, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9438), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2937), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [202384] = 20, - ACTIONS(71), 1, + [206543] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(8178), 1, + ACTIONS(8488), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8180), 1, - anon_sym_DOLLAR, - ACTIONS(8184), 1, + ACTIONS(8494), 1, anon_sym_DQUOTE, - ACTIONS(8188), 1, + ACTIONS(8498), 1, aux_sym_number_token1, - ACTIONS(8190), 1, + ACTIONS(8500), 1, aux_sym_number_token2, - ACTIONS(8192), 1, + ACTIONS(8502), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8194), 1, + ACTIONS(8504), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8196), 1, + ACTIONS(8506), 1, anon_sym_BQUOTE, - ACTIONS(8198), 1, + ACTIONS(8508), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8208), 1, + ACTIONS(8518), 1, sym__brace_start, - ACTIONS(8220), 1, - sym__special_character, - ACTIONS(8978), 1, + ACTIONS(9608), 1, sym_word, - ACTIONS(8982), 1, - sym_test_operator, - STATE(1744), 1, - aux_sym__literal_repeat1, - ACTIONS(8174), 2, + ACTIONS(9616), 1, + sym__comment_word, + ACTIONS(9620), 1, + anon_sym_DOLLAR, + ACTIONS(8484), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8200), 2, + ACTIONS(8510), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8980), 2, + ACTIONS(9612), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9614), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(649), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1370), 9, + STATE(1416), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248488,211 +251812,259 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [202457] = 20, + [206611] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3397), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, + anon_sym_LPAREN, + ACTIONS(9434), 1, + anon_sym_BANG, + ACTIONS(9440), 1, + anon_sym_TILDE, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(3401), 1, + ACTIONS(9444), 1, + anon_sym_DQUOTE, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(3403), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(3407), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3417), 1, - sym__brace_start, - ACTIONS(3663), 1, - sym_word, - ACTIONS(3667), 1, - sym_test_operator, - ACTIONS(8926), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8930), 1, - anon_sym_DQUOTE, - ACTIONS(8934), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8936), 1, + ACTIONS(9452), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(8938), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9034), 1, - sym__special_character, - STATE(2161), 1, - aux_sym__literal_repeat1, - ACTIONS(8924), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8940), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9036), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(719), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1918), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9622), 1, + aux_sym__simple_variable_name_token1, + STATE(2776), 1, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9438), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2849), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [202530] = 21, + [206685] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1587), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, + anon_sym_LPAREN, + ACTIONS(9434), 1, + anon_sym_BANG, + ACTIONS(9440), 1, + anon_sym_TILDE, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(1593), 1, + ACTIONS(9444), 1, + anon_sym_DQUOTE, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(1595), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(1599), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1611), 1, - sym__brace_start, - ACTIONS(9236), 1, - sym_word, - ACTIONS(9240), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9242), 1, - sym__special_character, - ACTIONS(9244), 1, - anon_sym_DQUOTE, - ACTIONS(9248), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9250), 1, + ACTIONS(9452), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9252), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9256), 1, - sym_test_operator, - ACTIONS(9258), 1, - sym_regex, - STATE(1335), 1, - aux_sym__literal_repeat1, - STATE(1673), 1, - sym_concatenation, - ACTIONS(9238), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9254), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1039), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9624), 1, + aux_sym__simple_variable_name_token1, + STATE(2776), 1, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9438), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2752), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [202605] = 20, + [206759] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3612), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, + anon_sym_LPAREN, + ACTIONS(9434), 1, + anon_sym_BANG, + ACTIONS(9440), 1, + anon_sym_TILDE, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(3616), 1, + ACTIONS(9444), 1, + anon_sym_DQUOTE, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(3618), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(3622), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3632), 1, - sym__brace_start, - ACTIONS(4131), 1, - sym_word, - ACTIONS(4135), 1, - sym_test_operator, - ACTIONS(8850), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8854), 1, - anon_sym_DQUOTE, - ACTIONS(8858), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8860), 1, + ACTIONS(9452), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(8862), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9086), 1, - sym__special_character, - STATE(2270), 1, - aux_sym__literal_repeat1, - ACTIONS(8848), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8864), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9088), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(789), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1968), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9626), 1, + aux_sym__simple_variable_name_token1, + STATE(2776), 1, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9438), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2767), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [202678] = 21, + [206833] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1551), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, + anon_sym_LPAREN, + ACTIONS(9434), 1, + anon_sym_BANG, + ACTIONS(9440), 1, + anon_sym_TILDE, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(9444), 1, + anon_sym_DQUOTE, + ACTIONS(9446), 1, + aux_sym_number_token1, + ACTIONS(9448), 1, + aux_sym_number_token2, + ACTIONS(9450), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9452), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9454), 1, + anon_sym_BQUOTE, + ACTIONS(9456), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9628), 1, + aux_sym__simple_variable_name_token1, + STATE(2776), 1, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9438), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2768), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [206907] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1884), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(1886), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(1890), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(1904), 1, sym__brace_start, - ACTIONS(9198), 1, + ACTIONS(7996), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9202), 1, + ACTIONS(8000), 1, anon_sym_DQUOTE, - ACTIONS(9206), 1, + ACTIONS(8004), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9208), 1, + ACTIONS(8006), 1, anon_sym_BQUOTE, - ACTIONS(9210), 1, + ACTIONS(8008), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9216), 1, - sym_regex, - ACTIONS(9260), 1, + ACTIONS(9630), 1, sym_word, - ACTIONS(9262), 1, - sym__special_character, - ACTIONS(9266), 1, - sym_test_operator, - STATE(1379), 1, - aux_sym__literal_repeat1, - STATE(1611), 1, - sym_concatenation, - ACTIONS(9196), 2, + ACTIONS(9632), 1, + anon_sym_DOLLAR, + ACTIONS(9638), 1, + sym__comment_word, + ACTIONS(7992), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9212), 2, + ACTIONS(8010), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9264), 2, + ACTIONS(9634), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9636), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1784), 9, + STATE(1474), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248702,47 +252074,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [202753] = 18, + [206975] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1557), 1, + ACTIONS(1884), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(1886), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(1890), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(1904), 1, sym__brace_start, - ACTIONS(9198), 1, + ACTIONS(7996), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9202), 1, + ACTIONS(8000), 1, anon_sym_DQUOTE, - ACTIONS(9206), 1, + ACTIONS(8004), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9208), 1, + ACTIONS(8006), 1, anon_sym_BQUOTE, - ACTIONS(9210), 1, + ACTIONS(8008), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9268), 1, + ACTIONS(9630), 1, sym_word, - ACTIONS(9270), 1, - anon_sym_DOLLAR, - ACTIONS(9276), 1, + ACTIONS(9638), 1, sym__comment_word, - ACTIONS(9196), 2, + ACTIONS(9640), 1, + anon_sym_DOLLAR, + ACTIONS(7992), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9212), 2, + ACTIONS(8010), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9272), 2, + ACTIONS(9634), 2, sym_test_operator, sym__special_character, - ACTIONS(9274), 3, + ACTIONS(9636), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1189), 9, + STATE(1474), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248752,50 +252124,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [202821] = 21, + [207043] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9304), 1, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(9642), 1, aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(3180), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2790), 9, + STATE(3361), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -248805,47 +252177,47 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [202895] = 18, + [207117] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4086), 1, + ACTIONS(2625), 1, aux_sym_number_token1, - ACTIONS(4088), 1, + ACTIONS(2627), 1, aux_sym_number_token2, - ACTIONS(4092), 1, + ACTIONS(2631), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4102), 1, + ACTIONS(2643), 1, sym__brace_start, - ACTIONS(9306), 1, + ACTIONS(9644), 1, sym_word, - ACTIONS(9310), 1, + ACTIONS(9648), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9312), 1, + ACTIONS(9650), 1, anon_sym_DOLLAR, - ACTIONS(9316), 1, + ACTIONS(9654), 1, anon_sym_DQUOTE, - ACTIONS(9320), 1, + ACTIONS(9658), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9322), 1, + ACTIONS(9660), 1, anon_sym_BQUOTE, - ACTIONS(9324), 1, + ACTIONS(9662), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9328), 1, + ACTIONS(9666), 1, sym__comment_word, - ACTIONS(9308), 2, + ACTIONS(9646), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9314), 2, + ACTIONS(9652), 2, sym_test_operator, sym__special_character, - ACTIONS(9326), 2, + ACTIONS(9664), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9318), 3, + ACTIONS(9656), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4566), 9, + STATE(1699), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248855,97 +252227,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [202963] = 18, + [207185] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4633), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4639), 1, - anon_sym_DQUOTE, - ACTIONS(4643), 1, + ACTIONS(2625), 1, aux_sym_number_token1, - ACTIONS(4645), 1, + ACTIONS(2627), 1, aux_sym_number_token2, - ACTIONS(4647), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4649), 1, + ACTIONS(2631), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4651), 1, - anon_sym_BQUOTE, - ACTIONS(4653), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4659), 1, + ACTIONS(2643), 1, sym__brace_start, - ACTIONS(9330), 1, + ACTIONS(9644), 1, sym_word, - ACTIONS(9332), 1, - anon_sym_DOLLAR, - ACTIONS(9338), 1, - sym__comment_word, - ACTIONS(4631), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4655), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9334), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9336), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2634), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [203031] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(111), 1, + ACTIONS(9648), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(113), 1, - anon_sym_DOLLAR, - ACTIONS(117), 1, + ACTIONS(9654), 1, anon_sym_DQUOTE, - ACTIONS(121), 1, - aux_sym_number_token1, - ACTIONS(123), 1, - aux_sym_number_token2, - ACTIONS(125), 1, + ACTIONS(9658), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(127), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(129), 1, + ACTIONS(9660), 1, anon_sym_BQUOTE, - ACTIONS(131), 1, + ACTIONS(9662), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(141), 1, - sym__brace_start, - ACTIONS(9340), 1, - sym_word, - ACTIONS(9346), 1, + ACTIONS(9666), 1, sym__comment_word, - ACTIONS(109), 2, + ACTIONS(9668), 1, + anon_sym_DOLLAR, + ACTIONS(9646), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(133), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9342), 2, + ACTIONS(9652), 2, sym_test_operator, sym__special_character, - ACTIONS(9344), 3, + ACTIONS(9664), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9656), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(482), 9, + STATE(1699), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -248955,49 +252277,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [203099] = 20, - ACTIONS(71), 1, + [207253] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(5315), 1, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5317), 1, - anon_sym_DOLLAR, - ACTIONS(5321), 1, + ACTIONS(307), 1, anon_sym_DQUOTE, - ACTIONS(5325), 1, + ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(5327), 1, + ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(5329), 1, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5331), 1, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5333), 1, - anon_sym_BQUOTE, - ACTIONS(5335), 1, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5341), 1, + ACTIONS(327), 1, sym__brace_start, - ACTIONS(9348), 1, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + ACTIONS(8854), 1, sym_word, - ACTIONS(9350), 1, - sym__special_character, - ACTIONS(9354), 1, - sym_test_operator, - STATE(5498), 1, - aux_sym__literal_repeat1, - STATE(5555), 1, - sym_concatenation, - ACTIONS(5313), 2, + ACTIONS(8858), 1, + sym__comment_word, + ACTIONS(9670), 1, + anon_sym_DOLLAR, + ACTIONS(288), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5337), 2, + ACTIONS(323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9352), 2, + ACTIONS(8862), 2, + sym_test_operator, + sym__special_character, + ACTIONS(8860), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5347), 9, + STATE(2670), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249007,47 +252327,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [203171] = 18, + [207321] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7996), 1, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7998), 1, - anon_sym_DOLLAR, - ACTIONS(8002), 1, + ACTIONS(307), 1, anon_sym_DQUOTE, - ACTIONS(8006), 1, + ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(8008), 1, + ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(8010), 1, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8012), 1, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8014), 1, - anon_sym_BQUOTE, - ACTIONS(8016), 1, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8026), 1, + ACTIONS(327), 1, sym__brace_start, - ACTIONS(9356), 1, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + ACTIONS(8854), 1, sym_word, - ACTIONS(9362), 1, + ACTIONS(8858), 1, sym__comment_word, - ACTIONS(7992), 2, + ACTIONS(9672), 1, + anon_sym_DOLLAR, + ACTIONS(288), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8018), 2, + ACTIONS(323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9358), 2, + ACTIONS(8862), 2, sym_test_operator, sym__special_character, - ACTIONS(9360), 3, + ACTIONS(8860), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(3510), 9, + STATE(2670), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249057,50 +252377,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [203239] = 21, + [207389] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9390), 1, + ACTIONS(9674), 1, aux_sym__simple_variable_name_token1, - ACTIONS(9392), 1, - sym_variable_name, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3357), 9, + STATE(2769), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -249110,49 +252430,47 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [203313] = 20, - ACTIONS(71), 1, + [207463] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(2636), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2638), 1, - anon_sym_DOLLAR, - ACTIONS(2640), 1, - sym__special_character, - ACTIONS(2642), 1, - anon_sym_DQUOTE, - ACTIONS(2646), 1, + ACTIONS(1460), 1, aux_sym_number_token1, - ACTIONS(2648), 1, + ACTIONS(1462), 1, aux_sym_number_token2, - ACTIONS(2650), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2652), 1, + ACTIONS(1466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2654), 1, + ACTIONS(1478), 1, + sym__brace_start, + ACTIONS(9146), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9150), 1, + anon_sym_DQUOTE, + ACTIONS(9154), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9156), 1, anon_sym_BQUOTE, - ACTIONS(2656), 1, + ACTIONS(9158), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2664), 1, - sym__brace_start, - ACTIONS(9394), 1, + ACTIONS(9676), 1, sym_word, - ACTIONS(9398), 1, - sym_test_operator, - STATE(2352), 1, - aux_sym__literal_repeat1, - STATE(2522), 1, - sym_concatenation, - ACTIONS(2630), 2, + ACTIONS(9678), 1, + anon_sym_DOLLAR, + ACTIONS(9684), 1, + sym__comment_word, + ACTIONS(9144), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2658), 2, + ACTIONS(9160), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9396), 2, + ACTIONS(9680), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9682), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2125), 9, + STATE(1013), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249162,47 +252480,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [203385] = 18, + [207531] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(314), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(316), 1, - anon_sym_DOLLAR, - ACTIONS(320), 1, - anon_sym_DQUOTE, - ACTIONS(324), 1, + ACTIONS(1460), 1, aux_sym_number_token1, - ACTIONS(326), 1, + ACTIONS(1462), 1, aux_sym_number_token2, - ACTIONS(328), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(330), 1, + ACTIONS(1466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(332), 1, + ACTIONS(1478), 1, + sym__brace_start, + ACTIONS(9146), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9150), 1, + anon_sym_DQUOTE, + ACTIONS(9154), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9156), 1, anon_sym_BQUOTE, - ACTIONS(334), 1, + ACTIONS(9158), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(344), 1, - sym__brace_start, - ACTIONS(9400), 1, + ACTIONS(9676), 1, sym_word, - ACTIONS(9406), 1, + ACTIONS(9684), 1, sym__comment_word, - ACTIONS(312), 2, + ACTIONS(9686), 1, + anon_sym_DOLLAR, + ACTIONS(9144), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(336), 2, + ACTIONS(9160), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9402), 2, + ACTIONS(9680), 2, sym_test_operator, sym__special_character, - ACTIONS(9404), 3, + ACTIONS(9682), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1037), 9, + STATE(1013), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249212,206 +252530,147 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [203453] = 21, - ACTIONS(71), 1, + [207599] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, - anon_sym_DOLLAR, - ACTIONS(9290), 1, - anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(3281), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(3283), 1, aux_sym_number_token2, - ACTIONS(9296), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(3287), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, - anon_sym_BQUOTE, - ACTIONS(9302), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9408), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2742), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [203527] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9364), 1, - anon_sym_LPAREN, - ACTIONS(9366), 1, - anon_sym_BANG, - ACTIONS(9372), 1, - anon_sym_TILDE, - ACTIONS(9374), 1, - anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(3297), 1, + sym__brace_start, + ACTIONS(9210), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9214), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, - aux_sym_number_token1, - ACTIONS(9380), 1, - aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9218), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9220), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9222), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(9410), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, - sym__arithmetic_unary_expression, - STATE(3400), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9370), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3355), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(9688), 1, + sym_word, + ACTIONS(9690), 1, + anon_sym_DOLLAR, + ACTIONS(9696), 1, + sym__comment_word, + ACTIONS(9208), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9224), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9692), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9694), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1799), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [203601] = 21, - ACTIONS(71), 1, + sym_process_substitution, + [207667] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(3469), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, - anon_sym_DOLLAR, - ACTIONS(9290), 1, - anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(3281), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(3283), 1, aux_sym_number_token2, - ACTIONS(9296), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(3287), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(3297), 1, + sym__brace_start, + ACTIONS(9210), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9214), 1, + anon_sym_DQUOTE, + ACTIONS(9218), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9220), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9222), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2743), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(9688), 1, + sym_word, + ACTIONS(9696), 1, + sym__comment_word, + ACTIONS(9698), 1, + anon_sym_DOLLAR, + ACTIONS(9208), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9224), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9692), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9694), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1799), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [203675] = 18, + sym_process_substitution, + [207735] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3737), 1, + ACTIONS(3854), 1, aux_sym_number_token1, - ACTIONS(3739), 1, + ACTIONS(3856), 1, aux_sym_number_token2, - ACTIONS(3743), 1, + ACTIONS(3860), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3755), 1, + ACTIONS(3870), 1, sym__brace_start, - ACTIONS(8820), 1, + ACTIONS(9700), 1, + sym_word, + ACTIONS(9704), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8824), 1, + ACTIONS(9706), 1, + anon_sym_DOLLAR, + ACTIONS(9710), 1, anon_sym_DQUOTE, - ACTIONS(8828), 1, + ACTIONS(9714), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8830), 1, + ACTIONS(9716), 1, anon_sym_BQUOTE, - ACTIONS(8832), 1, + ACTIONS(9718), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9412), 1, - sym_word, - ACTIONS(9414), 1, - anon_sym_DOLLAR, - ACTIONS(9420), 1, + ACTIONS(9722), 1, sym__comment_word, - ACTIONS(8818), 2, + ACTIONS(9702), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8834), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9416), 2, + ACTIONS(9708), 2, sym_test_operator, sym__special_character, - ACTIONS(9418), 3, + ACTIONS(9720), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9712), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4810), 9, + STATE(4704), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249421,100 +252680,153 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [203743] = 18, + [207803] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3737), 1, + ACTIONS(3854), 1, aux_sym_number_token1, - ACTIONS(3739), 1, + ACTIONS(3856), 1, aux_sym_number_token2, - ACTIONS(3743), 1, + ACTIONS(3860), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3755), 1, + ACTIONS(3870), 1, sym__brace_start, - ACTIONS(8820), 1, + ACTIONS(9700), 1, + sym_word, + ACTIONS(9704), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8824), 1, + ACTIONS(9710), 1, anon_sym_DQUOTE, - ACTIONS(8828), 1, + ACTIONS(9714), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8830), 1, + ACTIONS(9716), 1, anon_sym_BQUOTE, - ACTIONS(8832), 1, + ACTIONS(9718), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9412), 1, - sym_word, - ACTIONS(9420), 1, + ACTIONS(9722), 1, sym__comment_word, - ACTIONS(9422), 1, + ACTIONS(9724), 1, anon_sym_DOLLAR, - ACTIONS(8818), 2, + ACTIONS(9702), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8834), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9416), 2, + ACTIONS(9708), 2, sym_test_operator, sym__special_character, - ACTIONS(9418), 3, + ACTIONS(9720), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9712), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4810), 9, + STATE(4704), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, - sym_translated_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [207871] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, + anon_sym_LPAREN, + ACTIONS(9434), 1, + anon_sym_BANG, + ACTIONS(9440), 1, + anon_sym_TILDE, + ACTIONS(9442), 1, + anon_sym_DOLLAR, + ACTIONS(9444), 1, + anon_sym_DQUOTE, + ACTIONS(9446), 1, + aux_sym_number_token1, + ACTIONS(9448), 1, + aux_sym_number_token2, + ACTIONS(9450), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9452), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9454), 1, + anon_sym_BQUOTE, + ACTIONS(9456), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9726), 1, + aux_sym__simple_variable_name_token1, + STATE(2776), 1, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9438), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2771), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [203811] = 21, + [207945] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(9424), 1, + ACTIONS(9728), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3349), 9, + STATE(2772), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -249524,50 +252836,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [203885] = 21, + [208019] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3123), 1, sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9426), 1, + ACTIONS(9730), 1, aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2744), 9, + STATE(2773), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -249577,49 +252889,47 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [203959] = 20, - ACTIONS(71), 1, + [208093] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(2636), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2638), 1, - anon_sym_DOLLAR, - ACTIONS(2640), 1, - sym__special_character, - ACTIONS(2642), 1, - anon_sym_DQUOTE, - ACTIONS(2646), 1, + ACTIONS(264), 1, aux_sym_number_token1, - ACTIONS(2648), 1, + ACTIONS(266), 1, aux_sym_number_token2, - ACTIONS(2650), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2652), 1, + ACTIONS(270), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2654), 1, - anon_sym_BQUOTE, - ACTIONS(2656), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2664), 1, + ACTIONS(284), 1, sym__brace_start, - ACTIONS(9428), 1, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1161), 1, + anon_sym_DQUOTE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + ACTIONS(9732), 1, sym_word, - ACTIONS(9432), 1, - sym_test_operator, - STATE(2370), 1, - aux_sym__literal_repeat1, - STATE(2534), 1, - sym_concatenation, - ACTIONS(2630), 2, + ACTIONS(9734), 1, + anon_sym_DOLLAR, + ACTIONS(9740), 1, + sym__comment_word, + ACTIONS(1153), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2658), 2, + ACTIONS(1169), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9430), 2, + ACTIONS(9736), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9738), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2154), 9, + STATE(2735), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249629,99 +252939,100 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [204031] = 20, + [208161] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(4767), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4769), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, + anon_sym_LPAREN, + ACTIONS(9434), 1, + anon_sym_BANG, + ACTIONS(9440), 1, + anon_sym_TILDE, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(4773), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(4777), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(4779), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(4781), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4783), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4785), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(4787), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4793), 1, - sym__brace_start, - ACTIONS(9434), 1, - sym_word, - ACTIONS(9436), 1, - sym__special_character, - ACTIONS(9440), 1, - sym_test_operator, - STATE(5258), 1, - aux_sym__literal_repeat1, - STATE(5543), 1, - sym_concatenation, - ACTIONS(4765), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4789), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(9742), 1, + aux_sym__simple_variable_name_token1, + STATE(2776), 1, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, ACTIONS(9438), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(5173), 9, - sym_arithmetic_expansion, - sym_brace_expression, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3209), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [204103] = 18, + [208235] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(9118), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9120), 1, - anon_sym_DOLLAR, - ACTIONS(9124), 1, - anon_sym_DQUOTE, - ACTIONS(9128), 1, + ACTIONS(264), 1, aux_sym_number_token1, - ACTIONS(9130), 1, + ACTIONS(266), 1, aux_sym_number_token2, - ACTIONS(9132), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9134), 1, + ACTIONS(270), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9136), 1, - anon_sym_BQUOTE, - ACTIONS(9138), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9144), 1, + ACTIONS(284), 1, sym__brace_start, - ACTIONS(9442), 1, + ACTIONS(1155), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1161), 1, + anon_sym_DQUOTE, + ACTIONS(1165), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1167), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + ACTIONS(9732), 1, sym_word, - ACTIONS(9448), 1, + ACTIONS(9740), 1, sym__comment_word, - ACTIONS(9116), 2, + ACTIONS(9744), 1, + anon_sym_DOLLAR, + ACTIONS(1153), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9140), 2, + ACTIONS(1169), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9444), 2, + ACTIONS(9736), 2, sym_test_operator, sym__special_character, - ACTIONS(9446), 3, + ACTIONS(9738), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2401), 9, + STATE(2735), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249731,49 +253042,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [204171] = 20, - ACTIONS(71), 1, + [208303] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(5315), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5317), 1, - anon_sym_DOLLAR, - ACTIONS(5321), 1, - anon_sym_DQUOTE, - ACTIONS(5325), 1, + ACTIONS(2818), 1, aux_sym_number_token1, - ACTIONS(5327), 1, + ACTIONS(2820), 1, aux_sym_number_token2, - ACTIONS(5329), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5331), 1, + ACTIONS(2824), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5333), 1, + ACTIONS(2834), 1, + sym__brace_start, + ACTIONS(9244), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9248), 1, + anon_sym_DQUOTE, + ACTIONS(9252), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9254), 1, anon_sym_BQUOTE, - ACTIONS(5335), 1, + ACTIONS(9256), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5341), 1, - sym__brace_start, - ACTIONS(9350), 1, - sym__special_character, - ACTIONS(9450), 1, + ACTIONS(9746), 1, sym_word, - ACTIONS(9454), 1, - sym_test_operator, - STATE(5447), 1, - aux_sym__literal_repeat1, - STATE(5549), 1, - sym_concatenation, - ACTIONS(5313), 2, + ACTIONS(9748), 1, + anon_sym_DOLLAR, + ACTIONS(9754), 1, + sym__comment_word, + ACTIONS(9242), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5337), 2, + ACTIONS(9258), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9452), 2, + ACTIONS(9750), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9752), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5278), 9, + STATE(1678), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249783,47 +253092,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [204243] = 18, + [208371] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4086), 1, + ACTIONS(2818), 1, aux_sym_number_token1, - ACTIONS(4088), 1, + ACTIONS(2820), 1, aux_sym_number_token2, - ACTIONS(4092), 1, + ACTIONS(2824), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4102), 1, + ACTIONS(2834), 1, sym__brace_start, - ACTIONS(9306), 1, - sym_word, - ACTIONS(9310), 1, + ACTIONS(9244), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9316), 1, + ACTIONS(9248), 1, anon_sym_DQUOTE, - ACTIONS(9320), 1, + ACTIONS(9252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9322), 1, + ACTIONS(9254), 1, anon_sym_BQUOTE, - ACTIONS(9324), 1, + ACTIONS(9256), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9328), 1, + ACTIONS(9746), 1, + sym_word, + ACTIONS(9754), 1, sym__comment_word, - ACTIONS(9456), 1, + ACTIONS(9756), 1, anon_sym_DOLLAR, - ACTIONS(9308), 2, + ACTIONS(9242), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9314), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9326), 2, + ACTIONS(9258), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9318), 3, + ACTIONS(9750), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9752), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4566), 9, + STATE(1678), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249833,49 +253142,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [204311] = 20, - ACTIONS(71), 1, + [208439] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(4767), 1, + ACTIONS(3356), 1, + aux_sym_number_token1, + ACTIONS(3358), 1, + aux_sym_number_token2, + ACTIONS(3362), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3372), 1, + sym__brace_start, + ACTIONS(9758), 1, + sym_word, + ACTIONS(9762), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4769), 1, + ACTIONS(9764), 1, anon_sym_DOLLAR, - ACTIONS(4773), 1, + ACTIONS(9768), 1, anon_sym_DQUOTE, - ACTIONS(4777), 1, - aux_sym_number_token1, - ACTIONS(4779), 1, - aux_sym_number_token2, - ACTIONS(4781), 1, + ACTIONS(9772), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4783), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4785), 1, + ACTIONS(9774), 1, anon_sym_BQUOTE, - ACTIONS(4787), 1, + ACTIONS(9776), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4793), 1, - sym__brace_start, - ACTIONS(9436), 1, - sym__special_character, - ACTIONS(9458), 1, - sym_word, - ACTIONS(9462), 1, - sym_test_operator, - STATE(5292), 1, - aux_sym__literal_repeat1, - STATE(5526), 1, - sym_concatenation, - ACTIONS(4765), 2, + ACTIONS(9780), 1, + sym__comment_word, + ACTIONS(9760), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4789), 2, + ACTIONS(9766), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9778), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9460), 2, + ACTIONS(9770), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5140), 9, + STATE(4467), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249885,49 +253192,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [204383] = 20, - ACTIONS(71), 1, + [208507] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, - anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(3356), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(3358), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(3362), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(3372), 1, sym__brace_start, - ACTIONS(9198), 1, + ACTIONS(9758), 1, + sym_word, + ACTIONS(9762), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9202), 1, + ACTIONS(9768), 1, anon_sym_DQUOTE, - ACTIONS(9206), 1, + ACTIONS(9772), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9208), 1, + ACTIONS(9774), 1, anon_sym_BQUOTE, - ACTIONS(9210), 1, + ACTIONS(9776), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9224), 1, - sym__special_character, - ACTIONS(9464), 1, - sym_word, - ACTIONS(9468), 1, - sym_test_operator, - STATE(1401), 1, - aux_sym__literal_repeat1, - STATE(1573), 1, - sym_concatenation, - ACTIONS(9196), 2, + ACTIONS(9780), 1, + sym__comment_word, + ACTIONS(9782), 1, + anon_sym_DOLLAR, + ACTIONS(9760), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9212), 2, + ACTIONS(9766), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9778), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9466), 2, + ACTIONS(9770), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1109), 9, + STATE(4467), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -249937,50 +253242,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [204455] = 21, + [208575] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(9470), 1, + ACTIONS(9784), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3348), 9, + STATE(2908), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -249990,47 +253295,47 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [204529] = 18, + [208649] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5261), 1, + ACTIONS(8414), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5267), 1, + ACTIONS(8416), 1, + anon_sym_DOLLAR, + ACTIONS(8420), 1, anon_sym_DQUOTE, - ACTIONS(5271), 1, + ACTIONS(8424), 1, aux_sym_number_token1, - ACTIONS(5273), 1, + ACTIONS(8426), 1, aux_sym_number_token2, - ACTIONS(5275), 1, + ACTIONS(8428), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5277), 1, + ACTIONS(8430), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5279), 1, + ACTIONS(8432), 1, anon_sym_BQUOTE, - ACTIONS(5281), 1, + ACTIONS(8434), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5287), 1, + ACTIONS(8444), 1, sym__brace_start, - ACTIONS(9472), 1, + ACTIONS(9786), 1, sym_word, - ACTIONS(9474), 1, - anon_sym_DOLLAR, - ACTIONS(9480), 1, + ACTIONS(9792), 1, sym__comment_word, - ACTIONS(5259), 2, + ACTIONS(8410), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5283), 2, + ACTIONS(8436), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9476), 2, + ACTIONS(9788), 2, sym_test_operator, sym__special_character, - ACTIONS(9478), 3, + ACTIONS(9790), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5440), 9, + STATE(1599), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250040,102 +253345,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [204597] = 21, - ACTIONS(71), 1, + [208717] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, - anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(8166), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8172), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(8176), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(8178), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(8180), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(8182), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(8184), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(8186), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9482), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2745), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [204671] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1551), 1, - anon_sym_DOLLAR, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1563), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(8196), 1, sym__brace_start, - ACTIONS(9198), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9202), 1, - anon_sym_DQUOTE, - ACTIONS(9206), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9208), 1, - anon_sym_BQUOTE, - ACTIONS(9210), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9224), 1, - sym__special_character, - ACTIONS(9484), 1, + ACTIONS(9794), 1, sym_word, - ACTIONS(9488), 1, - sym_test_operator, - STATE(1436), 1, - aux_sym__literal_repeat1, - STATE(1543), 1, - sym_concatenation, - ACTIONS(9196), 2, + ACTIONS(9796), 1, + anon_sym_DOLLAR, + ACTIONS(9802), 1, + sym__comment_word, + ACTIONS(8162), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9212), 2, + ACTIONS(8188), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9486), 2, + ACTIONS(9798), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9800), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1107), 9, + STATE(4487), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250145,100 +253395,97 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [204743] = 21, - ACTIONS(71), 1, + [208785] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(9364), 1, - anon_sym_LPAREN, - ACTIONS(9366), 1, - anon_sym_BANG, - ACTIONS(9372), 1, - anon_sym_TILDE, - ACTIONS(9374), 1, - anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(8166), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8172), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(8176), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(8178), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(8180), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(8182), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(8184), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(8186), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(9490), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, - sym__arithmetic_unary_expression, - STATE(3400), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9370), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3346), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(8196), 1, + sym__brace_start, + ACTIONS(9794), 1, + sym_word, + ACTIONS(9802), 1, + sym__comment_word, + ACTIONS(9804), 1, + anon_sym_DOLLAR, + ACTIONS(8162), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8188), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9798), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9800), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4487), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [204817] = 18, + sym_process_substitution, + [208853] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5261), 1, + ACTIONS(8090), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5267), 1, + ACTIONS(8096), 1, anon_sym_DQUOTE, - ACTIONS(5271), 1, + ACTIONS(8100), 1, aux_sym_number_token1, - ACTIONS(5273), 1, + ACTIONS(8102), 1, aux_sym_number_token2, - ACTIONS(5275), 1, + ACTIONS(8104), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5277), 1, + ACTIONS(8106), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5279), 1, + ACTIONS(8108), 1, anon_sym_BQUOTE, - ACTIONS(5281), 1, + ACTIONS(8110), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5287), 1, + ACTIONS(8120), 1, sym__brace_start, - ACTIONS(9472), 1, + ACTIONS(9806), 1, sym_word, - ACTIONS(9480), 1, - sym__comment_word, - ACTIONS(9492), 1, + ACTIONS(9808), 1, anon_sym_DOLLAR, - ACTIONS(5259), 2, + ACTIONS(9814), 1, + sym__comment_word, + ACTIONS(8086), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5283), 2, + ACTIONS(8112), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9476), 2, + ACTIONS(9810), 2, sym_test_operator, sym__special_character, - ACTIONS(9478), 3, + ACTIONS(9812), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5440), 9, + STATE(1531), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250248,103 +253495,100 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [204885] = 21, - ACTIONS(71), 1, + [208921] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, - anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(8090), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8096), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(8100), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(8102), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(8104), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(8106), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(8108), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(8110), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9494), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2746), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(8120), 1, + sym__brace_start, + ACTIONS(9806), 1, + sym_word, + ACTIONS(9814), 1, + sym__comment_word, + ACTIONS(9816), 1, + anon_sym_DOLLAR, + ACTIONS(8086), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8112), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9810), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9812), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1531), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [204959] = 21, + sym_process_substitution, + [208989] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3602), 1, sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(3776), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(9818), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9820), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9826), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9828), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9830), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9832), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9834), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9836), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9840), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9842), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9496), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, + STATE(3375), 1, sym__arithmetic_binary_expression, - STATE(2803), 1, + STATE(3378), 1, sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(3407), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(3409), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + ACTIONS(9822), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9824), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2741), 9, + STATE(3251), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -250354,50 +253598,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [205033] = 21, + [209063] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(3602), 1, + sym_variable_name, + ACTIONS(4066), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(9818), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9820), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9826), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9828), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9830), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9832), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9834), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9836), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9840), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9842), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(9498), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, + STATE(3375), 1, sym__arithmetic_binary_expression, - STATE(3396), 1, + STATE(3378), 1, sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(3407), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(3409), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + ACTIONS(9822), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9824), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3362), 9, + STATE(3252), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -250407,50 +253651,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [205107] = 21, + [209137] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3600), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3602), 1, sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(9818), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9820), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9826), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9828), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9830), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9832), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9834), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9836), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9840), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9842), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9500), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, + STATE(3375), 1, sym__arithmetic_binary_expression, - STATE(2803), 1, + STATE(3378), 1, sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(3407), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(3409), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + ACTIONS(9822), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9824), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2890), 9, + STATE(3254), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -250460,47 +253704,47 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [205181] = 18, + [209211] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4151), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4153), 1, - anon_sym_DOLLAR, - ACTIONS(4157), 1, - anon_sym_DQUOTE, - ACTIONS(4161), 1, + ACTIONS(2044), 1, aux_sym_number_token1, - ACTIONS(4163), 1, + ACTIONS(2046), 1, aux_sym_number_token2, - ACTIONS(4165), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4167), 1, + ACTIONS(2050), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4169), 1, + ACTIONS(2064), 1, + sym__brace_start, + ACTIONS(8062), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8066), 1, + anon_sym_DQUOTE, + ACTIONS(8070), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8072), 1, anon_sym_BQUOTE, - ACTIONS(4171), 1, + ACTIONS(8074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4181), 1, - sym__brace_start, - ACTIONS(9502), 1, + ACTIONS(9844), 1, sym_word, - ACTIONS(9508), 1, + ACTIONS(9846), 1, + anon_sym_DOLLAR, + ACTIONS(9852), 1, sym__comment_word, - ACTIONS(4149), 2, + ACTIONS(8058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4173), 2, + ACTIONS(8076), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9504), 2, + ACTIONS(9848), 2, sym_test_operator, sym__special_character, - ACTIONS(9506), 3, + ACTIONS(9850), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2580), 9, + STATE(1484), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250510,47 +253754,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [205249] = 18, + [209279] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, - anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(2044), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(2046), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(2050), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(2064), 1, sym__brace_start, - ACTIONS(9198), 1, + ACTIONS(8062), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9202), 1, + ACTIONS(8066), 1, anon_sym_DQUOTE, - ACTIONS(9206), 1, + ACTIONS(8070), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9208), 1, + ACTIONS(8072), 1, anon_sym_BQUOTE, - ACTIONS(9210), 1, + ACTIONS(8074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9268), 1, + ACTIONS(9844), 1, sym_word, - ACTIONS(9276), 1, + ACTIONS(9852), 1, sym__comment_word, - ACTIONS(9196), 2, + ACTIONS(9854), 1, + anon_sym_DOLLAR, + ACTIONS(8058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9212), 2, + ACTIONS(8076), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9272), 2, + ACTIONS(9848), 2, sym_test_operator, sym__special_character, - ACTIONS(9274), 3, + ACTIONS(9850), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1189), 9, + STATE(1484), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250560,49 +253804,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [205317] = 20, - ACTIONS(71), 1, + [209347] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(8512), 1, + ACTIONS(8414), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8514), 1, - anon_sym_DOLLAR, - ACTIONS(8516), 1, - sym__special_character, - ACTIONS(8518), 1, + ACTIONS(8420), 1, anon_sym_DQUOTE, - ACTIONS(8522), 1, + ACTIONS(8424), 1, aux_sym_number_token1, - ACTIONS(8524), 1, + ACTIONS(8426), 1, aux_sym_number_token2, - ACTIONS(8526), 1, + ACTIONS(8428), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8528), 1, + ACTIONS(8430), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8530), 1, + ACTIONS(8432), 1, anon_sym_BQUOTE, - ACTIONS(8532), 1, + ACTIONS(8434), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8542), 1, + ACTIONS(8444), 1, sym__brace_start, - ACTIONS(9510), 1, + ACTIONS(9786), 1, sym_word, - ACTIONS(9514), 1, - sym_test_operator, - STATE(2703), 1, - aux_sym__literal_repeat1, - STATE(2905), 1, - sym_concatenation, - ACTIONS(8508), 2, + ACTIONS(9792), 1, + sym__comment_word, + ACTIONS(9856), 1, + anon_sym_DOLLAR, + ACTIONS(8410), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8534), 2, + ACTIONS(8436), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9512), 2, + ACTIONS(9788), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9790), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2436), 9, + STATE(1599), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250612,47 +253854,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [205389] = 18, + [209415] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3616), 1, + ACTIONS(3249), 1, aux_sym_number_token1, - ACTIONS(3618), 1, + ACTIONS(3251), 1, aux_sym_number_token2, - ACTIONS(3622), 1, + ACTIONS(3255), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3267), 1, sym__brace_start, - ACTIONS(8850), 1, + ACTIONS(9858), 1, + sym_word, + ACTIONS(9862), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8854), 1, + ACTIONS(9864), 1, + anon_sym_DOLLAR, + ACTIONS(9868), 1, anon_sym_DQUOTE, - ACTIONS(8858), 1, + ACTIONS(9872), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8860), 1, + ACTIONS(9874), 1, anon_sym_BQUOTE, - ACTIONS(8862), 1, + ACTIONS(9876), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9516), 1, - sym_word, - ACTIONS(9518), 1, - anon_sym_DOLLAR, - ACTIONS(9524), 1, + ACTIONS(9880), 1, sym__comment_word, - ACTIONS(8848), 2, + ACTIONS(9860), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8864), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9520), 2, + ACTIONS(9866), 2, sym_test_operator, sym__special_character, - ACTIONS(9522), 3, + ACTIONS(9878), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9870), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2210), 9, + STATE(1880), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250662,49 +253904,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [205457] = 20, + [209483] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8512), 1, + ACTIONS(8090), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8514), 1, + ACTIONS(8092), 1, anon_sym_DOLLAR, - ACTIONS(8516), 1, - sym__special_character, - ACTIONS(8518), 1, + ACTIONS(8096), 1, anon_sym_DQUOTE, - ACTIONS(8522), 1, + ACTIONS(8100), 1, aux_sym_number_token1, - ACTIONS(8524), 1, + ACTIONS(8102), 1, aux_sym_number_token2, - ACTIONS(8526), 1, + ACTIONS(8104), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8528), 1, + ACTIONS(8106), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8530), 1, + ACTIONS(8108), 1, anon_sym_BQUOTE, - ACTIONS(8532), 1, + ACTIONS(8110), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8542), 1, + ACTIONS(8120), 1, sym__brace_start, - ACTIONS(9526), 1, + ACTIONS(8476), 1, + sym__special_character, + ACTIONS(9882), 1, sym_word, - ACTIONS(9530), 1, + ACTIONS(9886), 1, sym_test_operator, - STATE(2689), 1, + STATE(1790), 1, aux_sym__literal_repeat1, - STATE(2940), 1, + STATE(1938), 1, sym_concatenation, - ACTIONS(8508), 2, + ACTIONS(8086), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8534), 2, + ACTIONS(8112), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9528), 2, + ACTIONS(9884), 2, sym_raw_string, sym_ansi_c_string, - STATE(2413), 9, + STATE(1438), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250714,47 +253956,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [205529] = 18, - ACTIONS(3), 1, + [209555] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3616), 1, - aux_sym_number_token1, - ACTIONS(3618), 1, - aux_sym_number_token2, - ACTIONS(3622), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3632), 1, - sym__brace_start, - ACTIONS(8850), 1, + ACTIONS(8090), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8854), 1, + ACTIONS(8092), 1, + anon_sym_DOLLAR, + ACTIONS(8096), 1, anon_sym_DQUOTE, - ACTIONS(8858), 1, + ACTIONS(8100), 1, + aux_sym_number_token1, + ACTIONS(8102), 1, + aux_sym_number_token2, + ACTIONS(8104), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8860), 1, + ACTIONS(8106), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8108), 1, anon_sym_BQUOTE, - ACTIONS(8862), 1, + ACTIONS(8110), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9516), 1, + ACTIONS(8120), 1, + sym__brace_start, + ACTIONS(8476), 1, + sym__special_character, + ACTIONS(9888), 1, sym_word, - ACTIONS(9524), 1, - sym__comment_word, - ACTIONS(9532), 1, - anon_sym_DOLLAR, - ACTIONS(8848), 2, + ACTIONS(9892), 1, + sym_test_operator, + STATE(1795), 1, + aux_sym__literal_repeat1, + STATE(1947), 1, + sym_concatenation, + ACTIONS(8086), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8864), 2, + ACTIONS(8112), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9520), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9522), 3, - sym__bare_dollar, + ACTIONS(9890), 2, sym_raw_string, sym_ansi_c_string, - STATE(2210), 9, + STATE(1476), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250764,47 +254008,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [205597] = 18, + [209627] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4820), 1, + ACTIONS(47), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4822), 1, - anon_sym_DOLLAR, - ACTIONS(4826), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(4830), 1, + ACTIONS(57), 1, aux_sym_number_token1, - ACTIONS(4832), 1, + ACTIONS(59), 1, aux_sym_number_token2, - ACTIONS(4834), 1, + ACTIONS(61), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4836), 1, + ACTIONS(63), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4838), 1, + ACTIONS(65), 1, anon_sym_BQUOTE, - ACTIONS(4840), 1, + ACTIONS(67), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4848), 1, + ACTIONS(79), 1, sym__brace_start, - ACTIONS(9534), 1, + ACTIONS(9894), 1, sym_word, - ACTIONS(9540), 1, + ACTIONS(9896), 1, + anon_sym_DOLLAR, + ACTIONS(9902), 1, sym__comment_word, - ACTIONS(4818), 2, + ACTIONS(45), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4842), 2, + ACTIONS(69), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9536), 2, + ACTIONS(9898), 2, sym_test_operator, sym__special_character, - ACTIONS(9538), 3, + ACTIONS(9900), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2707), 9, + STATE(1058), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250814,49 +254058,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [205665] = 20, - ACTIONS(71), 1, + [209695] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(5870), 1, - anon_sym_DOLLAR, - ACTIONS(5876), 1, + ACTIONS(3249), 1, aux_sym_number_token1, - ACTIONS(5878), 1, + ACTIONS(3251), 1, aux_sym_number_token2, - ACTIONS(5882), 1, + ACTIONS(3255), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5892), 1, + ACTIONS(3267), 1, sym__brace_start, - ACTIONS(9542), 1, + ACTIONS(9858), 1, sym_word, - ACTIONS(9546), 1, + ACTIONS(9862), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9548), 1, - sym__special_character, - ACTIONS(9550), 1, + ACTIONS(9868), 1, anon_sym_DQUOTE, - ACTIONS(9554), 1, + ACTIONS(9872), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9556), 1, + ACTIONS(9874), 1, anon_sym_BQUOTE, - ACTIONS(9558), 1, + ACTIONS(9876), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9562), 1, - sym_test_operator, - STATE(5651), 1, - aux_sym__literal_repeat1, - STATE(5744), 1, - sym_concatenation, - ACTIONS(9544), 2, + ACTIONS(9880), 1, + sym__comment_word, + ACTIONS(9904), 1, + anon_sym_DOLLAR, + ACTIONS(9860), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9552), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9560), 2, + ACTIONS(9866), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9878), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(5616), 9, + ACTIONS(9870), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1880), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -250866,102 +254108,209 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [205737] = 20, + [209763] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(5870), 1, + ACTIONS(3602), 1, + sym_variable_name, + ACTIONS(9818), 1, + anon_sym_LPAREN, + ACTIONS(9820), 1, + anon_sym_BANG, + ACTIONS(9826), 1, + anon_sym_TILDE, + ACTIONS(9828), 1, anon_sym_DOLLAR, - ACTIONS(5876), 1, + ACTIONS(9830), 1, + anon_sym_DQUOTE, + ACTIONS(9832), 1, aux_sym_number_token1, - ACTIONS(5878), 1, + ACTIONS(9834), 1, aux_sym_number_token2, - ACTIONS(5882), 1, + ACTIONS(9836), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5892), 1, - sym__brace_start, - ACTIONS(9546), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9548), 1, - sym__special_character, - ACTIONS(9550), 1, + ACTIONS(9840), 1, + anon_sym_BQUOTE, + ACTIONS(9842), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9906), 1, + aux_sym__simple_variable_name_token1, + STATE(3375), 1, + sym__arithmetic_binary_expression, + STATE(3378), 1, + sym__arithmetic_ternary_expression, + STATE(3407), 1, + sym__arithmetic_unary_expression, + STATE(3409), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9822), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9824), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3315), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [209837] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3602), 1, + sym_variable_name, + ACTIONS(9818), 1, + anon_sym_LPAREN, + ACTIONS(9820), 1, + anon_sym_BANG, + ACTIONS(9826), 1, + anon_sym_TILDE, + ACTIONS(9828), 1, + anon_sym_DOLLAR, + ACTIONS(9830), 1, anon_sym_DQUOTE, - ACTIONS(9554), 1, + ACTIONS(9832), 1, + aux_sym_number_token1, + ACTIONS(9834), 1, + aux_sym_number_token2, + ACTIONS(9836), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9556), 1, + ACTIONS(9838), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9840), 1, anon_sym_BQUOTE, - ACTIONS(9558), 1, + ACTIONS(9842), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9564), 1, - sym_word, - ACTIONS(9568), 1, - sym_test_operator, - STATE(5643), 1, - aux_sym__literal_repeat1, - STATE(5747), 1, - sym_concatenation, - ACTIONS(9544), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9560), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9566), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(5605), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9908), 1, + aux_sym__simple_variable_name_token1, + STATE(3375), 1, + sym__arithmetic_binary_expression, + STATE(3378), 1, + sym__arithmetic_ternary_expression, + STATE(3407), 1, + sym__arithmetic_unary_expression, + STATE(3409), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9822), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9824), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3317), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [209911] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3602), 1, + sym_variable_name, + ACTIONS(9818), 1, + anon_sym_LPAREN, + ACTIONS(9820), 1, + anon_sym_BANG, + ACTIONS(9826), 1, + anon_sym_TILDE, + ACTIONS(9828), 1, + anon_sym_DOLLAR, + ACTIONS(9830), 1, + anon_sym_DQUOTE, + ACTIONS(9832), 1, + aux_sym_number_token1, + ACTIONS(9834), 1, + aux_sym_number_token2, + ACTIONS(9836), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9838), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9840), 1, + anon_sym_BQUOTE, + ACTIONS(9842), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9910), 1, + aux_sym__simple_variable_name_token1, + STATE(3375), 1, + sym__arithmetic_binary_expression, + STATE(3378), 1, + sym__arithmetic_ternary_expression, + STATE(3407), 1, + sym__arithmetic_unary_expression, + STATE(3409), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9822), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9824), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3318), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [205809] = 21, + [209985] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3602), 1, sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(9818), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9820), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9826), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9828), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9830), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9832), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9834), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9836), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9840), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9842), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9570), 1, + ACTIONS(9912), 1, aux_sym__simple_variable_name_token1, - STATE(2801), 1, + STATE(3375), 1, sym__arithmetic_binary_expression, - STATE(2803), 1, + STATE(3378), 1, sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(3407), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(3409), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + ACTIONS(9822), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9824), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2740), 9, + STATE(3319), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -250971,50 +254320,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [205883] = 21, + [210059] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(3602), 1, + sym_variable_name, + ACTIONS(9818), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9820), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9826), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9828), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9830), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9832), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9834), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9836), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9840), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9842), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(9572), 1, + ACTIONS(9914), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, + STATE(3375), 1, sym__arithmetic_binary_expression, - STATE(3396), 1, + STATE(3378), 1, sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(3407), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(3409), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + ACTIONS(9822), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9824), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3363), 9, + STATE(3320), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -251024,50 +254373,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [205957] = 21, + [210133] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(3602), 1, + sym_variable_name, + ACTIONS(9818), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9820), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9826), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9828), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9830), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9832), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9834), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9836), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9840), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9842), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(9574), 1, + ACTIONS(9916), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, + STATE(3375), 1, sym__arithmetic_binary_expression, - STATE(3396), 1, + STATE(3378), 1, sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(3407), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(3409), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + ACTIONS(9822), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9824), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3344), 9, + STATE(3322), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -251077,50 +254426,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [206031] = 21, + [210207] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3602), 1, sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(9818), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9820), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9826), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9828), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9830), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9832), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9834), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9836), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9840), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9842), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9576), 1, + ACTIONS(9918), 1, aux_sym__simple_variable_name_token1, - STATE(2801), 1, + STATE(3375), 1, sym__arithmetic_binary_expression, - STATE(2803), 1, + STATE(3378), 1, sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(3407), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(3409), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + ACTIONS(9822), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9824), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2747), 9, + STATE(3323), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -251130,200 +254479,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [206105] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1563), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, - sym__brace_start, - ACTIONS(9198), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9202), 1, - anon_sym_DQUOTE, - ACTIONS(9206), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9208), 1, - anon_sym_BQUOTE, - ACTIONS(9210), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9268), 1, - sym_word, - ACTIONS(9276), 1, - sym__comment_word, - ACTIONS(9578), 1, - anon_sym_DOLLAR, - ACTIONS(9196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9212), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9272), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9274), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1189), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [206173] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2269), 1, - aux_sym_number_token1, - ACTIONS(2271), 1, - aux_sym_number_token2, - ACTIONS(2275), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2289), 1, - sym__brace_start, - ACTIONS(8066), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8070), 1, - anon_sym_DQUOTE, - ACTIONS(8074), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8076), 1, - anon_sym_BQUOTE, - ACTIONS(8078), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9580), 1, - sym_word, - ACTIONS(9582), 1, - anon_sym_DOLLAR, - ACTIONS(9588), 1, - sym__comment_word, - ACTIONS(8062), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8080), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9584), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9586), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [206241] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2269), 1, - aux_sym_number_token1, - ACTIONS(2271), 1, - aux_sym_number_token2, - ACTIONS(2275), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2289), 1, - sym__brace_start, - ACTIONS(8066), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8070), 1, - anon_sym_DQUOTE, - ACTIONS(8074), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8076), 1, - anon_sym_BQUOTE, - ACTIONS(8078), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9580), 1, - sym_word, - ACTIONS(9588), 1, - sym__comment_word, - ACTIONS(9590), 1, - anon_sym_DOLLAR, - ACTIONS(8062), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8080), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9584), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9586), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1623), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [206309] = 21, + [210281] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(3602), 1, + sym_variable_name, + ACTIONS(9818), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9820), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9826), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9828), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9830), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9832), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9834), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9836), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9840), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9842), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(9592), 1, + ACTIONS(9920), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, + STATE(3375), 1, sym__arithmetic_binary_expression, - STATE(3396), 1, + STATE(3378), 1, sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(3407), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(3409), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + ACTIONS(9822), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9824), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3343), 9, + STATE(3324), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -251333,50 +254532,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [206383] = 21, + [210355] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3602), 1, sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(9818), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9820), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9826), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9828), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9830), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9832), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9834), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9836), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9840), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9842), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9594), 1, + ACTIONS(9922), 1, aux_sym__simple_variable_name_token1, - STATE(2801), 1, + STATE(3375), 1, sym__arithmetic_binary_expression, - STATE(2803), 1, + STATE(3378), 1, sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(3407), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(3409), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + ACTIONS(9822), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9824), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2748), 9, + STATE(3325), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -251386,100 +254585,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [206457] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1563), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, - sym__brace_start, - ACTIONS(9198), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9202), 1, - anon_sym_DQUOTE, - ACTIONS(9206), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9208), 1, - anon_sym_BQUOTE, - ACTIONS(9210), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9268), 1, - sym_word, - ACTIONS(9276), 1, - sym__comment_word, - ACTIONS(9596), 1, - anon_sym_DOLLAR, - ACTIONS(9196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9212), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9272), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9274), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1189), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [206525] = 21, + [210429] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(3602), 1, + sym_variable_name, + ACTIONS(9818), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9820), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9826), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9828), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9830), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9832), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9834), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9836), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9840), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9842), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(9598), 1, + ACTIONS(9924), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, + STATE(3375), 1, sym__arithmetic_binary_expression, - STATE(3396), 1, + STATE(3378), 1, sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(3407), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(3409), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + ACTIONS(9822), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9824), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3342), 9, + STATE(3326), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -251489,100 +254638,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [206599] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8102), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8108), 1, - anon_sym_DQUOTE, - ACTIONS(8112), 1, - aux_sym_number_token1, - ACTIONS(8114), 1, - aux_sym_number_token2, - ACTIONS(8116), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8118), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8120), 1, - anon_sym_BQUOTE, - ACTIONS(8122), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8132), 1, - sym__brace_start, - ACTIONS(9600), 1, - sym_word, - ACTIONS(9602), 1, - anon_sym_DOLLAR, - ACTIONS(9608), 1, - sym__comment_word, - ACTIONS(8098), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8124), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9604), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9606), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1199), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [206667] = 21, + [210503] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3602), 1, sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(9818), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9820), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9826), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9828), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9830), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9832), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9834), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9836), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9840), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9842), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9610), 1, + ACTIONS(9926), 1, aux_sym__simple_variable_name_token1, - STATE(2801), 1, + STATE(3375), 1, sym__arithmetic_binary_expression, - STATE(2803), 1, + STATE(3378), 1, sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(3407), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(3409), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + ACTIONS(9822), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9824), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2749), 9, + STATE(3327), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -251592,50 +254691,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [206741] = 21, + [210577] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(3602), 1, + sym_variable_name, + ACTIONS(9818), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9820), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9826), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9828), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9830), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9832), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9834), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9836), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9840), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9842), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(9612), 1, + ACTIONS(9928), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, + STATE(3375), 1, sym__arithmetic_binary_expression, - STATE(3396), 1, + STATE(3378), 1, sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(3407), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(3409), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + ACTIONS(9822), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9824), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3341), 9, + STATE(3328), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -251645,50 +254744,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [206815] = 21, + [210651] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3602), 1, sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(9818), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9820), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9826), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9828), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9830), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9832), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9834), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9836), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9840), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9842), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9614), 1, + ACTIONS(9930), 1, aux_sym__simple_variable_name_token1, - STATE(2801), 1, + STATE(3375), 1, sym__arithmetic_binary_expression, - STATE(2803), 1, + STATE(3378), 1, sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(3407), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(3409), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + ACTIONS(9822), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9824), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2750), 9, + STATE(3329), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -251698,47 +254797,47 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [206889] = 18, + [210725] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8102), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8108), 1, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(8112), 1, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(8114), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(8116), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8118), 1, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8120), 1, - anon_sym_BQUOTE, - ACTIONS(8122), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8132), 1, + ACTIONS(1139), 1, sym__brace_start, - ACTIONS(9600), 1, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + ACTIONS(9464), 1, sym_word, - ACTIONS(9608), 1, + ACTIONS(9472), 1, sym__comment_word, - ACTIONS(9616), 1, + ACTIONS(9932), 1, anon_sym_DOLLAR, - ACTIONS(8098), 2, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8124), 2, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9604), 2, + ACTIONS(9468), 2, sym_test_operator, sym__special_character, - ACTIONS(9606), 3, + ACTIONS(9470), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1199), 9, + STATE(2365), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251748,47 +254847,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [206957] = 18, + [210793] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(371), 1, - anon_sym_DQUOTE, - ACTIONS(375), 1, + ACTIONS(1500), 1, aux_sym_number_token1, - ACTIONS(377), 1, + ACTIONS(1502), 1, aux_sym_number_token2, - ACTIONS(379), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, + ACTIONS(1506), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, + ACTIONS(1518), 1, sym__brace_start, - ACTIONS(5809), 1, + ACTIONS(9066), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9070), 1, + anon_sym_DQUOTE, + ACTIONS(9074), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9076), 1, anon_sym_BQUOTE, - ACTIONS(8836), 1, + ACTIONS(9078), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9934), 1, sym_word, - ACTIONS(8840), 1, - sym__comment_word, - ACTIONS(9618), 1, + ACTIONS(9936), 1, anon_sym_DOLLAR, - ACTIONS(352), 2, + ACTIONS(9942), 1, + sym__comment_word, + ACTIONS(9064), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, + ACTIONS(9080), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8844), 2, + ACTIONS(9938), 2, sym_test_operator, sym__special_character, - ACTIONS(8842), 3, + ACTIONS(9940), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2730), 9, + STATE(1221), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251798,47 +254897,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207025] = 18, + [210861] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2636), 1, + ACTIONS(8414), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2638), 1, - anon_sym_DOLLAR, - ACTIONS(2642), 1, + ACTIONS(8420), 1, anon_sym_DQUOTE, - ACTIONS(2646), 1, + ACTIONS(8424), 1, aux_sym_number_token1, - ACTIONS(2648), 1, + ACTIONS(8426), 1, aux_sym_number_token2, - ACTIONS(2650), 1, + ACTIONS(8428), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2652), 1, + ACTIONS(8430), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2654), 1, + ACTIONS(8432), 1, anon_sym_BQUOTE, - ACTIONS(2656), 1, + ACTIONS(8434), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2664), 1, + ACTIONS(8444), 1, sym__brace_start, - ACTIONS(9620), 1, + ACTIONS(9786), 1, sym_word, - ACTIONS(9626), 1, + ACTIONS(9792), 1, sym__comment_word, - ACTIONS(2630), 2, + ACTIONS(9944), 1, + anon_sym_DOLLAR, + ACTIONS(8410), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2658), 2, + ACTIONS(8436), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9622), 2, + ACTIONS(9788), 2, sym_test_operator, sym__special_character, - ACTIONS(9624), 3, + ACTIONS(9790), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2344), 9, + STATE(1599), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251848,100 +254947,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207093] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9364), 1, - anon_sym_LPAREN, - ACTIONS(9366), 1, - anon_sym_BANG, - ACTIONS(9372), 1, - anon_sym_TILDE, - ACTIONS(9374), 1, - anon_sym_DOLLAR, - ACTIONS(9376), 1, - anon_sym_DQUOTE, - ACTIONS(9378), 1, - aux_sym_number_token1, - ACTIONS(9380), 1, - aux_sym_number_token2, - ACTIONS(9382), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, - anon_sym_BQUOTE, - ACTIONS(9388), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(9628), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, - sym__arithmetic_unary_expression, - STATE(3400), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9370), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3340), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [207167] = 18, + [210929] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(363), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(371), 1, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(375), 1, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(377), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(379), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, + ACTIONS(1139), 1, sym__brace_start, - ACTIONS(5809), 1, + ACTIONS(3119), 1, anon_sym_BQUOTE, - ACTIONS(8836), 1, + ACTIONS(9464), 1, sym_word, - ACTIONS(8840), 1, + ACTIONS(9472), 1, sym__comment_word, - ACTIONS(9630), 1, + ACTIONS(9946), 1, anon_sym_DOLLAR, - ACTIONS(352), 2, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8844), 2, + ACTIONS(9468), 2, sym_test_operator, sym__special_character, - ACTIONS(8842), 3, + ACTIONS(9470), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2730), 9, + STATE(2365), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -251951,49 +254997,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207235] = 20, - ACTIONS(71), 1, + [210997] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3787), 1, - anon_sym_DOLLAR, - ACTIONS(3793), 1, - aux_sym_number_token1, - ACTIONS(3795), 1, - aux_sym_number_token2, - ACTIONS(3799), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3809), 1, - sym__brace_start, - ACTIONS(9632), 1, - sym_word, - ACTIONS(9636), 1, + ACTIONS(357), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9638), 1, - sym__special_character, - ACTIONS(9640), 1, + ACTIONS(363), 1, anon_sym_DQUOTE, - ACTIONS(9644), 1, + ACTIONS(367), 1, + aux_sym_number_token1, + ACTIONS(369), 1, + aux_sym_number_token2, + ACTIONS(371), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9646), 1, + ACTIONS(373), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(375), 1, anon_sym_BQUOTE, - ACTIONS(9648), 1, + ACTIONS(377), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9652), 1, - sym_test_operator, - STATE(4347), 1, - aux_sym__literal_repeat1, - STATE(4617), 1, - sym_concatenation, - ACTIONS(9634), 2, + ACTIONS(387), 1, + sym__brace_start, + ACTIONS(9948), 1, + sym_word, + ACTIONS(9950), 1, + anon_sym_DOLLAR, + ACTIONS(9956), 1, + sym__comment_word, + ACTIONS(355), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9642), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9650), 2, + ACTIONS(379), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(4604), 9, + ACTIONS(9952), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9954), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1101), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252003,49 +255047,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207307] = 20, - ACTIONS(71), 1, + [211065] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(5405), 1, + ACTIONS(357), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5407), 1, - anon_sym_DOLLAR, - ACTIONS(5409), 1, - sym__special_character, - ACTIONS(5411), 1, + ACTIONS(363), 1, anon_sym_DQUOTE, - ACTIONS(5415), 1, + ACTIONS(367), 1, aux_sym_number_token1, - ACTIONS(5417), 1, + ACTIONS(369), 1, aux_sym_number_token2, - ACTIONS(5419), 1, + ACTIONS(371), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5421), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5423), 1, + ACTIONS(375), 1, anon_sym_BQUOTE, - ACTIONS(5425), 1, + ACTIONS(377), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5431), 1, + ACTIONS(387), 1, sym__brace_start, - ACTIONS(9654), 1, + ACTIONS(9948), 1, sym_word, - ACTIONS(9658), 1, - sym_test_operator, - STATE(5544), 1, - aux_sym__literal_repeat1, - STATE(5629), 1, - sym_concatenation, - ACTIONS(5403), 2, + ACTIONS(9956), 1, + sym__comment_word, + ACTIONS(9958), 1, + anon_sym_DOLLAR, + ACTIONS(355), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5427), 2, + ACTIONS(379), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9656), 2, + ACTIONS(9952), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9954), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5412), 9, + STATE(1101), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252055,49 +255097,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207379] = 20, - ACTIONS(71), 1, + [211133] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3787), 1, + ACTIONS(299), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(3793), 1, + ACTIONS(307), 1, + anon_sym_DQUOTE, + ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(3795), 1, + ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(3799), 1, + ACTIONS(315), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3809), 1, + ACTIONS(321), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(327), 1, sym__brace_start, - ACTIONS(9636), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9638), 1, - sym__special_character, - ACTIONS(9640), 1, - anon_sym_DQUOTE, - ACTIONS(9644), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9646), 1, + ACTIONS(5884), 1, anon_sym_BQUOTE, - ACTIONS(9648), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9660), 1, + ACTIONS(8854), 1, sym_word, - ACTIONS(9664), 1, - sym_test_operator, - STATE(4294), 1, - aux_sym__literal_repeat1, - STATE(4861), 1, - sym_concatenation, - ACTIONS(9634), 2, + ACTIONS(8858), 1, + sym__comment_word, + ACTIONS(288), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9650), 2, + ACTIONS(323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9662), 2, + ACTIONS(8862), 2, + sym_test_operator, + sym__special_character, + ACTIONS(8860), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4477), 9, + STATE(2670), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252107,102 +255147,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207451] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, - anon_sym_DOLLAR, - ACTIONS(9290), 1, - anon_sym_DQUOTE, - ACTIONS(9292), 1, - aux_sym_number_token1, - ACTIONS(9294), 1, - aux_sym_number_token2, - ACTIONS(9296), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, - anon_sym_BQUOTE, - ACTIONS(9302), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9666), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2751), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [207525] = 20, - ACTIONS(71), 1, + [211201] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(5405), 1, + ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5407), 1, - anon_sym_DOLLAR, - ACTIONS(5409), 1, - sym__special_character, - ACTIONS(5411), 1, + ACTIONS(307), 1, anon_sym_DQUOTE, - ACTIONS(5415), 1, + ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(5417), 1, + ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(5419), 1, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5421), 1, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5423), 1, - anon_sym_BQUOTE, - ACTIONS(5425), 1, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5431), 1, + ACTIONS(327), 1, sym__brace_start, - ACTIONS(9668), 1, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + ACTIONS(8854), 1, sym_word, - ACTIONS(9672), 1, - sym_test_operator, - STATE(5500), 1, - aux_sym__literal_repeat1, - STATE(5671), 1, - sym_concatenation, - ACTIONS(5403), 2, + ACTIONS(8858), 1, + sym__comment_word, + ACTIONS(9960), 1, + anon_sym_DOLLAR, + ACTIONS(288), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5427), 2, + ACTIONS(323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9670), 2, + ACTIONS(8862), 2, + sym_test_operator, + sym__special_character, + ACTIONS(8860), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5415), 9, + STATE(2670), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252212,47 +255197,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207597] = 18, + [211269] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3185), 1, - anon_sym_DOLLAR, - ACTIONS(3191), 1, + ACTIONS(299), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(307), 1, + anon_sym_DQUOTE, + ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(3193), 1, + ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(3197), 1, + ACTIONS(315), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3209), 1, + ACTIONS(321), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(327), 1, sym__brace_start, - ACTIONS(9674), 1, - sym_word, - ACTIONS(9678), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9682), 1, - anon_sym_DQUOTE, - ACTIONS(9686), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9688), 1, + ACTIONS(5884), 1, anon_sym_BQUOTE, - ACTIONS(9690), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9694), 1, + ACTIONS(8854), 1, + sym_word, + ACTIONS(8858), 1, sym__comment_word, - ACTIONS(9676), 2, + ACTIONS(9962), 1, + anon_sym_DOLLAR, + ACTIONS(288), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9680), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9692), 2, + ACTIONS(323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9684), 3, + ACTIONS(8862), 2, + sym_test_operator, + sym__special_character, + ACTIONS(8860), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1733), 9, + STATE(2670), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252262,47 +255247,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207665] = 18, + [211337] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, - aux_sym_number_token1, - ACTIONS(3403), 1, - aux_sym_number_token2, - ACTIONS(3407), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3417), 1, - sym__brace_start, - ACTIONS(8926), 1, + ACTIONS(8090), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8930), 1, + ACTIONS(8096), 1, anon_sym_DQUOTE, - ACTIONS(8934), 1, + ACTIONS(8100), 1, + aux_sym_number_token1, + ACTIONS(8102), 1, + aux_sym_number_token2, + ACTIONS(8104), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8936), 1, + ACTIONS(8106), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8108), 1, anon_sym_BQUOTE, - ACTIONS(8938), 1, + ACTIONS(8110), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9696), 1, + ACTIONS(8120), 1, + sym__brace_start, + ACTIONS(9806), 1, sym_word, - ACTIONS(9698), 1, - anon_sym_DOLLAR, - ACTIONS(9704), 1, + ACTIONS(9814), 1, sym__comment_word, - ACTIONS(8924), 2, + ACTIONS(9964), 1, + anon_sym_DOLLAR, + ACTIONS(8086), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8940), 2, + ACTIONS(8112), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9700), 2, + ACTIONS(9810), 2, sym_test_operator, sym__special_character, - ACTIONS(9702), 3, + ACTIONS(9812), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1851), 9, + STATE(1531), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252312,47 +255297,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207733] = 18, + [211405] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1043), 1, + ACTIONS(8090), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1045), 1, - anon_sym_DOLLAR, - ACTIONS(1049), 1, + ACTIONS(8096), 1, anon_sym_DQUOTE, - ACTIONS(1053), 1, + ACTIONS(8100), 1, aux_sym_number_token1, - ACTIONS(1055), 1, + ACTIONS(8102), 1, aux_sym_number_token2, - ACTIONS(1057), 1, + ACTIONS(8104), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1059), 1, + ACTIONS(8106), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1061), 1, + ACTIONS(8108), 1, anon_sym_BQUOTE, - ACTIONS(1063), 1, + ACTIONS(8110), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1071), 1, + ACTIONS(8120), 1, sym__brace_start, - ACTIONS(9706), 1, + ACTIONS(9806), 1, sym_word, - ACTIONS(9712), 1, + ACTIONS(9814), 1, sym__comment_word, - ACTIONS(1041), 2, + ACTIONS(9966), 1, + anon_sym_DOLLAR, + ACTIONS(8086), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1065), 2, + ACTIONS(8112), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9708), 2, + ACTIONS(9810), 2, sym_test_operator, sym__special_character, - ACTIONS(9710), 3, + ACTIONS(9812), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2075), 9, + STATE(1531), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252362,49 +255347,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207801] = 20, - ACTIONS(71), 1, + [211473] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(5261), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5263), 1, - anon_sym_DOLLAR, - ACTIONS(5265), 1, - sym__special_character, - ACTIONS(5267), 1, - anon_sym_DQUOTE, - ACTIONS(5271), 1, + ACTIONS(2044), 1, aux_sym_number_token1, - ACTIONS(5273), 1, + ACTIONS(2046), 1, aux_sym_number_token2, - ACTIONS(5275), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5277), 1, + ACTIONS(2050), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5279), 1, + ACTIONS(2064), 1, + sym__brace_start, + ACTIONS(8062), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8066), 1, + anon_sym_DQUOTE, + ACTIONS(8070), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8072), 1, anon_sym_BQUOTE, - ACTIONS(5281), 1, + ACTIONS(8074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5287), 1, - sym__brace_start, - ACTIONS(9714), 1, + ACTIONS(9844), 1, sym_word, - ACTIONS(9718), 1, - sym_test_operator, - STATE(5462), 1, - aux_sym__literal_repeat1, - STATE(5587), 1, - sym_concatenation, - ACTIONS(5259), 2, + ACTIONS(9852), 1, + sym__comment_word, + ACTIONS(9968), 1, + anon_sym_DOLLAR, + ACTIONS(8058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5283), 2, + ACTIONS(8076), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9716), 2, + ACTIONS(9848), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9850), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5300), 9, + STATE(1484), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252414,47 +255397,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207873] = 18, + [211541] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8178), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8184), 1, - anon_sym_DQUOTE, - ACTIONS(8188), 1, + ACTIONS(2044), 1, aux_sym_number_token1, - ACTIONS(8190), 1, + ACTIONS(2046), 1, aux_sym_number_token2, - ACTIONS(8192), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8194), 1, + ACTIONS(2050), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8196), 1, + ACTIONS(2064), 1, + sym__brace_start, + ACTIONS(8062), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8066), 1, + anon_sym_DQUOTE, + ACTIONS(8070), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8072), 1, anon_sym_BQUOTE, - ACTIONS(8198), 1, + ACTIONS(8074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8208), 1, - sym__brace_start, - ACTIONS(9720), 1, + ACTIONS(9844), 1, sym_word, - ACTIONS(9722), 1, - anon_sym_DOLLAR, - ACTIONS(9728), 1, + ACTIONS(9852), 1, sym__comment_word, - ACTIONS(8174), 2, + ACTIONS(9970), 1, + anon_sym_DOLLAR, + ACTIONS(8058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8200), 2, + ACTIONS(8076), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9724), 2, + ACTIONS(9848), 2, sym_test_operator, sym__special_character, - ACTIONS(9726), 3, + ACTIONS(9850), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1590), 9, + STATE(1484), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252464,47 +255447,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [207941] = 18, + [211609] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(117), 1, - anon_sym_DQUOTE, - ACTIONS(121), 1, + ACTIONS(3249), 1, aux_sym_number_token1, - ACTIONS(123), 1, + ACTIONS(3251), 1, aux_sym_number_token2, - ACTIONS(125), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(127), 1, + ACTIONS(3255), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(129), 1, - anon_sym_BQUOTE, - ACTIONS(131), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(141), 1, + ACTIONS(3267), 1, sym__brace_start, - ACTIONS(9340), 1, + ACTIONS(9858), 1, sym_word, - ACTIONS(9346), 1, + ACTIONS(9862), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9868), 1, + anon_sym_DQUOTE, + ACTIONS(9872), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9874), 1, + anon_sym_BQUOTE, + ACTIONS(9876), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9880), 1, sym__comment_word, - ACTIONS(9730), 1, + ACTIONS(9972), 1, anon_sym_DOLLAR, - ACTIONS(109), 2, + ACTIONS(9860), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(133), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9342), 2, + ACTIONS(9866), 2, sym_test_operator, sym__special_character, - ACTIONS(9344), 3, + ACTIONS(9878), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9870), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(482), 9, + STATE(1880), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252514,49 +255497,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208009] = 20, - ACTIONS(71), 1, + [211677] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(5261), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5263), 1, - anon_sym_DOLLAR, - ACTIONS(5265), 1, - sym__special_character, - ACTIONS(5267), 1, - anon_sym_DQUOTE, - ACTIONS(5271), 1, + ACTIONS(3249), 1, aux_sym_number_token1, - ACTIONS(5273), 1, + ACTIONS(3251), 1, aux_sym_number_token2, - ACTIONS(5275), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5277), 1, + ACTIONS(3255), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5279), 1, - anon_sym_BQUOTE, - ACTIONS(5281), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5287), 1, + ACTIONS(3267), 1, sym__brace_start, - ACTIONS(9732), 1, + ACTIONS(9858), 1, sym_word, - ACTIONS(9736), 1, - sym_test_operator, - STATE(5466), 1, - aux_sym__literal_repeat1, - STATE(5612), 1, - sym_concatenation, - ACTIONS(5259), 2, + ACTIONS(9862), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9868), 1, + anon_sym_DQUOTE, + ACTIONS(9872), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9874), 1, + anon_sym_BQUOTE, + ACTIONS(9876), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9880), 1, + sym__comment_word, + ACTIONS(9974), 1, + anon_sym_DOLLAR, + ACTIONS(9860), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5283), 2, + ACTIONS(9866), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9878), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9734), 2, + ACTIONS(9870), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5303), 9, + STATE(1880), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252566,47 +255547,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208081] = 18, + [211745] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(1500), 1, aux_sym_number_token1, - ACTIONS(3403), 1, + ACTIONS(1502), 1, aux_sym_number_token2, - ACTIONS(3407), 1, + ACTIONS(1506), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3417), 1, + ACTIONS(1518), 1, sym__brace_start, - ACTIONS(8926), 1, + ACTIONS(9066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8930), 1, + ACTIONS(9070), 1, anon_sym_DQUOTE, - ACTIONS(8934), 1, + ACTIONS(9074), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8936), 1, + ACTIONS(9076), 1, anon_sym_BQUOTE, - ACTIONS(8938), 1, + ACTIONS(9078), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9696), 1, + ACTIONS(9934), 1, sym_word, - ACTIONS(9704), 1, + ACTIONS(9942), 1, sym__comment_word, - ACTIONS(9738), 1, + ACTIONS(9976), 1, anon_sym_DOLLAR, - ACTIONS(8924), 2, + ACTIONS(9064), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8940), 2, + ACTIONS(9080), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9700), 2, + ACTIONS(9938), 2, sym_test_operator, sym__special_character, - ACTIONS(9702), 3, + ACTIONS(9940), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1851), 9, + STATE(1221), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252616,47 +255597,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208149] = 18, + [211813] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3882), 1, - anon_sym_DOLLAR, - ACTIONS(3886), 1, + ACTIONS(1500), 1, aux_sym_number_token1, - ACTIONS(3888), 1, + ACTIONS(1502), 1, aux_sym_number_token2, - ACTIONS(3892), 1, + ACTIONS(1506), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3902), 1, + ACTIONS(1518), 1, sym__brace_start, - ACTIONS(8992), 1, + ACTIONS(9066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8996), 1, + ACTIONS(9070), 1, anon_sym_DQUOTE, - ACTIONS(9000), 1, + ACTIONS(9074), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9002), 1, + ACTIONS(9076), 1, anon_sym_BQUOTE, - ACTIONS(9004), 1, + ACTIONS(9078), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9740), 1, + ACTIONS(9934), 1, sym_word, - ACTIONS(9746), 1, + ACTIONS(9942), 1, sym__comment_word, - ACTIONS(8990), 2, + ACTIONS(9978), 1, + anon_sym_DOLLAR, + ACTIONS(9064), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9006), 2, + ACTIONS(9080), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9742), 2, + ACTIONS(9938), 2, sym_test_operator, sym__special_character, - ACTIONS(9744), 3, + ACTIONS(9940), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2004), 9, + STATE(1221), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252666,49 +255647,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208217] = 20, - ACTIONS(71), 1, + [211881] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(8102), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8104), 1, - anon_sym_DOLLAR, - ACTIONS(8106), 1, - sym__special_character, - ACTIONS(8108), 1, - anon_sym_DQUOTE, - ACTIONS(8112), 1, + ACTIONS(1500), 1, aux_sym_number_token1, - ACTIONS(8114), 1, + ACTIONS(1502), 1, aux_sym_number_token2, - ACTIONS(8116), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8118), 1, + ACTIONS(1506), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8120), 1, + ACTIONS(1518), 1, + sym__brace_start, + ACTIONS(9066), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9070), 1, + anon_sym_DQUOTE, + ACTIONS(9074), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9076), 1, anon_sym_BQUOTE, - ACTIONS(8122), 1, + ACTIONS(9078), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8132), 1, - sym__brace_start, - ACTIONS(9748), 1, + ACTIONS(9934), 1, sym_word, - ACTIONS(9752), 1, - sym_test_operator, - STATE(1349), 1, - aux_sym__literal_repeat1, - STATE(1639), 1, - sym_concatenation, - ACTIONS(8098), 2, + ACTIONS(9942), 1, + sym__comment_word, + ACTIONS(9980), 1, + anon_sym_DOLLAR, + ACTIONS(9064), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8124), 2, + ACTIONS(9080), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9750), 2, + ACTIONS(9938), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9940), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1127), 9, + STATE(1221), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252718,47 +255697,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208289] = 18, + [211949] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(9754), 1, + ACTIONS(4080), 1, + aux_sym_number_token1, + ACTIONS(4082), 1, + aux_sym_number_token2, + ACTIONS(4086), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4096), 1, + sym__brace_start, + ACTIONS(9982), 1, sym_word, - ACTIONS(9758), 1, + ACTIONS(9986), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9760), 1, + ACTIONS(9988), 1, anon_sym_DOLLAR, - ACTIONS(9764), 1, + ACTIONS(9992), 1, anon_sym_DQUOTE, - ACTIONS(9768), 1, - aux_sym_number_token1, - ACTIONS(9770), 1, - aux_sym_number_token2, - ACTIONS(9772), 1, + ACTIONS(9996), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9774), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9776), 1, + ACTIONS(9998), 1, anon_sym_BQUOTE, - ACTIONS(9778), 1, + ACTIONS(10000), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9782), 1, + ACTIONS(10004), 1, sym__comment_word, - ACTIONS(9784), 1, - sym__brace_start, - ACTIONS(9756), 2, + ACTIONS(9984), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9762), 2, + ACTIONS(9990), 2, sym_test_operator, sym__special_character, - ACTIONS(9780), 2, + ACTIONS(10002), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9766), 3, + ACTIONS(9994), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(6225), 9, + STATE(4446), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252768,49 +255747,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208357] = 20, - ACTIONS(71), 1, + [212017] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(8102), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8104), 1, - anon_sym_DOLLAR, - ACTIONS(8106), 1, - sym__special_character, - ACTIONS(8108), 1, - anon_sym_DQUOTE, - ACTIONS(8112), 1, + ACTIONS(4080), 1, aux_sym_number_token1, - ACTIONS(8114), 1, + ACTIONS(4082), 1, aux_sym_number_token2, - ACTIONS(8116), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8118), 1, + ACTIONS(4086), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8120), 1, - anon_sym_BQUOTE, - ACTIONS(8122), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8132), 1, + ACTIONS(4096), 1, sym__brace_start, - ACTIONS(9786), 1, + ACTIONS(9982), 1, sym_word, - ACTIONS(9790), 1, - sym_test_operator, - STATE(1380), 1, - aux_sym__literal_repeat1, - STATE(1629), 1, - sym_concatenation, - ACTIONS(8098), 2, + ACTIONS(9986), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9992), 1, + anon_sym_DQUOTE, + ACTIONS(9996), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9998), 1, + anon_sym_BQUOTE, + ACTIONS(10000), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10004), 1, + sym__comment_word, + ACTIONS(10006), 1, + anon_sym_DOLLAR, + ACTIONS(9984), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8124), 2, + ACTIONS(9990), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10002), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9788), 2, + ACTIONS(9994), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1162), 9, + STATE(4446), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252820,47 +255797,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208429] = 18, + [212085] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4080), 1, - anon_sym_DOLLAR, - ACTIONS(4086), 1, + ACTIONS(3632), 1, aux_sym_number_token1, - ACTIONS(4088), 1, + ACTIONS(3634), 1, aux_sym_number_token2, - ACTIONS(4092), 1, + ACTIONS(3638), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4102), 1, + ACTIONS(3648), 1, sym__brace_start, - ACTIONS(9306), 1, + ACTIONS(10008), 1, sym_word, - ACTIONS(9310), 1, + ACTIONS(10012), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9316), 1, + ACTIONS(10014), 1, + anon_sym_DOLLAR, + ACTIONS(10018), 1, anon_sym_DQUOTE, - ACTIONS(9320), 1, + ACTIONS(10022), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9322), 1, + ACTIONS(10024), 1, anon_sym_BQUOTE, - ACTIONS(9324), 1, + ACTIONS(10026), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9328), 1, + ACTIONS(10030), 1, sym__comment_word, - ACTIONS(9308), 2, + ACTIONS(10010), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9314), 2, + ACTIONS(10016), 2, sym_test_operator, sym__special_character, - ACTIONS(9326), 2, + ACTIONS(10028), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9318), 3, + ACTIONS(10020), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4566), 9, + STATE(4300), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252870,49 +255847,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208497] = 20, - ACTIONS(71), 1, + [212153] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(1587), 1, - anon_sym_DOLLAR, - ACTIONS(1593), 1, + ACTIONS(3632), 1, aux_sym_number_token1, - ACTIONS(1595), 1, + ACTIONS(3634), 1, aux_sym_number_token2, - ACTIONS(1599), 1, + ACTIONS(3638), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1611), 1, + ACTIONS(3648), 1, sym__brace_start, - ACTIONS(9240), 1, + ACTIONS(10008), 1, + sym_word, + ACTIONS(10012), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9242), 1, - sym__special_character, - ACTIONS(9244), 1, + ACTIONS(10018), 1, anon_sym_DQUOTE, - ACTIONS(9248), 1, + ACTIONS(10022), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9250), 1, + ACTIONS(10024), 1, anon_sym_BQUOTE, - ACTIONS(9252), 1, + ACTIONS(10026), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9792), 1, - sym_word, - ACTIONS(9796), 1, - sym_test_operator, - STATE(1377), 1, - aux_sym__literal_repeat1, - STATE(1613), 1, - sym_concatenation, - ACTIONS(9238), 2, + ACTIONS(10030), 1, + sym__comment_word, + ACTIONS(10032), 1, + anon_sym_DOLLAR, + ACTIONS(10010), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9254), 2, + ACTIONS(10016), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10028), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9794), 2, + ACTIONS(10020), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1076), 9, + STATE(4300), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252922,49 +255897,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208569] = 20, - ACTIONS(71), 1, + [212221] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3367), 1, - anon_sym_DOLLAR, - ACTIONS(3373), 1, + ACTIONS(3674), 1, aux_sym_number_token1, - ACTIONS(3375), 1, + ACTIONS(3676), 1, aux_sym_number_token2, - ACTIONS(3379), 1, + ACTIONS(3680), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3389), 1, + ACTIONS(3692), 1, sym__brace_start, - ACTIONS(9798), 1, - sym_word, - ACTIONS(9802), 1, + ACTIONS(8984), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9804), 1, - sym__special_character, - ACTIONS(9806), 1, + ACTIONS(8988), 1, anon_sym_DQUOTE, - ACTIONS(9810), 1, + ACTIONS(8992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9812), 1, + ACTIONS(8994), 1, anon_sym_BQUOTE, - ACTIONS(9814), 1, + ACTIONS(8996), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9818), 1, - sym_test_operator, - STATE(4538), 1, - aux_sym__literal_repeat1, - STATE(4930), 1, - sym_concatenation, - ACTIONS(9800), 2, + ACTIONS(10034), 1, + sym_word, + ACTIONS(10036), 1, + anon_sym_DOLLAR, + ACTIONS(10042), 1, + sym__comment_word, + ACTIONS(8982), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9808), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9816), 2, + ACTIONS(8998), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(4292), 9, + ACTIONS(10038), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10040), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4640), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -252974,47 +255947,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208641] = 18, + [212289] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(3674), 1, aux_sym_number_token1, - ACTIONS(1769), 1, + ACTIONS(3676), 1, aux_sym_number_token2, - ACTIONS(1773), 1, + ACTIONS(3680), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1787), 1, + ACTIONS(3692), 1, sym__brace_start, - ACTIONS(8426), 1, + ACTIONS(8984), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8430), 1, + ACTIONS(8988), 1, anon_sym_DQUOTE, - ACTIONS(8434), 1, + ACTIONS(8992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8436), 1, + ACTIONS(8994), 1, anon_sym_BQUOTE, - ACTIONS(8438), 1, + ACTIONS(8996), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9820), 1, + ACTIONS(10034), 1, sym_word, - ACTIONS(9822), 1, - anon_sym_DOLLAR, - ACTIONS(9828), 1, + ACTIONS(10042), 1, sym__comment_word, - ACTIONS(8422), 2, + ACTIONS(10044), 1, + anon_sym_DOLLAR, + ACTIONS(8982), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8440), 2, + ACTIONS(8998), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9824), 2, + ACTIONS(10038), 2, sym_test_operator, sym__special_character, - ACTIONS(9826), 3, + ACTIONS(10040), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1207), 9, + STATE(4640), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253024,49 +255997,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208709] = 20, - ACTIONS(71), 1, + [212357] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3367), 1, - anon_sym_DOLLAR, - ACTIONS(3373), 1, + ACTIONS(4002), 1, aux_sym_number_token1, - ACTIONS(3375), 1, + ACTIONS(4004), 1, aux_sym_number_token2, - ACTIONS(3379), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3389), 1, + ACTIONS(4018), 1, sym__brace_start, - ACTIONS(9802), 1, + ACTIONS(8820), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9804), 1, - sym__special_character, - ACTIONS(9806), 1, + ACTIONS(8824), 1, anon_sym_DQUOTE, - ACTIONS(9810), 1, + ACTIONS(8828), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9812), 1, + ACTIONS(8830), 1, anon_sym_BQUOTE, - ACTIONS(9814), 1, + ACTIONS(8832), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9830), 1, + ACTIONS(10046), 1, sym_word, - ACTIONS(9834), 1, - sym_test_operator, - STATE(4462), 1, - aux_sym__literal_repeat1, - STATE(4888), 1, - sym_concatenation, - ACTIONS(9800), 2, + ACTIONS(10048), 1, + anon_sym_DOLLAR, + ACTIONS(10054), 1, + sym__comment_word, + ACTIONS(8818), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9816), 2, + ACTIONS(8834), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9832), 2, + ACTIONS(10050), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10052), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4270), 9, + STATE(1951), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253076,153 +256047,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208781] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9364), 1, - anon_sym_LPAREN, - ACTIONS(9366), 1, - anon_sym_BANG, - ACTIONS(9372), 1, - anon_sym_TILDE, - ACTIONS(9374), 1, - anon_sym_DOLLAR, - ACTIONS(9376), 1, - anon_sym_DQUOTE, - ACTIONS(9378), 1, - aux_sym_number_token1, - ACTIONS(9380), 1, - aux_sym_number_token2, - ACTIONS(9382), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, - anon_sym_BQUOTE, - ACTIONS(9388), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(9836), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, - sym__arithmetic_unary_expression, - STATE(3400), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9370), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3339), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [208855] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, - anon_sym_DOLLAR, - ACTIONS(9290), 1, - anon_sym_DQUOTE, - ACTIONS(9292), 1, - aux_sym_number_token1, - ACTIONS(9294), 1, - aux_sym_number_token2, - ACTIONS(9296), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, - anon_sym_BQUOTE, - ACTIONS(9302), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9838), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2752), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [208929] = 18, + [212425] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(4002), 1, aux_sym_number_token1, - ACTIONS(1769), 1, + ACTIONS(4004), 1, aux_sym_number_token2, - ACTIONS(1773), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1787), 1, + ACTIONS(4018), 1, sym__brace_start, - ACTIONS(8426), 1, + ACTIONS(8820), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8430), 1, + ACTIONS(8824), 1, anon_sym_DQUOTE, - ACTIONS(8434), 1, + ACTIONS(8828), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8436), 1, + ACTIONS(8830), 1, anon_sym_BQUOTE, - ACTIONS(8438), 1, + ACTIONS(8832), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9820), 1, + ACTIONS(10046), 1, sym_word, - ACTIONS(9828), 1, + ACTIONS(10054), 1, sym__comment_word, - ACTIONS(9840), 1, + ACTIONS(10056), 1, anon_sym_DOLLAR, - ACTIONS(8422), 2, + ACTIONS(8818), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8440), 2, + ACTIONS(8834), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9824), 2, + ACTIONS(10050), 2, sym_test_operator, sym__special_character, - ACTIONS(9826), 3, + ACTIONS(10052), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1207), 9, + STATE(1951), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253232,102 +256097,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [208997] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, - anon_sym_DOLLAR, - ACTIONS(9290), 1, - anon_sym_DQUOTE, - ACTIONS(9292), 1, - aux_sym_number_token1, - ACTIONS(9294), 1, - aux_sym_number_token2, - ACTIONS(9296), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, - anon_sym_BQUOTE, - ACTIONS(9302), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9842), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2739), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [209071] = 20, - ACTIONS(71), 1, + [212493] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(1587), 1, - anon_sym_DOLLAR, - ACTIONS(1593), 1, + ACTIONS(3038), 1, aux_sym_number_token1, - ACTIONS(1595), 1, + ACTIONS(3040), 1, aux_sym_number_token2, - ACTIONS(1599), 1, + ACTIONS(3044), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1611), 1, + ACTIONS(3054), 1, sym__brace_start, - ACTIONS(9240), 1, + ACTIONS(8892), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9242), 1, - sym__special_character, - ACTIONS(9244), 1, + ACTIONS(8896), 1, anon_sym_DQUOTE, - ACTIONS(9248), 1, + ACTIONS(8900), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9250), 1, + ACTIONS(8902), 1, anon_sym_BQUOTE, - ACTIONS(9252), 1, + ACTIONS(8904), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9844), 1, + ACTIONS(10058), 1, sym_word, - ACTIONS(9848), 1, - sym_test_operator, - STATE(1374), 1, - aux_sym__literal_repeat1, - STATE(1622), 1, - sym_concatenation, - ACTIONS(9238), 2, + ACTIONS(10060), 1, + anon_sym_DOLLAR, + ACTIONS(10066), 1, + sym__comment_word, + ACTIONS(8890), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9254), 2, + ACTIONS(8906), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9846), 2, + ACTIONS(10062), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10064), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1069), 9, + STATE(1751), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253337,47 +256147,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209143] = 18, + [212561] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3477), 1, - anon_sym_DOLLAR, - ACTIONS(3481), 1, + ACTIONS(3038), 1, aux_sym_number_token1, - ACTIONS(3483), 1, + ACTIONS(3040), 1, aux_sym_number_token2, - ACTIONS(3487), 1, + ACTIONS(3044), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3497), 1, + ACTIONS(3054), 1, sym__brace_start, - ACTIONS(8906), 1, + ACTIONS(8892), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8910), 1, + ACTIONS(8896), 1, anon_sym_DQUOTE, - ACTIONS(8914), 1, + ACTIONS(8900), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8916), 1, + ACTIONS(8902), 1, anon_sym_BQUOTE, - ACTIONS(8918), 1, + ACTIONS(8904), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9850), 1, + ACTIONS(10058), 1, sym_word, - ACTIONS(9856), 1, + ACTIONS(10066), 1, sym__comment_word, - ACTIONS(8904), 2, + ACTIONS(10068), 1, + anon_sym_DOLLAR, + ACTIONS(8890), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8920), 2, + ACTIONS(8906), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9852), 2, + ACTIONS(10062), 2, sym_test_operator, sym__special_character, - ACTIONS(9854), 3, + ACTIONS(10064), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1921), 9, + STATE(1751), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253387,60 +256197,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209211] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9364), 1, - anon_sym_LPAREN, - ACTIONS(9366), 1, - anon_sym_BANG, - ACTIONS(9372), 1, - anon_sym_TILDE, - ACTIONS(9374), 1, - anon_sym_DOLLAR, - ACTIONS(9376), 1, - anon_sym_DQUOTE, - ACTIONS(9378), 1, - aux_sym_number_token1, - ACTIONS(9380), 1, - aux_sym_number_token2, - ACTIONS(9382), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, - anon_sym_BQUOTE, - ACTIONS(9388), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(9858), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, - sym__arithmetic_unary_expression, - STATE(3400), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9370), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3364), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [209285] = 18, + [212629] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(7958), 1, @@ -253461,11 +256218,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, ACTIONS(7988), 1, sym__brace_start, - ACTIONS(9860), 1, + ACTIONS(10070), 1, sym_word, - ACTIONS(9862), 1, + ACTIONS(10072), 1, anon_sym_DOLLAR, - ACTIONS(9868), 1, + ACTIONS(10078), 1, sym__comment_word, ACTIONS(7954), 2, anon_sym_LPAREN_LPAREN, @@ -253473,14 +256230,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7980), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9864), 2, + ACTIONS(10074), 2, sym_test_operator, sym__special_character, - ACTIONS(9866), 3, + ACTIONS(10076), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4357), 9, + STATE(4322), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253490,7 +256247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209353] = 18, + [212697] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(7958), 1, @@ -253511,11 +256268,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, ACTIONS(7988), 1, sym__brace_start, - ACTIONS(9860), 1, + ACTIONS(10070), 1, sym_word, - ACTIONS(9868), 1, + ACTIONS(10078), 1, sym__comment_word, - ACTIONS(9870), 1, + ACTIONS(10080), 1, anon_sym_DOLLAR, ACTIONS(7954), 2, anon_sym_LPAREN_LPAREN, @@ -253523,14 +256280,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7980), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9864), 2, + ACTIONS(10074), 2, sym_test_operator, sym__special_character, - ACTIONS(9866), 3, + ACTIONS(10076), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4357), 9, + STATE(4322), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253540,47 +256297,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209421] = 18, - ACTIONS(3), 1, + [212765] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3793), 1, - aux_sym_number_token1, - ACTIONS(3795), 1, - aux_sym_number_token2, - ACTIONS(3799), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3809), 1, - sym__brace_start, - ACTIONS(9636), 1, + ACTIONS(8338), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9640), 1, + ACTIONS(8340), 1, + anon_sym_DOLLAR, + ACTIONS(8342), 1, + sym__special_character, + ACTIONS(8344), 1, anon_sym_DQUOTE, - ACTIONS(9644), 1, + ACTIONS(8348), 1, + aux_sym_number_token1, + ACTIONS(8350), 1, + aux_sym_number_token2, + ACTIONS(8352), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9646), 1, + ACTIONS(8354), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8356), 1, anon_sym_BQUOTE, - ACTIONS(9648), 1, + ACTIONS(8358), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9872), 1, + ACTIONS(8368), 1, + sym__brace_start, + ACTIONS(10082), 1, sym_word, - ACTIONS(9874), 1, - anon_sym_DOLLAR, - ACTIONS(9880), 1, - sym__comment_word, - ACTIONS(9634), 2, + ACTIONS(10086), 1, + sym_test_operator, + STATE(3534), 1, + aux_sym__literal_repeat1, + STATE(3583), 1, + sym_concatenation, + ACTIONS(8334), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9650), 2, + ACTIONS(8360), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9876), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9878), 3, - sym__bare_dollar, + ACTIONS(10084), 2, sym_raw_string, sym_ansi_c_string, - STATE(4337), 9, + STATE(3470), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253590,100 +256349,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209489] = 21, + [212837] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, - anon_sym_LPAREN, - ACTIONS(9366), 1, - anon_sym_BANG, - ACTIONS(9372), 1, - anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(8338), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8340), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(8342), 1, + sym__special_character, + ACTIONS(8344), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(8348), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(8350), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(8352), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(8354), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(8356), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(8358), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(9882), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, - sym__arithmetic_unary_expression, - STATE(3400), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9370), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3338), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [209563] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3793), 1, - aux_sym_number_token1, - ACTIONS(3795), 1, - aux_sym_number_token2, - ACTIONS(3799), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3809), 1, + ACTIONS(8368), 1, sym__brace_start, - ACTIONS(9636), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9640), 1, - anon_sym_DQUOTE, - ACTIONS(9644), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9646), 1, - anon_sym_BQUOTE, - ACTIONS(9648), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9872), 1, + ACTIONS(10088), 1, sym_word, - ACTIONS(9880), 1, - sym__comment_word, - ACTIONS(9884), 1, - anon_sym_DOLLAR, - ACTIONS(9634), 2, + ACTIONS(10092), 1, + sym_test_operator, + STATE(3532), 1, + aux_sym__literal_repeat1, + STATE(3592), 1, + sym_concatenation, + ACTIONS(8334), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9650), 2, + ACTIONS(8360), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9876), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9878), 3, - sym__bare_dollar, + ACTIONS(10090), 2, sym_raw_string, sym_ansi_c_string, - STATE(4337), 9, + STATE(3466), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253693,47 +256401,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209631] = 18, + [212909] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4086), 1, - aux_sym_number_token1, - ACTIONS(4088), 1, - aux_sym_number_token2, - ACTIONS(4092), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4102), 1, - sym__brace_start, - ACTIONS(9306), 1, - sym_word, - ACTIONS(9310), 1, + ACTIONS(8338), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9316), 1, + ACTIONS(8344), 1, anon_sym_DQUOTE, - ACTIONS(9320), 1, + ACTIONS(8348), 1, + aux_sym_number_token1, + ACTIONS(8350), 1, + aux_sym_number_token2, + ACTIONS(8352), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9322), 1, + ACTIONS(8354), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8356), 1, anon_sym_BQUOTE, - ACTIONS(9324), 1, + ACTIONS(8358), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9328), 1, - sym__comment_word, - ACTIONS(9886), 1, + ACTIONS(8368), 1, + sym__brace_start, + ACTIONS(10094), 1, + sym_word, + ACTIONS(10096), 1, anon_sym_DOLLAR, - ACTIONS(9308), 2, + ACTIONS(10102), 1, + sym__comment_word, + ACTIONS(8334), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9314), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9326), 2, + ACTIONS(8360), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9318), 3, + ACTIONS(10098), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10100), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4566), 9, + STATE(3489), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253743,47 +256451,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209699] = 18, + [212977] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4086), 1, - aux_sym_number_token1, - ACTIONS(4088), 1, - aux_sym_number_token2, - ACTIONS(4092), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4102), 1, - sym__brace_start, - ACTIONS(9306), 1, - sym_word, - ACTIONS(9310), 1, + ACTIONS(8338), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9316), 1, + ACTIONS(8344), 1, anon_sym_DQUOTE, - ACTIONS(9320), 1, + ACTIONS(8348), 1, + aux_sym_number_token1, + ACTIONS(8350), 1, + aux_sym_number_token2, + ACTIONS(8352), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9322), 1, + ACTIONS(8354), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8356), 1, anon_sym_BQUOTE, - ACTIONS(9324), 1, + ACTIONS(8358), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9328), 1, + ACTIONS(8368), 1, + sym__brace_start, + ACTIONS(10094), 1, + sym_word, + ACTIONS(10102), 1, sym__comment_word, - ACTIONS(9888), 1, + ACTIONS(10104), 1, anon_sym_DOLLAR, - ACTIONS(9308), 2, + ACTIONS(8334), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9314), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9326), 2, + ACTIONS(8360), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9318), 3, + ACTIONS(10098), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10100), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4566), 9, + STATE(3489), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253793,100 +256501,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209767] = 21, - ACTIONS(71), 1, + [213045] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, - anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, - anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9890), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2753), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [209841] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2263), 1, - anon_sym_DOLLAR, - ACTIONS(2269), 1, - aux_sym_number_token1, - ACTIONS(2271), 1, - aux_sym_number_token2, - ACTIONS(2275), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2289), 1, + ACTIONS(1139), 1, sym__brace_start, - ACTIONS(8066), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8070), 1, - anon_sym_DQUOTE, - ACTIONS(8074), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8076), 1, + ACTIONS(3119), 1, anon_sym_BQUOTE, - ACTIONS(8078), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9580), 1, + ACTIONS(9464), 1, sym_word, - ACTIONS(9588), 1, + ACTIONS(9472), 1, sym__comment_word, - ACTIONS(8062), 2, + ACTIONS(10106), 1, + anon_sym_DOLLAR, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8080), 2, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9584), 2, + ACTIONS(9468), 2, sym_test_operator, sym__special_character, - ACTIONS(9586), 3, + ACTIONS(9470), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1623), 9, + STATE(2365), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253896,49 +256551,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209909] = 20, - ACTIONS(71), 1, + [213113] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(1414), 1, - anon_sym_DOLLAR, - ACTIONS(1420), 1, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(1422), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1426), 1, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1438), 1, + ACTIONS(1133), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, sym__brace_start, - ACTIONS(9094), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9096), 1, - sym__special_character, - ACTIONS(9098), 1, - anon_sym_DQUOTE, - ACTIONS(9102), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9104), 1, + ACTIONS(3119), 1, anon_sym_BQUOTE, - ACTIONS(9106), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9892), 1, + ACTIONS(9464), 1, sym_word, - ACTIONS(9896), 1, - sym_test_operator, - STATE(1149), 1, - aux_sym__literal_repeat1, - STATE(1281), 1, - sym_concatenation, - ACTIONS(9092), 2, + ACTIONS(9472), 1, + sym__comment_word, + ACTIONS(10108), 1, + anon_sym_DOLLAR, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9108), 2, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9894), 2, + ACTIONS(9468), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9470), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(832), 9, + STATE(2365), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -253948,102 +256601,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [209981] = 21, - ACTIONS(71), 1, + [213181] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3602), 1, - sym_variable_name, - ACTIONS(9898), 1, - anon_sym_LPAREN, - ACTIONS(9900), 1, - anon_sym_BANG, - ACTIONS(9906), 1, - anon_sym_TILDE, - ACTIONS(9908), 1, - anon_sym_DOLLAR, - ACTIONS(9910), 1, + ACTIONS(357), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(363), 1, anon_sym_DQUOTE, - ACTIONS(9912), 1, + ACTIONS(367), 1, aux_sym_number_token1, - ACTIONS(9914), 1, + ACTIONS(369), 1, aux_sym_number_token2, - ACTIONS(9916), 1, + ACTIONS(371), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9918), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9920), 1, + ACTIONS(375), 1, anon_sym_BQUOTE, - ACTIONS(9922), 1, + ACTIONS(377), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9924), 1, - aux_sym__simple_variable_name_token1, - STATE(3359), 1, - sym__arithmetic_postfix_expression, - STATE(3361), 1, - sym__arithmetic_unary_expression, - STATE(3367), 1, - sym__arithmetic_ternary_expression, - STATE(3375), 1, - sym__arithmetic_binary_expression, - ACTIONS(9902), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9904), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3188), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [210055] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1414), 1, - anon_sym_DOLLAR, - ACTIONS(1420), 1, - aux_sym_number_token1, - ACTIONS(1422), 1, - aux_sym_number_token2, - ACTIONS(1426), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1438), 1, + ACTIONS(387), 1, sym__brace_start, - ACTIONS(9094), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9096), 1, - sym__special_character, - ACTIONS(9098), 1, - anon_sym_DQUOTE, - ACTIONS(9102), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9104), 1, - anon_sym_BQUOTE, - ACTIONS(9106), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9926), 1, + ACTIONS(9948), 1, sym_word, - ACTIONS(9930), 1, - sym_test_operator, - STATE(1146), 1, - aux_sym__literal_repeat1, - STATE(1301), 1, - sym_concatenation, - ACTIONS(9092), 2, + ACTIONS(9956), 1, + sym__comment_word, + ACTIONS(10110), 1, + anon_sym_DOLLAR, + ACTIONS(355), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9108), 2, + ACTIONS(379), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9928), 2, + ACTIONS(9952), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9954), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(880), 9, + STATE(1101), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254053,47 +256651,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210127] = 18, + [213249] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3787), 1, - anon_sym_DOLLAR, - ACTIONS(3793), 1, - aux_sym_number_token1, - ACTIONS(3795), 1, - aux_sym_number_token2, - ACTIONS(3799), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3809), 1, - sym__brace_start, - ACTIONS(9636), 1, + ACTIONS(357), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9640), 1, + ACTIONS(363), 1, anon_sym_DQUOTE, - ACTIONS(9644), 1, + ACTIONS(367), 1, + aux_sym_number_token1, + ACTIONS(369), 1, + aux_sym_number_token2, + ACTIONS(371), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9646), 1, + ACTIONS(373), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(375), 1, anon_sym_BQUOTE, - ACTIONS(9648), 1, + ACTIONS(377), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9872), 1, + ACTIONS(387), 1, + sym__brace_start, + ACTIONS(9948), 1, sym_word, - ACTIONS(9880), 1, + ACTIONS(9956), 1, sym__comment_word, - ACTIONS(9634), 2, + ACTIONS(10112), 1, + anon_sym_DOLLAR, + ACTIONS(355), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9650), 2, + ACTIONS(379), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9876), 2, + ACTIONS(9952), 2, sym_test_operator, sym__special_character, - ACTIONS(9878), 3, + ACTIONS(9954), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4337), 9, + STATE(1101), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254103,47 +256701,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210195] = 18, + [213317] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3616), 1, + ACTIONS(258), 1, + anon_sym_DOLLAR, + ACTIONS(264), 1, aux_sym_number_token1, - ACTIONS(3618), 1, + ACTIONS(266), 1, aux_sym_number_token2, - ACTIONS(3622), 1, + ACTIONS(270), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3632), 1, + ACTIONS(284), 1, sym__brace_start, - ACTIONS(8850), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8854), 1, + ACTIONS(1161), 1, anon_sym_DQUOTE, - ACTIONS(8858), 1, + ACTIONS(1165), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8860), 1, - anon_sym_BQUOTE, - ACTIONS(8862), 1, + ACTIONS(1167), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9516), 1, + ACTIONS(3598), 1, + anon_sym_BQUOTE, + ACTIONS(9732), 1, sym_word, - ACTIONS(9524), 1, + ACTIONS(9740), 1, sym__comment_word, - ACTIONS(9932), 1, - anon_sym_DOLLAR, - ACTIONS(8848), 2, + ACTIONS(1153), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8864), 2, + ACTIONS(1169), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9520), 2, + ACTIONS(9736), 2, sym_test_operator, sym__special_character, - ACTIONS(9522), 3, + ACTIONS(9738), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2210), 9, + STATE(2735), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254153,102 +256751,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210263] = 21, - ACTIONS(71), 1, + [213385] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(9364), 1, - anon_sym_LPAREN, - ACTIONS(9366), 1, - anon_sym_BANG, - ACTIONS(9372), 1, - anon_sym_TILDE, - ACTIONS(9374), 1, - anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(8090), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8096), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(8100), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(8102), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(8104), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, - anon_sym_BQUOTE, - ACTIONS(9388), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(9934), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, - sym__arithmetic_unary_expression, - STATE(3400), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9370), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3337), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [210337] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2863), 1, - anon_sym_DOLLAR, - ACTIONS(2869), 1, - aux_sym_number_token1, - ACTIONS(2871), 1, - aux_sym_number_token2, - ACTIONS(2875), 1, + ACTIONS(8106), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2885), 1, - sym__brace_start, - ACTIONS(9936), 1, - sym_word, - ACTIONS(9940), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9942), 1, - sym__special_character, - ACTIONS(9944), 1, - anon_sym_DQUOTE, - ACTIONS(9948), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9950), 1, + ACTIONS(8108), 1, anon_sym_BQUOTE, - ACTIONS(9952), 1, + ACTIONS(8110), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9956), 1, - sym_test_operator, - STATE(4382), 1, - aux_sym__literal_repeat1, - STATE(4827), 1, - sym_concatenation, - ACTIONS(9938), 2, + ACTIONS(8120), 1, + sym__brace_start, + ACTIONS(9806), 1, + sym_word, + ACTIONS(9814), 1, + sym__comment_word, + ACTIONS(10114), 1, + anon_sym_DOLLAR, + ACTIONS(8086), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9946), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9954), 2, + ACTIONS(8112), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(4242), 9, + ACTIONS(9810), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9812), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1531), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254258,47 +256801,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210409] = 18, + [213453] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5405), 1, + ACTIONS(8090), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5411), 1, + ACTIONS(8096), 1, anon_sym_DQUOTE, - ACTIONS(5415), 1, + ACTIONS(8100), 1, aux_sym_number_token1, - ACTIONS(5417), 1, + ACTIONS(8102), 1, aux_sym_number_token2, - ACTIONS(5419), 1, + ACTIONS(8104), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5421), 1, + ACTIONS(8106), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5423), 1, + ACTIONS(8108), 1, anon_sym_BQUOTE, - ACTIONS(5425), 1, + ACTIONS(8110), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5431), 1, + ACTIONS(8120), 1, sym__brace_start, - ACTIONS(9958), 1, + ACTIONS(9806), 1, sym_word, - ACTIONS(9960), 1, - anon_sym_DOLLAR, - ACTIONS(9966), 1, + ACTIONS(9814), 1, sym__comment_word, - ACTIONS(5403), 2, + ACTIONS(10116), 1, + anon_sym_DOLLAR, + ACTIONS(8086), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5427), 2, + ACTIONS(8112), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9962), 2, + ACTIONS(9810), 2, sym_test_operator, sym__special_character, - ACTIONS(9964), 3, + ACTIONS(9812), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5541), 9, + STATE(1531), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254308,49 +256851,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210477] = 20, - ACTIONS(71), 1, + [213521] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(2863), 1, - anon_sym_DOLLAR, - ACTIONS(2869), 1, + ACTIONS(2044), 1, aux_sym_number_token1, - ACTIONS(2871), 1, + ACTIONS(2046), 1, aux_sym_number_token2, - ACTIONS(2875), 1, + ACTIONS(2050), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2885), 1, + ACTIONS(2064), 1, sym__brace_start, - ACTIONS(9940), 1, + ACTIONS(8062), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9942), 1, - sym__special_character, - ACTIONS(9944), 1, + ACTIONS(8066), 1, anon_sym_DQUOTE, - ACTIONS(9948), 1, + ACTIONS(8070), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9950), 1, + ACTIONS(8072), 1, anon_sym_BQUOTE, - ACTIONS(9952), 1, + ACTIONS(8074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9968), 1, + ACTIONS(9844), 1, sym_word, - ACTIONS(9972), 1, - sym_test_operator, - STATE(4290), 1, - aux_sym__literal_repeat1, - STATE(4709), 1, - sym_concatenation, - ACTIONS(9938), 2, + ACTIONS(9852), 1, + sym__comment_word, + ACTIONS(10118), 1, + anon_sym_DOLLAR, + ACTIONS(8058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9954), 2, + ACTIONS(8076), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9970), 2, + ACTIONS(9848), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9850), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4260), 9, + STATE(1484), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254360,49 +256901,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210549] = 20, - ACTIONS(71), 1, + [213589] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(8474), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8476), 1, - anon_sym_DOLLAR, - ACTIONS(8478), 1, - sym__special_character, - ACTIONS(8480), 1, - anon_sym_DQUOTE, - ACTIONS(8484), 1, + ACTIONS(2044), 1, aux_sym_number_token1, - ACTIONS(8486), 1, + ACTIONS(2046), 1, aux_sym_number_token2, - ACTIONS(8488), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8490), 1, + ACTIONS(2050), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8492), 1, + ACTIONS(2064), 1, + sym__brace_start, + ACTIONS(8062), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8066), 1, + anon_sym_DQUOTE, + ACTIONS(8070), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8072), 1, anon_sym_BQUOTE, - ACTIONS(8494), 1, + ACTIONS(8074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8504), 1, - sym__brace_start, - ACTIONS(9974), 1, + ACTIONS(9844), 1, sym_word, - ACTIONS(9978), 1, - sym_test_operator, - STATE(1828), 1, - aux_sym__literal_repeat1, - STATE(2227), 1, - sym_concatenation, - ACTIONS(8470), 2, + ACTIONS(9852), 1, + sym__comment_word, + ACTIONS(10120), 1, + anon_sym_DOLLAR, + ACTIONS(8058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8496), 2, + ACTIONS(8076), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9976), 2, + ACTIONS(9848), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9850), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1342), 9, + STATE(1484), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254412,100 +256951,97 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210621] = 21, - ACTIONS(71), 1, + [213657] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, - anon_sym_DOLLAR, - ACTIONS(9290), 1, - anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(3249), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(3251), 1, aux_sym_number_token2, - ACTIONS(9296), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(3255), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(3267), 1, + sym__brace_start, + ACTIONS(9858), 1, + sym_word, + ACTIONS(9862), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9868), 1, + anon_sym_DQUOTE, + ACTIONS(9872), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9874), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9876), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9980), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2932), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(9880), 1, + sym__comment_word, + ACTIONS(10122), 1, + anon_sym_DOLLAR, + ACTIONS(9860), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9866), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9878), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9870), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1880), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [210695] = 18, + sym_process_substitution, + [213725] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2309), 1, + ACTIONS(3249), 1, aux_sym_number_token1, - ACTIONS(2311), 1, + ACTIONS(3251), 1, aux_sym_number_token2, - ACTIONS(2315), 1, + ACTIONS(3255), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2327), 1, + ACTIONS(3267), 1, sym__brace_start, - ACTIONS(9982), 1, + ACTIONS(9858), 1, sym_word, - ACTIONS(9986), 1, + ACTIONS(9862), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9988), 1, - anon_sym_DOLLAR, - ACTIONS(9992), 1, + ACTIONS(9868), 1, anon_sym_DQUOTE, - ACTIONS(9996), 1, + ACTIONS(9872), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9998), 1, + ACTIONS(9874), 1, anon_sym_BQUOTE, - ACTIONS(10000), 1, + ACTIONS(9876), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10004), 1, + ACTIONS(9880), 1, sym__comment_word, - ACTIONS(9984), 2, + ACTIONS(10124), 1, + anon_sym_DOLLAR, + ACTIONS(9860), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9990), 2, + ACTIONS(9866), 2, sym_test_operator, sym__special_character, - ACTIONS(10002), 2, + ACTIONS(9878), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9994), 3, + ACTIONS(9870), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1423), 9, + STATE(1880), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254515,47 +257051,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210763] = 18, + [213793] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5405), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5411), 1, - anon_sym_DQUOTE, - ACTIONS(5415), 1, + ACTIONS(1500), 1, aux_sym_number_token1, - ACTIONS(5417), 1, + ACTIONS(1502), 1, aux_sym_number_token2, - ACTIONS(5419), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5421), 1, + ACTIONS(1506), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5423), 1, + ACTIONS(1518), 1, + sym__brace_start, + ACTIONS(9066), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9070), 1, + anon_sym_DQUOTE, + ACTIONS(9074), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9076), 1, anon_sym_BQUOTE, - ACTIONS(5425), 1, + ACTIONS(9078), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5431), 1, - sym__brace_start, - ACTIONS(9958), 1, + ACTIONS(9934), 1, sym_word, - ACTIONS(9966), 1, + ACTIONS(9942), 1, sym__comment_word, - ACTIONS(10006), 1, + ACTIONS(10126), 1, anon_sym_DOLLAR, - ACTIONS(5403), 2, + ACTIONS(9064), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5427), 2, + ACTIONS(9080), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9962), 2, + ACTIONS(9938), 2, sym_test_operator, sym__special_character, - ACTIONS(9964), 3, + ACTIONS(9940), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5541), 9, + STATE(1221), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254565,100 +257101,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210831] = 21, - ACTIONS(71), 1, + [213861] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(9364), 1, - anon_sym_LPAREN, - ACTIONS(9366), 1, - anon_sym_BANG, - ACTIONS(9372), 1, - anon_sym_TILDE, - ACTIONS(9374), 1, - anon_sym_DOLLAR, - ACTIONS(9376), 1, - anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(1500), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(1502), 1, aux_sym_number_token2, - ACTIONS(9382), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(1506), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, - anon_sym_BQUOTE, - ACTIONS(9388), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(10008), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, - sym__arithmetic_unary_expression, - STATE(3400), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9370), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3366), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [210905] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(111), 1, + ACTIONS(1518), 1, + sym__brace_start, + ACTIONS(9066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(117), 1, + ACTIONS(9070), 1, anon_sym_DQUOTE, - ACTIONS(121), 1, - aux_sym_number_token1, - ACTIONS(123), 1, - aux_sym_number_token2, - ACTIONS(125), 1, + ACTIONS(9074), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(127), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(129), 1, + ACTIONS(9076), 1, anon_sym_BQUOTE, - ACTIONS(131), 1, + ACTIONS(9078), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(141), 1, - sym__brace_start, - ACTIONS(9340), 1, + ACTIONS(9934), 1, sym_word, - ACTIONS(9346), 1, + ACTIONS(9942), 1, sym__comment_word, - ACTIONS(10010), 1, + ACTIONS(10128), 1, anon_sym_DOLLAR, - ACTIONS(109), 2, + ACTIONS(9064), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(133), 2, + ACTIONS(9080), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9342), 2, + ACTIONS(9938), 2, sym_test_operator, sym__special_character, - ACTIONS(9344), 3, + ACTIONS(9940), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(482), 9, + STATE(1221), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254668,16 +257151,16 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [210973] = 18, + [213929] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2309), 1, + ACTIONS(4080), 1, aux_sym_number_token1, - ACTIONS(2311), 1, + ACTIONS(4082), 1, aux_sym_number_token2, - ACTIONS(2315), 1, + ACTIONS(4086), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2327), 1, + ACTIONS(4096), 1, sym__brace_start, ACTIONS(9982), 1, sym_word, @@ -254693,7 +257176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, ACTIONS(10004), 1, sym__comment_word, - ACTIONS(10012), 1, + ACTIONS(10130), 1, anon_sym_DOLLAR, ACTIONS(9984), 2, anon_sym_LPAREN_LPAREN, @@ -254708,7 +257191,7 @@ static const uint16_t ts_small_parse_table[] = { sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1423), 9, + STATE(4446), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254718,47 +257201,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211041] = 18, + [213997] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8571), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8573), 1, - anon_sym_DOLLAR, - ACTIONS(8577), 1, - anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(4080), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(4082), 1, aux_sym_number_token2, - ACTIONS(8585), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(4086), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, - anon_sym_BQUOTE, - ACTIONS(8591), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8597), 1, + ACTIONS(4096), 1, sym__brace_start, - ACTIONS(10014), 1, + ACTIONS(9982), 1, sym_word, - ACTIONS(10020), 1, + ACTIONS(9986), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9992), 1, + anon_sym_DQUOTE, + ACTIONS(9996), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9998), 1, + anon_sym_BQUOTE, + ACTIONS(10000), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10004), 1, sym__comment_word, - ACTIONS(8567), 2, + ACTIONS(10132), 1, + anon_sym_DOLLAR, + ACTIONS(9984), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8593), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10016), 2, + ACTIONS(9990), 2, sym_test_operator, sym__special_character, - ACTIONS(10018), 3, + ACTIONS(10002), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9994), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5199), 9, + STATE(4446), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254768,206 +257251,147 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211109] = 21, - ACTIONS(71), 1, + [214065] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, - anon_sym_DOLLAR, - ACTIONS(9290), 1, - anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(3632), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(3634), 1, aux_sym_number_token2, - ACTIONS(9296), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(3638), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, - anon_sym_BQUOTE, - ACTIONS(9302), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10022), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2754), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [211183] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, - anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(3648), 1, + sym__brace_start, + ACTIONS(10008), 1, + sym_word, + ACTIONS(10012), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10018), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, - aux_sym_number_token1, - ACTIONS(9294), 1, - aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(10022), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(10024), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(10026), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10024), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2792), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(10030), 1, + sym__comment_word, + ACTIONS(10134), 1, + anon_sym_DOLLAR, + ACTIONS(10010), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10016), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10028), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10020), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4300), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [211257] = 21, - ACTIONS(71), 1, + sym_process_substitution, + [214133] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(9364), 1, - anon_sym_LPAREN, - ACTIONS(9366), 1, - anon_sym_BANG, - ACTIONS(9372), 1, - anon_sym_TILDE, - ACTIONS(9374), 1, - anon_sym_DOLLAR, - ACTIONS(9376), 1, - anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(3632), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(3634), 1, aux_sym_number_token2, - ACTIONS(9382), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(3638), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(3648), 1, + sym__brace_start, + ACTIONS(10008), 1, + sym_word, + ACTIONS(10012), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10018), 1, + anon_sym_DQUOTE, + ACTIONS(10022), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10024), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, ACTIONS(10026), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, - sym__arithmetic_unary_expression, - STATE(3400), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9370), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3336), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10030), 1, + sym__comment_word, + ACTIONS(10136), 1, + anon_sym_DOLLAR, + ACTIONS(10010), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10016), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10028), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10020), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4300), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [211331] = 18, + sym_process_substitution, + [214201] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3616), 1, - aux_sym_number_token1, - ACTIONS(3618), 1, - aux_sym_number_token2, - ACTIONS(3622), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3632), 1, - sym__brace_start, - ACTIONS(8850), 1, + ACTIONS(7958), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8854), 1, + ACTIONS(7964), 1, anon_sym_DQUOTE, - ACTIONS(8858), 1, + ACTIONS(7968), 1, + aux_sym_number_token1, + ACTIONS(7970), 1, + aux_sym_number_token2, + ACTIONS(7972), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8860), 1, + ACTIONS(7974), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7976), 1, anon_sym_BQUOTE, - ACTIONS(8862), 1, + ACTIONS(7978), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9516), 1, + ACTIONS(7988), 1, + sym__brace_start, + ACTIONS(10070), 1, sym_word, - ACTIONS(9524), 1, + ACTIONS(10078), 1, sym__comment_word, - ACTIONS(10028), 1, + ACTIONS(10138), 1, anon_sym_DOLLAR, - ACTIONS(8848), 2, + ACTIONS(7954), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8864), 2, + ACTIONS(7980), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9520), 2, + ACTIONS(10074), 2, sym_test_operator, sym__special_character, - ACTIONS(9522), 3, + ACTIONS(10076), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2210), 9, + STATE(4322), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -254977,102 +257401,99 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211399] = 21, - ACTIONS(71), 1, + [214269] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(9364), 1, - anon_sym_LPAREN, - ACTIONS(9366), 1, - anon_sym_BANG, - ACTIONS(9372), 1, - anon_sym_TILDE, - ACTIONS(9374), 1, - anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(7958), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7964), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(7968), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(7970), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(7972), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(7974), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(7976), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(7978), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(10030), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, - sym__arithmetic_unary_expression, - STATE(3400), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9370), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3369), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(7988), 1, + sym__brace_start, + ACTIONS(10070), 1, + sym_word, + ACTIONS(10078), 1, + sym__comment_word, + ACTIONS(10140), 1, + anon_sym_DOLLAR, + ACTIONS(7954), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7980), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10074), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10076), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4322), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [211473] = 20, + sym_process_substitution, + [214337] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8268), 1, + ACTIONS(8954), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8270), 1, + ACTIONS(8956), 1, anon_sym_DOLLAR, - ACTIONS(8272), 1, + ACTIONS(8958), 1, sym__special_character, - ACTIONS(8274), 1, + ACTIONS(8960), 1, anon_sym_DQUOTE, - ACTIONS(8278), 1, + ACTIONS(8964), 1, aux_sym_number_token1, - ACTIONS(8280), 1, + ACTIONS(8966), 1, aux_sym_number_token2, - ACTIONS(8282), 1, + ACTIONS(8968), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8284), 1, + ACTIONS(8970), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8286), 1, + ACTIONS(8972), 1, anon_sym_BQUOTE, - ACTIONS(8288), 1, + ACTIONS(8974), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8298), 1, + ACTIONS(8980), 1, sym__brace_start, - ACTIONS(10032), 1, + ACTIONS(10142), 1, sym_word, - ACTIONS(10036), 1, + ACTIONS(10146), 1, sym_test_operator, - STATE(1539), 1, + STATE(2572), 1, aux_sym__literal_repeat1, - STATE(1872), 1, + STATE(2723), 1, sym_concatenation, - ACTIONS(8264), 2, + ACTIONS(8952), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8290), 2, + ACTIONS(8976), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10034), 2, + ACTIONS(10144), 2, sym_raw_string, sym_ansi_c_string, - STATE(1263), 9, + STATE(2321), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255082,49 +257503,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211545] = 20, + [214409] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(8268), 1, + ACTIONS(8954), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8270), 1, + ACTIONS(8956), 1, anon_sym_DOLLAR, - ACTIONS(8272), 1, + ACTIONS(8958), 1, sym__special_character, - ACTIONS(8274), 1, + ACTIONS(8960), 1, anon_sym_DQUOTE, - ACTIONS(8278), 1, + ACTIONS(8964), 1, aux_sym_number_token1, - ACTIONS(8280), 1, + ACTIONS(8966), 1, aux_sym_number_token2, - ACTIONS(8282), 1, + ACTIONS(8968), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8284), 1, + ACTIONS(8970), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8286), 1, + ACTIONS(8972), 1, anon_sym_BQUOTE, - ACTIONS(8288), 1, + ACTIONS(8974), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8298), 1, + ACTIONS(8980), 1, sym__brace_start, - ACTIONS(10038), 1, + ACTIONS(10148), 1, sym_word, - ACTIONS(10042), 1, + ACTIONS(10152), 1, sym_test_operator, - STATE(1509), 1, + STATE(2524), 1, aux_sym__literal_repeat1, - STATE(1883), 1, + STATE(2619), 1, sym_concatenation, - ACTIONS(8264), 2, + ACTIONS(8952), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8290), 2, + ACTIONS(8976), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10040), 2, + ACTIONS(10150), 2, sym_raw_string, sym_ansi_c_string, - STATE(1258), 9, + STATE(2297), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255134,47 +257555,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211617] = 18, + [214481] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3731), 1, - anon_sym_DOLLAR, - ACTIONS(3737), 1, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(3739), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(3743), 1, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3755), 1, + ACTIONS(1133), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, sym__brace_start, - ACTIONS(8820), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8824), 1, - anon_sym_DQUOTE, - ACTIONS(8828), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8830), 1, + ACTIONS(3119), 1, anon_sym_BQUOTE, - ACTIONS(8832), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9412), 1, + ACTIONS(9464), 1, sym_word, - ACTIONS(9420), 1, + ACTIONS(9472), 1, sym__comment_word, - ACTIONS(8818), 2, + ACTIONS(10154), 1, + anon_sym_DOLLAR, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8834), 2, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9416), 2, + ACTIONS(9468), 2, sym_test_operator, sym__special_character, - ACTIONS(9418), 3, + ACTIONS(9470), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4810), 9, + STATE(2365), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255184,153 +257605,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211685] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, - anon_sym_DOLLAR, - ACTIONS(9290), 1, - anon_sym_DQUOTE, - ACTIONS(9292), 1, - aux_sym_number_token1, - ACTIONS(9294), 1, - aux_sym_number_token2, - ACTIONS(9296), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, - anon_sym_BQUOTE, - ACTIONS(9302), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10044), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2793), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [211759] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9364), 1, - anon_sym_LPAREN, - ACTIONS(9366), 1, - anon_sym_BANG, - ACTIONS(9372), 1, - anon_sym_TILDE, - ACTIONS(9374), 1, - anon_sym_DOLLAR, - ACTIONS(9376), 1, - anon_sym_DQUOTE, - ACTIONS(9378), 1, - aux_sym_number_token1, - ACTIONS(9380), 1, - aux_sym_number_token2, - ACTIONS(9382), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, - anon_sym_BQUOTE, - ACTIONS(9388), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(10046), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, - sym__arithmetic_unary_expression, - STATE(3400), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9370), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3370), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [211833] = 18, + [214549] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(9118), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9124), 1, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(9128), 1, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(9130), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(9132), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9134), 1, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9136), 1, - anon_sym_BQUOTE, - ACTIONS(9138), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9144), 1, + ACTIONS(1139), 1, sym__brace_start, - ACTIONS(9442), 1, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + ACTIONS(9464), 1, sym_word, - ACTIONS(9448), 1, + ACTIONS(9472), 1, sym__comment_word, - ACTIONS(10048), 1, + ACTIONS(10156), 1, anon_sym_DOLLAR, - ACTIONS(9116), 2, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9140), 2, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9444), 2, + ACTIONS(9468), 2, sym_test_operator, sym__special_character, - ACTIONS(9446), 3, + ACTIONS(9470), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2401), 9, + STATE(2365), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255340,49 +257655,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211901] = 20, - ACTIONS(71), 1, + [214617] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(9758), 1, + ACTIONS(8090), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9760), 1, + ACTIONS(8092), 1, anon_sym_DOLLAR, - ACTIONS(9764), 1, + ACTIONS(8096), 1, anon_sym_DQUOTE, - ACTIONS(9768), 1, + ACTIONS(8100), 1, aux_sym_number_token1, - ACTIONS(9770), 1, + ACTIONS(8102), 1, aux_sym_number_token2, - ACTIONS(9772), 1, + ACTIONS(8104), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9774), 1, + ACTIONS(8106), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9776), 1, + ACTIONS(8108), 1, anon_sym_BQUOTE, - ACTIONS(9778), 1, + ACTIONS(8110), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9784), 1, + ACTIONS(8120), 1, sym__brace_start, - ACTIONS(10050), 1, + ACTIONS(9806), 1, sym_word, - ACTIONS(10052), 1, - sym__special_character, - ACTIONS(10056), 1, - sym_test_operator, - STATE(6219), 1, - aux_sym__literal_repeat1, - STATE(6469), 1, - sym_concatenation, - ACTIONS(9756), 2, + ACTIONS(9814), 1, + sym__comment_word, + ACTIONS(8086), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9780), 2, + ACTIONS(8112), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10054), 2, + ACTIONS(9810), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9812), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(6192), 9, + STATE(1531), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255392,49 +257705,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [211973] = 20, - ACTIONS(71), 1, + [214685] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3675), 1, - anon_sym_DOLLAR, - ACTIONS(3681), 1, + ACTIONS(4080), 1, aux_sym_number_token1, - ACTIONS(3683), 1, + ACTIONS(4082), 1, aux_sym_number_token2, - ACTIONS(3687), 1, + ACTIONS(4086), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3697), 1, + ACTIONS(4096), 1, sym__brace_start, - ACTIONS(10058), 1, + ACTIONS(9982), 1, sym_word, - ACTIONS(10062), 1, + ACTIONS(9986), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10064), 1, - sym__special_character, - ACTIONS(10066), 1, + ACTIONS(9992), 1, anon_sym_DQUOTE, - ACTIONS(10070), 1, + ACTIONS(9996), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10072), 1, + ACTIONS(9998), 1, anon_sym_BQUOTE, - ACTIONS(10074), 1, + ACTIONS(10000), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10078), 1, - sym_test_operator, - STATE(4645), 1, - aux_sym__literal_repeat1, - STATE(5086), 1, - sym_concatenation, - ACTIONS(10060), 2, + ACTIONS(10004), 1, + sym__comment_word, + ACTIONS(10158), 1, + anon_sym_DOLLAR, + ACTIONS(9984), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10068), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(10076), 2, + ACTIONS(9990), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10002), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(4430), 9, + ACTIONS(9994), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4446), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255444,47 +257755,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212045] = 18, + [214753] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3612), 1, - anon_sym_DOLLAR, - ACTIONS(3616), 1, + ACTIONS(4080), 1, aux_sym_number_token1, - ACTIONS(3618), 1, + ACTIONS(4082), 1, aux_sym_number_token2, - ACTIONS(3622), 1, + ACTIONS(4086), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3632), 1, + ACTIONS(4096), 1, sym__brace_start, - ACTIONS(8850), 1, + ACTIONS(9982), 1, + sym_word, + ACTIONS(9986), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8854), 1, + ACTIONS(9992), 1, anon_sym_DQUOTE, - ACTIONS(8858), 1, + ACTIONS(9996), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8860), 1, + ACTIONS(9998), 1, anon_sym_BQUOTE, - ACTIONS(8862), 1, + ACTIONS(10000), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9516), 1, - sym_word, - ACTIONS(9524), 1, + ACTIONS(10004), 1, sym__comment_word, - ACTIONS(8848), 2, + ACTIONS(10160), 1, + anon_sym_DOLLAR, + ACTIONS(9984), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8864), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9520), 2, + ACTIONS(9990), 2, sym_test_operator, sym__special_character, - ACTIONS(9522), 3, + ACTIONS(10002), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9994), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2210), 9, + STATE(4446), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255494,155 +257805,97 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212113] = 21, - ACTIONS(71), 1, + [214821] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(3111), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, - anon_sym_DOLLAR, - ACTIONS(9290), 1, - anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(3632), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(3634), 1, aux_sym_number_token2, - ACTIONS(9296), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(3638), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, - anon_sym_BQUOTE, - ACTIONS(9302), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2799), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [212187] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9364), 1, - anon_sym_LPAREN, - ACTIONS(9366), 1, - anon_sym_BANG, - ACTIONS(9372), 1, - anon_sym_TILDE, - ACTIONS(9374), 1, - anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(3648), 1, + sym__brace_start, + ACTIONS(10008), 1, + sym_word, + ACTIONS(10012), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10018), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, - aux_sym_number_token1, - ACTIONS(9380), 1, - aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(10022), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(10024), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(10026), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(10080), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, - sym__arithmetic_unary_expression, - STATE(3400), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9370), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3435), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(10030), 1, + sym__comment_word, + ACTIONS(10162), 1, + anon_sym_DOLLAR, + ACTIONS(10010), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10016), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10028), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10020), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4300), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [212261] = 20, - ACTIONS(71), 1, + sym_process_substitution, + [214889] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(1454), 1, - anon_sym_DOLLAR, - ACTIONS(1460), 1, + ACTIONS(3632), 1, aux_sym_number_token1, - ACTIONS(1462), 1, + ACTIONS(3634), 1, aux_sym_number_token2, - ACTIONS(1466), 1, + ACTIONS(3638), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1478), 1, + ACTIONS(3648), 1, sym__brace_start, - ACTIONS(8878), 1, + ACTIONS(10008), 1, + sym_word, + ACTIONS(10012), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8880), 1, - sym__special_character, - ACTIONS(8882), 1, + ACTIONS(10018), 1, anon_sym_DQUOTE, - ACTIONS(8886), 1, + ACTIONS(10022), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8888), 1, + ACTIONS(10024), 1, anon_sym_BQUOTE, - ACTIONS(8890), 1, + ACTIONS(10026), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10082), 1, - sym_word, - ACTIONS(10086), 1, - sym_test_operator, - STATE(1202), 1, - aux_sym__literal_repeat1, - STATE(1390), 1, - sym_concatenation, - ACTIONS(8876), 2, + ACTIONS(10030), 1, + sym__comment_word, + ACTIONS(10164), 1, + anon_sym_DOLLAR, + ACTIONS(10010), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8892), 2, + ACTIONS(10016), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10028), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10084), 2, + ACTIONS(10020), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(993), 9, + STATE(4300), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255652,49 +257905,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212333] = 20, - ACTIONS(71), 1, + [214957] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(1454), 1, - anon_sym_DOLLAR, - ACTIONS(1460), 1, - aux_sym_number_token1, - ACTIONS(1462), 1, - aux_sym_number_token2, - ACTIONS(1466), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1478), 1, - sym__brace_start, - ACTIONS(8878), 1, + ACTIONS(7958), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8880), 1, - sym__special_character, - ACTIONS(8882), 1, + ACTIONS(7964), 1, anon_sym_DQUOTE, - ACTIONS(8886), 1, + ACTIONS(7968), 1, + aux_sym_number_token1, + ACTIONS(7970), 1, + aux_sym_number_token2, + ACTIONS(7972), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8888), 1, + ACTIONS(7974), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7976), 1, anon_sym_BQUOTE, - ACTIONS(8890), 1, + ACTIONS(7978), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10088), 1, + ACTIONS(7988), 1, + sym__brace_start, + ACTIONS(10070), 1, sym_word, - ACTIONS(10092), 1, - sym_test_operator, - STATE(1201), 1, - aux_sym__literal_repeat1, - STATE(1387), 1, - sym_concatenation, - ACTIONS(8876), 2, + ACTIONS(10078), 1, + sym__comment_word, + ACTIONS(10166), 1, + anon_sym_DOLLAR, + ACTIONS(7954), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8892), 2, + ACTIONS(7980), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10090), 2, + ACTIONS(10074), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10076), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(995), 9, + STATE(4322), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255704,47 +257955,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212405] = 18, + [215025] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1593), 1, - aux_sym_number_token1, - ACTIONS(1595), 1, - aux_sym_number_token2, - ACTIONS(1599), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1611), 1, - sym__brace_start, - ACTIONS(9240), 1, + ACTIONS(7958), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9244), 1, + ACTIONS(7964), 1, anon_sym_DQUOTE, - ACTIONS(9248), 1, + ACTIONS(7968), 1, + aux_sym_number_token1, + ACTIONS(7970), 1, + aux_sym_number_token2, + ACTIONS(7972), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9250), 1, + ACTIONS(7974), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7976), 1, anon_sym_BQUOTE, - ACTIONS(9252), 1, + ACTIONS(7978), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10094), 1, + ACTIONS(7988), 1, + sym__brace_start, + ACTIONS(10070), 1, sym_word, - ACTIONS(10096), 1, - anon_sym_DOLLAR, - ACTIONS(10102), 1, + ACTIONS(10078), 1, sym__comment_word, - ACTIONS(9238), 2, + ACTIONS(10168), 1, + anon_sym_DOLLAR, + ACTIONS(7954), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9254), 2, + ACTIONS(7980), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10098), 2, + ACTIONS(10074), 2, sym_test_operator, sym__special_character, - ACTIONS(10100), 3, + ACTIONS(10076), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1293), 9, + STATE(4322), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255754,102 +258005,99 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212473] = 21, - ACTIONS(71), 1, + [215093] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, - anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(8954), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8960), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(8964), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(8966), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(8968), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(8970), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(8972), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(8974), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10104), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2755), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(8980), 1, + sym__brace_start, + ACTIONS(10170), 1, + sym_word, + ACTIONS(10172), 1, + anon_sym_DOLLAR, + ACTIONS(10178), 1, + sym__comment_word, + ACTIONS(8952), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8976), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10174), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10176), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2442), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [212547] = 20, + sym_process_substitution, + [215161] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(4080), 1, + ACTIONS(4074), 1, anon_sym_DOLLAR, - ACTIONS(4086), 1, + ACTIONS(4080), 1, aux_sym_number_token1, - ACTIONS(4088), 1, + ACTIONS(4082), 1, aux_sym_number_token2, - ACTIONS(4092), 1, + ACTIONS(4086), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4102), 1, + ACTIONS(4096), 1, sym__brace_start, - ACTIONS(9310), 1, + ACTIONS(9986), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9316), 1, + ACTIONS(9992), 1, anon_sym_DQUOTE, - ACTIONS(9320), 1, + ACTIONS(9996), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9322), 1, + ACTIONS(9998), 1, anon_sym_BQUOTE, - ACTIONS(9324), 1, + ACTIONS(10000), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10106), 1, + ACTIONS(10180), 1, sym_word, - ACTIONS(10108), 1, + ACTIONS(10182), 1, sym__special_character, - ACTIONS(10112), 1, + ACTIONS(10186), 1, sym_test_operator, - STATE(4421), 1, + STATE(4505), 1, aux_sym__literal_repeat1, - STATE(4869), 1, + STATE(4997), 1, sym_concatenation, - ACTIONS(9308), 2, + ACTIONS(9984), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9326), 2, + ACTIONS(10002), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10110), 2, + ACTIONS(10184), 2, sym_raw_string, sym_ansi_c_string, - STATE(4673), 9, + STATE(4674), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255859,47 +258107,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212619] = 18, - ACTIONS(3), 1, + [215233] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3397), 1, + ACTIONS(4074), 1, anon_sym_DOLLAR, - ACTIONS(3401), 1, + ACTIONS(4080), 1, aux_sym_number_token1, - ACTIONS(3403), 1, + ACTIONS(4082), 1, aux_sym_number_token2, - ACTIONS(3407), 1, + ACTIONS(4086), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3417), 1, + ACTIONS(4096), 1, sym__brace_start, - ACTIONS(8926), 1, + ACTIONS(9986), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8930), 1, + ACTIONS(9992), 1, anon_sym_DQUOTE, - ACTIONS(8934), 1, + ACTIONS(9996), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8936), 1, + ACTIONS(9998), 1, anon_sym_BQUOTE, - ACTIONS(8938), 1, + ACTIONS(10000), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9696), 1, + ACTIONS(10182), 1, + sym__special_character, + ACTIONS(10188), 1, sym_word, - ACTIONS(9704), 1, - sym__comment_word, - ACTIONS(8924), 2, + ACTIONS(10192), 1, + sym_test_operator, + STATE(4527), 1, + aux_sym__literal_repeat1, + STATE(4876), 1, + sym_concatenation, + ACTIONS(9984), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8940), 2, + ACTIONS(10002), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9700), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9702), 3, - sym__bare_dollar, + ACTIONS(10190), 2, sym_raw_string, sym_ansi_c_string, - STATE(1851), 9, + STATE(4607), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255909,49 +258159,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212687] = 20, - ACTIONS(71), 1, + [215305] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(4080), 1, - anon_sym_DOLLAR, - ACTIONS(4086), 1, - aux_sym_number_token1, - ACTIONS(4088), 1, - aux_sym_number_token2, - ACTIONS(4092), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4102), 1, - sym__brace_start, - ACTIONS(9310), 1, + ACTIONS(8954), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9316), 1, + ACTIONS(8960), 1, anon_sym_DQUOTE, - ACTIONS(9320), 1, + ACTIONS(8964), 1, + aux_sym_number_token1, + ACTIONS(8966), 1, + aux_sym_number_token2, + ACTIONS(8968), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9322), 1, + ACTIONS(8970), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8972), 1, anon_sym_BQUOTE, - ACTIONS(9324), 1, + ACTIONS(8974), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10108), 1, - sym__special_character, - ACTIONS(10114), 1, + ACTIONS(8980), 1, + sym__brace_start, + ACTIONS(10170), 1, sym_word, - ACTIONS(10118), 1, - sym_test_operator, - STATE(4500), 1, - aux_sym__literal_repeat1, - STATE(5029), 1, - sym_concatenation, - ACTIONS(9308), 2, + ACTIONS(10178), 1, + sym__comment_word, + ACTIONS(10194), 1, + anon_sym_DOLLAR, + ACTIONS(8952), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9326), 2, + ACTIONS(8976), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10116), 2, + ACTIONS(10174), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10176), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4760), 9, + STATE(2442), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -255961,47 +258209,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212759] = 18, + [215373] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 1, + ACTIONS(2038), 1, + anon_sym_DOLLAR, + ACTIONS(2044), 1, aux_sym_number_token1, - ACTIONS(1422), 1, + ACTIONS(2046), 1, aux_sym_number_token2, - ACTIONS(1426), 1, + ACTIONS(2050), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1438), 1, + ACTIONS(2064), 1, sym__brace_start, - ACTIONS(9094), 1, + ACTIONS(8062), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9098), 1, + ACTIONS(8066), 1, anon_sym_DQUOTE, - ACTIONS(9102), 1, + ACTIONS(8070), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9104), 1, + ACTIONS(8072), 1, anon_sym_BQUOTE, - ACTIONS(9106), 1, + ACTIONS(8074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10120), 1, + ACTIONS(9844), 1, sym_word, - ACTIONS(10122), 1, - anon_sym_DOLLAR, - ACTIONS(10128), 1, + ACTIONS(9852), 1, sym__comment_word, - ACTIONS(9092), 2, + ACTIONS(8058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9108), 2, + ACTIONS(8076), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10124), 2, + ACTIONS(9848), 2, sym_test_operator, sym__special_character, - ACTIONS(10126), 3, + ACTIONS(9850), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(910), 9, + STATE(1484), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256011,49 +258259,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212827] = 20, - ACTIONS(71), 1, + [215441] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3026), 1, - anon_sym_DOLLAR, - ACTIONS(3032), 1, + ACTIONS(4080), 1, aux_sym_number_token1, - ACTIONS(3034), 1, + ACTIONS(4082), 1, aux_sym_number_token2, - ACTIONS(3038), 1, + ACTIONS(4086), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3048), 1, + ACTIONS(4096), 1, sym__brace_start, - ACTIONS(10130), 1, + ACTIONS(9982), 1, sym_word, - ACTIONS(10134), 1, + ACTIONS(9986), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10136), 1, - sym__special_character, - ACTIONS(10138), 1, + ACTIONS(9992), 1, anon_sym_DQUOTE, - ACTIONS(10142), 1, + ACTIONS(9996), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10144), 1, + ACTIONS(9998), 1, anon_sym_BQUOTE, - ACTIONS(10146), 1, + ACTIONS(10000), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10150), 1, - sym_test_operator, - STATE(4492), 1, - aux_sym__literal_repeat1, - STATE(4893), 1, - sym_concatenation, - ACTIONS(10132), 2, + ACTIONS(10004), 1, + sym__comment_word, + ACTIONS(10196), 1, + anon_sym_DOLLAR, + ACTIONS(9984), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10140), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(10148), 2, + ACTIONS(9990), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10002), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(4274), 9, + ACTIONS(9994), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4446), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256063,47 +258309,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212899] = 18, + [215509] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, + ACTIONS(4080), 1, aux_sym_number_token1, - ACTIONS(3403), 1, + ACTIONS(4082), 1, aux_sym_number_token2, - ACTIONS(3407), 1, + ACTIONS(4086), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3417), 1, + ACTIONS(4096), 1, sym__brace_start, - ACTIONS(8926), 1, + ACTIONS(9982), 1, + sym_word, + ACTIONS(9986), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8930), 1, + ACTIONS(9992), 1, anon_sym_DQUOTE, - ACTIONS(8934), 1, + ACTIONS(9996), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8936), 1, + ACTIONS(9998), 1, anon_sym_BQUOTE, - ACTIONS(8938), 1, + ACTIONS(10000), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9696), 1, - sym_word, - ACTIONS(9704), 1, + ACTIONS(10004), 1, sym__comment_word, - ACTIONS(10152), 1, + ACTIONS(10198), 1, anon_sym_DOLLAR, - ACTIONS(8924), 2, + ACTIONS(9984), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8940), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9700), 2, + ACTIONS(9990), 2, sym_test_operator, sym__special_character, - ACTIONS(9702), 3, + ACTIONS(10002), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9994), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1851), 9, + STATE(4446), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256113,100 +258359,97 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [212967] = 21, - ACTIONS(71), 1, + [215577] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, - anon_sym_DOLLAR, - ACTIONS(9290), 1, - anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(3632), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(3634), 1, aux_sym_number_token2, - ACTIONS(9296), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(3638), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(3648), 1, + sym__brace_start, + ACTIONS(10008), 1, + sym_word, + ACTIONS(10012), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10018), 1, + anon_sym_DQUOTE, + ACTIONS(10022), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10024), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(10026), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10154), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3195), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(10030), 1, + sym__comment_word, + ACTIONS(10200), 1, + anon_sym_DOLLAR, + ACTIONS(10010), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10016), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10028), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10020), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4300), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [213041] = 18, + sym_process_substitution, + [215645] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 1, + ACTIONS(3632), 1, aux_sym_number_token1, - ACTIONS(1422), 1, + ACTIONS(3634), 1, aux_sym_number_token2, - ACTIONS(1426), 1, + ACTIONS(3638), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1438), 1, + ACTIONS(3648), 1, sym__brace_start, - ACTIONS(9094), 1, + ACTIONS(10008), 1, + sym_word, + ACTIONS(10012), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9098), 1, + ACTIONS(10018), 1, anon_sym_DQUOTE, - ACTIONS(9102), 1, + ACTIONS(10022), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9104), 1, + ACTIONS(10024), 1, anon_sym_BQUOTE, - ACTIONS(9106), 1, + ACTIONS(10026), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10120), 1, - sym_word, - ACTIONS(10128), 1, + ACTIONS(10030), 1, sym__comment_word, - ACTIONS(10156), 1, + ACTIONS(10202), 1, anon_sym_DOLLAR, - ACTIONS(9092), 2, + ACTIONS(10010), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9108), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10124), 2, + ACTIONS(10016), 2, sym_test_operator, sym__special_character, - ACTIONS(10126), 3, + ACTIONS(10028), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10020), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(910), 9, + STATE(4300), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256216,7 +258459,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213109] = 18, + [215713] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(7958), 1, @@ -256237,11 +258480,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, ACTIONS(7988), 1, sym__brace_start, - ACTIONS(9860), 1, + ACTIONS(10070), 1, sym_word, - ACTIONS(9868), 1, + ACTIONS(10078), 1, sym__comment_word, - ACTIONS(10158), 1, + ACTIONS(10204), 1, anon_sym_DOLLAR, ACTIONS(7954), 2, anon_sym_LPAREN_LPAREN, @@ -256249,14 +258492,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7980), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9864), 2, + ACTIONS(10074), 2, sym_test_operator, sym__special_character, - ACTIONS(9866), 3, + ACTIONS(10076), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4357), 9, + STATE(4322), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256266,7 +258509,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213177] = 18, + [215781] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(7958), 1, @@ -256287,11 +258530,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, ACTIONS(7988), 1, sym__brace_start, - ACTIONS(9860), 1, + ACTIONS(10070), 1, sym_word, - ACTIONS(9868), 1, + ACTIONS(10078), 1, sym__comment_word, - ACTIONS(10160), 1, + ACTIONS(10206), 1, anon_sym_DOLLAR, ACTIONS(7954), 2, anon_sym_LPAREN_LPAREN, @@ -256299,14 +258542,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7980), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9864), 2, + ACTIONS(10074), 2, sym_test_operator, sym__special_character, - ACTIONS(9866), 3, + ACTIONS(10076), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4357), 9, + STATE(4322), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256316,47 +258559,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213245] = 18, - ACTIONS(3), 1, + [215849] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(1530), 1, + anon_sym_DOLLAR, + ACTIONS(1536), 1, aux_sym_number_token1, - ACTIONS(3795), 1, + ACTIONS(1538), 1, aux_sym_number_token2, - ACTIONS(3799), 1, + ACTIONS(1542), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3809), 1, + ACTIONS(1554), 1, sym__brace_start, - ACTIONS(9636), 1, + ACTIONS(8868), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9640), 1, + ACTIONS(8870), 1, + sym__special_character, + ACTIONS(8872), 1, anon_sym_DQUOTE, - ACTIONS(9644), 1, + ACTIONS(8876), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9646), 1, + ACTIONS(8878), 1, anon_sym_BQUOTE, - ACTIONS(9648), 1, + ACTIONS(8880), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9872), 1, + ACTIONS(10208), 1, sym_word, - ACTIONS(9880), 1, - sym__comment_word, - ACTIONS(10162), 1, - anon_sym_DOLLAR, - ACTIONS(9634), 2, + ACTIONS(10212), 1, + sym_test_operator, + STATE(1392), 1, + aux_sym__literal_repeat1, + STATE(1493), 1, + sym_concatenation, + ACTIONS(8866), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9650), 2, + ACTIONS(8882), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9876), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9878), 3, - sym__bare_dollar, + ACTIONS(10210), 2, sym_raw_string, sym_ansi_c_string, - STATE(4337), 9, + STATE(1011), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256366,97 +258611,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213313] = 18, - ACTIONS(3), 1, + [215921] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(1530), 1, + anon_sym_DOLLAR, + ACTIONS(1536), 1, aux_sym_number_token1, - ACTIONS(3795), 1, + ACTIONS(1538), 1, aux_sym_number_token2, - ACTIONS(3799), 1, + ACTIONS(1542), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3809), 1, + ACTIONS(1554), 1, sym__brace_start, - ACTIONS(9636), 1, + ACTIONS(8868), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9640), 1, + ACTIONS(8870), 1, + sym__special_character, + ACTIONS(8872), 1, anon_sym_DQUOTE, - ACTIONS(9644), 1, + ACTIONS(8876), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9646), 1, + ACTIONS(8878), 1, anon_sym_BQUOTE, - ACTIONS(9648), 1, + ACTIONS(8880), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9872), 1, + ACTIONS(10214), 1, sym_word, - ACTIONS(9880), 1, - sym__comment_word, - ACTIONS(10164), 1, - anon_sym_DOLLAR, - ACTIONS(9634), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9650), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9876), 2, + ACTIONS(10218), 1, sym_test_operator, - sym__special_character, - ACTIONS(9878), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(4337), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [213381] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4086), 1, - aux_sym_number_token1, - ACTIONS(4088), 1, - aux_sym_number_token2, - ACTIONS(4092), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4102), 1, - sym__brace_start, - ACTIONS(9306), 1, - sym_word, - ACTIONS(9310), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9316), 1, - anon_sym_DQUOTE, - ACTIONS(9320), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9322), 1, - anon_sym_BQUOTE, - ACTIONS(9324), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9328), 1, - sym__comment_word, - ACTIONS(10166), 1, - anon_sym_DOLLAR, - ACTIONS(9308), 2, + STATE(1413), 1, + aux_sym__literal_repeat1, + STATE(1481), 1, + sym_concatenation, + ACTIONS(8866), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9314), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9326), 2, + ACTIONS(8882), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9318), 3, - sym__bare_dollar, + ACTIONS(10216), 2, sym_raw_string, sym_ansi_c_string, - STATE(4566), 9, + STATE(1029), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256466,103 +258663,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213449] = 21, + [215993] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3602), 1, sym_variable_name, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, - anon_sym_DOLLAR, - ACTIONS(9290), 1, - anon_sym_DQUOTE, - ACTIONS(9292), 1, - aux_sym_number_token1, - ACTIONS(9294), 1, - aux_sym_number_token2, - ACTIONS(9296), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, - anon_sym_BQUOTE, - ACTIONS(9302), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10168), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2794), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [213523] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9364), 1, + ACTIONS(9818), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9820), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9826), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9828), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9830), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9832), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9834), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9836), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9840), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9842), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(10170), 1, + ACTIONS(10220), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, + STATE(3375), 1, sym__arithmetic_binary_expression, - STATE(3396), 1, + STATE(3378), 1, sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(3407), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(3409), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + ACTIONS(9822), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9824), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3371), 9, + STATE(3362), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -256572,47 +258716,47 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [213597] = 18, + [216067] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4086), 1, + ACTIONS(3243), 1, + anon_sym_DOLLAR, + ACTIONS(3249), 1, aux_sym_number_token1, - ACTIONS(4088), 1, + ACTIONS(3251), 1, aux_sym_number_token2, - ACTIONS(4092), 1, + ACTIONS(3255), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4102), 1, + ACTIONS(3267), 1, sym__brace_start, - ACTIONS(9306), 1, + ACTIONS(9858), 1, sym_word, - ACTIONS(9310), 1, + ACTIONS(9862), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9316), 1, + ACTIONS(9868), 1, anon_sym_DQUOTE, - ACTIONS(9320), 1, + ACTIONS(9872), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9322), 1, + ACTIONS(9874), 1, anon_sym_BQUOTE, - ACTIONS(9324), 1, + ACTIONS(9876), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9328), 1, + ACTIONS(9880), 1, sym__comment_word, - ACTIONS(10172), 1, - anon_sym_DOLLAR, - ACTIONS(9308), 2, + ACTIONS(9860), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9314), 2, + ACTIONS(9866), 2, sym_test_operator, sym__special_character, - ACTIONS(9326), 2, + ACTIONS(9878), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9318), 3, + ACTIONS(9870), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4566), 9, + STATE(1880), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256622,47 +258766,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213665] = 18, - ACTIONS(3), 1, + [216135] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(5112), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5118), 1, - anon_sym_DQUOTE, - ACTIONS(5122), 1, + ACTIONS(3626), 1, + anon_sym_DOLLAR, + ACTIONS(3632), 1, aux_sym_number_token1, - ACTIONS(5124), 1, + ACTIONS(3634), 1, aux_sym_number_token2, - ACTIONS(5126), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5128), 1, + ACTIONS(3638), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5130), 1, + ACTIONS(3648), 1, + sym__brace_start, + ACTIONS(10012), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10018), 1, + anon_sym_DQUOTE, + ACTIONS(10022), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10024), 1, anon_sym_BQUOTE, - ACTIONS(5132), 1, + ACTIONS(10026), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5138), 1, - sym__brace_start, - ACTIONS(10174), 1, + ACTIONS(10222), 1, sym_word, - ACTIONS(10176), 1, - anon_sym_DOLLAR, - ACTIONS(10182), 1, - sym__comment_word, - ACTIONS(5110), 2, + ACTIONS(10224), 1, + sym__special_character, + ACTIONS(10228), 1, + sym_test_operator, + STATE(4364), 1, + aux_sym__literal_repeat1, + STATE(4771), 1, + sym_concatenation, + ACTIONS(10010), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5134), 2, + ACTIONS(10028), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10178), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10180), 3, - sym__bare_dollar, + ACTIONS(10226), 2, sym_raw_string, sym_ansi_c_string, - STATE(2842), 9, + STATE(4562), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256672,47 +258818,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213733] = 18, - ACTIONS(3), 1, + [216207] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(8178), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8180), 1, + ACTIONS(3626), 1, anon_sym_DOLLAR, - ACTIONS(8184), 1, - anon_sym_DQUOTE, - ACTIONS(8188), 1, + ACTIONS(3632), 1, aux_sym_number_token1, - ACTIONS(8190), 1, + ACTIONS(3634), 1, aux_sym_number_token2, - ACTIONS(8192), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8194), 1, + ACTIONS(3638), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8196), 1, + ACTIONS(3648), 1, + sym__brace_start, + ACTIONS(10012), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10018), 1, + anon_sym_DQUOTE, + ACTIONS(10022), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10024), 1, anon_sym_BQUOTE, - ACTIONS(8198), 1, + ACTIONS(10026), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8208), 1, - sym__brace_start, - ACTIONS(9720), 1, + ACTIONS(10224), 1, + sym__special_character, + ACTIONS(10230), 1, sym_word, - ACTIONS(9728), 1, - sym__comment_word, - ACTIONS(8174), 2, + ACTIONS(10234), 1, + sym_test_operator, + STATE(4340), 1, + aux_sym__literal_repeat1, + STATE(4679), 1, + sym_concatenation, + ACTIONS(10010), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8200), 2, + ACTIONS(10028), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9724), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9726), 3, - sym__bare_dollar, + ACTIONS(10232), 2, sym_raw_string, sym_ansi_c_string, - STATE(1590), 9, + STATE(4490), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256722,47 +258870,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213801] = 18, + [216279] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3886), 1, - aux_sym_number_token1, - ACTIONS(3888), 1, - aux_sym_number_token2, - ACTIONS(3892), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3902), 1, - sym__brace_start, - ACTIONS(8992), 1, + ACTIONS(111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8996), 1, + ACTIONS(117), 1, anon_sym_DQUOTE, - ACTIONS(9000), 1, + ACTIONS(121), 1, + aux_sym_number_token1, + ACTIONS(123), 1, + aux_sym_number_token2, + ACTIONS(125), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9002), 1, + ACTIONS(127), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(129), 1, anon_sym_BQUOTE, - ACTIONS(9004), 1, + ACTIONS(131), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9740), 1, + ACTIONS(141), 1, + sym__brace_start, + ACTIONS(10236), 1, sym_word, - ACTIONS(9746), 1, - sym__comment_word, - ACTIONS(10184), 1, + ACTIONS(10238), 1, anon_sym_DOLLAR, - ACTIONS(8990), 2, + ACTIONS(10244), 1, + sym__comment_word, + ACTIONS(109), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9006), 2, + ACTIONS(133), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9742), 2, + ACTIONS(10240), 2, sym_test_operator, sym__special_character, - ACTIONS(9744), 3, + ACTIONS(10242), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2004), 9, + STATE(475), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256772,100 +258920,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [213869] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9364), 1, - anon_sym_LPAREN, - ACTIONS(9366), 1, - anon_sym_BANG, - ACTIONS(9372), 1, - anon_sym_TILDE, - ACTIONS(9374), 1, - anon_sym_DOLLAR, - ACTIONS(9376), 1, - anon_sym_DQUOTE, - ACTIONS(9378), 1, - aux_sym_number_token1, - ACTIONS(9380), 1, - aux_sym_number_token2, - ACTIONS(9382), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, - anon_sym_BQUOTE, - ACTIONS(9388), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(10186), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, - sym__arithmetic_unary_expression, - STATE(3400), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9370), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3334), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [213943] = 18, + [216347] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1141), 1, + ACTIONS(111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1149), 1, + ACTIONS(117), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(121), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(123), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(125), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(127), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, + ACTIONS(129), 1, + anon_sym_BQUOTE, + ACTIONS(131), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, + ACTIONS(141), 1, sym__brace_start, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - ACTIONS(10188), 1, + ACTIONS(10236), 1, sym_word, - ACTIONS(10190), 1, - anon_sym_DOLLAR, - ACTIONS(10196), 1, + ACTIONS(10244), 1, sym__comment_word, - ACTIONS(1129), 2, + ACTIONS(10246), 1, + anon_sym_DOLLAR, + ACTIONS(109), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, + ACTIONS(133), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10192), 2, + ACTIONS(10240), 2, sym_test_operator, sym__special_character, - ACTIONS(10194), 3, + ACTIONS(10242), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2392), 9, + STATE(475), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256875,100 +258970,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214011] = 21, - ACTIONS(71), 1, + [216415] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(3225), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(1494), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, - anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(1500), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(1502), 1, aux_sym_number_token2, - ACTIONS(9296), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(1506), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, - anon_sym_BQUOTE, - ACTIONS(9302), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2756), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [214085] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1141), 1, + ACTIONS(1518), 1, + sym__brace_start, + ACTIONS(9066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1149), 1, + ACTIONS(9070), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(9074), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(3060), 1, + ACTIONS(9076), 1, anon_sym_BQUOTE, - ACTIONS(10188), 1, + ACTIONS(9078), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9934), 1, sym_word, - ACTIONS(10196), 1, + ACTIONS(9942), 1, sym__comment_word, - ACTIONS(10198), 1, - anon_sym_DOLLAR, - ACTIONS(1129), 2, + ACTIONS(9064), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, + ACTIONS(9080), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10192), 2, + ACTIONS(9938), 2, sym_test_operator, sym__special_character, - ACTIONS(10194), 3, + ACTIONS(9940), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2392), 9, + STATE(1221), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -256978,49 +259020,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214153] = 20, + [216483] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3026), 1, + ACTIONS(1494), 1, anon_sym_DOLLAR, - ACTIONS(3032), 1, + ACTIONS(1500), 1, aux_sym_number_token1, - ACTIONS(3034), 1, + ACTIONS(1502), 1, aux_sym_number_token2, - ACTIONS(3038), 1, + ACTIONS(1506), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3048), 1, + ACTIONS(1518), 1, sym__brace_start, - ACTIONS(10134), 1, + ACTIONS(9066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10136), 1, + ACTIONS(9068), 1, sym__special_character, - ACTIONS(10138), 1, + ACTIONS(9070), 1, anon_sym_DQUOTE, - ACTIONS(10142), 1, + ACTIONS(9074), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10144), 1, + ACTIONS(9076), 1, anon_sym_BQUOTE, - ACTIONS(10146), 1, + ACTIONS(9078), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10200), 1, + ACTIONS(10248), 1, sym_word, - ACTIONS(10204), 1, + ACTIONS(10252), 1, sym_test_operator, - STATE(4527), 1, + STATE(1453), 1, aux_sym__literal_repeat1, - STATE(4885), 1, + STATE(1660), 1, sym_concatenation, - ACTIONS(10132), 2, + ACTIONS(9064), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10148), 2, + ACTIONS(9080), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10202), 2, + ACTIONS(10250), 2, sym_raw_string, sym_ansi_c_string, - STATE(4375), 9, + STATE(1038), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257030,47 +259072,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214225] = 18, - ACTIONS(3), 1, + [216555] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(6488), 1, + ACTIONS(1494), 1, anon_sym_DOLLAR, - ACTIONS(6494), 1, + ACTIONS(1500), 1, aux_sym_number_token1, - ACTIONS(6496), 1, + ACTIONS(1502), 1, aux_sym_number_token2, - ACTIONS(6500), 1, + ACTIONS(1506), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6512), 1, + ACTIONS(1518), 1, sym__brace_start, - ACTIONS(7226), 1, + ACTIONS(9066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7230), 1, + ACTIONS(9068), 1, + sym__special_character, + ACTIONS(9070), 1, anon_sym_DQUOTE, - ACTIONS(7234), 1, + ACTIONS(9074), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, + ACTIONS(9076), 1, anon_sym_BQUOTE, - ACTIONS(7238), 1, + ACTIONS(9078), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10206), 1, + ACTIONS(10254), 1, sym_word, - ACTIONS(10212), 1, - sym__comment_word, - ACTIONS(7224), 2, + ACTIONS(10258), 1, + sym_test_operator, + STATE(1455), 1, + aux_sym__literal_repeat1, + STATE(1671), 1, + sym_concatenation, + ACTIONS(9064), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7240), 2, + ACTIONS(9080), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10208), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10210), 3, - sym__bare_dollar, + ACTIONS(10256), 2, sym_raw_string, sym_ansi_c_string, - STATE(6494), 9, + STATE(1040), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257080,47 +259124,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214293] = 18, + [216627] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, - aux_sym_number_token1, - ACTIONS(3403), 1, - aux_sym_number_token2, - ACTIONS(3407), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3417), 1, - sym__brace_start, - ACTIONS(8926), 1, + ACTIONS(8338), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8930), 1, + ACTIONS(8340), 1, + anon_sym_DOLLAR, + ACTIONS(8344), 1, anon_sym_DQUOTE, - ACTIONS(8934), 1, + ACTIONS(8348), 1, + aux_sym_number_token1, + ACTIONS(8350), 1, + aux_sym_number_token2, + ACTIONS(8352), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8936), 1, + ACTIONS(8354), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8356), 1, anon_sym_BQUOTE, - ACTIONS(8938), 1, + ACTIONS(8358), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9696), 1, + ACTIONS(8368), 1, + sym__brace_start, + ACTIONS(10094), 1, sym_word, - ACTIONS(9704), 1, + ACTIONS(10102), 1, sym__comment_word, - ACTIONS(10214), 1, - anon_sym_DOLLAR, - ACTIONS(8924), 2, + ACTIONS(8334), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8940), 2, + ACTIONS(8360), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9700), 2, + ACTIONS(10098), 2, sym_test_operator, sym__special_character, - ACTIONS(9702), 3, + ACTIONS(10100), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1851), 9, + STATE(3489), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257130,153 +259174,151 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214361] = 21, + [216695] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, - anon_sym_LPAREN, - ACTIONS(9366), 1, - anon_sym_BANG, - ACTIONS(9372), 1, - anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(5117), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5119), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(5123), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(5127), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(5129), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(5131), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(5133), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(5135), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(5137), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(10216), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, - sym__arithmetic_unary_expression, - STATE(3400), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9370), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3329), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(5143), 1, + sym__brace_start, + ACTIONS(10260), 1, + sym_word, + ACTIONS(10262), 1, + sym__special_character, + ACTIONS(10266), 1, + sym_test_operator, + STATE(5496), 1, + aux_sym__literal_repeat1, + STATE(5610), 1, + sym_concatenation, + ACTIONS(5115), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5139), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10264), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(5335), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [214435] = 21, + sym_process_substitution, + [216767] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(5117), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5119), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(5123), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(5127), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(5129), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(5131), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(5133), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(5135), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(5137), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10218), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2757), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(5143), 1, + sym__brace_start, + ACTIONS(10262), 1, + sym__special_character, + ACTIONS(10268), 1, + sym_word, + ACTIONS(10272), 1, + sym_test_operator, + STATE(5407), 1, + aux_sym__literal_repeat1, + STATE(5607), 1, + sym_concatenation, + ACTIONS(5115), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5139), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10270), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(5258), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [214509] = 18, + sym_process_substitution, + [216839] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8512), 1, + ACTIONS(8954), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8514), 1, + ACTIONS(8956), 1, anon_sym_DOLLAR, - ACTIONS(8518), 1, + ACTIONS(8960), 1, anon_sym_DQUOTE, - ACTIONS(8522), 1, + ACTIONS(8964), 1, aux_sym_number_token1, - ACTIONS(8524), 1, + ACTIONS(8966), 1, aux_sym_number_token2, - ACTIONS(8526), 1, + ACTIONS(8968), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8528), 1, + ACTIONS(8970), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8530), 1, + ACTIONS(8972), 1, anon_sym_BQUOTE, - ACTIONS(8532), 1, + ACTIONS(8974), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8542), 1, + ACTIONS(8980), 1, sym__brace_start, - ACTIONS(10220), 1, + ACTIONS(10170), 1, sym_word, - ACTIONS(10226), 1, + ACTIONS(10178), 1, sym__comment_word, - ACTIONS(8508), 2, + ACTIONS(8952), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8534), 2, + ACTIONS(8976), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10222), 2, + ACTIONS(10174), 2, sym_test_operator, sym__special_character, - ACTIONS(10224), 3, + ACTIONS(10176), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2514), 9, + STATE(2442), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257286,47 +259328,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214577] = 18, - ACTIONS(3), 1, + [216907] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(4947), 1, + ACTIONS(2653), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4949), 1, + ACTIONS(2655), 1, anon_sym_DOLLAR, - ACTIONS(4953), 1, + ACTIONS(2657), 1, + sym__special_character, + ACTIONS(2659), 1, anon_sym_DQUOTE, - ACTIONS(4957), 1, + ACTIONS(2663), 1, aux_sym_number_token1, - ACTIONS(4959), 1, + ACTIONS(2665), 1, aux_sym_number_token2, - ACTIONS(4961), 1, + ACTIONS(2667), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4963), 1, + ACTIONS(2669), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4965), 1, + ACTIONS(2671), 1, anon_sym_BQUOTE, - ACTIONS(4967), 1, + ACTIONS(2673), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4973), 1, + ACTIONS(2681), 1, sym__brace_start, - ACTIONS(10228), 1, + ACTIONS(10274), 1, sym_word, - ACTIONS(10234), 1, - sym__comment_word, - ACTIONS(4945), 2, + ACTIONS(10278), 1, + sym_test_operator, + STATE(2435), 1, + aux_sym__literal_repeat1, + STATE(2457), 1, + sym_concatenation, + ACTIONS(2647), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4969), 2, + ACTIONS(2675), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10230), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10232), 3, - sym__bare_dollar, + ACTIONS(10276), 2, sym_raw_string, sym_ansi_c_string, - STATE(2590), 9, + STATE(2008), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257336,47 +259380,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214645] = 18, - ACTIONS(3), 1, + [216979] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(5315), 1, + ACTIONS(2653), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5317), 1, + ACTIONS(2655), 1, anon_sym_DOLLAR, - ACTIONS(5321), 1, + ACTIONS(2657), 1, + sym__special_character, + ACTIONS(2659), 1, anon_sym_DQUOTE, - ACTIONS(5325), 1, + ACTIONS(2663), 1, aux_sym_number_token1, - ACTIONS(5327), 1, + ACTIONS(2665), 1, aux_sym_number_token2, - ACTIONS(5329), 1, + ACTIONS(2667), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5331), 1, + ACTIONS(2669), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5333), 1, + ACTIONS(2671), 1, anon_sym_BQUOTE, - ACTIONS(5335), 1, + ACTIONS(2673), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5341), 1, + ACTIONS(2681), 1, sym__brace_start, - ACTIONS(10236), 1, + ACTIONS(10280), 1, sym_word, - ACTIONS(10242), 1, - sym__comment_word, - ACTIONS(5313), 2, + ACTIONS(10284), 1, + sym_test_operator, + STATE(2383), 1, + aux_sym__literal_repeat1, + STATE(2464), 1, + sym_concatenation, + ACTIONS(2647), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5337), 2, + ACTIONS(2675), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10238), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10240), 3, - sym__bare_dollar, + ACTIONS(10282), 2, sym_raw_string, sym_ansi_c_string, - STATE(5461), 9, + STATE(2014), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257386,47 +259432,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214713] = 18, + [217051] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1593), 1, - aux_sym_number_token1, - ACTIONS(1595), 1, - aux_sym_number_token2, - ACTIONS(1599), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1611), 1, - sym__brace_start, - ACTIONS(9240), 1, + ACTIONS(111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9244), 1, + ACTIONS(113), 1, + anon_sym_DOLLAR, + ACTIONS(117), 1, anon_sym_DQUOTE, - ACTIONS(9248), 1, + ACTIONS(121), 1, + aux_sym_number_token1, + ACTIONS(123), 1, + aux_sym_number_token2, + ACTIONS(125), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9250), 1, + ACTIONS(127), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(129), 1, anon_sym_BQUOTE, - ACTIONS(9252), 1, + ACTIONS(131), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10094), 1, + ACTIONS(141), 1, + sym__brace_start, + ACTIONS(10236), 1, sym_word, - ACTIONS(10102), 1, - sym__comment_word, ACTIONS(10244), 1, - anon_sym_DOLLAR, - ACTIONS(9238), 2, + sym__comment_word, + ACTIONS(109), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9254), 2, + ACTIONS(133), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10098), 2, + ACTIONS(10240), 2, sym_test_operator, sym__special_character, - ACTIONS(10100), 3, + ACTIONS(10242), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1293), 9, + STATE(475), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257436,47 +259482,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214781] = 18, - ACTIONS(3), 1, + [217119] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(2610), 1, - aux_sym_number_token1, - ACTIONS(2612), 1, - aux_sym_number_token2, - ACTIONS(2616), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2626), 1, - sym__brace_start, - ACTIONS(8962), 1, + ACTIONS(4807), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8966), 1, + ACTIONS(4809), 1, + anon_sym_DOLLAR, + ACTIONS(4813), 1, anon_sym_DQUOTE, - ACTIONS(8970), 1, + ACTIONS(4817), 1, + aux_sym_number_token1, + ACTIONS(4819), 1, + aux_sym_number_token2, + ACTIONS(4821), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8972), 1, + ACTIONS(4823), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4825), 1, anon_sym_BQUOTE, - ACTIONS(8974), 1, + ACTIONS(4827), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10246), 1, + ACTIONS(4833), 1, + sym__brace_start, + ACTIONS(10286), 1, sym_word, - ACTIONS(10248), 1, - anon_sym_DOLLAR, - ACTIONS(10254), 1, - sym__comment_word, - ACTIONS(8960), 2, + ACTIONS(10288), 1, + sym__special_character, + ACTIONS(10292), 1, + sym_test_operator, + STATE(5340), 1, + aux_sym__literal_repeat1, + STATE(5506), 1, + sym_concatenation, + ACTIONS(4805), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8976), 2, + ACTIONS(4829), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10250), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10252), 3, - sym__bare_dollar, + ACTIONS(10290), 2, sym_raw_string, sym_ansi_c_string, - STATE(1532), 9, + STATE(5165), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257486,47 +259534,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214849] = 18, - ACTIONS(3), 1, + [217191] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(4502), 1, + ACTIONS(4807), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4504), 1, + ACTIONS(4809), 1, anon_sym_DOLLAR, - ACTIONS(4508), 1, + ACTIONS(4813), 1, anon_sym_DQUOTE, - ACTIONS(4512), 1, + ACTIONS(4817), 1, aux_sym_number_token1, - ACTIONS(4514), 1, + ACTIONS(4819), 1, aux_sym_number_token2, - ACTIONS(4516), 1, + ACTIONS(4821), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4518), 1, + ACTIONS(4823), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4520), 1, + ACTIONS(4825), 1, anon_sym_BQUOTE, - ACTIONS(4522), 1, + ACTIONS(4827), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4528), 1, + ACTIONS(4833), 1, sym__brace_start, - ACTIONS(10256), 1, + ACTIONS(10288), 1, + sym__special_character, + ACTIONS(10294), 1, sym_word, - ACTIONS(10262), 1, - sym__comment_word, - ACTIONS(4500), 2, + ACTIONS(10298), 1, + sym_test_operator, + STATE(5359), 1, + aux_sym__literal_repeat1, + STATE(5520), 1, + sym_concatenation, + ACTIONS(4805), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4524), 2, + ACTIONS(4829), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10258), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10260), 3, - sym__bare_dollar, + ACTIONS(10296), 2, sym_raw_string, sym_ansi_c_string, - STATE(2450), 9, + STATE(5146), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257536,47 +259586,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214917] = 18, + [217263] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4767), 1, + ACTIONS(4213), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4769), 1, - anon_sym_DOLLAR, - ACTIONS(4773), 1, + ACTIONS(4219), 1, anon_sym_DQUOTE, - ACTIONS(4777), 1, + ACTIONS(4223), 1, aux_sym_number_token1, - ACTIONS(4779), 1, + ACTIONS(4225), 1, aux_sym_number_token2, - ACTIONS(4781), 1, + ACTIONS(4227), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4783), 1, + ACTIONS(4229), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4231), 1, anon_sym_BQUOTE, - ACTIONS(4787), 1, + ACTIONS(4233), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4793), 1, + ACTIONS(4243), 1, sym__brace_start, - ACTIONS(10264), 1, + ACTIONS(10300), 1, sym_word, - ACTIONS(10270), 1, + ACTIONS(10302), 1, + anon_sym_DOLLAR, + ACTIONS(10308), 1, sym__comment_word, - ACTIONS(4765), 2, + ACTIONS(4211), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4789), 2, + ACTIONS(4235), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10266), 2, + ACTIONS(10304), 2, sym_test_operator, sym__special_character, - ACTIONS(10268), 3, + ACTIONS(10306), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5387), 9, + STATE(2542), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257586,47 +259636,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [214985] = 18, + [217331] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5112), 1, + ACTIONS(4213), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5118), 1, + ACTIONS(4215), 1, + anon_sym_DOLLAR, + ACTIONS(4219), 1, anon_sym_DQUOTE, - ACTIONS(5122), 1, + ACTIONS(4223), 1, aux_sym_number_token1, - ACTIONS(5124), 1, + ACTIONS(4225), 1, aux_sym_number_token2, - ACTIONS(5126), 1, + ACTIONS(4227), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5128), 1, + ACTIONS(4229), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5130), 1, + ACTIONS(4231), 1, anon_sym_BQUOTE, - ACTIONS(5132), 1, + ACTIONS(4233), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5138), 1, + ACTIONS(4243), 1, sym__brace_start, - ACTIONS(10174), 1, + ACTIONS(10300), 1, sym_word, - ACTIONS(10182), 1, + ACTIONS(10308), 1, sym__comment_word, - ACTIONS(10272), 1, - anon_sym_DOLLAR, - ACTIONS(5110), 2, + ACTIONS(4211), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5134), 2, + ACTIONS(4235), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10178), 2, + ACTIONS(10304), 2, sym_test_operator, sym__special_character, - ACTIONS(10180), 3, + ACTIONS(10306), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2842), 9, + STATE(2542), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257636,47 +259686,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215053] = 18, + [217399] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2610), 1, - aux_sym_number_token1, - ACTIONS(2612), 1, - aux_sym_number_token2, - ACTIONS(2616), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2626), 1, - sym__brace_start, - ACTIONS(8962), 1, + ACTIONS(4213), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8966), 1, + ACTIONS(4219), 1, anon_sym_DQUOTE, - ACTIONS(8970), 1, + ACTIONS(4223), 1, + aux_sym_number_token1, + ACTIONS(4225), 1, + aux_sym_number_token2, + ACTIONS(4227), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8972), 1, + ACTIONS(4229), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4231), 1, anon_sym_BQUOTE, - ACTIONS(8974), 1, + ACTIONS(4233), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10246), 1, + ACTIONS(4243), 1, + sym__brace_start, + ACTIONS(10300), 1, sym_word, - ACTIONS(10254), 1, + ACTIONS(10308), 1, sym__comment_word, - ACTIONS(10274), 1, + ACTIONS(10310), 1, anon_sym_DOLLAR, - ACTIONS(8960), 2, + ACTIONS(4211), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8976), 2, + ACTIONS(4235), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10250), 2, + ACTIONS(10304), 2, sym_test_operator, sym__special_character, - ACTIONS(10252), 3, + ACTIONS(10306), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1532), 9, + STATE(2542), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257686,47 +259736,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215121] = 18, - ACTIONS(3), 1, + [217467] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(7958), 1, + ACTIONS(8376), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7960), 1, + ACTIONS(8378), 1, anon_sym_DOLLAR, - ACTIONS(7964), 1, + ACTIONS(8380), 1, + sym__special_character, + ACTIONS(8382), 1, anon_sym_DQUOTE, - ACTIONS(7968), 1, + ACTIONS(8386), 1, aux_sym_number_token1, - ACTIONS(7970), 1, + ACTIONS(8388), 1, aux_sym_number_token2, - ACTIONS(7972), 1, + ACTIONS(8390), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7974), 1, + ACTIONS(8392), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7976), 1, + ACTIONS(8394), 1, anon_sym_BQUOTE, - ACTIONS(7978), 1, + ACTIONS(8396), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7988), 1, + ACTIONS(8406), 1, sym__brace_start, - ACTIONS(9860), 1, + ACTIONS(10312), 1, sym_word, - ACTIONS(9868), 1, - sym__comment_word, - ACTIONS(7954), 2, + ACTIONS(10316), 1, + sym_test_operator, + STATE(2611), 1, + aux_sym__literal_repeat1, + STATE(2893), 1, + sym_concatenation, + ACTIONS(8372), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7980), 2, + ACTIONS(8398), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9864), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9866), 3, - sym__bare_dollar, + ACTIONS(10314), 2, sym_raw_string, sym_ansi_c_string, - STATE(4357), 9, + STATE(2396), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257736,206 +259788,201 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215189] = 21, + [217539] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, - anon_sym_LPAREN, - ACTIONS(9366), 1, - anon_sym_BANG, - ACTIONS(9372), 1, - anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(8376), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8378), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(8380), 1, + sym__special_character, + ACTIONS(8382), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(8386), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(8388), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(8390), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(8392), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(8394), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(8396), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(10276), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, - sym__arithmetic_unary_expression, - STATE(3400), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9370), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3328), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(8406), 1, + sym__brace_start, + ACTIONS(10318), 1, + sym_word, + ACTIONS(10322), 1, + sym_test_operator, + STATE(2622), 1, + aux_sym__literal_repeat1, + STATE(2914), 1, + sym_concatenation, + ACTIONS(8372), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8398), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10320), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2419), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [215263] = 21, - ACTIONS(71), 1, + sym_process_substitution, + [217611] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(4667), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4669), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(4673), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(4677), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(4679), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(4681), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(4683), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(4685), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(4687), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10278), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2758), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(4695), 1, + sym__brace_start, + ACTIONS(10324), 1, + sym_word, + ACTIONS(10330), 1, + sym__comment_word, + ACTIONS(4665), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4689), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10326), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10328), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2696), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [215337] = 21, + sym_process_substitution, + [217679] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, - anon_sym_LPAREN, - ACTIONS(9366), 1, - anon_sym_BANG, - ACTIONS(9372), 1, - anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(5773), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, - anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(5779), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(5781), 1, aux_sym_number_token2, - ACTIONS(9382), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(5785), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(5795), 1, + sym__brace_start, + ACTIONS(10332), 1, + sym_word, + ACTIONS(10336), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10338), 1, + sym__special_character, + ACTIONS(10340), 1, + anon_sym_DQUOTE, + ACTIONS(10344), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10346), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(10348), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(10280), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, - sym__arithmetic_unary_expression, - STATE(3400), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9370), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3326), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(10352), 1, + sym_test_operator, + STATE(5670), 1, + aux_sym__literal_repeat1, + STATE(5704), 1, + sym_concatenation, + ACTIONS(10334), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10342), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(10350), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(5552), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [215411] = 18, + sym_process_substitution, + [217751] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8306), 1, + ACTIONS(357), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8308), 1, + ACTIONS(359), 1, anon_sym_DOLLAR, - ACTIONS(8312), 1, + ACTIONS(363), 1, anon_sym_DQUOTE, - ACTIONS(8316), 1, + ACTIONS(367), 1, aux_sym_number_token1, - ACTIONS(8318), 1, + ACTIONS(369), 1, aux_sym_number_token2, - ACTIONS(8320), 1, + ACTIONS(371), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8322), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8324), 1, + ACTIONS(375), 1, anon_sym_BQUOTE, - ACTIONS(8326), 1, + ACTIONS(377), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8336), 1, + ACTIONS(387), 1, sym__brace_start, - ACTIONS(10282), 1, + ACTIONS(9948), 1, sym_word, - ACTIONS(10288), 1, + ACTIONS(9956), 1, sym__comment_word, - ACTIONS(8302), 2, + ACTIONS(355), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8328), 2, + ACTIONS(379), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10284), 2, + ACTIONS(9952), 2, sym_test_operator, sym__special_character, - ACTIONS(10286), 3, + ACTIONS(9954), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5428), 9, + STATE(1101), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257945,47 +259992,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215479] = 18, - ACTIONS(3), 1, + [217819] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(5610), 1, + ACTIONS(5773), 1, anon_sym_DOLLAR, - ACTIONS(5616), 1, + ACTIONS(5779), 1, aux_sym_number_token1, - ACTIONS(5618), 1, + ACTIONS(5781), 1, aux_sym_number_token2, - ACTIONS(5622), 1, + ACTIONS(5785), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5632), 1, + ACTIONS(5795), 1, sym__brace_start, - ACTIONS(8944), 1, + ACTIONS(10336), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8948), 1, + ACTIONS(10338), 1, + sym__special_character, + ACTIONS(10340), 1, anon_sym_DQUOTE, - ACTIONS(8952), 1, + ACTIONS(10344), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8954), 1, + ACTIONS(10346), 1, anon_sym_BQUOTE, - ACTIONS(8956), 1, + ACTIONS(10348), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10290), 1, + ACTIONS(10354), 1, sym_word, - ACTIONS(10296), 1, - sym__comment_word, - ACTIONS(8942), 2, + ACTIONS(10358), 1, + sym_test_operator, + STATE(5653), 1, + aux_sym__literal_repeat1, + STATE(5713), 1, + sym_concatenation, + ACTIONS(10334), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8958), 2, + ACTIONS(10350), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10292), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10294), 3, - sym__bare_dollar, + ACTIONS(10356), 2, sym_raw_string, sym_ansi_c_string, - STATE(3415), 9, + STATE(5591), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -257995,100 +260044,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215547] = 21, - ACTIONS(71), 1, + [217891] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(2653), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2655), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(2659), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(2663), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(2665), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(2667), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(2669), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(2671), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(2673), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10298), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2759), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [215621] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5870), 1, - anon_sym_DOLLAR, - ACTIONS(5876), 1, - aux_sym_number_token1, - ACTIONS(5878), 1, - aux_sym_number_token2, - ACTIONS(5882), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5892), 1, + ACTIONS(2681), 1, sym__brace_start, - ACTIONS(9546), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9550), 1, - anon_sym_DQUOTE, - ACTIONS(9554), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9556), 1, - anon_sym_BQUOTE, - ACTIONS(9558), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10300), 1, + ACTIONS(10360), 1, sym_word, - ACTIONS(10306), 1, + ACTIONS(10366), 1, sym__comment_word, - ACTIONS(9544), 2, + ACTIONS(2647), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9560), 2, + ACTIONS(2675), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10302), 2, + ACTIONS(10362), 2, sym_test_operator, sym__special_character, - ACTIONS(10304), 3, + ACTIONS(10364), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5680), 9, + STATE(2310), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258098,47 +260094,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215689] = 18, - ACTIONS(3), 1, + [217959] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(5432), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(453), 1, + ACTIONS(5434), 1, anon_sym_DOLLAR, - ACTIONS(457), 1, + ACTIONS(5436), 1, + sym__special_character, + ACTIONS(5438), 1, anon_sym_DQUOTE, - ACTIONS(461), 1, + ACTIONS(5442), 1, aux_sym_number_token1, - ACTIONS(463), 1, + ACTIONS(5444), 1, aux_sym_number_token2, - ACTIONS(465), 1, + ACTIONS(5446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(467), 1, + ACTIONS(5448), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(469), 1, + ACTIONS(5450), 1, anon_sym_BQUOTE, - ACTIONS(471), 1, + ACTIONS(5452), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(481), 1, + ACTIONS(5458), 1, sym__brace_start, - ACTIONS(10308), 1, + ACTIONS(10368), 1, sym_word, - ACTIONS(10314), 1, - sym__comment_word, - ACTIONS(449), 2, + ACTIONS(10372), 1, + sym_test_operator, + STATE(5533), 1, + aux_sym__literal_repeat1, + STATE(5649), 1, + sym_concatenation, + ACTIONS(5430), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(473), 2, + ACTIONS(5454), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10310), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10312), 3, - sym__bare_dollar, + ACTIONS(10370), 2, sym_raw_string, sym_ansi_c_string, - STATE(866), 9, + STATE(5423), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258148,47 +260146,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215757] = 18, - ACTIONS(3), 1, + [218031] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(5112), 1, + ACTIONS(5432), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5114), 1, + ACTIONS(5434), 1, anon_sym_DOLLAR, - ACTIONS(5118), 1, + ACTIONS(5436), 1, + sym__special_character, + ACTIONS(5438), 1, anon_sym_DQUOTE, - ACTIONS(5122), 1, + ACTIONS(5442), 1, aux_sym_number_token1, - ACTIONS(5124), 1, + ACTIONS(5444), 1, aux_sym_number_token2, - ACTIONS(5126), 1, + ACTIONS(5446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5128), 1, + ACTIONS(5448), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5130), 1, + ACTIONS(5450), 1, anon_sym_BQUOTE, - ACTIONS(5132), 1, + ACTIONS(5452), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5138), 1, + ACTIONS(5458), 1, sym__brace_start, - ACTIONS(10174), 1, + ACTIONS(10374), 1, sym_word, - ACTIONS(10182), 1, - sym__comment_word, - ACTIONS(5110), 2, + ACTIONS(10378), 1, + sym_test_operator, + STATE(5542), 1, + aux_sym__literal_repeat1, + STATE(5680), 1, + sym_concatenation, + ACTIONS(5430), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5134), 2, + ACTIONS(5454), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10178), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10180), 3, - sym__bare_dollar, + ACTIONS(10376), 2, sym_raw_string, sym_ansi_c_string, - STATE(2842), 9, + STATE(5425), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258198,47 +260198,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215825] = 18, + [218103] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6494), 1, - aux_sym_number_token1, - ACTIONS(6496), 1, - aux_sym_number_token2, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6512), 1, - sym__brace_start, - ACTIONS(7226), 1, + ACTIONS(1043), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7230), 1, + ACTIONS(1045), 1, + anon_sym_DOLLAR, + ACTIONS(1049), 1, anon_sym_DQUOTE, - ACTIONS(7234), 1, + ACTIONS(1053), 1, + aux_sym_number_token1, + ACTIONS(1055), 1, + aux_sym_number_token2, + ACTIONS(1057), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, + ACTIONS(1059), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1061), 1, anon_sym_BQUOTE, - ACTIONS(7238), 1, + ACTIONS(1063), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10206), 1, + ACTIONS(1071), 1, + sym__brace_start, + ACTIONS(10380), 1, sym_word, - ACTIONS(10212), 1, + ACTIONS(10386), 1, sym__comment_word, - ACTIONS(10316), 1, - anon_sym_DOLLAR, - ACTIONS(7224), 2, + ACTIONS(1041), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7240), 2, + ACTIONS(1065), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10208), 2, + ACTIONS(10382), 2, sym_test_operator, sym__special_character, - ACTIONS(10210), 3, + ACTIONS(10384), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(6494), 9, + STATE(2257), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258248,47 +260248,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215893] = 18, - ACTIONS(3), 1, + [218171] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(5405), 1, + ACTIONS(5281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5407), 1, + ACTIONS(5283), 1, anon_sym_DOLLAR, - ACTIONS(5411), 1, + ACTIONS(5285), 1, + sym__special_character, + ACTIONS(5287), 1, anon_sym_DQUOTE, - ACTIONS(5415), 1, + ACTIONS(5291), 1, aux_sym_number_token1, - ACTIONS(5417), 1, + ACTIONS(5293), 1, aux_sym_number_token2, - ACTIONS(5419), 1, + ACTIONS(5295), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5421), 1, + ACTIONS(5297), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5423), 1, + ACTIONS(5299), 1, anon_sym_BQUOTE, - ACTIONS(5425), 1, + ACTIONS(5301), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5431), 1, + ACTIONS(5307), 1, sym__brace_start, - ACTIONS(9958), 1, + ACTIONS(10388), 1, sym_word, - ACTIONS(9966), 1, - sym__comment_word, - ACTIONS(5403), 2, + ACTIONS(10392), 1, + sym_test_operator, + STATE(5459), 1, + aux_sym__literal_repeat1, + STATE(5559), 1, + sym_concatenation, + ACTIONS(5279), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5427), 2, + ACTIONS(5303), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9962), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9964), 3, - sym__bare_dollar, + ACTIONS(10390), 2, sym_raw_string, sym_ansi_c_string, - STATE(5541), 9, + STATE(5358), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258298,47 +260300,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [215961] = 18, - ACTIONS(3), 1, + [218243] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(4633), 1, + ACTIONS(5281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4635), 1, + ACTIONS(5283), 1, anon_sym_DOLLAR, - ACTIONS(4639), 1, + ACTIONS(5285), 1, + sym__special_character, + ACTIONS(5287), 1, anon_sym_DQUOTE, - ACTIONS(4643), 1, + ACTIONS(5291), 1, aux_sym_number_token1, - ACTIONS(4645), 1, + ACTIONS(5293), 1, aux_sym_number_token2, - ACTIONS(4647), 1, + ACTIONS(5295), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4649), 1, + ACTIONS(5297), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4651), 1, + ACTIONS(5299), 1, anon_sym_BQUOTE, - ACTIONS(4653), 1, + ACTIONS(5301), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4659), 1, + ACTIONS(5307), 1, sym__brace_start, - ACTIONS(9330), 1, + ACTIONS(10394), 1, sym_word, - ACTIONS(9338), 1, - sym__comment_word, - ACTIONS(4631), 2, + ACTIONS(10398), 1, + sym_test_operator, + STATE(5481), 1, + aux_sym__literal_repeat1, + STATE(5590), 1, + sym_concatenation, + ACTIONS(5279), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4655), 2, + ACTIONS(5303), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9334), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9336), 3, - sym__bare_dollar, + ACTIONS(10396), 2, sym_raw_string, sym_ansi_c_string, - STATE(2634), 9, + STATE(5376), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258348,47 +260352,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216029] = 18, + [218315] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3886), 1, + ACTIONS(3738), 1, + anon_sym_DOLLAR, + ACTIONS(3742), 1, aux_sym_number_token1, - ACTIONS(3888), 1, + ACTIONS(3744), 1, aux_sym_number_token2, - ACTIONS(3892), 1, + ACTIONS(3748), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3902), 1, + ACTIONS(3758), 1, sym__brace_start, - ACTIONS(8992), 1, + ACTIONS(8838), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8996), 1, + ACTIONS(8842), 1, anon_sym_DQUOTE, - ACTIONS(9000), 1, + ACTIONS(8846), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9002), 1, + ACTIONS(8848), 1, anon_sym_BQUOTE, - ACTIONS(9004), 1, + ACTIONS(8850), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9740), 1, + ACTIONS(10400), 1, sym_word, - ACTIONS(9746), 1, + ACTIONS(10406), 1, sym__comment_word, - ACTIONS(10318), 1, - anon_sym_DOLLAR, - ACTIONS(8990), 2, + ACTIONS(8836), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9006), 2, + ACTIONS(8852), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9742), 2, + ACTIONS(10402), 2, sym_test_operator, sym__special_character, - ACTIONS(9744), 3, + ACTIONS(10404), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2004), 9, + STATE(1974), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258398,47 +260402,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216097] = 18, - ACTIONS(3), 1, + [218383] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(9118), 1, + ACTIONS(8292), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9124), 1, + ACTIONS(8294), 1, + anon_sym_DOLLAR, + ACTIONS(8296), 1, + sym__special_character, + ACTIONS(8298), 1, anon_sym_DQUOTE, - ACTIONS(9128), 1, + ACTIONS(8302), 1, aux_sym_number_token1, - ACTIONS(9130), 1, + ACTIONS(8304), 1, aux_sym_number_token2, - ACTIONS(9132), 1, + ACTIONS(8306), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9134), 1, + ACTIONS(8308), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9136), 1, + ACTIONS(8310), 1, anon_sym_BQUOTE, - ACTIONS(9138), 1, + ACTIONS(8312), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9144), 1, + ACTIONS(8322), 1, sym__brace_start, - ACTIONS(9442), 1, + ACTIONS(10408), 1, sym_word, - ACTIONS(9448), 1, - sym__comment_word, - ACTIONS(10320), 1, - anon_sym_DOLLAR, - ACTIONS(9116), 2, + ACTIONS(10412), 1, + sym_test_operator, + STATE(1369), 1, + aux_sym__literal_repeat1, + STATE(1624), 1, + sym_concatenation, + ACTIONS(8288), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9140), 2, + ACTIONS(8314), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9444), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9446), 3, - sym__bare_dollar, + ACTIONS(10410), 2, sym_raw_string, sym_ansi_c_string, - STATE(2401), 9, + STATE(1078), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258448,100 +260454,99 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216165] = 21, + [218455] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(8292), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8294), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(8296), 1, + sym__special_character, + ACTIONS(8298), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(8302), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(8304), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(8306), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(8308), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(8310), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(8312), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10322), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2797), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(8322), 1, + sym__brace_start, + ACTIONS(10414), 1, + sym_word, + ACTIONS(10418), 1, + sym_test_operator, + STATE(1373), 1, + aux_sym__literal_repeat1, + STATE(1674), 1, + sym_concatenation, + ACTIONS(8288), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8314), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10416), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1080), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [216239] = 18, + sym_process_substitution, + [218527] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6494), 1, + ACTIONS(4074), 1, + anon_sym_DOLLAR, + ACTIONS(4080), 1, aux_sym_number_token1, - ACTIONS(6496), 1, + ACTIONS(4082), 1, aux_sym_number_token2, - ACTIONS(6500), 1, + ACTIONS(4086), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6512), 1, + ACTIONS(4096), 1, sym__brace_start, - ACTIONS(7226), 1, + ACTIONS(9982), 1, + sym_word, + ACTIONS(9986), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7230), 1, + ACTIONS(9992), 1, anon_sym_DQUOTE, - ACTIONS(7234), 1, + ACTIONS(9996), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, + ACTIONS(9998), 1, anon_sym_BQUOTE, - ACTIONS(7238), 1, + ACTIONS(10000), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10206), 1, - sym_word, - ACTIONS(10212), 1, + ACTIONS(10004), 1, sym__comment_word, - ACTIONS(10324), 1, - anon_sym_DOLLAR, - ACTIONS(7224), 2, + ACTIONS(9984), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7240), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10208), 2, + ACTIONS(9990), 2, sym_test_operator, sym__special_character, - ACTIONS(10210), 3, + ACTIONS(10002), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9994), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(6494), 9, + STATE(4446), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258551,47 +260556,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216307] = 18, - ACTIONS(3), 1, + [218595] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(5261), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5263), 1, + ACTIONS(3131), 1, anon_sym_DOLLAR, - ACTIONS(5267), 1, - anon_sym_DQUOTE, - ACTIONS(5271), 1, + ACTIONS(3137), 1, aux_sym_number_token1, - ACTIONS(5273), 1, + ACTIONS(3139), 1, aux_sym_number_token2, - ACTIONS(5275), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5277), 1, + ACTIONS(3143), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5279), 1, + ACTIONS(3153), 1, + sym__brace_start, + ACTIONS(9512), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9518), 1, + anon_sym_DQUOTE, + ACTIONS(9522), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9524), 1, anon_sym_BQUOTE, - ACTIONS(5281), 1, + ACTIONS(9526), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5287), 1, - sym__brace_start, - ACTIONS(9472), 1, + ACTIONS(10420), 1, sym_word, - ACTIONS(9480), 1, - sym__comment_word, - ACTIONS(5259), 2, + ACTIONS(10422), 1, + sym__special_character, + ACTIONS(10426), 1, + sym_test_operator, + STATE(4531), 1, + aux_sym__literal_repeat1, + STATE(4879), 1, + sym_concatenation, + ACTIONS(9510), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5283), 2, + ACTIONS(9528), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9476), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9478), 3, - sym__bare_dollar, + ACTIONS(10424), 2, sym_raw_string, sym_ansi_c_string, - STATE(5440), 9, + STATE(4336), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258601,47 +260608,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216375] = 18, + [218667] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8102), 1, + ACTIONS(4667), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8104), 1, - anon_sym_DOLLAR, - ACTIONS(8108), 1, + ACTIONS(4673), 1, anon_sym_DQUOTE, - ACTIONS(8112), 1, + ACTIONS(4677), 1, aux_sym_number_token1, - ACTIONS(8114), 1, + ACTIONS(4679), 1, aux_sym_number_token2, - ACTIONS(8116), 1, + ACTIONS(4681), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8118), 1, + ACTIONS(4683), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8120), 1, + ACTIONS(4685), 1, anon_sym_BQUOTE, - ACTIONS(8122), 1, + ACTIONS(4687), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8132), 1, + ACTIONS(4695), 1, sym__brace_start, - ACTIONS(9600), 1, + ACTIONS(10324), 1, sym_word, - ACTIONS(9608), 1, + ACTIONS(10330), 1, sym__comment_word, - ACTIONS(8098), 2, + ACTIONS(10428), 1, + anon_sym_DOLLAR, + ACTIONS(4665), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8124), 2, + ACTIONS(4689), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9604), 2, + ACTIONS(10326), 2, sym_test_operator, sym__special_character, - ACTIONS(9606), 3, + ACTIONS(10328), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1199), 9, + STATE(2696), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258651,153 +260658,99 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216443] = 21, + [218735] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, - anon_sym_LPAREN, - ACTIONS(9366), 1, - anon_sym_BANG, - ACTIONS(9372), 1, - anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(3131), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, - anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(3137), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(3139), 1, aux_sym_number_token2, - ACTIONS(9382), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(3143), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, - anon_sym_BQUOTE, - ACTIONS(9388), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(10326), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, - sym__arithmetic_unary_expression, - STATE(3400), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9370), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3324), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [216517] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9364), 1, - anon_sym_LPAREN, - ACTIONS(9366), 1, - anon_sym_BANG, - ACTIONS(9372), 1, - anon_sym_TILDE, - ACTIONS(9374), 1, - anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(3153), 1, + sym__brace_start, + ACTIONS(9512), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9518), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, - aux_sym_number_token1, - ACTIONS(9380), 1, - aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9522), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9524), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9526), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(10328), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, - sym__arithmetic_unary_expression, - STATE(3400), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9370), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3372), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(10422), 1, + sym__special_character, + ACTIONS(10430), 1, + sym_word, + ACTIONS(10434), 1, + sym_test_operator, + STATE(4536), 1, + aux_sym__literal_repeat1, + STATE(4888), 1, + sym_concatenation, + ACTIONS(9510), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9528), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10432), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4346), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [216591] = 18, + sym_process_substitution, + [218807] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1761), 1, + ACTIONS(3165), 1, anon_sym_DOLLAR, - ACTIONS(1767), 1, + ACTIONS(3171), 1, aux_sym_number_token1, - ACTIONS(1769), 1, + ACTIONS(3173), 1, aux_sym_number_token2, - ACTIONS(1773), 1, + ACTIONS(3177), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1787), 1, + ACTIONS(3187), 1, sym__brace_start, - ACTIONS(8426), 1, + ACTIONS(9176), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8430), 1, + ACTIONS(9180), 1, anon_sym_DQUOTE, - ACTIONS(8434), 1, + ACTIONS(9184), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8436), 1, + ACTIONS(9186), 1, anon_sym_BQUOTE, - ACTIONS(8438), 1, + ACTIONS(9188), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9820), 1, + ACTIONS(10436), 1, sym_word, - ACTIONS(9828), 1, + ACTIONS(10442), 1, sym__comment_word, - ACTIONS(8422), 2, + ACTIONS(9174), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8440), 2, + ACTIONS(9190), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9824), 2, + ACTIONS(10438), 2, sym_test_operator, sym__special_character, - ACTIONS(9826), 3, + ACTIONS(10440), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1207), 9, + STATE(1733), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258807,47 +260760,99 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216659] = 18, - ACTIONS(3), 1, + [218875] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(2303), 1, + ACTIONS(1414), 1, anon_sym_DOLLAR, - ACTIONS(2309), 1, + ACTIONS(1420), 1, aux_sym_number_token1, - ACTIONS(2311), 1, + ACTIONS(1422), 1, aux_sym_number_token2, - ACTIONS(2315), 1, + ACTIONS(1426), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2327), 1, + ACTIONS(1438), 1, sym__brace_start, - ACTIONS(9982), 1, + ACTIONS(8928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8930), 1, + sym__special_character, + ACTIONS(8932), 1, + anon_sym_DQUOTE, + ACTIONS(8936), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8938), 1, + anon_sym_BQUOTE, + ACTIONS(8940), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10444), 1, sym_word, - ACTIONS(9986), 1, + ACTIONS(10448), 1, + sym_test_operator, + STATE(1088), 1, + aux_sym__literal_repeat1, + STATE(1293), 1, + sym_concatenation, + ACTIONS(8926), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8942), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10446), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(873), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [218947] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4667), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9992), 1, + ACTIONS(4673), 1, anon_sym_DQUOTE, - ACTIONS(9996), 1, + ACTIONS(4677), 1, + aux_sym_number_token1, + ACTIONS(4679), 1, + aux_sym_number_token2, + ACTIONS(4681), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9998), 1, + ACTIONS(4683), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4685), 1, anon_sym_BQUOTE, - ACTIONS(10000), 1, + ACTIONS(4687), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10004), 1, + ACTIONS(4695), 1, + sym__brace_start, + ACTIONS(10324), 1, + sym_word, + ACTIONS(10330), 1, sym__comment_word, - ACTIONS(9984), 2, + ACTIONS(10450), 1, + anon_sym_DOLLAR, + ACTIONS(4665), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9990), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10002), 2, + ACTIONS(4689), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9994), 3, + ACTIONS(10326), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10328), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1423), 9, + STATE(2696), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258857,8 +260862,8 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216727] = 18, - ACTIONS(3), 1, + [219015] = 20, + ACTIONS(71), 1, sym_comment, ACTIONS(1414), 1, anon_sym_DOLLAR, @@ -258870,34 +260875,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(1438), 1, sym__brace_start, - ACTIONS(9094), 1, + ACTIONS(8928), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9098), 1, + ACTIONS(8930), 1, + sym__special_character, + ACTIONS(8932), 1, anon_sym_DQUOTE, - ACTIONS(9102), 1, + ACTIONS(8936), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9104), 1, + ACTIONS(8938), 1, anon_sym_BQUOTE, - ACTIONS(9106), 1, + ACTIONS(8940), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10120), 1, + ACTIONS(10452), 1, sym_word, - ACTIONS(10128), 1, - sym__comment_word, - ACTIONS(9092), 2, + ACTIONS(10456), 1, + sym_test_operator, + STATE(1093), 1, + aux_sym__literal_repeat1, + STATE(1240), 1, + sym_concatenation, + ACTIONS(8926), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9108), 2, + ACTIONS(8942), 2, anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10124), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10126), 3, - sym__bare_dollar, + anon_sym_GT_LPAREN, + ACTIONS(10454), 2, sym_raw_string, sym_ansi_c_string, - STATE(910), 9, + STATE(886), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258907,47 +260914,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216795] = 18, + [219087] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3626), 1, + anon_sym_DOLLAR, + ACTIONS(3632), 1, aux_sym_number_token1, - ACTIONS(3375), 1, + ACTIONS(3634), 1, aux_sym_number_token2, - ACTIONS(3379), 1, + ACTIONS(3638), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3389), 1, + ACTIONS(3648), 1, sym__brace_start, - ACTIONS(9802), 1, + ACTIONS(10008), 1, + sym_word, + ACTIONS(10012), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9806), 1, + ACTIONS(10018), 1, anon_sym_DQUOTE, - ACTIONS(9810), 1, + ACTIONS(10022), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9812), 1, + ACTIONS(10024), 1, anon_sym_BQUOTE, - ACTIONS(9814), 1, + ACTIONS(10026), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10330), 1, - sym_word, - ACTIONS(10332), 1, - anon_sym_DOLLAR, - ACTIONS(10338), 1, + ACTIONS(10030), 1, sym__comment_word, - ACTIONS(9800), 2, + ACTIONS(10010), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9816), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10334), 2, + ACTIONS(10016), 2, sym_test_operator, sym__special_character, - ACTIONS(10336), 3, + ACTIONS(10028), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10020), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4532), 9, + STATE(4300), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -258957,49 +260964,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216863] = 20, + [219155] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(9118), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9120), 1, + ACTIONS(2723), 1, anon_sym_DOLLAR, - ACTIONS(9122), 1, - sym__special_character, - ACTIONS(9124), 1, - anon_sym_DQUOTE, - ACTIONS(9128), 1, + ACTIONS(2729), 1, aux_sym_number_token1, - ACTIONS(9130), 1, + ACTIONS(2731), 1, aux_sym_number_token2, - ACTIONS(9132), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9134), 1, + ACTIONS(2735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9136), 1, + ACTIONS(2745), 1, + sym__brace_start, + ACTIONS(9544), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9550), 1, + anon_sym_DQUOTE, + ACTIONS(9554), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9556), 1, anon_sym_BQUOTE, - ACTIONS(9138), 1, + ACTIONS(9558), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9144), 1, - sym__brace_start, - ACTIONS(10340), 1, + ACTIONS(10458), 1, sym_word, - ACTIONS(10344), 1, + ACTIONS(10460), 1, + sym__special_character, + ACTIONS(10464), 1, sym_test_operator, - STATE(2569), 1, + STATE(4321), 1, aux_sym__literal_repeat1, - STATE(2623), 1, + STATE(4765), 1, sym_concatenation, - ACTIONS(9116), 2, + ACTIONS(9542), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9140), 2, + ACTIONS(9560), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10342), 2, + ACTIONS(10462), 2, sym_raw_string, sym_ansi_c_string, - STATE(2278), 9, + STATE(4244), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259009,47 +261016,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [216935] = 18, - ACTIONS(3), 1, + [219227] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(2604), 1, + ACTIONS(2723), 1, anon_sym_DOLLAR, - ACTIONS(2610), 1, + ACTIONS(2729), 1, aux_sym_number_token1, - ACTIONS(2612), 1, + ACTIONS(2731), 1, aux_sym_number_token2, - ACTIONS(2616), 1, + ACTIONS(2735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2626), 1, + ACTIONS(2745), 1, sym__brace_start, - ACTIONS(8962), 1, + ACTIONS(9544), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8966), 1, + ACTIONS(9550), 1, anon_sym_DQUOTE, - ACTIONS(8970), 1, + ACTIONS(9554), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8972), 1, + ACTIONS(9556), 1, anon_sym_BQUOTE, - ACTIONS(8974), 1, + ACTIONS(9558), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10246), 1, + ACTIONS(10460), 1, + sym__special_character, + ACTIONS(10466), 1, sym_word, - ACTIONS(10254), 1, - sym__comment_word, - ACTIONS(8960), 2, + ACTIONS(10470), 1, + sym_test_operator, + STATE(4337), 1, + aux_sym__literal_repeat1, + STATE(4772), 1, + sym_concatenation, + ACTIONS(9542), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8976), 2, + ACTIONS(9560), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10250), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10252), 3, - sym__bare_dollar, + ACTIONS(10468), 2, sym_raw_string, sym_ansi_c_string, - STATE(1532), 9, + STATE(4247), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259059,47 +261068,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217003] = 18, + [219299] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3367), 1, + ACTIONS(8573), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8575), 1, anon_sym_DOLLAR, - ACTIONS(3373), 1, + ACTIONS(8579), 1, + anon_sym_DQUOTE, + ACTIONS(8583), 1, aux_sym_number_token1, - ACTIONS(3375), 1, + ACTIONS(8585), 1, aux_sym_number_token2, - ACTIONS(3379), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3389), 1, - sym__brace_start, - ACTIONS(9802), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9806), 1, - anon_sym_DQUOTE, - ACTIONS(9810), 1, + ACTIONS(8587), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9812), 1, + ACTIONS(8589), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8591), 1, anon_sym_BQUOTE, - ACTIONS(9814), 1, + ACTIONS(8593), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10330), 1, + ACTIONS(8599), 1, + sym__brace_start, + ACTIONS(10472), 1, sym_word, - ACTIONS(10338), 1, + ACTIONS(10478), 1, sym__comment_word, - ACTIONS(9800), 2, + ACTIONS(8569), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9816), 2, + ACTIONS(8595), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10334), 2, + ACTIONS(10474), 2, sym_test_operator, sym__special_character, - ACTIONS(10336), 3, + ACTIONS(10476), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4532), 9, + STATE(5126), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259109,47 +261118,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217071] = 18, - ACTIONS(3), 1, + [219367] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3373), 1, - aux_sym_number_token1, - ACTIONS(3375), 1, - aux_sym_number_token2, - ACTIONS(3379), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3389), 1, - sym__brace_start, - ACTIONS(9802), 1, + ACTIONS(8488), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9806), 1, + ACTIONS(8490), 1, + anon_sym_DOLLAR, + ACTIONS(8492), 1, + sym__special_character, + ACTIONS(8494), 1, anon_sym_DQUOTE, - ACTIONS(9810), 1, + ACTIONS(8498), 1, + aux_sym_number_token1, + ACTIONS(8500), 1, + aux_sym_number_token2, + ACTIONS(8502), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9812), 1, + ACTIONS(8504), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8506), 1, anon_sym_BQUOTE, - ACTIONS(9814), 1, + ACTIONS(8508), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10330), 1, + ACTIONS(8518), 1, + sym__brace_start, + ACTIONS(10480), 1, sym_word, - ACTIONS(10338), 1, - sym__comment_word, - ACTIONS(10346), 1, - anon_sym_DOLLAR, - ACTIONS(9800), 2, + ACTIONS(10484), 1, + sym_test_operator, + STATE(1542), 1, + aux_sym__literal_repeat1, + STATE(1910), 1, + sym_concatenation, + ACTIONS(8484), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9816), 2, + ACTIONS(8510), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10334), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10336), 3, - sym__bare_dollar, + ACTIONS(10482), 2, sym_raw_string, sym_ansi_c_string, - STATE(4532), 9, + STATE(1193), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259159,49 +261170,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217139] = 20, + [219439] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(9118), 1, + ACTIONS(8488), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9120), 1, + ACTIONS(8490), 1, anon_sym_DOLLAR, - ACTIONS(9122), 1, + ACTIONS(8492), 1, sym__special_character, - ACTIONS(9124), 1, + ACTIONS(8494), 1, anon_sym_DQUOTE, - ACTIONS(9128), 1, + ACTIONS(8498), 1, aux_sym_number_token1, - ACTIONS(9130), 1, + ACTIONS(8500), 1, aux_sym_number_token2, - ACTIONS(9132), 1, + ACTIONS(8502), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9134), 1, + ACTIONS(8504), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9136), 1, + ACTIONS(8506), 1, anon_sym_BQUOTE, - ACTIONS(9138), 1, + ACTIONS(8508), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9144), 1, + ACTIONS(8518), 1, sym__brace_start, - ACTIONS(10348), 1, + ACTIONS(10486), 1, sym_word, - ACTIONS(10352), 1, + ACTIONS(10490), 1, sym_test_operator, - STATE(2532), 1, + STATE(1548), 1, aux_sym__literal_repeat1, - STATE(2635), 1, + STATE(1912), 1, sym_concatenation, - ACTIONS(9116), 2, + ACTIONS(8484), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9140), 2, + ACTIONS(8510), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10350), 2, + ACTIONS(10488), 2, sym_raw_string, sym_ansi_c_string, - STATE(2314), 9, + STATE(1197), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259211,47 +261222,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217211] = 18, + [219511] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7958), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7964), 1, - anon_sym_DQUOTE, - ACTIONS(7968), 1, + ACTIONS(3668), 1, + anon_sym_DOLLAR, + ACTIONS(3674), 1, aux_sym_number_token1, - ACTIONS(7970), 1, + ACTIONS(3676), 1, aux_sym_number_token2, - ACTIONS(7972), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7974), 1, + ACTIONS(3680), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7976), 1, + ACTIONS(3692), 1, + sym__brace_start, + ACTIONS(8984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8988), 1, + anon_sym_DQUOTE, + ACTIONS(8992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8994), 1, anon_sym_BQUOTE, - ACTIONS(7978), 1, + ACTIONS(8996), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7988), 1, - sym__brace_start, - ACTIONS(9860), 1, + ACTIONS(10034), 1, sym_word, - ACTIONS(9868), 1, + ACTIONS(10042), 1, sym__comment_word, - ACTIONS(10354), 1, - anon_sym_DOLLAR, - ACTIONS(7954), 2, + ACTIONS(8982), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7980), 2, + ACTIONS(8998), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9864), 2, + ACTIONS(10038), 2, sym_test_operator, sym__special_character, - ACTIONS(9866), 3, + ACTIONS(10040), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4357), 9, + STATE(4640), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259261,47 +261272,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217279] = 18, - ACTIONS(3), 1, + [219579] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(7958), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7964), 1, - anon_sym_DQUOTE, - ACTIONS(7968), 1, + ACTIONS(3848), 1, + anon_sym_DOLLAR, + ACTIONS(3854), 1, aux_sym_number_token1, - ACTIONS(7970), 1, + ACTIONS(3856), 1, aux_sym_number_token2, - ACTIONS(7972), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7974), 1, + ACTIONS(3860), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7976), 1, + ACTIONS(3870), 1, + sym__brace_start, + ACTIONS(9704), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9710), 1, + anon_sym_DQUOTE, + ACTIONS(9714), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9716), 1, anon_sym_BQUOTE, - ACTIONS(7978), 1, + ACTIONS(9718), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7988), 1, - sym__brace_start, - ACTIONS(9860), 1, + ACTIONS(10492), 1, sym_word, - ACTIONS(9868), 1, - sym__comment_word, - ACTIONS(10356), 1, - anon_sym_DOLLAR, - ACTIONS(7954), 2, + ACTIONS(10494), 1, + sym__special_character, + ACTIONS(10498), 1, + sym_test_operator, + STATE(4776), 1, + aux_sym__literal_repeat1, + STATE(5120), 1, + sym_concatenation, + ACTIONS(9702), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7980), 2, + ACTIONS(9720), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9864), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9866), 3, - sym__bare_dollar, + ACTIONS(10496), 2, sym_raw_string, sym_ansi_c_string, - STATE(4357), 9, + STATE(4427), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259311,47 +261324,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217347] = 18, + [219651] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2335), 1, + ACTIONS(3998), 1, anon_sym_DOLLAR, - ACTIONS(2341), 1, + ACTIONS(4002), 1, aux_sym_number_token1, - ACTIONS(2343), 1, + ACTIONS(4004), 1, aux_sym_number_token2, - ACTIONS(2347), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2357), 1, + ACTIONS(4018), 1, sym__brace_start, - ACTIONS(9010), 1, + ACTIONS(8820), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9014), 1, + ACTIONS(8824), 1, anon_sym_DQUOTE, - ACTIONS(9018), 1, + ACTIONS(8828), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9020), 1, + ACTIONS(8830), 1, anon_sym_BQUOTE, - ACTIONS(9022), 1, + ACTIONS(8832), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10358), 1, + ACTIONS(10046), 1, sym_word, - ACTIONS(10364), 1, + ACTIONS(10054), 1, sym__comment_word, - ACTIONS(9008), 2, + ACTIONS(8818), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9024), 2, + ACTIONS(8834), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10360), 2, + ACTIONS(10050), 2, sym_test_operator, sym__special_character, - ACTIONS(10362), 3, + ACTIONS(10052), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1462), 9, + STATE(1951), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259361,47 +261374,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217415] = 18, - ACTIONS(3), 1, + [219719] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3481), 1, + ACTIONS(1454), 1, + anon_sym_DOLLAR, + ACTIONS(1460), 1, aux_sym_number_token1, - ACTIONS(3483), 1, + ACTIONS(1462), 1, aux_sym_number_token2, - ACTIONS(3487), 1, + ACTIONS(1466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3497), 1, + ACTIONS(1478), 1, sym__brace_start, - ACTIONS(8906), 1, + ACTIONS(9146), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8910), 1, + ACTIONS(9148), 1, + sym__special_character, + ACTIONS(9150), 1, anon_sym_DQUOTE, - ACTIONS(8914), 1, + ACTIONS(9154), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8916), 1, + ACTIONS(9156), 1, anon_sym_BQUOTE, - ACTIONS(8918), 1, + ACTIONS(9158), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9850), 1, + ACTIONS(10500), 1, sym_word, - ACTIONS(9856), 1, - sym__comment_word, - ACTIONS(10366), 1, - anon_sym_DOLLAR, - ACTIONS(8904), 2, + ACTIONS(10504), 1, + sym_test_operator, + STATE(1213), 1, + aux_sym__literal_repeat1, + STATE(1423), 1, + sym_concatenation, + ACTIONS(9144), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8920), 2, + ACTIONS(9160), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9852), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9854), 3, - sym__bare_dollar, + ACTIONS(10502), 2, sym_raw_string, sym_ansi_c_string, - STATE(1921), 9, + STATE(988), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259411,49 +261426,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217483] = 20, + [219791] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3675), 1, + ACTIONS(1454), 1, anon_sym_DOLLAR, - ACTIONS(3681), 1, + ACTIONS(1460), 1, aux_sym_number_token1, - ACTIONS(3683), 1, + ACTIONS(1462), 1, aux_sym_number_token2, - ACTIONS(3687), 1, + ACTIONS(1466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3697), 1, + ACTIONS(1478), 1, sym__brace_start, - ACTIONS(10062), 1, + ACTIONS(9146), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10064), 1, + ACTIONS(9148), 1, sym__special_character, - ACTIONS(10066), 1, + ACTIONS(9150), 1, anon_sym_DQUOTE, - ACTIONS(10070), 1, + ACTIONS(9154), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10072), 1, + ACTIONS(9156), 1, anon_sym_BQUOTE, - ACTIONS(10074), 1, + ACTIONS(9158), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10368), 1, + ACTIONS(10506), 1, sym_word, - ACTIONS(10372), 1, + ACTIONS(10510), 1, sym_test_operator, - STATE(4704), 1, + STATE(1219), 1, aux_sym__literal_repeat1, - STATE(5106), 1, + STATE(1427), 1, sym_concatenation, - ACTIONS(10060), 2, + ACTIONS(9144), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10076), 2, + ACTIONS(9160), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10370), 2, + ACTIONS(10508), 2, sym_raw_string, sym_ansi_c_string, - STATE(4579), 9, + STATE(991), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259463,47 +261478,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217555] = 18, + [219863] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(3034), 1, + anon_sym_DOLLAR, + ACTIONS(3038), 1, aux_sym_number_token1, - ACTIONS(3795), 1, + ACTIONS(3040), 1, aux_sym_number_token2, - ACTIONS(3799), 1, + ACTIONS(3044), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3809), 1, + ACTIONS(3054), 1, sym__brace_start, - ACTIONS(9636), 1, + ACTIONS(8892), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9640), 1, + ACTIONS(8896), 1, anon_sym_DQUOTE, - ACTIONS(9644), 1, + ACTIONS(8900), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9646), 1, + ACTIONS(8902), 1, anon_sym_BQUOTE, - ACTIONS(9648), 1, + ACTIONS(8904), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9872), 1, + ACTIONS(10058), 1, sym_word, - ACTIONS(9880), 1, + ACTIONS(10066), 1, sym__comment_word, - ACTIONS(10374), 1, - anon_sym_DOLLAR, - ACTIONS(9634), 2, + ACTIONS(8890), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9650), 2, + ACTIONS(8906), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9876), 2, + ACTIONS(10062), 2, sym_test_operator, sym__special_character, - ACTIONS(9878), 3, + ACTIONS(10064), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4337), 9, + STATE(1751), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259513,47 +261528,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217623] = 18, - ACTIONS(3), 1, + [219931] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(3350), 1, + anon_sym_DOLLAR, + ACTIONS(3356), 1, aux_sym_number_token1, - ACTIONS(3795), 1, + ACTIONS(3358), 1, aux_sym_number_token2, - ACTIONS(3799), 1, + ACTIONS(3362), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3809), 1, + ACTIONS(3372), 1, sym__brace_start, - ACTIONS(9636), 1, + ACTIONS(9762), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9640), 1, + ACTIONS(9768), 1, anon_sym_DQUOTE, - ACTIONS(9644), 1, + ACTIONS(9772), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9646), 1, + ACTIONS(9774), 1, anon_sym_BQUOTE, - ACTIONS(9648), 1, + ACTIONS(9776), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9872), 1, + ACTIONS(10512), 1, sym_word, - ACTIONS(9880), 1, - sym__comment_word, - ACTIONS(10376), 1, - anon_sym_DOLLAR, - ACTIONS(9634), 2, + ACTIONS(10514), 1, + sym__special_character, + ACTIONS(10518), 1, + sym_test_operator, + STATE(4440), 1, + aux_sym__literal_repeat1, + STATE(4867), 1, + sym_concatenation, + ACTIONS(9760), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9650), 2, + ACTIONS(9778), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9876), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9878), 3, - sym__bare_dollar, + ACTIONS(10516), 2, sym_raw_string, sym_ansi_c_string, - STATE(4337), 9, + STATE(4268), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259563,47 +261580,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217691] = 18, - ACTIONS(3), 1, + [220003] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(4086), 1, + ACTIONS(3350), 1, + anon_sym_DOLLAR, + ACTIONS(3356), 1, aux_sym_number_token1, - ACTIONS(4088), 1, + ACTIONS(3358), 1, aux_sym_number_token2, - ACTIONS(4092), 1, + ACTIONS(3362), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4102), 1, + ACTIONS(3372), 1, sym__brace_start, - ACTIONS(9306), 1, - sym_word, - ACTIONS(9310), 1, + ACTIONS(9762), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9316), 1, + ACTIONS(9768), 1, anon_sym_DQUOTE, - ACTIONS(9320), 1, + ACTIONS(9772), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9322), 1, + ACTIONS(9774), 1, anon_sym_BQUOTE, - ACTIONS(9324), 1, + ACTIONS(9776), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9328), 1, - sym__comment_word, - ACTIONS(10378), 1, - anon_sym_DOLLAR, - ACTIONS(9308), 2, + ACTIONS(10514), 1, + sym__special_character, + ACTIONS(10520), 1, + sym_word, + ACTIONS(10524), 1, + sym_test_operator, + STATE(4443), 1, + aux_sym__literal_repeat1, + STATE(4896), 1, + sym_concatenation, + ACTIONS(9760), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9314), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9326), 2, + ACTIONS(9778), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9318), 3, - sym__bare_dollar, + ACTIONS(10522), 2, sym_raw_string, sym_ansi_c_string, - STATE(4566), 9, + STATE(4276), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259613,47 +261632,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217759] = 18, + [220075] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4086), 1, + ACTIONS(6490), 1, + anon_sym_DOLLAR, + ACTIONS(6496), 1, aux_sym_number_token1, - ACTIONS(4088), 1, + ACTIONS(6498), 1, aux_sym_number_token2, - ACTIONS(4092), 1, + ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4102), 1, + ACTIONS(6514), 1, sym__brace_start, - ACTIONS(9306), 1, - sym_word, - ACTIONS(9310), 1, + ACTIONS(7200), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9316), 1, + ACTIONS(7204), 1, anon_sym_DQUOTE, - ACTIONS(9320), 1, + ACTIONS(7208), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9322), 1, + ACTIONS(7210), 1, anon_sym_BQUOTE, - ACTIONS(9324), 1, + ACTIONS(7212), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9328), 1, + ACTIONS(10526), 1, + sym_word, + ACTIONS(10532), 1, sym__comment_word, - ACTIONS(10380), 1, - anon_sym_DOLLAR, - ACTIONS(9308), 2, + ACTIONS(7196), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9314), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9326), 2, + ACTIONS(7214), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9318), 3, + ACTIONS(10528), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10530), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4566), 9, + STATE(6506), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259663,47 +261682,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217827] = 18, + [220143] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2863), 1, + ACTIONS(8376), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8378), 1, anon_sym_DOLLAR, - ACTIONS(2869), 1, + ACTIONS(8382), 1, + anon_sym_DQUOTE, + ACTIONS(8386), 1, aux_sym_number_token1, - ACTIONS(2871), 1, + ACTIONS(8388), 1, aux_sym_number_token2, - ACTIONS(2875), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2885), 1, - sym__brace_start, - ACTIONS(9940), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9944), 1, - anon_sym_DQUOTE, - ACTIONS(9948), 1, + ACTIONS(8390), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9950), 1, + ACTIONS(8392), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8394), 1, anon_sym_BQUOTE, - ACTIONS(9952), 1, + ACTIONS(8396), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10382), 1, + ACTIONS(8406), 1, + sym__brace_start, + ACTIONS(10534), 1, sym_word, - ACTIONS(10388), 1, + ACTIONS(10540), 1, sym__comment_word, - ACTIONS(9938), 2, + ACTIONS(8372), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9954), 2, + ACTIONS(8398), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10384), 2, + ACTIONS(10536), 2, sym_test_operator, sym__special_character, - ACTIONS(10386), 3, + ACTIONS(10538), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4404), 9, + STATE(2473), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259713,47 +261732,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217895] = 18, + [220211] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1563), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, - sym__brace_start, - ACTIONS(9198), 1, + ACTIONS(4775), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9202), 1, + ACTIONS(4777), 1, + anon_sym_DOLLAR, + ACTIONS(4781), 1, anon_sym_DQUOTE, - ACTIONS(9206), 1, + ACTIONS(4785), 1, + aux_sym_number_token1, + ACTIONS(4787), 1, + aux_sym_number_token2, + ACTIONS(4789), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9208), 1, + ACTIONS(4791), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4793), 1, anon_sym_BQUOTE, - ACTIONS(9210), 1, + ACTIONS(4795), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9268), 1, + ACTIONS(4801), 1, + sym__brace_start, + ACTIONS(10542), 1, sym_word, - ACTIONS(9276), 1, + ACTIONS(10548), 1, sym__comment_word, - ACTIONS(10390), 1, - anon_sym_DOLLAR, - ACTIONS(9196), 2, + ACTIONS(4773), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9212), 2, + ACTIONS(4797), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9272), 2, + ACTIONS(10544), 2, sym_test_operator, sym__special_character, - ACTIONS(9274), 3, + ACTIONS(10546), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1189), 9, + STATE(2599), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259763,47 +261782,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [217963] = 18, + [220279] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3481), 1, - aux_sym_number_token1, - ACTIONS(3483), 1, - aux_sym_number_token2, - ACTIONS(3487), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3497), 1, - sym__brace_start, - ACTIONS(8906), 1, + ACTIONS(2653), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8910), 1, + ACTIONS(2659), 1, anon_sym_DQUOTE, - ACTIONS(8914), 1, + ACTIONS(2663), 1, + aux_sym_number_token1, + ACTIONS(2665), 1, + aux_sym_number_token2, + ACTIONS(2667), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8916), 1, + ACTIONS(2669), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2671), 1, anon_sym_BQUOTE, - ACTIONS(8918), 1, + ACTIONS(2673), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9850), 1, + ACTIONS(2681), 1, + sym__brace_start, + ACTIONS(10360), 1, sym_word, - ACTIONS(9856), 1, + ACTIONS(10366), 1, sym__comment_word, - ACTIONS(10392), 1, + ACTIONS(10550), 1, anon_sym_DOLLAR, - ACTIONS(8904), 2, + ACTIONS(2647), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8920), 2, + ACTIONS(2675), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9852), 2, + ACTIONS(10362), 2, sym_test_operator, sym__special_character, - ACTIONS(9854), 3, + ACTIONS(10364), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1921), 9, + STATE(2310), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259813,153 +261832,147 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218031] = 21, - ACTIONS(71), 1, + [220347] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(5117), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5119), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(5123), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(5127), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(5129), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(5131), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(5133), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(5135), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(5137), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10394), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2760), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(5143), 1, + sym__brace_start, + ACTIONS(10552), 1, + sym_word, + ACTIONS(10558), 1, + sym__comment_word, + ACTIONS(5115), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5139), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10554), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10556), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(5433), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [218105] = 21, - ACTIONS(71), 1, + sym_process_substitution, + [220415] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(9364), 1, - anon_sym_LPAREN, - ACTIONS(9366), 1, - anon_sym_BANG, - ACTIONS(9372), 1, - anon_sym_TILDE, - ACTIONS(9374), 1, - anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(2653), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2659), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(2663), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(2665), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(2667), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(2669), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(2671), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(2673), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(10396), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, - sym__arithmetic_unary_expression, - STATE(3400), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9370), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3321), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(2681), 1, + sym__brace_start, + ACTIONS(10360), 1, + sym_word, + ACTIONS(10366), 1, + sym__comment_word, + ACTIONS(10560), 1, + anon_sym_DOLLAR, + ACTIONS(2647), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2675), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10362), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10364), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2310), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [218179] = 18, + sym_process_substitution, + [220483] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1563), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, - sym__brace_start, - ACTIONS(9198), 1, + ACTIONS(4601), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9202), 1, + ACTIONS(4603), 1, + anon_sym_DOLLAR, + ACTIONS(4607), 1, anon_sym_DQUOTE, - ACTIONS(9206), 1, + ACTIONS(4611), 1, + aux_sym_number_token1, + ACTIONS(4613), 1, + aux_sym_number_token2, + ACTIONS(4615), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9208), 1, + ACTIONS(4617), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4619), 1, anon_sym_BQUOTE, - ACTIONS(9210), 1, + ACTIONS(4621), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9268), 1, + ACTIONS(4627), 1, + sym__brace_start, + ACTIONS(10562), 1, sym_word, - ACTIONS(9276), 1, + ACTIONS(10568), 1, sym__comment_word, - ACTIONS(10398), 1, - anon_sym_DOLLAR, - ACTIONS(9196), 2, + ACTIONS(4599), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9212), 2, + ACTIONS(4623), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9272), 2, + ACTIONS(10564), 2, sym_test_operator, sym__special_character, - ACTIONS(9274), 3, + ACTIONS(10566), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1189), 9, + STATE(2527), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -259969,47 +261982,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218247] = 18, + [220551] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3191), 1, - aux_sym_number_token1, - ACTIONS(3193), 1, - aux_sym_number_token2, - ACTIONS(3197), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3209), 1, - sym__brace_start, - ACTIONS(9674), 1, - sym_word, - ACTIONS(9678), 1, + ACTIONS(4807), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9682), 1, + ACTIONS(4809), 1, + anon_sym_DOLLAR, + ACTIONS(4813), 1, anon_sym_DQUOTE, - ACTIONS(9686), 1, + ACTIONS(4817), 1, + aux_sym_number_token1, + ACTIONS(4819), 1, + aux_sym_number_token2, + ACTIONS(4821), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9688), 1, + ACTIONS(4823), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4825), 1, anon_sym_BQUOTE, - ACTIONS(9690), 1, + ACTIONS(4827), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9694), 1, + ACTIONS(4833), 1, + sym__brace_start, + ACTIONS(10570), 1, + sym_word, + ACTIONS(10576), 1, sym__comment_word, - ACTIONS(10400), 1, - anon_sym_DOLLAR, - ACTIONS(9676), 2, + ACTIONS(4805), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9680), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9692), 2, + ACTIONS(4829), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9684), 3, + ACTIONS(10572), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10574), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1733), 9, + STATE(5347), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260019,153 +262032,147 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218315] = 21, - ACTIONS(71), 1, + [220619] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(7958), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7960), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(7964), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(7968), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(7970), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(7972), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(7974), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(7976), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(7978), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10402), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2844), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(7988), 1, + sym__brace_start, + ACTIONS(10070), 1, + sym_word, + ACTIONS(10078), 1, + sym__comment_word, + ACTIONS(7954), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7980), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10074), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10076), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4322), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [218389] = 21, - ACTIONS(71), 1, + sym_process_substitution, + [220687] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(9364), 1, - anon_sym_LPAREN, - ACTIONS(9366), 1, - anon_sym_BANG, - ACTIONS(9372), 1, - anon_sym_TILDE, - ACTIONS(9374), 1, - anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(357), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(363), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(367), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(369), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(371), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(375), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(377), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(10404), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, - sym__arithmetic_unary_expression, - STATE(3400), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9370), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3374), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(387), 1, + sym__brace_start, + ACTIONS(9948), 1, + sym_word, + ACTIONS(9956), 1, + sym__comment_word, + ACTIONS(10578), 1, + anon_sym_DOLLAR, + ACTIONS(355), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(379), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9952), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9954), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1101), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [218463] = 18, + sym_process_substitution, + [220755] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(191), 1, + ACTIONS(8128), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(193), 1, + ACTIONS(8130), 1, anon_sym_DOLLAR, - ACTIONS(197), 1, + ACTIONS(8134), 1, anon_sym_DQUOTE, - ACTIONS(201), 1, + ACTIONS(8138), 1, aux_sym_number_token1, - ACTIONS(203), 1, + ACTIONS(8140), 1, aux_sym_number_token2, - ACTIONS(205), 1, + ACTIONS(8142), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(207), 1, + ACTIONS(8144), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(209), 1, + ACTIONS(8146), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(8148), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(221), 1, + ACTIONS(8158), 1, sym__brace_start, - ACTIONS(10406), 1, + ACTIONS(10580), 1, sym_word, - ACTIONS(10412), 1, + ACTIONS(10586), 1, sym__comment_word, - ACTIONS(189), 2, + ACTIONS(8124), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(213), 2, + ACTIONS(8150), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10408), 2, + ACTIONS(10582), 2, sym_test_operator, sym__special_character, - ACTIONS(10410), 3, + ACTIONS(10584), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(513), 9, + STATE(5450), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260175,47 +262182,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218531] = 18, + [220823] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3191), 1, + ACTIONS(5617), 1, + anon_sym_DOLLAR, + ACTIONS(5621), 1, aux_sym_number_token1, - ACTIONS(3193), 1, + ACTIONS(5623), 1, aux_sym_number_token2, - ACTIONS(3197), 1, + ACTIONS(5627), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3209), 1, + ACTIONS(5637), 1, sym__brace_start, - ACTIONS(9674), 1, - sym_word, - ACTIONS(9678), 1, + ACTIONS(9008), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9682), 1, + ACTIONS(9012), 1, anon_sym_DQUOTE, - ACTIONS(9686), 1, + ACTIONS(9016), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9688), 1, + ACTIONS(9018), 1, anon_sym_BQUOTE, - ACTIONS(9690), 1, + ACTIONS(9020), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9694), 1, + ACTIONS(10588), 1, + sym_word, + ACTIONS(10594), 1, sym__comment_word, - ACTIONS(10414), 1, - anon_sym_DOLLAR, - ACTIONS(9676), 2, + ACTIONS(9006), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9680), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9692), 2, + ACTIONS(9022), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9684), 3, + ACTIONS(10590), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10592), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1733), 9, + STATE(3431), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260225,47 +262232,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218599] = 18, + [220891] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(5773), 1, + anon_sym_DOLLAR, + ACTIONS(5779), 1, aux_sym_number_token1, - ACTIONS(2271), 1, + ACTIONS(5781), 1, aux_sym_number_token2, - ACTIONS(2275), 1, + ACTIONS(5785), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2289), 1, + ACTIONS(5795), 1, sym__brace_start, - ACTIONS(8066), 1, + ACTIONS(10336), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8070), 1, + ACTIONS(10340), 1, anon_sym_DQUOTE, - ACTIONS(8074), 1, + ACTIONS(10344), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8076), 1, + ACTIONS(10346), 1, anon_sym_BQUOTE, - ACTIONS(8078), 1, + ACTIONS(10348), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9580), 1, + ACTIONS(10596), 1, sym_word, - ACTIONS(9588), 1, + ACTIONS(10602), 1, sym__comment_word, - ACTIONS(10416), 1, - anon_sym_DOLLAR, - ACTIONS(8062), 2, + ACTIONS(10334), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8080), 2, + ACTIONS(10350), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9584), 2, + ACTIONS(10598), 2, sym_test_operator, sym__special_character, - ACTIONS(9586), 3, + ACTIONS(10600), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1623), 9, + STATE(5658), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260275,47 +262282,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218667] = 18, + [220959] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(449), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(457), 1, + ACTIONS(451), 1, + anon_sym_DOLLAR, + ACTIONS(455), 1, anon_sym_DQUOTE, - ACTIONS(461), 1, + ACTIONS(459), 1, aux_sym_number_token1, - ACTIONS(463), 1, + ACTIONS(461), 1, aux_sym_number_token2, - ACTIONS(465), 1, + ACTIONS(463), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(467), 1, + ACTIONS(465), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(469), 1, + ACTIONS(467), 1, anon_sym_BQUOTE, - ACTIONS(471), 1, + ACTIONS(469), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(481), 1, + ACTIONS(479), 1, sym__brace_start, - ACTIONS(10308), 1, + ACTIONS(10604), 1, sym_word, - ACTIONS(10314), 1, + ACTIONS(10610), 1, sym__comment_word, - ACTIONS(10418), 1, - anon_sym_DOLLAR, - ACTIONS(449), 2, + ACTIONS(447), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(473), 2, + ACTIONS(471), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10310), 2, + ACTIONS(10606), 2, sym_test_operator, sym__special_character, - ACTIONS(10312), 3, + ACTIONS(10608), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(866), 9, + STATE(836), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260325,47 +262332,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218735] = 18, + [221027] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, - aux_sym_number_token1, - ACTIONS(2271), 1, - aux_sym_number_token2, - ACTIONS(2275), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2289), 1, - sym__brace_start, - ACTIONS(8066), 1, + ACTIONS(5193), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8070), 1, + ACTIONS(5195), 1, + anon_sym_DOLLAR, + ACTIONS(5199), 1, anon_sym_DQUOTE, - ACTIONS(8074), 1, + ACTIONS(5203), 1, + aux_sym_number_token1, + ACTIONS(5205), 1, + aux_sym_number_token2, + ACTIONS(5207), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8076), 1, + ACTIONS(5209), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5211), 1, anon_sym_BQUOTE, - ACTIONS(8078), 1, + ACTIONS(5213), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9580), 1, + ACTIONS(5219), 1, + sym__brace_start, + ACTIONS(10612), 1, sym_word, - ACTIONS(9588), 1, + ACTIONS(10618), 1, sym__comment_word, - ACTIONS(10420), 1, - anon_sym_DOLLAR, - ACTIONS(8062), 2, + ACTIONS(5191), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8080), 2, + ACTIONS(5215), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9584), 2, + ACTIONS(10614), 2, sym_test_operator, sym__special_character, - ACTIONS(9586), 3, + ACTIONS(10616), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1623), 9, + STATE(2939), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260375,47 +262382,97 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218803] = 18, + [221095] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2341), 1, + ACTIONS(5432), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5434), 1, + anon_sym_DOLLAR, + ACTIONS(5438), 1, + anon_sym_DQUOTE, + ACTIONS(5442), 1, aux_sym_number_token1, - ACTIONS(2343), 1, + ACTIONS(5444), 1, aux_sym_number_token2, - ACTIONS(2347), 1, + ACTIONS(5446), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5448), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2357), 1, + ACTIONS(5450), 1, + anon_sym_BQUOTE, + ACTIONS(5452), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5458), 1, sym__brace_start, - ACTIONS(9010), 1, + ACTIONS(10620), 1, + sym_word, + ACTIONS(10626), 1, + sym__comment_word, + ACTIONS(5430), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5454), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10622), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10624), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(5526), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [221163] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4928), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9014), 1, + ACTIONS(4930), 1, + anon_sym_DOLLAR, + ACTIONS(4934), 1, anon_sym_DQUOTE, - ACTIONS(9018), 1, + ACTIONS(4938), 1, + aux_sym_number_token1, + ACTIONS(4940), 1, + aux_sym_number_token2, + ACTIONS(4942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9020), 1, + ACTIONS(4944), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4946), 1, anon_sym_BQUOTE, - ACTIONS(9022), 1, + ACTIONS(4948), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10358), 1, + ACTIONS(4954), 1, + sym__brace_start, + ACTIONS(9278), 1, sym_word, - ACTIONS(10364), 1, + ACTIONS(9286), 1, sym__comment_word, - ACTIONS(10422), 1, - anon_sym_DOLLAR, - ACTIONS(9008), 2, + ACTIONS(4926), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9024), 2, + ACTIONS(4950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10360), 2, + ACTIONS(9282), 2, sym_test_operator, sym__special_character, - ACTIONS(10362), 3, + ACTIONS(9284), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1462), 9, + STATE(2604), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260425,47 +262482,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218871] = 18, + [221231] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8178), 1, + ACTIONS(5281), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8184), 1, + ACTIONS(5283), 1, + anon_sym_DOLLAR, + ACTIONS(5287), 1, anon_sym_DQUOTE, - ACTIONS(8188), 1, + ACTIONS(5291), 1, aux_sym_number_token1, - ACTIONS(8190), 1, + ACTIONS(5293), 1, aux_sym_number_token2, - ACTIONS(8192), 1, + ACTIONS(5295), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8194), 1, + ACTIONS(5297), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8196), 1, + ACTIONS(5299), 1, anon_sym_BQUOTE, - ACTIONS(8198), 1, + ACTIONS(5301), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8208), 1, + ACTIONS(5307), 1, sym__brace_start, - ACTIONS(9720), 1, + ACTIONS(9288), 1, sym_word, - ACTIONS(9728), 1, + ACTIONS(9296), 1, sym__comment_word, - ACTIONS(10424), 1, - anon_sym_DOLLAR, - ACTIONS(8174), 2, + ACTIONS(5279), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8200), 2, + ACTIONS(5303), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9724), 2, + ACTIONS(9292), 2, sym_test_operator, sym__special_character, - ACTIONS(9726), 3, + ACTIONS(9294), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1590), 9, + STATE(5487), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260475,47 +262532,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [218939] = 18, + [221299] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8178), 1, + ACTIONS(8292), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8184), 1, + ACTIONS(8294), 1, + anon_sym_DOLLAR, + ACTIONS(8298), 1, anon_sym_DQUOTE, - ACTIONS(8188), 1, + ACTIONS(8302), 1, aux_sym_number_token1, - ACTIONS(8190), 1, + ACTIONS(8304), 1, aux_sym_number_token2, - ACTIONS(8192), 1, + ACTIONS(8306), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8194), 1, + ACTIONS(8308), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8196), 1, + ACTIONS(8310), 1, anon_sym_BQUOTE, - ACTIONS(8198), 1, + ACTIONS(8312), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8208), 1, + ACTIONS(8322), 1, sym__brace_start, - ACTIONS(9720), 1, + ACTIONS(9300), 1, sym_word, - ACTIONS(9728), 1, + ACTIONS(9308), 1, sym__comment_word, - ACTIONS(10426), 1, - anon_sym_DOLLAR, - ACTIONS(8174), 2, + ACTIONS(8288), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8200), 2, + ACTIONS(8314), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9724), 2, + ACTIONS(9304), 2, sym_test_operator, sym__special_character, - ACTIONS(9726), 3, + ACTIONS(9306), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1590), 9, + STATE(1259), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260525,47 +262582,97 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219007] = 18, + [221367] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(1694), 1, anon_sym_DOLLAR, - ACTIONS(264), 1, + ACTIONS(1700), 1, aux_sym_number_token1, - ACTIONS(266), 1, + ACTIONS(1702), 1, aux_sym_number_token2, - ACTIONS(270), 1, + ACTIONS(1706), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(284), 1, + ACTIONS(1720), 1, sym__brace_start, - ACTIONS(1075), 1, + ACTIONS(8240), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1081), 1, + ACTIONS(8244), 1, anon_sym_DQUOTE, - ACTIONS(1085), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1087), 1, + ACTIONS(8250), 1, + anon_sym_BQUOTE, + ACTIONS(8252), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, + ACTIONS(9326), 1, + sym_word, + ACTIONS(9334), 1, + sym__comment_word, + ACTIONS(8236), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8254), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9330), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9332), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1269), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [221435] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1043), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1049), 1, + anon_sym_DQUOTE, + ACTIONS(1053), 1, + aux_sym_number_token1, + ACTIONS(1055), 1, + aux_sym_number_token2, + ACTIONS(1057), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1059), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1061), 1, anon_sym_BQUOTE, - ACTIONS(10428), 1, + ACTIONS(1063), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1071), 1, + sym__brace_start, + ACTIONS(10380), 1, sym_word, - ACTIONS(10434), 1, + ACTIONS(10386), 1, sym__comment_word, - ACTIONS(1073), 2, + ACTIONS(10628), 1, + anon_sym_DOLLAR, + ACTIONS(1041), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1089), 2, + ACTIONS(1065), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10430), 2, + ACTIONS(10382), 2, sym_test_operator, sym__special_character, - ACTIONS(10432), 3, + ACTIONS(10384), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2732), 9, + STATE(2257), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260575,47 +262682,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219075] = 18, + [221503] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2341), 1, + ACTIONS(2464), 1, + anon_sym_DOLLAR, + ACTIONS(2470), 1, aux_sym_number_token1, - ACTIONS(2343), 1, + ACTIONS(2472), 1, aux_sym_number_token2, - ACTIONS(2347), 1, + ACTIONS(2476), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2357), 1, + ACTIONS(2488), 1, sym__brace_start, - ACTIONS(9010), 1, + ACTIONS(9380), 1, + sym_word, + ACTIONS(9384), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9014), 1, + ACTIONS(9390), 1, anon_sym_DQUOTE, - ACTIONS(9018), 1, + ACTIONS(9394), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9020), 1, + ACTIONS(9396), 1, anon_sym_BQUOTE, - ACTIONS(9022), 1, + ACTIONS(9398), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10358), 1, - sym_word, - ACTIONS(10364), 1, + ACTIONS(9402), 1, sym__comment_word, - ACTIONS(10436), 1, - anon_sym_DOLLAR, - ACTIONS(9008), 2, + ACTIONS(9382), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9024), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10360), 2, + ACTIONS(9388), 2, sym_test_operator, sym__special_character, - ACTIONS(10362), 3, + ACTIONS(9400), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9392), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1462), 9, + STATE(1465), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260625,47 +262732,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219143] = 18, + [221571] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(314), 1, + ACTIONS(357), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(320), 1, + ACTIONS(363), 1, anon_sym_DQUOTE, - ACTIONS(324), 1, + ACTIONS(367), 1, aux_sym_number_token1, - ACTIONS(326), 1, + ACTIONS(369), 1, aux_sym_number_token2, - ACTIONS(328), 1, + ACTIONS(371), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(330), 1, + ACTIONS(373), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(332), 1, + ACTIONS(375), 1, anon_sym_BQUOTE, - ACTIONS(334), 1, + ACTIONS(377), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(344), 1, + ACTIONS(387), 1, sym__brace_start, - ACTIONS(9400), 1, + ACTIONS(9948), 1, sym_word, - ACTIONS(9406), 1, + ACTIONS(9956), 1, sym__comment_word, - ACTIONS(10438), 1, + ACTIONS(10630), 1, anon_sym_DOLLAR, - ACTIONS(312), 2, + ACTIONS(355), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(336), 2, + ACTIONS(379), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9402), 2, + ACTIONS(9952), 2, sym_test_operator, sym__special_character, - ACTIONS(9404), 3, + ACTIONS(9954), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1037), 9, + STATE(1101), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260675,206 +262782,97 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219211] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, - anon_sym_DOLLAR, - ACTIONS(9290), 1, - anon_sym_DQUOTE, - ACTIONS(9292), 1, - aux_sym_number_token1, - ACTIONS(9294), 1, - aux_sym_number_token2, - ACTIONS(9296), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, - anon_sym_BQUOTE, - ACTIONS(9302), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10440), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2761), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [219285] = 21, - ACTIONS(71), 1, + [221639] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(9364), 1, - anon_sym_LPAREN, - ACTIONS(9366), 1, - anon_sym_BANG, - ACTIONS(9372), 1, - anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(1414), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, - anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(1420), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(1422), 1, aux_sym_number_token2, - ACTIONS(9382), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(1426), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, - anon_sym_BQUOTE, - ACTIONS(9388), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(10442), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, - sym__arithmetic_unary_expression, - STATE(3400), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9370), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3320), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [219359] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, - anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(1438), 1, + sym__brace_start, + ACTIONS(8928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8932), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, - aux_sym_number_token1, - ACTIONS(9294), 1, - aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(8936), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(8938), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(8940), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10444), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2762), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(9422), 1, + sym_word, + ACTIONS(9430), 1, + sym__comment_word, + ACTIONS(8926), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8942), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9426), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9428), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1006), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [219433] = 18, + sym_process_substitution, + [221707] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(314), 1, + ACTIONS(1043), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(320), 1, + ACTIONS(1049), 1, anon_sym_DQUOTE, - ACTIONS(324), 1, + ACTIONS(1053), 1, aux_sym_number_token1, - ACTIONS(326), 1, + ACTIONS(1055), 1, aux_sym_number_token2, - ACTIONS(328), 1, + ACTIONS(1057), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(330), 1, + ACTIONS(1059), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(332), 1, + ACTIONS(1061), 1, anon_sym_BQUOTE, - ACTIONS(334), 1, + ACTIONS(1063), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(344), 1, + ACTIONS(1071), 1, sym__brace_start, - ACTIONS(9400), 1, + ACTIONS(10380), 1, sym_word, - ACTIONS(9406), 1, + ACTIONS(10386), 1, sym__comment_word, - ACTIONS(10446), 1, + ACTIONS(10632), 1, anon_sym_DOLLAR, - ACTIONS(312), 2, + ACTIONS(1041), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(336), 2, + ACTIONS(1065), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9402), 2, + ACTIONS(10382), 2, sym_test_operator, sym__special_character, - ACTIONS(9404), 3, + ACTIONS(10384), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1037), 9, + STATE(2257), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260884,47 +262882,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219501] = 18, + [221775] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(53), 1, - anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(2691), 1, + anon_sym_DOLLAR, + ACTIONS(2697), 1, aux_sym_number_token1, - ACTIONS(59), 1, + ACTIONS(2699), 1, aux_sym_number_token2, - ACTIONS(61), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(63), 1, + ACTIONS(2703), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(65), 1, + ACTIONS(2713), 1, + sym__brace_start, + ACTIONS(9096), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9100), 1, + anon_sym_DQUOTE, + ACTIONS(9104), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9106), 1, anon_sym_BQUOTE, - ACTIONS(67), 1, + ACTIONS(9108), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(79), 1, - sym__brace_start, - ACTIONS(10448), 1, + ACTIONS(9496), 1, sym_word, - ACTIONS(10450), 1, - anon_sym_DOLLAR, - ACTIONS(10456), 1, + ACTIONS(9504), 1, sym__comment_word, - ACTIONS(45), 2, + ACTIONS(9094), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(69), 2, + ACTIONS(9110), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10452), 2, + ACTIONS(9500), 2, sym_test_operator, sym__special_character, - ACTIONS(10454), 3, + ACTIONS(9502), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1083), 9, + STATE(1670), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260934,47 +262932,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219569] = 18, + [221843] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(3131), 1, + anon_sym_DOLLAR, + ACTIONS(3137), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(3139), 1, aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(3143), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, + ACTIONS(3153), 1, sym__brace_start, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - ACTIONS(10188), 1, + ACTIONS(9508), 1, sym_word, - ACTIONS(10196), 1, + ACTIONS(9512), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9518), 1, + anon_sym_DQUOTE, + ACTIONS(9522), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9524), 1, + anon_sym_BQUOTE, + ACTIONS(9526), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9530), 1, sym__comment_word, - ACTIONS(10458), 1, - anon_sym_DOLLAR, - ACTIONS(1129), 2, + ACTIONS(9510), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10192), 2, + ACTIONS(9516), 2, sym_test_operator, sym__special_character, - ACTIONS(10194), 3, + ACTIONS(9528), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9520), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2392), 9, + STATE(4478), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -260984,47 +262982,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219637] = 18, + [221911] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(2323), 1, + anon_sym_DOLLAR, + ACTIONS(2327), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(2329), 1, aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(2333), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, + ACTIONS(2343), 1, sym__brace_start, - ACTIONS(3060), 1, + ACTIONS(9116), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9120), 1, + anon_sym_DQUOTE, + ACTIONS(9124), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9126), 1, anon_sym_BQUOTE, - ACTIONS(10188), 1, + ACTIONS(9128), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9268), 1, sym_word, - ACTIONS(10196), 1, + ACTIONS(9276), 1, sym__comment_word, - ACTIONS(10460), 1, - anon_sym_DOLLAR, - ACTIONS(1129), 2, + ACTIONS(9114), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, + ACTIONS(9130), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10192), 2, + ACTIONS(9272), 2, sym_test_operator, sym__special_character, - ACTIONS(10194), 3, + ACTIONS(9274), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2392), 9, + STATE(1402), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261034,47 +263032,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219705] = 18, + [221979] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(457), 1, - anon_sym_DQUOTE, - ACTIONS(461), 1, + ACTIONS(2723), 1, + anon_sym_DOLLAR, + ACTIONS(2729), 1, aux_sym_number_token1, - ACTIONS(463), 1, + ACTIONS(2731), 1, aux_sym_number_token2, - ACTIONS(465), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(467), 1, + ACTIONS(2735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(469), 1, - anon_sym_BQUOTE, - ACTIONS(471), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(481), 1, + ACTIONS(2745), 1, sym__brace_start, - ACTIONS(10308), 1, + ACTIONS(9540), 1, sym_word, - ACTIONS(10314), 1, + ACTIONS(9544), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9550), 1, + anon_sym_DQUOTE, + ACTIONS(9554), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9556), 1, + anon_sym_BQUOTE, + ACTIONS(9558), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9562), 1, sym__comment_word, - ACTIONS(10462), 1, - anon_sym_DOLLAR, - ACTIONS(449), 2, + ACTIONS(9542), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(473), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10310), 2, + ACTIONS(9548), 2, sym_test_operator, sym__special_character, - ACTIONS(10312), 3, + ACTIONS(9560), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9552), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(866), 9, + STATE(4277), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261084,7 +263082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219773] = 18, + [222047] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(707), 1, @@ -261107,9 +263105,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, ACTIONS(737), 1, sym__brace_start, - ACTIONS(10464), 1, + ACTIONS(9574), 1, sym_word, - ACTIONS(10470), 1, + ACTIONS(9582), 1, sym__comment_word, ACTIONS(705), 2, anon_sym_LPAREN_LPAREN, @@ -261117,14 +263115,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(729), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10466), 2, + ACTIONS(9578), 2, sym_test_operator, sym__special_character, - ACTIONS(10468), 3, + ACTIONS(9580), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(999), 9, + STATE(903), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261134,47 +263132,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219841] = 18, + [222115] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8372), 1, + ACTIONS(8024), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8374), 1, + ACTIONS(8026), 1, anon_sym_DOLLAR, - ACTIONS(8378), 1, + ACTIONS(8030), 1, anon_sym_DQUOTE, - ACTIONS(8382), 1, + ACTIONS(8034), 1, aux_sym_number_token1, - ACTIONS(8384), 1, + ACTIONS(8036), 1, aux_sym_number_token2, - ACTIONS(8386), 1, + ACTIONS(8038), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8388), 1, + ACTIONS(8040), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8390), 1, + ACTIONS(8042), 1, anon_sym_BQUOTE, - ACTIONS(8392), 1, + ACTIONS(8044), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8402), 1, + ACTIONS(8054), 1, sym__brace_start, - ACTIONS(10472), 1, + ACTIONS(9588), 1, sym_word, - ACTIONS(10478), 1, + ACTIONS(9596), 1, sym__comment_word, - ACTIONS(8368), 2, + ACTIONS(8020), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8394), 2, + ACTIONS(8046), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10474), 2, + ACTIONS(9592), 2, sym_test_operator, sym__special_character, - ACTIONS(10476), 3, + ACTIONS(9594), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4285), 9, + STATE(4262), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261184,47 +263182,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219909] = 18, + [222183] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8268), 1, + ACTIONS(8488), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8270), 1, + ACTIONS(8490), 1, anon_sym_DOLLAR, - ACTIONS(8274), 1, + ACTIONS(8494), 1, anon_sym_DQUOTE, - ACTIONS(8278), 1, + ACTIONS(8498), 1, aux_sym_number_token1, - ACTIONS(8280), 1, + ACTIONS(8500), 1, aux_sym_number_token2, - ACTIONS(8282), 1, + ACTIONS(8502), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8284), 1, + ACTIONS(8504), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8286), 1, + ACTIONS(8506), 1, anon_sym_BQUOTE, - ACTIONS(8288), 1, + ACTIONS(8508), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8298), 1, + ACTIONS(8518), 1, sym__brace_start, - ACTIONS(10480), 1, + ACTIONS(9608), 1, sym_word, - ACTIONS(10486), 1, + ACTIONS(9616), 1, sym__comment_word, - ACTIONS(8264), 2, + ACTIONS(8484), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8290), 2, + ACTIONS(8510), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10482), 2, + ACTIONS(9612), 2, sym_test_operator, sym__special_character, - ACTIONS(10484), 3, + ACTIONS(9614), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1465), 9, + STATE(1416), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261234,47 +263232,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [219977] = 18, + [222251] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1831), 1, + ACTIONS(1878), 1, anon_sym_DOLLAR, - ACTIONS(1837), 1, + ACTIONS(1884), 1, aux_sym_number_token1, - ACTIONS(1839), 1, + ACTIONS(1886), 1, aux_sym_number_token2, - ACTIONS(1843), 1, + ACTIONS(1890), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1857), 1, + ACTIONS(1904), 1, sym__brace_start, - ACTIONS(8232), 1, + ACTIONS(7996), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8236), 1, + ACTIONS(8000), 1, anon_sym_DQUOTE, - ACTIONS(8240), 1, + ACTIONS(8004), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8242), 1, + ACTIONS(8006), 1, anon_sym_BQUOTE, - ACTIONS(8244), 1, + ACTIONS(8008), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10488), 1, + ACTIONS(9630), 1, sym_word, - ACTIONS(10494), 1, + ACTIONS(9638), 1, sym__comment_word, - ACTIONS(8228), 2, + ACTIONS(7992), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8246), 2, + ACTIONS(8010), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10490), 2, + ACTIONS(9634), 2, sym_test_operator, sym__special_character, - ACTIONS(10492), 3, + ACTIONS(9636), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1440), 9, + STATE(1474), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261284,153 +263282,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220045] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9364), 1, - anon_sym_LPAREN, - ACTIONS(9366), 1, - anon_sym_BANG, - ACTIONS(9372), 1, - anon_sym_TILDE, - ACTIONS(9374), 1, - anon_sym_DOLLAR, - ACTIONS(9376), 1, - anon_sym_DQUOTE, - ACTIONS(9378), 1, - aux_sym_number_token1, - ACTIONS(9380), 1, - aux_sym_number_token2, - ACTIONS(9382), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, - anon_sym_BQUOTE, - ACTIONS(9388), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(10496), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, - sym__arithmetic_unary_expression, - STATE(3400), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9370), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3317), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [220119] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, - anon_sym_DOLLAR, - ACTIONS(9290), 1, - anon_sym_DQUOTE, - ACTIONS(9292), 1, - aux_sym_number_token1, - ACTIONS(9294), 1, - aux_sym_number_token2, - ACTIONS(9296), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, - anon_sym_BQUOTE, - ACTIONS(9302), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10498), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2763), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [220193] = 18, + [222319] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2786), 1, + ACTIONS(2619), 1, anon_sym_DOLLAR, - ACTIONS(2792), 1, + ACTIONS(2625), 1, aux_sym_number_token1, - ACTIONS(2794), 1, + ACTIONS(2627), 1, aux_sym_number_token2, - ACTIONS(2798), 1, + ACTIONS(2631), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2810), 1, + ACTIONS(2643), 1, sym__brace_start, - ACTIONS(10500), 1, + ACTIONS(9644), 1, sym_word, - ACTIONS(10504), 1, + ACTIONS(9648), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10508), 1, + ACTIONS(9654), 1, anon_sym_DQUOTE, - ACTIONS(10512), 1, + ACTIONS(9658), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10514), 1, + ACTIONS(9660), 1, anon_sym_BQUOTE, - ACTIONS(10516), 1, + ACTIONS(9662), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10520), 1, + ACTIONS(9666), 1, sym__comment_word, - ACTIONS(10502), 2, + ACTIONS(9646), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10506), 2, + ACTIONS(9652), 2, sym_test_operator, sym__special_character, - ACTIONS(10518), 2, + ACTIONS(9664), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10510), 3, + ACTIONS(9656), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1569), 9, + STATE(1699), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261440,7 +263332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220261] = 18, + [222387] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1454), 1, @@ -261453,34 +263345,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(1478), 1, sym__brace_start, - ACTIONS(8878), 1, + ACTIONS(9146), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8882), 1, + ACTIONS(9150), 1, anon_sym_DQUOTE, - ACTIONS(8886), 1, + ACTIONS(9154), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8888), 1, + ACTIONS(9156), 1, anon_sym_BQUOTE, - ACTIONS(8890), 1, + ACTIONS(9158), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10522), 1, + ACTIONS(9676), 1, sym_word, - ACTIONS(10528), 1, + ACTIONS(9684), 1, sym__comment_word, - ACTIONS(8876), 2, + ACTIONS(9144), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8892), 2, + ACTIONS(9160), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10524), 2, + ACTIONS(9680), 2, sym_test_operator, sym__special_character, - ACTIONS(10526), 3, + ACTIONS(9682), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1120), 9, + STATE(1013), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261490,47 +263382,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220329] = 18, + [222455] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, + ACTIONS(3275), 1, anon_sym_DOLLAR, - ACTIONS(3343), 1, + ACTIONS(3281), 1, aux_sym_number_token1, - ACTIONS(3345), 1, + ACTIONS(3283), 1, aux_sym_number_token2, - ACTIONS(3349), 1, + ACTIONS(3287), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3359), 1, + ACTIONS(3297), 1, sym__brace_start, - ACTIONS(9046), 1, + ACTIONS(9210), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9050), 1, + ACTIONS(9214), 1, anon_sym_DQUOTE, - ACTIONS(9054), 1, + ACTIONS(9218), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9056), 1, + ACTIONS(9220), 1, anon_sym_BQUOTE, - ACTIONS(9058), 1, + ACTIONS(9222), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10530), 1, + ACTIONS(9688), 1, sym_word, - ACTIONS(10536), 1, + ACTIONS(9696), 1, sym__comment_word, - ACTIONS(9044), 2, + ACTIONS(9208), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9060), 2, + ACTIONS(9224), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10532), 2, + ACTIONS(9692), 2, sym_test_operator, sym__special_character, - ACTIONS(10534), 3, + ACTIONS(9694), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1827), 9, + STATE(1799), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261540,47 +263432,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220397] = 18, + [222523] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8512), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8518), 1, - anon_sym_DQUOTE, - ACTIONS(8522), 1, + ACTIONS(3742), 1, aux_sym_number_token1, - ACTIONS(8524), 1, + ACTIONS(3744), 1, aux_sym_number_token2, - ACTIONS(8526), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8528), 1, + ACTIONS(3748), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8530), 1, + ACTIONS(3758), 1, + sym__brace_start, + ACTIONS(8838), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8842), 1, + anon_sym_DQUOTE, + ACTIONS(8846), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8848), 1, anon_sym_BQUOTE, - ACTIONS(8532), 1, + ACTIONS(8850), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8542), 1, - sym__brace_start, - ACTIONS(10220), 1, + ACTIONS(10400), 1, sym_word, - ACTIONS(10226), 1, + ACTIONS(10406), 1, sym__comment_word, - ACTIONS(10538), 1, + ACTIONS(10634), 1, anon_sym_DOLLAR, - ACTIONS(8508), 2, + ACTIONS(8836), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8534), 2, + ACTIONS(8852), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10222), 2, + ACTIONS(10402), 2, sym_test_operator, sym__special_character, - ACTIONS(10224), 3, + ACTIONS(10404), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2514), 9, + STATE(1974), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261590,47 +263482,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220465] = 18, + [222591] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3675), 1, + ACTIONS(3848), 1, anon_sym_DOLLAR, - ACTIONS(3681), 1, + ACTIONS(3854), 1, aux_sym_number_token1, - ACTIONS(3683), 1, + ACTIONS(3856), 1, aux_sym_number_token2, - ACTIONS(3687), 1, + ACTIONS(3860), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3697), 1, + ACTIONS(3870), 1, sym__brace_start, - ACTIONS(10062), 1, + ACTIONS(9700), 1, + sym_word, + ACTIONS(9704), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10066), 1, + ACTIONS(9710), 1, anon_sym_DQUOTE, - ACTIONS(10070), 1, + ACTIONS(9714), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10072), 1, + ACTIONS(9716), 1, anon_sym_BQUOTE, - ACTIONS(10074), 1, + ACTIONS(9718), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10540), 1, - sym_word, - ACTIONS(10546), 1, + ACTIONS(9722), 1, sym__comment_word, - ACTIONS(10060), 2, + ACTIONS(9702), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10076), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10542), 2, + ACTIONS(9708), 2, sym_test_operator, sym__special_character, - ACTIONS(10544), 3, + ACTIONS(9720), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9712), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4831), 9, + STATE(4704), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261640,47 +263532,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220533] = 18, + [222659] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2574), 1, - anon_sym_DOLLAR, - ACTIONS(2580), 1, + ACTIONS(3742), 1, aux_sym_number_token1, - ACTIONS(2582), 1, + ACTIONS(3744), 1, aux_sym_number_token2, - ACTIONS(2586), 1, + ACTIONS(3748), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2596), 1, + ACTIONS(3758), 1, sym__brace_start, - ACTIONS(9064), 1, + ACTIONS(8838), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9068), 1, + ACTIONS(8842), 1, anon_sym_DQUOTE, - ACTIONS(9072), 1, + ACTIONS(8846), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9074), 1, + ACTIONS(8848), 1, anon_sym_BQUOTE, - ACTIONS(9076), 1, + ACTIONS(8850), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10548), 1, + ACTIONS(10400), 1, sym_word, - ACTIONS(10554), 1, + ACTIONS(10406), 1, sym__comment_word, - ACTIONS(9062), 2, + ACTIONS(10636), 1, + anon_sym_DOLLAR, + ACTIONS(8836), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9078), 2, + ACTIONS(8852), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10550), 2, + ACTIONS(10402), 2, sym_test_operator, sym__special_character, - ACTIONS(10552), 3, + ACTIONS(10404), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1669), 9, + STATE(1974), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261690,47 +263582,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220601] = 18, + [222727] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3026), 1, + ACTIONS(2812), 1, anon_sym_DOLLAR, - ACTIONS(3032), 1, + ACTIONS(2818), 1, aux_sym_number_token1, - ACTIONS(3034), 1, + ACTIONS(2820), 1, aux_sym_number_token2, - ACTIONS(3038), 1, + ACTIONS(2824), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3048), 1, + ACTIONS(2834), 1, sym__brace_start, - ACTIONS(10134), 1, + ACTIONS(9244), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10138), 1, + ACTIONS(9248), 1, anon_sym_DQUOTE, - ACTIONS(10142), 1, + ACTIONS(9252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10144), 1, + ACTIONS(9254), 1, anon_sym_BQUOTE, - ACTIONS(10146), 1, + ACTIONS(9256), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10556), 1, + ACTIONS(9746), 1, sym_word, - ACTIONS(10562), 1, + ACTIONS(9754), 1, sym__comment_word, - ACTIONS(10132), 2, + ACTIONS(9242), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10148), 2, + ACTIONS(9258), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10558), 2, + ACTIONS(9750), 2, sym_test_operator, sym__special_character, - ACTIONS(10560), 3, + ACTIONS(9752), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4493), 9, + STATE(1678), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261740,47 +263632,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220669] = 18, + [222795] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8140), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8142), 1, + ACTIONS(3350), 1, anon_sym_DOLLAR, - ACTIONS(8146), 1, - anon_sym_DQUOTE, - ACTIONS(8150), 1, + ACTIONS(3356), 1, aux_sym_number_token1, - ACTIONS(8152), 1, + ACTIONS(3358), 1, aux_sym_number_token2, - ACTIONS(8154), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8156), 1, + ACTIONS(3362), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8158), 1, - anon_sym_BQUOTE, - ACTIONS(8160), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8170), 1, + ACTIONS(3372), 1, sym__brace_start, - ACTIONS(10564), 1, + ACTIONS(9758), 1, sym_word, - ACTIONS(10570), 1, + ACTIONS(9762), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9768), 1, + anon_sym_DQUOTE, + ACTIONS(9772), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9774), 1, + anon_sym_BQUOTE, + ACTIONS(9776), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9780), 1, sym__comment_word, - ACTIONS(8136), 2, + ACTIONS(9760), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8162), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10566), 2, + ACTIONS(9766), 2, sym_test_operator, sym__special_character, - ACTIONS(10568), 3, + ACTIONS(9778), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9770), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4526), 9, + STATE(4467), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261790,47 +263682,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220737] = 18, + [222863] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(264), 1, - aux_sym_number_token1, - ACTIONS(266), 1, - aux_sym_number_token2, - ACTIONS(270), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(284), 1, - sym__brace_start, - ACTIONS(1075), 1, + ACTIONS(8166), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1081), 1, + ACTIONS(8168), 1, + anon_sym_DOLLAR, + ACTIONS(8172), 1, anon_sym_DQUOTE, - ACTIONS(1085), 1, + ACTIONS(8176), 1, + aux_sym_number_token1, + ACTIONS(8178), 1, + aux_sym_number_token2, + ACTIONS(8180), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1087), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, + ACTIONS(8182), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8184), 1, anon_sym_BQUOTE, - ACTIONS(10428), 1, + ACTIONS(8186), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8196), 1, + sym__brace_start, + ACTIONS(9794), 1, sym_word, - ACTIONS(10434), 1, + ACTIONS(9802), 1, sym__comment_word, - ACTIONS(10572), 1, - anon_sym_DOLLAR, - ACTIONS(1073), 2, + ACTIONS(8162), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1089), 2, + ACTIONS(8188), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10430), 2, + ACTIONS(9798), 2, sym_test_operator, sym__special_character, - ACTIONS(10432), 3, + ACTIONS(9800), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2732), 9, + STATE(4487), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261840,47 +263732,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220805] = 18, + [222931] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 1, + ACTIONS(4080), 1, aux_sym_number_token1, - ACTIONS(2871), 1, + ACTIONS(4082), 1, aux_sym_number_token2, - ACTIONS(2875), 1, + ACTIONS(4086), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2885), 1, + ACTIONS(4096), 1, sym__brace_start, - ACTIONS(9940), 1, + ACTIONS(9982), 1, + sym_word, + ACTIONS(9986), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9944), 1, + ACTIONS(9992), 1, anon_sym_DQUOTE, - ACTIONS(9948), 1, + ACTIONS(9996), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9950), 1, + ACTIONS(9998), 1, anon_sym_BQUOTE, - ACTIONS(9952), 1, + ACTIONS(10000), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10382), 1, - sym_word, - ACTIONS(10388), 1, + ACTIONS(10004), 1, sym__comment_word, - ACTIONS(10574), 1, + ACTIONS(10638), 1, anon_sym_DOLLAR, - ACTIONS(9938), 2, + ACTIONS(9984), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9954), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10384), 2, + ACTIONS(9990), 2, sym_test_operator, sym__special_character, - ACTIONS(10386), 3, + ACTIONS(10002), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9994), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4404), 9, + STATE(4446), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261890,47 +263782,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220873] = 18, + [222999] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4151), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4157), 1, - anon_sym_DQUOTE, - ACTIONS(4161), 1, + ACTIONS(4080), 1, aux_sym_number_token1, - ACTIONS(4163), 1, + ACTIONS(4082), 1, aux_sym_number_token2, - ACTIONS(4165), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4167), 1, + ACTIONS(4086), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4169), 1, - anon_sym_BQUOTE, - ACTIONS(4171), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4181), 1, + ACTIONS(4096), 1, sym__brace_start, - ACTIONS(9502), 1, + ACTIONS(9982), 1, sym_word, - ACTIONS(9508), 1, + ACTIONS(9986), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9992), 1, + anon_sym_DQUOTE, + ACTIONS(9996), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9998), 1, + anon_sym_BQUOTE, + ACTIONS(10000), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10004), 1, sym__comment_word, - ACTIONS(10576), 1, + ACTIONS(10640), 1, anon_sym_DOLLAR, - ACTIONS(4149), 2, + ACTIONS(9984), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4173), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9504), 2, + ACTIONS(9990), 2, sym_test_operator, sym__special_character, - ACTIONS(9506), 3, + ACTIONS(10002), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9994), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2580), 9, + STATE(4446), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261940,47 +263832,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [220941] = 18, + [223067] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(264), 1, + ACTIONS(3171), 1, aux_sym_number_token1, - ACTIONS(266), 1, + ACTIONS(3173), 1, aux_sym_number_token2, - ACTIONS(270), 1, + ACTIONS(3177), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(284), 1, + ACTIONS(3187), 1, sym__brace_start, - ACTIONS(1075), 1, + ACTIONS(9176), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1081), 1, + ACTIONS(9180), 1, anon_sym_DQUOTE, - ACTIONS(1085), 1, + ACTIONS(9184), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1087), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, + ACTIONS(9186), 1, anon_sym_BQUOTE, - ACTIONS(10428), 1, + ACTIONS(9188), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10436), 1, sym_word, - ACTIONS(10434), 1, + ACTIONS(10442), 1, sym__comment_word, - ACTIONS(10578), 1, + ACTIONS(10642), 1, anon_sym_DOLLAR, - ACTIONS(1073), 2, + ACTIONS(9174), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1089), 2, + ACTIONS(9190), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10430), 2, + ACTIONS(10438), 2, sym_test_operator, sym__special_character, - ACTIONS(10432), 3, + ACTIONS(10440), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2732), 9, + STATE(1733), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -261990,97 +263882,153 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221009] = 18, - ACTIONS(3), 1, + [223135] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(4947), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4953), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, + anon_sym_LPAREN, + ACTIONS(9434), 1, + anon_sym_BANG, + ACTIONS(9440), 1, + anon_sym_TILDE, + ACTIONS(9442), 1, + anon_sym_DOLLAR, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(4957), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(4959), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(4961), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4963), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4965), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(4967), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4973), 1, - sym__brace_start, - ACTIONS(10228), 1, - sym_word, - ACTIONS(10234), 1, - sym__comment_word, - ACTIONS(10580), 1, + ACTIONS(10644), 1, + aux_sym__simple_variable_name_token1, + STATE(2776), 1, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9438), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2940), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [223209] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9338), 1, + anon_sym_LPAREN, + ACTIONS(9340), 1, + anon_sym_BANG, + ACTIONS(9346), 1, + anon_sym_TILDE, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(4945), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4969), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10230), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10232), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2590), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9350), 1, + anon_sym_DQUOTE, + ACTIONS(9352), 1, + aux_sym_number_token1, + ACTIONS(9354), 1, + aux_sym_number_token2, + ACTIONS(9356), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9358), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9360), 1, + anon_sym_BQUOTE, + ACTIONS(9362), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(10646), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3314), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [221077] = 18, + [223283] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 1, + ACTIONS(3171), 1, aux_sym_number_token1, - ACTIONS(2871), 1, + ACTIONS(3173), 1, aux_sym_number_token2, - ACTIONS(2875), 1, + ACTIONS(3177), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2885), 1, + ACTIONS(3187), 1, sym__brace_start, - ACTIONS(9940), 1, + ACTIONS(9176), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9944), 1, + ACTIONS(9180), 1, anon_sym_DQUOTE, - ACTIONS(9948), 1, + ACTIONS(9184), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9950), 1, + ACTIONS(9186), 1, anon_sym_BQUOTE, - ACTIONS(9952), 1, + ACTIONS(9188), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10382), 1, + ACTIONS(10436), 1, sym_word, - ACTIONS(10388), 1, + ACTIONS(10442), 1, sym__comment_word, - ACTIONS(10582), 1, + ACTIONS(10648), 1, anon_sym_DOLLAR, - ACTIONS(9938), 2, + ACTIONS(9174), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9954), 2, + ACTIONS(9190), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10384), 2, + ACTIONS(10438), 2, sym_test_operator, sym__special_character, - ACTIONS(10386), 3, + ACTIONS(10440), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4404), 9, + STATE(1733), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262090,50 +264038,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221145] = 21, + [223351] = 21, ACTIONS(71), 1, sym_comment, ACTIONS(3602), 1, sym_variable_name, - ACTIONS(9898), 1, + ACTIONS(9818), 1, anon_sym_LPAREN, - ACTIONS(9900), 1, + ACTIONS(9820), 1, anon_sym_BANG, - ACTIONS(9906), 1, + ACTIONS(9826), 1, anon_sym_TILDE, - ACTIONS(9908), 1, + ACTIONS(9828), 1, anon_sym_DOLLAR, - ACTIONS(9910), 1, + ACTIONS(9830), 1, anon_sym_DQUOTE, - ACTIONS(9912), 1, + ACTIONS(9832), 1, aux_sym_number_token1, - ACTIONS(9914), 1, + ACTIONS(9834), 1, aux_sym_number_token2, - ACTIONS(9916), 1, + ACTIONS(9836), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9918), 1, + ACTIONS(9838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9920), 1, + ACTIONS(9840), 1, anon_sym_BQUOTE, - ACTIONS(9922), 1, + ACTIONS(9842), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10584), 1, + ACTIONS(10650), 1, aux_sym__simple_variable_name_token1, - STATE(3359), 1, - sym__arithmetic_postfix_expression, - STATE(3361), 1, - sym__arithmetic_unary_expression, - STATE(3367), 1, - sym__arithmetic_ternary_expression, STATE(3375), 1, sym__arithmetic_binary_expression, - ACTIONS(9902), 2, + STATE(3378), 1, + sym__arithmetic_ternary_expression, + STATE(3407), 1, + sym__arithmetic_unary_expression, + STATE(3409), 1, + sym__arithmetic_postfix_expression, + ACTIONS(9822), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9904), 2, + ACTIONS(9824), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3262), 9, + STATE(3412), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -262143,47 +264091,150 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [221219] = 18, - ACTIONS(3), 1, + [223425] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(4151), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4157), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, + anon_sym_LPAREN, + ACTIONS(9434), 1, + anon_sym_BANG, + ACTIONS(9440), 1, + anon_sym_TILDE, + ACTIONS(9442), 1, + anon_sym_DOLLAR, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(4161), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(4163), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(4165), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4167), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4169), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(4171), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4181), 1, + ACTIONS(10652), 1, + aux_sym__simple_variable_name_token1, + STATE(2776), 1, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9438), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3437), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [223499] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3632), 1, + aux_sym_number_token1, + ACTIONS(3634), 1, + aux_sym_number_token2, + ACTIONS(3638), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3648), 1, sym__brace_start, - ACTIONS(9502), 1, + ACTIONS(10008), 1, sym_word, - ACTIONS(9508), 1, + ACTIONS(10012), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10018), 1, + anon_sym_DQUOTE, + ACTIONS(10022), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10024), 1, + anon_sym_BQUOTE, + ACTIONS(10026), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10030), 1, sym__comment_word, - ACTIONS(10586), 1, + ACTIONS(10654), 1, anon_sym_DOLLAR, - ACTIONS(4149), 2, + ACTIONS(10010), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4173), 2, + ACTIONS(10016), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10028), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9504), 2, + ACTIONS(10020), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(4300), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [223567] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3632), 1, + aux_sym_number_token1, + ACTIONS(3634), 1, + aux_sym_number_token2, + ACTIONS(3638), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3648), 1, + sym__brace_start, + ACTIONS(10008), 1, + sym_word, + ACTIONS(10012), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10018), 1, + anon_sym_DQUOTE, + ACTIONS(10022), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10024), 1, + anon_sym_BQUOTE, + ACTIONS(10026), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10030), 1, + sym__comment_word, + ACTIONS(10656), 1, + anon_sym_DOLLAR, + ACTIONS(10010), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10016), 2, sym_test_operator, sym__special_character, - ACTIONS(9506), 3, + ACTIONS(10028), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10020), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2580), 9, + STATE(4300), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262193,47 +264244,101 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221287] = 18, - ACTIONS(3), 1, + [223635] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(4947), 1, + ACTIONS(8090), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4953), 1, + ACTIONS(8092), 1, + anon_sym_DOLLAR, + ACTIONS(8096), 1, anon_sym_DQUOTE, - ACTIONS(4957), 1, + ACTIONS(8100), 1, aux_sym_number_token1, - ACTIONS(4959), 1, + ACTIONS(8102), 1, aux_sym_number_token2, - ACTIONS(4961), 1, + ACTIONS(8104), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4963), 1, + ACTIONS(8106), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4965), 1, + ACTIONS(8108), 1, anon_sym_BQUOTE, - ACTIONS(4967), 1, + ACTIONS(8110), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4973), 1, + ACTIONS(8120), 1, sym__brace_start, - ACTIONS(10228), 1, + ACTIONS(8264), 1, + sym__special_character, + ACTIONS(10658), 1, sym_word, - ACTIONS(10234), 1, - sym__comment_word, - ACTIONS(10588), 1, + ACTIONS(10662), 1, + sym_test_operator, + STATE(1790), 1, + aux_sym__literal_repeat1, + STATE(1938), 1, + sym_concatenation, + ACTIONS(8086), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8112), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10660), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(1654), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [223707] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8090), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8092), 1, anon_sym_DOLLAR, - ACTIONS(4945), 2, + ACTIONS(8096), 1, + anon_sym_DQUOTE, + ACTIONS(8100), 1, + aux_sym_number_token1, + ACTIONS(8102), 1, + aux_sym_number_token2, + ACTIONS(8104), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8106), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8108), 1, + anon_sym_BQUOTE, + ACTIONS(8110), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8120), 1, + sym__brace_start, + ACTIONS(8264), 1, + sym__special_character, + ACTIONS(10664), 1, + sym_word, + ACTIONS(10668), 1, + sym_test_operator, + STATE(1795), 1, + aux_sym__literal_repeat1, + STATE(1947), 1, + sym_concatenation, + ACTIONS(8086), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4969), 2, + ACTIONS(8112), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10230), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10232), 3, - sym__bare_dollar, + ACTIONS(10666), 2, sym_raw_string, sym_ansi_c_string, - STATE(2590), 9, + STATE(1664), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262243,49 +264348,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221355] = 20, + [223779] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7996), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7998), 1, + ACTIONS(4074), 1, anon_sym_DOLLAR, - ACTIONS(8000), 1, - sym__special_character, - ACTIONS(8002), 1, - anon_sym_DQUOTE, - ACTIONS(8006), 1, + ACTIONS(4080), 1, aux_sym_number_token1, - ACTIONS(8008), 1, + ACTIONS(4082), 1, aux_sym_number_token2, - ACTIONS(8010), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8012), 1, + ACTIONS(4086), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8014), 1, + ACTIONS(4096), 1, + sym__brace_start, + ACTIONS(9986), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9992), 1, + anon_sym_DQUOTE, + ACTIONS(9996), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9998), 1, anon_sym_BQUOTE, - ACTIONS(8016), 1, + ACTIONS(10000), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8026), 1, - sym__brace_start, - ACTIONS(10590), 1, + ACTIONS(10670), 1, sym_word, - ACTIONS(10594), 1, + ACTIONS(10672), 1, + sym__special_character, + ACTIONS(10676), 1, sym_test_operator, - STATE(3539), 1, + STATE(4505), 1, aux_sym__literal_repeat1, - STATE(3547), 1, + STATE(4997), 1, sym_concatenation, - ACTIONS(7992), 2, + ACTIONS(9984), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8018), 2, + ACTIONS(10002), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10592), 2, + ACTIONS(10674), 2, sym_raw_string, sym_ansi_c_string, - STATE(3467), 9, + STATE(4800), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262295,47 +264400,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221427] = 18, - ACTIONS(3), 1, + [223851] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(4074), 1, + anon_sym_DOLLAR, + ACTIONS(4080), 1, aux_sym_number_token1, - ACTIONS(3795), 1, + ACTIONS(4082), 1, aux_sym_number_token2, - ACTIONS(3799), 1, + ACTIONS(4086), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3809), 1, + ACTIONS(4096), 1, sym__brace_start, - ACTIONS(9636), 1, + ACTIONS(9986), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9640), 1, + ACTIONS(9992), 1, anon_sym_DQUOTE, - ACTIONS(9644), 1, + ACTIONS(9996), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9646), 1, + ACTIONS(9998), 1, anon_sym_BQUOTE, - ACTIONS(9648), 1, + ACTIONS(10000), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9872), 1, + ACTIONS(10672), 1, + sym__special_character, + ACTIONS(10678), 1, sym_word, - ACTIONS(9880), 1, - sym__comment_word, - ACTIONS(10596), 1, - anon_sym_DOLLAR, - ACTIONS(9634), 2, + ACTIONS(10682), 1, + sym_test_operator, + STATE(4527), 1, + aux_sym__literal_repeat1, + STATE(4876), 1, + sym_concatenation, + ACTIONS(9984), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9650), 2, + ACTIONS(10002), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9876), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9878), 3, - sym__bare_dollar, + ACTIONS(10680), 2, sym_raw_string, sym_ansi_c_string, - STATE(4337), 9, + STATE(4804), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262345,49 +264452,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221495] = 20, + [223923] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(7996), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7998), 1, + ACTIONS(3626), 1, anon_sym_DOLLAR, - ACTIONS(8000), 1, - sym__special_character, - ACTIONS(8002), 1, - anon_sym_DQUOTE, - ACTIONS(8006), 1, + ACTIONS(3632), 1, aux_sym_number_token1, - ACTIONS(8008), 1, + ACTIONS(3634), 1, aux_sym_number_token2, - ACTIONS(8010), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8012), 1, + ACTIONS(3638), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8014), 1, + ACTIONS(3648), 1, + sym__brace_start, + ACTIONS(10012), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10018), 1, + anon_sym_DQUOTE, + ACTIONS(10022), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10024), 1, anon_sym_BQUOTE, - ACTIONS(8016), 1, + ACTIONS(10026), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8026), 1, - sym__brace_start, - ACTIONS(10598), 1, + ACTIONS(10684), 1, sym_word, - ACTIONS(10602), 1, + ACTIONS(10686), 1, + sym__special_character, + ACTIONS(10690), 1, sym_test_operator, - STATE(3542), 1, + STATE(4364), 1, aux_sym__literal_repeat1, - STATE(3569), 1, + STATE(4771), 1, sym_concatenation, - ACTIONS(7992), 2, + ACTIONS(10010), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8018), 2, + ACTIONS(10028), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10600), 2, + ACTIONS(10688), 2, sym_raw_string, sym_ansi_c_string, - STATE(3456), 9, + STATE(4581), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262397,153 +264504,99 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221567] = 21, + [223995] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(3626), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, - anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(3632), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(3634), 1, aux_sym_number_token2, - ACTIONS(9296), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(3638), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, - anon_sym_BQUOTE, - ACTIONS(9302), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10604), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2880), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [221641] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9364), 1, - anon_sym_LPAREN, - ACTIONS(9366), 1, - anon_sym_BANG, - ACTIONS(9372), 1, - anon_sym_TILDE, - ACTIONS(9374), 1, - anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(3648), 1, + sym__brace_start, + ACTIONS(10012), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10018), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, - aux_sym_number_token1, - ACTIONS(9380), 1, - aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(10022), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(10024), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(10026), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(10606), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, - sym__arithmetic_unary_expression, - STATE(3400), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9370), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3426), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(10686), 1, + sym__special_character, + ACTIONS(10692), 1, + sym_word, + ACTIONS(10696), 1, + sym_test_operator, + STATE(4340), 1, + aux_sym__literal_repeat1, + STATE(4679), 1, + sym_concatenation, + ACTIONS(10010), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10028), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10694), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4583), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [221715] = 18, + sym_process_substitution, + [224067] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7958), 1, + ACTIONS(8573), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7964), 1, + ACTIONS(8579), 1, anon_sym_DQUOTE, - ACTIONS(7968), 1, + ACTIONS(8583), 1, aux_sym_number_token1, - ACTIONS(7970), 1, + ACTIONS(8585), 1, aux_sym_number_token2, - ACTIONS(7972), 1, + ACTIONS(8587), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7974), 1, + ACTIONS(8589), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7976), 1, + ACTIONS(8591), 1, anon_sym_BQUOTE, - ACTIONS(7978), 1, + ACTIONS(8593), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7988), 1, + ACTIONS(8599), 1, sym__brace_start, - ACTIONS(9860), 1, + ACTIONS(10472), 1, sym_word, - ACTIONS(9868), 1, + ACTIONS(10478), 1, sym__comment_word, - ACTIONS(10608), 1, + ACTIONS(10698), 1, anon_sym_DOLLAR, - ACTIONS(7954), 2, + ACTIONS(8569), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7980), 2, + ACTIONS(8595), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9864), 2, + ACTIONS(10474), 2, sym_test_operator, sym__special_character, - ACTIONS(9866), 3, + ACTIONS(10476), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4357), 9, + STATE(5126), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262553,47 +264606,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221783] = 18, - ACTIONS(3), 1, + [224135] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(191), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(201), 1, + ACTIONS(1494), 1, + anon_sym_DOLLAR, + ACTIONS(1500), 1, aux_sym_number_token1, - ACTIONS(203), 1, + ACTIONS(1502), 1, aux_sym_number_token2, - ACTIONS(205), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(207), 1, + ACTIONS(1506), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(209), 1, + ACTIONS(1518), 1, + sym__brace_start, + ACTIONS(9066), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9070), 1, + anon_sym_DQUOTE, + ACTIONS(9074), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9076), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(9078), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(221), 1, - sym__brace_start, - ACTIONS(10406), 1, + ACTIONS(9262), 1, + sym__special_character, + ACTIONS(10700), 1, sym_word, - ACTIONS(10412), 1, - sym__comment_word, - ACTIONS(10610), 1, - anon_sym_DOLLAR, - ACTIONS(189), 2, + ACTIONS(10704), 1, + sym_test_operator, + STATE(1453), 1, + aux_sym__literal_repeat1, + STATE(1660), 1, + sym_concatenation, + ACTIONS(9064), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(213), 2, + ACTIONS(9080), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10408), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10410), 3, - sym__bare_dollar, + ACTIONS(10702), 2, sym_raw_string, sym_ansi_c_string, - STATE(513), 9, + STATE(1281), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262603,100 +264658,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221851] = 21, + [224207] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(1494), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, - anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(1500), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(1502), 1, aux_sym_number_token2, - ACTIONS(9296), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(1506), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, - anon_sym_BQUOTE, - ACTIONS(9302), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10612), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2898), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [221925] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1043), 1, + ACTIONS(1518), 1, + sym__brace_start, + ACTIONS(9066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1049), 1, + ACTIONS(9070), 1, anon_sym_DQUOTE, - ACTIONS(1053), 1, - aux_sym_number_token1, - ACTIONS(1055), 1, - aux_sym_number_token2, - ACTIONS(1057), 1, + ACTIONS(9074), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1059), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1061), 1, + ACTIONS(9076), 1, anon_sym_BQUOTE, - ACTIONS(1063), 1, + ACTIONS(9078), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1071), 1, - sym__brace_start, - ACTIONS(9706), 1, + ACTIONS(9262), 1, + sym__special_character, + ACTIONS(10706), 1, sym_word, - ACTIONS(9712), 1, - sym__comment_word, - ACTIONS(10614), 1, - anon_sym_DOLLAR, - ACTIONS(1041), 2, + ACTIONS(10710), 1, + sym_test_operator, + STATE(1455), 1, + aux_sym__literal_repeat1, + STATE(1671), 1, + sym_concatenation, + ACTIONS(9064), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1065), 2, + ACTIONS(9080), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9708), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9710), 3, - sym__bare_dollar, + ACTIONS(10708), 2, sym_raw_string, sym_ansi_c_string, - STATE(2075), 9, + STATE(1283), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262706,47 +264710,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [221993] = 18, + [224279] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7958), 1, + ACTIONS(8573), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7964), 1, + ACTIONS(8579), 1, anon_sym_DQUOTE, - ACTIONS(7968), 1, + ACTIONS(8583), 1, aux_sym_number_token1, - ACTIONS(7970), 1, + ACTIONS(8585), 1, aux_sym_number_token2, - ACTIONS(7972), 1, + ACTIONS(8587), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7974), 1, + ACTIONS(8589), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7976), 1, + ACTIONS(8591), 1, anon_sym_BQUOTE, - ACTIONS(7978), 1, + ACTIONS(8593), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7988), 1, + ACTIONS(8599), 1, sym__brace_start, - ACTIONS(9860), 1, + ACTIONS(10472), 1, sym_word, - ACTIONS(9868), 1, + ACTIONS(10478), 1, sym__comment_word, - ACTIONS(10616), 1, + ACTIONS(10712), 1, anon_sym_DOLLAR, - ACTIONS(7954), 2, + ACTIONS(8569), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7980), 2, + ACTIONS(8595), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9864), 2, + ACTIONS(10474), 2, sym_test_operator, sym__special_character, - ACTIONS(9866), 3, + ACTIONS(10476), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4357), 9, + STATE(5126), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -262756,50 +264760,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222061] = 21, + [224347] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(10618), 1, + ACTIONS(10714), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3316), 9, + STATE(2846), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -262809,50 +264813,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [222135] = 21, + [224421] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10620), 1, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(10716), 1, aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(3180), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2764), 9, + STATE(3249), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -262862,150 +264866,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [222209] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3401), 1, - aux_sym_number_token1, - ACTIONS(3403), 1, - aux_sym_number_token2, - ACTIONS(3407), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3417), 1, - sym__brace_start, - ACTIONS(8926), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8930), 1, - anon_sym_DQUOTE, - ACTIONS(8934), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8936), 1, - anon_sym_BQUOTE, - ACTIONS(8938), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9696), 1, - sym_word, - ACTIONS(9704), 1, - sym__comment_word, - ACTIONS(10622), 1, - anon_sym_DOLLAR, - ACTIONS(8924), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8940), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9700), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9702), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1851), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [222277] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3401), 1, - aux_sym_number_token1, - ACTIONS(3403), 1, - aux_sym_number_token2, - ACTIONS(3407), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3417), 1, - sym__brace_start, - ACTIONS(8926), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8930), 1, - anon_sym_DQUOTE, - ACTIONS(8934), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8936), 1, - anon_sym_BQUOTE, - ACTIONS(8938), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9696), 1, - sym_word, - ACTIONS(9704), 1, - sym__comment_word, - ACTIONS(10624), 1, - anon_sym_DOLLAR, - ACTIONS(8924), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8940), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9700), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9702), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1851), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [222345] = 21, + [224495] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(3602), 1, + sym_variable_name, + ACTIONS(4030), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(9818), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9820), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9826), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9828), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9830), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9832), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9834), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9836), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9840), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9842), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(10626), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, + STATE(3375), 1, sym__arithmetic_binary_expression, - STATE(3396), 1, + STATE(3378), 1, sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(3407), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(3409), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + ACTIONS(9822), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9824), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3315), 9, + STATE(3271), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -263015,50 +264919,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [222419] = 21, + [224569] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3123), 1, sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10628), 1, + ACTIONS(10718), 1, aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2765), 9, + STATE(3303), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -263068,47 +264972,47 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [222493] = 18, + [224643] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3616), 1, + ACTIONS(3674), 1, aux_sym_number_token1, - ACTIONS(3618), 1, + ACTIONS(3676), 1, aux_sym_number_token2, - ACTIONS(3622), 1, + ACTIONS(3680), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3692), 1, sym__brace_start, - ACTIONS(8850), 1, + ACTIONS(8984), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8854), 1, + ACTIONS(8988), 1, anon_sym_DQUOTE, - ACTIONS(8858), 1, + ACTIONS(8992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8860), 1, + ACTIONS(8994), 1, anon_sym_BQUOTE, - ACTIONS(8862), 1, + ACTIONS(8996), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9516), 1, + ACTIONS(10034), 1, sym_word, - ACTIONS(9524), 1, + ACTIONS(10042), 1, sym__comment_word, - ACTIONS(10630), 1, + ACTIONS(10720), 1, anon_sym_DOLLAR, - ACTIONS(8848), 2, + ACTIONS(8982), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8864), 2, + ACTIONS(8998), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9520), 2, + ACTIONS(10038), 2, sym_test_operator, sym__special_character, - ACTIONS(9522), 3, + ACTIONS(10040), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2210), 9, + STATE(4640), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263118,47 +265022,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222561] = 18, + [224711] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3616), 1, + ACTIONS(3674), 1, aux_sym_number_token1, - ACTIONS(3618), 1, + ACTIONS(3676), 1, aux_sym_number_token2, - ACTIONS(3622), 1, + ACTIONS(3680), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3632), 1, + ACTIONS(3692), 1, sym__brace_start, - ACTIONS(8850), 1, + ACTIONS(8984), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8854), 1, + ACTIONS(8988), 1, anon_sym_DQUOTE, - ACTIONS(8858), 1, + ACTIONS(8992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8860), 1, + ACTIONS(8994), 1, anon_sym_BQUOTE, - ACTIONS(8862), 1, + ACTIONS(8996), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9516), 1, + ACTIONS(10034), 1, sym_word, - ACTIONS(9524), 1, + ACTIONS(10042), 1, sym__comment_word, - ACTIONS(10632), 1, + ACTIONS(10722), 1, anon_sym_DOLLAR, - ACTIONS(8848), 2, + ACTIONS(8982), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8864), 2, + ACTIONS(8998), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9520), 2, + ACTIONS(10038), 2, sym_test_operator, sym__special_character, - ACTIONS(9522), 3, + ACTIONS(10040), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2210), 9, + STATE(4640), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263168,206 +265072,151 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222629] = 21, - ACTIONS(71), 1, + [224779] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3602), 1, - sym_variable_name, - ACTIONS(9898), 1, - anon_sym_LPAREN, - ACTIONS(9900), 1, - anon_sym_BANG, - ACTIONS(9906), 1, - anon_sym_TILDE, - ACTIONS(9908), 1, + ACTIONS(10724), 1, + sym_word, + ACTIONS(10728), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10730), 1, anon_sym_DOLLAR, - ACTIONS(9910), 1, + ACTIONS(10734), 1, anon_sym_DQUOTE, - ACTIONS(9912), 1, + ACTIONS(10738), 1, aux_sym_number_token1, - ACTIONS(9914), 1, + ACTIONS(10740), 1, aux_sym_number_token2, - ACTIONS(9916), 1, + ACTIONS(10742), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9918), 1, + ACTIONS(10744), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9920), 1, + ACTIONS(10746), 1, anon_sym_BQUOTE, - ACTIONS(9922), 1, + ACTIONS(10748), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10634), 1, - aux_sym__simple_variable_name_token1, - STATE(3359), 1, - sym__arithmetic_postfix_expression, - STATE(3361), 1, - sym__arithmetic_unary_expression, - STATE(3367), 1, - sym__arithmetic_ternary_expression, - STATE(3375), 1, - sym__arithmetic_binary_expression, - ACTIONS(9902), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9904), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3408), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(10752), 1, + sym__comment_word, + ACTIONS(10754), 1, + sym__brace_start, + ACTIONS(10726), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10732), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10750), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10736), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(6232), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [222703] = 21, + sym_process_substitution, + [224847] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, - anon_sym_LPAREN, - ACTIONS(9366), 1, - anon_sym_BANG, - ACTIONS(9372), 1, - anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(8090), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8092), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(8094), 1, + sym__special_character, + ACTIONS(8096), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(8100), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(8102), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(8104), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(8106), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(8108), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(8110), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(10636), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, - sym__arithmetic_unary_expression, - STATE(3400), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9370), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3166), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(8120), 1, + sym__brace_start, + ACTIONS(10756), 1, + sym_word, + ACTIONS(10760), 1, + sym_test_operator, + STATE(1790), 1, + aux_sym__literal_repeat1, + STATE(1938), 1, + sym_concatenation, + ACTIONS(8086), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8112), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10758), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2330), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [222777] = 21, + sym_process_substitution, + [224919] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, - anon_sym_DOLLAR, - ACTIONS(9290), 1, - anon_sym_DQUOTE, - ACTIONS(9292), 1, - aux_sym_number_token1, - ACTIONS(9294), 1, - aux_sym_number_token2, - ACTIONS(9296), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, - anon_sym_BQUOTE, - ACTIONS(9302), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10638), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2766), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [222851] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 1, + ACTIONS(8090), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(713), 1, + ACTIONS(8092), 1, + anon_sym_DOLLAR, + ACTIONS(8094), 1, + sym__special_character, + ACTIONS(8096), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(8100), 1, aux_sym_number_token1, - ACTIONS(719), 1, + ACTIONS(8102), 1, aux_sym_number_token2, - ACTIONS(721), 1, + ACTIONS(8104), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(723), 1, + ACTIONS(8106), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(725), 1, + ACTIONS(8108), 1, anon_sym_BQUOTE, - ACTIONS(727), 1, + ACTIONS(8110), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(737), 1, + ACTIONS(8120), 1, sym__brace_start, - ACTIONS(10464), 1, + ACTIONS(10762), 1, sym_word, - ACTIONS(10470), 1, - sym__comment_word, - ACTIONS(10640), 1, - anon_sym_DOLLAR, - ACTIONS(705), 2, + ACTIONS(10766), 1, + sym_test_operator, + STATE(1795), 1, + aux_sym__literal_repeat1, + STATE(1947), 1, + sym_concatenation, + ACTIONS(8086), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(729), 2, + ACTIONS(8112), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10466), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10468), 3, - sym__bare_dollar, + ACTIONS(10764), 2, sym_raw_string, sym_ansi_c_string, - STATE(999), 9, + STATE(2333), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263377,206 +265226,101 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [222919] = 21, + [224991] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, - anon_sym_LPAREN, - ACTIONS(9366), 1, - anon_sym_BANG, - ACTIONS(9372), 1, - anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(4074), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, - anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(4080), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(4082), 1, aux_sym_number_token2, - ACTIONS(9382), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(4086), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, - anon_sym_BQUOTE, - ACTIONS(9388), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(10642), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, - sym__arithmetic_unary_expression, - STATE(3400), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9370), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3309), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [222993] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, - anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(4096), 1, + sym__brace_start, + ACTIONS(9986), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9992), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, - aux_sym_number_token1, - ACTIONS(9294), 1, - aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9996), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9998), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(10000), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10644), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2767), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(10768), 1, + sym_word, + ACTIONS(10770), 1, + sym__special_character, + ACTIONS(10774), 1, + sym_test_operator, + STATE(4505), 1, + aux_sym__literal_repeat1, + STATE(4997), 1, + sym_concatenation, + ACTIONS(9984), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10002), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10772), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(5007), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [223067] = 21, + sym_process_substitution, + [225063] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(4074), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, - anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(4080), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(4082), 1, aux_sym_number_token2, - ACTIONS(9296), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(4086), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, - anon_sym_BQUOTE, - ACTIONS(9302), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10646), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3401), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [223141] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 1, + ACTIONS(4096), 1, + sym__brace_start, + ACTIONS(9986), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(713), 1, + ACTIONS(9992), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, - aux_sym_number_token1, - ACTIONS(719), 1, - aux_sym_number_token2, - ACTIONS(721), 1, + ACTIONS(9996), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(723), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(725), 1, + ACTIONS(9998), 1, anon_sym_BQUOTE, - ACTIONS(727), 1, + ACTIONS(10000), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(737), 1, - sym__brace_start, - ACTIONS(10464), 1, + ACTIONS(10770), 1, + sym__special_character, + ACTIONS(10776), 1, sym_word, - ACTIONS(10470), 1, - sym__comment_word, - ACTIONS(10648), 1, - anon_sym_DOLLAR, - ACTIONS(705), 2, + ACTIONS(10780), 1, + sym_test_operator, + STATE(4527), 1, + aux_sym__literal_repeat1, + STATE(4876), 1, + sym_concatenation, + ACTIONS(9984), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(729), 2, + ACTIONS(10002), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10466), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10468), 3, - sym__bare_dollar, + ACTIONS(10778), 2, sym_raw_string, sym_ansi_c_string, - STATE(999), 9, + STATE(5011), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263586,47 +265330,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223209] = 18, - ACTIONS(3), 1, + [225135] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3737), 1, + ACTIONS(3626), 1, + anon_sym_DOLLAR, + ACTIONS(3632), 1, aux_sym_number_token1, - ACTIONS(3739), 1, + ACTIONS(3634), 1, aux_sym_number_token2, - ACTIONS(3743), 1, + ACTIONS(3638), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3755), 1, + ACTIONS(3648), 1, sym__brace_start, - ACTIONS(8820), 1, + ACTIONS(10012), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8824), 1, + ACTIONS(10018), 1, anon_sym_DQUOTE, - ACTIONS(8828), 1, + ACTIONS(10022), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8830), 1, + ACTIONS(10024), 1, anon_sym_BQUOTE, - ACTIONS(8832), 1, + ACTIONS(10026), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9412), 1, - sym_word, - ACTIONS(9420), 1, - sym__comment_word, - ACTIONS(10650), 1, - anon_sym_DOLLAR, - ACTIONS(8818), 2, + ACTIONS(10782), 1, + sym_word, + ACTIONS(10784), 1, + sym__special_character, + ACTIONS(10788), 1, + sym_test_operator, + STATE(4364), 1, + aux_sym__literal_repeat1, + STATE(4771), 1, + sym_concatenation, + ACTIONS(10010), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8834), 2, + ACTIONS(10028), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9416), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9418), 3, - sym__bare_dollar, + ACTIONS(10786), 2, sym_raw_string, sym_ansi_c_string, - STATE(4810), 9, + STATE(4836), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263636,47 +265382,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223277] = 18, - ACTIONS(3), 1, + [225207] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1043), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1049), 1, - anon_sym_DQUOTE, - ACTIONS(1053), 1, + ACTIONS(3626), 1, + anon_sym_DOLLAR, + ACTIONS(3632), 1, aux_sym_number_token1, - ACTIONS(1055), 1, + ACTIONS(3634), 1, aux_sym_number_token2, - ACTIONS(1057), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1059), 1, + ACTIONS(3638), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1061), 1, + ACTIONS(3648), 1, + sym__brace_start, + ACTIONS(10012), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10018), 1, + anon_sym_DQUOTE, + ACTIONS(10022), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10024), 1, anon_sym_BQUOTE, - ACTIONS(1063), 1, + ACTIONS(10026), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1071), 1, - sym__brace_start, - ACTIONS(9706), 1, + ACTIONS(10784), 1, + sym__special_character, + ACTIONS(10790), 1, sym_word, - ACTIONS(9712), 1, - sym__comment_word, - ACTIONS(10652), 1, - anon_sym_DOLLAR, - ACTIONS(1041), 2, + ACTIONS(10794), 1, + sym_test_operator, + STATE(4340), 1, + aux_sym__literal_repeat1, + STATE(4679), 1, + sym_concatenation, + ACTIONS(10010), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1065), 2, + ACTIONS(10028), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9708), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9710), 3, - sym__bare_dollar, + ACTIONS(10792), 2, sym_raw_string, sym_ansi_c_string, - STATE(2075), 9, + STATE(4838), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263686,47 +265434,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223345] = 18, - ACTIONS(3), 1, + [225279] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(191), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(201), 1, + ACTIONS(1494), 1, + anon_sym_DOLLAR, + ACTIONS(1500), 1, aux_sym_number_token1, - ACTIONS(203), 1, + ACTIONS(1502), 1, aux_sym_number_token2, - ACTIONS(205), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(207), 1, + ACTIONS(1506), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(209), 1, + ACTIONS(1518), 1, + sym__brace_start, + ACTIONS(9066), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9070), 1, + anon_sym_DQUOTE, + ACTIONS(9074), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9076), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(9078), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(221), 1, - sym__brace_start, - ACTIONS(10406), 1, + ACTIONS(9168), 1, + sym__special_character, + ACTIONS(10796), 1, sym_word, - ACTIONS(10412), 1, - sym__comment_word, - ACTIONS(10654), 1, - anon_sym_DOLLAR, - ACTIONS(189), 2, + ACTIONS(10800), 1, + sym_test_operator, + STATE(1453), 1, + aux_sym__literal_repeat1, + STATE(1660), 1, + sym_concatenation, + ACTIONS(9064), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(213), 2, + ACTIONS(9080), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10408), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10410), 3, - sym__bare_dollar, + ACTIONS(10798), 2, sym_raw_string, sym_ansi_c_string, - STATE(513), 9, + STATE(1927), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263736,47 +265486,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223413] = 18, - ACTIONS(3), 1, + [225351] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3737), 1, + ACTIONS(1494), 1, + anon_sym_DOLLAR, + ACTIONS(1500), 1, aux_sym_number_token1, - ACTIONS(3739), 1, + ACTIONS(1502), 1, aux_sym_number_token2, - ACTIONS(3743), 1, + ACTIONS(1506), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3755), 1, + ACTIONS(1518), 1, sym__brace_start, - ACTIONS(8820), 1, + ACTIONS(9066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8824), 1, + ACTIONS(9070), 1, anon_sym_DQUOTE, - ACTIONS(8828), 1, + ACTIONS(9074), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8830), 1, + ACTIONS(9076), 1, anon_sym_BQUOTE, - ACTIONS(8832), 1, + ACTIONS(9078), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9412), 1, + ACTIONS(9168), 1, + sym__special_character, + ACTIONS(10802), 1, sym_word, - ACTIONS(9420), 1, - sym__comment_word, - ACTIONS(10656), 1, - anon_sym_DOLLAR, - ACTIONS(8818), 2, + ACTIONS(10806), 1, + sym_test_operator, + STATE(1455), 1, + aux_sym__literal_repeat1, + STATE(1671), 1, + sym_concatenation, + ACTIONS(9064), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8834), 2, + ACTIONS(9080), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9416), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9418), 3, - sym__bare_dollar, + ACTIONS(10804), 2, sym_raw_string, sym_ansi_c_string, - STATE(4810), 9, + STATE(1838), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263786,47 +265538,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223481] = 18, + [225423] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(4002), 1, aux_sym_number_token1, - ACTIONS(3795), 1, + ACTIONS(4004), 1, aux_sym_number_token2, - ACTIONS(3799), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3809), 1, + ACTIONS(4018), 1, sym__brace_start, - ACTIONS(9636), 1, + ACTIONS(8820), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9640), 1, + ACTIONS(8824), 1, anon_sym_DQUOTE, - ACTIONS(9644), 1, + ACTIONS(8828), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9646), 1, + ACTIONS(8830), 1, anon_sym_BQUOTE, - ACTIONS(9648), 1, + ACTIONS(8832), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9872), 1, + ACTIONS(10046), 1, sym_word, - ACTIONS(9880), 1, + ACTIONS(10054), 1, sym__comment_word, - ACTIONS(10658), 1, + ACTIONS(10808), 1, anon_sym_DOLLAR, - ACTIONS(9634), 2, + ACTIONS(8818), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9650), 2, + ACTIONS(8834), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9876), 2, + ACTIONS(10050), 2, sym_test_operator, sym__special_character, - ACTIONS(9878), 3, + ACTIONS(10052), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4337), 9, + STATE(1951), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263836,50 +265588,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223549] = 21, + [225491] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(3552), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(10660), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3308), 9, + STATE(2876), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -263889,50 +265641,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [223623] = 21, + [225565] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10662), 1, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(10810), 1, aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(3180), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2768), 9, + STATE(3419), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -263942,47 +265694,47 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [223697] = 18, + [225639] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(4002), 1, aux_sym_number_token1, - ACTIONS(3795), 1, + ACTIONS(4004), 1, aux_sym_number_token2, - ACTIONS(3799), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3809), 1, + ACTIONS(4018), 1, sym__brace_start, - ACTIONS(9636), 1, + ACTIONS(8820), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9640), 1, + ACTIONS(8824), 1, anon_sym_DQUOTE, - ACTIONS(9644), 1, + ACTIONS(8828), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9646), 1, + ACTIONS(8830), 1, anon_sym_BQUOTE, - ACTIONS(9648), 1, + ACTIONS(8832), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9872), 1, + ACTIONS(10046), 1, sym_word, - ACTIONS(9880), 1, + ACTIONS(10054), 1, sym__comment_word, - ACTIONS(10664), 1, + ACTIONS(10812), 1, anon_sym_DOLLAR, - ACTIONS(9634), 2, + ACTIONS(8818), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9650), 2, + ACTIONS(8834), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9876), 2, + ACTIONS(10050), 2, sym_test_operator, sym__special_character, - ACTIONS(9878), 3, + ACTIONS(10052), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4337), 9, + STATE(1951), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -263992,100 +265744,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223765] = 21, + [225707] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, - anon_sym_LPAREN, - ACTIONS(9366), 1, - anon_sym_BANG, - ACTIONS(9372), 1, - anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(4074), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, - anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(4080), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(4082), 1, aux_sym_number_token2, - ACTIONS(9382), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, - anon_sym_BQUOTE, - ACTIONS(9388), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(10666), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, - sym__arithmetic_unary_expression, - STATE(3400), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9370), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3304), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [223839] = 18, - ACTIONS(3), 1, - sym_comment, ACTIONS(4086), 1, - aux_sym_number_token1, - ACTIONS(4088), 1, - aux_sym_number_token2, - ACTIONS(4092), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4102), 1, + ACTIONS(4096), 1, sym__brace_start, - ACTIONS(9306), 1, - sym_word, - ACTIONS(9310), 1, + ACTIONS(9986), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9316), 1, + ACTIONS(9992), 1, anon_sym_DQUOTE, - ACTIONS(9320), 1, + ACTIONS(9996), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9322), 1, + ACTIONS(9998), 1, anon_sym_BQUOTE, - ACTIONS(9324), 1, + ACTIONS(10000), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9328), 1, - sym__comment_word, - ACTIONS(10668), 1, - anon_sym_DOLLAR, - ACTIONS(9308), 2, + ACTIONS(10814), 1, + sym_word, + ACTIONS(10816), 1, + sym__special_character, + ACTIONS(10820), 1, + sym_test_operator, + STATE(4505), 1, + aux_sym__literal_repeat1, + STATE(4997), 1, + sym_concatenation, + ACTIONS(9984), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9314), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9326), 2, + ACTIONS(10002), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9318), 3, - sym__bare_dollar, + ACTIONS(10818), 2, sym_raw_string, sym_ansi_c_string, - STATE(4566), 9, + STATE(4850), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264095,47 +265796,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223907] = 18, - ACTIONS(3), 1, + [225779] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(4086), 1, + ACTIONS(4074), 1, + anon_sym_DOLLAR, + ACTIONS(4080), 1, aux_sym_number_token1, - ACTIONS(4088), 1, + ACTIONS(4082), 1, aux_sym_number_token2, - ACTIONS(4092), 1, + ACTIONS(4086), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4102), 1, + ACTIONS(4096), 1, sym__brace_start, - ACTIONS(9306), 1, - sym_word, - ACTIONS(9310), 1, + ACTIONS(9986), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9316), 1, + ACTIONS(9992), 1, anon_sym_DQUOTE, - ACTIONS(9320), 1, + ACTIONS(9996), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9322), 1, + ACTIONS(9998), 1, anon_sym_BQUOTE, - ACTIONS(9324), 1, + ACTIONS(10000), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9328), 1, - sym__comment_word, - ACTIONS(10670), 1, - anon_sym_DOLLAR, - ACTIONS(9308), 2, + ACTIONS(10816), 1, + sym__special_character, + ACTIONS(10822), 1, + sym_word, + ACTIONS(10826), 1, + sym_test_operator, + STATE(4527), 1, + aux_sym__literal_repeat1, + STATE(4876), 1, + sym_concatenation, + ACTIONS(9984), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9314), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9326), 2, + ACTIONS(10002), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9318), 3, - sym__bare_dollar, + ACTIONS(10824), 2, sym_raw_string, sym_ansi_c_string, - STATE(4566), 9, + STATE(4854), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264145,153 +265848,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [223975] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, - anon_sym_DOLLAR, - ACTIONS(9290), 1, - anon_sym_DQUOTE, - ACTIONS(9292), 1, - aux_sym_number_token1, - ACTIONS(9294), 1, - aux_sym_number_token2, - ACTIONS(9296), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, - anon_sym_BQUOTE, - ACTIONS(9302), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10672), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2769), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [224049] = 21, + [225851] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(3626), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, - anon_sym_DQUOTE, - ACTIONS(9292), 1, - aux_sym_number_token1, - ACTIONS(9294), 1, - aux_sym_number_token2, - ACTIONS(9296), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, - anon_sym_BQUOTE, - ACTIONS(9302), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10674), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2938), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [224123] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1557), 1, + ACTIONS(3632), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(3634), 1, aux_sym_number_token2, - ACTIONS(1563), 1, + ACTIONS(3638), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, + ACTIONS(3648), 1, sym__brace_start, - ACTIONS(9198), 1, + ACTIONS(10012), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9202), 1, + ACTIONS(10018), 1, anon_sym_DQUOTE, - ACTIONS(9206), 1, + ACTIONS(10022), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9208), 1, + ACTIONS(10024), 1, anon_sym_BQUOTE, - ACTIONS(9210), 1, + ACTIONS(10026), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9268), 1, + ACTIONS(10828), 1, sym_word, - ACTIONS(9276), 1, - sym__comment_word, - ACTIONS(10676), 1, - anon_sym_DOLLAR, - ACTIONS(9196), 2, + ACTIONS(10830), 1, + sym__special_character, + ACTIONS(10834), 1, + sym_test_operator, + STATE(4364), 1, + aux_sym__literal_repeat1, + STATE(4771), 1, + sym_concatenation, + ACTIONS(10010), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9212), 2, + ACTIONS(10028), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9272), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9274), 3, - sym__bare_dollar, + ACTIONS(10832), 2, sym_raw_string, sym_ansi_c_string, - STATE(1189), 9, + STATE(4603), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264301,97 +265900,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224191] = 18, - ACTIONS(3), 1, + [225923] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(3191), 1, + ACTIONS(3626), 1, + anon_sym_DOLLAR, + ACTIONS(3632), 1, aux_sym_number_token1, - ACTIONS(3193), 1, + ACTIONS(3634), 1, aux_sym_number_token2, - ACTIONS(3197), 1, + ACTIONS(3638), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3209), 1, + ACTIONS(3648), 1, sym__brace_start, - ACTIONS(9674), 1, - sym_word, - ACTIONS(9678), 1, + ACTIONS(10012), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9682), 1, + ACTIONS(10018), 1, anon_sym_DQUOTE, - ACTIONS(9686), 1, + ACTIONS(10022), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9688), 1, + ACTIONS(10024), 1, anon_sym_BQUOTE, - ACTIONS(9690), 1, + ACTIONS(10026), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9694), 1, - sym__comment_word, - ACTIONS(10678), 1, - anon_sym_DOLLAR, - ACTIONS(9676), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9680), 2, - sym_test_operator, + ACTIONS(10830), 1, sym__special_character, - ACTIONS(9692), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9684), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1733), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [224259] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3191), 1, - aux_sym_number_token1, - ACTIONS(3193), 1, - aux_sym_number_token2, - ACTIONS(3197), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3209), 1, - sym__brace_start, - ACTIONS(9674), 1, + ACTIONS(10836), 1, sym_word, - ACTIONS(9678), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9682), 1, - anon_sym_DQUOTE, - ACTIONS(9686), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9688), 1, - anon_sym_BQUOTE, - ACTIONS(9690), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9694), 1, - sym__comment_word, - ACTIONS(10680), 1, - anon_sym_DOLLAR, - ACTIONS(9676), 2, + ACTIONS(10840), 1, + sym_test_operator, + STATE(4340), 1, + aux_sym__literal_repeat1, + STATE(4679), 1, + sym_concatenation, + ACTIONS(10010), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9680), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9692), 2, + ACTIONS(10028), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9684), 3, - sym__bare_dollar, + ACTIONS(10838), 2, sym_raw_string, sym_ansi_c_string, - STATE(1733), 9, + STATE(4605), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264401,50 +265952,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224327] = 21, + [225995] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(10682), 1, + ACTIONS(10842), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3303), 9, + STATE(2905), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -264454,50 +266005,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [224401] = 21, + [226069] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10684), 1, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(10844), 1, aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(3180), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2770), 9, + STATE(3200), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -264507,47 +266058,47 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [224475] = 18, + [226143] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(3038), 1, aux_sym_number_token1, - ACTIONS(2271), 1, + ACTIONS(3040), 1, aux_sym_number_token2, - ACTIONS(2275), 1, + ACTIONS(3044), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2289), 1, + ACTIONS(3054), 1, sym__brace_start, - ACTIONS(8066), 1, + ACTIONS(8892), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8070), 1, + ACTIONS(8896), 1, anon_sym_DQUOTE, - ACTIONS(8074), 1, + ACTIONS(8900), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8076), 1, + ACTIONS(8902), 1, anon_sym_BQUOTE, - ACTIONS(8078), 1, + ACTIONS(8904), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9580), 1, + ACTIONS(10058), 1, sym_word, - ACTIONS(9588), 1, + ACTIONS(10066), 1, sym__comment_word, - ACTIONS(10686), 1, + ACTIONS(10846), 1, anon_sym_DOLLAR, - ACTIONS(8062), 2, + ACTIONS(8890), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8080), 2, + ACTIONS(8906), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9584), 2, + ACTIONS(10062), 2, sym_test_operator, sym__special_character, - ACTIONS(9586), 3, + ACTIONS(10064), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1623), 9, + STATE(1751), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264557,100 +266108,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224543] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9364), 1, - anon_sym_LPAREN, - ACTIONS(9366), 1, - anon_sym_BANG, - ACTIONS(9372), 1, - anon_sym_TILDE, - ACTIONS(9374), 1, - anon_sym_DOLLAR, - ACTIONS(9376), 1, - anon_sym_DQUOTE, - ACTIONS(9378), 1, - aux_sym_number_token1, - ACTIONS(9380), 1, - aux_sym_number_token2, - ACTIONS(9382), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, - anon_sym_BQUOTE, - ACTIONS(9388), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(10688), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, - sym__arithmetic_unary_expression, - STATE(3400), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9370), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3302), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [224617] = 18, + [226211] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2269), 1, + ACTIONS(3038), 1, aux_sym_number_token1, - ACTIONS(2271), 1, + ACTIONS(3040), 1, aux_sym_number_token2, - ACTIONS(2275), 1, + ACTIONS(3044), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2289), 1, + ACTIONS(3054), 1, sym__brace_start, - ACTIONS(8066), 1, + ACTIONS(8892), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8070), 1, + ACTIONS(8896), 1, anon_sym_DQUOTE, - ACTIONS(8074), 1, + ACTIONS(8900), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8076), 1, + ACTIONS(8902), 1, anon_sym_BQUOTE, - ACTIONS(8078), 1, + ACTIONS(8904), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9580), 1, + ACTIONS(10058), 1, sym_word, - ACTIONS(9588), 1, + ACTIONS(10066), 1, sym__comment_word, - ACTIONS(10690), 1, + ACTIONS(10848), 1, anon_sym_DOLLAR, - ACTIONS(8062), 2, + ACTIONS(8890), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8080), 2, + ACTIONS(8906), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9584), 2, + ACTIONS(10062), 2, sym_test_operator, sym__special_character, - ACTIONS(9586), 3, + ACTIONS(10064), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1623), 9, + STATE(1751), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264660,97 +266158,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224685] = 18, - ACTIONS(3), 1, + [226279] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(8178), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8184), 1, - anon_sym_DQUOTE, - ACTIONS(8188), 1, + ACTIONS(4074), 1, + anon_sym_DOLLAR, + ACTIONS(4080), 1, aux_sym_number_token1, - ACTIONS(8190), 1, + ACTIONS(4082), 1, aux_sym_number_token2, - ACTIONS(8192), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8194), 1, + ACTIONS(4086), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8196), 1, - anon_sym_BQUOTE, - ACTIONS(8198), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8208), 1, + ACTIONS(4096), 1, sym__brace_start, - ACTIONS(9720), 1, - sym_word, - ACTIONS(9728), 1, - sym__comment_word, - ACTIONS(10692), 1, - anon_sym_DOLLAR, - ACTIONS(8174), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8200), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9724), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9726), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1590), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [224753] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8178), 1, + ACTIONS(9986), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8184), 1, + ACTIONS(9992), 1, anon_sym_DQUOTE, - ACTIONS(8188), 1, - aux_sym_number_token1, - ACTIONS(8190), 1, - aux_sym_number_token2, - ACTIONS(8192), 1, + ACTIONS(9996), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8194), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8196), 1, + ACTIONS(9998), 1, anon_sym_BQUOTE, - ACTIONS(8198), 1, + ACTIONS(10000), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8208), 1, - sym__brace_start, - ACTIONS(9720), 1, + ACTIONS(10850), 1, sym_word, - ACTIONS(9728), 1, - sym__comment_word, - ACTIONS(10694), 1, - anon_sym_DOLLAR, - ACTIONS(8174), 2, + ACTIONS(10852), 1, + sym__special_character, + ACTIONS(10856), 1, + sym_test_operator, + STATE(4505), 1, + aux_sym__literal_repeat1, + STATE(4997), 1, + sym_concatenation, + ACTIONS(9984), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8200), 2, + ACTIONS(10002), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9724), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9726), 3, - sym__bare_dollar, + ACTIONS(10854), 2, sym_raw_string, sym_ansi_c_string, - STATE(1590), 9, + STATE(5394), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264760,100 +266210,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224821] = 21, + [226351] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(4074), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, - anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(4080), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(4082), 1, aux_sym_number_token2, - ACTIONS(9296), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(4086), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, - anon_sym_BQUOTE, - ACTIONS(9302), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10696), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2771), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [224895] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8372), 1, + ACTIONS(4096), 1, + sym__brace_start, + ACTIONS(9986), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8378), 1, + ACTIONS(9992), 1, anon_sym_DQUOTE, - ACTIONS(8382), 1, - aux_sym_number_token1, - ACTIONS(8384), 1, - aux_sym_number_token2, - ACTIONS(8386), 1, + ACTIONS(9996), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8388), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8390), 1, + ACTIONS(9998), 1, anon_sym_BQUOTE, - ACTIONS(8392), 1, + ACTIONS(10000), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8402), 1, - sym__brace_start, - ACTIONS(10472), 1, + ACTIONS(10852), 1, + sym__special_character, + ACTIONS(10858), 1, sym_word, - ACTIONS(10478), 1, - sym__comment_word, - ACTIONS(10698), 1, - anon_sym_DOLLAR, - ACTIONS(8368), 2, + ACTIONS(10862), 1, + sym_test_operator, + STATE(4527), 1, + aux_sym__literal_repeat1, + STATE(4876), 1, + sym_concatenation, + ACTIONS(9984), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8394), 2, + ACTIONS(10002), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10474), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10476), 3, - sym__bare_dollar, + ACTIONS(10860), 2, sym_raw_string, sym_ansi_c_string, - STATE(4285), 9, + STATE(5398), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264863,97 +266262,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [224963] = 18, - ACTIONS(3), 1, + [226423] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(363), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(371), 1, - anon_sym_DQUOTE, - ACTIONS(375), 1, + ACTIONS(3626), 1, + anon_sym_DOLLAR, + ACTIONS(3632), 1, aux_sym_number_token1, - ACTIONS(377), 1, + ACTIONS(3634), 1, aux_sym_number_token2, - ACTIONS(379), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, + ACTIONS(3638), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, + ACTIONS(3648), 1, sym__brace_start, - ACTIONS(5809), 1, - anon_sym_BQUOTE, - ACTIONS(8836), 1, - sym_word, - ACTIONS(8840), 1, - sym__comment_word, - ACTIONS(10700), 1, - anon_sym_DOLLAR, - ACTIONS(352), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8844), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8842), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2730), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [225031] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(363), 1, + ACTIONS(10012), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(371), 1, + ACTIONS(10018), 1, anon_sym_DQUOTE, - ACTIONS(375), 1, - aux_sym_number_token1, - ACTIONS(377), 1, - aux_sym_number_token2, - ACTIONS(379), 1, + ACTIONS(10022), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, - sym__brace_start, - ACTIONS(5809), 1, + ACTIONS(10024), 1, anon_sym_BQUOTE, - ACTIONS(8836), 1, + ACTIONS(10026), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10864), 1, sym_word, - ACTIONS(8840), 1, - sym__comment_word, - ACTIONS(10702), 1, - anon_sym_DOLLAR, - ACTIONS(352), 2, + ACTIONS(10866), 1, + sym__special_character, + ACTIONS(10870), 1, + sym_test_operator, + STATE(4364), 1, + aux_sym__literal_repeat1, + STATE(4771), 1, + sym_concatenation, + ACTIONS(10010), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, + ACTIONS(10028), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8844), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8842), 3, - sym__bare_dollar, + ACTIONS(10868), 2, sym_raw_string, sym_ansi_c_string, - STATE(2730), 9, + STATE(5240), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -264963,47 +266314,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225099] = 18, - ACTIONS(3), 1, + [226495] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(363), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(367), 1, + ACTIONS(3626), 1, anon_sym_DOLLAR, - ACTIONS(371), 1, - anon_sym_DQUOTE, - ACTIONS(375), 1, + ACTIONS(3632), 1, aux_sym_number_token1, - ACTIONS(377), 1, + ACTIONS(3634), 1, aux_sym_number_token2, - ACTIONS(379), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(381), 1, + ACTIONS(3638), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(385), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(391), 1, + ACTIONS(3648), 1, sym__brace_start, - ACTIONS(5809), 1, + ACTIONS(10012), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10018), 1, + anon_sym_DQUOTE, + ACTIONS(10022), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10024), 1, anon_sym_BQUOTE, - ACTIONS(8836), 1, + ACTIONS(10026), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10866), 1, + sym__special_character, + ACTIONS(10872), 1, sym_word, - ACTIONS(8840), 1, - sym__comment_word, - ACTIONS(352), 2, + ACTIONS(10876), 1, + sym_test_operator, + STATE(4340), 1, + aux_sym__literal_repeat1, + STATE(4679), 1, + sym_concatenation, + ACTIONS(10010), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(387), 2, + ACTIONS(10028), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8844), 2, - sym_test_operator, - sym__special_character, - ACTIONS(8842), 3, - sym__bare_dollar, + ACTIONS(10874), 2, sym_raw_string, sym_ansi_c_string, - STATE(2730), 9, + STATE(5242), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265013,252 +266366,262 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225167] = 18, - ACTIONS(3), 1, + [226567] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(8372), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8378), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(3541), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(9432), 1, + anon_sym_LPAREN, + ACTIONS(9434), 1, + anon_sym_BANG, + ACTIONS(9440), 1, + anon_sym_TILDE, + ACTIONS(9442), 1, + anon_sym_DOLLAR, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(8382), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(8384), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(8386), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8388), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8390), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(8392), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8402), 1, - sym__brace_start, - ACTIONS(10472), 1, - sym_word, - ACTIONS(10478), 1, - sym__comment_word, - ACTIONS(10704), 1, - anon_sym_DOLLAR, - ACTIONS(8368), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8394), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10474), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10476), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(4285), 9, - sym_arithmetic_expansion, - sym_brace_expression, + STATE(2776), 1, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9438), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2927), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [225235] = 20, + [226641] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9758), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9760), 1, + ACTIONS(9338), 1, + anon_sym_LPAREN, + ACTIONS(9340), 1, + anon_sym_BANG, + ACTIONS(9346), 1, + anon_sym_TILDE, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9764), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9768), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9770), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9772), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9774), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9776), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9778), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9784), 1, - sym__brace_start, - ACTIONS(10052), 1, - sym__special_character, - ACTIONS(10706), 1, - sym_word, - ACTIONS(10710), 1, - sym_test_operator, - STATE(6213), 1, - aux_sym__literal_repeat1, - STATE(6413), 1, - sym_concatenation, - ACTIONS(9756), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9780), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10708), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(6199), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(10878), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3227), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [225307] = 18, - ACTIONS(3), 1, + [226715] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(314), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(320), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, + anon_sym_LPAREN, + ACTIONS(9434), 1, + anon_sym_BANG, + ACTIONS(9440), 1, + anon_sym_TILDE, + ACTIONS(9442), 1, + anon_sym_DOLLAR, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(324), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(326), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(328), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(330), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(332), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(334), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(344), 1, - sym__brace_start, - ACTIONS(9400), 1, - sym_word, - ACTIONS(9406), 1, - sym__comment_word, - ACTIONS(10712), 1, - anon_sym_DOLLAR, - ACTIONS(312), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(336), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9402), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9404), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1037), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(10880), 1, + aux_sym__simple_variable_name_token1, + STATE(2776), 1, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9438), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2782), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [225375] = 18, - ACTIONS(3), 1, + [226789] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(314), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(320), 1, + ACTIONS(9338), 1, + anon_sym_LPAREN, + ACTIONS(9340), 1, + anon_sym_BANG, + ACTIONS(9346), 1, + anon_sym_TILDE, + ACTIONS(9348), 1, + anon_sym_DOLLAR, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(324), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(326), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(328), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(330), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(332), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(334), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(344), 1, - sym__brace_start, - ACTIONS(9400), 1, - sym_word, - ACTIONS(9406), 1, - sym__comment_word, - ACTIONS(10714), 1, - anon_sym_DOLLAR, - ACTIONS(312), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(336), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9402), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9404), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1037), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(10882), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3250), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [225443] = 21, + [226863] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(10716), 1, + ACTIONS(10884), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3301), 9, + STATE(2785), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -265268,97 +266631,100 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [225517] = 18, - ACTIONS(3), 1, + [226937] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1149), 1, + ACTIONS(9338), 1, + anon_sym_LPAREN, + ACTIONS(9340), 1, + anon_sym_BANG, + ACTIONS(9346), 1, + anon_sym_TILDE, + ACTIONS(9348), 1, + anon_sym_DOLLAR, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(3060), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(10188), 1, - sym_word, - ACTIONS(10196), 1, - sym__comment_word, - ACTIONS(10718), 1, - anon_sym_DOLLAR, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10192), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10194), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2392), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9362), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(10886), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3290), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [225585] = 18, + [227011] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8474), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8480), 1, - anon_sym_DQUOTE, - ACTIONS(8484), 1, + ACTIONS(4002), 1, aux_sym_number_token1, - ACTIONS(8486), 1, + ACTIONS(4004), 1, aux_sym_number_token2, - ACTIONS(8488), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8490), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8492), 1, + ACTIONS(4018), 1, + sym__brace_start, + ACTIONS(8820), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8824), 1, + anon_sym_DQUOTE, + ACTIONS(8828), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8830), 1, anon_sym_BQUOTE, - ACTIONS(8494), 1, + ACTIONS(8832), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8504), 1, - sym__brace_start, - ACTIONS(10720), 1, + ACTIONS(10046), 1, sym_word, - ACTIONS(10722), 1, - anon_sym_DOLLAR, - ACTIONS(10728), 1, + ACTIONS(10054), 1, sym__comment_word, - ACTIONS(8470), 2, + ACTIONS(10888), 1, + anon_sym_DOLLAR, + ACTIONS(8818), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8496), 2, + ACTIONS(8834), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10724), 2, + ACTIONS(10050), 2, sym_test_operator, sym__special_character, - ACTIONS(10726), 3, + ACTIONS(10052), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1625), 9, + STATE(1951), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265368,102 +266734,103 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225653] = 20, + [227079] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8474), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8476), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, + anon_sym_LPAREN, + ACTIONS(9434), 1, + anon_sym_BANG, + ACTIONS(9440), 1, + anon_sym_TILDE, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(8478), 1, - sym__special_character, - ACTIONS(8480), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(8484), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(8486), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(8488), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8490), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8492), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(8494), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8504), 1, - sym__brace_start, - ACTIONS(10730), 1, - sym_word, - ACTIONS(10734), 1, - sym_test_operator, - STATE(1898), 1, - aux_sym__literal_repeat1, - STATE(2107), 1, - sym_concatenation, - ACTIONS(8470), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8496), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10732), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1395), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(10890), 1, + aux_sym__simple_variable_name_token1, + STATE(2776), 1, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9438), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2866), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [225725] = 21, + [227153] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10736), 1, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(10892), 1, aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(3180), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2772), 9, + STATE(3302), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -265473,47 +266840,47 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [225799] = 18, + [227227] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8512), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8518), 1, - anon_sym_DQUOTE, - ACTIONS(8522), 1, + ACTIONS(4002), 1, aux_sym_number_token1, - ACTIONS(8524), 1, + ACTIONS(4004), 1, aux_sym_number_token2, - ACTIONS(8526), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8528), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8530), 1, + ACTIONS(4018), 1, + sym__brace_start, + ACTIONS(8820), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8824), 1, + anon_sym_DQUOTE, + ACTIONS(8828), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8830), 1, anon_sym_BQUOTE, - ACTIONS(8532), 1, + ACTIONS(8832), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8542), 1, - sym__brace_start, - ACTIONS(10220), 1, + ACTIONS(10046), 1, sym_word, - ACTIONS(10226), 1, + ACTIONS(10054), 1, sym__comment_word, - ACTIONS(10738), 1, + ACTIONS(10894), 1, anon_sym_DOLLAR, - ACTIONS(8508), 2, + ACTIONS(8818), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8534), 2, + ACTIONS(8834), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10222), 2, + ACTIONS(10050), 2, sym_test_operator, sym__special_character, - ACTIONS(10224), 3, + ACTIONS(10052), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2514), 9, + STATE(1951), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -265523,304 +266890,315 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [225867] = 18, - ACTIONS(3), 1, + [227295] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(49), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, + anon_sym_LPAREN, + ACTIONS(9434), 1, + anon_sym_BANG, + ACTIONS(9440), 1, + anon_sym_TILDE, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(53), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(59), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(61), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(63), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(65), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(67), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(79), 1, - sym__brace_start, - ACTIONS(10448), 1, - sym_word, - ACTIONS(10456), 1, - sym__comment_word, - ACTIONS(45), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(69), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10452), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10454), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1083), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(10896), 1, + aux_sym__simple_variable_name_token1, + STATE(2776), 1, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9438), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2870), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [225935] = 18, - ACTIONS(3), 1, + [227369] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1145), 1, + ACTIONS(9338), 1, + anon_sym_LPAREN, + ACTIONS(9340), 1, + anon_sym_BANG, + ACTIONS(9346), 1, + anon_sym_TILDE, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(1149), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(3060), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(10188), 1, - sym_word, - ACTIONS(10196), 1, - sym__comment_word, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10192), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10194), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2392), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9362), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(10898), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3316), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [226003] = 18, - ACTIONS(3), 1, + [227443] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1149), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, + anon_sym_LPAREN, + ACTIONS(9434), 1, + anon_sym_BANG, + ACTIONS(9440), 1, + anon_sym_TILDE, + ACTIONS(9442), 1, + anon_sym_DOLLAR, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(3060), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(10188), 1, - sym_word, - ACTIONS(10196), 1, - sym__comment_word, - ACTIONS(10740), 1, - anon_sym_DOLLAR, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10192), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10194), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2392), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9456), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10900), 1, + aux_sym__simple_variable_name_token1, + STATE(2776), 1, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9438), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2872), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [226071] = 20, + [227517] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8178), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8180), 1, + ACTIONS(9338), 1, + anon_sym_LPAREN, + ACTIONS(9340), 1, + anon_sym_BANG, + ACTIONS(9346), 1, + anon_sym_TILDE, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(8184), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(8188), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(8190), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(8192), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8194), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8196), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(8198), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8208), 1, - sym__brace_start, - ACTIONS(8450), 1, - sym__special_character, - ACTIONS(10742), 1, - sym_word, - ACTIONS(10746), 1, - sym_test_operator, - STATE(1738), 1, - aux_sym__literal_repeat1, - STATE(1952), 1, - sym_concatenation, - ACTIONS(8174), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8200), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10744), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1596), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(10902), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3351), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [226143] = 20, + [227591] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8178), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8180), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, + anon_sym_LPAREN, + ACTIONS(9434), 1, + anon_sym_BANG, + ACTIONS(9440), 1, + anon_sym_TILDE, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(8184), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(8188), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(8190), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(8192), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8194), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8196), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(8198), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8208), 1, - sym__brace_start, - ACTIONS(8450), 1, - sym__special_character, - ACTIONS(10748), 1, - sym_word, - ACTIONS(10752), 1, - sym_test_operator, - STATE(1741), 1, - aux_sym__literal_repeat1, - STATE(1958), 1, - sym_concatenation, - ACTIONS(8174), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8200), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10750), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1529), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(10904), 1, + aux_sym__simple_variable_name_token1, + STATE(2776), 1, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9438), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2873), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [226215] = 21, + [227665] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3602), 1, - sym_variable_name, - ACTIONS(9898), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9900), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9906), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9908), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9910), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9912), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9914), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9916), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9918), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9920), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9922), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10754), 1, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(10906), 1, aux_sym__simple_variable_name_token1, - STATE(3359), 1, - sym__arithmetic_postfix_expression, - STATE(3361), 1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(3367), 1, - sym__arithmetic_ternary_expression, - STATE(3375), 1, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, sym__arithmetic_binary_expression, - ACTIONS(9902), 2, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9904), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3242), 9, + STATE(3359), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -265830,50 +267208,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [226289] = 21, + [227739] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3602), 1, + ACTIONS(3123), 1, sym_variable_name, - ACTIONS(9898), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9900), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9906), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9908), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9910), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9912), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9914), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9916), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9918), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9920), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9922), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10756), 1, + ACTIONS(10908), 1, aux_sym__simple_variable_name_token1, - STATE(3359), 1, - sym__arithmetic_postfix_expression, - STATE(3361), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(3367), 1, - sym__arithmetic_ternary_expression, - STATE(3375), 1, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, sym__arithmetic_binary_expression, - ACTIONS(9902), 2, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9904), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3246), 9, + STATE(2875), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -265883,100 +267261,103 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [226363] = 18, - ACTIONS(3), 1, + [227813] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1587), 1, + ACTIONS(9338), 1, + anon_sym_LPAREN, + ACTIONS(9340), 1, + anon_sym_BANG, + ACTIONS(9346), 1, + anon_sym_TILDE, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(1593), 1, + ACTIONS(9350), 1, + anon_sym_DQUOTE, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(1595), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(1599), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1611), 1, - sym__brace_start, - ACTIONS(9240), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9244), 1, - anon_sym_DQUOTE, - ACTIONS(9248), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9250), 1, + ACTIONS(9358), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9252), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10094), 1, - sym_word, - ACTIONS(10102), 1, - sym__comment_word, - ACTIONS(9238), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9254), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10098), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10100), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1293), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(10910), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3373), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [226431] = 21, + [227887] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3602), 1, + ACTIONS(3123), 1, sym_variable_name, - ACTIONS(9898), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9900), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9906), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9908), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9910), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9912), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9914), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9916), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9918), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9920), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9922), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10758), 1, + ACTIONS(10912), 1, aux_sym__simple_variable_name_token1, - STATE(3359), 1, - sym__arithmetic_postfix_expression, - STATE(3361), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(3367), 1, - sym__arithmetic_ternary_expression, - STATE(3375), 1, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, sym__arithmetic_binary_expression, - ACTIONS(9902), 2, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9904), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3247), 9, + STATE(2878), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -265986,102 +267367,103 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [226505] = 20, + [227961] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(4080), 1, + ACTIONS(9338), 1, + anon_sym_LPAREN, + ACTIONS(9340), 1, + anon_sym_BANG, + ACTIONS(9346), 1, + anon_sym_TILDE, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(4086), 1, + ACTIONS(9350), 1, + anon_sym_DQUOTE, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(4088), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(4092), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4102), 1, - sym__brace_start, - ACTIONS(9310), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9316), 1, - anon_sym_DQUOTE, - ACTIONS(9320), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9322), 1, + ACTIONS(9358), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9324), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10760), 1, - sym_word, - ACTIONS(10762), 1, - sym__special_character, - ACTIONS(10766), 1, - sym_test_operator, - STATE(4500), 1, - aux_sym__literal_repeat1, - STATE(5029), 1, - sym_concatenation, - ACTIONS(9308), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9326), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10764), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4687), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(10914), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3380), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [226577] = 21, + [228035] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(10768), 1, + ACTIONS(10916), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3299), 9, + STATE(2881), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -266091,152 +267473,156 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [226651] = 18, - ACTIONS(3), 1, + [228109] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(3191), 1, + ACTIONS(9338), 1, + anon_sym_LPAREN, + ACTIONS(9340), 1, + anon_sym_BANG, + ACTIONS(9346), 1, + anon_sym_TILDE, + ACTIONS(9348), 1, + anon_sym_DOLLAR, + ACTIONS(9350), 1, + anon_sym_DQUOTE, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(3193), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(3197), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3209), 1, - sym__brace_start, - ACTIONS(9674), 1, - sym_word, - ACTIONS(9678), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9682), 1, - anon_sym_DQUOTE, - ACTIONS(9686), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9688), 1, + ACTIONS(9358), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9690), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9694), 1, - sym__comment_word, - ACTIONS(10770), 1, - anon_sym_DOLLAR, - ACTIONS(9676), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9680), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9692), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9684), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1733), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(10918), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3406), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [226719] = 20, + [228183] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(4080), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(3556), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(9432), 1, + anon_sym_LPAREN, + ACTIONS(9434), 1, + anon_sym_BANG, + ACTIONS(9440), 1, + anon_sym_TILDE, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(4086), 1, + ACTIONS(9444), 1, + anon_sym_DQUOTE, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(4088), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(4092), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4102), 1, - sym__brace_start, - ACTIONS(9310), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9316), 1, - anon_sym_DQUOTE, - ACTIONS(9320), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9322), 1, + ACTIONS(9452), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9324), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10762), 1, - sym__special_character, - ACTIONS(10772), 1, - sym_word, - ACTIONS(10776), 1, - sym_test_operator, - STATE(4421), 1, - aux_sym__literal_repeat1, - STATE(4869), 1, - sym_concatenation, - ACTIONS(9308), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9326), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10774), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4699), 9, - sym_arithmetic_expansion, - sym_brace_expression, + STATE(2776), 1, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9438), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2824), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [226791] = 21, + [228257] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3602), 1, + ACTIONS(3123), 1, sym_variable_name, - ACTIONS(9898), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9900), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9906), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9908), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9910), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9912), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9914), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9916), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9918), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9920), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9922), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10778), 1, + ACTIONS(10920), 1, aux_sym__simple_variable_name_token1, - STATE(3359), 1, - sym__arithmetic_postfix_expression, - STATE(3361), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(3367), 1, - sym__arithmetic_ternary_expression, - STATE(3375), 1, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, sym__arithmetic_binary_expression, - ACTIONS(9902), 2, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9904), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3248), 9, + STATE(2883), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -266246,50 +267632,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [226865] = 21, + [228331] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3602), 1, - sym_variable_name, - ACTIONS(9898), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9900), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9906), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9908), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9910), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9912), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9914), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9916), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9918), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9920), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9922), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10780), 1, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(10922), 1, aux_sym__simple_variable_name_token1, - STATE(3359), 1, - sym__arithmetic_postfix_expression, - STATE(3361), 1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(3367), 1, - sym__arithmetic_ternary_expression, - STATE(3375), 1, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, sym__arithmetic_binary_expression, - ACTIONS(9902), 2, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9904), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3249), 9, + STATE(3408), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -266299,47 +267685,47 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [226939] = 18, + [228405] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8268), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8274), 1, - anon_sym_DQUOTE, - ACTIONS(8278), 1, + ACTIONS(3038), 1, aux_sym_number_token1, - ACTIONS(8280), 1, + ACTIONS(3040), 1, aux_sym_number_token2, - ACTIONS(8282), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8284), 1, + ACTIONS(3044), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8286), 1, + ACTIONS(3054), 1, + sym__brace_start, + ACTIONS(8892), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8896), 1, + anon_sym_DQUOTE, + ACTIONS(8900), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8902), 1, anon_sym_BQUOTE, - ACTIONS(8288), 1, + ACTIONS(8904), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8298), 1, - sym__brace_start, - ACTIONS(10480), 1, + ACTIONS(10058), 1, sym_word, - ACTIONS(10486), 1, + ACTIONS(10066), 1, sym__comment_word, - ACTIONS(10782), 1, + ACTIONS(10924), 1, anon_sym_DOLLAR, - ACTIONS(8264), 2, + ACTIONS(8890), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8290), 2, + ACTIONS(8906), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10482), 2, + ACTIONS(10062), 2, sym_test_operator, sym__special_character, - ACTIONS(10484), 3, + ACTIONS(10064), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1465), 9, + STATE(1751), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266349,50 +267735,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227007] = 21, + [228473] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3602), 1, - sym_variable_name, - ACTIONS(9898), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9900), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9906), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9908), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9910), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9912), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9914), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9916), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9918), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9920), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9922), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10784), 1, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(10926), 1, aux_sym__simple_variable_name_token1, - STATE(3359), 1, - sym__arithmetic_postfix_expression, - STATE(3361), 1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(3367), 1, - sym__arithmetic_ternary_expression, - STATE(3375), 1, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, sym__arithmetic_binary_expression, - ACTIONS(9902), 2, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9904), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3258), 9, + STATE(3223), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -266402,50 +267788,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [227081] = 21, + [228547] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3602), 1, + ACTIONS(3123), 1, sym_variable_name, - ACTIONS(9898), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9900), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9906), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9908), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9910), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9912), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9914), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9916), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9918), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9920), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9922), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10786), 1, + ACTIONS(10928), 1, aux_sym__simple_variable_name_token1, - STATE(3359), 1, - sym__arithmetic_postfix_expression, - STATE(3361), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(3367), 1, - sym__arithmetic_ternary_expression, - STATE(3375), 1, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, sym__arithmetic_binary_expression, - ACTIONS(9902), 2, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9904), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3259), 9, + STATE(2886), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -266455,99 +267841,100 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [227155] = 20, + [228621] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3787), 1, + ACTIONS(9338), 1, + anon_sym_LPAREN, + ACTIONS(9340), 1, + anon_sym_BANG, + ACTIONS(9346), 1, + anon_sym_TILDE, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(3793), 1, + ACTIONS(9350), 1, + anon_sym_DQUOTE, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(3795), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(3799), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3809), 1, - sym__brace_start, - ACTIONS(9636), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9640), 1, - anon_sym_DQUOTE, - ACTIONS(9644), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9646), 1, + ACTIONS(9358), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9648), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10788), 1, - sym_word, - ACTIONS(10790), 1, - sym__special_character, - ACTIONS(10794), 1, - sym_test_operator, - STATE(4294), 1, - aux_sym__literal_repeat1, - STATE(4861), 1, - sym_concatenation, - ACTIONS(9634), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9650), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10792), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4440), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(10930), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3413), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [227227] = 18, + [228695] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8268), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8274), 1, - anon_sym_DQUOTE, - ACTIONS(8278), 1, + ACTIONS(3038), 1, aux_sym_number_token1, - ACTIONS(8280), 1, + ACTIONS(3040), 1, aux_sym_number_token2, - ACTIONS(8282), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8284), 1, + ACTIONS(3044), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8286), 1, + ACTIONS(3054), 1, + sym__brace_start, + ACTIONS(8892), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8896), 1, + anon_sym_DQUOTE, + ACTIONS(8900), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8902), 1, anon_sym_BQUOTE, - ACTIONS(8288), 1, + ACTIONS(8904), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8298), 1, - sym__brace_start, - ACTIONS(10480), 1, + ACTIONS(10058), 1, sym_word, - ACTIONS(10486), 1, + ACTIONS(10066), 1, sym__comment_word, - ACTIONS(10796), 1, + ACTIONS(10932), 1, anon_sym_DOLLAR, - ACTIONS(8264), 2, + ACTIONS(8890), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8290), 2, + ACTIONS(8906), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10482), 2, + ACTIONS(10062), 2, sym_test_operator, sym__special_character, - ACTIONS(10484), 3, + ACTIONS(10064), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1465), 9, + STATE(1751), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -266557,50 +267944,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [227295] = 21, + [228763] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3123), 1, sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10798), 1, + ACTIONS(10934), 1, aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2773), 9, + STATE(2895), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -266610,50 +267997,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [227369] = 21, + [228837] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, + ACTIONS(9366), 1, sym_variable_name, - ACTIONS(10800), 1, + ACTIONS(10936), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(3180), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3296), 9, + STATE(3420), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -266663,50 +268050,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [227443] = 21, + [228911] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3123), 1, sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(3412), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10802), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2774), 9, + STATE(2897), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -266716,102 +268103,103 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [227517] = 20, + [228985] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3787), 1, + ACTIONS(9338), 1, + anon_sym_LPAREN, + ACTIONS(9340), 1, + anon_sym_BANG, + ACTIONS(9346), 1, + anon_sym_TILDE, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(3793), 1, + ACTIONS(9350), 1, + anon_sym_DQUOTE, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(3795), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(3799), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3809), 1, - sym__brace_start, - ACTIONS(9636), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9640), 1, - anon_sym_DQUOTE, - ACTIONS(9644), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9646), 1, + ACTIONS(9358), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9648), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10790), 1, - sym__special_character, - ACTIONS(10804), 1, - sym_word, - ACTIONS(10808), 1, - sym_test_operator, - STATE(4347), 1, - aux_sym__literal_repeat1, - STATE(4617), 1, - sym_concatenation, - ACTIONS(9634), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9650), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10806), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4452), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(10938), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3424), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [227589] = 21, + [229059] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3602), 1, + ACTIONS(3123), 1, sym_variable_name, - ACTIONS(9898), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9900), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9906), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9908), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9910), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9912), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9914), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9916), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9918), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9920), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9922), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10810), 1, + ACTIONS(10940), 1, aux_sym__simple_variable_name_token1, - STATE(3359), 1, - sym__arithmetic_postfix_expression, - STATE(3361), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(3367), 1, - sym__arithmetic_ternary_expression, - STATE(3375), 1, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, sym__arithmetic_binary_expression, - ACTIONS(9902), 2, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9904), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3261), 9, + STATE(2900), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -266821,154 +268209,156 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [227663] = 20, + [229133] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1551), 1, + ACTIONS(9338), 1, + anon_sym_LPAREN, + ACTIONS(9340), 1, + anon_sym_BANG, + ACTIONS(9346), 1, + anon_sym_TILDE, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(9350), 1, + anon_sym_DQUOTE, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(1563), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, - sym__brace_start, - ACTIONS(9198), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9200), 1, - sym__special_character, - ACTIONS(9202), 1, - anon_sym_DQUOTE, - ACTIONS(9206), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9208), 1, + ACTIONS(9358), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9210), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10812), 1, - sym_word, - ACTIONS(10816), 1, - sym_test_operator, - STATE(1436), 1, - aux_sym__literal_repeat1, - STATE(1543), 1, - sym_concatenation, - ACTIONS(9196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9212), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10814), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1273), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(10942), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3428), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [227735] = 20, + [229207] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(1551), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, + anon_sym_LPAREN, + ACTIONS(9434), 1, + anon_sym_BANG, + ACTIONS(9440), 1, + anon_sym_TILDE, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(1557), 1, + ACTIONS(9444), 1, + anon_sym_DQUOTE, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(1559), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(1563), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, - sym__brace_start, - ACTIONS(9198), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9200), 1, - sym__special_character, - ACTIONS(9202), 1, - anon_sym_DQUOTE, - ACTIONS(9206), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9208), 1, + ACTIONS(9452), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9210), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10818), 1, - sym_word, - ACTIONS(10822), 1, - sym_test_operator, - STATE(1401), 1, - aux_sym__literal_repeat1, - STATE(1573), 1, - sym_concatenation, - ACTIONS(9196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9212), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10820), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1276), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(10944), 1, + aux_sym__simple_variable_name_token1, + STATE(2776), 1, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9438), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2909), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [227807] = 21, + [229281] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, + ACTIONS(9366), 1, sym_variable_name, - ACTIONS(10824), 1, + ACTIONS(10946), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(3180), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3293), 9, + STATE(3433), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -266978,100 +268368,103 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [227881] = 18, - ACTIONS(3), 1, + [229355] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(4633), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4639), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, + anon_sym_LPAREN, + ACTIONS(9434), 1, + anon_sym_BANG, + ACTIONS(9440), 1, + anon_sym_TILDE, + ACTIONS(9442), 1, + anon_sym_DOLLAR, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(4643), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(4645), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(4647), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4649), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4651), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(4653), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4659), 1, - sym__brace_start, - ACTIONS(9330), 1, - sym_word, - ACTIONS(9338), 1, - sym__comment_word, - ACTIONS(10826), 1, - anon_sym_DOLLAR, - ACTIONS(4631), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4655), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9334), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9336), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2634), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(10948), 1, + aux_sym__simple_variable_name_token1, + STATE(2776), 1, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9438), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2911), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [227949] = 21, + [229429] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3602), 1, - sym_variable_name, - ACTIONS(9898), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9900), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9906), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9908), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9910), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9912), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9914), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9916), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9918), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9920), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9922), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10828), 1, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(10950), 1, aux_sym__simple_variable_name_token1, - STATE(3359), 1, - sym__arithmetic_postfix_expression, - STATE(3361), 1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(3367), 1, - sym__arithmetic_ternary_expression, - STATE(3375), 1, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, sym__arithmetic_binary_expression, - ACTIONS(9902), 2, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9904), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3263), 9, + STATE(3436), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -267081,50 +268474,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [228023] = 21, + [229503] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3602), 1, + ACTIONS(3123), 1, sym_variable_name, - ACTIONS(9898), 1, + ACTIONS(3378), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9900), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9906), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9908), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9910), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9912), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9914), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9916), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9918), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9920), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9922), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10830), 1, - aux_sym__simple_variable_name_token1, - STATE(3359), 1, - sym__arithmetic_postfix_expression, - STATE(3361), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(3367), 1, - sym__arithmetic_ternary_expression, - STATE(3375), 1, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, sym__arithmetic_binary_expression, - ACTIONS(9902), 2, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9904), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3264), 9, + STATE(2919), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -267134,50 +268527,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [228097] = 21, + [229577] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3602), 1, - sym_variable_name, - ACTIONS(9898), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9900), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9906), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9908), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9910), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9912), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9914), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9916), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9918), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9920), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9922), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10832), 1, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(10952), 1, aux_sym__simple_variable_name_token1, - STATE(3359), 1, - sym__arithmetic_postfix_expression, - STATE(3361), 1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(3367), 1, - sym__arithmetic_ternary_expression, - STATE(3375), 1, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, sym__arithmetic_binary_expression, - ACTIONS(9902), 2, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9904), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3265), 9, + STATE(3439), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -267187,47 +268580,97 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [228171] = 18, + [229651] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5315), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5321), 1, - anon_sym_DQUOTE, - ACTIONS(5325), 1, + ACTIONS(6496), 1, aux_sym_number_token1, - ACTIONS(5327), 1, + ACTIONS(6498), 1, aux_sym_number_token2, - ACTIONS(5329), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5331), 1, + ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5333), 1, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(7200), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7204), 1, + anon_sym_DQUOTE, + ACTIONS(7208), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7210), 1, anon_sym_BQUOTE, - ACTIONS(5335), 1, + ACTIONS(7212), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5341), 1, - sym__brace_start, - ACTIONS(10236), 1, + ACTIONS(10526), 1, sym_word, - ACTIONS(10242), 1, + ACTIONS(10532), 1, sym__comment_word, - ACTIONS(10834), 1, + ACTIONS(10954), 1, anon_sym_DOLLAR, - ACTIONS(5313), 2, + ACTIONS(7196), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5337), 2, + ACTIONS(7214), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10238), 2, + ACTIONS(10528), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10530), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(6506), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [229719] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10724), 1, + sym_word, + ACTIONS(10728), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10734), 1, + anon_sym_DQUOTE, + ACTIONS(10738), 1, + aux_sym_number_token1, + ACTIONS(10740), 1, + aux_sym_number_token2, + ACTIONS(10742), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10744), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(10746), 1, + anon_sym_BQUOTE, + ACTIONS(10748), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10752), 1, + sym__comment_word, + ACTIONS(10754), 1, + sym__brace_start, + ACTIONS(10956), 1, + anon_sym_DOLLAR, + ACTIONS(10726), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10732), 2, sym_test_operator, sym__special_character, - ACTIONS(10240), 3, + ACTIONS(10750), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10736), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5461), 9, + STATE(6232), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -267237,50 +268680,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [228239] = 21, + [229787] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3602), 1, + ACTIONS(3123), 1, sym_variable_name, - ACTIONS(9898), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9900), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9906), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9908), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9910), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9912), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9914), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9916), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9918), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9920), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9922), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10836), 1, + ACTIONS(10958), 1, aux_sym__simple_variable_name_token1, - STATE(3359), 1, - sym__arithmetic_postfix_expression, - STATE(3361), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(3367), 1, - sym__arithmetic_ternary_expression, - STATE(3375), 1, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, sym__arithmetic_binary_expression, - ACTIONS(9902), 2, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9904), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3266), 9, + STATE(2921), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -267290,50 +268733,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [228313] = 21, + [229861] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10838), 1, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(10960), 1, aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(3180), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2775), 9, + STATE(3444), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -267343,50 +268786,100 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [228387] = 21, + [229935] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6496), 1, + aux_sym_number_token1, + ACTIONS(6498), 1, + aux_sym_number_token2, + ACTIONS(6502), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6514), 1, + sym__brace_start, + ACTIONS(7200), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7204), 1, + anon_sym_DQUOTE, + ACTIONS(7208), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7210), 1, + anon_sym_BQUOTE, + ACTIONS(7212), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10526), 1, + sym_word, + ACTIONS(10532), 1, + sym__comment_word, + ACTIONS(10962), 1, + anon_sym_DOLLAR, + ACTIONS(7196), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7214), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10528), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10530), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(6506), 9, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [230003] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3123), 1, sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10840), 1, + ACTIONS(10964), 1, aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2858), 9, + STATE(2925), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -267396,50 +268889,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [228461] = 21, + [230077] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, + ACTIONS(9366), 1, sym_variable_name, - ACTIONS(10842), 1, + ACTIONS(10966), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(3180), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3373), 9, + STATE(3447), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -267449,50 +268942,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [228535] = 21, + [230151] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3123), 1, sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10844), 1, + ACTIONS(10968), 1, aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2937), 9, + STATE(2931), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -267502,100 +268995,103 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [228609] = 18, - ACTIONS(3), 1, + [230225] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(2038), 1, + ACTIONS(9338), 1, + anon_sym_LPAREN, + ACTIONS(9340), 1, + anon_sym_BANG, + ACTIONS(9346), 1, + anon_sym_TILDE, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(2044), 1, + ACTIONS(9350), 1, + anon_sym_DQUOTE, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(2046), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(2050), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2064), 1, - sym__brace_start, - ACTIONS(8344), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8348), 1, - anon_sym_DQUOTE, - ACTIONS(8352), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8354), 1, + ACTIONS(9358), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(8356), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10846), 1, - sym_word, - ACTIONS(10852), 1, - sym__comment_word, - ACTIONS(8340), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8358), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10848), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10850), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1493), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(10970), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3213), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [228677] = 21, + [230299] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3602), 1, + ACTIONS(3123), 1, sym_variable_name, - ACTIONS(3811), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9898), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9900), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9906), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9908), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9910), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9912), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9914), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9916), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9918), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9920), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9922), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3359), 1, - sym__arithmetic_postfix_expression, - STATE(3361), 1, + ACTIONS(10972), 1, + aux_sym__simple_variable_name_token1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(3367), 1, - sym__arithmetic_ternary_expression, - STATE(3375), 1, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, sym__arithmetic_binary_expression, - ACTIONS(9902), 2, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9904), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3365), 9, + STATE(2932), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -267605,50 +269101,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [228751] = 21, + [230373] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10854), 1, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(10974), 1, aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(3180), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3350), 9, + STATE(3300), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -267658,47 +269154,47 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [228825] = 21, + [230447] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3123), 1, sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10856), 1, + ACTIONS(10976), 1, aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, STATE(2936), 9, @@ -267711,50 +269207,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [228899] = 21, + [230521] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, + ACTIONS(9366), 1, sym_variable_name, - ACTIONS(10858), 1, + ACTIONS(10978), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(3180), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3446), 9, + STATE(3235), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -267764,50 +269260,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [228973] = 21, + [230595] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3123), 1, sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10860), 1, + ACTIONS(10980), 1, aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2923), 9, + STATE(2738), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -267817,100 +269313,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [229047] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1837), 1, - aux_sym_number_token1, - ACTIONS(1839), 1, - aux_sym_number_token2, - ACTIONS(1843), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1857), 1, - sym__brace_start, - ACTIONS(8232), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8236), 1, - anon_sym_DQUOTE, - ACTIONS(8240), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8242), 1, - anon_sym_BQUOTE, - ACTIONS(8244), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10488), 1, - sym_word, - ACTIONS(10494), 1, - sym__comment_word, - ACTIONS(10862), 1, - anon_sym_DOLLAR, - ACTIONS(8228), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8246), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10490), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10492), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1440), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [229115] = 21, + [230669] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10864), 1, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(10982), 1, aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(3180), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2922), 9, + STATE(3331), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -267920,50 +269366,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [229189] = 21, + [230743] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3123), 1, sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10866), 1, + ACTIONS(10984), 1, aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2921), 9, + STATE(2740), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -267973,50 +269419,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [229263] = 21, + [230817] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, + ACTIONS(9366), 1, sym_variable_name, - ACTIONS(10868), 1, + ACTIONS(10986), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(3180), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3289), 9, + STATE(3186), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -268026,47 +269472,47 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [229337] = 18, + [230891] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1837), 1, - aux_sym_number_token1, - ACTIONS(1839), 1, - aux_sym_number_token2, - ACTIONS(1843), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1857), 1, - sym__brace_start, - ACTIONS(8232), 1, + ACTIONS(8376), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8236), 1, + ACTIONS(8382), 1, anon_sym_DQUOTE, - ACTIONS(8240), 1, + ACTIONS(8386), 1, + aux_sym_number_token1, + ACTIONS(8388), 1, + aux_sym_number_token2, + ACTIONS(8390), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8242), 1, + ACTIONS(8392), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8394), 1, anon_sym_BQUOTE, - ACTIONS(8244), 1, + ACTIONS(8396), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10488), 1, + ACTIONS(8406), 1, + sym__brace_start, + ACTIONS(10534), 1, sym_word, - ACTIONS(10494), 1, + ACTIONS(10540), 1, sym__comment_word, - ACTIONS(10870), 1, + ACTIONS(10988), 1, anon_sym_DOLLAR, - ACTIONS(8228), 2, + ACTIONS(8372), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8246), 2, + ACTIONS(8398), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10490), 2, + ACTIONS(10536), 2, sym_test_operator, sym__special_character, - ACTIONS(10492), 3, + ACTIONS(10538), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1440), 9, + STATE(2473), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -268076,50 +269522,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229405] = 21, + [230959] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3123), 1, sym_variable_name, - ACTIONS(3467), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9278), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + ACTIONS(10990), 1, + aux_sym__simple_variable_name_token1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2777), 9, + STATE(2745), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -268129,99 +269575,100 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [229479] = 18, - ACTIONS(3), 1, + [231033] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(5315), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5321), 1, + ACTIONS(9338), 1, + anon_sym_LPAREN, + ACTIONS(9340), 1, + anon_sym_BANG, + ACTIONS(9346), 1, + anon_sym_TILDE, + ACTIONS(9348), 1, + anon_sym_DOLLAR, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(5325), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(5327), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(5329), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5331), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5333), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(5335), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5341), 1, - sym__brace_start, - ACTIONS(10236), 1, - sym_word, - ACTIONS(10242), 1, - sym__comment_word, - ACTIONS(10872), 1, - anon_sym_DOLLAR, - ACTIONS(5313), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5337), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10238), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10240), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(5461), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(10992), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3224), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [229547] = 20, - ACTIONS(71), 1, + [231107] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(9758), 1, + ACTIONS(8376), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9760), 1, - anon_sym_DOLLAR, - ACTIONS(9764), 1, + ACTIONS(8382), 1, anon_sym_DQUOTE, - ACTIONS(9768), 1, + ACTIONS(8386), 1, aux_sym_number_token1, - ACTIONS(9770), 1, + ACTIONS(8388), 1, aux_sym_number_token2, - ACTIONS(9772), 1, + ACTIONS(8390), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9774), 1, + ACTIONS(8392), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9776), 1, + ACTIONS(8394), 1, anon_sym_BQUOTE, - ACTIONS(9778), 1, + ACTIONS(8396), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9784), 1, + ACTIONS(8406), 1, sym__brace_start, - ACTIONS(10052), 1, - sym__special_character, - ACTIONS(10874), 1, + ACTIONS(10534), 1, sym_word, - ACTIONS(10878), 1, - sym_test_operator, - STATE(6223), 1, - aux_sym__literal_repeat1, - STATE(6374), 1, - sym_concatenation, - ACTIONS(9756), 2, + ACTIONS(10540), 1, + sym__comment_word, + ACTIONS(10994), 1, + anon_sym_DOLLAR, + ACTIONS(8372), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9780), 2, + ACTIONS(8398), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10876), 2, + ACTIONS(10536), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10538), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(6202), 9, + STATE(2473), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -268231,50 +269678,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229619] = 21, + [231175] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(10880), 1, + ACTIONS(10996), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3284), 9, + STATE(2750), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -268284,97 +269731,100 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [229693] = 18, - ACTIONS(3), 1, + [231249] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(314), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(320), 1, + ACTIONS(9338), 1, + anon_sym_LPAREN, + ACTIONS(9340), 1, + anon_sym_BANG, + ACTIONS(9346), 1, + anon_sym_TILDE, + ACTIONS(9348), 1, + anon_sym_DOLLAR, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(324), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(326), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(328), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(330), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(332), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(334), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(344), 1, - sym__brace_start, - ACTIONS(9400), 1, - sym_word, - ACTIONS(9406), 1, - sym__comment_word, - ACTIONS(10882), 1, - anon_sym_DOLLAR, - ACTIONS(312), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(336), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9402), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9404), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1037), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(10998), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3244), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [229761] = 18, + [231323] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8571), 1, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8577), 1, + ACTIONS(1115), 1, + anon_sym_DOLLAR, + ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, - anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8597), 1, + ACTIONS(1139), 1, sym__brace_start, - ACTIONS(10014), 1, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + ACTIONS(9464), 1, sym_word, - ACTIONS(10020), 1, + ACTIONS(9472), 1, sym__comment_word, - ACTIONS(10884), 1, - anon_sym_DOLLAR, - ACTIONS(8567), 2, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8593), 2, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10016), 2, + ACTIONS(9468), 2, sym_test_operator, sym__special_character, - ACTIONS(10018), 3, + ACTIONS(9470), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5199), 9, + STATE(2365), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -268384,50 +269834,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [229829] = 21, + [231391] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3123), 1, sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10886), 1, + ACTIONS(11000), 1, aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2778), 9, + STATE(2754), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -268437,50 +269887,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [229903] = 21, + [231465] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, + ACTIONS(9366), 1, sym_variable_name, - ACTIONS(10888), 1, + ACTIONS(11002), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(3180), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3447), 9, + STATE(3269), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -268490,50 +269940,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [229977] = 21, + [231539] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3123), 1, sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10890), 1, + ACTIONS(11004), 1, aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2917), 9, + STATE(2757), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -268543,50 +269993,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [230051] = 21, + [231613] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, + ACTIONS(9366), 1, sym_variable_name, - ACTIONS(10892), 1, + ACTIONS(11006), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(3180), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3449), 9, + STATE(3294), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -268596,197 +270046,153 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [230125] = 18, - ACTIONS(3), 1, + [231687] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(8474), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8480), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, + anon_sym_LPAREN, + ACTIONS(9434), 1, + anon_sym_BANG, + ACTIONS(9440), 1, + anon_sym_TILDE, + ACTIONS(9442), 1, + anon_sym_DOLLAR, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(8484), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(8486), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(8488), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8490), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8492), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(8494), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8504), 1, - sym__brace_start, - ACTIONS(10720), 1, - sym_word, - ACTIONS(10728), 1, - sym__comment_word, - ACTIONS(10894), 1, - anon_sym_DOLLAR, - ACTIONS(8470), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8496), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10724), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10726), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1625), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11008), 1, + aux_sym__simple_variable_name_token1, + STATE(2776), 1, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9438), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [230193] = 18, - ACTIONS(3), 1, + [231761] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(9754), 1, - sym_word, - ACTIONS(9758), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9764), 1, + ACTIONS(9338), 1, + anon_sym_LPAREN, + ACTIONS(9340), 1, + anon_sym_BANG, + ACTIONS(9346), 1, + anon_sym_TILDE, + ACTIONS(9348), 1, + anon_sym_DOLLAR, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9768), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9770), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9772), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9774), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9776), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9778), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9782), 1, - sym__comment_word, - ACTIONS(9784), 1, - sym__brace_start, - ACTIONS(10896), 1, - anon_sym_DOLLAR, - ACTIONS(9756), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9762), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9780), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9766), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(6225), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(11010), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3306), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [230261] = 18, + [231835] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5876), 1, - aux_sym_number_token1, - ACTIONS(5878), 1, - aux_sym_number_token2, - ACTIONS(5882), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5892), 1, - sym__brace_start, - ACTIONS(9546), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9550), 1, - anon_sym_DQUOTE, - ACTIONS(9554), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9556), 1, - anon_sym_BQUOTE, - ACTIONS(9558), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10300), 1, + ACTIONS(10724), 1, sym_word, - ACTIONS(10306), 1, - sym__comment_word, - ACTIONS(10898), 1, - anon_sym_DOLLAR, - ACTIONS(9544), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9560), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10302), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10304), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(5680), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [230329] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2636), 1, + ACTIONS(10728), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2642), 1, + ACTIONS(10734), 1, anon_sym_DQUOTE, - ACTIONS(2646), 1, + ACTIONS(10738), 1, aux_sym_number_token1, - ACTIONS(2648), 1, + ACTIONS(10740), 1, aux_sym_number_token2, - ACTIONS(2650), 1, + ACTIONS(10742), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2652), 1, + ACTIONS(10744), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2654), 1, + ACTIONS(10746), 1, anon_sym_BQUOTE, - ACTIONS(2656), 1, + ACTIONS(10748), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2664), 1, - sym__brace_start, - ACTIONS(9620), 1, - sym_word, - ACTIONS(9626), 1, + ACTIONS(10752), 1, sym__comment_word, - ACTIONS(10900), 1, + ACTIONS(10754), 1, + sym__brace_start, + ACTIONS(11012), 1, anon_sym_DOLLAR, - ACTIONS(2630), 2, + ACTIONS(10726), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2658), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9622), 2, + ACTIONS(10732), 2, sym_test_operator, sym__special_character, - ACTIONS(9624), 3, + ACTIONS(10750), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10736), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2344), 9, + STATE(6232), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -268796,50 +270202,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [230397] = 21, + [231903] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3123), 1, sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10902), 1, + ACTIONS(11014), 1, aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2916), 9, + STATE(2760), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -268849,50 +270255,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [230471] = 21, + [231977] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10904), 1, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(11016), 1, aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(3180), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2915), 9, + STATE(3330), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -268902,100 +270308,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [230545] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7996), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8002), 1, - anon_sym_DQUOTE, - ACTIONS(8006), 1, - aux_sym_number_token1, - ACTIONS(8008), 1, - aux_sym_number_token2, - ACTIONS(8010), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8012), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8014), 1, - anon_sym_BQUOTE, - ACTIONS(8016), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8026), 1, - sym__brace_start, - ACTIONS(9356), 1, - sym_word, - ACTIONS(9362), 1, - sym__comment_word, - ACTIONS(10906), 1, - anon_sym_DOLLAR, - ACTIONS(7992), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8018), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9358), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9360), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(3510), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [230613] = 21, + [232051] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3123), 1, sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10908), 1, + ACTIONS(11018), 1, aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2899), 9, + STATE(2763), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -269005,150 +270361,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [230687] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3191), 1, - aux_sym_number_token1, - ACTIONS(3193), 1, - aux_sym_number_token2, - ACTIONS(3197), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3209), 1, - sym__brace_start, - ACTIONS(9674), 1, - sym_word, - ACTIONS(9678), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9682), 1, - anon_sym_DQUOTE, - ACTIONS(9686), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9688), 1, - anon_sym_BQUOTE, - ACTIONS(9690), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9694), 1, - sym__comment_word, - ACTIONS(10910), 1, - anon_sym_DOLLAR, - ACTIONS(9676), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9680), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9692), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9684), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1733), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [230755] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5876), 1, - aux_sym_number_token1, - ACTIONS(5878), 1, - aux_sym_number_token2, - ACTIONS(5882), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5892), 1, - sym__brace_start, - ACTIONS(9546), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9550), 1, - anon_sym_DQUOTE, - ACTIONS(9554), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9556), 1, - anon_sym_BQUOTE, - ACTIONS(9558), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10300), 1, - sym_word, - ACTIONS(10306), 1, - sym__comment_word, - ACTIONS(10912), 1, - anon_sym_DOLLAR, - ACTIONS(9544), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9560), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10302), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10304), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(5680), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [230823] = 21, + [232125] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(3586), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9278), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(11020), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(3180), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2840), 9, + STATE(3369), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -269158,47 +270414,47 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [230897] = 18, + [232199] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5616), 1, - aux_sym_number_token1, - ACTIONS(5618), 1, - aux_sym_number_token2, - ACTIONS(5622), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5632), 1, - sym__brace_start, - ACTIONS(8944), 1, + ACTIONS(4775), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8948), 1, + ACTIONS(4781), 1, anon_sym_DQUOTE, - ACTIONS(8952), 1, + ACTIONS(4785), 1, + aux_sym_number_token1, + ACTIONS(4787), 1, + aux_sym_number_token2, + ACTIONS(4789), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8954), 1, + ACTIONS(4791), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4793), 1, anon_sym_BQUOTE, - ACTIONS(8956), 1, + ACTIONS(4795), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10290), 1, + ACTIONS(4801), 1, + sym__brace_start, + ACTIONS(10542), 1, sym_word, - ACTIONS(10296), 1, + ACTIONS(10548), 1, sym__comment_word, - ACTIONS(10914), 1, + ACTIONS(11022), 1, anon_sym_DOLLAR, - ACTIONS(8942), 2, + ACTIONS(4773), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8958), 2, + ACTIONS(4797), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10292), 2, + ACTIONS(10544), 2, sym_test_operator, sym__special_character, - ACTIONS(10294), 3, + ACTIONS(10546), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(3415), 9, + STATE(2599), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -269208,50 +270464,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [230965] = 21, + [232267] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3123), 1, sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10916), 1, + ACTIONS(11024), 1, aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2894), 9, + STATE(2764), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -269261,97 +270517,100 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [231039] = 18, - ACTIONS(3), 1, + [232341] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(8571), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8577), 1, + ACTIONS(9338), 1, + anon_sym_LPAREN, + ACTIONS(9340), 1, + anon_sym_BANG, + ACTIONS(9346), 1, + anon_sym_TILDE, + ACTIONS(9348), 1, + anon_sym_DOLLAR, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(8581), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(8583), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(8585), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8587), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8589), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8597), 1, - sym__brace_start, - ACTIONS(10014), 1, - sym_word, - ACTIONS(10020), 1, - sym__comment_word, - ACTIONS(10918), 1, - anon_sym_DOLLAR, - ACTIONS(8567), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8593), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10016), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10018), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(5199), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(11026), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3405), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [231107] = 18, + [232415] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2792), 1, - aux_sym_number_token1, - ACTIONS(2794), 1, - aux_sym_number_token2, - ACTIONS(2798), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2810), 1, - sym__brace_start, - ACTIONS(10500), 1, - sym_word, - ACTIONS(10504), 1, + ACTIONS(4775), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10508), 1, + ACTIONS(4781), 1, anon_sym_DQUOTE, - ACTIONS(10512), 1, + ACTIONS(4785), 1, + aux_sym_number_token1, + ACTIONS(4787), 1, + aux_sym_number_token2, + ACTIONS(4789), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10514), 1, + ACTIONS(4791), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4793), 1, anon_sym_BQUOTE, - ACTIONS(10516), 1, + ACTIONS(4795), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10520), 1, + ACTIONS(4801), 1, + sym__brace_start, + ACTIONS(10542), 1, + sym_word, + ACTIONS(10548), 1, sym__comment_word, - ACTIONS(10920), 1, + ACTIONS(11028), 1, anon_sym_DOLLAR, - ACTIONS(10502), 2, + ACTIONS(4773), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10506), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10518), 2, + ACTIONS(4797), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10510), 3, + ACTIONS(10544), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10546), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1569), 9, + STATE(2599), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -269361,50 +270620,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [231175] = 21, + [232483] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(10922), 1, + ACTIONS(11030), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3273), 9, + STATE(2770), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -269414,50 +270673,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [231249] = 21, + [232557] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(4048), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9278), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(11032), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(3180), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2848), 9, + STATE(3418), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -269467,50 +270726,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [231323] = 21, + [232631] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3123), 1, sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10924), 1, + ACTIONS(11034), 1, aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2779), 9, + STATE(2774), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -269520,252 +270779,156 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [231397] = 18, - ACTIONS(3), 1, + [232705] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(2792), 1, - aux_sym_number_token1, - ACTIONS(2794), 1, - aux_sym_number_token2, - ACTIONS(2798), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2810), 1, - sym__brace_start, - ACTIONS(10500), 1, - sym_word, - ACTIONS(10504), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10508), 1, - anon_sym_DQUOTE, - ACTIONS(10512), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10514), 1, - anon_sym_BQUOTE, - ACTIONS(10516), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10520), 1, - sym__comment_word, - ACTIONS(10926), 1, + ACTIONS(9338), 1, + anon_sym_LPAREN, + ACTIONS(9340), 1, + anon_sym_BANG, + ACTIONS(9346), 1, + anon_sym_TILDE, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(10502), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10506), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10518), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10510), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1569), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [231465] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7996), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8002), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(8006), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(8008), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(8010), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8012), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8014), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(8016), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8026), 1, - sym__brace_start, - ACTIONS(9356), 1, - sym_word, ACTIONS(9362), 1, - sym__comment_word, - ACTIONS(10928), 1, - anon_sym_DOLLAR, - ACTIONS(7992), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8018), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9358), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9360), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(3510), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [231533] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3441), 1, - aux_sym_number_token1, - ACTIONS(3443), 1, - aux_sym_number_token2, - ACTIONS(3447), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3459), 1, - sym__brace_start, - ACTIONS(10930), 1, - sym_word, - ACTIONS(10934), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10936), 1, - anon_sym_DOLLAR, - ACTIONS(10940), 1, - anon_sym_DQUOTE, - ACTIONS(10944), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10946), 1, - anon_sym_BQUOTE, - ACTIONS(10948), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10952), 1, - sym__comment_word, - ACTIONS(10932), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10938), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10950), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10942), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1859), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(11036), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3168), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [231601] = 20, + [232779] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8178), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8180), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, + anon_sym_LPAREN, + ACTIONS(9434), 1, + anon_sym_BANG, + ACTIONS(9440), 1, + anon_sym_TILDE, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(8182), 1, - sym__special_character, - ACTIONS(8184), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(8188), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(8190), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(8192), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8194), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8196), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(8198), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8208), 1, - sym__brace_start, - ACTIONS(10954), 1, - sym_word, - ACTIONS(10958), 1, - sym_test_operator, - STATE(1738), 1, - aux_sym__literal_repeat1, - STATE(1952), 1, - sym_concatenation, - ACTIONS(8174), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8200), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10956), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2325), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11038), 1, + aux_sym__simple_variable_name_token1, + STATE(2776), 1, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9438), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2777), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [231673] = 21, + [232853] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10960), 1, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(11040), 1, aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(3180), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3017), 9, + STATE(3171), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -269775,102 +270938,103 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [231747] = 20, + [232927] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8178), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8180), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, + anon_sym_LPAREN, + ACTIONS(9434), 1, + anon_sym_BANG, + ACTIONS(9440), 1, + anon_sym_TILDE, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(8184), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(8188), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(8190), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(8192), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8194), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8196), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(8198), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8208), 1, - sym__brace_start, - ACTIONS(8220), 1, - sym__special_character, - ACTIONS(10962), 1, - sym_word, - ACTIONS(10966), 1, - sym_test_operator, - STATE(1741), 1, - aux_sym__literal_repeat1, - STATE(1958), 1, - sym_concatenation, - ACTIONS(8174), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8200), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10964), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1344), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11042), 1, + aux_sym__simple_variable_name_token1, + STATE(2776), 1, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9438), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2778), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [231819] = 21, + [233001] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(4046), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9278), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(11044), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(3180), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2843), 9, + STATE(3176), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -269880,102 +271044,103 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [231893] = 20, + [233075] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8178), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8180), 1, + ACTIONS(3121), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, + anon_sym_LPAREN, + ACTIONS(9434), 1, + anon_sym_BANG, + ACTIONS(9440), 1, + anon_sym_TILDE, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(8182), 1, - sym__special_character, - ACTIONS(8184), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(8188), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(8190), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(8192), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8194), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8196), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(8198), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8208), 1, - sym__brace_start, - ACTIONS(10968), 1, - sym_word, - ACTIONS(10972), 1, - sym_test_operator, - STATE(1741), 1, - aux_sym__literal_repeat1, - STATE(1958), 1, - sym_concatenation, - ACTIONS(8174), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8200), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10970), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2283), 9, - sym_arithmetic_expansion, - sym_brace_expression, + STATE(2776), 1, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9438), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2779), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [231965] = 21, + [233149] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, + ACTIONS(9366), 1, sym_variable_name, - ACTIONS(10974), 1, + ACTIONS(11046), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(3180), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3268), 9, + STATE(3183), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -269985,100 +271150,103 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [232039] = 18, - ACTIONS(3), 1, + [233223] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(4502), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4508), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, + anon_sym_LPAREN, + ACTIONS(9434), 1, + anon_sym_BANG, + ACTIONS(9440), 1, + anon_sym_TILDE, + ACTIONS(9442), 1, + anon_sym_DOLLAR, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(4512), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(4514), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(4516), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4518), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4520), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(4522), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4528), 1, - sym__brace_start, - ACTIONS(10256), 1, - sym_word, - ACTIONS(10262), 1, - sym__comment_word, - ACTIONS(10976), 1, - anon_sym_DOLLAR, - ACTIONS(4500), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4524), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10258), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10260), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2450), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11048), 1, + aux_sym__simple_variable_name_token1, + STATE(2776), 1, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9438), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2783), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [232107] = 21, + [233297] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10978), 1, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(11050), 1, aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(3180), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2781), 9, + STATE(3194), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -270088,149 +271256,153 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [232181] = 20, + [233371] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(8178), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8180), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, + anon_sym_LPAREN, + ACTIONS(9434), 1, + anon_sym_BANG, + ACTIONS(9440), 1, + anon_sym_TILDE, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(8184), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(8188), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(8190), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(8192), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8194), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8196), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(8198), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8208), 1, - sym__brace_start, - ACTIONS(8220), 1, - sym__special_character, - ACTIONS(10980), 1, - sym_word, - ACTIONS(10984), 1, - sym_test_operator, - STATE(1738), 1, - aux_sym__literal_repeat1, - STATE(1952), 1, - sym_concatenation, - ACTIONS(8174), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8200), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10982), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1330), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11052), 1, + aux_sym__simple_variable_name_token1, + STATE(2776), 1, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9438), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2786), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [232253] = 18, - ACTIONS(3), 1, + [233445] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1149), 1, + ACTIONS(9338), 1, + anon_sym_LPAREN, + ACTIONS(9340), 1, + anon_sym_BANG, + ACTIONS(9346), 1, + anon_sym_TILDE, + ACTIONS(9348), 1, + anon_sym_DOLLAR, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(1153), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(1155), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(1157), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(3060), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(10188), 1, - sym_word, - ACTIONS(10196), 1, - sym__comment_word, - ACTIONS(10986), 1, - anon_sym_DOLLAR, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10192), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10194), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2392), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9362), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(11054), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3199), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [232321] = 18, + [233519] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4502), 1, + ACTIONS(5117), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4508), 1, + ACTIONS(5123), 1, anon_sym_DQUOTE, - ACTIONS(4512), 1, + ACTIONS(5127), 1, aux_sym_number_token1, - ACTIONS(4514), 1, + ACTIONS(5129), 1, aux_sym_number_token2, - ACTIONS(4516), 1, + ACTIONS(5131), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4518), 1, + ACTIONS(5133), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4520), 1, + ACTIONS(5135), 1, anon_sym_BQUOTE, - ACTIONS(4522), 1, + ACTIONS(5137), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4528), 1, + ACTIONS(5143), 1, sym__brace_start, - ACTIONS(10256), 1, + ACTIONS(10552), 1, sym_word, - ACTIONS(10262), 1, + ACTIONS(10558), 1, sym__comment_word, - ACTIONS(10988), 1, + ACTIONS(11056), 1, anon_sym_DOLLAR, - ACTIONS(4500), 2, + ACTIONS(5115), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4524), 2, + ACTIONS(5139), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10258), 2, + ACTIONS(10554), 2, sym_test_operator, sym__special_character, - ACTIONS(10260), 3, + ACTIONS(10556), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2450), 9, + STATE(5433), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -270240,101 +271412,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [232389] = 20, + [233587] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(4080), 1, - anon_sym_DOLLAR, - ACTIONS(4086), 1, - aux_sym_number_token1, - ACTIONS(4088), 1, - aux_sym_number_token2, - ACTIONS(4092), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4102), 1, - sym__brace_start, - ACTIONS(9310), 1, + ACTIONS(8414), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9316), 1, - anon_sym_DQUOTE, - ACTIONS(9320), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9322), 1, - anon_sym_BQUOTE, - ACTIONS(9324), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10990), 1, - sym_word, - ACTIONS(10992), 1, - sym__special_character, - ACTIONS(10996), 1, - sym_test_operator, - STATE(4500), 1, - aux_sym__literal_repeat1, - STATE(5029), 1, - sym_concatenation, - ACTIONS(9308), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9326), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10994), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4992), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [232461] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4080), 1, + ACTIONS(8416), 1, anon_sym_DOLLAR, - ACTIONS(4086), 1, + ACTIONS(8418), 1, + sym__special_character, + ACTIONS(8420), 1, + anon_sym_DQUOTE, + ACTIONS(8424), 1, aux_sym_number_token1, - ACTIONS(4088), 1, + ACTIONS(8426), 1, aux_sym_number_token2, - ACTIONS(4092), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4102), 1, - sym__brace_start, - ACTIONS(9310), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9316), 1, - anon_sym_DQUOTE, - ACTIONS(9320), 1, + ACTIONS(8428), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9322), 1, + ACTIONS(8430), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8432), 1, anon_sym_BQUOTE, - ACTIONS(9324), 1, + ACTIONS(8434), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10992), 1, - sym__special_character, - ACTIONS(10998), 1, + ACTIONS(8444), 1, + sym__brace_start, + ACTIONS(11058), 1, sym_word, - ACTIONS(11002), 1, + ACTIONS(11062), 1, sym_test_operator, - STATE(4421), 1, + STATE(1895), 1, aux_sym__literal_repeat1, - STATE(4869), 1, + STATE(2195), 1, sym_concatenation, - ACTIONS(9308), 2, + ACTIONS(8410), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9326), 2, + ACTIONS(8436), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11000), 2, + ACTIONS(11060), 2, sym_raw_string, sym_ansi_c_string, - STATE(4896), 9, + STATE(1449), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -270344,50 +271464,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [232533] = 21, + [233659] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3602), 1, + ACTIONS(3123), 1, sym_variable_name, - ACTIONS(3759), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9898), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9900), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9906), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9908), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9910), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9912), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9914), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9916), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9918), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9920), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9922), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3359), 1, - sym__arithmetic_postfix_expression, - STATE(3361), 1, + ACTIONS(11064), 1, + aux_sym__simple_variable_name_token1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(3367), 1, - sym__arithmetic_ternary_expression, - STATE(3375), 1, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, sym__arithmetic_binary_expression, - ACTIONS(9902), 2, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9904), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3278), 9, + STATE(2790), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -270397,50 +271517,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [232607] = 21, + [233733] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3600), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3602), 1, - sym_variable_name, - ACTIONS(9898), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9900), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9906), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9908), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9910), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9912), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9914), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9916), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9918), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9920), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9922), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3359), 1, - sym__arithmetic_postfix_expression, - STATE(3361), 1, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(11066), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(3367), 1, - sym__arithmetic_ternary_expression, - STATE(3375), 1, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, sym__arithmetic_binary_expression, - ACTIONS(9902), 2, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9904), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3281), 9, + STATE(3206), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -270450,49 +271570,47 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [232681] = 20, - ACTIONS(71), 1, + [233807] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(9758), 1, + ACTIONS(5117), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9760), 1, - anon_sym_DOLLAR, - ACTIONS(9764), 1, + ACTIONS(5123), 1, anon_sym_DQUOTE, - ACTIONS(9768), 1, + ACTIONS(5127), 1, aux_sym_number_token1, - ACTIONS(9770), 1, + ACTIONS(5129), 1, aux_sym_number_token2, - ACTIONS(9772), 1, + ACTIONS(5131), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9774), 1, + ACTIONS(5133), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9776), 1, + ACTIONS(5135), 1, anon_sym_BQUOTE, - ACTIONS(9778), 1, + ACTIONS(5137), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9784), 1, + ACTIONS(5143), 1, sym__brace_start, - ACTIONS(10052), 1, - sym__special_character, - ACTIONS(11004), 1, + ACTIONS(10552), 1, sym_word, - ACTIONS(11008), 1, - sym_test_operator, - STATE(6220), 1, - aux_sym__literal_repeat1, - STATE(6376), 1, - sym_concatenation, - ACTIONS(9756), 2, + ACTIONS(10558), 1, + sym__comment_word, + ACTIONS(11068), 1, + anon_sym_DOLLAR, + ACTIONS(5115), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9780), 2, + ACTIONS(5139), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11006), 2, + ACTIONS(10554), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10556), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(6198), 9, + STATE(5433), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -270502,50 +271620,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [232753] = 21, + [233875] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3602), 1, + ACTIONS(3123), 1, sym_variable_name, - ACTIONS(3604), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9898), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9900), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9906), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9908), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9910), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9912), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9914), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9916), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9918), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9920), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9922), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3359), 1, - sym__arithmetic_postfix_expression, - STATE(3361), 1, + ACTIONS(11070), 1, + aux_sym__simple_variable_name_token1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(3367), 1, - sym__arithmetic_ternary_expression, - STATE(3375), 1, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, sym__arithmetic_binary_expression, - ACTIONS(9902), 2, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9904), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3283), 9, + STATE(2793), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -270555,50 +271673,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [232827] = 21, + [233949] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3602), 1, - sym_variable_name, - ACTIONS(4042), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9898), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9900), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9906), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9908), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9910), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9912), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9914), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9916), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9918), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9920), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9922), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3359), 1, - sym__arithmetic_postfix_expression, - STATE(3361), 1, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(11072), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(3367), 1, - sym__arithmetic_ternary_expression, - STATE(3375), 1, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, sym__arithmetic_binary_expression, - ACTIONS(9902), 2, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9904), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3368), 9, + STATE(3211), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -270608,251 +271726,155 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [232901] = 20, + [234023] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3787), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, + anon_sym_LPAREN, + ACTIONS(9434), 1, + anon_sym_BANG, + ACTIONS(9440), 1, + anon_sym_TILDE, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(3793), 1, + ACTIONS(9444), 1, + anon_sym_DQUOTE, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(3795), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(3799), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3809), 1, - sym__brace_start, - ACTIONS(9636), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9640), 1, - anon_sym_DQUOTE, - ACTIONS(9644), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9646), 1, + ACTIONS(9452), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9648), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11010), 1, - sym_word, - ACTIONS(11012), 1, - sym__special_character, - ACTIONS(11016), 1, - sym_test_operator, - STATE(4294), 1, - aux_sym__literal_repeat1, - STATE(4861), 1, - sym_concatenation, - ACTIONS(9634), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9650), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11014), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4806), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11074), 1, + aux_sym__simple_variable_name_token1, + STATE(2776), 1, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9438), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2795), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [232973] = 20, + [234097] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3787), 1, + ACTIONS(9338), 1, + anon_sym_LPAREN, + ACTIONS(9340), 1, + anon_sym_BANG, + ACTIONS(9346), 1, + anon_sym_TILDE, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(3793), 1, - aux_sym_number_token1, - ACTIONS(3795), 1, - aux_sym_number_token2, - ACTIONS(3799), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3809), 1, - sym__brace_start, - ACTIONS(9636), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9640), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9644), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9646), 1, - anon_sym_BQUOTE, - ACTIONS(9648), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11012), 1, - sym__special_character, - ACTIONS(11018), 1, - sym_word, - ACTIONS(11022), 1, - sym_test_operator, - STATE(4347), 1, - aux_sym__literal_repeat1, - STATE(4617), 1, - sym_concatenation, - ACTIONS(9634), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9650), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11020), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4750), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [233045] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3435), 1, - anon_sym_DOLLAR, - ACTIONS(3441), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(3443), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(3447), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3459), 1, - sym__brace_start, - ACTIONS(10930), 1, - sym_word, - ACTIONS(10934), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10940), 1, - anon_sym_DQUOTE, - ACTIONS(10944), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10946), 1, + ACTIONS(9358), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(10948), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10952), 1, - sym__comment_word, - ACTIONS(10932), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10938), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10950), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10942), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1859), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(11076), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3216), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [233113] = 18, - ACTIONS(3), 1, + [234171] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(4820), 1, + ACTIONS(10728), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4826), 1, + ACTIONS(10730), 1, + anon_sym_DOLLAR, + ACTIONS(10734), 1, anon_sym_DQUOTE, - ACTIONS(4830), 1, + ACTIONS(10738), 1, aux_sym_number_token1, - ACTIONS(4832), 1, + ACTIONS(10740), 1, aux_sym_number_token2, - ACTIONS(4834), 1, + ACTIONS(10742), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4836), 1, + ACTIONS(10744), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4838), 1, + ACTIONS(10746), 1, anon_sym_BQUOTE, - ACTIONS(4840), 1, + ACTIONS(10748), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4848), 1, + ACTIONS(10754), 1, sym__brace_start, - ACTIONS(9534), 1, + ACTIONS(11078), 1, sym_word, - ACTIONS(9540), 1, - sym__comment_word, - ACTIONS(11024), 1, - anon_sym_DOLLAR, - ACTIONS(4818), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4842), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9536), 2, - sym_test_operator, + ACTIONS(11080), 1, sym__special_character, - ACTIONS(9538), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2707), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [233181] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1460), 1, - aux_sym_number_token1, - ACTIONS(1462), 1, - aux_sym_number_token2, - ACTIONS(1466), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1478), 1, - sym__brace_start, - ACTIONS(8878), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8882), 1, - anon_sym_DQUOTE, - ACTIONS(8886), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8888), 1, - anon_sym_BQUOTE, - ACTIONS(8890), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10522), 1, - sym_word, - ACTIONS(10528), 1, - sym__comment_word, - ACTIONS(11026), 1, - anon_sym_DOLLAR, - ACTIONS(8876), 2, + ACTIONS(11084), 1, + sym_test_operator, + STATE(6213), 1, + aux_sym__literal_repeat1, + STATE(6397), 1, + sym_concatenation, + ACTIONS(10726), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8892), 2, + ACTIONS(10750), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10524), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10526), 3, - sym__bare_dollar, + ACTIONS(11082), 2, sym_raw_string, sym_ansi_c_string, - STATE(1120), 9, + STATE(6202), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -270862,50 +271884,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [233249] = 21, + [234243] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(11028), 1, + ACTIONS(11086), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3434), 9, + STATE(2801), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -270915,50 +271937,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [233323] = 21, + [234317] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, + ACTIONS(9366), 1, sym_variable_name, - ACTIONS(11030), 1, + ACTIONS(11088), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(3180), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3433), 9, + STATE(3218), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -270968,50 +271990,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [233397] = 21, + [234391] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(11032), 1, + ACTIONS(11090), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3432), 9, + STATE(2804), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -271021,100 +272043,103 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [233471] = 18, - ACTIONS(3), 1, + [234465] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1460), 1, + ACTIONS(9338), 1, + anon_sym_LPAREN, + ACTIONS(9340), 1, + anon_sym_BANG, + ACTIONS(9346), 1, + anon_sym_TILDE, + ACTIONS(9348), 1, + anon_sym_DOLLAR, + ACTIONS(9350), 1, + anon_sym_DQUOTE, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(1462), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(1466), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1478), 1, - sym__brace_start, - ACTIONS(8878), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8882), 1, - anon_sym_DQUOTE, - ACTIONS(8886), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8888), 1, + ACTIONS(9358), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(8890), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10522), 1, - sym_word, - ACTIONS(10528), 1, - sym__comment_word, - ACTIONS(11034), 1, - anon_sym_DOLLAR, - ACTIONS(8876), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8892), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10524), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10526), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1120), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(11092), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3221), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [233539] = 21, + [234539] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(11036), 1, + ACTIONS(11094), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3431), 9, + STATE(2805), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -271124,50 +272149,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [233613] = 21, + [234613] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, + ACTIONS(9366), 1, sym_variable_name, - ACTIONS(11038), 1, + ACTIONS(11096), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(3180), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3260), 9, + STATE(3222), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -271177,50 +272202,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [233687] = 21, + [234687] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3123), 1, sym_variable_name, - ACTIONS(3465), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9278), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + ACTIONS(11098), 1, + aux_sym__simple_variable_name_token1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2782), 9, + STATE(2806), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -271230,50 +272255,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [233761] = 21, + [234761] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11040), 1, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(11100), 1, aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(3180), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2845), 9, + STATE(3226), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -271283,49 +272308,47 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [233835] = 20, - ACTIONS(71), 1, + [234835] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(1551), 1, - anon_sym_DOLLAR, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1563), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, - sym__brace_start, - ACTIONS(9198), 1, + ACTIONS(4601), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9202), 1, + ACTIONS(4607), 1, anon_sym_DQUOTE, - ACTIONS(9206), 1, + ACTIONS(4611), 1, + aux_sym_number_token1, + ACTIONS(4613), 1, + aux_sym_number_token2, + ACTIONS(4615), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9208), 1, + ACTIONS(4617), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4619), 1, anon_sym_BQUOTE, - ACTIONS(9210), 1, + ACTIONS(4621), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9262), 1, - sym__special_character, - ACTIONS(11042), 1, + ACTIONS(4627), 1, + sym__brace_start, + ACTIONS(10562), 1, sym_word, - ACTIONS(11046), 1, - sym_test_operator, - STATE(1436), 1, - aux_sym__literal_repeat1, - STATE(1543), 1, - sym_concatenation, - ACTIONS(9196), 2, + ACTIONS(10568), 1, + sym__comment_word, + ACTIONS(11102), 1, + anon_sym_DOLLAR, + ACTIONS(4599), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9212), 2, + ACTIONS(4623), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11044), 2, + ACTIONS(10564), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10566), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1752), 9, + STATE(2527), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -271335,97 +272358,153 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [233907] = 18, - ACTIONS(3), 1, + [234903] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(5616), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, + anon_sym_LPAREN, + ACTIONS(9434), 1, + anon_sym_BANG, + ACTIONS(9440), 1, + anon_sym_TILDE, + ACTIONS(9442), 1, + anon_sym_DOLLAR, + ACTIONS(9444), 1, + anon_sym_DQUOTE, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(5618), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(5622), 1, + ACTIONS(9450), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5632), 1, - sym__brace_start, - ACTIONS(8944), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8948), 1, + ACTIONS(9454), 1, + anon_sym_BQUOTE, + ACTIONS(9456), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11104), 1, + aux_sym__simple_variable_name_token1, + STATE(2776), 1, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9438), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2810), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [234977] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9338), 1, + anon_sym_LPAREN, + ACTIONS(9340), 1, + anon_sym_BANG, + ACTIONS(9346), 1, + anon_sym_TILDE, + ACTIONS(9348), 1, + anon_sym_DOLLAR, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(8952), 1, + ACTIONS(9352), 1, + aux_sym_number_token1, + ACTIONS(9354), 1, + aux_sym_number_token2, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8954), 1, + ACTIONS(9358), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(8956), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10290), 1, - sym_word, - ACTIONS(10296), 1, - sym__comment_word, - ACTIONS(11048), 1, - anon_sym_DOLLAR, - ACTIONS(8942), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8958), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10292), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10294), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(3415), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(11106), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3229), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [233975] = 18, + [235051] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2636), 1, + ACTIONS(4601), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2642), 1, + ACTIONS(4607), 1, anon_sym_DQUOTE, - ACTIONS(2646), 1, + ACTIONS(4611), 1, aux_sym_number_token1, - ACTIONS(2648), 1, + ACTIONS(4613), 1, aux_sym_number_token2, - ACTIONS(2650), 1, + ACTIONS(4615), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2652), 1, + ACTIONS(4617), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2654), 1, + ACTIONS(4619), 1, anon_sym_BQUOTE, - ACTIONS(2656), 1, + ACTIONS(4621), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2664), 1, + ACTIONS(4627), 1, sym__brace_start, - ACTIONS(9620), 1, + ACTIONS(10562), 1, sym_word, - ACTIONS(9626), 1, + ACTIONS(10568), 1, sym__comment_word, - ACTIONS(11050), 1, + ACTIONS(11108), 1, anon_sym_DOLLAR, - ACTIONS(2630), 2, + ACTIONS(4599), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2658), 2, + ACTIONS(4623), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9622), 2, + ACTIONS(10564), 2, sym_test_operator, sym__special_character, - ACTIONS(9624), 3, + ACTIONS(10566), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2344), 9, + STATE(2527), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -271435,100 +272514,103 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [234043] = 18, - ACTIONS(3), 1, + [235119] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(3441), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, + anon_sym_LPAREN, + ACTIONS(9434), 1, + anon_sym_BANG, + ACTIONS(9440), 1, + anon_sym_TILDE, + ACTIONS(9442), 1, + anon_sym_DOLLAR, + ACTIONS(9444), 1, + anon_sym_DQUOTE, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(3443), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(3447), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3459), 1, - sym__brace_start, - ACTIONS(10930), 1, - sym_word, - ACTIONS(10934), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10940), 1, - anon_sym_DQUOTE, - ACTIONS(10944), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10946), 1, + ACTIONS(9452), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(10948), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10952), 1, - sym__comment_word, - ACTIONS(11052), 1, - anon_sym_DOLLAR, - ACTIONS(10932), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10938), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10950), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10942), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1859), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11110), 1, + aux_sym__simple_variable_name_token1, + STATE(2776), 1, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9438), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2814), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [234111] = 21, + [235193] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, + ACTIONS(9366), 1, sym_variable_name, - ACTIONS(11054), 1, + ACTIONS(11112), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(3180), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3430), 9, + STATE(3232), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -271538,50 +272620,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [234185] = 21, + [235267] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(11056), 1, + ACTIONS(11114), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3429), 9, + STATE(2816), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -271591,50 +272673,103 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [234259] = 21, + [235341] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, + ACTIONS(9366), 1, sym_variable_name, - ACTIONS(11058), 1, + ACTIONS(11116), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, sym__arithmetic_binary_expression, - STATE(3396), 1, + STATE(3438), 1, sym__arithmetic_ternary_expression, - STATE(3398), 1, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3237), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [235415] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(3485), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(9432), 1, + anon_sym_LPAREN, + ACTIONS(9434), 1, + anon_sym_BANG, + ACTIONS(9440), 1, + anon_sym_TILDE, + ACTIONS(9442), 1, + anon_sym_DOLLAR, + ACTIONS(9444), 1, + anon_sym_DQUOTE, + ACTIONS(9446), 1, + aux_sym_number_token1, + ACTIONS(9448), 1, + aux_sym_number_token2, + ACTIONS(9450), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9452), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9454), 1, + anon_sym_BQUOTE, + ACTIONS(9456), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3257), 9, + STATE(2817), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -271644,50 +272779,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [234333] = 21, + [235489] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, + ACTIONS(9366), 1, sym_variable_name, - ACTIONS(11060), 1, + ACTIONS(11118), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(3180), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3428), 9, + STATE(3240), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -271697,50 +272832,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [234407] = 21, + [235563] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(11062), 1, + ACTIONS(11120), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3425), 9, + STATE(2821), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -271750,50 +272885,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [234481] = 21, + [235637] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, + ACTIONS(9366), 1, sym_variable_name, - ACTIONS(11064), 1, + ACTIONS(11122), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(3180), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3421), 9, + STATE(3248), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -271803,50 +272938,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [234555] = 21, + [235711] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(11066), 1, + ACTIONS(11124), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3413), 9, + STATE(2826), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -271856,50 +272991,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [234629] = 21, + [235785] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, + ACTIONS(9366), 1, sym_variable_name, - ACTIONS(11068), 1, + ACTIONS(11126), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(3180), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3412), 9, + STATE(3253), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -271909,50 +273044,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [234703] = 21, + [235859] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(11070), 1, + ACTIONS(11128), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3410), 9, + STATE(2829), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -271962,50 +273097,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [234777] = 21, + [235933] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, + ACTIONS(9366), 1, sym_variable_name, - ACTIONS(11072), 1, + ACTIONS(11130), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(3180), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3409), 9, + STATE(3255), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -272015,99 +273150,47 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [234851] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1551), 1, - anon_sym_DOLLAR, - ACTIONS(1557), 1, - aux_sym_number_token1, - ACTIONS(1559), 1, - aux_sym_number_token2, - ACTIONS(1563), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1575), 1, - sym__brace_start, - ACTIONS(9198), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9202), 1, - anon_sym_DQUOTE, - ACTIONS(9206), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9208), 1, - anon_sym_BQUOTE, - ACTIONS(9210), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9262), 1, - sym__special_character, - ACTIONS(11074), 1, - sym_word, - ACTIONS(11078), 1, - sym_test_operator, - STATE(1401), 1, - aux_sym__literal_repeat1, - STATE(1573), 1, - sym_concatenation, - ACTIONS(9196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9212), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11076), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1745), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [234923] = 18, + [236007] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(314), 1, + ACTIONS(4807), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(320), 1, + ACTIONS(4813), 1, anon_sym_DQUOTE, - ACTIONS(324), 1, + ACTIONS(4817), 1, aux_sym_number_token1, - ACTIONS(326), 1, + ACTIONS(4819), 1, aux_sym_number_token2, - ACTIONS(328), 1, + ACTIONS(4821), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(330), 1, + ACTIONS(4823), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(332), 1, + ACTIONS(4825), 1, anon_sym_BQUOTE, - ACTIONS(334), 1, + ACTIONS(4827), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(344), 1, + ACTIONS(4833), 1, sym__brace_start, - ACTIONS(9400), 1, + ACTIONS(10570), 1, sym_word, - ACTIONS(9406), 1, + ACTIONS(10576), 1, sym__comment_word, - ACTIONS(11080), 1, + ACTIONS(11132), 1, anon_sym_DOLLAR, - ACTIONS(312), 2, + ACTIONS(4805), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(336), 2, + ACTIONS(4829), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9402), 2, + ACTIONS(10572), 2, sym_test_operator, sym__special_character, - ACTIONS(9404), 3, + ACTIONS(10574), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1037), 9, + STATE(5347), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -272117,50 +273200,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [234991] = 21, + [236075] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3062), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3064), 1, + ACTIONS(3123), 1, sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + ACTIONS(11134), 1, + aux_sym__simple_variable_name_token1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2836), 9, + STATE(2830), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -272170,50 +273253,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [235065] = 21, + [236149] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, + ACTIONS(9366), 1, sym_variable_name, - ACTIONS(11082), 1, + ACTIONS(11136), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(3180), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3325), 9, + STATE(3258), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -272223,97 +273306,47 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [235139] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1141), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1149), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - aux_sym_number_token1, - ACTIONS(1155), 1, - aux_sym_number_token2, - ACTIONS(1157), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1159), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1169), 1, - sym__brace_start, - ACTIONS(3060), 1, - anon_sym_BQUOTE, - ACTIONS(10188), 1, - sym_word, - ACTIONS(10196), 1, - sym__comment_word, - ACTIONS(11084), 1, - anon_sym_DOLLAR, - ACTIONS(1129), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1165), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10192), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10194), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2392), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [235207] = 18, + [236223] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4767), 1, + ACTIONS(4807), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4773), 1, + ACTIONS(4813), 1, anon_sym_DQUOTE, - ACTIONS(4777), 1, + ACTIONS(4817), 1, aux_sym_number_token1, - ACTIONS(4779), 1, + ACTIONS(4819), 1, aux_sym_number_token2, - ACTIONS(4781), 1, + ACTIONS(4821), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4783), 1, + ACTIONS(4823), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4825), 1, anon_sym_BQUOTE, - ACTIONS(4787), 1, + ACTIONS(4827), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4793), 1, + ACTIONS(4833), 1, sym__brace_start, - ACTIONS(10264), 1, + ACTIONS(10570), 1, sym_word, - ACTIONS(10270), 1, + ACTIONS(10576), 1, sym__comment_word, - ACTIONS(11086), 1, + ACTIONS(11138), 1, anon_sym_DOLLAR, - ACTIONS(4765), 2, + ACTIONS(4805), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4789), 2, + ACTIONS(4829), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10266), 2, + ACTIONS(10572), 2, sym_test_operator, sym__special_character, - ACTIONS(10268), 3, + ACTIONS(10574), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5387), 9, + STATE(5347), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -272323,350 +273356,156 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [235275] = 18, - ACTIONS(3), 1, + [236291] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(3343), 1, - aux_sym_number_token1, - ACTIONS(3345), 1, - aux_sym_number_token2, - ACTIONS(3349), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3359), 1, - sym__brace_start, - ACTIONS(9046), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9050), 1, - anon_sym_DQUOTE, - ACTIONS(9054), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9056), 1, - anon_sym_BQUOTE, - ACTIONS(9058), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10530), 1, - sym_word, - ACTIONS(10536), 1, - sym__comment_word, - ACTIONS(11088), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, + anon_sym_LPAREN, + ACTIONS(9434), 1, + anon_sym_BANG, + ACTIONS(9440), 1, + anon_sym_TILDE, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9044), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9060), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10532), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10534), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1827), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [235343] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4767), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4773), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(4777), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(4779), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(4781), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4783), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4785), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(4787), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4793), 1, - sym__brace_start, - ACTIONS(10264), 1, - sym_word, - ACTIONS(10270), 1, - sym__comment_word, - ACTIONS(11090), 1, - anon_sym_DOLLAR, - ACTIONS(4765), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4789), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10266), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10268), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(5387), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11140), 1, + aux_sym__simple_variable_name_token1, + STATE(2776), 1, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9438), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2831), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [235411] = 18, - ACTIONS(3), 1, + [236365] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(9754), 1, - sym_word, - ACTIONS(9758), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9764), 1, - anon_sym_DQUOTE, - ACTIONS(9768), 1, - aux_sym_number_token1, - ACTIONS(9770), 1, - aux_sym_number_token2, - ACTIONS(9772), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9774), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9776), 1, - anon_sym_BQUOTE, - ACTIONS(9778), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9782), 1, - sym__comment_word, - ACTIONS(9784), 1, - sym__brace_start, - ACTIONS(11092), 1, + ACTIONS(9338), 1, + anon_sym_LPAREN, + ACTIONS(9340), 1, + anon_sym_BANG, + ACTIONS(9346), 1, + anon_sym_TILDE, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9756), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9762), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9780), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9766), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(6225), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [235479] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2044), 1, - aux_sym_number_token1, - ACTIONS(2046), 1, - aux_sym_number_token2, - ACTIONS(2050), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2064), 1, - sym__brace_start, - ACTIONS(8344), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8348), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(8352), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8354), 1, - anon_sym_BQUOTE, - ACTIONS(8356), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10846), 1, - sym_word, - ACTIONS(10852), 1, - sym__comment_word, - ACTIONS(11094), 1, - anon_sym_DOLLAR, - ACTIONS(8340), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8358), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10848), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10850), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1493), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [235547] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3343), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(3345), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(3349), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3359), 1, - sym__brace_start, - ACTIONS(9046), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9050), 1, - anon_sym_DQUOTE, - ACTIONS(9054), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9056), 1, - anon_sym_BQUOTE, - ACTIONS(9058), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10530), 1, - sym_word, - ACTIONS(10536), 1, - sym__comment_word, - ACTIONS(11096), 1, - anon_sym_DOLLAR, - ACTIONS(9044), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9060), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10532), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10534), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1827), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [235615] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2044), 1, - aux_sym_number_token1, - ACTIONS(2046), 1, - aux_sym_number_token2, - ACTIONS(2050), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2064), 1, - sym__brace_start, - ACTIONS(8344), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8348), 1, - anon_sym_DQUOTE, - ACTIONS(8352), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8354), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(8356), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10846), 1, - sym_word, - ACTIONS(10852), 1, - sym__comment_word, - ACTIONS(11098), 1, - anon_sym_DOLLAR, - ACTIONS(8340), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8358), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10848), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10850), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1493), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(11142), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3261), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [235683] = 21, + [236439] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3123), 1, sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11100), 1, + ACTIONS(11144), 1, aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2783), 9, + STATE(2839), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -272676,102 +273515,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [235757] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4080), 1, - anon_sym_DOLLAR, - ACTIONS(4086), 1, - aux_sym_number_token1, - ACTIONS(4088), 1, - aux_sym_number_token2, - ACTIONS(4092), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4102), 1, - sym__brace_start, - ACTIONS(9310), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9316), 1, - anon_sym_DQUOTE, - ACTIONS(9320), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9322), 1, - anon_sym_BQUOTE, - ACTIONS(9324), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11102), 1, - sym_word, - ACTIONS(11104), 1, - sym__special_character, - ACTIONS(11108), 1, - sym_test_operator, - STATE(4500), 1, - aux_sym__literal_repeat1, - STATE(5029), 1, - sym_concatenation, - ACTIONS(9308), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9326), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11106), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4622), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [235829] = 21, + [236513] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, + ACTIONS(9366), 1, sym_variable_name, - ACTIONS(11110), 1, + ACTIONS(11146), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(3180), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3252), 9, + STATE(3264), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -272781,152 +273568,156 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [235903] = 20, + [236587] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(4080), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, + anon_sym_LPAREN, + ACTIONS(9434), 1, + anon_sym_BANG, + ACTIONS(9440), 1, + anon_sym_TILDE, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(4086), 1, + ACTIONS(9444), 1, + anon_sym_DQUOTE, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(4088), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(4092), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4102), 1, - sym__brace_start, - ACTIONS(9310), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9316), 1, - anon_sym_DQUOTE, - ACTIONS(9320), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9322), 1, + ACTIONS(9452), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9324), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11104), 1, - sym__special_character, - ACTIONS(11112), 1, - sym_word, - ACTIONS(11116), 1, - sym_test_operator, - STATE(4421), 1, - aux_sym__literal_repeat1, - STATE(4869), 1, - sym_concatenation, - ACTIONS(9308), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9326), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11114), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4684), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11148), 1, + aux_sym__simple_variable_name_token1, + STATE(2776), 1, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9438), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2840), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [235975] = 18, - ACTIONS(3), 1, + [236661] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(8474), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8476), 1, + ACTIONS(9338), 1, + anon_sym_LPAREN, + ACTIONS(9340), 1, + anon_sym_BANG, + ACTIONS(9346), 1, + anon_sym_TILDE, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(8480), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(8484), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(8486), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(8488), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8490), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8492), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(8494), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8504), 1, - sym__brace_start, - ACTIONS(10720), 1, - sym_word, - ACTIONS(10728), 1, - sym__comment_word, - ACTIONS(8470), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8496), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10724), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10726), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1625), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(11150), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3268), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [236043] = 21, + [236735] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3123), 1, sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11118), 1, + ACTIONS(11152), 1, aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2784), 9, + STATE(2850), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -272936,304 +273727,209 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [236117] = 20, + [236809] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3787), 1, - anon_sym_DOLLAR, - ACTIONS(3793), 1, - aux_sym_number_token1, - ACTIONS(3795), 1, - aux_sym_number_token2, - ACTIONS(3799), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3809), 1, - sym__brace_start, - ACTIONS(9636), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9640), 1, - anon_sym_DQUOTE, - ACTIONS(9644), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9646), 1, - anon_sym_BQUOTE, - ACTIONS(9648), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11120), 1, - sym_word, - ACTIONS(11122), 1, - sym__special_character, - ACTIONS(11126), 1, - sym_test_operator, - STATE(4294), 1, - aux_sym__literal_repeat1, - STATE(4861), 1, - sym_concatenation, - ACTIONS(9634), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9650), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11124), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4463), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [236189] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3793), 1, - aux_sym_number_token1, - ACTIONS(3795), 1, - aux_sym_number_token2, - ACTIONS(3799), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3809), 1, - sym__brace_start, - ACTIONS(9636), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9640), 1, - anon_sym_DQUOTE, - ACTIONS(9644), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9646), 1, - anon_sym_BQUOTE, - ACTIONS(9648), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9872), 1, - sym_word, - ACTIONS(9880), 1, - sym__comment_word, - ACTIONS(11128), 1, + ACTIONS(9338), 1, + anon_sym_LPAREN, + ACTIONS(9340), 1, + anon_sym_BANG, + ACTIONS(9346), 1, + anon_sym_TILDE, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9634), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9650), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9876), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9878), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(4337), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [236257] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7958), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7964), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(7968), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(7970), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(7972), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7974), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7976), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(7978), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7988), 1, - sym__brace_start, - ACTIONS(9860), 1, - sym_word, - ACTIONS(9868), 1, - sym__comment_word, - ACTIONS(11130), 1, - anon_sym_DOLLAR, - ACTIONS(7954), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7980), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9864), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9866), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(4357), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(11154), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3273), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [236325] = 18, - ACTIONS(3), 1, + [236883] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(7958), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7964), 1, + ACTIONS(3123), 1, + sym_variable_name, + ACTIONS(9432), 1, + anon_sym_LPAREN, + ACTIONS(9434), 1, + anon_sym_BANG, + ACTIONS(9440), 1, + anon_sym_TILDE, + ACTIONS(9442), 1, + anon_sym_DOLLAR, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(7968), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(7970), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(7972), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7974), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7976), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(7978), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7988), 1, - sym__brace_start, - ACTIONS(9860), 1, - sym_word, - ACTIONS(9868), 1, - sym__comment_word, - ACTIONS(11132), 1, - anon_sym_DOLLAR, - ACTIONS(7954), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7980), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9864), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9866), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(4357), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11156), 1, + aux_sym__simple_variable_name_token1, + STATE(2776), 1, + sym__arithmetic_unary_expression, + STATE(2780), 1, + sym__arithmetic_postfix_expression, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9438), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2853), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [236393] = 20, + [236957] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3787), 1, - anon_sym_DOLLAR, - ACTIONS(3793), 1, - aux_sym_number_token1, - ACTIONS(3795), 1, - aux_sym_number_token2, - ACTIONS(3799), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3809), 1, - sym__brace_start, - ACTIONS(9636), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9640), 1, - anon_sym_DQUOTE, - ACTIONS(9644), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9646), 1, - anon_sym_BQUOTE, - ACTIONS(9648), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11122), 1, - sym__special_character, - ACTIONS(11134), 1, - sym_word, - ACTIONS(11138), 1, - sym_test_operator, - STATE(4347), 1, - aux_sym__literal_repeat1, - STATE(4617), 1, - sym_concatenation, - ACTIONS(9634), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9650), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11136), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4513), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(9338), 1, + anon_sym_LPAREN, + ACTIONS(9340), 1, + anon_sym_BANG, + ACTIONS(9346), 1, + anon_sym_TILDE, + ACTIONS(9348), 1, + anon_sym_DOLLAR, + ACTIONS(9350), 1, + anon_sym_DQUOTE, + ACTIONS(9352), 1, + aux_sym_number_token1, + ACTIONS(9354), 1, + aux_sym_number_token2, + ACTIONS(9356), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9358), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9360), 1, + anon_sym_BQUOTE, + ACTIONS(9362), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(11158), 1, + aux_sym__simple_variable_name_token1, + STATE(3173), 1, + sym__arithmetic_unary_expression, + STATE(3180), 1, + sym__arithmetic_postfix_expression, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(9344), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3275), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [236465] = 21, + [237031] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3123), 1, sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11140), 1, + ACTIONS(11160), 1, aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2820), 9, + STATE(2855), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -273243,50 +273939,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [236539] = 21, + [237105] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, + ACTIONS(9366), 1, sym_variable_name, - ACTIONS(11142), 1, + ACTIONS(11162), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(3180), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3274), 9, + STATE(3285), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -273296,47 +273992,47 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [236613] = 18, + [237179] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4820), 1, + ACTIONS(7958), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4826), 1, + ACTIONS(7964), 1, anon_sym_DQUOTE, - ACTIONS(4830), 1, + ACTIONS(7968), 1, aux_sym_number_token1, - ACTIONS(4832), 1, + ACTIONS(7970), 1, aux_sym_number_token2, - ACTIONS(4834), 1, + ACTIONS(7972), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4836), 1, + ACTIONS(7974), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4838), 1, + ACTIONS(7976), 1, anon_sym_BQUOTE, - ACTIONS(4840), 1, + ACTIONS(7978), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4848), 1, + ACTIONS(7988), 1, sym__brace_start, - ACTIONS(9534), 1, + ACTIONS(10070), 1, sym_word, - ACTIONS(9540), 1, + ACTIONS(10078), 1, sym__comment_word, - ACTIONS(11144), 1, + ACTIONS(11164), 1, anon_sym_DOLLAR, - ACTIONS(4818), 2, + ACTIONS(7954), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4842), 2, + ACTIONS(7980), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9536), 2, + ACTIONS(10074), 2, sym_test_operator, sym__special_character, - ACTIONS(9538), 3, + ACTIONS(10076), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(2707), 9, + STATE(4322), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -273346,47 +274042,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [236681] = 18, + [237247] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8178), 1, + ACTIONS(7958), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8184), 1, + ACTIONS(7964), 1, anon_sym_DQUOTE, - ACTIONS(8188), 1, + ACTIONS(7968), 1, aux_sym_number_token1, - ACTIONS(8190), 1, + ACTIONS(7970), 1, aux_sym_number_token2, - ACTIONS(8192), 1, + ACTIONS(7972), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8194), 1, + ACTIONS(7974), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8196), 1, + ACTIONS(7976), 1, anon_sym_BQUOTE, - ACTIONS(8198), 1, + ACTIONS(7978), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8208), 1, + ACTIONS(7988), 1, sym__brace_start, - ACTIONS(9720), 1, + ACTIONS(10070), 1, sym_word, - ACTIONS(9728), 1, + ACTIONS(10078), 1, sym__comment_word, - ACTIONS(11146), 1, + ACTIONS(11166), 1, anon_sym_DOLLAR, - ACTIONS(8174), 2, + ACTIONS(7954), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8200), 2, + ACTIONS(7980), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9724), 2, + ACTIONS(10074), 2, sym_test_operator, sym__special_character, - ACTIONS(9726), 3, + ACTIONS(10076), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1590), 9, + STATE(4322), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -273396,47 +274092,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [236749] = 18, + [237315] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(8128), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(53), 1, + ACTIONS(8134), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(8138), 1, aux_sym_number_token1, - ACTIONS(59), 1, + ACTIONS(8140), 1, aux_sym_number_token2, - ACTIONS(61), 1, + ACTIONS(8142), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(63), 1, + ACTIONS(8144), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(65), 1, + ACTIONS(8146), 1, anon_sym_BQUOTE, - ACTIONS(67), 1, + ACTIONS(8148), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(79), 1, + ACTIONS(8158), 1, sym__brace_start, - ACTIONS(10448), 1, + ACTIONS(10580), 1, sym_word, - ACTIONS(10456), 1, + ACTIONS(10586), 1, sym__comment_word, - ACTIONS(11148), 1, + ACTIONS(11168), 1, anon_sym_DOLLAR, - ACTIONS(45), 2, + ACTIONS(8124), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(69), 2, + ACTIONS(8150), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10452), 2, + ACTIONS(10582), 2, sym_test_operator, sym__special_character, - ACTIONS(10454), 3, + ACTIONS(10584), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1083), 9, + STATE(5450), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -273446,47 +274142,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [236817] = 18, + [237383] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8140), 1, + ACTIONS(8128), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8146), 1, + ACTIONS(8134), 1, anon_sym_DQUOTE, - ACTIONS(8150), 1, + ACTIONS(8138), 1, aux_sym_number_token1, - ACTIONS(8152), 1, + ACTIONS(8140), 1, aux_sym_number_token2, - ACTIONS(8154), 1, + ACTIONS(8142), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8156), 1, + ACTIONS(8144), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8158), 1, + ACTIONS(8146), 1, anon_sym_BQUOTE, - ACTIONS(8160), 1, + ACTIONS(8148), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8170), 1, + ACTIONS(8158), 1, sym__brace_start, - ACTIONS(10564), 1, + ACTIONS(10580), 1, sym_word, - ACTIONS(10570), 1, + ACTIONS(10586), 1, sym__comment_word, - ACTIONS(11150), 1, + ACTIONS(11170), 1, anon_sym_DOLLAR, - ACTIONS(8136), 2, + ACTIONS(8124), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8162), 2, + ACTIONS(8150), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10566), 2, + ACTIONS(10582), 2, sym_test_operator, sym__special_character, - ACTIONS(10568), 3, + ACTIONS(10584), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4526), 9, + STATE(5450), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -273496,47 +274192,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [236885] = 18, + [237451] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8140), 1, + ACTIONS(191), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8146), 1, + ACTIONS(193), 1, + anon_sym_DOLLAR, + ACTIONS(197), 1, anon_sym_DQUOTE, - ACTIONS(8150), 1, + ACTIONS(201), 1, aux_sym_number_token1, - ACTIONS(8152), 1, + ACTIONS(203), 1, aux_sym_number_token2, - ACTIONS(8154), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8156), 1, + ACTIONS(207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8158), 1, + ACTIONS(209), 1, anon_sym_BQUOTE, - ACTIONS(8160), 1, + ACTIONS(211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8170), 1, + ACTIONS(221), 1, sym__brace_start, - ACTIONS(10564), 1, + ACTIONS(11172), 1, sym_word, - ACTIONS(10570), 1, + ACTIONS(11178), 1, sym__comment_word, - ACTIONS(11152), 1, - anon_sym_DOLLAR, - ACTIONS(8136), 2, + ACTIONS(189), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8162), 2, + ACTIONS(213), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10566), 2, + ACTIONS(11174), 2, sym_test_operator, sym__special_character, - ACTIONS(10568), 3, + ACTIONS(11176), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4526), 9, + STATE(510), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -273546,49 +274242,49 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [236953] = 20, + [237519] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(4080), 1, + ACTIONS(10728), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10730), 1, anon_sym_DOLLAR, - ACTIONS(4086), 1, + ACTIONS(10734), 1, + anon_sym_DQUOTE, + ACTIONS(10738), 1, aux_sym_number_token1, - ACTIONS(4088), 1, + ACTIONS(10740), 1, aux_sym_number_token2, - ACTIONS(4092), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4102), 1, - sym__brace_start, - ACTIONS(9310), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9316), 1, - anon_sym_DQUOTE, - ACTIONS(9320), 1, + ACTIONS(10742), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9322), 1, + ACTIONS(10744), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(10746), 1, anon_sym_BQUOTE, - ACTIONS(9324), 1, + ACTIONS(10748), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11154), 1, - sym_word, - ACTIONS(11156), 1, + ACTIONS(10754), 1, + sym__brace_start, + ACTIONS(11080), 1, sym__special_character, - ACTIONS(11160), 1, + ACTIONS(11180), 1, + sym_word, + ACTIONS(11184), 1, sym_test_operator, - STATE(4500), 1, + STATE(6220), 1, aux_sym__literal_repeat1, - STATE(5029), 1, + STATE(6369), 1, sym_concatenation, - ACTIONS(9308), 2, + ACTIONS(10726), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9326), 2, + ACTIONS(10750), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11158), 2, + ACTIONS(11182), 2, sym_raw_string, sym_ansi_c_string, - STATE(5306), 9, + STATE(6204), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -273598,50 +274294,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [237025] = 21, + [237591] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, + ACTIONS(9366), 1, sym_variable_name, - ACTIONS(11162), 1, + ACTIONS(11186), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(3180), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3244), 9, + STATE(3382), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -273651,50 +274347,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [237099] = 21, + [237665] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11164), 1, + ACTIONS(9366), 1, + sym_variable_name, + ACTIONS(11188), 1, aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(3180), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2785), 9, + STATE(3384), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -273704,50 +274400,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [237173] = 21, + [237739] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9340), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9346), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9348), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9350), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9352), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9354), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9356), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9358), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9360), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9362), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, + ACTIONS(9366), 1, sym_variable_name, - ACTIONS(11166), 1, + ACTIONS(11190), 1, aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(3173), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(3180), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + STATE(3376), 1, + sym__arithmetic_binary_expression, + STATE(3438), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9342), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9344), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3379), 9, + STATE(3385), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -273757,99 +274453,47 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [237247] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4080), 1, - anon_sym_DOLLAR, - ACTIONS(4086), 1, - aux_sym_number_token1, - ACTIONS(4088), 1, - aux_sym_number_token2, - ACTIONS(4092), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4102), 1, - sym__brace_start, - ACTIONS(9310), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9316), 1, - anon_sym_DQUOTE, - ACTIONS(9320), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9322), 1, - anon_sym_BQUOTE, - ACTIONS(9324), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11156), 1, - sym__special_character, - ACTIONS(11168), 1, - sym_word, - ACTIONS(11172), 1, - sym_test_operator, - STATE(4421), 1, - aux_sym__literal_repeat1, - STATE(4869), 1, - sym_concatenation, - ACTIONS(9308), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9326), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11170), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(5286), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [237319] = 18, + [237813] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(5621), 1, aux_sym_number_token1, - ACTIONS(3683), 1, + ACTIONS(5623), 1, aux_sym_number_token2, - ACTIONS(3687), 1, + ACTIONS(5627), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3697), 1, + ACTIONS(5637), 1, sym__brace_start, - ACTIONS(10062), 1, + ACTIONS(9008), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10066), 1, + ACTIONS(9012), 1, anon_sym_DQUOTE, - ACTIONS(10070), 1, + ACTIONS(9016), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10072), 1, + ACTIONS(9018), 1, anon_sym_BQUOTE, - ACTIONS(10074), 1, + ACTIONS(9020), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10540), 1, + ACTIONS(10588), 1, sym_word, - ACTIONS(10546), 1, + ACTIONS(10594), 1, sym__comment_word, - ACTIONS(11174), 1, + ACTIONS(11192), 1, anon_sym_DOLLAR, - ACTIONS(10060), 2, + ACTIONS(9006), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10076), 2, + ACTIONS(9022), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10542), 2, + ACTIONS(10590), 2, sym_test_operator, sym__special_character, - ACTIONS(10544), 3, + ACTIONS(10592), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4831), 9, + STATE(3431), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -273859,101 +274503,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [237387] = 20, - ACTIONS(71), 1, + [237881] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3787), 1, - anon_sym_DOLLAR, - ACTIONS(3793), 1, - aux_sym_number_token1, - ACTIONS(3795), 1, - aux_sym_number_token2, - ACTIONS(3799), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3809), 1, - sym__brace_start, - ACTIONS(9636), 1, + ACTIONS(47), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9640), 1, - anon_sym_DQUOTE, - ACTIONS(9644), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9646), 1, - anon_sym_BQUOTE, - ACTIONS(9648), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11176), 1, - sym_word, - ACTIONS(11178), 1, - sym__special_character, - ACTIONS(11182), 1, - sym_test_operator, - STATE(4294), 1, - aux_sym__literal_repeat1, - STATE(4861), 1, - sym_concatenation, - ACTIONS(9634), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9650), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11180), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(5130), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [237459] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3787), 1, + ACTIONS(49), 1, anon_sym_DOLLAR, - ACTIONS(3793), 1, + ACTIONS(53), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, aux_sym_number_token1, - ACTIONS(3795), 1, + ACTIONS(59), 1, aux_sym_number_token2, - ACTIONS(3799), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3809), 1, - sym__brace_start, - ACTIONS(9636), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9640), 1, - anon_sym_DQUOTE, - ACTIONS(9644), 1, + ACTIONS(61), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9646), 1, + ACTIONS(63), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(65), 1, anon_sym_BQUOTE, - ACTIONS(9648), 1, + ACTIONS(67), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11178), 1, - sym__special_character, - ACTIONS(11184), 1, + ACTIONS(79), 1, + sym__brace_start, + ACTIONS(9894), 1, sym_word, - ACTIONS(11188), 1, - sym_test_operator, - STATE(4347), 1, - aux_sym__literal_repeat1, - STATE(4617), 1, - sym_concatenation, - ACTIONS(9634), 2, + ACTIONS(9902), 1, + sym__comment_word, + ACTIONS(45), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9650), 2, + ACTIONS(69), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(11186), 2, + ACTIONS(9898), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9900), 3, + sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5128), 9, + STATE(1058), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -273963,100 +274553,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [237531] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(3419), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, - anon_sym_DOLLAR, - ACTIONS(9290), 1, - anon_sym_DQUOTE, - ACTIONS(9292), 1, - aux_sym_number_token1, - ACTIONS(9294), 1, - aux_sym_number_token2, - ACTIONS(9296), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, - anon_sym_BQUOTE, - ACTIONS(9302), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2811), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [237605] = 18, + [237949] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(5621), 1, aux_sym_number_token1, - ACTIONS(3683), 1, + ACTIONS(5623), 1, aux_sym_number_token2, - ACTIONS(3687), 1, + ACTIONS(5627), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3697), 1, + ACTIONS(5637), 1, sym__brace_start, - ACTIONS(10062), 1, + ACTIONS(9008), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10066), 1, + ACTIONS(9012), 1, anon_sym_DQUOTE, - ACTIONS(10070), 1, + ACTIONS(9016), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10072), 1, + ACTIONS(9018), 1, anon_sym_BQUOTE, - ACTIONS(10074), 1, + ACTIONS(9020), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10540), 1, + ACTIONS(10588), 1, sym_word, - ACTIONS(10546), 1, + ACTIONS(10594), 1, sym__comment_word, - ACTIONS(11190), 1, + ACTIONS(11194), 1, anon_sym_DOLLAR, - ACTIONS(10060), 2, + ACTIONS(9006), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10076), 2, + ACTIONS(9022), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10542), 2, + ACTIONS(10590), 2, sym_test_operator, sym__special_character, - ACTIONS(10544), 3, + ACTIONS(10592), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4831), 9, + STATE(3431), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -274066,50 +274603,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [237673] = 21, + [238017] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, + ACTIONS(3602), 1, + sym_variable_name, + ACTIONS(3618), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(9818), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9820), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9826), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9828), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9830), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9832), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9834), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9836), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9838), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9840), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9842), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(11192), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, + STATE(3375), 1, sym__arithmetic_binary_expression, - STATE(3396), 1, + STATE(3378), 1, sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(3407), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(3409), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + ACTIONS(9822), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9824), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3235), 9, + STATE(3267), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -274119,103 +274656,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [237747] = 21, + [238091] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3123), 1, sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(3718), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11194), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2786), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [237821] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9364), 1, - anon_sym_LPAREN, - ACTIONS(9366), 1, - anon_sym_BANG, - ACTIONS(9372), 1, - anon_sym_TILDE, - ACTIONS(9374), 1, - anon_sym_DOLLAR, - ACTIONS(9376), 1, - anon_sym_DQUOTE, - ACTIONS(9378), 1, - aux_sym_number_token1, - ACTIONS(9380), 1, - aux_sym_number_token2, - ACTIONS(9382), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, - anon_sym_BQUOTE, - ACTIONS(9388), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(11196), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, + STATE(2837), 1, sym__arithmetic_binary_expression, - STATE(3396), 1, + STATE(2838), 1, sym__arithmetic_ternary_expression, - STATE(3398), 1, - sym__arithmetic_unary_expression, - STATE(3400), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9370), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3239), 9, + STATE(2761), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -274225,103 +274709,100 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [237895] = 21, - ACTIONS(71), 1, + [238165] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(9364), 1, - anon_sym_LPAREN, - ACTIONS(9366), 1, - anon_sym_BANG, - ACTIONS(9372), 1, - anon_sym_TILDE, - ACTIONS(9374), 1, - anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(47), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(57), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(59), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(61), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(63), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(65), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(67), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(11198), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, - sym__arithmetic_unary_expression, - STATE(3400), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9370), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3224), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(79), 1, + sym__brace_start, + ACTIONS(9894), 1, + sym_word, + ACTIONS(9902), 1, + sym__comment_word, + ACTIONS(11196), 1, + anon_sym_DOLLAR, + ACTIONS(45), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(69), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9898), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9900), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1058), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [237969] = 21, + sym_process_substitution, + [238233] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3123), 1, sym_variable_name, - ACTIONS(9278), 1, + ACTIONS(3945), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9280), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9286), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9288), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11200), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(2825), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + STATE(2837), 1, + sym__arithmetic_binary_expression, + STATE(2838), 1, + sym__arithmetic_ternary_expression, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2787), 9, + STATE(2844), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -274331,47 +274812,47 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [238043] = 18, + [238307] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3032), 1, + ACTIONS(5779), 1, aux_sym_number_token1, - ACTIONS(3034), 1, + ACTIONS(5781), 1, aux_sym_number_token2, - ACTIONS(3038), 1, + ACTIONS(5785), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3048), 1, + ACTIONS(5795), 1, sym__brace_start, - ACTIONS(10134), 1, + ACTIONS(10336), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10138), 1, + ACTIONS(10340), 1, anon_sym_DQUOTE, - ACTIONS(10142), 1, + ACTIONS(10344), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10144), 1, + ACTIONS(10346), 1, anon_sym_BQUOTE, - ACTIONS(10146), 1, + ACTIONS(10348), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10556), 1, + ACTIONS(10596), 1, sym_word, - ACTIONS(10562), 1, + ACTIONS(10602), 1, sym__comment_word, - ACTIONS(11202), 1, + ACTIONS(11198), 1, anon_sym_DOLLAR, - ACTIONS(10132), 2, + ACTIONS(10334), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10148), 2, + ACTIONS(10350), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10558), 2, + ACTIONS(10598), 2, sym_test_operator, sym__special_character, - ACTIONS(10560), 3, + ACTIONS(10600), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(4493), 9, + STATE(5658), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -274381,97 +274862,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [238111] = 18, + [238375] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3032), 1, + ACTIONS(5779), 1, aux_sym_number_token1, - ACTIONS(3034), 1, + ACTIONS(5781), 1, aux_sym_number_token2, - ACTIONS(3038), 1, + ACTIONS(5785), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3048), 1, + ACTIONS(5795), 1, sym__brace_start, - ACTIONS(10134), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10138), 1, - anon_sym_DQUOTE, - ACTIONS(10142), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10144), 1, - anon_sym_BQUOTE, - ACTIONS(10146), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10556), 1, - sym_word, - ACTIONS(10562), 1, - sym__comment_word, - ACTIONS(11204), 1, - anon_sym_DOLLAR, - ACTIONS(10132), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10148), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10558), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10560), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(4493), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [238179] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8306), 1, + ACTIONS(10336), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8312), 1, + ACTIONS(10340), 1, anon_sym_DQUOTE, - ACTIONS(8316), 1, - aux_sym_number_token1, - ACTIONS(8318), 1, - aux_sym_number_token2, - ACTIONS(8320), 1, + ACTIONS(10344), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8322), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8324), 1, + ACTIONS(10346), 1, anon_sym_BQUOTE, - ACTIONS(8326), 1, + ACTIONS(10348), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8336), 1, - sym__brace_start, - ACTIONS(10282), 1, + ACTIONS(10596), 1, sym_word, - ACTIONS(10288), 1, + ACTIONS(10602), 1, sym__comment_word, - ACTIONS(11206), 1, + ACTIONS(11200), 1, anon_sym_DOLLAR, - ACTIONS(8302), 2, + ACTIONS(10334), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8328), 2, + ACTIONS(10350), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10284), 2, + ACTIONS(10598), 2, sym_test_operator, sym__special_character, - ACTIONS(10286), 3, + ACTIONS(10600), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5428), 9, + STATE(5658), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -274481,156 +274912,50 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [238247] = 21, + [238443] = 21, ACTIONS(71), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3123), 1, sym_variable_name, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, - anon_sym_DOLLAR, - ACTIONS(9290), 1, - anon_sym_DQUOTE, - ACTIONS(9292), 1, - aux_sym_number_token1, - ACTIONS(9294), 1, - aux_sym_number_token2, - ACTIONS(9296), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, - anon_sym_BQUOTE, - ACTIONS(9302), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11208), 1, + ACTIONS(3586), 1, aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2804), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [238321] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9364), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9366), 1, + ACTIONS(9434), 1, anon_sym_BANG, - ACTIONS(9372), 1, + ACTIONS(9440), 1, anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(9442), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(9444), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(9446), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(9448), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(9452), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(11210), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, + STATE(2776), 1, sym__arithmetic_unary_expression, - STATE(3400), 1, + STATE(2780), 1, sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9370), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3212), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [238395] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, - anon_sym_DOLLAR, - ACTIONS(9290), 1, - anon_sym_DQUOTE, - ACTIONS(9292), 1, - aux_sym_number_token1, - ACTIONS(9294), 1, - aux_sym_number_token2, - ACTIONS(9296), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, - anon_sym_BQUOTE, - ACTIONS(9302), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11212), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, + STATE(2837), 1, sym__arithmetic_binary_expression, - STATE(2803), 1, + STATE(2838), 1, sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, + ACTIONS(9436), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9284), 2, + ACTIONS(9438), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2788), 9, + STATE(2868), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -274640,47 +274965,47 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [238469] = 18, + [238517] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8306), 1, + ACTIONS(449), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8312), 1, + ACTIONS(455), 1, anon_sym_DQUOTE, - ACTIONS(8316), 1, + ACTIONS(459), 1, aux_sym_number_token1, - ACTIONS(8318), 1, + ACTIONS(461), 1, aux_sym_number_token2, - ACTIONS(8320), 1, + ACTIONS(463), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8322), 1, + ACTIONS(465), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8324), 1, + ACTIONS(467), 1, anon_sym_BQUOTE, - ACTIONS(8326), 1, + ACTIONS(469), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8336), 1, + ACTIONS(479), 1, sym__brace_start, - ACTIONS(10282), 1, + ACTIONS(10604), 1, sym_word, - ACTIONS(10288), 1, + ACTIONS(10610), 1, sym__comment_word, - ACTIONS(11214), 1, + ACTIONS(11202), 1, anon_sym_DOLLAR, - ACTIONS(8302), 2, + ACTIONS(447), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8328), 2, + ACTIONS(471), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10284), 2, + ACTIONS(10606), 2, sym_test_operator, sym__special_character, - ACTIONS(10286), 3, + ACTIONS(10608), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(5428), 9, + STATE(836), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -274690,524 +275015,501 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [238537] = 21, - ACTIONS(71), 1, + [238585] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(9364), 1, - anon_sym_LPAREN, - ACTIONS(9366), 1, - anon_sym_BANG, - ACTIONS(9372), 1, - anon_sym_TILDE, - ACTIONS(9374), 1, - anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(449), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(455), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(459), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(461), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(463), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(465), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(467), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(469), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(11216), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, - sym__arithmetic_unary_expression, - STATE(3400), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9370), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3209), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(479), 1, + sym__brace_start, + ACTIONS(10604), 1, + sym_word, + ACTIONS(10610), 1, + sym__comment_word, + ACTIONS(11204), 1, + anon_sym_DOLLAR, + ACTIONS(447), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(471), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10606), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10608), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(836), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [238611] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [238653] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(10728), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10730), 1, anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(10734), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(10738), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(10740), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(10742), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(10744), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(10746), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(10748), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11218), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2800), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(10754), 1, + sym__brace_start, + ACTIONS(11080), 1, + sym__special_character, + ACTIONS(11206), 1, + sym_word, + ACTIONS(11210), 1, + sym_test_operator, + STATE(6226), 1, + aux_sym__literal_repeat1, + STATE(6453), 1, + sym_concatenation, + ACTIONS(10726), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10750), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11208), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(6198), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [238685] = 21, - ACTIONS(71), 1, + sym_process_substitution, + [238725] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(9364), 1, - anon_sym_LPAREN, - ACTIONS(9366), 1, - anon_sym_BANG, - ACTIONS(9372), 1, - anon_sym_TILDE, - ACTIONS(9374), 1, - anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(5193), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5199), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(5203), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(5205), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(5207), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(5209), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(5211), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(5213), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(11220), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, - sym__arithmetic_unary_expression, - STATE(3400), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9370), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3185), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(5219), 1, + sym__brace_start, + ACTIONS(10612), 1, + sym_word, + ACTIONS(10618), 1, + sym__comment_word, + ACTIONS(11212), 1, + anon_sym_DOLLAR, + ACTIONS(5191), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5215), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10614), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10616), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2939), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [238759] = 21, - ACTIONS(71), 1, + sym_process_substitution, + [238793] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, - anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(5193), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5199), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(5203), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(5205), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(5207), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(5209), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(5211), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(5213), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11222), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2795), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(5219), 1, + sym__brace_start, + ACTIONS(10612), 1, + sym_word, + ACTIONS(10618), 1, + sym__comment_word, + ACTIONS(11214), 1, + anon_sym_DOLLAR, + ACTIONS(5191), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5215), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10614), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10616), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(2939), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [238833] = 21, - ACTIONS(71), 1, + sym_process_substitution, + [238861] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(9364), 1, - anon_sym_LPAREN, - ACTIONS(9366), 1, - anon_sym_BANG, - ACTIONS(9372), 1, - anon_sym_TILDE, - ACTIONS(9374), 1, - anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(191), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(197), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(201), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(203), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(209), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(11224), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, - sym__arithmetic_unary_expression, - STATE(3400), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9370), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3204), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(221), 1, + sym__brace_start, + ACTIONS(11172), 1, + sym_word, + ACTIONS(11178), 1, + sym__comment_word, + ACTIONS(11216), 1, + anon_sym_DOLLAR, + ACTIONS(189), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(213), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11174), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11176), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(510), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [238907] = 21, - ACTIONS(71), 1, + sym_process_substitution, + [238929] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(9364), 1, - anon_sym_LPAREN, - ACTIONS(9366), 1, - anon_sym_BANG, - ACTIONS(9372), 1, - anon_sym_TILDE, - ACTIONS(9374), 1, - anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(5432), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5438), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(5442), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(5444), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(5446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(5448), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(5450), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(5452), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(11226), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, - sym__arithmetic_unary_expression, - STATE(3400), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9370), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3165), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(5458), 1, + sym__brace_start, + ACTIONS(10620), 1, + sym_word, + ACTIONS(10626), 1, + sym__comment_word, + ACTIONS(11218), 1, + anon_sym_DOLLAR, + ACTIONS(5430), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5454), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10622), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10624), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(5526), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [238981] = 21, - ACTIONS(71), 1, + sym_process_substitution, + [238997] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, - anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(5432), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5438), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(5442), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(5444), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(5446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(5448), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(5450), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(5452), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11228), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2789), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(5458), 1, + sym__brace_start, + ACTIONS(10620), 1, + sym_word, + ACTIONS(10626), 1, + sym__comment_word, + ACTIONS(11220), 1, + anon_sym_DOLLAR, + ACTIONS(5430), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5454), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10622), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10624), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(5526), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [239055] = 21, - ACTIONS(71), 1, + sym_process_substitution, + [239065] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3064), 1, - sym_variable_name, - ACTIONS(9278), 1, - anon_sym_LPAREN, - ACTIONS(9280), 1, - anon_sym_BANG, - ACTIONS(9286), 1, - anon_sym_TILDE, - ACTIONS(9288), 1, - anon_sym_DOLLAR, - ACTIONS(9290), 1, + ACTIONS(191), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(197), 1, anon_sym_DQUOTE, - ACTIONS(9292), 1, + ACTIONS(201), 1, aux_sym_number_token1, - ACTIONS(9294), 1, + ACTIONS(203), 1, aux_sym_number_token2, - ACTIONS(9296), 1, + ACTIONS(205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, + ACTIONS(207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(209), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11230), 1, - aux_sym__simple_variable_name_token1, - STATE(2801), 1, - sym__arithmetic_binary_expression, - STATE(2803), 1, - sym__arithmetic_ternary_expression, - STATE(2809), 1, - sym__arithmetic_unary_expression, - STATE(2825), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9282), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9284), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2791), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(221), 1, + sym__brace_start, + ACTIONS(11172), 1, + sym_word, + ACTIONS(11178), 1, + sym__comment_word, + ACTIONS(11222), 1, + anon_sym_DOLLAR, + ACTIONS(189), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(213), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11174), 2, + sym_test_operator, + sym__special_character, + ACTIONS(11176), 3, + sym__bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(510), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [239129] = 21, + sym_process_substitution, + [239133] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, - anon_sym_LPAREN, - ACTIONS(9366), 1, - anon_sym_BANG, - ACTIONS(9372), 1, - anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(10728), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10730), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, + ACTIONS(10734), 1, anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(10738), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(10740), 1, aux_sym_number_token2, - ACTIONS(9382), 1, + ACTIONS(10742), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(10744), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(10746), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(10748), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, - ACTIONS(11232), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, - sym__arithmetic_unary_expression, - STATE(3400), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9370), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3182), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(10754), 1, + sym__brace_start, + ACTIONS(11080), 1, + sym__special_character, + ACTIONS(11224), 1, + sym_word, + ACTIONS(11228), 1, + sym_test_operator, + STATE(6208), 1, + aux_sym__literal_repeat1, + STATE(6390), 1, + sym_concatenation, + ACTIONS(10726), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10750), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11226), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(6190), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [239203] = 18, + sym_process_substitution, + [239205] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2580), 1, - aux_sym_number_token1, - ACTIONS(2582), 1, - aux_sym_number_token2, - ACTIONS(2586), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2596), 1, - sym__brace_start, - ACTIONS(9064), 1, + ACTIONS(4928), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9068), 1, + ACTIONS(4934), 1, anon_sym_DQUOTE, - ACTIONS(9072), 1, + ACTIONS(4938), 1, + aux_sym_number_token1, + ACTIONS(4940), 1, + aux_sym_number_token2, + ACTIONS(4942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9074), 1, + ACTIONS(4944), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4946), 1, anon_sym_BQUOTE, - ACTIONS(9076), 1, + ACTIONS(4948), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10548), 1, + ACTIONS(4954), 1, + sym__brace_start, + ACTIONS(9278), 1, sym_word, - ACTIONS(10554), 1, + ACTIONS(9286), 1, sym__comment_word, - ACTIONS(11234), 1, + ACTIONS(11230), 1, anon_sym_DOLLAR, - ACTIONS(9062), 2, + ACTIONS(4926), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9078), 2, + ACTIONS(4950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10550), 2, + ACTIONS(9282), 2, sym_test_operator, sym__special_character, - ACTIONS(10552), 3, + ACTIONS(9284), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1669), 9, + STATE(2604), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -275217,47 +275519,47 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [239271] = 18, + [239273] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2580), 1, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1119), 1, + anon_sym_DQUOTE, + ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(2582), 1, + ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(2586), 1, + ACTIONS(1127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2596), 1, + ACTIONS(1133), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1139), 1, sym__brace_start, - ACTIONS(9064), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9068), 1, - anon_sym_DQUOTE, - ACTIONS(9072), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9074), 1, + ACTIONS(3119), 1, anon_sym_BQUOTE, - ACTIONS(9076), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10548), 1, + ACTIONS(9464), 1, sym_word, - ACTIONS(10554), 1, + ACTIONS(9472), 1, sym__comment_word, - ACTIONS(11236), 1, + ACTIONS(11232), 1, anon_sym_DOLLAR, - ACTIONS(9062), 2, + ACTIONS(1099), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9078), 2, + ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10550), 2, + ACTIONS(9468), 2, sym_test_operator, sym__special_character, - ACTIONS(10552), 3, + ACTIONS(9470), 3, sym__bare_dollar, sym_raw_string, sym_ansi_c_string, - STATE(1669), 9, + STATE(2365), 9, sym_arithmetic_expansion, sym_brace_expression, sym_string, @@ -275267,69 +275569,68 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [239339] = 21, + [239341] = 20, ACTIONS(71), 1, sym_comment, - ACTIONS(9364), 1, - anon_sym_LPAREN, - ACTIONS(9366), 1, - anon_sym_BANG, - ACTIONS(9372), 1, - anon_sym_TILDE, - ACTIONS(9374), 1, + ACTIONS(3848), 1, anon_sym_DOLLAR, - ACTIONS(9376), 1, - anon_sym_DQUOTE, - ACTIONS(9378), 1, + ACTIONS(3854), 1, aux_sym_number_token1, - ACTIONS(9380), 1, + ACTIONS(3856), 1, aux_sym_number_token2, - ACTIONS(9382), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, + ACTIONS(3860), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(3870), 1, + sym__brace_start, + ACTIONS(9704), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9710), 1, + anon_sym_DQUOTE, + ACTIONS(9714), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9716), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9718), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9392), 1, - sym_variable_name, + ACTIONS(10494), 1, + sym__special_character, + ACTIONS(11234), 1, + sym_word, ACTIONS(11238), 1, - aux_sym__simple_variable_name_token1, - STATE(3391), 1, - sym__arithmetic_binary_expression, - STATE(3396), 1, - sym__arithmetic_ternary_expression, - STATE(3398), 1, - sym__arithmetic_unary_expression, - STATE(3400), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9368), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9370), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3192), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + sym_test_operator, + STATE(4664), 1, + aux_sym__literal_repeat1, + STATE(5107), 1, + sym_concatenation, + ACTIONS(9702), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9720), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(11236), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(4418), 9, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, + sym_process_substitution, [239413] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1235), 1, + ACTIONS(1241), 1, sym_file_descriptor, - ACTIONS(5874), 1, + ACTIONS(5777), 1, anon_sym_DQUOTE, ACTIONS(11244), 1, sym_variable_name, - STATE(5696), 1, + STATE(5671), 1, sym_string, ACTIONS(11242), 2, aux_sym__simple_variable_name_token1, @@ -275344,7 +275645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 14, + ACTIONS(1239), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -275359,142 +275660,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - [239460] = 22, + [239460] = 13, ACTIONS(3), 1, sym_comment, + ACTIONS(4346), 1, + aux_sym_heredoc_redirect_token1, ACTIONS(11250), 1, - anon_sym_LPAREN, + anon_sym_LT_LT_LT, ACTIONS(11252), 1, - aux_sym__c_word_token1, - ACTIONS(11254), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11256), 1, - anon_sym_DOLLAR, - ACTIONS(11258), 1, - anon_sym_DQUOTE, - ACTIONS(11260), 1, - aux_sym_number_token1, - ACTIONS(11262), 1, - aux_sym_number_token2, - ACTIONS(11264), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11266), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11268), 1, - anon_sym_BQUOTE, - ACTIONS(11270), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(3113), 1, - sym__c_postfix_expression, - STATE(3116), 1, - sym__c_binary_expression, - STATE(3118), 1, - sym__c_unary_expression, - STATE(4243), 1, - sym__c_terminator, - STATE(6365), 1, - sym__c_expression, - STATE(6493), 1, - sym__c_variable_assignment, - STATE(7061), 1, - sym__for_body, - ACTIONS(11246), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(11248), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3119), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [239535] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11272), 1, - aux_sym_concatenation_token1, - ACTIONS(11274), 1, - sym__concat, - STATE(4248), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 2, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 24, - anon_sym_SEMI, + STATE(5018), 1, + sym_herestring_redirect, + ACTIONS(4308), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(4310), 2, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + anon_sym_PIPE_AMP, + ACTIONS(4312), 2, anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_LT_LT_DASH, + ACTIONS(4344), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(11248), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4407), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2755), 4, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + ACTIONS(11246), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - [239578] = 22, + [239517] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(11250), 1, + ACTIONS(11258), 1, anon_sym_LPAREN, - ACTIONS(11252), 1, + ACTIONS(11260), 1, aux_sym__c_word_token1, - ACTIONS(11254), 1, + ACTIONS(11262), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11256), 1, + ACTIONS(11264), 1, anon_sym_DOLLAR, - ACTIONS(11258), 1, + ACTIONS(11266), 1, anon_sym_DQUOTE, - ACTIONS(11260), 1, + ACTIONS(11268), 1, aux_sym_number_token1, - ACTIONS(11262), 1, + ACTIONS(11270), 1, aux_sym_number_token2, - ACTIONS(11264), 1, + ACTIONS(11272), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(11266), 1, + ACTIONS(11274), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11268), 1, + ACTIONS(11276), 1, anon_sym_BQUOTE, - ACTIONS(11270), 1, + ACTIONS(11278), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3113), 1, + STATE(3024), 1, sym__c_postfix_expression, - STATE(3116), 1, - sym__c_binary_expression, - STATE(3118), 1, + STATE(3087), 1, sym__c_unary_expression, - STATE(4243), 1, + STATE(3118), 1, + sym__c_binary_expression, + STATE(4260), 1, sym__c_terminator, - STATE(6365), 1, + STATE(6272), 1, sym__c_expression, - STATE(6493), 1, + STATE(6521), 1, sym__c_variable_assignment, - STATE(6952), 1, + STATE(7337), 1, sym__for_body, - ACTIONS(11246), 2, + ACTIONS(11254), 2, anon_sym_SEMI, anon_sym_AMP, - ACTIONS(11248), 2, + ACTIONS(11256), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3119), 7, + STATE(2990), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -275502,121 +275757,64 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [239653] = 22, + [239592] = 13, ACTIONS(3), 1, sym_comment, + ACTIONS(4316), 1, + aux_sym_heredoc_redirect_token1, ACTIONS(11250), 1, - anon_sym_LPAREN, + anon_sym_LT_LT_LT, ACTIONS(11252), 1, - aux_sym__c_word_token1, - ACTIONS(11254), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11256), 1, - anon_sym_DOLLAR, - ACTIONS(11258), 1, - anon_sym_DQUOTE, - ACTIONS(11260), 1, - aux_sym_number_token1, - ACTIONS(11262), 1, - aux_sym_number_token2, - ACTIONS(11264), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11266), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11268), 1, - anon_sym_BQUOTE, - ACTIONS(11270), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(3113), 1, - sym__c_postfix_expression, - STATE(3116), 1, - sym__c_binary_expression, - STATE(3118), 1, - sym__c_unary_expression, - STATE(4243), 1, - sym__c_terminator, - STATE(6365), 1, - sym__c_expression, - STATE(6493), 1, - sym__c_variable_assignment, - STATE(6886), 1, - sym__for_body, - ACTIONS(11246), 2, + sym_file_descriptor, + STATE(5018), 1, + sym_herestring_redirect, + ACTIONS(4306), 2, anon_sym_SEMI, anon_sym_AMP, + ACTIONS(4308), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4312), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, ACTIONS(11248), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3119), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [239728] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8030), 1, - anon_sym_SLASH, - ACTIONS(8032), 1, - anon_sym_PERCENT, - ACTIONS(8034), 1, - anon_sym_COLON, - ACTIONS(8546), 1, - anon_sym_AT, - ACTIONS(8922), 1, - anon_sym_LBRACK, - STATE(7238), 1, - sym__expansion_operator, - STATE(7239), 1, - sym__expansion_max_length, - STATE(7240), 1, - sym__expansion_regex_removal, - STATE(7241), 1, - sym__expansion_regex_replacement, - STATE(7242), 1, - sym__expansion_regex, - STATE(7243), 1, - sym__expansion_expression, - ACTIONS(8028), 2, - anon_sym_COMMA, - anon_sym_CARET, - ACTIONS(8048), 2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - ACTIONS(8036), 3, - sym__immediate_double_hash, - anon_sym_POUND, - anon_sym_PERCENT_PERCENT, - ACTIONS(8046), 3, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - ACTIONS(8044), 8, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - [239793] = 6, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4407), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4314), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(11246), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [239649] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11276), 1, + ACTIONS(11280), 1, aux_sym_concatenation_token1, - ACTIONS(11278), 1, + ACTIONS(11282), 1, sym__concat, - STATE(4251), 1, + STATE(4256), 1, aux_sym_concatenation_repeat1, - ACTIONS(1263), 3, + ACTIONS(1274), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 23, + ACTIONS(1272), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275640,71 +275838,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, sym__special_character, - [239836] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4340), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11284), 1, - anon_sym_LT_LT_LT, - ACTIONS(11286), 1, - sym_file_descriptor, - STATE(4866), 1, - sym_herestring_redirect, - ACTIONS(4251), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4255), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4338), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(11282), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4283), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2719), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(11280), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [239893] = 7, + [239692] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11284), 1, + ACTIONS(11250), 1, anon_sym_LT_LT_LT, - STATE(4866), 1, + STATE(5018), 1, sym_herestring_redirect, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4272), 2, + ACTIONS(4323), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4283), 3, + STATE(4407), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(4270), 20, + ACTIONS(4310), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -275714,6 +275866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -275722,96 +275875,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [239938] = 13, + [239735] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4259), 1, - aux_sym_heredoc_redirect_token1, ACTIONS(11284), 1, - anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, ACTIONS(11286), 1, + sym__concat, + STATE(4234), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 2, sym_file_descriptor, - STATE(4866), 1, - sym_herestring_redirect, - ACTIONS(4249), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1272), 24, anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(4251), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4253), 2, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4255), 2, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11282), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4283), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4257), 4, + anon_sym_GT_GT, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(11280), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [239995] = 22, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + [239778] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(11250), 1, + ACTIONS(11258), 1, anon_sym_LPAREN, - ACTIONS(11252), 1, + ACTIONS(11260), 1, aux_sym__c_word_token1, - ACTIONS(11254), 1, + ACTIONS(11262), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11256), 1, + ACTIONS(11264), 1, anon_sym_DOLLAR, - ACTIONS(11258), 1, + ACTIONS(11266), 1, anon_sym_DQUOTE, - ACTIONS(11260), 1, + ACTIONS(11268), 1, aux_sym_number_token1, - ACTIONS(11262), 1, + ACTIONS(11270), 1, aux_sym_number_token2, - ACTIONS(11264), 1, + ACTIONS(11272), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(11266), 1, + ACTIONS(11274), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11268), 1, + ACTIONS(11276), 1, anon_sym_BQUOTE, - ACTIONS(11270), 1, + ACTIONS(11278), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3113), 1, + STATE(3024), 1, sym__c_postfix_expression, - STATE(3116), 1, - sym__c_binary_expression, - STATE(3118), 1, + STATE(3087), 1, sym__c_unary_expression, - STATE(4243), 1, + STATE(3118), 1, + sym__c_binary_expression, + STATE(4260), 1, sym__c_terminator, - STATE(6365), 1, + STATE(6272), 1, sym__c_expression, - STATE(6493), 1, + STATE(6521), 1, sym__c_variable_assignment, - STATE(7326), 1, + STATE(7405), 1, sym__for_body, - ACTIONS(11246), 2, + ACTIONS(11254), 2, anon_sym_SEMI, anon_sym_AMP, - ACTIONS(11248), 2, + ACTIONS(11256), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3119), 7, + STATE(2990), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -275819,25 +275965,27 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [240070] = 6, + [239853] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11284), 1, + ACTIONS(11250), 1, anon_sym_LT_LT_LT, - STATE(4866), 1, + STATE(5018), 1, sym_herestring_redirect, - ACTIONS(4348), 2, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4327), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4283), 3, + STATE(4407), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(4253), 22, + ACTIONS(4325), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -275847,7 +275995,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -275856,16 +276003,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [240113] = 8, + [239898] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1241), 1, + ACTIONS(1235), 1, sym_file_descriptor, - ACTIONS(5874), 1, + ACTIONS(5777), 1, anon_sym_DQUOTE, ACTIONS(11244), 1, sym_variable_name, - STATE(5696), 1, + STATE(5671), 1, sym_string, ACTIONS(11242), 2, aux_sym__simple_variable_name_token1, @@ -275877,38 +276024,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1227), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [239945] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11258), 1, + anon_sym_LPAREN, + ACTIONS(11260), 1, + aux_sym__c_word_token1, + ACTIONS(11262), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11264), 1, + anon_sym_DOLLAR, + ACTIONS(11266), 1, + anon_sym_DQUOTE, + ACTIONS(11268), 1, + aux_sym_number_token1, + ACTIONS(11270), 1, + aux_sym_number_token2, + ACTIONS(11272), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11274), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11276), 1, + anon_sym_BQUOTE, + ACTIONS(11278), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3024), 1, + sym__c_postfix_expression, + STATE(3087), 1, + sym__c_unary_expression, + STATE(3118), 1, + sym__c_binary_expression, + STATE(4260), 1, + sym__c_terminator, + STATE(6272), 1, + sym__c_expression, + STATE(6521), 1, + sym__c_variable_assignment, + STATE(7669), 1, + sym__for_body, + ACTIONS(11254), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(11256), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2990), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [240020] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11258), 1, + anon_sym_LPAREN, + ACTIONS(11260), 1, + aux_sym__c_word_token1, + ACTIONS(11262), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11264), 1, + anon_sym_DOLLAR, + ACTIONS(11266), 1, + anon_sym_DQUOTE, + ACTIONS(11268), 1, + aux_sym_number_token1, + ACTIONS(11270), 1, + aux_sym_number_token2, + ACTIONS(11272), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11274), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11276), 1, + anon_sym_BQUOTE, + ACTIONS(11278), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3024), 1, + sym__c_postfix_expression, + STATE(3087), 1, + sym__c_unary_expression, + STATE(3118), 1, + sym__c_binary_expression, + STATE(4260), 1, + sym__c_terminator, + STATE(6272), 1, + sym__c_expression, + STATE(6521), 1, + sym__c_variable_assignment, + STATE(6913), 1, + sym__for_body, + ACTIONS(11254), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(11256), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2990), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [240095] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8522), 1, + anon_sym_SLASH, + ACTIONS(8524), 1, + anon_sym_PERCENT, + ACTIONS(8526), 1, + anon_sym_COLON, + ACTIONS(8551), 1, + anon_sym_AT, + ACTIONS(9058), 1, + anon_sym_LBRACK, + STATE(7196), 1, + sym__expansion_expression, + STATE(7197), 1, + sym__expansion_regex, + STATE(7287), 1, + sym__expansion_regex_replacement, + STATE(7365), 1, + sym__expansion_regex_removal, + STATE(7369), 1, + sym__expansion_max_length, + STATE(7424), 1, + sym__expansion_operator, + ACTIONS(8520), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(8540), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(8528), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(8538), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(8536), 8, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, [240160] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11276), 1, + ACTIONS(11288), 1, aux_sym_concatenation_token1, - ACTIONS(11278), 1, + ACTIONS(11290), 1, sym__concat, - STATE(4251), 1, + STATE(4414), 1, aux_sym_concatenation_repeat1, - ACTIONS(5069), 3, + ACTIONS(1274), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5067), 22, + ACTIONS(1272), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275931,20 +276231,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + sym__special_character, [240202] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11292), 1, + ACTIONS(11296), 1, sym_variable_name, - STATE(6726), 1, + STATE(6744), 1, sym_subscript, - ACTIONS(11290), 2, + ACTIONS(11294), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, STATE(4230), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(11288), 22, + ACTIONS(11292), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275967,19 +276268,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [240244] = 6, + [240244] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(11272), 1, - aux_sym_concatenation_token1, - ACTIONS(11274), 1, - sym__concat, - STATE(4248), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5697), 2, + ACTIONS(4471), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11303), 1, + anon_sym_LT_LT_LT, + ACTIONS(11305), 1, + sym_file_descriptor, + STATE(5103), 1, + sym_herestring_redirect, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4465), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(4467), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4469), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11301), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(2755), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(4509), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11299), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [240300] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11311), 1, + sym_variable_name, + STATE(6744), 1, + sym_subscript, + ACTIONS(11309), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5695), 23, + STATE(4230), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11307), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276002,20 +276347,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [240286] = 6, + [240342] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11295), 1, + ACTIONS(11313), 1, aux_sym_concatenation_token1, - ACTIONS(11298), 1, + ACTIONS(11316), 1, sym__concat, - STATE(4232), 1, + STATE(4233), 1, aux_sym_concatenation_repeat1, - ACTIONS(1253), 2, + ACTIONS(1278), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 23, + ACTIONS(1276), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276038,20 +276383,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [240328] = 6, + [240384] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11301), 1, + ACTIONS(11284), 1, aux_sym_concatenation_token1, - ACTIONS(11303), 1, + ACTIONS(11319), 1, sym__concat, - STATE(4309), 1, + STATE(4248), 1, aux_sym_concatenation_repeat1, - ACTIONS(1263), 2, + ACTIONS(1268), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 23, + ACTIONS(1266), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276061,6 +276405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -276074,26 +276419,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - sym__special_character, - [240370] = 6, + [240426] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11305), 1, + ACTIONS(11303), 1, anon_sym_LT_LT_LT, - STATE(5069), 1, + STATE(5103), 1, sym_herestring_redirect, - ACTIONS(4348), 2, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4327), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4455), 3, + STATE(4509), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(4253), 21, + ACTIONS(4325), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -276102,7 +276448,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -276111,88 +276456,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [240412] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11315), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11317), 1, - anon_sym_LT_LT_LT, - ACTIONS(11320), 1, - sym_file_descriptor, - ACTIONS(11312), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4235), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11309), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11307), 12, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [240458] = 21, + [240470] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(11250), 1, + ACTIONS(11258), 1, anon_sym_LPAREN, - ACTIONS(11252), 1, + ACTIONS(11260), 1, aux_sym__c_word_token1, - ACTIONS(11256), 1, + ACTIONS(11264), 1, anon_sym_DOLLAR, - ACTIONS(11258), 1, + ACTIONS(11266), 1, anon_sym_DQUOTE, - ACTIONS(11260), 1, + ACTIONS(11268), 1, aux_sym_number_token1, - ACTIONS(11262), 1, + ACTIONS(11270), 1, aux_sym_number_token2, - ACTIONS(11264), 1, + ACTIONS(11272), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(11266), 1, + ACTIONS(11274), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11268), 1, + ACTIONS(11276), 1, anon_sym_BQUOTE, - ACTIONS(11270), 1, + ACTIONS(11278), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11325), 1, + ACTIONS(11323), 1, aux_sym_heredoc_redirect_token1, - STATE(3113), 1, + STATE(3024), 1, sym__c_postfix_expression, - STATE(3116), 1, - sym__c_binary_expression, - STATE(3118), 1, + STATE(3087), 1, sym__c_unary_expression, - STATE(4743), 1, + STATE(3118), 1, + sym__c_binary_expression, + STATE(4617), 1, sym__c_terminator, - STATE(6270), 1, + STATE(6255), 1, sym__c_expression, - STATE(6493), 1, + STATE(6521), 1, sym__c_variable_assignment, - ACTIONS(11248), 2, + ACTIONS(11256), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(11323), 2, + ACTIONS(11321), 2, anon_sym_SEMI, anon_sym_AMP, - STATE(3119), 7, + STATE(2990), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -276200,20 +276507,19 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [240530] = 6, + [240542] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11331), 1, - sym_variable_name, - STATE(6726), 1, - sym_subscript, - ACTIONS(11329), 2, + ACTIONS(11284), 1, + aux_sym_concatenation_token1, + ACTIONS(11325), 1, + sym__concat, + STATE(4248), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4230), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11327), 22, + ACTIONS(1286), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276236,20 +276542,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [240572] = 6, + anon_sym_LT_LT_LT, + [240584] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11276), 1, + ACTIONS(11284), 1, aux_sym_concatenation_token1, - ACTIONS(11278), 1, + ACTIONS(11286), 1, sym__concat, - STATE(4258), 1, + STATE(4234), 1, aux_sym_concatenation_repeat1, - ACTIONS(5375), 3, + ACTIONS(5589), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5373), 22, + ACTIONS(5587), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276272,62 +276578,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [240614] = 13, + anon_sym_LT_LT_LT, + [240626] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4411), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11305), 1, - anon_sym_LT_LT_LT, - ACTIONS(11337), 1, + ACTIONS(11284), 1, + aux_sym_concatenation_token1, + ACTIONS(11286), 1, + sym__concat, + STATE(4237), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2169), 2, sym_file_descriptor, - STATE(5069), 1, - sym_herestring_redirect, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4380), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(2167), 23, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4382), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4409), 2, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(11335), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4257), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(4455), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11333), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [240670] = 6, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [240668] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11272), 1, + ACTIONS(11327), 1, aux_sym_concatenation_token1, - ACTIONS(11274), 1, + ACTIONS(11330), 1, sym__concat, - STATE(4245), 1, + STATE(4240), 1, aux_sym_concatenation_repeat1, - ACTIONS(2096), 2, + ACTIONS(1278), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2094), 23, + ACTIONS(1276), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276337,10 +276638,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -276351,70 +276650,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [240712] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11250), 1, - anon_sym_LPAREN, - ACTIONS(11252), 1, - aux_sym__c_word_token1, - ACTIONS(11256), 1, - anon_sym_DOLLAR, - ACTIONS(11258), 1, - anon_sym_DQUOTE, - ACTIONS(11260), 1, - aux_sym_number_token1, - ACTIONS(11262), 1, - aux_sym_number_token2, - ACTIONS(11264), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11266), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11268), 1, anon_sym_BQUOTE, - ACTIONS(11270), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11341), 1, - aux_sym_heredoc_redirect_token1, - STATE(3113), 1, - sym__c_postfix_expression, - STATE(3116), 1, - sym__c_binary_expression, - STATE(3118), 1, - sym__c_unary_expression, - STATE(4721), 1, - sym__c_terminator, - STATE(6300), 1, - sym__c_expression, - STATE(6493), 1, - sym__c_variable_assignment, - ACTIONS(11248), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(11339), 2, - anon_sym_SEMI, - anon_sym_AMP, - STATE(3119), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [240784] = 6, + [240710] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11272), 1, + ACTIONS(11284), 1, aux_sym_concatenation_token1, - ACTIONS(11274), 1, + ACTIONS(11286), 1, sym__concat, - STATE(4245), 1, + STATE(4234), 1, aux_sym_concatenation_repeat1, - ACTIONS(4372), 2, + ACTIONS(5595), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 23, + ACTIONS(5593), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276438,72 +276687,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [240826] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11250), 1, - anon_sym_LPAREN, - ACTIONS(11252), 1, - aux_sym__c_word_token1, - ACTIONS(11256), 1, - anon_sym_DOLLAR, - ACTIONS(11258), 1, - anon_sym_DQUOTE, - ACTIONS(11260), 1, - aux_sym_number_token1, - ACTIONS(11262), 1, - aux_sym_number_token2, - ACTIONS(11264), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11266), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11268), 1, - anon_sym_BQUOTE, - ACTIONS(11270), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11345), 1, - aux_sym_heredoc_redirect_token1, - STATE(3113), 1, - sym__c_postfix_expression, - STATE(3116), 1, - sym__c_binary_expression, - STATE(3118), 1, - sym__c_unary_expression, - STATE(4757), 1, - sym__c_terminator, - STATE(6330), 1, - sym__c_expression, - STATE(6493), 1, - sym__c_variable_assignment, - ACTIONS(11248), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(11343), 2, - anon_sym_SEMI, - anon_sym_AMP, - STATE(3119), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [240898] = 6, + [240752] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11347), 1, + ACTIONS(11284), 1, aux_sym_concatenation_token1, - ACTIONS(11350), 1, + ACTIONS(11286), 1, sym__concat, - STATE(4244), 1, + STATE(4237), 1, aux_sym_concatenation_repeat1, - ACTIONS(1253), 4, + ACTIONS(2173), 2, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 21, + ACTIONS(2171), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276513,8 +276709,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -276524,20 +276722,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [240940] = 6, + anon_sym_LT_LT_LT, + [240794] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11272), 1, + ACTIONS(11284), 1, aux_sym_concatenation_token1, - ACTIONS(11353), 1, + ACTIONS(11286), 1, sym__concat, - STATE(4232), 1, + STATE(4234), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 2, + ACTIONS(4428), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 23, + ACTIONS(4426), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276561,19 +276759,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [240982] = 6, + [240836] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11272), 1, + ACTIONS(11284), 1, aux_sym_concatenation_token1, - ACTIONS(11274), 1, + ACTIONS(11286), 1, sym__concat, - STATE(4248), 1, + STATE(4237), 1, aux_sym_concatenation_repeat1, - ACTIONS(4469), 2, + ACTIONS(4513), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 23, + ACTIONS(4511), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276597,19 +276795,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [241024] = 6, + [240878] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11272), 1, + ACTIONS(11333), 1, aux_sym_concatenation_token1, - ACTIONS(11274), 1, + ACTIONS(11336), 1, sym__concat, STATE(4245), 1, aux_sym_concatenation_repeat1, - ACTIONS(2074), 2, + ACTIONS(1278), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1276), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [240920] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11284), 1, + aux_sym_concatenation_token1, + ACTIONS(11286), 1, + sym__concat, + STATE(4234), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4579), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2072), 23, + ACTIONS(4577), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276633,19 +276867,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [241066] = 6, + [240962] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11272), 1, + ACTIONS(11284), 1, aux_sym_concatenation_token1, - ACTIONS(11355), 1, + ACTIONS(11286), 1, sym__concat, - STATE(4232), 1, + STATE(4237), 1, aux_sym_concatenation_repeat1, - ACTIONS(1267), 2, + ACTIONS(4595), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 23, + ACTIONS(4593), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276669,66 +276903,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [241108] = 13, + [241004] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4384), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11305), 1, - anon_sym_LT_LT_LT, - ACTIONS(11337), 1, + ACTIONS(11339), 1, + aux_sym_concatenation_token1, + ACTIONS(11342), 1, + sym__concat, + STATE(4248), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 2, sym_file_descriptor, - STATE(5069), 1, - sym_herestring_redirect, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4378), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1276), 23, anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(4380), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4382), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11335), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(2719), 3, + anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - STATE(4455), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11333), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [241164] = 8, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [241046] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(11363), 1, + ACTIONS(11258), 1, + anon_sym_LPAREN, + ACTIONS(11260), 1, + aux_sym__c_word_token1, + ACTIONS(11264), 1, + anon_sym_DOLLAR, + ACTIONS(11266), 1, + anon_sym_DQUOTE, + ACTIONS(11268), 1, + aux_sym_number_token1, + ACTIONS(11270), 1, + aux_sym_number_token2, + ACTIONS(11272), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11274), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11276), 1, + anon_sym_BQUOTE, + ACTIONS(11278), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11347), 1, + aux_sym_heredoc_redirect_token1, + STATE(3024), 1, + sym__c_postfix_expression, + STATE(3087), 1, + sym__c_unary_expression, + STATE(3118), 1, + sym__c_binary_expression, + STATE(4658), 1, + sym__c_terminator, + STATE(6349), 1, + sym__c_expression, + STATE(6521), 1, + sym__c_variable_assignment, + ACTIONS(11256), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(11345), 2, + anon_sym_SEMI, + anon_sym_AMP, + STATE(2990), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [241118] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11355), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11365), 1, + ACTIONS(11357), 1, anon_sym_LT_LT_LT, - ACTIONS(11367), 1, + ACTIONS(11359), 1, sym_file_descriptor, - ACTIONS(11361), 2, + ACTIONS(11353), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4235), 3, + STATE(4254), 3, sym_file_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(11359), 8, + ACTIONS(11351), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -276737,7 +277015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11357), 12, + ACTIONS(11349), 12, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276750,20 +277028,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - [241210] = 6, + [241164] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11276), 1, - aux_sym_concatenation_token1, - ACTIONS(11369), 1, - sym__concat, - STATE(4256), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 3, + ACTIONS(11303), 1, + anon_sym_LT_LT_LT, + STATE(5103), 1, + sym_herestring_redirect, + ACTIONS(4323), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 22, + STATE(4509), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4310), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276773,7 +277052,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -276786,56 +277064,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [241252] = 6, + [241206] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(11272), 1, - aux_sym_concatenation_token1, - ACTIONS(11274), 1, - sym__concat, - STATE(4248), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5723), 2, - sym_file_descriptor, + ACTIONS(4527), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5721), 23, - anon_sym_SEMI, + ACTIONS(11303), 1, + anon_sym_LT_LT_LT, + ACTIONS(11305), 1, + sym_file_descriptor, + STATE(5103), 1, + sym_herestring_redirect, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4467), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4469), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LT_LT_DASH, + ACTIONS(4525), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(11301), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4314), 3, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + STATE(4509), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11299), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [241294] = 6, + [241262] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11371), 1, + ACTIONS(11361), 1, aux_sym_concatenation_token1, - ACTIONS(11374), 1, + ACTIONS(11363), 1, sym__concat, - STATE(4253), 1, + STATE(4284), 1, aux_sym_concatenation_repeat1, - ACTIONS(1253), 3, + ACTIONS(1274), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 22, + ACTIONS(1272), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276845,8 +277129,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -276857,94 +277142,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [241336] = 7, + sym__special_character, + [241304] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11305), 1, + ACTIONS(11373), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11375), 1, anon_sym_LT_LT_LT, - STATE(5069), 1, - sym_herestring_redirect, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4272), 2, + ACTIONS(11378), 1, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(4455), 3, + ACTIONS(11370), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4254), 3, sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4270), 19, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11367), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [241380] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11377), 1, - aux_sym_concatenation_token1, - ACTIONS(11379), 1, - sym__concat, - STATE(4380), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 3, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 22, + ACTIONS(11365), 12, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [241422] = 6, + [241350] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11381), 1, aux_sym_concatenation_token1, - ACTIONS(11384), 1, + ACTIONS(11383), 1, sym__concat, - STATE(4256), 1, + STATE(4342), 1, aux_sym_concatenation_repeat1, - ACTIONS(1253), 3, + ACTIONS(1274), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 22, + ACTIONS(1272), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276954,7 +277204,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -276967,19 +277216,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [241464] = 6, + sym__special_character, + [241392] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11272), 1, + ACTIONS(11280), 1, aux_sym_concatenation_token1, - ACTIONS(11274), 1, + ACTIONS(11385), 1, sym__concat, - STATE(4248), 1, + STATE(4233), 1, aux_sym_concatenation_repeat1, - ACTIONS(4566), 2, + ACTIONS(1268), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 23, + ACTIONS(1266), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277002,15 +277253,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [241506] = 6, + [241434] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11276), 1, + ACTIONS(11280), 1, aux_sym_concatenation_token1, ACTIONS(11387), 1, sym__concat, - STATE(4256), 1, + STATE(4233), 1, aux_sym_concatenation_repeat1, ACTIONS(1288), 3, sym_file_descriptor, @@ -277039,19 +277289,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [241548] = 6, + [241476] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11389), 1, + ACTIONS(11280), 1, aux_sym_concatenation_token1, - ACTIONS(11391), 1, + ACTIONS(11282), 1, sym__concat, - STATE(4304), 1, + STATE(4256), 1, aux_sym_concatenation_repeat1, - ACTIONS(1263), 2, + ACTIONS(5167), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 23, + ACTIONS(5165), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277074,20 +277325,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [241590] = 6, + [241518] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11272), 1, + ACTIONS(11280), 1, aux_sym_concatenation_token1, - ACTIONS(11274), 1, + ACTIONS(11282), 1, sym__concat, - STATE(4245), 1, + STATE(4257), 1, aux_sym_concatenation_repeat1, - ACTIONS(4554), 2, + ACTIONS(5175), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 23, + ACTIONS(5173), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277110,7 +277361,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + [241560] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11258), 1, + anon_sym_LPAREN, + ACTIONS(11260), 1, + aux_sym__c_word_token1, + ACTIONS(11264), 1, + anon_sym_DOLLAR, + ACTIONS(11266), 1, + anon_sym_DQUOTE, + ACTIONS(11268), 1, + aux_sym_number_token1, + ACTIONS(11270), 1, + aux_sym_number_token2, + ACTIONS(11272), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11274), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11276), 1, + anon_sym_BQUOTE, + ACTIONS(11278), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11391), 1, + aux_sym_heredoc_redirect_token1, + STATE(3024), 1, + sym__c_postfix_expression, + STATE(3087), 1, + sym__c_unary_expression, + STATE(3118), 1, + sym__c_binary_expression, + STATE(4785), 1, + sym__c_terminator, + STATE(6348), 1, + sym__c_expression, + STATE(6521), 1, + sym__c_variable_assignment, + ACTIONS(11256), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(11389), 2, + anon_sym_SEMI, + anon_sym_AMP, + STATE(2990), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, [241632] = 5, ACTIONS(3), 1, sym_comment, @@ -277118,12 +277419,11 @@ static const uint16_t ts_small_parse_table[] = { sym__special_character, STATE(4261), 1, aux_sym__literal_repeat1, - ACTIONS(1364), 4, + ACTIONS(1362), 3, sym_file_descriptor, - sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 21, + ACTIONS(1360), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277144,18 +277444,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [241671] = 5, + [241671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11396), 1, - sym__special_character, - STATE(4324), 1, - aux_sym__literal_repeat1, - ACTIONS(5723), 2, + ACTIONS(1278), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5721), 23, + ACTIONS(1276), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277178,29 +277477,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [241710] = 3, + aux_sym_concatenation_token1, + [241706] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 3, + ACTIONS(11396), 1, + anon_sym_LT_LT_LT, + STATE(4954), 1, + sym_herestring_redirect, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4327), 3, sym_file_descriptor, - sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 24, + STATE(4634), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4325), 17, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -277209,17 +277514,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [241745] = 3, + [241749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 4, + ACTIONS(1346), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 23, + ACTIONS(1344), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277243,81 +277546,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [241780] = 3, + [241784] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 3, - sym_file_descriptor, - sym__concat, + ACTIONS(11409), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 24, + ACTIONS(11411), 1, + sym_file_descriptor, + ACTIONS(11403), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11406), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4265), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11400), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11398), 10, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + [241829] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11250), 1, + anon_sym_LT_LT_LT, + ACTIONS(11416), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11418), 1, + sym_file_descriptor, + ACTIONS(11248), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4936), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11246), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [241815] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11398), 1, - aux_sym_concatenation_token1, - ACTIONS(11401), 1, - sym__concat, - STATE(4266), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1253), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 22, + ACTIONS(11414), 12, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [241856] = 3, + [241874] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 3, - sym_file_descriptor, + ACTIONS(11361), 1, + aux_sym_concatenation_token1, + ACTIONS(11363), 1, sym__concat, + STATE(4284), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4428), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 24, + ACTIONS(4426), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277327,7 +277642,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -277341,21 +277655,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [241891] = 6, + [241915] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11404), 1, + ACTIONS(11361), 1, aux_sym_concatenation_token1, - ACTIONS(11407), 1, + ACTIONS(11363), 1, sym__concat, - STATE(4268), 1, + STATE(4308), 1, aux_sym_concatenation_repeat1, - ACTIONS(1253), 3, + ACTIONS(4513), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 21, + ACTIONS(4511), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277365,8 +277677,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -277376,22 +277689,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [241932] = 6, + anon_sym_LT_LT_LT, + [241956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11410), 1, - anon_sym_LT_LT_LT, - STATE(4912), 1, - sym_herestring_redirect, - ACTIONS(4348), 2, + ACTIONS(1358), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - STATE(4697), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4253), 20, + ACTIONS(1356), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277401,7 +277708,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -277411,20 +277721,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [241973] = 6, + aux_sym_concatenation_token1, + [241991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11389), 1, - aux_sym_concatenation_token1, - ACTIONS(11391), 1, - sym__concat, - STATE(4297), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4554), 2, + ACTIONS(1298), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 22, + ACTIONS(1296), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277447,19 +277753,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [242014] = 6, + aux_sym_concatenation_token1, + [242026] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11389), 1, - aux_sym_concatenation_token1, - ACTIONS(11391), 1, - sym__concat, - STATE(4297), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2096), 2, + ACTIONS(11420), 1, + sym_variable_name, + STATE(6765), 1, + sym_subscript, + ACTIONS(11294), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2094), 22, + STATE(4271), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11292), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277469,7 +277777,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -277482,19 +277789,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [242055] = 6, + [242067] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11389), 1, - aux_sym_concatenation_token1, - ACTIONS(11391), 1, - sym__concat, - STATE(4304), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4566), 2, + ACTIONS(11423), 1, + sym__special_character, + STATE(4272), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 22, + ACTIONS(1360), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277517,56 +277822,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [242096] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11284), 1, anon_sym_LT_LT_LT, - ACTIONS(11414), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11416), 1, - sym_file_descriptor, - ACTIONS(11282), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4985), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11280), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11412), 12, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [242141] = 6, + [242106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11301), 1, - aux_sym_concatenation_token1, - ACTIONS(11303), 1, - sym__concat, - STATE(4284), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4372), 2, + ACTIONS(1306), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 22, + ACTIONS(1304), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277576,6 +277840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -277589,15 +277854,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [242182] = 3, + aux_sym_concatenation_token1, + [242141] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 4, - sym_file_descriptor, + ACTIONS(11426), 1, sym__concat, - ts_builtin_sym_end, + ACTIONS(6859), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(6857), 21, + sym__immediate_double_hash, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_POUND, + anon_sym_RBRACE3, + anon_sym_AT, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + anon_sym_PERCENT_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + [242178] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11361), 1, + aux_sym_concatenation_token1, + ACTIONS(11363), 1, + sym__concat, + STATE(4284), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4579), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 23, + ACTIONS(4577), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277607,8 +277910,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -277619,21 +277923,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [242217] = 6, + [242219] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11301), 1, + ACTIONS(11361), 1, aux_sym_concatenation_token1, - ACTIONS(11303), 1, + ACTIONS(11363), 1, sym__concat, - STATE(4309), 1, + STATE(4308), 1, aux_sym_concatenation_repeat1, - ACTIONS(4469), 2, + ACTIONS(4595), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 22, + ACTIONS(4593), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277656,18 +277958,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [242258] = 5, + [242260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11418), 1, - sym__special_character, - STATE(4394), 1, - aux_sym__literal_repeat1, - ACTIONS(5723), 3, + ACTIONS(1278), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(5721), 22, + ACTIONS(1276), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277677,8 +277975,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -277689,90 +277989,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [242297] = 8, + aux_sym_concatenation_token1, + [242295] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11431), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11433), 1, + ACTIONS(11428), 1, + sym__concat, + ACTIONS(6865), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(6863), 21, + sym__immediate_double_hash, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_POUND, + anon_sym_RBRACE3, + anon_sym_AT, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + anon_sym_PERCENT_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + [242332] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 4, sym_file_descriptor, - ACTIONS(11425), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11428), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4278), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11422), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11420), 10, + sym__concat, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1320), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - [242342] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11315), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11442), 1, - anon_sym_LT_LT_LT, - ACTIONS(11445), 1, - sym_file_descriptor, - ACTIONS(11439), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4279), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11436), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11307), 11, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [242387] = 3, + aux_sym_concatenation_token1, + [242367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 4, + ACTIONS(1330), 4, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 23, + ACTIONS(1328), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277782,8 +278073,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -277793,37 +278086,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [242422] = 7, + [242402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11448), 1, - anon_sym_LT_LT_LT, - STATE(4912), 1, - sym_herestring_redirect, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4272), 3, + ACTIONS(1310), 4, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - STATE(4650), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4270), 17, + ACTIONS(1308), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -277832,20 +278118,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [242465] = 6, + aux_sym_concatenation_token1, + [242437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11450), 1, - sym_variable_name, - STATE(6772), 1, - sym_subscript, - ACTIONS(11290), 2, + ACTIONS(1314), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - STATE(4282), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11288), 21, + ACTIONS(1312), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277855,6 +278137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -277867,56 +278150,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [242506] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11455), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11457), 1, - sym_file_descriptor, - ACTIONS(4255), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11282), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4278), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11280), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11453), 10, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - [242551] = 6, + aux_sym_concatenation_token1, + [242472] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11301), 1, + ACTIONS(11430), 1, aux_sym_concatenation_token1, - ACTIONS(11459), 1, + ACTIONS(11432), 1, sym__concat, - STATE(4266), 1, + STATE(4437), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 2, + ACTIONS(1274), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 22, + ACTIONS(1272), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277938,16 +278185,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [242592] = 3, + sym__special_character, + [242513] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 4, - sym_file_descriptor, + ACTIONS(11361), 1, + aux_sym_concatenation_token1, + ACTIONS(11434), 1, sym__concat, - sym_variable_name, + STATE(4326), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 23, + ACTIONS(1266), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277957,7 +278208,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -277970,20 +278220,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [242627] = 6, + anon_sym_LT_LT_LT, + [242554] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11461), 1, + ACTIONS(11361), 1, aux_sym_concatenation_token1, - ACTIONS(11464), 1, + ACTIONS(11363), 1, sym__concat, - STATE(4286), 1, + STATE(4284), 1, aux_sym_concatenation_repeat1, - ACTIONS(1253), 2, + ACTIONS(5589), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 22, + ACTIONS(5587), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277993,7 +278243,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -278006,19 +278255,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [242668] = 5, + anon_sym_LT_LT_LT, + [242595] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11467), 1, - sym__special_character, - STATE(4261), 1, - aux_sym__literal_repeat1, - ACTIONS(5069), 4, + ACTIONS(11361), 1, + aux_sym_concatenation_token1, + ACTIONS(11363), 1, + sym__concat, + STATE(4308), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2169), 2, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5067), 21, + ACTIONS(2167), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278028,8 +278278,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -278039,17 +278290,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [242707] = 3, + anon_sym_LT_LT_LT, + [242636] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, - sym_file_descriptor, + ACTIONS(11436), 1, + aux_sym_concatenation_token1, + ACTIONS(11439), 1, sym__concat, - sym_variable_name, + STATE(4287), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 3, + sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 22, + ACTIONS(1276), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278070,55 +278325,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [242742] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11410), 1, - anon_sym_LT_LT_LT, - STATE(4912), 1, - sym_herestring_redirect, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4272), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(4697), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4270), 18, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [242785] = 5, + [242677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11396), 1, - sym__special_character, - STATE(4324), 1, - aux_sym__literal_repeat1, - ACTIONS(4566), 2, + ACTIONS(1358), 5, sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 23, + ACTIONS(1356), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278128,10 +278345,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -278141,19 +278356,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [242824] = 4, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [242712] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11469), 1, + ACTIONS(11442), 1, sym__concat, - ACTIONS(6844), 5, + ACTIONS(6837), 5, anon_sym_COMMA, anon_sym_CARET, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_COLON, - ACTIONS(6842), 21, + ACTIONS(6835), 21, sym__immediate_double_hash, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, @@ -278175,53 +278391,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_PERCENT, anon_sym_COMMA_COMMA, anon_sym_CARET_CARET, - [242861] = 6, + [242749] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11389), 1, - aux_sym_concatenation_token1, - ACTIONS(11391), 1, + ACTIONS(11444), 1, sym__concat, - STATE(4297), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4372), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [242902] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11471), 1, - sym__concat, - ACTIONS(6838), 5, + ACTIONS(6819), 5, anon_sym_COMMA, anon_sym_CARET, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_COLON, - ACTIONS(6836), 21, + ACTIONS(6817), 21, sym__immediate_double_hash, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, @@ -278243,18 +278424,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_PERCENT, anon_sym_COMMA_COMMA, anon_sym_CARET_CARET, - [242939] = 5, + [242786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11418), 1, - sym__special_character, - STATE(4394), 1, - aux_sym__literal_repeat1, - ACTIONS(4469), 3, + ACTIONS(1346), 4, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 22, + ACTIONS(1344), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278264,8 +278442,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -278275,16 +278455,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [242978] = 3, + aux_sym_concatenation_token1, + [242821] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 3, + ACTIONS(11446), 1, + sym__special_character, + STATE(4272), 1, + aux_sym__literal_repeat1, + ACTIONS(5589), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 24, + ACTIONS(5587), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278308,20 +278490,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [243013] = 6, + [242860] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11389), 1, + ACTIONS(11250), 1, + anon_sym_LT_LT_LT, + ACTIONS(11418), 1, + sym_file_descriptor, + ACTIONS(11450), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11248), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4949), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11246), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11448), 12, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [242905] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11361), 1, aux_sym_concatenation_token1, - ACTIONS(11391), 1, + ACTIONS(11363), 1, sym__concat, - STATE(4304), 1, + STATE(4284), 1, aux_sym_concatenation_repeat1, - ACTIONS(4469), 2, + ACTIONS(5595), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 22, + ACTIONS(5593), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278331,7 +278549,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -278344,19 +278561,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [243054] = 6, + anon_sym_LT_LT_LT, + [242946] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11389), 1, + ACTIONS(11361), 1, aux_sym_concatenation_token1, - ACTIONS(11473), 1, + ACTIONS(11363), 1, sym__concat, - STATE(4286), 1, + STATE(4308), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 2, + ACTIONS(2173), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 22, + ACTIONS(2171), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278366,7 +278584,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -278379,14 +278596,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [243095] = 3, + anon_sym_LT_LT_LT, + [242987] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 3, + ACTIONS(11452), 1, + anon_sym_LT_LT_LT, + STATE(4954), 1, + sym_herestring_redirect, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4327), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4669), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4325), 18, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [243030] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 4, sym_file_descriptor, sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 24, + ACTIONS(1296), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278396,10 +278651,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -278411,19 +278664,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [243130] = 6, + anon_sym_BQUOTE, + [243065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11301), 1, - aux_sym_concatenation_token1, - ACTIONS(11303), 1, - sym__concat, - STATE(4309), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5723), 2, + ACTIONS(1346), 5, sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5721), 22, + ACTIONS(1344), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278433,9 +278684,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -278445,15 +278695,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [243171] = 3, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [243100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 3, + ACTIONS(1306), 4, sym_file_descriptor, sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 24, + ACTIONS(1304), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278463,10 +278715,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -278478,14 +278728,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [243206] = 3, + anon_sym_BQUOTE, + [243135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 3, + ACTIONS(1278), 4, sym_file_descriptor, sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 24, + ACTIONS(1276), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278495,10 +278747,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -278510,14 +278760,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [243241] = 3, + anon_sym_BQUOTE, + [243170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 3, + ACTIONS(1342), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 24, + ACTIONS(1340), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278542,15 +278793,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [243276] = 3, + [243205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 4, + ACTIONS(1358), 4, sym_file_descriptor, sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 23, + ACTIONS(1356), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278574,19 +278825,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [243311] = 6, + [243240] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11389), 1, - aux_sym_concatenation_token1, - ACTIONS(11475), 1, - sym__concat, - STATE(4286), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 2, + ACTIONS(1294), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 22, + ACTIONS(1292), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278609,18 +278855,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [243352] = 5, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [243275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11418), 1, - sym__special_character, - STATE(4394), 1, - aux_sym__literal_repeat1, - ACTIONS(5697), 3, + ACTIONS(1310), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5695), 22, + ACTIONS(1308), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278642,15 +278887,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - [243391] = 3, + [243310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 3, + ACTIONS(1314), 4, sym_file_descriptor, sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 24, + ACTIONS(1312), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278660,10 +278907,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -278675,14 +278920,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [243426] = 3, + anon_sym_BQUOTE, + [243345] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 3, - sym_file_descriptor, + ACTIONS(11454), 1, + aux_sym_concatenation_token1, + ACTIONS(11456), 1, sym__concat, + STATE(4462), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 24, + ACTIONS(1272), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278692,10 +278943,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -278706,15 +278955,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [243461] = 3, + sym__special_character, + [243386] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 3, - sym_file_descriptor, + ACTIONS(11458), 1, + aux_sym_concatenation_token1, + ACTIONS(11460), 1, sym__concat, + STATE(4465), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 3, + sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 24, + ACTIONS(1272), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278724,10 +278979,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -278737,21 +278990,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [243496] = 6, + sym__special_character, + [243427] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11301), 1, + ACTIONS(11361), 1, aux_sym_concatenation_token1, - ACTIONS(11477), 1, + ACTIONS(11462), 1, sym__concat, - STATE(4266), 1, + STATE(4326), 1, aux_sym_concatenation_repeat1, - ACTIONS(1267), 2, + ACTIONS(1288), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 22, + ACTIONS(1286), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278774,50 +279026,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [243537] = 6, + [243468] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11301), 1, - aux_sym_concatenation_token1, - ACTIONS(11303), 1, - sym__concat, - STATE(4284), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2096), 2, + ACTIONS(11250), 1, + anon_sym_LT_LT_LT, + ACTIONS(11418), 1, sym_file_descriptor, + ACTIONS(11466), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(2094), 22, + ACTIONS(11248), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4884), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11246), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11464), 12, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [243578] = 3, + [243513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 4, + ACTIONS(1338), 4, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 23, + ACTIONS(1336), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278827,8 +279081,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -278838,43 +279094,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [243613] = 13, + [243548] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2721), 1, - ts_builtin_sym_end, - ACTIONS(5051), 1, + ACTIONS(2755), 1, + anon_sym_BQUOTE, + ACTIONS(5107), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11448), 1, + ACTIONS(11472), 1, anon_sym_LT_LT_LT, - ACTIONS(11483), 1, + ACTIONS(11474), 1, sym_file_descriptor, - STATE(4912), 1, + STATE(4954), 1, sym_herestring_redirect, - ACTIONS(4253), 2, + ACTIONS(4310), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4690), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4692), 2, + ACTIONS(4705), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(11481), 2, + ACTIONS(5077), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11470), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(5049), 3, + ACTIONS(5105), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(4650), 3, + STATE(4670), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11479), 8, + ACTIONS(11468), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -278883,16 +279137,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [243668] = 3, + [243603] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 5, + ACTIONS(11452), 1, + anon_sym_LT_LT_LT, + STATE(4954), 1, + sym_herestring_redirect, + ACTIONS(4323), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 22, + STATE(4669), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4310), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278913,63 +279172,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [243703] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4257), 1, - anon_sym_BQUOTE, - ACTIONS(5379), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11410), 1, - anon_sym_LT_LT_LT, - ACTIONS(11489), 1, - sym_file_descriptor, - STATE(4912), 1, - sym_herestring_redirect, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5355), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(11487), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(5377), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4697), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11485), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [243758] = 6, + [243644] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11491), 1, - aux_sym_concatenation_token1, - ACTIONS(11493), 1, - sym__concat, - STATE(4471), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 2, + ACTIONS(11476), 1, + sym__special_character, + STATE(4361), 1, + aux_sym__literal_repeat1, + ACTIONS(5167), 4, sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 22, + ACTIONS(5165), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278979,9 +279194,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -278991,17 +279205,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [243799] = 3, + anon_sym_BQUOTE, + [243683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 5, + ACTIONS(1350), 4, sym_file_descriptor, sym__concat, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 22, + ACTIONS(1348), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279011,8 +279224,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279023,15 +279238,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [243834] = 3, + [243718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 3, + ACTIONS(1306), 4, sym_file_descriptor, sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 24, + ACTIONS(1304), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279054,18 +279269,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [243869] = 3, + [243753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 5, + ACTIONS(1298), 5, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 22, + ACTIONS(1296), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279088,19 +279302,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [243904] = 6, + [243788] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11301), 1, - aux_sym_concatenation_token1, - ACTIONS(11303), 1, - sym__concat, - STATE(4309), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5697), 2, + ACTIONS(11446), 1, + sym__special_character, + STATE(4272), 1, + aux_sym__literal_repeat1, + ACTIONS(5595), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5695), 22, + ACTIONS(5593), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279110,6 +279322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -279123,16 +279336,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [243945] = 3, + [243827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 5, + ACTIONS(1318), 4, sym_file_descriptor, sym__concat, - sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 22, + ACTIONS(1316), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279153,59 +279365,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [243980] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4686), 1, - ts_builtin_sym_end, - ACTIONS(4694), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11448), 1, - anon_sym_LT_LT_LT, - ACTIONS(11483), 1, - sym_file_descriptor, - STATE(4912), 1, - sym_herestring_redirect, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4690), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11481), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4688), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4650), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11479), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [244035] = 3, + [243862] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 4, + ACTIONS(1306), 5, sym_file_descriptor, sym__concat, sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 23, + ACTIONS(1304), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279215,10 +279387,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279229,15 +279399,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [244070] = 3, + anon_sym_BQUOTE, + [243897] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 4, - sym_file_descriptor, + ACTIONS(11381), 1, + aux_sym_concatenation_token1, + ACTIONS(11383), 1, sym__concat, + STATE(4342), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5167), 3, + sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 23, + ACTIONS(5165), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279247,7 +279423,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -279260,18 +279435,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [244105] = 5, + [243938] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11495), 1, + ACTIONS(11446), 1, sym__special_character, - STATE(4324), 1, + STATE(4272), 1, aux_sym__literal_repeat1, - ACTIONS(1364), 2, + ACTIONS(4428), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 23, + ACTIONS(4426), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279295,15 +279469,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [244144] = 3, + [243977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 4, + ACTIONS(1278), 5, sym_file_descriptor, sym__concat, sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 23, + ACTIONS(1276), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279313,10 +279488,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279327,15 +279500,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [244179] = 3, + anon_sym_BQUOTE, + [244012] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 4, - sym_file_descriptor, + ACTIONS(11381), 1, + aux_sym_concatenation_token1, + ACTIONS(11383), 1, sym__concat, + STATE(4344), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5175), 3, + sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 23, + ACTIONS(5173), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279345,7 +279524,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -279358,16 +279536,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [244214] = 3, + [244053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 4, + ACTIONS(1318), 3, sym_file_descriptor, sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 23, + ACTIONS(1316), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279390,15 +279566,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [244249] = 3, + [244088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 3, + ACTIONS(1302), 4, sym_file_descriptor, sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 24, + ACTIONS(1300), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279408,10 +279586,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279423,14 +279599,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [244284] = 3, + anon_sym_BQUOTE, + [244123] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 3, - sym_file_descriptor, + ACTIONS(11478), 1, + aux_sym_concatenation_token1, + ACTIONS(11481), 1, sym__concat, + STATE(4326), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 24, + ACTIONS(1276), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279440,7 +279622,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -279454,15 +279635,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [244319] = 3, + [244164] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 3, - sym_file_descriptor, + ACTIONS(11288), 1, + aux_sym_concatenation_token1, + ACTIONS(11484), 1, sym__concat, + STATE(4343), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 24, + ACTIONS(1286), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279485,21 +279670,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [244354] = 6, + [244205] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11301), 1, + ACTIONS(11454), 1, aux_sym_concatenation_token1, - ACTIONS(11303), 1, + ACTIONS(11456), 1, sym__concat, - STATE(4284), 1, + STATE(4458), 1, aux_sym_concatenation_repeat1, - ACTIONS(2074), 2, + ACTIONS(1274), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2072), 22, + ACTIONS(1272), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279510,8 +279694,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279522,15 +279704,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [244395] = 3, + sym__special_character, + [244246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 4, + ACTIONS(1358), 3, sym_file_descriptor, sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 23, + ACTIONS(1356), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279553,17 +279735,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [244430] = 3, + [244281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 5, + ACTIONS(1310), 5, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 22, + ACTIONS(1308), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279586,16 +279769,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [244465] = 3, + [244316] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(11396), 1, + anon_sym_LT_LT_LT, + STATE(4954), 1, + sym_herestring_redirect, + ACTIONS(4323), 3, sym_file_descriptor, - sym__concat, - sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 22, + STATE(4634), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4310), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279605,7 +279794,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -279616,17 +279804,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [244500] = 3, + [244357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 4, + ACTIONS(1322), 3, sym_file_descriptor, sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 23, + ACTIONS(1320), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279649,16 +279834,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [244535] = 3, + [244392] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 4, - sym_file_descriptor, + ACTIONS(11288), 1, + aux_sym_concatenation_token1, + ACTIONS(11290), 1, sym__concat, - sym_variable_name, + STATE(4414), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4428), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 23, + ACTIONS(4426), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279681,16 +279871,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [244570] = 3, + [244433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 4, + ACTIONS(1314), 5, sym_file_descriptor, sym__concat, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 23, + ACTIONS(1312), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279711,18 +279901,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [244605] = 3, + [244468] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 4, + ACTIONS(11355), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11490), 1, + anon_sym_LT_LT_LT, + ACTIONS(11492), 1, sym_file_descriptor, + ACTIONS(11488), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4389), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11486), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11349), 11, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [244513] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11288), 1, + aux_sym_concatenation_token1, + ACTIONS(11290), 1, sym__concat, - ts_builtin_sym_end, + STATE(4327), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4513), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 23, + ACTIONS(4511), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279732,8 +279962,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279743,20 +279975,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [244640] = 4, + [244554] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4272), 2, + ACTIONS(11446), 1, + sym__special_character, + STATE(4272), 1, + aux_sym__literal_repeat1, + ACTIONS(4579), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4283), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4270), 22, + ACTIONS(4577), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279779,15 +280008,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [244677] = 3, + anon_sym_LT_LT_LT, + [244593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 4, + ACTIONS(1318), 4, sym_file_descriptor, sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 23, + ACTIONS(1316), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279811,72 +280041,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [244712] = 11, + [244628] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4340), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11457), 1, + ACTIONS(11288), 1, + aux_sym_concatenation_token1, + ACTIONS(11290), 1, + sym__concat, + STATE(4414), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4579), 2, sym_file_descriptor, - ACTIONS(4251), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(4577), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4253), 2, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4255), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4338), 2, - anon_sym_SEMI, anon_sym_AMP, - ACTIONS(11282), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4283), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2719), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(11280), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [244763] = 5, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [244669] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4272), 2, + ACTIONS(11494), 1, + sym__special_character, + STATE(4261), 1, + aux_sym__literal_repeat1, + ACTIONS(4579), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4283), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4270), 20, + ACTIONS(4577), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -279885,15 +280108,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [244802] = 3, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [244708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 4, + ACTIONS(1298), 3, sym_file_descriptor, sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 23, + ACTIONS(1296), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279916,54 +280140,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [244837] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11498), 1, - sym__concat, - ACTIONS(6820), 5, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - ACTIONS(6818), 21, - sym__immediate_double_hash, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_POUND, - anon_sym_RBRACE3, - anon_sym_AT, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - anon_sym_PERCENT_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - [244874] = 6, + [244743] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11500), 1, + ACTIONS(11381), 1, aux_sym_concatenation_token1, - ACTIONS(11502), 1, + ACTIONS(11496), 1, sym__concat, - STATE(4594), 1, + STATE(4348), 1, aux_sym_concatenation_repeat1, - ACTIONS(1263), 3, + ACTIONS(1268), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 21, + ACTIONS(1266), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279974,6 +280166,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279983,57 +280177,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - anon_sym_BQUOTE, - [244915] = 8, + [244784] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11284), 1, - anon_sym_LT_LT_LT, - ACTIONS(11416), 1, + ACTIONS(11498), 1, + aux_sym_concatenation_token1, + ACTIONS(11501), 1, + sym__concat, + STATE(4343), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 2, sym_file_descriptor, - ACTIONS(11506), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11282), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4949), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11280), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11504), 12, + ACTIONS(1276), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [244960] = 5, + [244825] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11418), 1, - sym__special_character, - STATE(4394), 1, - aux_sym__literal_repeat1, - ACTIONS(4566), 3, + ACTIONS(11381), 1, + aux_sym_concatenation_token1, + ACTIONS(11504), 1, + sym__concat, + STATE(4348), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 22, + ACTIONS(1286), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280043,8 +280235,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280054,17 +280247,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [244999] = 3, + [244866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 4, + ACTIONS(1358), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 23, + ACTIONS(1356), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280088,61 +280279,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [245034] = 11, + [244901] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4259), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11457), 1, + ACTIONS(11288), 1, + aux_sym_concatenation_token1, + ACTIONS(11290), 1, + sym__concat, + STATE(4327), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4595), 2, sym_file_descriptor, - ACTIONS(4249), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(4593), 22, anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(4251), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4253), 2, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4255), 2, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11282), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4283), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4257), 4, + anon_sym_GT_GT, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(11280), 8, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [244942] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [245085] = 6, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [244977] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11500), 1, + ACTIONS(11506), 1, aux_sym_concatenation_token1, - ACTIONS(11502), 1, + ACTIONS(11509), 1, sym__concat, - STATE(4511), 1, + STATE(4348), 1, aux_sym_concatenation_repeat1, - ACTIONS(1263), 4, + ACTIONS(1278), 3, sym_file_descriptor, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 20, + ACTIONS(1276), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280153,6 +280370,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280162,18 +280381,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [245126] = 5, + [245018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11396), 1, - sym__special_character, - STATE(4324), 1, - aux_sym__literal_repeat1, - ACTIONS(5697), 2, + ACTIONS(1310), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(5695), 23, + ACTIONS(1308), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280197,19 +280412,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [245165] = 6, + aux_sym_concatenation_token1, + [245053] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(11301), 1, - aux_sym_concatenation_token1, - ACTIONS(11303), 1, - sym__concat, - STATE(4309), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4566), 2, + ACTIONS(4316), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11512), 1, sym_file_descriptor, + ACTIONS(4306), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(4308), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4312), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11248), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4407), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4314), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(11246), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [245104] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 22, + ACTIONS(1320), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280219,9 +280471,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280232,21 +280483,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [245206] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [245139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11508), 1, - anon_sym_LT_LT_LT, - STATE(4912), 1, - sym_herestring_redirect, - ACTIONS(4348), 2, + ACTIONS(1326), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4746), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4253), 20, + ACTIONS(1324), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280267,15 +280514,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [245247] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [245174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 4, + ACTIONS(1330), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 23, + ACTIONS(1328), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280285,10 +280535,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280298,16 +280546,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [245282] = 3, + anon_sym_BQUOTE, + [245209] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 4, - sym_file_descriptor, + ACTIONS(11458), 1, + aux_sym_concatenation_token1, + ACTIONS(11460), 1, sym__concat, + STATE(4550), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 4, + sym_file_descriptor, sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 23, + ACTIONS(1272), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280317,10 +280573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280330,16 +280583,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [245317] = 3, + sym__special_character, + [245250] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 4, - sym_file_descriptor, + ACTIONS(11454), 1, + aux_sym_concatenation_token1, + ACTIONS(11456), 1, sym__concat, - sym_variable_name, + STATE(4498), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 23, + ACTIONS(1272), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280349,10 +280606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280362,17 +280616,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [245352] = 3, + anon_sym_LT_LT_LT, + sym__special_character, + anon_sym_BQUOTE, + [245291] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 5, - sym_file_descriptor, + ACTIONS(11458), 1, + aux_sym_concatenation_token1, + ACTIONS(11460), 1, sym__concat, + STATE(4500), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 3, + sym_file_descriptor, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 22, + ACTIONS(1272), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280382,7 +280642,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -280393,22 +280652,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_BQUOTE, - [245387] = 6, + [245332] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11510), 1, - sym_variable_name, - STATE(6772), 1, - sym_subscript, - ACTIONS(11329), 2, + ACTIONS(11288), 1, + aux_sym_concatenation_token1, + ACTIONS(11290), 1, + sym__concat, + STATE(4414), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5589), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4282), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11327), 21, + ACTIONS(5587), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280418,6 +280676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -280430,19 +280689,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [245428] = 6, + [245373] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, + ACTIONS(11288), 1, aux_sym_concatenation_token1, - ACTIONS(11514), 1, + ACTIONS(11290), 1, sym__concat, - STATE(4592), 1, + STATE(4327), 1, aux_sym_concatenation_repeat1, - ACTIONS(1263), 2, + ACTIONS(2169), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 22, + ACTIONS(2167), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280452,8 +280711,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280463,18 +280724,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - [245469] = 3, + [245414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 5, + ACTIONS(1342), 4, sym_file_descriptor, sym__concat, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 22, + ACTIONS(1340), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280484,8 +280742,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280496,21 +280756,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [245504] = 6, + [245449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11500), 1, - aux_sym_concatenation_token1, - ACTIONS(11502), 1, - sym__concat, - STATE(4586), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 3, + ACTIONS(1294), 4, sym_file_descriptor, + sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 21, + ACTIONS(1292), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280520,8 +280774,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280531,20 +280787,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [245545] = 6, + aux_sym_concatenation_token1, + [245484] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, - aux_sym_concatenation_token1, ACTIONS(11514), 1, - sym__concat, - STATE(4583), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 2, + sym__special_character, + STATE(4361), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 4, sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 22, + ACTIONS(1360), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280554,6 +280810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -280564,55 +280821,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, anon_sym_BQUOTE, - [245586] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11516), 1, - sym__concat, - ACTIONS(6829), 5, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - ACTIONS(6827), 21, - sym__immediate_double_hash, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_POUND, - anon_sym_RBRACE3, - anon_sym_AT, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - anon_sym_PERCENT_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - [245623] = 6, + [245523] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11389), 1, - aux_sym_concatenation_token1, - ACTIONS(11391), 1, - sym__concat, - STATE(4304), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5697), 2, + ACTIONS(11517), 1, + sym__special_character, + STATE(4362), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5695), 22, + ACTIONS(1360), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280635,16 +280856,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [245664] = 3, + [245562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1318), 5, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 22, + ACTIONS(1316), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280667,15 +280888,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [245699] = 3, + [245597] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 4, + ACTIONS(11494), 1, + sym__special_character, + STATE(4261), 1, + aux_sym__literal_repeat1, + ACTIONS(4428), 3, sym_file_descriptor, - sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 23, + ACTIONS(4426), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280697,17 +280921,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, anon_sym_BQUOTE, - [245734] = 3, + [245636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 4, + ACTIONS(1302), 5, sym_file_descriptor, sym__concat, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 23, + ACTIONS(1300), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280728,21 +280952,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [245769] = 5, + [245671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11518), 1, - sym__special_character, - STATE(4368), 1, - aux_sym__literal_repeat1, - ACTIONS(1364), 3, + ACTIONS(1314), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 22, + ACTIONS(1312), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280765,15 +280984,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [245808] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [245706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 4, + ACTIONS(1334), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 23, + ACTIONS(1332), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280797,19 +281018,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [245843] = 6, + [245741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11389), 1, - aux_sym_concatenation_token1, - ACTIONS(11391), 1, - sym__concat, - STATE(4297), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2074), 2, + ACTIONS(1326), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(2072), 22, + ACTIONS(1324), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280832,52 +281049,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [245884] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11363), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11525), 1, - anon_sym_LT_LT_LT, - ACTIONS(11527), 1, - sym_file_descriptor, - ACTIONS(11523), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4279), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11521), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11357), 11, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [245929] = 3, + aux_sym_concatenation_token1, + [245776] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 4, + ACTIONS(11520), 1, + sym_variable_name, + STATE(6765), 1, + sym_subscript, + ACTIONS(11309), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 23, + STATE(4271), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11307), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280887,8 +281073,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280898,19 +281085,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [245964] = 3, + [245817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 5, + ACTIONS(1334), 4, sym_file_descriptor, sym__concat, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 22, + ACTIONS(1332), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280920,8 +281103,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280932,17 +281117,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [245999] = 3, + [245852] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, - sym_file_descriptor, + ACTIONS(11288), 1, + aux_sym_concatenation_token1, + ACTIONS(11290), 1, sym__concat, - sym_variable_name, - ts_builtin_sym_end, + STATE(4414), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5595), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 22, + ACTIONS(5593), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280952,8 +281139,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280963,21 +281152,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [246034] = 6, + [245893] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11301), 1, + ACTIONS(11288), 1, aux_sym_concatenation_token1, - ACTIONS(11303), 1, + ACTIONS(11290), 1, sym__concat, - STATE(4284), 1, + STATE(4327), 1, aux_sym_concatenation_repeat1, - ACTIONS(4554), 2, + ACTIONS(2173), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 22, + ACTIONS(2171), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280987,6 +281174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -280999,25 +281187,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [246075] = 7, + [245934] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11508), 1, - anon_sym_LT_LT_LT, - STATE(4912), 1, - sym_herestring_redirect, - ACTIONS(4253), 2, + ACTIONS(4310), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4272), 2, + ACTIONS(4327), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4746), 3, + STATE(4407), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(4270), 18, + ACTIONS(4325), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281026,8 +281209,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -281036,48 +281221,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [246118] = 3, + [245973] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 5, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, + ACTIONS(4346), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 22, - anon_sym_SEMI, + ACTIONS(11512), 1, + sym_file_descriptor, + ACTIONS(4308), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(4310), 2, anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4312), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4344), 2, + anon_sym_SEMI, anon_sym_AMP, + ACTIONS(11248), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4407), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(2755), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(11246), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + [246024] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2757), 1, + ts_builtin_sym_end, + ACTIONS(4707), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11396), 1, + anon_sym_LT_LT_LT, + ACTIONS(11526), 1, + sym_file_descriptor, + STATE(4954), 1, + sym_herestring_redirect, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4703), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4705), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11524), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [246153] = 3, + ACTIONS(4701), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4634), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11522), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [246079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 5, + ACTIONS(1338), 4, sym_file_descriptor, sym__concat, - sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 22, + ACTIONS(1336), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281098,9 +281332,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [246188] = 3, + [246114] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1342), 4, @@ -281132,20 +281367,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [246223] = 6, + [246149] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11377), 1, - aux_sym_concatenation_token1, - ACTIONS(11529), 1, - sym__concat, - STATE(4413), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 3, + ACTIONS(11494), 1, + sym__special_character, + STATE(4261), 1, + aux_sym__literal_repeat1, + ACTIONS(5589), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 21, + ACTIONS(5587), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281155,9 +281388,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -281167,22 +281399,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [246264] = 6, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [246188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11448), 1, - anon_sym_LT_LT_LT, - STATE(4912), 1, - sym_herestring_redirect, - ACTIONS(4348), 3, + ACTIONS(1294), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4650), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4253), 19, + ACTIONS(1292), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281192,6 +281419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -281202,17 +281430,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [246305] = 5, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [246223] = 13, ACTIONS(3), 1, sym_comment, + ACTIONS(4714), 1, + ts_builtin_sym_end, + ACTIONS(4718), 1, + aux_sym_heredoc_redirect_token1, ACTIONS(11396), 1, - sym__special_character, - STATE(4324), 1, - aux_sym__literal_repeat1, - ACTIONS(4469), 2, + anon_sym_LT_LT_LT, + ACTIONS(11526), 1, + sym_file_descriptor, + STATE(4954), 1, + sym_herestring_redirect, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4703), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4705), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11524), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4716), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4634), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11522), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [246278] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4327), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 23, + STATE(4407), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4325), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281235,19 +281508,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [246344] = 5, + [246315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11531), 1, - sym__special_character, - STATE(4368), 1, - aux_sym__literal_repeat1, - ACTIONS(5069), 3, + ACTIONS(1350), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5067), 22, + ACTIONS(1348), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281257,10 +281526,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -281270,15 +281537,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [246383] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [246350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 4, + ACTIONS(1330), 3, sym_file_descriptor, sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 23, + ACTIONS(1328), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281301,16 +281570,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [246418] = 3, + [246385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 4, + ACTIONS(1326), 3, sym_file_descriptor, sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 23, + ACTIONS(1324), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281333,16 +281602,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [246453] = 3, + [246420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 4, + ACTIONS(1322), 5, sym_file_descriptor, sym__concat, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 23, + ACTIONS(1320), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281363,54 +281634,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [246488] = 8, + [246455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11284), 1, - anon_sym_LT_LT_LT, - ACTIONS(11416), 1, + ACTIONS(1330), 5, sym_file_descriptor, - ACTIONS(11535), 1, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11282), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4889), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11280), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11533), 12, + ACTIONS(1328), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_esac, + anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [246533] = 3, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [246490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 3, + ACTIONS(1350), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 24, + ACTIONS(1348), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281435,15 +281700,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [246568] = 3, + [246525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 4, + ACTIONS(1334), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 23, + ACTIONS(1332), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281453,8 +281717,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -281466,83 +281732,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [246603] = 6, + [246560] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11377), 1, - aux_sym_concatenation_token1, - ACTIONS(11379), 1, - sym__concat, - STATE(4380), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5069), 3, - sym_file_descriptor, - sym_variable_name, + ACTIONS(11373), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5067), 21, + ACTIONS(11534), 1, + anon_sym_LT_LT_LT, + ACTIONS(11537), 1, + sym_file_descriptor, + ACTIONS(11531), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4389), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11528), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11365), 11, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [246644] = 3, + [246605] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, + ACTIONS(2755), 1, + anon_sym_RPAREN, + ACTIONS(4471), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 23, - anon_sym_SEMI, + ACTIONS(11452), 1, + anon_sym_LT_LT_LT, + ACTIONS(11544), 1, + sym_file_descriptor, + STATE(4954), 1, + sym_herestring_redirect, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4705), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5012), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(11542), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4465), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4669), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11540), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [246679] = 3, + [246660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 4, + ACTIONS(1342), 5, sym_file_descriptor, sym__concat, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 23, + ACTIONS(1340), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281563,19 +281841,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [246714] = 3, + [246695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 5, + ACTIONS(1294), 5, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 22, + ACTIONS(1292), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281598,18 +281875,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [246749] = 5, + [246730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11537), 1, - sym__special_character, - STATE(4394), 1, - aux_sym__literal_repeat1, - ACTIONS(1364), 3, + ACTIONS(1354), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 22, + ACTIONS(1352), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281619,8 +281892,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -281631,16 +281906,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [246788] = 3, + aux_sym_concatenation_token1, + [246765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 4, + ACTIONS(1354), 4, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 23, + ACTIONS(1352), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281650,8 +281925,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -281661,85 +281938,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [246823] = 13, + [246800] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2719), 1, - anon_sym_RPAREN, - ACTIONS(4384), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11508), 1, - anon_sym_LT_LT_LT, - ACTIONS(11544), 1, + ACTIONS(11494), 1, + sym__special_character, + STATE(4261), 1, + aux_sym__literal_repeat1, + ACTIONS(5595), 3, sym_file_descriptor, - STATE(4912), 1, - sym_herestring_redirect, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4809), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5593), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11542), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4378), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4746), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11540), 8, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [246878] = 13, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [246839] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2719), 1, + ACTIONS(4314), 1, anon_sym_BQUOTE, - ACTIONS(5357), 1, + ACTIONS(5079), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11410), 1, + ACTIONS(11472), 1, anon_sym_LT_LT_LT, - ACTIONS(11489), 1, + ACTIONS(11474), 1, sym_file_descriptor, - STATE(4912), 1, + STATE(4954), 1, sym_herestring_redirect, - ACTIONS(4253), 2, + ACTIONS(4310), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4692), 2, + ACTIONS(4705), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(5355), 2, + ACTIONS(5077), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11487), 2, + ACTIONS(11470), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(5353), 3, + ACTIONS(5075), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(4697), 3, + STATE(4670), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11485), 8, + ACTIONS(11468), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -281748,16 +282015,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [246933] = 3, + [246894] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 5, + ACTIONS(1358), 4, sym_file_descriptor, sym__concat, - sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 22, + ACTIONS(1356), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281778,70 +282044,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [246968] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1318), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 24, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [247003] = 13, + anon_sym_BQUOTE, + [246929] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, + ACTIONS(4314), 1, anon_sym_RPAREN, - ACTIONS(4411), 1, + ACTIONS(4527), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11508), 1, + ACTIONS(11452), 1, anon_sym_LT_LT_LT, ACTIONS(11544), 1, sym_file_descriptor, - STATE(4912), 1, + STATE(4954), 1, sym_herestring_redirect, - ACTIONS(4253), 2, + ACTIONS(4310), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4692), 2, + ACTIONS(4705), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(4809), 2, + ACTIONS(5012), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, ACTIONS(11542), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4409), 3, + ACTIONS(4525), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(4746), 3, + STATE(4669), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, @@ -281854,20 +282089,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [247058] = 6, + [246984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, - aux_sym_concatenation_token1, - ACTIONS(11514), 1, - sym__concat, - STATE(4523), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 3, + ACTIONS(1302), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 21, + ACTIONS(1300), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281877,7 +282106,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -281888,17 +282120,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - sym__special_character, - [247099] = 3, + aux_sym_concatenation_token1, + [247019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, + ACTIONS(1326), 5, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 22, + ACTIONS(1324), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281921,15 +282153,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [247134] = 3, + [247054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 4, + ACTIONS(1350), 5, sym_file_descriptor, sym__concat, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 23, + ACTIONS(1348), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281950,17 +282183,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [247169] = 3, + [247089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 3, + ACTIONS(1354), 4, sym_file_descriptor, sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 24, + ACTIONS(1352), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281970,10 +282203,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -281985,15 +282216,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [247204] = 3, + anon_sym_BQUOTE, + [247124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 4, + ACTIONS(1334), 5, sym_file_descriptor, sym__concat, sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 23, + ACTIONS(1332), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282003,10 +282236,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -282017,33 +282248,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [247239] = 6, + anon_sym_BQUOTE, + [247159] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11389), 1, - aux_sym_concatenation_token1, - ACTIONS(11391), 1, - sym__concat, - STATE(4304), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5723), 2, + ACTIONS(11472), 1, + anon_sym_LT_LT_LT, + STATE(4954), 1, + sym_herestring_redirect, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4327), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5721), 22, + STATE(4670), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4325), 18, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -282052,16 +282284,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [247280] = 3, + anon_sym_BQUOTE, + [247202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(1354), 5, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 22, + ACTIONS(1352), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282084,16 +282317,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [247315] = 3, + [247237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1338), 5, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 22, + ACTIONS(1336), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282116,14 +282349,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [247350] = 3, + [247272] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 3, + ACTIONS(11512), 1, + sym_file_descriptor, + ACTIONS(11548), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4312), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11248), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4265), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11246), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11546), 10, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + [247317] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1338), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 24, + ACTIONS(1336), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282148,20 +282418,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [247385] = 6, + [247352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11377), 1, - aux_sym_concatenation_token1, - ACTIONS(11379), 1, - sym__concat, - STATE(4414), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5375), 3, + ACTIONS(1358), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(5373), 21, + ACTIONS(1356), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282171,6 +282435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -282183,15 +282448,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [247426] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [247387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 4, + ACTIONS(1346), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 23, + ACTIONS(1344), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282201,8 +282467,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -282214,16 +282482,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [247461] = 3, + [247422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 4, + ACTIONS(1358), 5, sym_file_descriptor, sym__concat, sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 23, + ACTIONS(1356), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282233,10 +282501,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -282247,20 +282513,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [247496] = 6, + anon_sym_BQUOTE, + [247457] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11546), 1, - aux_sym_concatenation_token1, - ACTIONS(11549), 1, - sym__concat, - STATE(4413), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1253), 3, + ACTIONS(11550), 1, + sym__special_character, + STATE(4362), 1, + aux_sym__literal_repeat1, + ACTIONS(5167), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 21, + ACTIONS(5165), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282270,6 +282535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -282282,20 +282548,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [247537] = 6, + [247496] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11377), 1, - aux_sym_concatenation_token1, - ACTIONS(11552), 1, - sym__concat, - STATE(4413), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 3, + ACTIONS(11472), 1, + anon_sym_LT_LT_LT, + STATE(4954), 1, + sym_herestring_redirect, + ACTIONS(4323), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 21, + STATE(4670), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4310), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282306,8 +282573,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -282317,93 +282582,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [247578] = 12, + anon_sym_BQUOTE, + [247537] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5142), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11558), 1, - anon_sym_LT_LT_LT, - ACTIONS(11560), 1, + ACTIONS(11288), 1, + aux_sym_concatenation_token1, + ACTIONS(11552), 1, + sym__concat, + STATE(4343), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 2, sym_file_descriptor, - STATE(4912), 1, - sym_herestring_redirect, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5099), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1266), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11556), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(5140), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4986), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11554), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [247630] = 11, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [247578] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4411), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11562), 1, + ACTIONS(11554), 1, + sym__special_character, + STATE(4415), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 3, sym_file_descriptor, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4380), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1360), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4382), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4409), 2, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(11335), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4257), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(4455), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11333), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [247680] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [247616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 3, + ACTIONS(1338), 4, sym_file_descriptor, sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 23, + ACTIONS(1336), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282413,7 +282669,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -282427,19 +282682,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [247714] = 6, + [247650] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, + ACTIONS(11430), 1, aux_sym_concatenation_token1, - ACTIONS(11514), 1, + ACTIONS(11432), 1, sym__concat, - STATE(4592), 1, + STATE(4437), 1, aux_sym_concatenation_repeat1, - ACTIONS(4469), 2, + ACTIONS(4428), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 21, + ACTIONS(4426), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282449,8 +282704,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -282460,16 +282716,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [247754] = 3, + [247690] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 4, - sym_file_descriptor, + ACTIONS(11430), 1, + aux_sym_concatenation_token1, + ACTIONS(11432), 1, sym__concat, - sym_variable_name, + STATE(4441), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4513), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 22, + ACTIONS(4511), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282491,55 +282750,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [247788] = 8, + [247730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11305), 1, - anon_sym_LT_LT_LT, - ACTIONS(11535), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11564), 1, + ACTIONS(1358), 3, sym_file_descriptor, - ACTIONS(11335), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5043), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11333), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11533), 11, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1356), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [247832] = 5, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [247764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11566), 1, - sym__special_character, - STATE(4485), 1, - aux_sym__literal_repeat1, - ACTIONS(4566), 3, + ACTIONS(1346), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 21, + ACTIONS(1344), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282549,8 +282798,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -282560,49 +282810,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [247870] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11568), 1, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - ACTIONS(11570), 1, - sym__concat, - STATE(4520), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 3, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 20, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [247910] = 3, + [247798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 3, + ACTIONS(1358), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 23, + ACTIONS(1356), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282612,8 +282829,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -282624,16 +282842,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - sym__special_character, - anon_sym_BQUOTE, - [247944] = 3, + aux_sym_concatenation_token1, + [247832] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 3, + ACTIONS(11557), 1, + sym__special_character, + STATE(4435), 1, + aux_sym__literal_repeat1, + ACTIONS(5589), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 23, + ACTIONS(5587), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282643,6 +282863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -282655,16 +282876,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [247978] = 3, + [247870] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 3, + ACTIONS(1358), 4, sym_file_descriptor, sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 23, + ACTIONS(1356), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282686,16 +282906,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [248012] = 3, + [247904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 3, + ACTIONS(1346), 4, sym_file_descriptor, sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 23, + ACTIONS(1344), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282717,16 +282937,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [248046] = 3, + [247938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 3, + ACTIONS(1358), 4, sym_file_descriptor, sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 23, + ACTIONS(1356), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282748,19 +282968,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [248080] = 4, + [247972] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4272), 2, + ACTIONS(11430), 1, + aux_sym_concatenation_token1, + ACTIONS(11432), 1, + sym__concat, + STATE(4437), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4579), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4455), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4270), 21, + ACTIONS(4577), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282782,15 +283003,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [248116] = 3, + [248012] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 4, - sym_file_descriptor, + ACTIONS(11430), 1, + aux_sym_concatenation_token1, + ACTIONS(11432), 1, sym__concat, - ts_builtin_sym_end, + STATE(4441), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4595), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 22, + ACTIONS(4593), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282800,8 +283025,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -282811,21 +283037,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [248150] = 6, + [248052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11491), 1, - aux_sym_concatenation_token1, - ACTIONS(11493), 1, - sym__concat, - STATE(4468), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4554), 2, + ACTIONS(1302), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 21, + ACTIONS(1300), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282835,6 +283054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -282847,18 +283067,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [248190] = 5, + aux_sym_concatenation_token1, + [248086] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11572), 1, + ACTIONS(11557), 1, sym__special_character, - STATE(4533), 1, + STATE(4435), 1, aux_sym__literal_repeat1, - ACTIONS(5069), 3, + ACTIONS(5595), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5067), 21, + ACTIONS(5593), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282868,6 +283088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -282880,68 +283101,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [248228] = 3, + [248124] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 3, - sym_file_descriptor, - sym__concat, + ACTIONS(11355), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 23, + ACTIONS(11563), 1, + anon_sym_LT_LT_LT, + ACTIONS(11565), 1, + sym_file_descriptor, + ACTIONS(11561), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4434), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11559), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11349), 10, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [248168] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11303), 1, + anon_sym_LT_LT_LT, + ACTIONS(11466), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11567), 1, + sym_file_descriptor, + ACTIONS(11301), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5090), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11299), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(11464), 11, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [248262] = 11, + [248212] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4384), 1, + ACTIONS(5096), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11562), 1, + ACTIONS(11573), 1, + anon_sym_LT_LT_LT, + ACTIONS(11575), 1, sym_file_descriptor, - ACTIONS(4253), 2, + STATE(4954), 1, + sym_herestring_redirect, + ACTIONS(4310), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4378), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(4380), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4382), 2, + ACTIONS(4705), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(11335), 2, + ACTIONS(5094), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11571), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(2719), 3, + ACTIONS(5092), 3, + anon_sym_SEMI, + anon_sym_AMP, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(4455), 3, + STATE(5016), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11333), 8, + ACTIONS(11569), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -282950,19 +283213,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [248312] = 3, + [248264] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 4, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4327), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 22, + STATE(4509), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4325), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -282971,7 +283238,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -282980,16 +283246,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [248346] = 3, + [248302] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 4, + ACTIONS(11373), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11583), 1, + anon_sym_LT_LT_LT, + ACTIONS(11586), 1, + sym_file_descriptor, + ACTIONS(11580), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4434), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11577), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11365), 10, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [248346] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11589), 1, + sym__special_character, + STATE(4435), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 22, + ACTIONS(1360), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282999,6 +283302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -283011,16 +283315,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [248380] = 3, + [248384] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 4, + ACTIONS(4327), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 22, + STATE(4509), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4325), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283042,16 +283347,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [248414] = 3, + [248420] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 4, - sym_file_descriptor, + ACTIONS(11430), 1, + aux_sym_concatenation_token1, + ACTIONS(11592), 1, sym__concat, - sym_variable_name, + STATE(4442), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 22, + ACTIONS(1266), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283073,15 +283381,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [248448] = 3, + [248460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 3, + ACTIONS(1342), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 23, + ACTIONS(1340), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283091,6 +283398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -283103,22 +283411,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [248482] = 6, + [248494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11574), 1, - sym_variable_name, - STATE(6786), 1, - sym_subscript, - ACTIONS(11290), 2, + ACTIONS(1294), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - STATE(4439), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11288), 20, + ACTIONS(1292), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283128,8 +283429,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283139,19 +283442,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [248522] = 6, + aux_sym_concatenation_token1, + [248528] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, - aux_sym_concatenation_token1, - ACTIONS(11514), 1, - sym__concat, - STATE(4591), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4372), 2, + ACTIONS(11594), 1, + sym__special_character, + STATE(4520), 1, + aux_sym__literal_repeat1, + ACTIONS(4428), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 21, + ACTIONS(4426), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283161,8 +283463,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283173,15 +283476,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [248562] = 3, + [248566] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 4, - sym_file_descriptor, + ACTIONS(11430), 1, + aux_sym_concatenation_token1, + ACTIONS(11596), 1, sym__concat, - sym_variable_name, + STATE(4442), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 22, + ACTIONS(1286), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283203,15 +283510,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [248596] = 3, + [248606] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 3, - sym_file_descriptor, + ACTIONS(11598), 1, + aux_sym_concatenation_token1, + ACTIONS(11601), 1, sym__concat, + STATE(4442), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 23, + ACTIONS(1276), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283221,7 +283532,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -283234,15 +283544,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [248630] = 3, + [248646] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 3, + ACTIONS(11594), 1, + sym__special_character, + STATE(4520), 1, + aux_sym__literal_repeat1, + ACTIONS(4579), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 23, + ACTIONS(4577), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283265,15 +283577,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [248664] = 3, + [248684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 3, + ACTIONS(1298), 4, sym_file_descriptor, sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 23, + ACTIONS(1296), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283283,9 +283595,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283295,16 +283606,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [248698] = 3, + anon_sym_BQUOTE, + [248718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 3, + ACTIONS(1306), 4, sym_file_descriptor, sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 23, + ACTIONS(1304), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283314,9 +283626,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283326,16 +283637,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [248732] = 3, + anon_sym_BQUOTE, + [248752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 3, + ACTIONS(1278), 4, sym_file_descriptor, sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 23, + ACTIONS(1276), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283345,9 +283657,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283357,15 +283668,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [248766] = 3, + anon_sym_BQUOTE, + [248786] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11303), 1, + anon_sym_LT_LT_LT, + ACTIONS(11416), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11567), 1, + sym_file_descriptor, + ACTIONS(11301), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5042), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11299), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11414), 11, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [248830] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1310), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, ACTIONS(1308), 22, anon_sym_SEMI, @@ -283377,9 +283724,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283390,15 +283736,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [248800] = 3, + anon_sym_BQUOTE, + [248864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 4, + ACTIONS(6837), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(6835), 21, + sym__immediate_double_hash, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_POUND, + anon_sym_RBRACE3, + anon_sym_AT, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + anon_sym_PERCENT_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + [248898] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 22, + ACTIONS(1312), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283408,9 +283786,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283421,50 +283798,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [248834] = 3, + anon_sym_BQUOTE, + [248932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(6819), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(6817), 21, + sym__immediate_double_hash, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_POUND, + anon_sym_RBRACE3, + anon_sym_AT, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + anon_sym_PERCENT_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + [248966] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11303), 1, + anon_sym_LT_LT_LT, + ACTIONS(11450), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 22, + ACTIONS(11567), 1, + sym_file_descriptor, + ACTIONS(11301), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5111), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11299), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11448), 11, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [248868] = 6, + [249010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, - aux_sym_concatenation_token1, - ACTIONS(11514), 1, - sym__concat, - STATE(4592), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4566), 2, + ACTIONS(7054), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(7052), 21, + sym__immediate_double_hash, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_POUND, + anon_sym_RBRACE3, + anon_sym_AT, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + anon_sym_PERCENT_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + [249044] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7073), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(7071), 21, + sym__immediate_double_hash, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_POUND, + anon_sym_RBRACE3, + anon_sym_AT, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + anon_sym_PERCENT_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + [249078] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 21, + ACTIONS(1316), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283485,16 +283957,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [248908] = 3, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [249112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 4, + ACTIONS(1302), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 22, + ACTIONS(1300), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283517,19 +283990,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [248942] = 6, + [249146] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, + ACTIONS(11604), 1, aux_sym_concatenation_token1, - ACTIONS(11514), 1, + ACTIONS(11606), 1, sym__concat, - STATE(4591), 1, + STATE(4768), 1, aux_sym_concatenation_repeat1, - ACTIONS(4554), 2, + ACTIONS(1274), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 21, + ACTIONS(1272), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283539,7 +284013,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -283550,20 +284023,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [248982] = 6, + sym__special_character, + [249186] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11577), 1, + ACTIONS(11454), 1, aux_sym_concatenation_token1, - ACTIONS(11580), 1, + ACTIONS(11608), 1, sym__concat, - STATE(4453), 1, + STATE(4240), 1, aux_sym_concatenation_repeat1, - ACTIONS(1253), 2, + ACTIONS(1268), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 21, + ACTIONS(1266), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283574,8 +284048,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283585,14 +284057,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [249022] = 3, + anon_sym_LT_LT_LT, + [249226] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 3, - sym_file_descriptor, + ACTIONS(11454), 1, + aux_sym_concatenation_token1, + ACTIONS(11610), 1, sym__concat, + STATE(4240), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 23, + ACTIONS(1286), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283603,8 +284082,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283615,52 +284092,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [249056] = 8, + [249266] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11455), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11562), 1, + ACTIONS(11612), 1, + sym__special_character, + STATE(4538), 1, + aux_sym__literal_repeat1, + ACTIONS(5167), 3, sym_file_descriptor, - ACTIONS(4382), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11335), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4465), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11333), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11453), 9, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(5165), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - [249100] = 3, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [249304] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 4, - sym_file_descriptor, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(11606), 1, sym__concat, - ts_builtin_sym_end, + STATE(4619), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 22, + ACTIONS(1272), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283681,17 +284158,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [249134] = 3, + sym__special_character, + [249344] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 4, - sym_file_descriptor, + ACTIONS(11454), 1, + aux_sym_concatenation_token1, + ACTIONS(11614), 1, sym__concat, - sym_variable_name, + STATE(4240), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 22, + ACTIONS(1266), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283701,9 +284181,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283713,54 +284192,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [249168] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11568), 1, - aux_sym_concatenation_token1, - ACTIONS(11583), 1, - sym__concat, - STATE(4422), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5395), 3, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5393), 20, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [249208] = 6, + anon_sym_LT_LT_LT, + [249384] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, + ACTIONS(11454), 1, aux_sym_concatenation_token1, - ACTIONS(11514), 1, + ACTIONS(11616), 1, sym__concat, - STATE(4583), 1, + STATE(4240), 1, aux_sym_concatenation_repeat1, - ACTIONS(4566), 2, + ACTIONS(1288), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 21, + ACTIONS(1286), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283770,6 +284215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -283781,49 +284227,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [249248] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11568), 1, - aux_sym_concatenation_token1, - ACTIONS(11583), 1, - sym__concat, - STATE(4558), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5391), 3, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5389), 20, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [249288] = 3, + [249424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 3, + ACTIONS(1306), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 23, + ACTIONS(1304), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283833,7 +284244,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -283846,18 +284256,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [249322] = 5, + [249458] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11585), 1, - sym__special_character, - STATE(4483), 1, - aux_sym__literal_repeat1, - ACTIONS(4566), 2, + ACTIONS(11458), 1, + aux_sym_concatenation_token1, + ACTIONS(11618), 1, + sym__concat, + STATE(4245), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 22, + ACTIONS(1266), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283867,10 +284281,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283880,19 +284292,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [249360] = 6, + [249498] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, + ACTIONS(11458), 1, aux_sym_concatenation_token1, - ACTIONS(11514), 1, + ACTIONS(11620), 1, sym__concat, - STATE(4584), 1, + STATE(4245), 1, aux_sym_concatenation_repeat1, - ACTIONS(4372), 2, + ACTIONS(1288), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 21, + ACTIONS(1286), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283902,6 +284315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -283912,16 +284326,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [249400] = 3, + [249538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 3, + ACTIONS(1278), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 23, + ACTIONS(1276), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283945,66 +284357,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [249434] = 8, + [249572] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11431), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11596), 1, - sym_file_descriptor, - ACTIONS(11590), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11593), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4465), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11587), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11420), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(11573), 1, + anon_sym_LT_LT_LT, + STATE(4954), 1, + sym_herestring_redirect, + ACTIONS(4310), 2, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - [249478] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11512), 1, - aux_sym_concatenation_token1, - ACTIONS(11514), 1, - sym__concat, - STATE(4583), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4469), 2, + ACTIONS(4327), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 21, + STATE(5016), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4325), 17, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -284013,22 +284392,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [249518] = 6, + [249614] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, - aux_sym_concatenation_token1, - ACTIONS(11514), 1, - sym__concat, - STATE(4523), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4469), 3, + ACTIONS(11573), 1, + anon_sym_LT_LT_LT, + STATE(4954), 1, + sym_herestring_redirect, + ACTIONS(4323), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 20, + STATE(5016), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4310), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284048,20 +284426,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [249558] = 6, + [249654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11491), 1, - aux_sym_concatenation_token1, - ACTIONS(11599), 1, - sym__concat, - STATE(4453), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 2, + ACTIONS(1306), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 21, + ACTIONS(1304), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284071,6 +284443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -284083,14 +284456,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [249598] = 3, + aux_sym_concatenation_token1, + [249688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 3, + ACTIONS(1298), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 23, + ACTIONS(1296), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284100,7 +284474,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -284113,15 +284486,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [249632] = 3, + [249722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 3, + ACTIONS(1322), 4, sym_file_descriptor, sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 23, + ACTIONS(1320), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284131,10 +284506,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -284145,19 +284518,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [249666] = 6, + anon_sym_BQUOTE, + [249756] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11491), 1, + ACTIONS(11622), 1, aux_sym_concatenation_token1, - ACTIONS(11601), 1, + ACTIONS(11624), 1, sym__concat, - STATE(4453), 1, + STATE(4479), 1, aux_sym_concatenation_repeat1, - ACTIONS(1267), 2, + ACTIONS(1268), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1266), 20, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [249796] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 21, + ACTIONS(1324), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284167,9 +284571,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -284179,19 +284582,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [249706] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [249830] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, + ACTIONS(11622), 1, aux_sym_concatenation_token1, - ACTIONS(11514), 1, + ACTIONS(11626), 1, sym__concat, - STATE(4584), 1, + STATE(4479), 1, aux_sym_concatenation_repeat1, - ACTIONS(2074), 2, + ACTIONS(1288), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1286), 20, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [249870] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1330), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2072), 21, + ACTIONS(1328), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284201,6 +284636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -284211,17 +284647,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - [249746] = 3, + [249904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 4, + ACTIONS(1274), 3, sym_file_descriptor, - sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 22, + ACTIONS(1272), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284242,16 +284677,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, + anon_sym_LT_LT_LT, + sym__special_character, anon_sym_BQUOTE, - [249780] = 3, + [249938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 3, + ACTIONS(1278), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 23, + ACTIONS(1276), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284275,15 +284711,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [249814] = 3, + [249972] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 4, + ACTIONS(11628), 1, + aux_sym_concatenation_token1, + ACTIONS(11631), 1, + sym__concat, + STATE(4479), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1278), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1276), 20, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [250012] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1334), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 22, + ACTIONS(1332), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284306,19 +284776,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [249848] = 6, + [250046] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, - aux_sym_concatenation_token1, - ACTIONS(11514), 1, - sym__concat, - STATE(4583), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5697), 2, + ACTIONS(1338), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5695), 21, + ACTIONS(1336), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284328,6 +284794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -284338,22 +284805,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - [249888] = 6, + [250080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, - aux_sym_concatenation_token1, - ACTIONS(11514), 1, - sym__concat, - STATE(4510), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4372), 3, + ACTIONS(1342), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 20, + ACTIONS(1340), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284363,6 +284825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -284373,16 +284836,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [249928] = 3, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [250114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 4, + ACTIONS(1294), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 22, + ACTIONS(1292), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284392,9 +284856,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -284405,19 +284868,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [249962] = 6, + anon_sym_BQUOTE, + [250148] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, + ACTIONS(11454), 1, aux_sym_concatenation_token1, - ACTIONS(11514), 1, + ACTIONS(11456), 1, sym__concat, - STATE(4584), 1, + STATE(4648), 1, aux_sym_concatenation_repeat1, - ACTIONS(2096), 2, + ACTIONS(1274), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2094), 21, + ACTIONS(1272), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284438,56 +284902,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [250002] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11363), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11607), 1, - anon_sym_LT_LT_LT, - ACTIONS(11609), 1, - sym_file_descriptor, - ACTIONS(11605), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4517), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11603), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11357), 10, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [250046] = 6, + sym__special_character, + [250188] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, + ACTIONS(11458), 1, aux_sym_concatenation_token1, - ACTIONS(11514), 1, + ACTIONS(11460), 1, sym__concat, - STATE(4592), 1, + STATE(4650), 1, aux_sym_concatenation_repeat1, - ACTIONS(5697), 2, + ACTIONS(1274), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5695), 21, + ACTIONS(1272), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284497,7 +284926,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -284508,15 +284936,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [250086] = 3, + sym__special_character, + [250228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 3, + ACTIONS(1306), 4, sym_file_descriptor, sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 23, + ACTIONS(1304), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284538,19 +284967,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [250120] = 5, + [250262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11611), 1, - sym__special_character, - STATE(4483), 1, - aux_sym__literal_repeat1, - ACTIONS(1364), 2, + ACTIONS(1278), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 22, + ACTIONS(1276), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284560,7 +284986,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -284573,52 +284998,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [250158] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11512), 1, aux_sym_concatenation_token1, - ACTIONS(11514), 1, - sym__concat, - STATE(4523), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5723), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(5721), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [250198] = 5, + [250296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11614), 1, - sym__special_character, - STATE(4485), 1, - aux_sym__literal_repeat1, - ACTIONS(1364), 3, + ACTIONS(1350), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 21, + ACTIONS(1348), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284639,21 +285028,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - [250236] = 6, + [250330] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, + ACTIONS(11454), 1, aux_sym_concatenation_token1, - ACTIONS(11514), 1, + ACTIONS(11456), 1, sym__concat, - STATE(4510), 1, + STATE(4458), 1, aux_sym_concatenation_repeat1, - ACTIONS(2096), 3, + ACTIONS(4579), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2094), 20, + ACTIONS(4577), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284674,20 +285064,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [250276] = 6, + [250370] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11500), 1, + ACTIONS(11454), 1, aux_sym_concatenation_token1, - ACTIONS(11502), 1, + ACTIONS(11456), 1, sym__concat, - STATE(4781), 1, + STATE(4459), 1, aux_sym_concatenation_repeat1, - ACTIONS(1263), 3, + ACTIONS(4595), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 20, + ACTIONS(4593), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284707,20 +285097,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [250316] = 6, + anon_sym_LT_LT_LT, + [250410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, - aux_sym_concatenation_token1, - ACTIONS(11514), 1, - sym__concat, - STATE(4583), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5723), 2, + ACTIONS(1310), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(5721), 21, + ACTIONS(1308), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284731,6 +285116,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -284741,39 +285128,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [250356] = 12, + aux_sym_concatenation_token1, + [250444] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5101), 1, + ACTIONS(4527), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11558), 1, - anon_sym_LT_LT_LT, - ACTIONS(11560), 1, + ACTIONS(11634), 1, sym_file_descriptor, - STATE(4912), 1, - sym_herestring_redirect, - ACTIONS(4253), 2, + ACTIONS(4310), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5099), 2, + ACTIONS(4467), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11556), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(5097), 3, + ACTIONS(4469), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4525), 2, anon_sym_SEMI, anon_sym_AMP, + ACTIONS(11301), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4314), 3, anon_sym_SEMI_SEMI, - STATE(4986), 3, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(4509), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11554), 8, + ACTIONS(11299), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -284782,15 +285168,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [250408] = 3, + [250494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 4, + ACTIONS(1354), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 22, + ACTIONS(1352), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284800,9 +285186,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -284813,20 +285198,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [250442] = 6, + anon_sym_BQUOTE, + [250528] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11568), 1, + ACTIONS(11622), 1, aux_sym_concatenation_token1, - ACTIONS(11583), 1, + ACTIONS(11636), 1, sym__concat, - STATE(4422), 1, + STATE(4473), 1, aux_sym_concatenation_repeat1, - ACTIONS(1263), 3, + ACTIONS(1274), 3, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 20, + ACTIONS(1272), 20, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP, @@ -284847,47 +285233,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [250482] = 5, + [250568] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11617), 1, - sym__special_character, - STATE(4498), 1, - aux_sym__literal_repeat1, - ACTIONS(4469), 2, - sym_file_descriptor, + ACTIONS(11355), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(11642), 1, + anon_sym_LT_LT_LT, + ACTIONS(11644), 1, + sym_file_descriptor, + ACTIONS(11640), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4504), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11638), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(11349), 10, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [250520] = 3, + anon_sym_BQUOTE, + [250612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 3, + ACTIONS(1314), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 23, + ACTIONS(1312), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284911,14 +285300,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [250554] = 3, + [250646] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 3, - sym_file_descriptor, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(11606), 1, sym__concat, + STATE(4665), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 23, + ACTIONS(1272), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284929,8 +285323,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -284940,21 +285332,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [250588] = 6, + sym__special_character, + anon_sym_BQUOTE, + [250686] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, + ACTIONS(11454), 1, aux_sym_concatenation_token1, - ACTIONS(11514), 1, + ACTIONS(11646), 1, sym__concat, - STATE(4776), 1, + STATE(4240), 1, aux_sym_concatenation_repeat1, - ACTIONS(1263), 2, + ACTIONS(1268), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 21, + ACTIONS(1266), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284975,15 +285367,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - sym__special_character, - [250628] = 3, + anon_sym_BQUOTE, + [250726] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 3, - sym_file_descriptor, + ACTIONS(11454), 1, + aux_sym_concatenation_token1, + ACTIONS(11648), 1, sym__concat, + STATE(4240), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 23, + ACTIONS(1286), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284993,10 +285390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285006,15 +285400,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [250662] = 3, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [250766] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 3, - sym_file_descriptor, + ACTIONS(11458), 1, + aux_sym_concatenation_token1, + ACTIONS(11650), 1, sym__concat, + STATE(4245), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 3, + sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 23, + ACTIONS(1266), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285024,10 +285425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285037,18 +285435,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [250696] = 5, + anon_sym_BQUOTE, + [250806] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11619), 1, - sym__special_character, - STATE(4498), 1, - aux_sym__literal_repeat1, - ACTIONS(1364), 2, + ACTIONS(11458), 1, + aux_sym_concatenation_token1, + ACTIONS(11652), 1, + sym__concat, + STATE(4245), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 22, + ACTIONS(1286), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285059,8 +285460,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285070,16 +285469,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [250846] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5111), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11573), 1, anon_sym_LT_LT_LT, - [250734] = 3, + ACTIONS(11575), 1, + sym_file_descriptor, + STATE(4954), 1, + sym_herestring_redirect, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4705), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5094), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11571), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5109), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5016), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11569), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [250898] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 4, + ACTIONS(11654), 1, + sym__special_character, + STATE(4415), 1, + aux_sym__literal_repeat1, + ACTIONS(5589), 3, sym_file_descriptor, - sym__concat, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 22, + ACTIONS(5587), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285089,9 +285531,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285101,19 +285542,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [250768] = 5, + anon_sym_BQUOTE, + [250936] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11373), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11662), 1, + anon_sym_LT_LT_LT, + ACTIONS(11665), 1, + sym_file_descriptor, + ACTIONS(11659), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4504), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11656), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11365), 10, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [250980] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11566), 1, + ACTIONS(11654), 1, sym__special_character, - STATE(4485), 1, + STATE(4415), 1, aux_sym__literal_repeat1, - ACTIONS(4469), 3, + ACTIONS(4428), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 21, + ACTIONS(4426), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285135,14 +285612,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [250806] = 3, + [251018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 3, + ACTIONS(1358), 4, sym_file_descriptor, sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 23, + ACTIONS(1356), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285152,10 +285630,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285166,14 +285642,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [250840] = 3, + anon_sym_BQUOTE, + [251052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 3, + ACTIONS(1346), 4, sym_file_descriptor, sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 23, + ACTIONS(1344), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285183,10 +285661,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285197,15 +285673,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [250874] = 3, + anon_sym_BQUOTE, + [251086] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 4, + ACTIONS(1358), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 22, + ACTIONS(1356), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285226,21 +285703,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - [250908] = 6, + [251120] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11491), 1, - aux_sym_concatenation_token1, - ACTIONS(11493), 1, - sym__concat, - STATE(4468), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2074), 2, + ACTIONS(11548), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11634), 1, + sym_file_descriptor, + ACTIONS(4469), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11301), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4540), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11299), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11546), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + [251164] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(2072), 21, + ACTIONS(1296), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285262,21 +285771,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [250948] = 6, + aux_sym_concatenation_token1, + [251198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11500), 1, - aux_sym_concatenation_token1, - ACTIONS(11622), 1, - sym__concat, - STATE(4244), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 4, + ACTIONS(1318), 3, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 19, + ACTIONS(1316), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285287,6 +285790,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285296,51 +285801,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [250988] = 6, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [251232] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(11491), 1, - aux_sym_concatenation_token1, - ACTIONS(11493), 1, - sym__concat, - STATE(4471), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5697), 2, - sym_file_descriptor, + ACTIONS(4471), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5695), 21, + ACTIONS(11634), 1, + sym_file_descriptor, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4465), 2, anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(4467), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4469), 2, anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_LT_LT_DASH, + ACTIONS(11301), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(2755), 3, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + STATE(4509), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11299), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [251028] = 5, + [251282] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11585), 1, - sym__special_character, - STATE(4483), 1, - aux_sym__literal_repeat1, - ACTIONS(5723), 2, + ACTIONS(1274), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5721), 22, + ACTIONS(1272), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285363,15 +285871,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [251066] = 3, + anon_sym_LT_LT_LT, + sym__special_character, + [251316] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11674), 1, + anon_sym_LT_LT_LT, + ACTIONS(11677), 1, + sym_file_descriptor, + ACTIONS(11373), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(11671), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4514), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11668), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11365), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [251360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 4, + ACTIONS(1354), 4, sym_file_descriptor, sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 22, + ACTIONS(1352), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285394,51 +285940,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [251100] = 3, + [251394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6829), 5, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - ACTIONS(6827), 21, - sym__immediate_double_hash, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_POUND, - anon_sym_RBRACE3, - anon_sym_AT, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - anon_sym_PERCENT_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - [251134] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11512), 1, - aux_sym_concatenation_token1, - ACTIONS(11624), 1, - sym__concat, - STATE(4253), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 3, + ACTIONS(1302), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 20, + ACTIONS(1300), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285449,6 +285958,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285459,21 +285970,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [251174] = 6, + aux_sym_concatenation_token1, + [251428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11500), 1, - aux_sym_concatenation_token1, - ACTIONS(11626), 1, - sym__concat, - STATE(4244), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 4, + ACTIONS(1314), 4, sym_file_descriptor, + sym__concat, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 19, + ACTIONS(1312), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285484,6 +285990,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285493,14 +286001,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [251214] = 3, + aux_sym_concatenation_token1, + [251462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 3, + ACTIONS(1326), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 23, + ACTIONS(1324), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285524,19 +286033,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [251248] = 6, + [251496] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, - aux_sym_concatenation_token1, - ACTIONS(11514), 1, - sym__concat, - STATE(4584), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4554), 2, + ACTIONS(1350), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 21, + ACTIONS(1348), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285546,7 +286050,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285556,23 +286063,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [251288] = 6, + aux_sym_concatenation_token1, + [251530] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11500), 1, - aux_sym_concatenation_token1, - ACTIONS(11502), 1, - sym__concat, - STATE(4511), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5069), 4, + ACTIONS(11680), 1, + sym__special_character, + STATE(4520), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 2, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5067), 19, + ACTIONS(1360), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285583,6 +286085,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285592,15 +286096,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [251328] = 3, + anon_sym_LT_LT_LT, + [251568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 4, + ACTIONS(1318), 4, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 22, + ACTIONS(1316), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285610,8 +286115,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285622,15 +286128,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [251362] = 3, + [251602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 3, + ACTIONS(1334), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 23, + ACTIONS(1332), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285654,56 +286159,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [251396] = 8, + [251636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11315), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11634), 1, - anon_sym_LT_LT_LT, - ACTIONS(11637), 1, + ACTIONS(1298), 3, sym_file_descriptor, - ACTIONS(11631), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4517), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11628), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11307), 10, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [251440] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11512), 1, - aux_sym_concatenation_token1, - ACTIONS(11514), 1, sym__concat, - STATE(4510), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2074), 3, - sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2072), 20, + ACTIONS(1296), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285713,7 +286176,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285723,22 +286189,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [251480] = 6, + aux_sym_concatenation_token1, + [251670] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11640), 1, - sym_variable_name, - STATE(6757), 1, - sym_subscript, - STATE(4519), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11290), 3, + ACTIONS(11430), 1, + aux_sym_concatenation_token1, + ACTIONS(11432), 1, + sym__concat, + STATE(4437), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5589), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11288), 19, + ACTIONS(5587), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285749,6 +286213,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285758,52 +286224,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [251520] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11643), 1, - aux_sym_concatenation_token1, - ACTIONS(11646), 1, - sym__concat, - STATE(4520), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1253), 3, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 20, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [251560] = 5, + [251710] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11566), 1, + ACTIONS(11654), 1, sym__special_character, - STATE(4485), 1, + STATE(4415), 1, aux_sym__literal_repeat1, - ACTIONS(5723), 3, + ACTIONS(5595), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5721), 21, + ACTIONS(5593), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285825,19 +286257,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [251598] = 6, + [251748] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, + ACTIONS(11430), 1, aux_sym_concatenation_token1, - ACTIONS(11514), 1, + ACTIONS(11432), 1, sym__concat, - STATE(4591), 1, + STATE(4441), 1, aux_sym_concatenation_repeat1, - ACTIONS(2096), 2, + ACTIONS(2169), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2094), 21, + ACTIONS(2167), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285847,8 +286279,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285858,21 +286291,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [251638] = 6, + [251788] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, - aux_sym_concatenation_token1, - ACTIONS(11649), 1, - sym__concat, - STATE(4253), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 3, + ACTIONS(11654), 1, + sym__special_character, + STATE(4415), 1, + aux_sym__literal_repeat1, + ACTIONS(4579), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 20, + ACTIONS(4577), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285882,6 +286312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -285892,21 +286323,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [251678] = 6, + anon_sym_BQUOTE, + [251826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, - sym__concat, - STATE(4630), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 3, + ACTIONS(1354), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 20, + ACTIONS(1352), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285916,7 +286341,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285926,22 +286354,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [251718] = 6, + aux_sym_concatenation_token1, + [251860] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11500), 1, + ACTIONS(11458), 1, aux_sym_concatenation_token1, - ACTIONS(11502), 1, + ACTIONS(11460), 1, sym__concat, - STATE(4505), 1, + STATE(4550), 1, aux_sym_concatenation_repeat1, - ACTIONS(5375), 4, + ACTIONS(5167), 4, sym_file_descriptor, sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5373), 19, + ACTIONS(5165), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285961,15 +286389,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [251758] = 3, + [251900] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 4, - sym_file_descriptor, + ACTIONS(11458), 1, + aux_sym_concatenation_token1, + ACTIONS(11460), 1, sym__concat, + STATE(4552), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5175), 4, + sym_file_descriptor, sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 22, + ACTIONS(5173), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285980,8 +286414,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285991,18 +286423,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [251792] = 5, + [251940] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11617), 1, + ACTIONS(11557), 1, sym__special_character, - STATE(4498), 1, + STATE(4435), 1, aux_sym__literal_repeat1, - ACTIONS(4566), 2, + ACTIONS(4428), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 22, + ACTIONS(4426), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286012,6 +286443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -286024,24 +286456,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [251830] = 5, + [251978] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4272), 2, + ACTIONS(11430), 1, + aux_sym_concatenation_token1, + ACTIONS(11432), 1, + sym__concat, + STATE(4437), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5595), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4455), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4270), 19, + ACTIONS(5593), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -286050,6 +286481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -286058,19 +286490,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [251868] = 6, + [252018] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, + ACTIONS(11430), 1, aux_sym_concatenation_token1, - ACTIONS(11514), 1, + ACTIONS(11432), 1, sym__concat, - STATE(4592), 1, + STATE(4441), 1, aux_sym_concatenation_repeat1, - ACTIONS(5723), 2, + ACTIONS(2173), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5721), 21, + ACTIONS(2171), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286080,8 +286512,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -286091,57 +286524,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [251908] = 8, + [252058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11661), 1, - anon_sym_LT_LT_LT, - ACTIONS(11664), 1, + ACTIONS(1302), 4, sym_file_descriptor, - ACTIONS(11315), 2, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(11658), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4530), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11655), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11307), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [251952] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11500), 1, - aux_sym_concatenation_token1, - ACTIONS(11502), 1, sym__concat, - STATE(4585), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5375), 3, - sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5373), 20, + ACTIONS(1300), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286151,8 +286542,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -286162,14 +286554,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [251992] = 3, + aux_sym_concatenation_token1, + [252092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 3, + ACTIONS(1338), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 23, + ACTIONS(1336), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286193,18 +286586,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [252026] = 5, + [252126] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11667), 1, + ACTIONS(11557), 1, sym__special_character, - STATE(4533), 1, + STATE(4435), 1, aux_sym__literal_repeat1, - ACTIONS(1364), 3, + ACTIONS(4579), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 21, + ACTIONS(4577), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286214,6 +286606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -286226,20 +286619,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [252064] = 6, + [252164] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11670), 1, - sym_variable_name, - STATE(6786), 1, - sym_subscript, - ACTIONS(11329), 2, + ACTIONS(11622), 1, + aux_sym_concatenation_token1, + ACTIONS(11636), 1, + sym__concat, + STATE(4473), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5317), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5315), 20, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [252204] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11683), 1, + sym__special_character, + STATE(4538), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - STATE(4439), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11327), 20, + ACTIONS(1360), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286249,8 +286674,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -286260,80 +286686,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [252104] = 6, + [252242] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11500), 1, + ACTIONS(11622), 1, aux_sym_concatenation_token1, - ACTIONS(11502), 1, + ACTIONS(11636), 1, sym__concat, - STATE(4586), 1, + STATE(4475), 1, aux_sym_concatenation_repeat1, - ACTIONS(5069), 3, - sym_file_descriptor, - sym_variable_name, + ACTIONS(5321), 3, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5067), 20, + ACTIONS(5319), 20, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [252282] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11409), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11695), 1, + sym_file_descriptor, + ACTIONS(11689), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11692), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4540), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11686), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [252144] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 22, + ACTIONS(11398), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + [252326] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11702), 1, + anon_sym_LT_LT_LT, + ACTIONS(11704), 1, + sym_file_descriptor, + ACTIONS(11355), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(11700), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4514), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11698), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(11349), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [252178] = 3, + [252370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 4, + ACTIONS(1358), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 22, + ACTIONS(1356), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286343,8 +286809,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -286355,18 +286823,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [252212] = 5, + [252404] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11585), 1, - sym__special_character, - STATE(4483), 1, - aux_sym__literal_repeat1, - ACTIONS(4469), 2, + ACTIONS(11706), 1, + sym_variable_name, + STATE(6770), 1, + sym_subscript, + STATE(4543), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11294), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 22, + ACTIONS(11292), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286376,10 +286847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -286389,14 +286857,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [252250] = 3, + [252444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 3, + ACTIONS(1346), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 23, + ACTIONS(1344), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286420,15 +286888,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [252284] = 3, + [252478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 4, + ACTIONS(1358), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 22, + ACTIONS(1356), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286438,8 +286905,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -286450,109 +286919,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [252318] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7166), 5, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - ACTIONS(7164), 21, - sym__immediate_double_hash, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_POUND, - anon_sym_RBRACE3, - anon_sym_AT, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - anon_sym_PERCENT_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - [252352] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7162), 5, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - ACTIONS(7160), 21, - sym__immediate_double_hash, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_POUND, - anon_sym_RBRACE3, - anon_sym_AT, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - anon_sym_PERCENT_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - [252386] = 3, + [252512] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, + ACTIONS(5335), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 22, - anon_sym_SEMI, + ACTIONS(11573), 1, + anon_sym_LT_LT_LT, + ACTIONS(11575), 1, + sym_file_descriptor, + STATE(4954), 1, + sym_herestring_redirect, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4705), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5094), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(11571), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5333), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5016), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11569), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [252420] = 3, + [252564] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 4, + ACTIONS(11594), 1, + sym__special_character, + STATE(4520), 1, + aux_sym__literal_repeat1, + ACTIONS(5589), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 22, + ACTIONS(5587), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286562,8 +286979,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -286573,17 +286991,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [252454] = 3, + anon_sym_LT_LT_LT, + [252602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 4, + ACTIONS(1322), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 22, + ACTIONS(1320), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286593,8 +287009,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -286604,20 +287021,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [252488] = 5, + [252636] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11566), 1, + ACTIONS(11594), 1, sym__special_character, - STATE(4485), 1, + STATE(4520), 1, aux_sym__literal_repeat1, - ACTIONS(5697), 3, + ACTIONS(5595), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5695), 21, + ACTIONS(5593), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286627,8 +287043,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -286638,52 +287055,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [252526] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11315), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11678), 1, anon_sym_LT_LT_LT, - ACTIONS(11681), 1, - sym_file_descriptor, - ACTIONS(11675), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4547), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11672), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11307), 10, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [252570] = 3, + [252674] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 4, - sym_file_descriptor, + ACTIONS(11458), 1, + aux_sym_concatenation_token1, + ACTIONS(11709), 1, sym__concat, + STATE(4245), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 4, + sym_file_descriptor, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 22, + ACTIONS(1266), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286693,7 +287080,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -286704,58 +287090,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [252604] = 8, + [252714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11305), 1, - anon_sym_LT_LT_LT, - ACTIONS(11506), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11564), 1, + ACTIONS(1310), 3, sym_file_descriptor, - ACTIONS(11335), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5113), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11333), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11504), 11, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1308), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [252648] = 6, + aux_sym_concatenation_token1, + [252748] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11500), 1, + ACTIONS(11458), 1, aux_sym_concatenation_token1, - ACTIONS(11502), 1, + ACTIONS(11711), 1, sym__concat, - STATE(4603), 1, + STATE(4245), 1, aux_sym_concatenation_repeat1, - ACTIONS(5375), 3, + ACTIONS(1288), 4, sym_file_descriptor, sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5373), 20, + ACTIONS(1286), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286775,55 +287155,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [252688] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5383), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11558), 1, - anon_sym_LT_LT_LT, - ACTIONS(11560), 1, - sym_file_descriptor, - STATE(4912), 1, - sym_herestring_redirect, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5099), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(11556), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(5381), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4986), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11554), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [252740] = 3, + [252788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 3, + ACTIONS(1330), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 23, + ACTIONS(1328), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286833,7 +287172,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -286846,15 +287184,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [252774] = 3, + [252822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 3, + ACTIONS(1314), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 23, + ACTIONS(1312), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286878,17 +287217,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [252808] = 5, + [252856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11585), 1, - sym__special_character, - STATE(4483), 1, - aux_sym__literal_repeat1, - ACTIONS(5697), 2, + ACTIONS(1322), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(5695), 22, + ACTIONS(1320), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286911,19 +287247,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [252846] = 6, + aux_sym_concatenation_token1, + [252890] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11491), 1, + ACTIONS(11454), 1, aux_sym_concatenation_token1, - ACTIONS(11493), 1, + ACTIONS(11456), 1, sym__concat, - STATE(4468), 1, + STATE(4458), 1, aux_sym_concatenation_repeat1, - ACTIONS(2096), 2, + ACTIONS(4428), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2094), 21, + ACTIONS(4426), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286934,8 +287272,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -286945,15 +287281,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [252886] = 3, + anon_sym_LT_LT_LT, + [252930] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 4, + ACTIONS(5103), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11573), 1, + anon_sym_LT_LT_LT, + ACTIONS(11575), 1, + sym_file_descriptor, + STATE(4954), 1, + sym_herestring_redirect, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4705), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5094), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11571), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5101), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5016), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11569), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [252982] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1330), 3, sym_file_descriptor, sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 22, + ACTIONS(1328), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286963,6 +287339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -286976,15 +287353,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [252920] = 3, + [253016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 4, + ACTIONS(1274), 3, sym_file_descriptor, - sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 22, + ACTIONS(1272), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286994,6 +287370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -287006,55 +287383,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [252954] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11568), 1, - aux_sym_concatenation_token1, - ACTIONS(11684), 1, - sym__concat, - STATE(4520), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 3, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 20, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [252994] = 6, + [253050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11500), 1, - aux_sym_concatenation_token1, - ACTIONS(11502), 1, - sym__concat, - STATE(4594), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5069), 3, + ACTIONS(1322), 4, sym_file_descriptor, + sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5067), 20, + ACTIONS(1320), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287065,6 +287403,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -287074,15 +287414,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [253034] = 3, + aux_sym_concatenation_token1, + [253084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 3, + ACTIONS(1330), 4, sym_file_descriptor, sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 23, + ACTIONS(1328), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287092,7 +287433,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -287106,15 +287446,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [253068] = 3, + [253118] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 4, - sym_file_descriptor, + ACTIONS(11454), 1, + aux_sym_concatenation_token1, + ACTIONS(11456), 1, sym__concat, + STATE(4459), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4513), 3, + sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 22, + ACTIONS(4511), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287124,7 +287469,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -287135,21 +287479,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [253102] = 6, + anon_sym_LT_LT_LT, + [253158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11491), 1, - aux_sym_concatenation_token1, - ACTIONS(11493), 1, - sym__concat, - STATE(4471), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5723), 2, + ACTIONS(1342), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(5721), 21, + ACTIONS(1340), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287171,14 +287509,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [253142] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [253192] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 3, + ACTIONS(1294), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 23, + ACTIONS(1292), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287188,7 +287528,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -287201,16 +287540,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [253176] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [253226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 4, + ACTIONS(1342), 4, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 22, + ACTIONS(1340), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287220,8 +287560,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -287232,22 +287573,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [253210] = 6, + [253260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11558), 1, - anon_sym_LT_LT_LT, - STATE(4912), 1, - sym_herestring_redirect, - ACTIONS(4348), 2, + ACTIONS(1294), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - STATE(4986), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4253), 19, + ACTIONS(1292), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287258,6 +287592,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -287267,15 +287603,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [253250] = 3, + aux_sym_concatenation_token1, + [253294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 4, + ACTIONS(1274), 4, sym_file_descriptor, - sym__concat, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 22, + ACTIONS(1272), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287296,62 +287633,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_BQUOTE, - [253284] = 12, + [253328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5387), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11558), 1, - anon_sym_LT_LT_LT, - ACTIONS(11560), 1, + ACTIONS(1318), 3, sym_file_descriptor, - STATE(4912), 1, - sym_herestring_redirect, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5099), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1316), 23, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11556), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(5385), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4986), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11554), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [253336] = 6, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [253362] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11686), 1, + ACTIONS(11713), 1, sym_variable_name, - STATE(6758), 1, + STATE(6748), 1, sym_subscript, - ACTIONS(11329), 2, + ACTIONS(11309), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4581), 2, + STATE(4571), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(11327), 20, + ACTIONS(11307), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287361,6 +287689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -287371,16 +287700,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [253376] = 3, + [253402] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 4, + ACTIONS(11715), 1, + sym_variable_name, + STATE(6770), 1, + sym_subscript, + STATE(4543), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11309), 3, sym_file_descriptor, - sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 22, + ACTIONS(11307), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287390,7 +287724,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -287401,35 +287734,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [253410] = 7, + [253442] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11558), 1, - anon_sym_LT_LT_LT, - STATE(4912), 1, - sym_herestring_redirect, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4272), 2, + ACTIONS(11717), 1, + sym_variable_name, + STATE(6748), 1, + sym_subscript, + ACTIONS(11294), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4986), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4270), 17, + STATE(4571), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11292), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -287438,50 +287768,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [253452] = 8, + [253482] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11692), 1, - anon_sym_LT_LT_LT, - ACTIONS(11694), 1, + ACTIONS(11454), 1, + aux_sym_concatenation_token1, + ACTIONS(11456), 1, + sym__concat, + STATE(4458), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5589), 3, sym_file_descriptor, - ACTIONS(11363), 2, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11690), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4530), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11688), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11357), 9, + ACTIONS(5587), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [253496] = 3, + anon_sym_LT_LT_LT, + [253522] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 3, - sym_file_descriptor, + ACTIONS(11454), 1, + aux_sym_concatenation_token1, + ACTIONS(11456), 1, sym__concat, + STATE(4459), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2169), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 23, + ACTIONS(2167), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287491,10 +287825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -287504,58 +287835,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [253530] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11363), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11700), 1, anon_sym_LT_LT_LT, - ACTIONS(11702), 1, - sym_file_descriptor, - ACTIONS(11698), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4547), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11696), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11357), 10, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [253574] = 6, + [253562] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11704), 1, - sym_variable_name, - STATE(6757), 1, - sym_subscript, - STATE(4519), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11329), 3, + ACTIONS(11458), 1, + aux_sym_concatenation_token1, + ACTIONS(11460), 1, + sym__concat, + STATE(4465), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5167), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(11327), 19, + ACTIONS(5165), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287565,6 +287859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -287575,14 +287870,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [253614] = 3, + [253602] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 3, - sym_file_descriptor, + ACTIONS(11458), 1, + aux_sym_concatenation_token1, + ACTIONS(11460), 1, sym__concat, + STATE(4466), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5175), 3, + sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 23, + ACTIONS(5173), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287592,9 +287893,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -287604,16 +287904,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [253648] = 3, + [253642] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(1330), 3, - sym_file_descriptor, + sym_comment, + ACTIONS(11454), 1, + aux_sym_concatenation_token1, + ACTIONS(11456), 1, sym__concat, + STATE(4462), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5589), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 23, + ACTIONS(5587), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287623,9 +287926,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -287636,14 +287938,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [253682] = 3, + [253682] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 2, + ACTIONS(11454), 1, + aux_sym_concatenation_token1, + ACTIONS(11456), 1, + sym__concat, + STATE(4463), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2169), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 24, + ACTIONS(2167), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287653,10 +287960,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -287667,20 +287972,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - sym__special_character, - [253716] = 6, + [253722] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, + ACTIONS(11454), 1, aux_sym_concatenation_token1, - ACTIONS(11653), 1, + ACTIONS(11456), 1, sym__concat, - STATE(4674), 1, + STATE(4462), 1, aux_sym_concatenation_repeat1, - ACTIONS(1263), 2, + ACTIONS(5595), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 21, + ACTIONS(5593), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287690,6 +287994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -287700,21 +288005,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - anon_sym_BQUOTE, - [253756] = 6, + anon_sym_LT_LT_LT, + [253762] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11491), 1, + ACTIONS(11454), 1, aux_sym_concatenation_token1, - ACTIONS(11493), 1, + ACTIONS(11456), 1, sym__concat, - STATE(4468), 1, + STATE(4463), 1, aux_sym_concatenation_repeat1, - ACTIONS(4372), 2, + ACTIONS(2173), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 21, + ACTIONS(2171), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287724,9 +288028,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -287736,56 +288039,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [253796] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11305), 1, anon_sym_LT_LT_LT, - ACTIONS(11414), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11564), 1, - sym_file_descriptor, - ACTIONS(11335), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5084), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11333), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11412), 11, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [253840] = 6, + [253802] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11706), 1, - sym_variable_name, - STATE(6758), 1, - sym_subscript, - ACTIONS(11290), 2, + ACTIONS(11454), 1, + aux_sym_concatenation_token1, + ACTIONS(11456), 1, + sym__concat, + STATE(4462), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4428), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4581), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11288), 20, + ACTIONS(4426), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287795,6 +288062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -287805,20 +288073,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [253880] = 6, + anon_sym_LT_LT_LT, + [253842] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, + ACTIONS(11454), 1, aux_sym_concatenation_token1, - ACTIONS(11514), 1, + ACTIONS(11456), 1, sym__concat, - STATE(4591), 1, + STATE(4463), 1, aux_sym_concatenation_repeat1, - ACTIONS(2074), 2, + ACTIONS(4513), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2072), 21, + ACTIONS(4511), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287840,19 +288108,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [253920] = 6, + [253882] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, + ACTIONS(11454), 1, aux_sym_concatenation_token1, - ACTIONS(11709), 1, + ACTIONS(11456), 1, sym__concat, - STATE(4253), 1, + STATE(4462), 1, aux_sym_concatenation_repeat1, - ACTIONS(1267), 2, + ACTIONS(4579), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 21, + ACTIONS(4577), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287862,6 +288130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -287873,20 +288142,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [253960] = 6, + [253922] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, + ACTIONS(11454), 1, aux_sym_concatenation_token1, - ACTIONS(11711), 1, + ACTIONS(11456), 1, sym__concat, - STATE(4253), 1, + STATE(4463), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 2, + ACTIONS(4595), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 21, + ACTIONS(4593), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287896,6 +288164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -287907,21 +288176,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [254000] = 6, + [253962] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11500), 1, + ACTIONS(11454), 1, aux_sym_concatenation_token1, - ACTIONS(11713), 1, + ACTIONS(11456), 1, sym__concat, - STATE(4244), 1, + STATE(4458), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 3, + ACTIONS(5595), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 20, + ACTIONS(5593), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287931,7 +288199,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -287942,20 +288209,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [254040] = 6, + anon_sym_LT_LT_LT, + [254002] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11500), 1, - aux_sym_concatenation_token1, - ACTIONS(11715), 1, - sym__concat, - STATE(4244), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 3, + ACTIONS(1326), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 20, + ACTIONS(1324), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287965,8 +288227,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -287976,15 +288239,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [254080] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [254036] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 4, - sym_file_descriptor, + ACTIONS(11454), 1, + aux_sym_concatenation_token1, + ACTIONS(11456), 1, sym__concat, - sym_variable_name, + STATE(4459), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2173), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 22, + ACTIONS(2171), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287995,8 +288265,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -288006,15 +288274,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [254114] = 3, + anon_sym_LT_LT_LT, + [254076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 3, + ACTIONS(1350), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 23, + ACTIONS(1348), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288038,19 +288306,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [254148] = 6, + [254110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11491), 1, - aux_sym_concatenation_token1, - ACTIONS(11493), 1, - sym__concat, - STATE(4471), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4469), 2, + ACTIONS(1334), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 21, + ACTIONS(1332), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288072,14 +288335,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [254188] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [254144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 3, + ACTIONS(1354), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 23, + ACTIONS(1352), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288103,19 +288368,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [254222] = 6, + [254178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, - aux_sym_concatenation_token1, - ACTIONS(11717), 1, - sym__concat, - STATE(4253), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 2, + ACTIONS(1338), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 21, + ACTIONS(1336), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288125,8 +288385,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -288137,19 +288398,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [254262] = 6, + aux_sym_concatenation_token1, + [254212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, - aux_sym_concatenation_token1, - ACTIONS(11719), 1, - sym__concat, - STATE(4253), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 2, + ACTIONS(1326), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 21, + ACTIONS(1324), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288159,8 +288417,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -288170,20 +288429,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [254302] = 6, + aux_sym_concatenation_token1, + [254246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, - sym__concat, - STATE(4634), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 2, + ACTIONS(1350), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 21, + ACTIONS(1348), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288193,8 +288448,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -288204,21 +288460,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [254342] = 6, + aux_sym_concatenation_token1, + [254280] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11500), 1, - aux_sym_concatenation_token1, - ACTIONS(11721), 1, - sym__concat, - STATE(4244), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 3, - sym_file_descriptor, + ACTIONS(11720), 1, sym_variable_name, + STATE(6774), 1, + sym_subscript, + ACTIONS(11309), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 20, + STATE(4595), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11307), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288239,15 +288495,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [254382] = 3, + [254320] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 4, + ACTIONS(1334), 4, sym_file_descriptor, sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 22, + ACTIONS(1332), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288270,17 +288526,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [254416] = 5, + [254354] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11617), 1, - sym__special_character, - STATE(4498), 1, - aux_sym__literal_repeat1, - ACTIONS(5697), 2, + ACTIONS(11722), 1, + sym_variable_name, + STATE(6774), 1, + sym_subscript, + ACTIONS(11294), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5695), 22, + STATE(4595), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11292), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288291,8 +288550,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -288302,18 +288559,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [254454] = 5, + anon_sym_BQUOTE, + [254394] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11617), 1, - sym__special_character, - STATE(4498), 1, - aux_sym__literal_repeat1, - ACTIONS(5723), 2, + ACTIONS(11458), 1, + aux_sym_concatenation_token1, + ACTIONS(11460), 1, + sym__concat, + STATE(4500), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5167), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5721), 22, + ACTIONS(5165), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288324,8 +288584,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -288335,16 +288593,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [254492] = 3, + anon_sym_BQUOTE, + [254434] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 4, - sym_file_descriptor, + ACTIONS(11458), 1, + aux_sym_concatenation_token1, + ACTIONS(11460), 1, sym__concat, - ts_builtin_sym_end, + STATE(4501), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5175), 3, + sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 22, + ACTIONS(5173), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288354,7 +288617,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -288365,22 +288627,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, anon_sym_BQUOTE, - [254526] = 6, + [254474] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, + ACTIONS(11454), 1, aux_sym_concatenation_token1, - ACTIONS(11514), 1, + ACTIONS(11456), 1, sym__concat, - STATE(4523), 1, + STATE(4498), 1, aux_sym_concatenation_repeat1, - ACTIONS(5697), 3, + ACTIONS(5589), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5695), 20, + ACTIONS(5587), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288401,14 +288661,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [254566] = 3, + anon_sym_BQUOTE, + [254514] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 3, - sym_file_descriptor, + ACTIONS(11454), 1, + aux_sym_concatenation_token1, + ACTIONS(11456), 1, sym__concat, + STATE(4499), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2169), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 23, + ACTIONS(2167), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288418,10 +288684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -288431,20 +288694,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [254600] = 6, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [254554] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11491), 1, + ACTIONS(11454), 1, aux_sym_concatenation_token1, - ACTIONS(11493), 1, + ACTIONS(11456), 1, sym__concat, - STATE(4471), 1, + STATE(4498), 1, aux_sym_concatenation_repeat1, - ACTIONS(4566), 2, + ACTIONS(5595), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 21, + ACTIONS(5593), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288455,8 +288719,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -288466,20 +288728,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [254640] = 6, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [254594] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, + ACTIONS(11454), 1, aux_sym_concatenation_token1, - ACTIONS(11514), 1, + ACTIONS(11456), 1, sym__concat, - STATE(4523), 1, + STATE(4499), 1, aux_sym_concatenation_repeat1, - ACTIONS(4566), 3, + ACTIONS(2173), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 20, + ACTIONS(2171), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288500,20 +288763,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [254680] = 6, + anon_sym_BQUOTE, + [254634] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11500), 1, + ACTIONS(11454), 1, aux_sym_concatenation_token1, - ACTIONS(11723), 1, + ACTIONS(11456), 1, sym__concat, - STATE(4244), 1, + STATE(4498), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 3, + ACTIONS(4428), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 20, + ACTIONS(4426), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288533,21 +288796,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [254720] = 6, + [254674] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, + ACTIONS(11454), 1, aux_sym_concatenation_token1, - ACTIONS(11514), 1, + ACTIONS(11456), 1, sym__concat, - STATE(4510), 1, + STATE(4499), 1, aux_sym_concatenation_repeat1, - ACTIONS(4554), 3, + ACTIONS(4513), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 20, + ACTIONS(4511), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288568,46 +288831,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [254760] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6820), 5, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - ACTIONS(6818), 21, - sym__immediate_double_hash, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_POUND, - anon_sym_RBRACE3, - anon_sym_AT, - anon_sym_EQ2, - anon_sym_COLON_EQ, - anon_sym_DASH3, - anon_sym_COLON_DASH, - anon_sym_PLUS3, - anon_sym_COLON_PLUS, - anon_sym_QMARK2, - anon_sym_COLON_QMARK, - anon_sym_PERCENT_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - [254794] = 3, + anon_sym_BQUOTE, + [254714] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 4, - sym_file_descriptor, + ACTIONS(11454), 1, + aux_sym_concatenation_token1, + ACTIONS(11456), 1, sym__concat, - ts_builtin_sym_end, + STATE(4498), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4579), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 22, + ACTIONS(4577), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288617,7 +288854,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -288628,15 +288864,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [254828] = 3, + [254754] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11727), 2, + ACTIONS(11454), 1, + aux_sym_concatenation_token1, + ACTIONS(11456), 1, + sym__concat, + STATE(4499), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4595), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11725), 23, + ACTIONS(4593), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288646,10 +288888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -288660,18 +288899,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [254861] = 4, + anon_sym_BQUOTE, + [254794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4272), 3, + ACTIONS(1310), 4, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - STATE(4650), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4270), 19, + ACTIONS(1308), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288682,6 +288919,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -288691,14 +288930,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [254896] = 3, + aux_sym_concatenation_token1, + [254828] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11729), 3, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(11606), 1, + sym__concat, + STATE(4777), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4595), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11731), 22, + ACTIONS(4593), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288708,7 +288954,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -288719,52 +288964,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + [254867] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11729), 1, + anon_sym_RBRACE3, + ACTIONS(11731), 1, + anon_sym_BANG2, + ACTIONS(11735), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11737), 1, + anon_sym_BQUOTE, + ACTIONS(11739), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11741), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11743), 1, + sym_variable_name, + STATE(3536), 1, + sym_subscript, + STATE(6411), 1, + sym_command_substitution, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7069), 1, + sym__expansion_body, + ACTIONS(11733), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8542), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11725), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11727), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [254926] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11745), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(11749), 1, + anon_sym_LPAREN, + ACTIONS(11751), 1, + aux_sym__c_word_token1, + ACTIONS(11753), 1, + anon_sym_DOLLAR, + ACTIONS(11755), 1, + anon_sym_DQUOTE, + ACTIONS(11757), 1, + aux_sym_number_token1, + ACTIONS(11759), 1, + aux_sym_number_token2, + ACTIONS(11761), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11763), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11765), 1, anon_sym_BQUOTE, - [254929] = 3, + ACTIONS(11767), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3243), 1, + sym__c_unary_expression, + STATE(3246), 1, + sym__c_binary_expression, + STATE(3247), 1, + sym__c_postfix_expression, + STATE(6645), 1, + sym__c_expression, + STATE(6783), 1, + sym__c_variable_assignment, + ACTIONS(11747), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3241), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [254991] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11733), 3, - sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(11450), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11735), 22, + ACTIONS(11452), 1, + anon_sym_LT_LT_LT, + ACTIONS(11769), 1, + sym_file_descriptor, + ACTIONS(11542), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4998), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11540), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11448), 10, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [254962] = 6, + [255034] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, + ACTIONS(11731), 1, + anon_sym_BANG2, + ACTIONS(11735), 1, + anon_sym_DOLLAR_LPAREN, ACTIONS(11737), 1, - sym__concat, - STATE(4268), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 3, + anon_sym_BQUOTE, + ACTIONS(11739), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11741), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11743), 1, + sym_variable_name, + ACTIONS(11771), 1, + anon_sym_RBRACE3, + STATE(3536), 1, + sym_subscript, + STATE(6411), 1, + sym_command_substitution, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7261), 1, + sym__expansion_body, + ACTIONS(11733), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8542), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11725), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11727), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [255093] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 19, + ACTIONS(1308), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288775,6 +289149,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -288784,14 +289160,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [255001] = 3, + aux_sym_concatenation_token1, + [255126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11727), 3, + ACTIONS(2173), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11725), 22, + ACTIONS(2171), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288801,8 +289177,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -288813,14 +289191,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [255034] = 3, + [255159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11733), 2, + ACTIONS(1314), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(11735), 23, + ACTIONS(1312), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288830,7 +289208,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -288843,21 +289220,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [255067] = 6, + aux_sym_concatenation_token1, + [255192] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, - sym__concat, - STATE(4611), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2074), 3, + ACTIONS(11731), 1, + anon_sym_BANG2, + ACTIONS(11735), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11737), 1, + anon_sym_BQUOTE, + ACTIONS(11739), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11741), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11743), 1, + sym_variable_name, + ACTIONS(11773), 1, + anon_sym_RBRACE3, + STATE(3536), 1, + sym_subscript, + STATE(6411), 1, + sym_command_substitution, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7299), 1, + sym__expansion_body, + ACTIONS(11733), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8542), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11725), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11727), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [255251] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1274), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2072), 19, + ACTIONS(1272), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288867,6 +289281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -288877,14 +289292,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [255106] = 3, + sym__special_character, + anon_sym_BQUOTE, + [255284] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11749), 1, + anon_sym_LPAREN, + ACTIONS(11751), 1, + aux_sym__c_word_token1, + ACTIONS(11753), 1, + anon_sym_DOLLAR, + ACTIONS(11755), 1, + anon_sym_DQUOTE, + ACTIONS(11757), 1, + aux_sym_number_token1, + ACTIONS(11759), 1, + aux_sym_number_token2, + ACTIONS(11761), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11763), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11765), 1, + anon_sym_BQUOTE, + ACTIONS(11767), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11775), 1, + anon_sym_RPAREN_RPAREN, + STATE(3243), 1, + sym__c_unary_expression, + STATE(3246), 1, + sym__c_binary_expression, + STATE(3247), 1, + sym__c_postfix_expression, + STATE(6584), 1, + sym__c_expression, + STATE(6783), 1, + sym__c_variable_assignment, + ACTIONS(11747), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3241), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [255349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11739), 3, + ACTIONS(11777), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11741), 22, + ACTIONS(11779), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288907,30 +289370,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [255139] = 5, + [255382] = 6, ACTIONS(3), 1, sym_comment, - STATE(5602), 1, - aux_sym_pipeline_repeat1, - ACTIONS(11745), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(11748), 2, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(11781), 1, + sym__concat, + STATE(4287), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11743), 20, + ACTIONS(1266), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -288939,14 +289403,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [255176] = 3, + [255421] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4554), 3, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(11783), 1, + sym__concat, + STATE(4287), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 22, + ACTIONS(1286), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288967,16 +289436,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + [255460] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11731), 1, + anon_sym_BANG2, + ACTIONS(11735), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11737), 1, anon_sym_BQUOTE, - [255209] = 3, + ACTIONS(11739), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11741), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11743), 1, + sym_variable_name, + ACTIONS(11785), 1, + anon_sym_RBRACE3, + STATE(3536), 1, + sym_subscript, + STATE(6411), 1, + sym_command_substitution, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7330), 1, + sym__expansion_body, + ACTIONS(11733), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8542), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11725), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11727), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [255519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 3, + ACTIONS(11787), 3, sym_file_descriptor, - sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 22, + ACTIONS(11789), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288986,9 +289496,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -288998,20 +289507,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [255242] = 6, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [255552] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11749), 1, + anon_sym_LPAREN, + ACTIONS(11751), 1, + aux_sym__c_word_token1, + ACTIONS(11753), 1, + anon_sym_DOLLAR, + ACTIONS(11755), 1, + anon_sym_DQUOTE, + ACTIONS(11757), 1, + aux_sym_number_token1, + ACTIONS(11759), 1, + aux_sym_number_token2, + ACTIONS(11761), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11763), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11765), 1, + anon_sym_BQUOTE, + ACTIONS(11767), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11791), 1, + anon_sym_RPAREN_RPAREN, + STATE(3243), 1, + sym__c_unary_expression, + STATE(3246), 1, + sym__c_binary_expression, + STATE(3247), 1, + sym__c_postfix_expression, + STATE(6594), 1, + sym__c_expression, + STATE(6783), 1, + sym__c_variable_assignment, + ACTIONS(11747), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3241), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [255617] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, - sym__concat, - STATE(4674), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4469), 2, + ACTIONS(11731), 1, + anon_sym_BANG2, + ACTIONS(11735), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11737), 1, + anon_sym_BQUOTE, + ACTIONS(11739), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11741), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11743), 1, + sym_variable_name, + ACTIONS(11793), 1, + anon_sym_RBRACE3, + STATE(3536), 1, + sym_subscript, + STATE(6411), 1, + sym_command_substitution, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7370), 1, + sym__expansion_body, + ACTIONS(11733), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8542), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11725), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11727), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [255676] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11795), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 20, + ACTIONS(11797), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289021,6 +289615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -289031,36 +289626,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [255281] = 10, + [255709] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4259), 1, + ACTIONS(11355), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11457), 1, + ACTIONS(11803), 1, + anon_sym_LT_LT_LT, + ACTIONS(11805), 1, sym_file_descriptor, - ACTIONS(4249), 2, + ACTIONS(11801), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4627), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11799), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11349), 9, anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(4251), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4255), 2, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(11282), 2, + [255752] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11373), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11813), 1, + anon_sym_LT_LT_LT, + ACTIONS(11816), 1, + sym_file_descriptor, + ACTIONS(11810), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4283), 3, + STATE(4627), 3, sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4257), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(11280), 8, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11807), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -289069,19 +289688,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [255328] = 6, + ACTIONS(11365), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [255795] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, - sym__concat, - STATE(4634), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5723), 2, + ACTIONS(11731), 1, + anon_sym_BANG2, + ACTIONS(11735), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11737), 1, + anon_sym_BQUOTE, + ACTIONS(11739), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11741), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11743), 1, + sym_variable_name, + ACTIONS(11819), 1, + anon_sym_RBRACE3, + STATE(3536), 1, + sym_subscript, + STATE(6411), 1, + sym_command_substitution, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7399), 1, + sym__expansion_body, + ACTIONS(11733), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8542), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11725), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11727), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [255854] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(5721), 20, + ACTIONS(1316), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289091,8 +289758,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -289102,19 +289770,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [255367] = 6, + aux_sym_concatenation_token1, + [255887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, - sym__concat, - STATE(4669), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4372), 2, + ACTIONS(1302), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 20, + ACTIONS(1300), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289125,6 +289789,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -289134,15 +289800,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [255406] = 3, + aux_sym_concatenation_token1, + [255920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11750), 3, + ACTIONS(11821), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11752), 22, + ACTIONS(11823), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289165,159 +289831,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [255439] = 16, + [255953] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11758), 1, - anon_sym_RBRACE3, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - STATE(3532), 1, + ACTIONS(11825), 1, + anon_sym_RBRACE3, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, + STATE(6411), 1, + sym_command_substitution, + STATE(6425), 1, aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(7155), 1, + sym__expansion_body, + ACTIONS(11733), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8542), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11725), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11727), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [256012] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11731), 1, + anon_sym_BANG2, + ACTIONS(11735), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11737), 1, + anon_sym_BQUOTE, + ACTIONS(11739), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11741), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11743), 1, + sym_variable_name, + ACTIONS(11827), 1, + anon_sym_RBRACE3, + STATE(3536), 1, + sym_subscript, + STATE(6411), 1, sym_command_substitution, - STATE(6908), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7430), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [255498] = 8, + [256071] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11448), 1, - anon_sym_LT_LT_LT, - ACTIONS(11774), 1, + ACTIONS(11829), 1, sym_file_descriptor, - ACTIONS(11414), 2, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(11481), 2, + ACTIONS(4705), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11524), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4868), 2, + ACTIONS(11548), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(4734), 3, sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11479), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11412), 9, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11546), 7, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [255541] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, - sym__concat, - STATE(4674), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5697), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5695), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(11522), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [255580] = 6, + [256114] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, - sym__concat, - STATE(4669), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2096), 2, - sym_file_descriptor, + ACTIONS(4314), 1, + anon_sym_RPAREN, + ACTIONS(4527), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(2094), 20, - anon_sym_SEMI, + ACTIONS(11831), 1, + sym_file_descriptor, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4705), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5012), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(11542), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4525), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4669), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11540), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [255619] = 3, + [256163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 4, + ACTIONS(1298), 4, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 21, + ACTIONS(1296), 21, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP, @@ -289339,74 +290020,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [255652] = 16, + [256196] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(11776), 1, + ACTIONS(11833), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, + STATE(6411), 1, + sym_command_substitution, + STATE(6425), 1, aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(7449), 1, + sym__expansion_body, + ACTIONS(11733), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8542), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11725), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11727), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [256255] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11731), 1, + anon_sym_BANG2, + ACTIONS(11735), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11737), 1, + anon_sym_BQUOTE, + ACTIONS(11739), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11741), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11743), 1, + sym_variable_name, + ACTIONS(11835), 1, + anon_sym_RBRACE3, + STATE(3536), 1, + sym_subscript, + STATE(6411), 1, sym_command_substitution, - STATE(7521), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7467), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [255711] = 6, + [256314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, + ACTIONS(1306), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - ACTIONS(11778), 1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [256347] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1278), 4, sym__concat, - STATE(4268), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1276), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [256380] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11731), 1, + anon_sym_BANG2, + ACTIONS(11735), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11737), 1, + anon_sym_BQUOTE, + ACTIONS(11739), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11741), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11743), 1, + sym_variable_name, + ACTIONS(11837), 1, + anon_sym_RBRACE3, + STATE(3536), 1, + sym_subscript, + STATE(6411), 1, + sym_command_substitution, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7496), 1, + sym__expansion_body, + ACTIONS(11733), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8542), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11725), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11727), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [256439] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5573), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11841), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(11844), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 19, + ACTIONS(11839), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -289415,15 +290241,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [255750] = 3, + [256476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 4, + ACTIONS(1310), 4, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 21, + ACTIONS(1308), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [256509] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1312), 21, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP, @@ -289445,13 +290301,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [255783] = 3, + [256542] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11782), 2, + ACTIONS(11846), 1, + sym__special_character, + STATE(4645), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11780), 23, + ACTIONS(1360), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289461,7 +290321,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -289474,20 +290333,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [255816] = 6, + [256579] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11731), 1, + anon_sym_BANG2, + ACTIONS(11735), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11737), 1, + anon_sym_BQUOTE, + ACTIONS(11739), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11741), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11743), 1, + sym_variable_name, + ACTIONS(11849), 1, + anon_sym_RBRACE3, + STATE(3536), 1, + sym_subscript, + STATE(6411), 1, + sym_command_substitution, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7520), 1, + sym__expansion_body, + ACTIONS(11733), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8542), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11725), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11727), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [256638] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, + ACTIONS(11604), 1, aux_sym_concatenation_token1, - ACTIONS(11653), 1, + ACTIONS(11606), 1, sym__concat, - STATE(4674), 1, + STATE(4923), 1, aux_sym_concatenation_repeat1, - ACTIONS(5723), 2, + ACTIONS(1274), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5721), 20, + ACTIONS(1272), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289507,20 +290408,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [255855] = 6, + sym__special_character, + [256677] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, + ACTIONS(11454), 1, aux_sym_concatenation_token1, - ACTIONS(11784), 1, + ACTIONS(11851), 1, sym__concat, - STATE(4268), 1, + STATE(4240), 1, aux_sym_concatenation_repeat1, - ACTIONS(1267), 2, + ACTIONS(1268), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 20, + ACTIONS(1266), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289530,7 +290431,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -289541,14 +290441,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [255894] = 6, + anon_sym_LT_LT_LT, + [256716] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, + ACTIONS(11454), 1, aux_sym_concatenation_token1, - ACTIONS(11786), 1, + ACTIONS(11853), 1, sym__concat, - STATE(4268), 1, + STATE(4240), 1, aux_sym_concatenation_repeat1, ACTIONS(1288), 2, sym_file_descriptor, @@ -289563,7 +290464,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -289574,15 +290474,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [255933] = 3, + anon_sym_LT_LT_LT, + [256755] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5772), 4, + ACTIONS(11458), 1, + aux_sym_concatenation_token1, + ACTIONS(11855), 1, + sym__concat, + STATE(4245), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 3, sym_file_descriptor, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5770), 21, + ACTIONS(1266), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289592,7 +290498,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -289603,15 +290508,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [255966] = 3, + [256794] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 3, - sym_file_descriptor, + ACTIONS(11458), 1, + aux_sym_concatenation_token1, + ACTIONS(11857), 1, sym__concat, + STATE(4245), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 3, + sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 22, + ACTIONS(1286), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289622,8 +290532,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -289633,151 +290541,379 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [255999] = 3, + [256833] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 3, - sym_file_descriptor, - sym__concat, + ACTIONS(11731), 1, + anon_sym_BANG2, + ACTIONS(11735), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11737), 1, + anon_sym_BQUOTE, + ACTIONS(11739), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11741), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11743), 1, + sym_variable_name, + ACTIONS(11859), 1, + anon_sym_RBRACE3, + STATE(3536), 1, + sym_subscript, + STATE(6411), 1, + sym_command_substitution, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7438), 1, + sym__expansion_body, + ACTIONS(11733), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8542), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11725), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11727), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [256892] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11731), 1, + anon_sym_BANG2, + ACTIONS(11735), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11737), 1, + anon_sym_BQUOTE, + ACTIONS(11739), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11741), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11743), 1, + sym_variable_name, + ACTIONS(11861), 1, + anon_sym_RBRACE3, + STATE(3536), 1, + sym_subscript, + STATE(6411), 1, + sym_command_substitution, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(6848), 1, + sym__expansion_body, + ACTIONS(11733), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8542), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11725), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11727), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [256951] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11731), 1, + anon_sym_BANG2, + ACTIONS(11735), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11737), 1, + anon_sym_BQUOTE, + ACTIONS(11739), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11741), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11743), 1, + sym_variable_name, + ACTIONS(11863), 1, + anon_sym_RBRACE3, + STATE(3536), 1, + sym_subscript, + STATE(6411), 1, + sym_command_substitution, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7183), 1, + sym__expansion_body, + ACTIONS(11733), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8542), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11725), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11727), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [257010] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11731), 1, + anon_sym_BANG2, + ACTIONS(11735), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11737), 1, + anon_sym_BQUOTE, + ACTIONS(11739), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11741), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11743), 1, + sym_variable_name, + ACTIONS(11865), 1, + anon_sym_RBRACE3, + STATE(3536), 1, + sym_subscript, + STATE(6411), 1, + sym_command_substitution, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7440), 1, + sym__expansion_body, + ACTIONS(11733), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8542), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11725), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11727), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [257069] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4314), 1, + anon_sym_BQUOTE, + ACTIONS(5079), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 22, - anon_sym_SEMI, + ACTIONS(11867), 1, + sym_file_descriptor, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4705), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5077), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(11470), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5075), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4670), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11468), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [256032] = 3, + [257118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5375), 3, - sym_file_descriptor, - sym_variable_name, + ACTIONS(1318), 4, + sym__concat, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5373), 22, + ACTIONS(1316), 21, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [256065] = 6, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [257151] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11749), 1, + anon_sym_LPAREN, + ACTIONS(11751), 1, + aux_sym__c_word_token1, + ACTIONS(11753), 1, + anon_sym_DOLLAR, + ACTIONS(11755), 1, + anon_sym_DQUOTE, + ACTIONS(11757), 1, + aux_sym_number_token1, + ACTIONS(11759), 1, + aux_sym_number_token2, + ACTIONS(11761), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11763), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11765), 1, + anon_sym_BQUOTE, + ACTIONS(11767), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11869), 1, + anon_sym_RPAREN_RPAREN, + STATE(3243), 1, + sym__c_unary_expression, + STATE(3246), 1, + sym__c_binary_expression, + STATE(3247), 1, + sym__c_postfix_expression, + STATE(6599), 1, + sym__c_expression, + STATE(6783), 1, + sym__c_variable_assignment, + ACTIONS(11747), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3241), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [257216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, + ACTIONS(1302), 4, sym__concat, - STATE(4669), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2074), 2, - sym_file_descriptor, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2072), 20, + ACTIONS(1300), 21, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [256104] = 16, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [257249] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(11788), 1, + ACTIONS(11871), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(6810), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7506), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [256163] = 3, + [257308] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11790), 3, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(11606), 1, + sym__concat, + STATE(4768), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5589), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11792), 22, + ACTIONS(5587), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289787,7 +290923,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -289798,15 +290933,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [256196] = 3, + [257347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11729), 2, + ACTIONS(11873), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11731), 23, + ACTIONS(11875), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289816,10 +290950,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -289830,52 +290962,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [256229] = 8, + anon_sym_BQUOTE, + [257380] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11363), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11798), 1, - anon_sym_LT_LT_LT, - ACTIONS(11800), 1, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(11606), 1, + sym__concat, + STATE(4777), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2169), 3, sym_file_descriptor, - ACTIONS(11796), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4665), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11794), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11357), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2167), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [256272] = 5, + [257419] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11802), 1, + ACTIONS(11877), 1, sym__special_character, - STATE(4855), 1, + STATE(4645), 1, aux_sym__literal_repeat1, - ACTIONS(4566), 2, + ACTIONS(4428), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 21, + ACTIONS(4426), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289897,59 +291028,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [256309] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11804), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(11808), 1, - anon_sym_LPAREN, - ACTIONS(11810), 1, - aux_sym__c_word_token1, - ACTIONS(11812), 1, - anon_sym_DOLLAR, - ACTIONS(11814), 1, - anon_sym_DQUOTE, - ACTIONS(11816), 1, - aux_sym_number_token1, - ACTIONS(11818), 1, - aux_sym_number_token2, - ACTIONS(11820), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11822), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11824), 1, - anon_sym_BQUOTE, - ACTIONS(11826), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(3285), 1, - sym__c_postfix_expression, - STATE(3286), 1, - sym__c_binary_expression, - STATE(3290), 1, - sym__c_unary_expression, - STATE(6702), 1, - sym__c_expression, - STATE(6768), 1, - sym__c_variable_assignment, - ACTIONS(11806), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3292), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [256374] = 3, + [257456] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11790), 2, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(11879), 1, + sym__concat, + STATE(4287), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11792), 23, + ACTIONS(1266), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289959,10 +291050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -289972,14 +291060,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [256407] = 3, + anon_sym_BQUOTE, + [257495] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11830), 2, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(11881), 1, + sym__concat, + STATE(4287), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11828), 23, + ACTIONS(1286), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289989,10 +291083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -290002,77 +291093,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [256440] = 16, + anon_sym_BQUOTE, + [257534] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(11832), 1, + ACTIONS(11883), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(6984), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(6845), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [256499] = 8, + [257593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11834), 1, + ACTIONS(11885), 3, sym_file_descriptor, - ACTIONS(4692), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(11887), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - ACTIONS(11455), 2, - ts_builtin_sym_end, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [257626] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11548), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11481), 2, + ACTIONS(11831), 1, + sym_file_descriptor, + ACTIONS(4705), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11542), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4734), 3, + STATE(4741), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11453), 7, + ACTIONS(11540), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11546), 8, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - ACTIONS(11479), 8, + [257669] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11548), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11867), 1, + sym_file_descriptor, + ACTIONS(4705), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11470), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4682), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11468), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -290081,176 +291228,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [256542] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11808), 1, - anon_sym_LPAREN, - ACTIONS(11810), 1, - aux_sym__c_word_token1, - ACTIONS(11812), 1, - anon_sym_DOLLAR, - ACTIONS(11814), 1, - anon_sym_DQUOTE, - ACTIONS(11816), 1, - aux_sym_number_token1, - ACTIONS(11818), 1, - aux_sym_number_token2, - ACTIONS(11820), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11822), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11824), 1, - anon_sym_BQUOTE, - ACTIONS(11826), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11836), 1, - anon_sym_RPAREN_RPAREN, - STATE(3285), 1, - sym__c_postfix_expression, - STATE(3286), 1, - sym__c_binary_expression, - STATE(3290), 1, - sym__c_unary_expression, - STATE(6665), 1, - sym__c_expression, - STATE(6768), 1, - sym__c_variable_assignment, - ACTIONS(11806), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3292), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [256607] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11760), 1, - anon_sym_BANG2, - ACTIONS(11764), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, - anon_sym_BQUOTE, - ACTIONS(11768), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, - sym_variable_name, - ACTIONS(11838), 1, - anon_sym_RBRACE3, - STATE(3532), 1, - sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, - sym_command_substitution, - STATE(7433), 1, - sym__expansion_body, - ACTIONS(11762), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8050), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11754), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11756), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [256666] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1310), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 21, - anon_sym_LPAREN_LPAREN, + ACTIONS(11546), 8, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_PIPE_AMP, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [256699] = 16, + [257712] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(11840), 1, + ACTIONS(11889), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7146), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(6907), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [256758] = 3, + [257771] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11842), 3, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(11606), 1, + sym__concat, + STATE(4768), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4428), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11844), 22, + ACTIONS(4426), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -290260,7 +291303,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -290271,16 +291313,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [256791] = 3, + [257810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 3, + ACTIONS(1274), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 22, + ACTIONS(1272), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -290290,6 +291329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -290302,244 +291342,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [256824] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11760), 1, - anon_sym_BANG2, - ACTIONS(11764), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, - anon_sym_BQUOTE, - ACTIONS(11768), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, - sym_variable_name, - ACTIONS(11846), 1, - anon_sym_RBRACE3, - STATE(3532), 1, - sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, - sym_command_substitution, - STATE(7089), 1, - sym__expansion_body, - ACTIONS(11762), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8050), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11754), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11756), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [256883] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11760), 1, - anon_sym_BANG2, - ACTIONS(11764), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, - anon_sym_BQUOTE, - ACTIONS(11768), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, - sym_variable_name, - ACTIONS(11848), 1, - anon_sym_RBRACE3, - STATE(3532), 1, - sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, - sym_command_substitution, - STATE(7105), 1, - sym__expansion_body, - ACTIONS(11762), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8050), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11754), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11756), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [256942] = 8, + sym__special_character, + [257843] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11506), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11508), 1, - anon_sym_LT_LT_LT, - ACTIONS(11850), 1, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(11606), 1, + sym__concat, + STATE(4777), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4513), 3, sym_file_descriptor, - ACTIONS(11542), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5017), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11540), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11504), 10, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4511), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_RPAREN, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [256985] = 16, + [257882] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(11852), 1, + ACTIONS(11891), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7261), 1, - sym__expansion_body, - ACTIONS(11762), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8050), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11754), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11756), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [257044] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11760), 1, - anon_sym_BANG2, - ACTIONS(11764), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, - anon_sym_BQUOTE, - ACTIONS(11768), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, - sym_variable_name, - ACTIONS(11854), 1, - anon_sym_RBRACE3, - STATE(3532), 1, - sym_subscript, - STATE(6428), 1, + STATE(6425), 1, aux_sym__expansion_body_repeat1, - STATE(6472), 1, - sym_command_substitution, - STATE(7112), 1, + STATE(7015), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [257103] = 11, + [257941] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - anon_sym_BQUOTE, - ACTIONS(5379), 1, + ACTIONS(4346), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11856), 1, + ACTIONS(11512), 1, sym_file_descriptor, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5355), 2, + ACTIONS(4308), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11487), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(5377), 3, + ACTIONS(4312), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4344), 2, anon_sym_SEMI, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4697), 3, + ACTIONS(11248), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4407), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11485), 8, + ACTIONS(2755), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(11246), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -290548,36 +291456,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [257152] = 11, + [257988] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2721), 1, - ts_builtin_sym_end, - ACTIONS(5051), 1, + ACTIONS(11466), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11834), 1, + ACTIONS(11472), 1, + anon_sym_LT_LT_LT, + ACTIONS(11893), 1, sym_file_descriptor, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4690), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11481), 2, + ACTIONS(11470), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(5049), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4650), 3, + STATE(4968), 2, sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11479), 8, + sym_herestring_redirect, + ACTIONS(11468), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -290586,18 +291480,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [257201] = 5, + ACTIONS(11464), 10, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [258031] = 5, ACTIONS(3), 1, sym_comment, - STATE(4664), 1, - aux_sym_pipeline_repeat1, - ACTIONS(11748), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(11858), 2, + ACTIONS(4310), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(11743), 20, + ACTIONS(4327), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4670), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4325), 18, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -290606,10 +291513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -290618,49 +291522,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [257238] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11315), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11867), 1, - anon_sym_LT_LT_LT, - ACTIONS(11870), 1, - sym_file_descriptor, - ACTIONS(11864), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4665), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11861), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11307), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [257281] = 3, + anon_sym_BQUOTE, + [258068] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11782), 3, + ACTIONS(4595), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11780), 22, + ACTIONS(4593), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -290683,108 +291553,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [257314] = 8, + [258101] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11448), 1, - anon_sym_LT_LT_LT, - ACTIONS(11774), 1, + ACTIONS(4327), 2, sym_file_descriptor, - ACTIONS(11481), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(11535), 2, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4877), 2, + STATE(4670), 3, sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11479), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11533), 9, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4325), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [257357] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11760), 1, - anon_sym_BANG2, - ACTIONS(11764), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, - sym_variable_name, - ACTIONS(11873), 1, - anon_sym_RBRACE3, - STATE(3532), 1, - sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, - sym_command_substitution, - STATE(6860), 1, - sym__expansion_body, - ACTIONS(11762), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8050), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11754), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11756), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [257416] = 6, + [258136] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11875), 1, - sym__concat, - STATE(4268), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 2, + STATE(4735), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11897), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(11899), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 20, + ACTIONS(11895), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -290793,546 +291616,752 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [257455] = 3, + [258173] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 4, - sym__concat, - sym_test_operator, - sym__brace_start, + ACTIONS(11409), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 21, - anon_sym_LPAREN_LPAREN, + ACTIONS(11910), 1, + sym_file_descriptor, + ACTIONS(11904), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11907), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4682), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11398), 8, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_PIPE_AMP, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [257488] = 16, + ACTIONS(11901), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [258216] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, - anon_sym_BANG2, - ACTIONS(11764), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11416), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11472), 1, + anon_sym_LT_LT_LT, + ACTIONS(11893), 1, + sym_file_descriptor, + ACTIONS(11470), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4976), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11468), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11414), 10, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - ACTIONS(11768), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, - sym_variable_name, - ACTIONS(11877), 1, - anon_sym_RBRACE3, - STATE(3532), 1, - sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, - sym_command_substitution, - STATE(7126), 1, - sym__expansion_body, - ACTIONS(11762), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8050), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11754), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11756), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [257547] = 16, + [258259] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(11879), 1, + ACTIONS(11913), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7135), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7024), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [257606] = 6, + [258318] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, - sym__concat, - STATE(4611), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4554), 3, - sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(11450), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 19, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(11472), 1, + anon_sym_LT_LT_LT, + ACTIONS(11893), 1, + sym_file_descriptor, + ACTIONS(11470), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4998), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11468), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [257645] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11881), 1, - sym__concat, - STATE(4268), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 20, + ACTIONS(11448), 10, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [257684] = 16, + [258361] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(11883), 1, + ACTIONS(11915), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7141), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7095), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [257743] = 16, + [258420] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11749), 1, + anon_sym_LPAREN, + ACTIONS(11751), 1, + aux_sym__c_word_token1, + ACTIONS(11753), 1, + anon_sym_DOLLAR, + ACTIONS(11755), 1, + anon_sym_DQUOTE, + ACTIONS(11757), 1, + aux_sym_number_token1, + ACTIONS(11759), 1, + aux_sym_number_token2, + ACTIONS(11761), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11763), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11765), 1, + anon_sym_BQUOTE, + ACTIONS(11767), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11917), 1, + anon_sym_RPAREN_RPAREN, + STATE(3243), 1, + sym__c_unary_expression, + STATE(3246), 1, + sym__c_binary_expression, + STATE(3247), 1, + sym__c_postfix_expression, + STATE(6622), 1, + sym__c_expression, + STATE(6783), 1, + sym__c_variable_assignment, + ACTIONS(11747), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3241), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [258485] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(11885), 1, + ACTIONS(11919), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7163), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7116), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [257802] = 16, + [258544] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11921), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(11923), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [258577] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(11887), 1, + ACTIONS(11925), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7170), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7232), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [257861] = 16, + [258636] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(11889), 1, + ACTIONS(11927), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7179), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7353), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [257920] = 16, + [258695] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4714), 1, + ts_builtin_sym_end, + ACTIONS(4718), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11829), 1, + sym_file_descriptor, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4703), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4705), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11524), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4716), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4634), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11522), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [258744] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11929), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(11931), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [258777] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(11606), 1, + sym__concat, + STATE(4768), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5595), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5593), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [258816] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1274), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1272), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + [258849] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(11891), 1, + ACTIONS(11933), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7187), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7502), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [257979] = 16, + [258908] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(11893), 1, + ACTIONS(11935), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7196), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7113), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [258038] = 16, + [258967] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(11606), 1, + sym__concat, + STATE(4777), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2173), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2171), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [259006] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(11895), 1, + ACTIONS(11937), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7207), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7157), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [258097] = 16, + [259065] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(11897), 1, + ACTIONS(11939), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7219), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(6812), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [258156] = 6, + [259124] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, + ACTIONS(11604), 1, aux_sym_concatenation_token1, - ACTIONS(11653), 1, + ACTIONS(11606), 1, sym__concat, - STATE(4634), 1, + STATE(4768), 1, aux_sym_concatenation_repeat1, - ACTIONS(4469), 2, + ACTIONS(4579), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 20, + ACTIONS(4577), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291342,7 +292371,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -291353,19 +292381,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [258195] = 6, + [259163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, - sym__concat, - STATE(4669), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4554), 2, + ACTIONS(1306), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 20, + ACTIONS(1304), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291376,6 +292399,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -291385,98 +292410,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [258234] = 8, + aux_sym_concatenation_token1, + [259196] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11414), 1, + ACTIONS(1322), 4, + sym__concat, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(11508), 1, - anon_sym_LT_LT_LT, - ACTIONS(11850), 1, - sym_file_descriptor, - ACTIONS(11542), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4868), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11540), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11412), 10, + ACTIONS(1320), 21, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [258277] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11760), 1, - anon_sym_BANG2, - ACTIONS(11764), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, - sym_variable_name, - ACTIONS(11899), 1, - anon_sym_RBRACE3, - STATE(3532), 1, - sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, - sym_command_substitution, - STATE(7245), 1, - sym__expansion_body, - ACTIONS(11762), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8050), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11754), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11756), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [258336] = 6, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [259229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, - sym__concat, - STATE(4635), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4372), 2, + ACTIONS(1278), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 20, + ACTIONS(1276), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291486,8 +292458,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -291497,15 +292470,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [258375] = 3, + aux_sym_concatenation_token1, + [259262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5768), 4, + ACTIONS(5175), 4, sym_file_descriptor, sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5766), 21, + ACTIONS(5173), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291527,19 +292501,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [258408] = 6, + [259295] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, - sym__concat, - STATE(4634), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5697), 2, + ACTIONS(11877), 1, + sym__special_character, + STATE(4645), 1, + aux_sym__literal_repeat1, + ACTIONS(5589), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5695), 20, + ACTIONS(5587), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291549,8 +292521,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -291560,105 +292533,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [258447] = 16, + [259332] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(11901), 1, + ACTIONS(11941), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7257), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(6839), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [258506] = 16, + [259391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, - anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(1326), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1324), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, - sym_variable_name, - ACTIONS(11903), 1, - anon_sym_RBRACE3, - STATE(3532), 1, - sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, - sym_command_substitution, - STATE(6900), 1, - sym__expansion_body, - ACTIONS(11762), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8050), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11754), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11756), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [258565] = 6, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [259424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, + ACTIONS(1330), 4, sym__concat, - STATE(4635), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2074), 2, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1328), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [259457] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11943), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2072), 20, + ACTIONS(11945), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291679,103 +292664,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [258604] = 16, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [259490] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11795), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(11797), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [259523] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(11905), 1, + ACTIONS(11947), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7271), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(6866), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [258663] = 16, + [259582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, - anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(1334), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1332), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, - sym_variable_name, - ACTIONS(11907), 1, - anon_sym_RBRACE3, - STATE(3532), 1, - sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, - sym_command_substitution, - STATE(7082), 1, - sym__expansion_body, - ACTIONS(11762), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8050), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11754), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11756), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [258722] = 5, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [259615] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11802), 1, + ACTIONS(11877), 1, sym__special_character, - STATE(4855), 1, + STATE(4645), 1, aux_sym__literal_repeat1, - ACTIONS(5723), 2, + ACTIONS(5595), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5593), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [259652] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2169), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5721), 21, + ACTIONS(2167), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291785,6 +292817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -291797,101 +292830,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [258759] = 16, + anon_sym_LT_LT_LT, + [259685] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11452), 1, + anon_sym_LT_LT_LT, + ACTIONS(11466), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11769), 1, + sym_file_descriptor, + ACTIONS(11542), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4968), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11540), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11464), 10, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [259728] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4316), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11512), 1, + sym_file_descriptor, + ACTIONS(4306), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(4308), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4312), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11248), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4407), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4314), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(11246), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [259775] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1338), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1336), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [259808] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(11909), 1, + ACTIONS(11949), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7284), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(6893), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [258818] = 8, + [259867] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11455), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11856), 1, - sym_file_descriptor, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11487), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4725), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11453), 8, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(5573), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11841), 2, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_BQUOTE, - ACTIONS(11485), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [258861] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, - sym__concat, - STATE(4634), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4566), 2, + ACTIONS(11844), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 20, + ACTIONS(11839), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -291899,7 +292999,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -291908,19 +293007,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [258900] = 6, + anon_sym_BQUOTE, + [259904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, + ACTIONS(1342), 4, sym__concat, - STATE(4635), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4554), 2, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1340), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [259937] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1274), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 20, + ACTIONS(1272), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291930,8 +293055,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -291941,60 +293067,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [258939] = 19, - ACTIONS(71), 1, + sym__special_character, + [259970] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(11808), 1, - anon_sym_LPAREN, - ACTIONS(11810), 1, - aux_sym__c_word_token1, - ACTIONS(11812), 1, + ACTIONS(1294), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1292), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(11814), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(11816), 1, + sym_raw_string, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(11818), 1, aux_sym_number_token2, - ACTIONS(11820), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(11822), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11824), 1, anon_sym_BQUOTE, - ACTIONS(11826), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11911), 1, - anon_sym_RPAREN_RPAREN, - STATE(3285), 1, - sym__c_postfix_expression, - STATE(3286), 1, - sym__c_binary_expression, - STATE(3290), 1, - sym__c_unary_expression, - STATE(6618), 1, - sym__c_expression, - STATE(6768), 1, - sym__c_variable_assignment, - ACTIONS(11806), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3292), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [259004] = 3, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [260003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 3, + ACTIONS(11951), 3, sym_file_descriptor, - sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 22, + ACTIONS(11953), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292004,9 +293115,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -292016,27 +293126,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [259037] = 3, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [260036] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11830), 3, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4327), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11828), 22, + STATE(4634), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4325), 17, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -292045,62 +293160,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [259070] = 16, + [260073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, - anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(1350), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1348), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, - sym_variable_name, - ACTIONS(11913), 1, - anon_sym_RBRACE3, - STATE(3532), 1, - sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, - sym_command_substitution, - STATE(7296), 1, - sym__expansion_body, - ACTIONS(11762), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8050), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11754), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11756), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [259129] = 5, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [260106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11802), 1, - sym__special_character, - STATE(4855), 1, - aux_sym__literal_repeat1, - ACTIONS(4469), 2, + ACTIONS(1322), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 21, + ACTIONS(1320), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292122,20 +293219,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [259166] = 6, + aux_sym_concatenation_token1, + [260139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, - sym__concat, - STATE(4611), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2096), 3, + ACTIONS(5175), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(2094), 19, + ACTIONS(5173), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292145,7 +293237,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -292155,14 +293250,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [259205] = 3, + [260172] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 3, + ACTIONS(4327), 3, sym_file_descriptor, - sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 22, + STATE(4634), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4325), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292173,8 +293272,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -292184,59 +293281,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [259238] = 16, + [260207] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(11915), 1, + ACTIONS(11955), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7317), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7601), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [259297] = 3, + [260266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 4, + ACTIONS(1354), 4, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 21, + ACTIONS(1352), 21, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP, @@ -292258,13 +293354,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [259330] = 3, + [260299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4554), 2, + ACTIONS(1330), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 23, + ACTIONS(1328), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292274,7 +293371,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -292287,34 +293383,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [259363] = 8, + aux_sym_concatenation_token1, + [260332] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11431), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11926), 1, + ACTIONS(11396), 1, + anon_sym_LT_LT_LT, + ACTIONS(11957), 1, sym_file_descriptor, - ACTIONS(11920), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11923), 2, + ACTIONS(11416), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(11524), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4710), 3, + STATE(4976), 2, sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11420), 8, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - ACTIONS(11917), 8, + sym_herestring_redirect, + ACTIONS(11522), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -292323,50 +293409,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [259406] = 6, + ACTIONS(11414), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [260375] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, - sym__concat, - STATE(4630), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4566), 3, + ACTIONS(11965), 1, sym_file_descriptor, + ACTIONS(11409), 2, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 19, + ACTIONS(11904), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11962), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4734), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11398), 7, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + ACTIONS(11959), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [259445] = 3, + [260418] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11931), 2, + STATE(4735), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11844), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11929), 23, + ACTIONS(11968), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(11839), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -292376,7 +293478,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -292385,147 +293486,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [259478] = 16, - ACTIONS(3), 1, + [260455] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(11760), 1, - anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11749), 1, + anon_sym_LPAREN, + ACTIONS(11751), 1, + aux_sym__c_word_token1, + ACTIONS(11753), 1, + anon_sym_DOLLAR, + ACTIONS(11755), 1, + anon_sym_DQUOTE, + ACTIONS(11757), 1, + aux_sym_number_token1, + ACTIONS(11759), 1, + aux_sym_number_token2, + ACTIONS(11761), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11763), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11765), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11767), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, - sym_variable_name, - ACTIONS(11933), 1, - anon_sym_RBRACE3, - STATE(3532), 1, - sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + ACTIONS(11971), 1, + anon_sym_RPAREN_RPAREN, + STATE(3243), 1, + sym__c_unary_expression, + STATE(3246), 1, + sym__c_binary_expression, + STATE(3247), 1, + sym__c_postfix_expression, + STATE(6678), 1, + sym__c_expression, + STATE(6783), 1, + sym__c_variable_assignment, + ACTIONS(11747), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3241), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, sym_command_substitution, - STATE(6922), 1, - sym__expansion_body, - ACTIONS(11762), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8050), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11754), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11756), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [259537] = 16, - ACTIONS(3), 1, + [260520] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(11760), 1, - anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11749), 1, + anon_sym_LPAREN, + ACTIONS(11751), 1, + aux_sym__c_word_token1, + ACTIONS(11753), 1, + anon_sym_DOLLAR, + ACTIONS(11755), 1, + anon_sym_DQUOTE, + ACTIONS(11757), 1, + aux_sym_number_token1, + ACTIONS(11759), 1, + aux_sym_number_token2, + ACTIONS(11761), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11763), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11765), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11767), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, - sym_variable_name, - ACTIONS(11935), 1, - anon_sym_RBRACE3, - STATE(3532), 1, - sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + ACTIONS(11973), 1, + anon_sym_RPAREN_RPAREN, + STATE(3243), 1, + sym__c_unary_expression, + STATE(3246), 1, + sym__c_binary_expression, + STATE(3247), 1, + sym__c_postfix_expression, + STATE(6685), 1, + sym__c_expression, + STATE(6783), 1, + sym__c_variable_assignment, + ACTIONS(11747), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3241), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, sym_command_substitution, - STATE(7373), 1, - sym__expansion_body, - ACTIONS(11762), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8050), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11754), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11756), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [259596] = 16, + [260585] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4327), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4669), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4325), 18, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [260622] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(11937), 1, + ACTIONS(11975), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7332), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(6920), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [259655] = 4, + [260681] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4272), 2, + ACTIONS(4327), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4746), 3, + STATE(4669), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(4270), 20, + ACTIONS(4325), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292546,253 +293684,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [259690] = 5, + [260716] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4272), 2, - sym_file_descriptor, + ACTIONS(11409), 1, aux_sym_heredoc_redirect_token1, - STATE(4746), 3, + ACTIONS(11983), 1, + sym_file_descriptor, + ACTIONS(11904), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11980), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4741), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(4270), 18, + ACTIONS(11398), 8, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + ACTIONS(11977), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [259727] = 16, + [260759] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1358), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1356), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [260792] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1346), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1344), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [260825] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1358), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1356), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [260858] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(11939), 1, + ACTIONS(11986), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7345), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(6942), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [259786] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11410), 1, - anon_sym_LT_LT_LT, - ACTIONS(11535), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11941), 1, - sym_file_descriptor, - ACTIONS(11487), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4877), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11485), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11533), 10, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [259829] = 16, + [260917] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(11943), 1, + ACTIONS(11988), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(6891), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7194), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [259888] = 19, - ACTIONS(71), 1, + [260976] = 16, + ACTIONS(3), 1, sym_comment, - ACTIONS(11808), 1, - anon_sym_LPAREN, - ACTIONS(11810), 1, - aux_sym__c_word_token1, - ACTIONS(11812), 1, - anon_sym_DOLLAR, - ACTIONS(11814), 1, - anon_sym_DQUOTE, - ACTIONS(11816), 1, - aux_sym_number_token1, - ACTIONS(11818), 1, - aux_sym_number_token2, - ACTIONS(11820), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11822), 1, + ACTIONS(11731), 1, + anon_sym_BANG2, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11824), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11826), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11945), 1, - anon_sym_RPAREN_RPAREN, - STATE(3285), 1, - sym__c_postfix_expression, - STATE(3286), 1, - sym__c_binary_expression, - STATE(3290), 1, - sym__c_unary_expression, - STATE(6658), 1, - sym__c_expression, - STATE(6768), 1, - sym__c_variable_assignment, - ACTIONS(11806), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3292), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, + ACTIONS(11741), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11743), 1, + sym_variable_name, + ACTIONS(11990), 1, + anon_sym_RBRACE3, + STATE(3536), 1, + sym_subscript, + STATE(6411), 1, sym_command_substitution, - [259953] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4272), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(4697), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4270), 18, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [259990] = 8, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(6825), 1, + sym__expansion_body, + ACTIONS(11733), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8542), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11725), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11727), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [261035] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11508), 1, + ACTIONS(11396), 1, anon_sym_LT_LT_LT, - ACTIONS(11535), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11850), 1, + ACTIONS(11957), 1, sym_file_descriptor, - ACTIONS(11542), 2, + ACTIONS(11466), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(11524), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4877), 2, + STATE(4968), 2, sym_file_redirect, sym_herestring_redirect, - ACTIONS(11540), 8, + ACTIONS(11522), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -292801,28 +293963,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11533), 10, + ACTIONS(11464), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, anon_sym_LT_LT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - [260033] = 4, + [261078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4272), 2, + ACTIONS(11943), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4697), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4270), 20, + ACTIONS(11945), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292832,7 +293989,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -292842,50 +294002,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [260068] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11431), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11953), 1, - sym_file_descriptor, - ACTIONS(11920), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11950), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4725), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11420), 8, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_BQUOTE, - ACTIONS(11947), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [260111] = 3, + anon_sym_LT_LT_LT, + [261111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 3, + ACTIONS(11992), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 22, + ACTIONS(11994), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292895,9 +294020,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -292907,15 +294031,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [260144] = 3, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [261144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11956), 3, + ACTIONS(5873), 4, sym_file_descriptor, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11958), 22, + ACTIONS(5871), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292936,237 +294062,246 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [260177] = 16, + [261177] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(11960), 1, + ACTIONS(11996), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7601), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(6964), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [260236] = 16, + [261236] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(11962), 1, + ACTIONS(11998), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7361), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7001), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [260295] = 16, + [261295] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(11964), 1, + ACTIONS(12000), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7046), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(6986), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [260354] = 16, + [261354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, - anon_sym_BANG2, - ACTIONS(11764), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11885), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(11887), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [261387] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12002), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(12004), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - ACTIONS(11768), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, - sym_variable_name, - ACTIONS(11966), 1, - anon_sym_RBRACE3, - STATE(3532), 1, - sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, - sym_command_substitution, - STATE(7374), 1, - sym__expansion_body, - ACTIONS(11762), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8050), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11754), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11756), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [260413] = 16, + [261420] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(11968), 1, + ACTIONS(12006), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7162), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7136), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [260472] = 6, + [261479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, - sym__concat, - STATE(4630), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5723), 3, + ACTIONS(11821), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5721), 19, + ACTIONS(11823), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293176,7 +294311,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -293186,79 +294324,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [260511] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11976), 1, - sym_file_descriptor, - ACTIONS(11431), 2, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(11920), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11973), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4734), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11420), 7, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - ACTIONS(11970), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [260554] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1314), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [260587] = 3, + anon_sym_LT_LT_LT, + [261512] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2074), 3, + ACTIONS(11992), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2072), 22, + ACTIONS(11994), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293268,8 +294341,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -293280,101 +294355,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [260620] = 16, + [261545] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(11979), 1, + ACTIONS(12008), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7386), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7008), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [260679] = 16, + [261604] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(11981), 1, + ACTIONS(12010), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, + STATE(6411), 1, + sym_command_substitution, + STATE(6425), 1, aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(7029), 1, + sym__expansion_body, + ACTIONS(11733), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8542), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11725), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11727), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [261663] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11731), 1, + anon_sym_BANG2, + ACTIONS(11735), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11737), 1, + anon_sym_BQUOTE, + ACTIONS(11739), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11741), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11743), 1, + sym_variable_name, + ACTIONS(12012), 1, + anon_sym_RBRACE3, + STATE(3536), 1, + sym_subscript, + STATE(6411), 1, sym_command_substitution, - STATE(7461), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7050), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [260738] = 3, + [261722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 3, + ACTIONS(1342), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 22, + ACTIONS(1340), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293397,254 +294514,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [260771] = 16, + [261755] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(11983), 1, + ACTIONS(12014), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, - sym_command_substitution, - STATE(7395), 1, - sym__expansion_body, - ACTIONS(11762), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8050), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11754), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11756), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [260830] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11808), 1, - anon_sym_LPAREN, - ACTIONS(11810), 1, - aux_sym__c_word_token1, - ACTIONS(11812), 1, - anon_sym_DOLLAR, - ACTIONS(11814), 1, - anon_sym_DQUOTE, - ACTIONS(11816), 1, - aux_sym_number_token1, - ACTIONS(11818), 1, - aux_sym_number_token2, - ACTIONS(11820), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11822), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11824), 1, - anon_sym_BQUOTE, - ACTIONS(11826), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11985), 1, - anon_sym_RPAREN_RPAREN, - STATE(3285), 1, - sym__c_postfix_expression, - STATE(3286), 1, - sym__c_binary_expression, - STATE(3290), 1, - sym__c_unary_expression, - STATE(6713), 1, - sym__c_expression, - STATE(6768), 1, - sym__c_variable_assignment, - ACTIONS(11806), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3292), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [260895] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11808), 1, - anon_sym_LPAREN, - ACTIONS(11810), 1, - aux_sym__c_word_token1, - ACTIONS(11812), 1, - anon_sym_DOLLAR, - ACTIONS(11814), 1, - anon_sym_DQUOTE, - ACTIONS(11816), 1, - aux_sym_number_token1, - ACTIONS(11818), 1, - aux_sym_number_token2, - ACTIONS(11820), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11822), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11824), 1, - anon_sym_BQUOTE, - ACTIONS(11826), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11987), 1, - anon_sym_RPAREN_RPAREN, - STATE(3285), 1, - sym__c_postfix_expression, - STATE(3286), 1, - sym__c_binary_expression, - STATE(3290), 1, - sym__c_unary_expression, - STATE(6678), 1, - sym__c_expression, - STATE(6768), 1, - sym__c_variable_assignment, - ACTIONS(11806), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3292), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [260960] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11808), 1, - anon_sym_LPAREN, - ACTIONS(11810), 1, - aux_sym__c_word_token1, - ACTIONS(11812), 1, - anon_sym_DOLLAR, - ACTIONS(11814), 1, - anon_sym_DQUOTE, - ACTIONS(11816), 1, - aux_sym_number_token1, - ACTIONS(11818), 1, - aux_sym_number_token2, - ACTIONS(11820), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11822), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11824), 1, - anon_sym_BQUOTE, - ACTIONS(11826), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11989), 1, - anon_sym_RPAREN_RPAREN, - STATE(3285), 1, - sym__c_postfix_expression, - STATE(3286), 1, - sym__c_binary_expression, - STATE(3290), 1, - sym__c_unary_expression, - STATE(6632), 1, - sym__c_expression, - STATE(6768), 1, - sym__c_variable_assignment, - ACTIONS(11806), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3292), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, + STATE(6411), 1, sym_command_substitution, - [261025] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11760), 1, - anon_sym_BANG2, - ACTIONS(11764), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, - anon_sym_BQUOTE, - ACTIONS(11768), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, - sym_variable_name, - ACTIONS(11991), 1, - anon_sym_RBRACE3, - STATE(3532), 1, - sym_subscript, - STATE(6428), 1, + STATE(6425), 1, aux_sym__expansion_body_repeat1, - STATE(6472), 1, - sym_command_substitution, - STATE(7412), 1, + STATE(7230), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [261084] = 5, + [261814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4272), 3, + ACTIONS(4513), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4650), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4270), 17, + ACTIONS(4511), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -293653,57 +294586,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [261121] = 8, + anon_sym_LT_LT_LT, + [261847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11455), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11993), 1, + ACTIONS(1294), 3, sym_file_descriptor, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11542), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4710), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11453), 8, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1292), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - ACTIONS(11540), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [261164] = 8, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [261880] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11410), 1, + ACTIONS(11396), 1, anon_sym_LT_LT_LT, - ACTIONS(11414), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11941), 1, + ACTIONS(11957), 1, sym_file_descriptor, - ACTIONS(11487), 2, + ACTIONS(11450), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(11524), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4868), 2, + STATE(4998), 2, sym_file_redirect, sym_herestring_redirect, - ACTIONS(11485), 8, + ACTIONS(11522), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -293712,7 +294642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11412), 10, + ACTIONS(11448), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293722,21 +294652,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [261207] = 6, + [261923] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, + ACTIONS(11604), 1, aux_sym_concatenation_token1, - ACTIONS(11653), 1, + ACTIONS(12016), 1, sym__concat, - STATE(4630), 1, + STATE(4287), 1, aux_sym_concatenation_repeat1, - ACTIONS(4469), 3, + ACTIONS(1268), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 19, + ACTIONS(1266), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293756,62 +294685,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [261246] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11760), 1, - anon_sym_BANG2, - ACTIONS(11764), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, - anon_sym_BQUOTE, - ACTIONS(11768), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, - sym_variable_name, - ACTIONS(11995), 1, - anon_sym_RBRACE3, - STATE(3532), 1, - sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, - sym_command_substitution, - STATE(7422), 1, - sym__expansion_body, - ACTIONS(11762), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8050), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11754), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11756), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [261305] = 6, + [261962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, - aux_sym_concatenation_token1, - ACTIONS(11514), 1, - sym__concat, - STATE(4777), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4554), 2, + ACTIONS(11921), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 20, + ACTIONS(11923), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293821,7 +294701,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -293832,100 +294715,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [261344] = 16, + [261995] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(11997), 1, + ACTIONS(12018), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7184), 1, - sym__expansion_body, - ACTIONS(11762), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8050), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11754), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11756), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [261403] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11760), 1, - anon_sym_BANG2, - ACTIONS(11764), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, - anon_sym_BQUOTE, - ACTIONS(11768), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, - sym_variable_name, - ACTIONS(11999), 1, - anon_sym_RBRACE3, - STATE(3532), 1, - sym_subscript, - STATE(6428), 1, + STATE(6425), 1, aux_sym__expansion_body_repeat1, - STATE(6472), 1, - sym_command_substitution, - STATE(7437), 1, + STATE(7319), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [261462] = 3, + [262054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 3, + ACTIONS(4513), 3, sym_file_descriptor, - sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 22, + ACTIONS(4511), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293935,9 +294775,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -293947,20 +294786,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [261495] = 6, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [262087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, - aux_sym_concatenation_token1, - ACTIONS(11514), 1, - sym__concat, - STATE(4776), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4566), 2, + ACTIONS(4595), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 20, + ACTIONS(4593), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293970,7 +294804,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -293981,13 +294818,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [261534] = 3, + [262120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12003), 2, + ACTIONS(5890), 4, sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12001), 23, + ACTIONS(5888), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293997,10 +294836,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -294010,140 +294847,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [261567] = 16, + anon_sym_BQUOTE, + [262153] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(12005), 1, + ACTIONS(12020), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7449), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7394), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [261626] = 19, - ACTIONS(71), 1, + [262212] = 16, + ACTIONS(3), 1, sym_comment, - ACTIONS(11808), 1, - anon_sym_LPAREN, - ACTIONS(11810), 1, - aux_sym__c_word_token1, - ACTIONS(11812), 1, - anon_sym_DOLLAR, - ACTIONS(11814), 1, - anon_sym_DQUOTE, - ACTIONS(11816), 1, - aux_sym_number_token1, - ACTIONS(11818), 1, - aux_sym_number_token2, - ACTIONS(11820), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11822), 1, + ACTIONS(11731), 1, + anon_sym_BANG2, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11824), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11826), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12007), 1, - anon_sym_RPAREN_RPAREN, - STATE(3285), 1, - sym__c_postfix_expression, - STATE(3286), 1, - sym__c_binary_expression, - STATE(3290), 1, - sym__c_unary_expression, - STATE(6675), 1, - sym__c_expression, - STATE(6768), 1, - sym__c_variable_assignment, - ACTIONS(11806), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3292), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, + ACTIONS(11741), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11743), 1, + sym_variable_name, + ACTIONS(12022), 1, + anon_sym_RBRACE3, + STATE(3536), 1, + sym_subscript, + STATE(6411), 1, sym_command_substitution, - [261691] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11410), 1, - anon_sym_LT_LT_LT, - ACTIONS(11506), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11941), 1, - sym_file_descriptor, - ACTIONS(11487), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5017), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11485), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11504), 10, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [261734] = 3, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7071), 1, + sym__expansion_body, + ACTIONS(11733), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8542), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11725), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11727), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [262271] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5375), 4, + ACTIONS(11877), 1, + sym__special_character, + STATE(4645), 1, + aux_sym__literal_repeat1, + ACTIONS(4579), 2, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5373), 21, + ACTIONS(4577), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294153,8 +294954,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -294164,21 +294966,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [261767] = 6, + [262308] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, + ACTIONS(11604), 1, aux_sym_concatenation_token1, - ACTIONS(11653), 1, + ACTIONS(12024), 1, sym__concat, - STATE(4611), 1, + STATE(4287), 1, aux_sym_concatenation_repeat1, - ACTIONS(4372), 3, + ACTIONS(1288), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 19, + ACTIONS(1286), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294198,249 +294999,342 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [261806] = 16, + [262347] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(12009), 1, + ACTIONS(12026), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7464), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7456), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [261865] = 3, + [262406] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [261898] = 16, + ACTIONS(11731), 1, + anon_sym_BANG2, + ACTIONS(11735), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11737), 1, + anon_sym_BQUOTE, + ACTIONS(11739), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11741), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11743), 1, + sym_variable_name, + ACTIONS(12028), 1, + anon_sym_RBRACE3, + STATE(3536), 1, + sym_subscript, + STATE(6411), 1, + sym_command_substitution, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7097), 1, + sym__expansion_body, + ACTIONS(11733), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8542), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11725), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11727), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [262465] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(12011), 1, + ACTIONS(12030), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7255), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7508), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [261957] = 16, + [262524] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2755), 1, + anon_sym_BQUOTE, + ACTIONS(5107), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11867), 1, + sym_file_descriptor, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4705), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5077), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11470), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5105), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4670), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11468), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [262573] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(12013), 1, + ACTIONS(12032), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7476), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7119), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [262016] = 16, + [262632] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11929), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(11931), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [262665] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(12015), 1, + ACTIONS(12034), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7331), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(6836), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [262075] = 3, - ACTIONS(3), 1, + [262724] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1338), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(11749), 1, + anon_sym_LPAREN, + ACTIONS(11751), 1, + aux_sym__c_word_token1, + ACTIONS(11753), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(11755), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(11757), 1, aux_sym_number_token1, + ACTIONS(11759), 1, aux_sym_number_token2, + ACTIONS(11761), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(11763), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(11765), 1, anon_sym_BQUOTE, + ACTIONS(11767), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [262108] = 5, + ACTIONS(12036), 1, + anon_sym_RPAREN_RPAREN, + STATE(3243), 1, + sym__c_unary_expression, + STATE(3246), 1, + sym__c_binary_expression, + STATE(3247), 1, + sym__c_postfix_expression, + STATE(6700), 1, + sym__c_expression, + STATE(6783), 1, + sym__c_variable_assignment, + ACTIONS(11747), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3241), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [262789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11802), 1, - sym__special_character, - STATE(4855), 1, - aux_sym__literal_repeat1, - ACTIONS(5697), 2, + ACTIONS(11951), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5695), 21, + ACTIONS(11953), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294450,6 +295344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -294462,57 +295357,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [262145] = 16, + anon_sym_LT_LT_LT, + [262822] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(12017), 1, + ACTIONS(12038), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7493), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7140), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [262204] = 3, + [262881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12003), 3, + ACTIONS(2169), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12001), 22, + ACTIONS(2167), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294535,76 +295431,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [262237] = 3, + [262914] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 3, - sym_file_descriptor, - sym__concat, + ACTIONS(2757), 1, + ts_builtin_sym_end, + ACTIONS(4707), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 22, - anon_sym_SEMI, + ACTIONS(11829), 1, + sym_file_descriptor, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4703), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4705), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_LT_LT_DASH, + ACTIONS(11524), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [262270] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, - sym__concat, - STATE(4674), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4566), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 20, + ACTIONS(4701), 3, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4634), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11522), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [262309] = 3, + [262963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 2, + ACTIONS(1326), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 23, + ACTIONS(1324), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294626,98 +295498,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - [262342] = 16, + aux_sym_concatenation_token1, + [262996] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(12019), 1, + ACTIONS(12040), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7501), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(6814), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [262401] = 6, + [263055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, - sym__concat, - STATE(5031), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 2, + ACTIONS(1350), 3, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - sym__special_character, - [262440] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11500), 1, - aux_sym_concatenation_token1, - ACTIONS(11502), 1, sym__concat, - STATE(4781), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5069), 3, - sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5067), 19, + ACTIONS(1348), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294728,6 +295560,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -294737,19 +295571,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [262479] = 6, + aux_sym_concatenation_token1, + [263088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, - aux_sym_concatenation_token1, - ACTIONS(12021), 1, - sym__concat, - STATE(4253), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 2, + ACTIONS(1334), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 20, + ACTIONS(1332), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294760,6 +295590,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -294769,20 +295601,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [262518] = 6, + aux_sym_concatenation_token1, + [263121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, - aux_sym_concatenation_token1, - ACTIONS(12023), 1, - sym__concat, - STATE(4253), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 2, + ACTIONS(1354), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 20, + ACTIONS(1352), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294793,6 +295620,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -294802,96 +295631,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [262557] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2719), 1, - anon_sym_RPAREN, - ACTIONS(4384), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11993), 1, - sym_file_descriptor, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4809), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(11542), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4378), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4746), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11540), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [262606] = 16, + aux_sym_concatenation_token1, + [263154] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(12025), 1, + ACTIONS(12042), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7348), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(6999), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [262665] = 3, + [263213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 3, + ACTIONS(5873), 3, sym_file_descriptor, - sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 22, + ACTIONS(5871), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294901,6 +295692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -294913,21 +295705,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [262698] = 6, + [263246] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11500), 1, + ACTIONS(11604), 1, aux_sym_concatenation_token1, - ACTIONS(12027), 1, + ACTIONS(11606), 1, sym__concat, - STATE(4244), 1, + STATE(4619), 1, aux_sym_concatenation_repeat1, - ACTIONS(1267), 3, + ACTIONS(5589), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 19, + ACTIONS(5587), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294937,6 +295727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -294947,14 +295738,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [262737] = 3, + [263285] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2096), 3, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(11606), 1, + sym__concat, + STATE(4620), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2169), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2094), 22, + ACTIONS(2167), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294975,22 +295771,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [262770] = 6, + [263324] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11500), 1, + ACTIONS(11604), 1, aux_sym_concatenation_token1, - ACTIONS(12029), 1, + ACTIONS(11606), 1, sym__concat, - STATE(4244), 1, + STATE(4619), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 3, + ACTIONS(4428), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 19, + ACTIONS(4426), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295000,6 +295793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -295010,20 +295804,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [262809] = 6, + [263363] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12031), 1, - sym_variable_name, - STATE(6727), 1, - sym_subscript, - ACTIONS(11290), 2, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(11606), 1, + sym__concat, + STATE(4620), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4513), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4784), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11288), 19, + ACTIONS(4511), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295033,6 +295826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -295043,13 +295837,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [262848] = 3, + [263402] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12036), 2, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(11606), 1, + sym__concat, + STATE(4619), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5595), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12034), 23, + ACTIONS(5593), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295059,10 +295859,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -295072,14 +295870,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [262881] = 3, + [263441] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11956), 2, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(11606), 1, + sym__concat, + STATE(4620), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2173), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11958), 23, + ACTIONS(2171), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295089,10 +295892,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -295102,21 +295903,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [262914] = 6, + [263480] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12038), 1, - sym_variable_name, - STATE(6727), 1, - sym_subscript, - ACTIONS(11329), 2, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(11606), 1, + sym__concat, + STATE(4619), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4579), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4784), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11327), 19, + ACTIONS(4577), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295126,6 +295925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -295136,13 +295936,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [262953] = 3, + [263519] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 2, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(11606), 1, + sym__concat, + STATE(4620), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4595), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 23, + ACTIONS(4593), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295152,10 +295958,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -295165,14 +295969,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [262986] = 3, + [263558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2074), 2, + ACTIONS(11873), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2072), 23, + ACTIONS(11875), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295196,227 +295999,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [263019] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1334), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [263052] = 16, + [263591] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(12040), 1, + ACTIONS(12044), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7510), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7160), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [263111] = 10, + [263650] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4340), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11457), 1, - sym_file_descriptor, - ACTIONS(4251), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4255), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4338), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(11282), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4283), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2719), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(11280), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [263158] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2719), 1, - anon_sym_BQUOTE, - ACTIONS(5357), 1, + ACTIONS(11416), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11856), 1, + ACTIONS(11452), 1, + anon_sym_LT_LT_LT, + ACTIONS(11769), 1, sym_file_descriptor, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5355), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(11487), 2, + ACTIONS(11542), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(5353), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4697), 3, + STATE(4976), 2, sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11485), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [263207] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(5602), 1, - aux_sym_pipeline_repeat1, - ACTIONS(11745), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(11748), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(11743), 19, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP, + sym_herestring_redirect, + ACTIONS(11540), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [263244] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, - sym__concat, - STATE(4630), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5697), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(5695), 19, + ACTIONS(11414), 10, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [263283] = 3, + [263693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 3, + ACTIONS(1338), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 22, + ACTIONS(1336), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295439,275 +296107,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [263316] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4257), 1, - anon_sym_RPAREN, - ACTIONS(4411), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11993), 1, - sym_file_descriptor, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4809), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(11542), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4409), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4746), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11540), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [263365] = 16, + [263726] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(12042), 1, + ACTIONS(12046), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7128), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7181), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [263424] = 16, + [263785] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(12044), 1, + ACTIONS(12048), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(6925), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7199), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [263483] = 16, + [263844] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(12046), 1, + ACTIONS(12050), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7533), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7201), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [263542] = 3, + [263903] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 4, - sym__concat, - sym_test_operator, - sym__brace_start, + ACTIONS(2755), 1, + anon_sym_RPAREN, + ACTIONS(4471), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [263575] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11500), 1, - aux_sym_concatenation_token1, - ACTIONS(11502), 1, - sym__concat, - STATE(4783), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5375), 3, + ACTIONS(11831), 1, sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(5373), 19, - anon_sym_SEMI, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4705), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5012), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(11542), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4465), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4669), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11540), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [263614] = 19, + [263952] = 19, ACTIONS(71), 1, sym_comment, - ACTIONS(11808), 1, + ACTIONS(11749), 1, anon_sym_LPAREN, - ACTIONS(11810), 1, + ACTIONS(11751), 1, aux_sym__c_word_token1, - ACTIONS(11812), 1, + ACTIONS(11753), 1, anon_sym_DOLLAR, - ACTIONS(11814), 1, + ACTIONS(11755), 1, anon_sym_DQUOTE, - ACTIONS(11816), 1, + ACTIONS(11757), 1, aux_sym_number_token1, - ACTIONS(11818), 1, + ACTIONS(11759), 1, aux_sym_number_token2, - ACTIONS(11820), 1, + ACTIONS(11761), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(11822), 1, + ACTIONS(11763), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11824), 1, + ACTIONS(11765), 1, anon_sym_BQUOTE, - ACTIONS(11826), 1, + ACTIONS(11767), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12048), 1, + ACTIONS(12052), 1, anon_sym_RPAREN_RPAREN, - STATE(3285), 1, - sym__c_postfix_expression, - STATE(3286), 1, - sym__c_binary_expression, - STATE(3290), 1, + STATE(3243), 1, sym__c_unary_expression, - STATE(6648), 1, + STATE(3246), 1, + sym__c_binary_expression, + STATE(3247), 1, + sym__c_postfix_expression, + STATE(6559), 1, sym__c_expression, - STATE(6768), 1, + STATE(6783), 1, sym__c_variable_assignment, - ACTIONS(11806), 2, + ACTIONS(11747), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3292), 7, + STATE(3241), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -295715,14 +296320,57 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [263679] = 3, + [264017] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11731), 1, + anon_sym_BANG2, + ACTIONS(11735), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11737), 1, + anon_sym_BQUOTE, + ACTIONS(11739), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11741), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11743), 1, + sym_variable_name, + ACTIONS(12054), 1, + anon_sym_RBRACE3, + STATE(3536), 1, + sym_subscript, + STATE(6411), 1, + sym_command_substitution, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7294), 1, + sym__expansion_body, + ACTIONS(11733), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8542), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11725), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11727), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [264076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5768), 3, + ACTIONS(5890), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5766), 22, + ACTIONS(5888), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295745,14 +296393,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [263712] = 3, + [264109] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 3, + ACTIONS(12056), 1, + sym_variable_name, + STATE(6757), 1, + sym_subscript, + ACTIONS(11309), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 22, + STATE(4819), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11307), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295763,8 +296417,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -295774,20 +296426,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [263745] = 6, + [264148] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, - aux_sym_concatenation_token1, - ACTIONS(11514), 1, - sym__concat, - STATE(4777), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4372), 2, + ACTIONS(11731), 1, + anon_sym_BANG2, + ACTIONS(11735), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11737), 1, + anon_sym_BQUOTE, + ACTIONS(11739), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11741), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11743), 1, + sym_variable_name, + ACTIONS(12058), 1, + anon_sym_RBRACE3, + STATE(3536), 1, + sym_subscript, + STATE(6411), 1, + sym_command_substitution, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7217), 1, + sym__expansion_body, + ACTIONS(11733), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8542), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11725), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11727), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [264207] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2173), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 20, + ACTIONS(2171), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295797,6 +296486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -295808,341 +296498,441 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [263784] = 3, + anon_sym_BQUOTE, + [264240] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 4, - sym__concat, - sym_test_operator, - sym__brace_start, + ACTIONS(12060), 1, + sym_variable_name, + STATE(6757), 1, + sym_subscript, + ACTIONS(11294), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 21, - anon_sym_LPAREN_LPAREN, + STATE(4819), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11292), 19, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [263817] = 3, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [264279] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(11731), 1, + anon_sym_BANG2, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(11737), 1, anon_sym_BQUOTE, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [263850] = 16, + ACTIONS(11741), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11743), 1, + sym_variable_name, + ACTIONS(12063), 1, + anon_sym_RBRACE3, + STATE(3536), 1, + sym_subscript, + STATE(6411), 1, + sym_command_substitution, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(6797), 1, + sym__expansion_body, + ACTIONS(11733), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8542), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11725), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11727), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [264338] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(12050), 1, + ACTIONS(12065), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(6807), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7228), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [263909] = 3, + [264397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 4, - sym__concat, - sym_test_operator, - sym__brace_start, + ACTIONS(12067), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 21, - anon_sym_LPAREN_LPAREN, + ACTIONS(12069), 22, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [263942] = 3, + [264430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 4, + ACTIONS(1358), 3, + sym_file_descriptor, sym__concat, - sym_test_operator, - sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 21, - anon_sym_LPAREN_LPAREN, + ACTIONS(1356), 22, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [263975] = 3, + [264463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 4, + ACTIONS(1346), 3, + sym_file_descriptor, sym__concat, - sym_test_operator, - sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 21, - anon_sym_LPAREN_LPAREN, + ACTIONS(1344), 22, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [264008] = 16, + [264496] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(12052), 1, + ACTIONS(12071), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7398), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(6858), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [264067] = 16, + [264555] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11787), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(11789), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [264588] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1358), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1356), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [264621] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(12054), 1, + ACTIONS(12073), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7113), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(6792), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [264126] = 16, + [264680] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, - anon_sym_BANG2, - ACTIONS(11764), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, - anon_sym_BQUOTE, - ACTIONS(11768), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11458), 1, + aux_sym_concatenation_token1, + ACTIONS(11460), 1, + sym__concat, + STATE(4650), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5167), 3, + sym_file_descriptor, sym_variable_name, - ACTIONS(12056), 1, - anon_sym_RBRACE3, - STATE(3532), 1, - sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, - sym_command_substitution, - STATE(7524), 1, - sym__expansion_body, - ACTIONS(11762), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8050), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11754), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11756), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [264185] = 6, + aux_sym_heredoc_redirect_token1, + ACTIONS(5165), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [264719] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11458), 1, + aux_sym_concatenation_token1, + ACTIONS(11460), 1, + sym__concat, + STATE(4651), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5175), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(5173), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [264758] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, + ACTIONS(11454), 1, aux_sym_concatenation_token1, - ACTIONS(11514), 1, + ACTIONS(11456), 1, sym__concat, - STATE(4776), 1, + STATE(4648), 1, aux_sym_concatenation_repeat1, - ACTIONS(5723), 2, + ACTIONS(5589), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5721), 20, + ACTIONS(5587), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296163,56 +296953,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [264224] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11760), 1, - anon_sym_BANG2, - ACTIONS(11764), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, - anon_sym_BQUOTE, - ACTIONS(11768), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, - sym_variable_name, - ACTIONS(12058), 1, - anon_sym_RBRACE3, - STATE(3532), 1, - sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, - sym_command_substitution, - STATE(7313), 1, - sym__expansion_body, - ACTIONS(11762), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8050), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11754), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11756), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [264283] = 3, + [264797] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11750), 2, + ACTIONS(11454), 1, + aux_sym_concatenation_token1, + ACTIONS(11456), 1, + sym__concat, + STATE(4649), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2169), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11752), 23, + ACTIONS(2167), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296222,10 +296975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -296236,56 +296986,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [264316] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11760), 1, - anon_sym_BANG2, - ACTIONS(11764), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, - anon_sym_BQUOTE, - ACTIONS(11768), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, - sym_variable_name, - ACTIONS(12060), 1, - anon_sym_RBRACE3, - STATE(3532), 1, - sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, - sym_command_substitution, - STATE(7380), 1, - sym__expansion_body, - ACTIONS(11762), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8050), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11754), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11756), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [264375] = 3, + [264836] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2096), 2, + ACTIONS(11454), 1, + aux_sym_concatenation_token1, + ACTIONS(11456), 1, + sym__concat, + STATE(4648), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5595), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2094), 23, + ACTIONS(5593), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296295,10 +297008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -296309,13 +297019,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [264408] = 3, + [264875] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11842), 2, + ACTIONS(11454), 1, + aux_sym_concatenation_token1, + ACTIONS(11456), 1, + sym__concat, + STATE(4649), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2173), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11844), 23, + ACTIONS(2171), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296325,10 +297041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -296339,19 +297052,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [264441] = 6, + [264914] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, + ACTIONS(11454), 1, aux_sym_concatenation_token1, - ACTIONS(11514), 1, + ACTIONS(11456), 1, sym__concat, - STATE(4776), 1, + STATE(4648), 1, aux_sym_concatenation_repeat1, - ACTIONS(4469), 2, + ACTIONS(4428), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 20, + ACTIONS(4426), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296372,73 +297085,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [264480] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11760), 1, - anon_sym_BANG2, - ACTIONS(11764), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, - anon_sym_BQUOTE, - ACTIONS(11768), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, - sym_variable_name, - ACTIONS(12062), 1, - anon_sym_RBRACE3, - STATE(3532), 1, - sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, - sym_command_substitution, - STATE(7298), 1, - sym__expansion_body, - ACTIONS(11762), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8050), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11754), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11756), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [264539] = 5, + [264953] = 6, ACTIONS(3), 1, sym_comment, - STATE(4664), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12066), 2, + ACTIONS(11454), 1, + aux_sym_concatenation_token1, + ACTIONS(11456), 1, + sym__concat, + STATE(4649), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4513), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4511), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - ACTIONS(12068), 2, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [264992] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11454), 1, + aux_sym_concatenation_token1, + ACTIONS(11456), 1, + sym__concat, + STATE(4648), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4579), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12064), 20, + ACTIONS(4577), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -296447,86 +297150,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264576] = 3, + anon_sym_LT_LT_LT, + [265031] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 4, + ACTIONS(11454), 1, + aux_sym_concatenation_token1, + ACTIONS(11456), 1, sym__concat, - sym_test_operator, - sym__brace_start, + STATE(4649), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4595), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 21, - anon_sym_LPAREN_LPAREN, + ACTIONS(4593), 20, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [264609] = 16, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [265070] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(12070), 1, + ACTIONS(12075), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7197), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(6914), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [264668] = 3, + [265129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4372), 2, + ACTIONS(12002), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 23, + ACTIONS(12004), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296550,19 +297257,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [264701] = 6, + [265162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, - sym__concat, - STATE(4635), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2096), 2, + ACTIONS(12067), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2094), 20, + ACTIONS(12069), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296572,8 +297273,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -296583,200 +297286,255 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264740] = 8, + anon_sym_LT_LT_LT, + [265195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11448), 1, - anon_sym_LT_LT_LT, - ACTIONS(11774), 1, + ACTIONS(11777), 2, sym_file_descriptor, - ACTIONS(11481), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(11506), 2, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(5017), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11479), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11504), 9, + ACTIONS(11779), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264783] = 16, + anon_sym_LT_LT_LT, + [265228] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(12072), 1, + ACTIONS(12077), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7308), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7251), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [264842] = 3, + [265287] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [264875] = 16, + ACTIONS(11731), 1, + anon_sym_BANG2, + ACTIONS(11735), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11737), 1, + anon_sym_BQUOTE, + ACTIONS(11739), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11741), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11743), 1, + sym_variable_name, + ACTIONS(12079), 1, + anon_sym_RBRACE3, + STATE(3536), 1, + sym_subscript, + STATE(6411), 1, + sym_command_substitution, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7235), 1, + sym__expansion_body, + ACTIONS(11733), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8542), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11725), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11727), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [265346] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(12074), 1, + ACTIONS(12081), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, + STATE(6411), 1, + sym_command_substitution, + STATE(6425), 1, aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(7262), 1, + sym__expansion_body, + ACTIONS(11733), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8542), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11725), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11727), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [265405] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11731), 1, + anon_sym_BANG2, + ACTIONS(11735), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11737), 1, + anon_sym_BQUOTE, + ACTIONS(11739), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11741), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11743), 1, + sym_variable_name, + ACTIONS(12083), 1, + anon_sym_RBRACE3, + STATE(3536), 1, + sym_subscript, + STATE(6411), 1, sym_command_substitution, - STATE(7137), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7278), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [264934] = 3, + [265464] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 4, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(11606), 1, sym__concat, - sym_test_operator, - sym__brace_start, + STATE(4665), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5589), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 21, - anon_sym_LPAREN_LPAREN, + ACTIONS(5587), 20, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [264967] = 6, + [265503] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, + ACTIONS(11604), 1, aux_sym_concatenation_token1, - ACTIONS(11514), 1, + ACTIONS(11606), 1, sym__concat, - STATE(4777), 1, + STATE(4666), 1, aux_sym_concatenation_repeat1, - ACTIONS(2096), 2, + ACTIONS(2169), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2094), 20, + ACTIONS(2167), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296796,20 +297554,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [265006] = 6, + anon_sym_BQUOTE, + [265542] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, + ACTIONS(11604), 1, aux_sym_concatenation_token1, - ACTIONS(11514), 1, + ACTIONS(11606), 1, sym__concat, - STATE(4776), 1, + STATE(4665), 1, aux_sym_concatenation_repeat1, - ACTIONS(5697), 2, + ACTIONS(4428), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5695), 20, + ACTIONS(4426), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296829,93 +297587,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [265045] = 16, + anon_sym_BQUOTE, + [265581] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, - anon_sym_BANG2, - ACTIONS(11764), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(11606), 1, + sym__concat, + STATE(4666), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4513), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4511), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - ACTIONS(11768), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, - sym_variable_name, - ACTIONS(12076), 1, - anon_sym_RBRACE3, - STATE(3532), 1, - sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, - sym_command_substitution, - STATE(6904), 1, - sym__expansion_body, - ACTIONS(11762), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8050), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11754), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11756), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [265104] = 3, + [265620] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 4, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(11606), 1, sym__concat, - sym_test_operator, - sym__brace_start, + STATE(4665), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5595), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 21, - anon_sym_LPAREN_LPAREN, + ACTIONS(5593), 20, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [265137] = 6, + [265659] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, + ACTIONS(11604), 1, aux_sym_concatenation_token1, - ACTIONS(11514), 1, + ACTIONS(11606), 1, sym__concat, - STATE(4777), 1, + STATE(4666), 1, aux_sym_concatenation_repeat1, - ACTIONS(2074), 2, + ACTIONS(2173), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2072), 20, + ACTIONS(2171), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296935,58 +297686,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [265176] = 16, + anon_sym_BQUOTE, + [265698] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, - anon_sym_BANG2, - ACTIONS(11764), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(11606), 1, + sym__concat, + STATE(4665), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4579), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4577), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - ACTIONS(11768), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, - sym_variable_name, - ACTIONS(12078), 1, - anon_sym_RBRACE3, - STATE(3532), 1, - sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, - sym_command_substitution, - STATE(6895), 1, - sym__expansion_body, - ACTIONS(11762), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8050), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11754), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11756), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [265235] = 3, + [265737] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5772), 3, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(11606), 1, + sym__concat, + STATE(4666), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4595), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5770), 22, + ACTIONS(4593), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296996,10 +297742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -297009,528 +297752,359 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [265268] = 16, + anon_sym_BQUOTE, + [265776] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(12080), 1, + ACTIONS(12085), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7377), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7288), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [265327] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [265360] = 16, + [265835] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(12082), 1, + ACTIONS(12087), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7260), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7300), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [265419] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11739), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(11741), 23, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [265452] = 16, + [265894] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(12084), 1, + ACTIONS(12089), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7131), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7310), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [265511] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - sym__special_character, - anon_sym_BQUOTE, - [265544] = 3, + [265953] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(11731), 1, + anon_sym_BANG2, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(11737), 1, anon_sym_BQUOTE, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [265577] = 16, + ACTIONS(11741), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11743), 1, + sym_variable_name, + ACTIONS(12091), 1, + anon_sym_RBRACE3, + STATE(3536), 1, + sym_subscript, + STATE(6411), 1, + sym_command_substitution, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7321), 1, + sym__expansion_body, + ACTIONS(11733), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8542), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(11725), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(11727), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [266012] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(12086), 1, + ACTIONS(12093), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(6842), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7331), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [265636] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1310), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [265669] = 16, + [266071] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(12088), 1, + ACTIONS(12095), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(7104), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7343), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [265728] = 16, + [266130] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(12090), 1, + ACTIONS(12097), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(6800), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(7354), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [265787] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1306), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [265820] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1310), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [265853] = 16, + [266189] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11760), 1, + ACTIONS(11731), 1, anon_sym_BANG2, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, + ACTIONS(11741), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, + ACTIONS(11743), 1, sym_variable_name, - ACTIONS(12092), 1, + ACTIONS(12099), 1, anon_sym_RBRACE3, - STATE(3532), 1, + STATE(3536), 1, sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, + STATE(6411), 1, sym_command_substitution, - STATE(6832), 1, + STATE(6425), 1, + aux_sym__expansion_body_repeat1, + STATE(6963), 1, sym__expansion_body, - ACTIONS(11762), 2, + ACTIONS(11733), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11754), 4, + ACTIONS(11725), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11756), 5, + ACTIONS(11727), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [265912] = 5, + [266248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12094), 1, - sym__special_character, - STATE(4855), 1, - aux_sym__literal_repeat1, - ACTIONS(1364), 2, + ACTIONS(1298), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 21, + ACTIONS(1296), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -297552,14 +298126,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [265949] = 3, + aux_sym_concatenation_token1, + [266281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11931), 3, + ACTIONS(12101), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11929), 22, + ACTIONS(12103), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -297580,59 +298155,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [265982] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11760), 1, - anon_sym_BANG2, - ACTIONS(11764), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, - sym_variable_name, - ACTIONS(12097), 1, - anon_sym_RBRACE3, - STATE(3532), 1, - sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, - sym_command_substitution, - STATE(6841), 1, - sym__expansion_body, - ACTIONS(11762), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8050), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11754), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11756), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [266041] = 3, + [266313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12036), 3, + ACTIONS(12105), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12034), 22, + ACTIONS(12107), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -297653,16 +298184,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [266074] = 3, + [266345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 3, + ACTIONS(12111), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 22, + ACTIONS(12109), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -297672,6 +298201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -297684,53 +298214,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [266107] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4686), 1, - ts_builtin_sym_end, - ACTIONS(4694), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11834), 1, - sym_file_descriptor, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4690), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11481), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4688), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4650), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11479), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [266156] = 3, + [266377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4372), 3, + ACTIONS(4513), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 22, + ACTIONS(4511), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -297740,8 +298230,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -297752,87 +298243,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [266189] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1330), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [266222] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11760), 1, - anon_sym_BANG2, - ACTIONS(11764), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, - anon_sym_BQUOTE, - ACTIONS(11768), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11770), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11772), 1, - sym_variable_name, - ACTIONS(12099), 1, - anon_sym_RBRACE3, - STATE(3532), 1, - sym_subscript, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(6472), 1, - sym_command_substitution, - STATE(7051), 1, - sym__expansion_body, - ACTIONS(11762), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8050), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11754), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11756), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [266281] = 3, + [266409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11931), 2, + ACTIONS(5873), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(11929), 22, + ACTIONS(5871), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -297854,15 +298272,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [266313] = 3, + [266441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11830), 3, + ACTIONS(11929), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11828), 21, + ACTIONS(11931), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -297872,8 +298288,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -297883,14 +298300,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [266345] = 3, + anon_sym_LT_LT_LT, + [266473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12103), 2, + ACTIONS(12113), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12101), 22, + ACTIONS(12115), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -297900,10 +298318,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -297913,13 +298329,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [266377] = 3, + anon_sym_BQUOTE, + [266505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12107), 2, + ACTIONS(5890), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(12105), 22, + ACTIONS(5888), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -297929,7 +298347,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -297942,14 +298359,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [266409] = 3, + [266537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12109), 3, + ACTIONS(2173), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12111), 21, + ACTIONS(2171), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -297971,14 +298388,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [266441] = 3, + [266569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4554), 3, + ACTIONS(12117), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 21, + ACTIONS(12119), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298000,14 +298417,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [266473] = 3, + [266601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5768), 3, + ACTIONS(2169), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5766), 21, + ACTIONS(2167), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298017,6 +298433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -298029,42 +298446,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [266505] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12113), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(12115), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [266537] = 3, + [266633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12119), 2, + ACTIONS(12123), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12117), 22, + ACTIONS(12121), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298087,101 +298475,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [266569] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12121), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(12123), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [266601] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12125), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(12127), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [266633] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11931), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(11929), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, [266665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12129), 3, + ACTIONS(4595), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12131), 21, + ACTIONS(4593), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298206,11 +298507,10 @@ static const uint16_t ts_small_parse_table[] = { [266697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12133), 3, + ACTIONS(12002), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12135), 21, + ACTIONS(12004), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298220,8 +298520,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -298231,14 +298532,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, + anon_sym_LT_LT_LT, [266729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12139), 2, + ACTIONS(12127), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12137), 22, + ACTIONS(12125), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298264,10 +298565,10 @@ static const uint16_t ts_small_parse_table[] = { [266761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2096), 2, + ACTIONS(4513), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2094), 22, + ACTIONS(4511), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298293,10 +298594,11 @@ static const uint16_t ts_small_parse_table[] = { [266793] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12143), 2, + ACTIONS(12111), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12141), 22, + ACTIONS(12109), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298306,10 +298608,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -298319,42 +298619,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [266825] = 3, - ACTIONS(3), 1, + anon_sym_BQUOTE, + [266825] = 18, + ACTIONS(71), 1, sym_comment, - ACTIONS(12119), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12117), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [266857] = 3, + ACTIONS(12131), 1, + anon_sym_LPAREN, + ACTIONS(12133), 1, + aux_sym__c_word_token1, + ACTIONS(12135), 1, + anon_sym_DOLLAR, + ACTIONS(12137), 1, + anon_sym_DQUOTE, + ACTIONS(12139), 1, + aux_sym_number_token1, + ACTIONS(12141), 1, + aux_sym_number_token2, + ACTIONS(12143), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12145), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12147), 1, + anon_sym_BQUOTE, + ACTIONS(12149), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3366), 1, + sym__c_unary_expression, + STATE(3370), 1, + sym__c_binary_expression, + STATE(3371), 1, + sym__c_postfix_expression, + STATE(6567), 1, + sym__c_expression, + STATE(6729), 1, + sym__c_variable_assignment, + ACTIONS(12129), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3358), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [266887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12147), 2, + ACTIONS(12153), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12145), 22, + ACTIONS(12151), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298377,13 +298693,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [266889] = 3, + [266919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12151), 2, + ACTIONS(12157), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12149), 22, + ACTIONS(12155), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298406,13 +298722,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [266921] = 3, + [266951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12155), 2, + ACTIONS(12161), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12153), 22, + ACTIONS(12159), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298435,13 +298751,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [266953] = 3, + [266983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4554), 2, + ACTIONS(12165), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 22, + ACTIONS(12163), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298451,6 +298767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -298463,15 +298780,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [266985] = 3, + [267015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12157), 3, + ACTIONS(12117), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12159), 21, + ACTIONS(12119), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298493,14 +298809,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [267017] = 3, + [267047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12157), 3, + ACTIONS(11787), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12159), 21, + ACTIONS(11789), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298510,8 +298825,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -298521,14 +298838,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [267049] = 3, + [267079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4554), 2, + ACTIONS(4595), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 22, + ACTIONS(4593), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298551,13 +298867,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [267081] = 3, + [267111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12133), 2, + ACTIONS(12169), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12135), 22, + ACTIONS(12167), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298580,13 +298896,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [267113] = 3, + [267143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12163), 2, + ACTIONS(12171), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12161), 22, + ACTIONS(12173), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298596,10 +298913,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -298609,43 +298924,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [267145] = 18, + anon_sym_BQUOTE, + [267175] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(12167), 1, + ACTIONS(12131), 1, anon_sym_LPAREN, - ACTIONS(12169), 1, + ACTIONS(12133), 1, aux_sym__c_word_token1, - ACTIONS(12171), 1, + ACTIONS(12135), 1, anon_sym_DOLLAR, - ACTIONS(12173), 1, + ACTIONS(12137), 1, anon_sym_DQUOTE, - ACTIONS(12175), 1, + ACTIONS(12139), 1, aux_sym_number_token1, - ACTIONS(12177), 1, + ACTIONS(12141), 1, aux_sym_number_token2, - ACTIONS(12179), 1, + ACTIONS(12143), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12181), 1, + ACTIONS(12145), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12183), 1, + ACTIONS(12147), 1, anon_sym_BQUOTE, - ACTIONS(12185), 1, + ACTIONS(12149), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3442), 1, + STATE(3366), 1, sym__c_unary_expression, - STATE(3443), 1, + STATE(3370), 1, sym__c_binary_expression, - STATE(3444), 1, + STATE(3371), 1, sym__c_postfix_expression, - STATE(6605), 1, - sym__c_expression, - STATE(6762), 1, + STATE(6729), 1, sym__c_variable_assignment, - ACTIONS(12165), 2, + STATE(6773), 1, + sym__c_expression, + ACTIONS(12129), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3441), 7, + STATE(3358), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -298653,14 +298969,13 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [267207] = 3, + [267237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12187), 3, + ACTIONS(12169), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12189), 21, + ACTIONS(12167), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298670,8 +298985,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -298681,14 +298998,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [267239] = 3, + [267269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4372), 2, + ACTIONS(12175), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 22, + ACTIONS(12177), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298698,9 +299015,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -298710,14 +299026,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [267271] = 3, + anon_sym_BQUOTE, + [267301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12121), 2, + ACTIONS(12002), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12123), 22, + ACTIONS(12004), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298727,10 +299044,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -298740,14 +299055,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [267303] = 3, + anon_sym_BQUOTE, + [267333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12191), 3, + ACTIONS(12181), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12193), 21, + ACTIONS(12179), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298757,8 +299072,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -298768,20 +299085,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [267335] = 6, + [267365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, - sym__concat, - STATE(5033), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4554), 2, + ACTIONS(4595), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 19, + ACTIONS(4593), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298792,6 +299102,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -298801,19 +299113,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [267373] = 6, + anon_sym_LT_LT_LT, + [267397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, - sym__concat, - STATE(5031), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4566), 2, + ACTIONS(5929), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 19, + ACTIONS(5927), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298823,7 +299130,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -298833,14 +299143,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [267411] = 3, + [267429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12195), 3, + ACTIONS(5929), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12197), 21, + ACTIONS(5927), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298850,8 +299159,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -298861,14 +299172,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [267443] = 3, + [267461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12113), 2, + ACTIONS(5175), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(12115), 22, + ACTIONS(5173), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298878,7 +299189,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -298891,14 +299201,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [267475] = 3, + [267493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12199), 3, + ACTIONS(1274), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12201), 21, + ACTIONS(1272), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298908,8 +299217,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -298919,20 +299229,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [267507] = 6, + sym__special_character, + [267525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, - sym__concat, - STATE(5033), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2074), 2, + ACTIONS(12067), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2072), 19, + ACTIONS(12069), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298943,6 +299247,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -298952,13 +299258,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [267545] = 3, + anon_sym_LT_LT_LT, + [267557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11842), 2, + ACTIONS(11777), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11844), 22, + ACTIONS(11779), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298981,14 +299288,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [267577] = 3, + [267589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12155), 3, + ACTIONS(12123), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12153), 21, + ACTIONS(12121), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299010,29 +299317,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [267609] = 5, + [267621] = 3, ACTIONS(3), 1, sym_comment, - STATE(4971), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12068), 2, + ACTIONS(12183), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12203), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12064), 19, + ACTIONS(12185), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -299041,14 +299345,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [267645] = 3, + anon_sym_BQUOTE, + [267653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11739), 3, + ACTIONS(12127), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11741), 21, + ACTIONS(12125), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299070,19 +299375,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [267677] = 6, + [267685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, - sym__concat, - STATE(5031), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5697), 2, + ACTIONS(12165), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5695), 19, + ACTIONS(12163), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299092,6 +299392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -299102,14 +299403,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [267715] = 3, + anon_sym_BQUOTE, + [267717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2074), 3, + ACTIONS(12002), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2072), 21, + ACTIONS(12004), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299119,8 +299420,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -299130,14 +299433,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [267747] = 3, + [267749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12107), 2, + ACTIONS(12067), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12105), 22, + ACTIONS(12069), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299160,14 +299462,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [267779] = 3, + [267781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12151), 3, + ACTIONS(11777), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12149), 21, + ACTIONS(11779), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299177,8 +299478,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -299188,51 +299491,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [267811] = 10, + [267813] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4411), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11562), 1, + ACTIONS(12169), 3, sym_file_descriptor, - ACTIONS(4380), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(12167), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4382), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4409), 2, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(11335), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4257), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(4455), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11333), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [267857] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [267845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12205), 3, + ACTIONS(12183), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12207), 21, + ACTIONS(12185), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299242,8 +299536,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -299253,15 +299549,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [267889] = 3, + [267877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12103), 3, + ACTIONS(12183), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12101), 21, + ACTIONS(12185), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299271,8 +299565,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -299282,14 +299578,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [267921] = 3, + [267909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 2, + ACTIONS(12169), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 22, + ACTIONS(12167), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299299,9 +299595,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -299311,14 +299606,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [267953] = 3, + anon_sym_BQUOTE, + [267941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2074), 2, + ACTIONS(12181), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2072), 22, + ACTIONS(12179), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299328,9 +299624,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -299340,15 +299635,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [267985] = 3, + anon_sym_BQUOTE, + [267973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12209), 3, + ACTIONS(12181), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12211), 21, + ACTIONS(12179), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299370,13 +299665,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [268017] = 3, + [268005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12215), 2, + ACTIONS(12187), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12213), 22, + ACTIONS(12189), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299386,10 +299682,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -299399,13 +299693,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [268049] = 3, + anon_sym_BQUOTE, + [268037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12003), 2, + ACTIONS(12193), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12001), 22, + ACTIONS(12191), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299415,6 +299710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -299427,64 +299723,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [268081] = 18, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12167), 1, - anon_sym_LPAREN, - ACTIONS(12169), 1, - aux_sym__c_word_token1, - ACTIONS(12171), 1, - anon_sym_DOLLAR, - ACTIONS(12173), 1, - anon_sym_DQUOTE, - ACTIONS(12175), 1, - aux_sym_number_token1, - ACTIONS(12177), 1, - aux_sym_number_token2, - ACTIONS(12179), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12181), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12183), 1, - anon_sym_BQUOTE, - ACTIONS(12185), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(3442), 1, - sym__c_unary_expression, - STATE(3443), 1, - sym__c_binary_expression, - STATE(3444), 1, - sym__c_postfix_expression, - STATE(6742), 1, - sym__c_expression, - STATE(6762), 1, - sym__c_variable_assignment, - ACTIONS(12165), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3441), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [268143] = 6, + [268069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, - sym__concat, - STATE(5031), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4469), 2, + ACTIONS(12181), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 19, + ACTIONS(12179), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299494,7 +299739,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -299504,14 +299752,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [268181] = 3, + [268101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12199), 3, + ACTIONS(11787), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12201), 21, + ACTIONS(11789), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299521,8 +299768,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -299532,20 +299780,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [268133] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12195), 1, + sym__special_character, + STATE(4990), 1, + aux_sym__literal_repeat1, + ACTIONS(5317), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5315), 19, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [268213] = 6, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [268169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, - sym__concat, - STATE(5033), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2096), 2, + ACTIONS(11951), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2094), 19, + ACTIONS(11953), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299556,6 +299829,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -299565,13 +299840,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [268251] = 3, + anon_sym_LT_LT_LT, + [268201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12219), 2, + ACTIONS(11929), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12217), 22, + ACTIONS(11931), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299594,13 +299870,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [268283] = 3, + [268233] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12199), 2, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(12197), 1, + sym__concat, + STATE(4287), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12201), 22, + ACTIONS(1266), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299610,10 +299892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -299623,58 +299902,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [268315] = 18, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12167), 1, - anon_sym_LPAREN, - ACTIONS(12169), 1, - aux_sym__c_word_token1, - ACTIONS(12171), 1, - anon_sym_DOLLAR, - ACTIONS(12173), 1, - anon_sym_DQUOTE, - ACTIONS(12175), 1, - aux_sym_number_token1, - ACTIONS(12177), 1, - aux_sym_number_token2, - ACTIONS(12179), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12181), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12183), 1, - anon_sym_BQUOTE, - ACTIONS(12185), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(3442), 1, - sym__c_unary_expression, - STATE(3443), 1, - sym__c_binary_expression, - STATE(3444), 1, - sym__c_postfix_expression, - STATE(6728), 1, - sym__c_expression, - STATE(6762), 1, - sym__c_variable_assignment, - ACTIONS(12165), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3441), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [268377] = 3, + [268271] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5375), 3, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(12199), 1, + sym__concat, + STATE(4287), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5373), 21, + ACTIONS(1286), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299685,8 +299925,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -299696,13 +299934,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [268409] = 3, + [268309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12199), 2, + ACTIONS(12187), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12201), 22, + ACTIONS(12189), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299725,13 +299963,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [268441] = 3, + [268341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12215), 2, + ACTIONS(11992), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12213), 22, + ACTIONS(11994), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299741,7 +299979,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -299754,34 +299991,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [268473] = 10, + anon_sym_LT_LT_LT, + [268373] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5142), 1, + ACTIONS(5335), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12221), 1, + ACTIONS(12201), 1, sym_file_descriptor, - ACTIONS(4253), 2, + ACTIONS(4310), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4692), 2, + ACTIONS(4705), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(5099), 2, + ACTIONS(5094), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11556), 2, + ACTIONS(11571), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(5140), 3, + ACTIONS(5333), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(4986), 3, + STATE(5016), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11554), 8, + ACTIONS(11569), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -299790,13 +300028,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [268519] = 3, + [268419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12225), 2, + ACTIONS(12203), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12223), 22, + ACTIONS(12205), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299806,10 +300045,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -299819,13 +300056,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [268551] = 3, + anon_sym_BQUOTE, + [268451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4372), 2, + ACTIONS(2169), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 22, + ACTIONS(2167), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299835,7 +300073,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -299848,14 +300085,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [268583] = 3, + anon_sym_LT_LT_LT, + [268483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12227), 3, + ACTIONS(12207), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12229), 21, + ACTIONS(12209), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299877,10 +300115,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [268615] = 3, + [268515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12209), 2, + ACTIONS(12213), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, ACTIONS(12211), 22, @@ -299906,87 +300144,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [268647] = 3, + [268547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12187), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12189), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [268679] = 18, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11256), 1, - anon_sym_DOLLAR, - ACTIONS(11262), 1, - aux_sym_number_token2, - ACTIONS(12233), 1, - anon_sym_LPAREN, - ACTIONS(12235), 1, - aux_sym__c_word_token1, - ACTIONS(12237), 1, - anon_sym_DQUOTE, - ACTIONS(12239), 1, - aux_sym_number_token1, - ACTIONS(12241), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12243), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12245), 1, - anon_sym_BQUOTE, - ACTIONS(12247), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(3113), 1, - sym__c_postfix_expression, - STATE(3116), 1, - sym__c_binary_expression, - STATE(3118), 1, - sym__c_unary_expression, - STATE(6493), 1, - sym__c_variable_assignment, - STATE(6531), 1, - sym__c_expression, - ACTIONS(12231), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3119), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [268741] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12225), 3, + ACTIONS(12215), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12223), 21, + ACTIONS(12217), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300008,13 +300173,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [268773] = 3, + [268579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12225), 2, + ACTIONS(12171), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12223), 22, + ACTIONS(12173), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300037,13 +300202,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [268805] = 3, + [268611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12251), 2, + ACTIONS(12101), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12249), 22, + ACTIONS(12103), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300066,14 +300231,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [268837] = 3, + [268643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12227), 3, + ACTIONS(12067), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12229), 21, + ACTIONS(12069), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300095,50 +300260,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [268869] = 10, + [268675] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4384), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11562), 1, + ACTIONS(12221), 2, sym_file_descriptor, - ACTIONS(4378), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(12219), 22, anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(4380), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4382), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11335), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(2719), 3, + anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - STATE(4455), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11333), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [268915] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [268707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12253), 3, + ACTIONS(11777), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12255), 21, + ACTIONS(11779), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300160,19 +300318,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [268947] = 6, + [268739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, - sym__concat, - STATE(5031), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5723), 2, + ACTIONS(12223), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5721), 19, + ACTIONS(12225), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300182,6 +300335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -300192,21 +300346,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [268985] = 5, + anon_sym_BQUOTE, + [268771] = 3, ACTIONS(3), 1, sym_comment, - STATE(5602), 1, - aux_sym_pipeline_repeat1, - ACTIONS(11745), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(11748), 2, + ACTIONS(2173), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11743), 19, + ACTIONS(2171), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -300215,6 +300366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -300223,13 +300375,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [269021] = 3, + anon_sym_LT_LT_LT, + [268803] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12131), 1, + anon_sym_LPAREN, + ACTIONS(12133), 1, + aux_sym__c_word_token1, + ACTIONS(12135), 1, + anon_sym_DOLLAR, + ACTIONS(12137), 1, + anon_sym_DQUOTE, + ACTIONS(12139), 1, + aux_sym_number_token1, + ACTIONS(12141), 1, + aux_sym_number_token2, + ACTIONS(12143), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12145), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12147), 1, + anon_sym_BQUOTE, + ACTIONS(12149), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3366), 1, + sym__c_unary_expression, + STATE(3370), 1, + sym__c_binary_expression, + STATE(3371), 1, + sym__c_postfix_expression, + STATE(6729), 1, + sym__c_variable_assignment, + STATE(6740), 1, + sym__c_expression, + ACTIONS(12129), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3358), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [268865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5932), 2, + ACTIONS(12213), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5930), 22, + ACTIONS(12211), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300239,10 +300437,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -300252,13 +300448,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [269053] = 3, + anon_sym_BQUOTE, + [268897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12259), 2, + ACTIONS(12113), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12257), 22, + ACTIONS(12115), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300281,13 +300478,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [269085] = 3, + [268929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5932), 2, + ACTIONS(12113), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5930), 22, + ACTIONS(12115), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300310,13 +300507,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [269117] = 3, + [268961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11782), 2, + ACTIONS(12203), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11780), 22, + ACTIONS(12205), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300326,6 +300523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -300338,44 +300536,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [269149] = 3, + [268993] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(12259), 2, - sym_file_descriptor, + ACTIONS(5103), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12257), 22, - anon_sym_SEMI, + ACTIONS(12201), 1, + sym_file_descriptor, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4705), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5094), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(11571), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5101), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5016), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11569), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [269181] = 3, + [269039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12225), 3, + ACTIONS(12227), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12223), 21, + ACTIONS(12229), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300397,13 +300601,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [269213] = 3, + [269071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12263), 2, + ACTIONS(12233), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12261), 22, + ACTIONS(12231), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300426,13 +300630,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [269245] = 3, + [269103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11733), 2, + ACTIONS(12237), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11735), 22, + ACTIONS(12235), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300442,6 +300646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -300454,79 +300659,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [269277] = 10, + [269135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5387), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12221), 1, - sym_file_descriptor, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5099), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(11556), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(5385), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4986), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11554), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [269323] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12265), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(12267), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [269355] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11739), 2, + ACTIONS(12241), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11741), 22, + ACTIONS(12239), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300536,6 +300675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -300548,15 +300688,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [269387] = 3, + [269167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11727), 3, + ACTIONS(11821), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11725), 21, + ACTIONS(11823), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300578,13 +300717,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [269419] = 3, + [269199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11727), 2, + ACTIONS(12227), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11725), 22, + ACTIONS(12229), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300594,10 +300734,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -300607,13 +300745,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [269451] = 3, + anon_sym_BQUOTE, + [269231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12157), 2, + ACTIONS(11821), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12159), 22, + ACTIONS(11823), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300636,13 +300775,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [269483] = 3, + [269263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12157), 2, + ACTIONS(11873), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12159), 22, + ACTIONS(11875), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300652,7 +300791,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -300665,14 +300803,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [269515] = 3, + anon_sym_LT_LT_LT, + [269295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11729), 3, + ACTIONS(12243), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11731), 21, + ACTIONS(12245), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300694,13 +300833,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [269547] = 3, + [269327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11729), 2, + ACTIONS(12249), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11731), 22, + ACTIONS(12247), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300723,43 +300862,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [269579] = 3, + [269359] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(12269), 3, - sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(11450), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12271), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(11573), 1, + anon_sym_LT_LT_LT, + ACTIONS(12251), 1, + sym_file_descriptor, + ACTIONS(11571), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4998), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11569), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(11448), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [269611] = 3, + [269401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12219), 3, + ACTIONS(12117), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12217), 21, + ACTIONS(12119), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300769,8 +300912,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -300780,14 +300925,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [269643] = 3, + [269433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11956), 2, + ACTIONS(11821), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11958), 22, + ACTIONS(11823), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300810,13 +300954,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [269675] = 3, + [269465] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11264), 1, + anon_sym_DOLLAR, + ACTIONS(11270), 1, + aux_sym_number_token2, + ACTIONS(12255), 1, + anon_sym_LPAREN, + ACTIONS(12257), 1, + aux_sym__c_word_token1, + ACTIONS(12259), 1, + anon_sym_DQUOTE, + ACTIONS(12261), 1, + aux_sym_number_token1, + ACTIONS(12263), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12265), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12267), 1, + anon_sym_BQUOTE, + ACTIONS(12269), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3024), 1, + sym__c_postfix_expression, + STATE(3087), 1, + sym__c_unary_expression, + STATE(3118), 1, + sym__c_binary_expression, + STATE(6503), 1, + sym__c_expression, + STATE(6521), 1, + sym__c_variable_assignment, + ACTIONS(12253), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2990), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [269527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12191), 2, + ACTIONS(12117), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12193), 22, + ACTIONS(12119), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300839,13 +301027,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [269707] = 3, + [269559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2096), 2, + ACTIONS(12273), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2094), 22, + ACTIONS(12271), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300855,6 +301043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -300867,15 +301056,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [269739] = 3, + [269591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11790), 3, + ACTIONS(12273), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11792), 21, + ACTIONS(12271), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300885,8 +301072,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -300896,14 +301085,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [269771] = 3, + [269623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12195), 2, + ACTIONS(11951), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12197), 22, + ACTIONS(11953), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300926,43 +301114,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [269803] = 18, + [269655] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4527), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11634), 1, + sym_file_descriptor, + ACTIONS(4467), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4469), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4525), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(11301), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4314), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(4509), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11299), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [269701] = 18, ACTIONS(71), 1, sym_comment, - ACTIONS(12167), 1, + ACTIONS(11264), 1, + anon_sym_DOLLAR, + ACTIONS(11270), 1, + aux_sym_number_token2, + ACTIONS(12255), 1, anon_sym_LPAREN, - ACTIONS(12169), 1, + ACTIONS(12257), 1, aux_sym__c_word_token1, - ACTIONS(12171), 1, - anon_sym_DOLLAR, - ACTIONS(12173), 1, + ACTIONS(12259), 1, anon_sym_DQUOTE, - ACTIONS(12175), 1, + ACTIONS(12261), 1, aux_sym_number_token1, - ACTIONS(12177), 1, - aux_sym_number_token2, - ACTIONS(12179), 1, + ACTIONS(12263), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12181), 1, + ACTIONS(12265), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12183), 1, + ACTIONS(12267), 1, anon_sym_BQUOTE, - ACTIONS(12185), 1, + ACTIONS(12269), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3442), 1, + STATE(3024), 1, + sym__c_postfix_expression, + STATE(3087), 1, sym__c_unary_expression, - STATE(3443), 1, + STATE(3118), 1, sym__c_binary_expression, - STATE(3444), 1, - sym__c_postfix_expression, - STATE(6671), 1, - sym__c_expression, - STATE(6762), 1, + STATE(6521), 1, sym__c_variable_assignment, - ACTIONS(12165), 2, + STATE(6534), 1, + sym__c_expression, + ACTIONS(12253), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3441), 7, + STATE(2990), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -300970,14 +301194,13 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [269865] = 3, + [269763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12163), 3, + ACTIONS(12215), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12161), 21, + ACTIONS(12217), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300987,8 +301210,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -300998,14 +301223,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [269897] = 3, + [269795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12269), 2, + ACTIONS(12223), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12271), 22, + ACTIONS(12225), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301028,14 +301252,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [269929] = 3, + [269827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12119), 3, + ACTIONS(12161), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12117), 21, + ACTIONS(12159), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301057,29 +301281,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [269961] = 5, + [269859] = 3, ACTIONS(3), 1, sym_comment, - STATE(4971), 1, - aux_sym_pipeline_repeat1, - ACTIONS(11748), 2, + ACTIONS(12105), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12273), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(11743), 19, + ACTIONS(12107), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -301088,58 +301310,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [269997] = 18, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11808), 1, - anon_sym_LPAREN, - ACTIONS(11810), 1, - aux_sym__c_word_token1, - ACTIONS(11812), 1, - anon_sym_DOLLAR, - ACTIONS(11814), 1, - anon_sym_DQUOTE, - ACTIONS(11816), 1, - aux_sym_number_token1, - ACTIONS(11818), 1, - aux_sym_number_token2, - ACTIONS(11820), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11822), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11824), 1, - anon_sym_BQUOTE, - ACTIONS(11826), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(3285), 1, - sym__c_postfix_expression, - STATE(3286), 1, - sym__c_binary_expression, - STATE(3290), 1, - sym__c_unary_expression, - STATE(6741), 1, - sym__c_expression, - STATE(6768), 1, - sym__c_variable_assignment, - ACTIONS(11806), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3292), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [270059] = 3, + [269891] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12119), 3, + ACTIONS(12249), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12117), 21, + ACTIONS(12247), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301161,88 +301339,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [270091] = 18, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11808), 1, - anon_sym_LPAREN, - ACTIONS(11810), 1, - aux_sym__c_word_token1, - ACTIONS(11812), 1, - anon_sym_DOLLAR, - ACTIONS(11814), 1, - anon_sym_DQUOTE, - ACTIONS(11816), 1, - aux_sym_number_token1, - ACTIONS(11818), 1, - aux_sym_number_token2, - ACTIONS(11820), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11822), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11824), 1, - anon_sym_BQUOTE, - ACTIONS(11826), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(3285), 1, - sym__c_postfix_expression, - STATE(3286), 1, - sym__c_binary_expression, - STATE(3290), 1, - sym__c_unary_expression, - STATE(6738), 1, - sym__c_expression, - STATE(6768), 1, - sym__c_variable_assignment, - ACTIONS(11806), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3292), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [270153] = 5, + [269923] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(12276), 1, - sym__special_character, - STATE(5021), 1, - aux_sym__literal_repeat1, - ACTIONS(5395), 3, - sym_test_operator, - sym__brace_start, + ACTIONS(5096), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5393), 19, - anon_sym_LPAREN_LPAREN, + ACTIONS(12201), 1, + sym_file_descriptor, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4705), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5094), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11571), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5092), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [270189] = 3, + STATE(5016), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11569), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [269969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11739), 2, + ACTIONS(12277), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11741), 22, + ACTIONS(12275), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301265,13 +301404,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [270221] = 3, + [270001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12265), 2, + ACTIONS(12277), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12267), 22, + ACTIONS(12275), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301294,13 +301433,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [270253] = 3, + [270033] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12157), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(12155), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [270065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11790), 2, + ACTIONS(12175), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11792), 22, + ACTIONS(12177), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301323,14 +301491,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [270285] = 3, + [270097] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12107), 3, + ACTIONS(12221), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12105), 21, + ACTIONS(12219), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301352,13 +301520,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [270317] = 3, + [270129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12129), 2, + ACTIONS(11921), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12131), 22, + ACTIONS(11923), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301381,13 +301549,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [270349] = 3, + [270161] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(12125), 2, + ACTIONS(5111), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12201), 1, + sym_file_descriptor, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4705), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5094), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11571), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5109), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5016), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11569), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [270207] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11795), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12127), 22, + ACTIONS(11797), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301397,7 +301601,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -301410,13 +301613,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [270381] = 3, + anon_sym_LT_LT_LT, + [270239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12036), 2, + ACTIONS(11885), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12034), 22, + ACTIONS(11887), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301439,14 +301643,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [270413] = 3, + [270271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12107), 3, + ACTIONS(12113), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12105), 21, + ACTIONS(12115), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301468,13 +301672,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [270445] = 3, + [270303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11830), 2, + ACTIONS(12279), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11828), 22, + ACTIONS(12281), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301484,10 +301689,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -301497,13 +301700,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [270477] = 3, + anon_sym_BQUOTE, + [270335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12109), 2, + ACTIONS(12277), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12111), 22, + ACTIONS(12275), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301513,10 +301718,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -301526,48 +301729,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [270509] = 8, + anon_sym_BQUOTE, + [270367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11455), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12221), 1, + ACTIONS(12153), 3, sym_file_descriptor, - ACTIONS(4692), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(12151), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11556), 2, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4998), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11453), 7, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [270399] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12207), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12209), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - ACTIONS(11554), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [270551] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [270431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12139), 3, + ACTIONS(12233), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12137), 21, + ACTIONS(12231), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301589,14 +301817,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [270583] = 3, + [270463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12143), 3, + ACTIONS(2169), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12141), 21, + ACTIONS(2167), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301618,14 +301846,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [270615] = 3, + [270495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12147), 3, + ACTIONS(12237), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12145), 21, + ACTIONS(12235), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301647,14 +301875,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [270647] = 3, + [270527] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11749), 1, + anon_sym_LPAREN, + ACTIONS(11751), 1, + aux_sym__c_word_token1, + ACTIONS(11753), 1, + anon_sym_DOLLAR, + ACTIONS(11755), 1, + anon_sym_DQUOTE, + ACTIONS(11757), 1, + aux_sym_number_token1, + ACTIONS(11759), 1, + aux_sym_number_token2, + ACTIONS(11761), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11763), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11765), 1, + anon_sym_BQUOTE, + ACTIONS(11767), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3243), 1, + sym__c_unary_expression, + STATE(3246), 1, + sym__c_binary_expression, + STATE(3247), 1, + sym__c_postfix_expression, + STATE(6783), 1, + sym__c_variable_assignment, + STATE(6789), 1, + sym__c_expression, + ACTIONS(11747), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3241), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [270589] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12283), 1, + sym__special_character, + STATE(4990), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1360), 19, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [270625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5772), 3, + ACTIONS(2173), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5770), 21, + ACTIONS(2171), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301664,6 +301966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -301676,27 +301979,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [270679] = 3, + [270657] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12131), 1, + anon_sym_LPAREN, + ACTIONS(12133), 1, + aux_sym__c_word_token1, + ACTIONS(12135), 1, + anon_sym_DOLLAR, + ACTIONS(12137), 1, + anon_sym_DQUOTE, + ACTIONS(12139), 1, + aux_sym_number_token1, + ACTIONS(12141), 1, + aux_sym_number_token2, + ACTIONS(12143), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12145), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12147), 1, + anon_sym_BQUOTE, + ACTIONS(12149), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3366), 1, + sym__c_unary_expression, + STATE(3370), 1, + sym__c_binary_expression, + STATE(3371), 1, + sym__c_postfix_expression, + STATE(6666), 1, + sym__c_expression, + STATE(6729), 1, + sym__c_variable_assignment, + ACTIONS(12129), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3358), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [270719] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11749), 1, + anon_sym_LPAREN, + ACTIONS(11751), 1, + aux_sym__c_word_token1, + ACTIONS(11753), 1, + anon_sym_DOLLAR, + ACTIONS(11755), 1, + anon_sym_DQUOTE, + ACTIONS(11757), 1, + aux_sym_number_token1, + ACTIONS(11759), 1, + aux_sym_number_token2, + ACTIONS(11761), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11763), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11765), 1, + anon_sym_BQUOTE, + ACTIONS(11767), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3243), 1, + sym__c_unary_expression, + STATE(3246), 1, + sym__c_binary_expression, + STATE(3247), 1, + sym__c_postfix_expression, + STATE(6745), 1, + sym__c_expression, + STATE(6783), 1, + sym__c_variable_assignment, + ACTIONS(11747), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3241), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [270781] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12131), 1, + anon_sym_LPAREN, + ACTIONS(12133), 1, + aux_sym__c_word_token1, + ACTIONS(12135), 1, + anon_sym_DOLLAR, + ACTIONS(12137), 1, + anon_sym_DQUOTE, + ACTIONS(12139), 1, + aux_sym_number_token1, + ACTIONS(12141), 1, + aux_sym_number_token2, + ACTIONS(12143), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12145), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12147), 1, + anon_sym_BQUOTE, + ACTIONS(12149), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3366), 1, + sym__c_unary_expression, + STATE(3370), 1, + sym__c_binary_expression, + STATE(3371), 1, + sym__c_postfix_expression, + STATE(6714), 1, + sym__c_expression, + STATE(6729), 1, + sym__c_variable_assignment, + ACTIONS(12129), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3358), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [270843] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12205), 2, + STATE(5031), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11899), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12207), 22, + ACTIONS(12286), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(11895), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -301705,19 +302142,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [270711] = 6, + [270879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, - sym__concat, - STATE(5033), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4372), 2, + ACTIONS(12288), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 19, + ACTIONS(12290), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301727,6 +302159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -301737,50 +302170,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [270749] = 10, + anon_sym_BQUOTE, + [270911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5101), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12221), 1, + ACTIONS(4513), 3, sym_file_descriptor, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5099), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4511), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11556), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(5097), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4986), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11554), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [270795] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [270943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11956), 3, + ACTIONS(12241), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11958), 21, + ACTIONS(12239), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301802,54 +302229,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [270827] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11535), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11558), 1, - anon_sym_LT_LT_LT, - ACTIONS(12278), 1, - sym_file_descriptor, - ACTIONS(11556), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4877), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11554), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11533), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [270869] = 5, + [270975] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4253), 2, + STATE(5573), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11841), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4272), 2, + ACTIONS(11844), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4986), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4270), 17, + ACTIONS(11839), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301859,6 +302250,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -301867,17 +302260,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [270905] = 4, + [271011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4272), 2, + ACTIONS(11921), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4986), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4270), 19, + ACTIONS(11923), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301887,6 +302277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -301897,160 +302288,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [270939] = 8, + anon_sym_BQUOTE, + [271043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11431), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12286), 1, + ACTIONS(12193), 3, sym_file_descriptor, - ACTIONS(11920), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(12283), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4998), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11420), 7, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(12191), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - ACTIONS(12280), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [270981] = 18, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11256), 1, - anon_sym_DOLLAR, - ACTIONS(11262), 1, - aux_sym_number_token2, - ACTIONS(12233), 1, - anon_sym_LPAREN, - ACTIONS(12235), 1, - aux_sym__c_word_token1, - ACTIONS(12237), 1, - anon_sym_DQUOTE, - ACTIONS(12239), 1, - aux_sym_number_token1, - ACTIONS(12241), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12243), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12245), 1, - anon_sym_BQUOTE, - ACTIONS(12247), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(3113), 1, - sym__c_postfix_expression, - STATE(3116), 1, - sym__c_binary_expression, - STATE(3118), 1, - sym__c_unary_expression, - STATE(6481), 1, - sym__c_expression, - STATE(6493), 1, - sym__c_variable_assignment, - ACTIONS(12231), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3119), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [271043] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11414), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11558), 1, - anon_sym_LT_LT_LT, - ACTIONS(12278), 1, - sym_file_descriptor, - ACTIONS(11556), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4868), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11554), 8, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11412), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [271085] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11506), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11558), 1, - anon_sym_LT_LT_LT, - ACTIONS(12278), 1, - sym_file_descriptor, - ACTIONS(11556), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5017), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11554), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11504), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [271127] = 3, + anon_sym_BQUOTE, + [271075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12259), 3, + ACTIONS(12277), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12257), 21, + ACTIONS(12275), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302072,13 +302347,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [271159] = 3, + [271107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12227), 2, + ACTIONS(12279), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12229), 22, + ACTIONS(12281), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302101,13 +302376,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [271191] = 3, + [271139] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2074), 2, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(11606), 1, + sym__concat, + STATE(4923), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5589), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2072), 22, + ACTIONS(5587), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302117,10 +302398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -302130,14 +302408,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [271223] = 3, + [271177] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12215), 3, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(11606), 1, + sym__concat, + STATE(4924), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2169), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12213), 21, + ACTIONS(2167), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302147,7 +302430,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -302158,14 +302440,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [271255] = 3, + [271215] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12227), 2, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(11606), 1, + sym__concat, + STATE(4923), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4428), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12229), 22, + ACTIONS(4426), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302175,10 +302462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -302188,49 +302472,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [271287] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5383), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12221), 1, - sym_file_descriptor, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5099), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(11556), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(5381), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4986), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11554), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [271333] = 3, + [271253] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11931), 2, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(11606), 1, + sym__concat, + STATE(4924), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4513), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11929), 22, + ACTIONS(4511), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302240,10 +302494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -302253,14 +302504,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [271365] = 3, + [271291] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12215), 3, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(11606), 1, + sym__concat, + STATE(4923), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5595), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12213), 21, + ACTIONS(5593), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302270,7 +302526,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -302281,15 +302536,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [271397] = 3, + [271329] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12036), 3, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(11606), 1, + sym__concat, + STATE(4924), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2173), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12034), 21, + ACTIONS(2171), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302299,7 +302558,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -302310,15 +302568,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [271429] = 3, + [271367] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12259), 3, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(11606), 1, + sym__concat, + STATE(4923), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4579), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12257), 21, + ACTIONS(4577), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302328,7 +302590,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -302339,14 +302600,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [271461] = 3, + [271405] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11956), 2, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(11606), 1, + sym__concat, + STATE(4924), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4595), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11958), 22, + ACTIONS(4593), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302356,10 +302622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -302369,13 +302632,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [271493] = 3, + [271443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12253), 2, + ACTIONS(11929), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12255), 22, + ACTIONS(11931), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302385,10 +302649,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -302398,14 +302660,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [271525] = 3, + anon_sym_BQUOTE, + [271475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5932), 3, + ACTIONS(12227), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5930), 21, + ACTIONS(12229), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302415,8 +302677,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -302426,58 +302690,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [271557] = 18, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12167), 1, - anon_sym_LPAREN, - ACTIONS(12169), 1, - aux_sym__c_word_token1, - ACTIONS(12171), 1, - anon_sym_DOLLAR, - ACTIONS(12173), 1, - anon_sym_DQUOTE, - ACTIONS(12175), 1, - aux_sym_number_token1, - ACTIONS(12177), 1, - aux_sym_number_token2, - ACTIONS(12179), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12181), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12183), 1, - anon_sym_BQUOTE, - ACTIONS(12185), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(3442), 1, - sym__c_unary_expression, - STATE(3443), 1, - sym__c_binary_expression, - STATE(3444), 1, - sym__c_postfix_expression, - STATE(6551), 1, - sym__c_expression, - STATE(6762), 1, - sym__c_variable_assignment, - ACTIONS(12165), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3441), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [271619] = 3, + [271507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12036), 2, + ACTIONS(12227), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12034), 22, + ACTIONS(12229), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302500,14 +302719,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [271651] = 3, + [271539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12263), 3, + ACTIONS(11951), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12261), 21, + ACTIONS(11953), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302529,42 +302748,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [271683] = 3, + [271571] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11727), 2, - sym_file_descriptor, + ACTIONS(11548), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11725), 22, + ACTIONS(12201), 1, + sym_file_descriptor, + ACTIONS(4705), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11571), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5027), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11546), 7, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + ACTIONS(11569), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [271715] = 3, + [271613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11729), 2, + ACTIONS(12183), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11731), 22, + ACTIONS(12185), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302574,9 +302799,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -302586,14 +302810,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [271747] = 3, + anon_sym_BQUOTE, + [271645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11790), 2, + ACTIONS(12243), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11792), 22, + ACTIONS(12245), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302603,6 +302827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -302615,46 +302840,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [271779] = 5, + [271677] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(12289), 1, - sym__special_character, - STATE(5021), 1, - aux_sym__literal_repeat1, - ACTIONS(1364), 3, - sym_test_operator, - sym__brace_start, + ACTIONS(11466), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 19, - anon_sym_LPAREN_LPAREN, + ACTIONS(11573), 1, + anon_sym_LT_LT_LT, + ACTIONS(12251), 1, + sym_file_descriptor, + ACTIONS(11571), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4968), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11569), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11464), 9, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [271815] = 3, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [271719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12251), 3, + ACTIONS(12273), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12249), 21, + ACTIONS(12271), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302676,26 +302903,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [271847] = 3, + [271751] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2096), 3, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4327), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2094), 21, + STATE(5016), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4325), 17, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -302704,14 +302934,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [271879] = 3, + [271787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11750), 2, + ACTIONS(11921), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11752), 22, + ACTIONS(11923), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302734,43 +302963,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [271911] = 3, + [271819] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(11830), 2, - sym_file_descriptor, + ACTIONS(4471), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11828), 22, + ACTIONS(11634), 1, + sym_file_descriptor, + ACTIONS(4465), 2, anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(4467), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4469), 2, anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_LT_LT_DASH, + ACTIONS(11301), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(2755), 3, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + STATE(4509), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11299), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [271943] = 3, + [271865] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5932), 3, + ACTIONS(4327), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5930), 21, + STATE(5016), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4325), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302780,7 +303019,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -302791,15 +303029,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [271975] = 3, + [271899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12292), 3, + ACTIONS(12273), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12294), 21, + ACTIONS(12271), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302821,13 +303058,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [272007] = 3, + [271931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12298), 2, + ACTIONS(11943), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12296), 22, + ACTIONS(11945), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302837,7 +303074,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -302850,43 +303086,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272039] = 3, + anon_sym_LT_LT_LT, + [271963] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4372), 3, - sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(11409), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 21, + ACTIONS(12298), 1, + sym_file_descriptor, + ACTIONS(11904), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(12295), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5027), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11398), 7, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + ACTIONS(12292), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [272071] = 3, + [272005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12298), 3, + ACTIONS(5929), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12296), 21, + ACTIONS(5927), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302908,19 +303150,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [272103] = 6, + [272037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(12300), 1, - sym__concat, - STATE(4268), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 2, + ACTIONS(5929), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 19, + ACTIONS(5927), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302930,6 +303167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -302940,13 +303178,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272141] = 3, + anon_sym_BQUOTE, + [272069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12292), 2, + ACTIONS(11787), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12294), 22, + ACTIONS(11789), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302956,10 +303196,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -302969,30 +303207,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272173] = 6, + anon_sym_BQUOTE, + [272101] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(12302), 1, - sym__concat, - STATE(4268), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 2, + STATE(5031), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11844), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 19, + ACTIONS(12301), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(11839), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -303001,44 +303239,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272211] = 6, + [272137] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11568), 1, - aux_sym_concatenation_token1, - ACTIONS(11583), 1, - sym__concat, - STATE(5057), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 3, - sym_test_operator, - sym__brace_start, + ACTIONS(11416), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [272248] = 3, + ACTIONS(11573), 1, + anon_sym_LT_LT_LT, + ACTIONS(12251), 1, + sym_file_descriptor, + ACTIONS(11571), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4976), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11569), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11414), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [272179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12147), 2, + ACTIONS(12288), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12145), 21, + ACTIONS(12290), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -303048,6 +303289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -303060,28 +303302,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272279] = 5, + [272211] = 3, ACTIONS(3), 1, sym_comment, - STATE(5082), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12068), 2, + ACTIONS(12101), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12304), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12064), 18, + ACTIONS(12103), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -303090,13 +303330,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272314] = 3, + [272242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12155), 2, + ACTIONS(12279), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12153), 21, + ACTIONS(12281), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -303118,43 +303358,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272345] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5038), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12306), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1251), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1253), 14, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [272380] = 3, + [272273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12151), 2, + ACTIONS(11951), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12149), 21, + ACTIONS(11953), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -303176,33 +303386,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272411] = 10, + [272304] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2719), 1, + ACTIONS(4314), 1, anon_sym_BQUOTE, - ACTIONS(5357), 1, + ACTIONS(5079), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11856), 1, + ACTIONS(11867), 1, sym_file_descriptor, - ACTIONS(4692), 2, + ACTIONS(4705), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(5355), 2, + ACTIONS(5077), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11487), 2, + ACTIONS(11470), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(5353), 3, + ACTIONS(5075), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(4697), 3, + STATE(4670), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11485), 8, + ACTIONS(11468), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -303211,43 +303421,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [272456] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5065), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12309), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5393), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(5395), 14, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [272491] = 3, + [272349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11739), 2, + ACTIONS(12193), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11741), 21, + ACTIONS(12191), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -303269,13 +303449,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272522] = 3, + [272380] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11622), 1, + aux_sym_concatenation_token1, + ACTIONS(11636), 1, + sym__concat, + STATE(5082), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12306), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(12304), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [272417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12133), 2, + ACTIONS(12111), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12135), 21, + ACTIONS(12109), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -303297,50 +303508,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272553] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 3, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 20, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [272584] = 5, + [272448] = 6, ACTIONS(71), 1, sym_comment, - STATE(5059), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12309), 2, - sym__concat, + ACTIONS(12308), 1, aux_sym_concatenation_token1, - ACTIONS(5389), 6, + ACTIONS(12310), 1, + sym__concat, + STATE(5087), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1266), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5391), 14, + ACTIONS(1268), 14, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -303355,13 +303539,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [272619] = 3, + [272485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5932), 2, + ACTIONS(12221), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5930), 21, + ACTIONS(12219), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -303383,13 +303567,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272650] = 3, + [272516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12143), 2, + ACTIONS(12123), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12141), 21, + ACTIONS(12121), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -303411,44 +303595,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272681] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11568), 1, - aux_sym_concatenation_token1, - ACTIONS(11583), 1, - sym__concat, - STATE(5057), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12313), 3, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(12311), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [272718] = 3, + [272547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11931), 2, + ACTIONS(12215), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11929), 21, + ACTIONS(12217), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -303470,13 +303623,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272749] = 3, + [272578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11956), 2, + ACTIONS(12127), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11958), 21, + ACTIONS(12125), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -303498,48 +303651,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272780] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2719), 1, - anon_sym_RPAREN, - ACTIONS(4384), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11993), 1, - sym_file_descriptor, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4809), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(11542), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4378), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4746), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11540), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [272825] = 3, + [272609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12259), 2, + ACTIONS(12165), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12257), 21, + ACTIONS(12163), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -303561,13 +303679,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272856] = 3, + [272640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11790), 2, + ACTIONS(12169), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11792), 21, + ACTIONS(12167), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -303589,96 +303707,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272887] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4257), 1, - anon_sym_RPAREN, - ACTIONS(4411), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11993), 1, - sym_file_descriptor, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4809), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(11542), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4409), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4746), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11540), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [272932] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11568), 1, - aux_sym_concatenation_token1, - ACTIONS(12315), 1, - sym__concat, - STATE(4520), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 3, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [272969] = 7, + [272671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12317), 1, - anon_sym_LT_LT_LT, - STATE(4912), 1, - sym_herestring_redirect, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4272), 2, + ACTIONS(12169), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(5366), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4270), 14, + ACTIONS(12167), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -303687,59 +303735,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273008] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11568), 1, - aux_sym_concatenation_token1, - ACTIONS(12319), 1, - sym__concat, - STATE(4520), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 3, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [273045] = 6, + [272702] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12317), 1, - anon_sym_LT_LT_LT, - STATE(4912), 1, - sym_herestring_redirect, - ACTIONS(4348), 2, + ACTIONS(12223), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(5366), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4253), 16, + ACTIONS(12225), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -303749,14 +303763,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273082] = 6, + [272733] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(12309), 1, + ACTIONS(12308), 1, aux_sym_concatenation_token1, - ACTIONS(12321), 1, + ACTIONS(12312), 1, sym__concat, - STATE(5038), 1, + STATE(5087), 1, aux_sym_concatenation_repeat1, ACTIONS(1286), 6, anon_sym_DOLLAR, @@ -303780,13 +303794,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [273119] = 3, + [272770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12139), 2, + ACTIONS(12181), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12137), 21, + ACTIONS(12179), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -303808,13 +303822,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273150] = 3, + [272801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12215), 2, + ACTIONS(12181), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12213), 21, + ACTIONS(12179), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -303836,44 +303850,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273181] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11568), 1, - aux_sym_concatenation_token1, - ACTIONS(11583), 1, - sym__concat, - STATE(5055), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12325), 3, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(12323), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [273218] = 3, + [272832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12215), 2, + ACTIONS(12187), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12213), 21, + ACTIONS(12189), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -303895,74 +303878,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273249] = 5, - ACTIONS(71), 1, + [272863] = 3, + ACTIONS(3), 1, sym_comment, - STATE(5175), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12327), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1261), 8, + ACTIONS(12213), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12211), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - sym__special_character, - ACTIONS(1263), 12, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [273284] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12309), 1, - aux_sym_concatenation_token1, - ACTIONS(12329), 1, - sym__concat, - STATE(5038), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1265), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1267), 14, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [273321] = 3, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [272894] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12209), 2, + ACTIONS(12117), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12211), 21, + ACTIONS(12119), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -303984,13 +303934,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273352] = 3, + [272925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12107), 2, + ACTIONS(12117), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12105), 21, + ACTIONS(12119), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -304012,13 +303962,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273383] = 3, + [272956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12107), 2, + ACTIONS(12273), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12105), 21, + ACTIONS(12271), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -304040,13 +303990,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273414] = 3, + [272987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12103), 2, + ACTIONS(12273), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12101), 21, + ACTIONS(12271), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -304068,48 +304018,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273445] = 10, + [273018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - anon_sym_BQUOTE, - ACTIONS(5379), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11856), 1, + ACTIONS(12105), 2, sym_file_descriptor, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5355), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(12107), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11487), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(5377), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4697), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11485), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [273490] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [273049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5932), 2, + ACTIONS(12277), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5930), 21, + ACTIONS(12275), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -304131,13 +304074,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273521] = 3, + [273080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12119), 2, + ACTIONS(12277), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12117), 21, + ACTIONS(12275), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -304159,13 +304102,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273552] = 3, + [273111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12121), 2, + ACTIONS(12227), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12123), 21, + ACTIONS(12229), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -304187,13 +304130,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273583] = 3, + [273142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12036), 2, + ACTIONS(12227), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12034), 21, + ACTIONS(12229), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -304215,7 +304158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273614] = 3, + [273173] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(12113), 2, @@ -304243,13 +304186,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273645] = 3, + [273204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12129), 2, + ACTIONS(12203), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12131), 21, + ACTIONS(12205), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -304271,13 +304214,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273676] = 3, + [273235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12119), 2, + ACTIONS(11787), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12117), 21, + ACTIONS(11789), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -304299,13 +304242,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273707] = 3, + [273266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12125), 2, + ACTIONS(12249), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12127), 21, + ACTIONS(12247), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -304327,33 +304270,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273738] = 10, + [273297] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2755), 1, + anon_sym_BQUOTE, + ACTIONS(5107), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11867), 1, + sym_file_descriptor, + ACTIONS(4705), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5077), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11470), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5105), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4670), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11468), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [273342] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4686), 1, + ACTIONS(2757), 1, ts_builtin_sym_end, - ACTIONS(4694), 1, + ACTIONS(4707), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11834), 1, + ACTIONS(11829), 1, sym_file_descriptor, - ACTIONS(4690), 2, + ACTIONS(4703), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4692), 2, + ACTIONS(4705), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(11481), 2, + ACTIONS(11524), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4688), 3, + ACTIONS(4701), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(4650), 3, + STATE(4634), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11479), 8, + ACTIONS(11522), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -304362,13 +304340,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [273783] = 3, + [273387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12163), 2, + ACTIONS(12288), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12161), 21, + ACTIONS(12290), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -304390,58 +304368,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273814] = 5, + [273418] = 10, ACTIONS(3), 1, sym_comment, - STATE(5081), 1, - aux_sym_pipeline_repeat1, - ACTIONS(11748), 2, - sym_file_descriptor, + ACTIONS(4314), 1, + anon_sym_RPAREN, + ACTIONS(4527), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12331), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(11743), 18, - anon_sym_SEMI, + ACTIONS(11831), 1, + sym_file_descriptor, + ACTIONS(4705), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5012), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(11542), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4525), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4669), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11540), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [273849] = 5, + [273463] = 3, ACTIONS(3), 1, sym_comment, - STATE(5082), 1, - aux_sym_pipeline_repeat1, - ACTIONS(11748), 2, + ACTIONS(5929), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12334), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(11743), 18, + ACTIONS(5927), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -304450,13 +304431,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273884] = 3, + [273494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12219), 2, + ACTIONS(5929), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12217), 21, + ACTIONS(5927), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -304478,13 +304459,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273915] = 3, + [273525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12109), 2, + ACTIONS(12067), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12111), 21, + ACTIONS(12069), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -304506,26 +304487,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273946] = 3, + [273556] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12227), 2, + STATE(5078), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12314), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(11899), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12229), 21, + ACTIONS(11895), 17, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -304534,26 +304517,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273977] = 3, + [273591] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1274), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1272), 20, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [273622] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4554), 2, + STATE(5079), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11899), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 21, + ACTIONS(12316), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(11895), 18, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -304562,26 +304575,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274008] = 3, + [273657] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12199), 2, + STATE(5078), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12318), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(11844), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12201), 21, + ACTIONS(11839), 17, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -304590,26 +304605,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274039] = 3, + [273692] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12227), 2, + STATE(5079), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11844), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12229), 21, + ACTIONS(12321), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(11839), 18, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -304618,13 +304635,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274070] = 3, + [273727] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(12253), 2, + ACTIONS(5838), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12328), 1, + anon_sym_LT_LT_LT, + ACTIONS(12330), 1, + sym_file_descriptor, + STATE(4954), 1, + sym_herestring_redirect, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4705), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5836), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12326), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5297), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12324), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [273774] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12175), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12255), 21, + ACTIONS(12177), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -304646,13 +304699,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274101] = 3, + [273805] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11622), 1, + aux_sym_concatenation_token1, + ACTIONS(12332), 1, + sym__concat, + STATE(4479), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1266), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [273842] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11622), 1, + aux_sym_concatenation_token1, + ACTIONS(12334), 1, + sym__concat, + STATE(4479), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1286), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [273879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12191), 2, + ACTIONS(2169), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12193), 21, + ACTIONS(2167), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -304674,26 +304789,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274132] = 3, + [273910] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11622), 1, + aux_sym_concatenation_token1, + ACTIONS(11636), 1, + sym__concat, + STATE(5082), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1272), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [273947] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11727), 2, + STATE(5086), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11844), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11725), 21, + ACTIONS(12336), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(11839), 18, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -304702,13 +304849,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274163] = 3, + anon_sym_BQUOTE, + [273982] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5087), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12339), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1276), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1278), 14, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [274017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11729), 2, + ACTIONS(12153), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11731), 21, + ACTIONS(12151), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -304730,13 +304908,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274194] = 3, + [274048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12269), 2, + ACTIONS(12157), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12271), 21, + ACTIONS(12155), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -304758,13 +304936,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274225] = 3, + [274079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11830), 2, + ACTIONS(12161), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11828), 21, + ACTIONS(12159), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -304786,28 +304964,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274256] = 5, + [274110] = 6, ACTIONS(3), 1, sym_comment, - STATE(5115), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12337), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12068), 3, + ACTIONS(11454), 1, + aux_sym_concatenation_token1, + ACTIONS(11456), 1, + sym__concat, + STATE(5151), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12064), 17, - anon_sym_SEMI, + ACTIONS(1272), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -304816,25 +304993,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274291] = 3, + anon_sym_LT_LT_LT, + sym__special_character, + [274147] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2096), 2, + ACTIONS(11458), 1, + aux_sym_concatenation_token1, + ACTIONS(11460), 1, + sym__concat, + STATE(5156), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(2094), 21, - anon_sym_SEMI, + ACTIONS(1272), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -304844,43 +305025,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274322] = 5, - ACTIONS(71), 1, + sym__special_character, + [274184] = 11, + ACTIONS(3), 1, sym_comment, - STATE(5065), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12309), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1261), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1263), 14, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(5843), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12328), 1, + anon_sym_LT_LT_LT, + ACTIONS(12330), 1, + sym_file_descriptor, + STATE(4954), 1, + sym_herestring_redirect, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4705), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5836), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12326), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5297), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12324), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [274231] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2755), 1, anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [274357] = 3, + ACTIONS(4471), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11831), 1, + sym_file_descriptor, + ACTIONS(4705), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5012), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11542), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4465), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4669), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11540), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [274276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12199), 2, + ACTIONS(2173), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12201), 21, + ACTIONS(2171), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -304902,26 +305125,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274388] = 3, + [274307] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12225), 2, + STATE(5086), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11899), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12223), 21, + ACTIONS(12342), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(11895), 18, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -304930,13 +305154,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274419] = 3, + anon_sym_BQUOTE, + [274342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12225), 2, + ACTIONS(12113), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12223), 21, + ACTIONS(12115), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -304958,13 +305183,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274450] = 3, + [274373] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(12187), 2, + ACTIONS(12328), 1, + anon_sym_LT_LT_LT, + STATE(4954), 1, + sym_herestring_redirect, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4327), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12189), 21, + STATE(5297), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4325), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [274412] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12233), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12231), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -304986,27 +305243,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274481] = 5, + [274443] = 6, ACTIONS(3), 1, sym_comment, - STATE(5081), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12068), 2, + ACTIONS(12328), 1, + anon_sym_LT_LT_LT, + STATE(4954), 1, + sym_herestring_redirect, + ACTIONS(4323), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12339), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12064), 18, - anon_sym_SEMI, + STATE(5297), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4310), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -305015,14 +305274,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [274516] = 3, + [274480] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12251), 2, + ACTIONS(11821), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12249), 21, + ACTIONS(11823), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -305044,13 +305302,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274547] = 3, + [274511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12195), 2, + ACTIONS(11921), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12197), 21, + ACTIONS(11923), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -305072,13 +305330,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274578] = 3, + [274542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12259), 2, + ACTIONS(12243), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12257), 21, + ACTIONS(12245), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -305100,13 +305358,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274609] = 3, + [274573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4372), 2, + ACTIONS(12237), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 21, + ACTIONS(12235), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -305128,13 +305386,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274640] = 3, + [274604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12292), 2, + ACTIONS(11929), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12294), 21, + ACTIONS(11931), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -305156,33 +305414,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274671] = 10, + [274635] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2721), 1, + ACTIONS(4714), 1, ts_builtin_sym_end, - ACTIONS(5051), 1, + ACTIONS(4718), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11834), 1, + ACTIONS(11829), 1, sym_file_descriptor, - ACTIONS(4690), 2, + ACTIONS(4703), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4692), 2, + ACTIONS(4705), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(11481), 2, + ACTIONS(11524), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(5049), 3, + ACTIONS(4716), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(4650), 3, + STATE(4634), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11479), 8, + ACTIONS(11522), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -305191,26 +305449,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [274716] = 6, + [274680] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, - aux_sym_concatenation_token1, - ACTIONS(11514), 1, - sym__concat, - STATE(5207), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 2, + ACTIONS(4513), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 18, + ACTIONS(4511), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -305220,29 +305477,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + [274711] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5041), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12308), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5315), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(5317), 14, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym__special_character, - [274753] = 6, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [274746] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11500), 1, + ACTIONS(11622), 1, aux_sym_concatenation_token1, - ACTIONS(11502), 1, + ACTIONS(11636), 1, sym__concat, - STATE(5209), 1, + STATE(5083), 1, aux_sym_concatenation_repeat1, - ACTIONS(1263), 3, + ACTIONS(12346), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(12344), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [274783] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11777), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 17, + ACTIONS(11779), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -305252,14 +305566,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [274790] = 3, + [274814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12265), 2, + ACTIONS(12241), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12267), 21, + ACTIONS(12239), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -305281,13 +305594,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274821] = 3, + [274845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12157), 2, + ACTIONS(12183), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12159), 21, + ACTIONS(12185), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -305309,13 +305622,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274852] = 3, + [274876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12263), 2, + ACTIONS(12183), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12261), 21, + ACTIONS(12185), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -305337,13 +305650,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274883] = 3, + [274907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2074), 2, + ACTIONS(12002), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2072), 21, + ACTIONS(12004), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -305365,28 +305678,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274914] = 5, + [274938] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5041), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12308), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1272), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1274), 14, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [274973] = 3, ACTIONS(3), 1, sym_comment, - STATE(5115), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12341), 2, + ACTIONS(12171), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12173), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [275004] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5226), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12348), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1272), 8, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + sym__special_character, + ACTIONS(1274), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, anon_sym_PIPE_AMP, - ACTIONS(11748), 3, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [275039] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12207), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11743), 17, + ACTIONS(12209), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -305395,13 +305794,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274949] = 3, + [275070] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5050), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12308), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5319), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(5321), 14, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [275105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12205), 2, + ACTIONS(4595), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12207), 21, + ACTIONS(4593), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -305423,126 +305852,459 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274980] = 11, + [275136] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5944), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12317), 1, - anon_sym_LT_LT_LT, - ACTIONS(12348), 1, + ACTIONS(11454), 1, + aux_sym_concatenation_token1, + ACTIONS(11456), 1, + sym__concat, + STATE(5151), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5589), 2, sym_file_descriptor, - STATE(4912), 1, - sym_herestring_redirect, - ACTIONS(4253), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(5587), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PIPE_AMP, - ACTIONS(4692), 2, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [275172] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12354), 1, + anon_sym_esac, + ACTIONS(12350), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12352), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [275204] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1316), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1318), 16, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [275234] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5246), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12348), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2167), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(2169), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - ACTIONS(5940), 2, + anon_sym_LT_LT_LT, + [275268] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11264), 1, + anon_sym_DOLLAR, + ACTIONS(11270), 1, + aux_sym_number_token2, + ACTIONS(12255), 1, + anon_sym_LPAREN, + ACTIONS(12259), 1, + anon_sym_DQUOTE, + ACTIONS(12261), 1, + aux_sym_number_token1, + ACTIONS(12263), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12265), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12267), 1, + anon_sym_BQUOTE, + ACTIONS(12269), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12356), 1, + aux_sym__c_word_token1, + STATE(3024), 1, + sym__c_postfix_expression, + STATE(3087), 1, + sym__c_unary_expression, + STATE(3118), 1, + sym__c_binary_expression, + ACTIONS(12253), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3072), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [275324] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1276), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1278), 16, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [275354] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12362), 1, + anon_sym_esac, + ACTIONS(12358), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12360), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [275386] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12368), 1, + anon_sym_esac, + ACTIONS(12364), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12366), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [275418] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11264), 1, + anon_sym_DOLLAR, + ACTIONS(11270), 1, + aux_sym_number_token2, + ACTIONS(12255), 1, + anon_sym_LPAREN, + ACTIONS(12259), 1, + anon_sym_DQUOTE, + ACTIONS(12261), 1, + aux_sym_number_token1, + ACTIONS(12263), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12265), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12267), 1, + anon_sym_BQUOTE, + ACTIONS(12269), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12370), 1, + aux_sym__c_word_token1, + STATE(3024), 1, + sym__c_postfix_expression, + STATE(3087), 1, + sym__c_unary_expression, + STATE(3118), 1, + sym__c_binary_expression, + ACTIONS(12253), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3100), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [275474] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5130), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12372), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1276), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1278), 12, + sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12346), 2, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5366), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12344), 8, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [275508] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12379), 1, + anon_sym_esac, + ACTIONS(12375), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12377), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [275540] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5135), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11899), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12381), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(11895), 17, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [275027] = 11, - ACTIONS(3), 1, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [275574] = 13, + ACTIONS(71), 1, sym_comment, - ACTIONS(5942), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12317), 1, - anon_sym_LT_LT_LT, - ACTIONS(12348), 1, - sym_file_descriptor, - STATE(4912), 1, - sym_herestring_redirect, - ACTIONS(4253), 2, + ACTIONS(4310), 1, anon_sym_PIPE, + ACTIONS(4323), 1, anon_sym_PIPE_AMP, - ACTIONS(4692), 2, + ACTIONS(6012), 1, anon_sym_LT_LT, + ACTIONS(6014), 1, anon_sym_LT_LT_DASH, - ACTIONS(5940), 2, + ACTIONS(12389), 1, + anon_sym_LT_LT_LT, + ACTIONS(12391), 1, + sym_file_descriptor, + STATE(5580), 1, + sym_herestring_redirect, + ACTIONS(6010), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12346), 2, + ACTIONS(12387), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5366), 3, + ACTIONS(12385), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5369), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(12344), 8, + ACTIONS(12383), 5, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [275074] = 3, + [275624] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(12298), 2, - sym_file_descriptor, + ACTIONS(11355), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12296), 21, - anon_sym_SEMI, + ACTIONS(12397), 1, + anon_sym_LT_LT_LT, + ACTIONS(12399), 1, + sym_file_descriptor, + ACTIONS(12395), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5185), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11349), 6, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(12393), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [275105] = 3, + [275664] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12157), 2, + STATE(5135), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11844), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12159), 21, + ACTIONS(12401), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(11839), 17, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -305551,19 +306313,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [275136] = 4, + [275698] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12408), 1, + anon_sym_esac, + ACTIONS(12404), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12406), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [275730] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12414), 1, + anon_sym_esac, + ACTIONS(12410), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12412), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [275762] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12354), 1, + ACTIONS(12408), 1, anon_sym_esac, - ACTIONS(12350), 6, + ACTIONS(12404), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12352), 15, + ACTIONS(12406), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -305579,75 +306397,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275168] = 9, - ACTIONS(3), 1, + [275794] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(5101), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12221), 1, - sym_file_descriptor, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5099), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(11556), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(5097), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4986), 3, + ACTIONS(12416), 1, + anon_sym_LT_LT_LT, + STATE(5622), 1, + sym_herestring_redirect, + STATE(5473), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11554), 8, + ACTIONS(4310), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(4323), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - [275210] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [275830] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 6, + ACTIONS(12131), 1, + anon_sym_LPAREN, + ACTIONS(12135), 1, anon_sym_DOLLAR, + ACTIONS(12137), 1, + anon_sym_DQUOTE, + ACTIONS(12139), 1, aux_sym_number_token1, + ACTIONS(12141), 1, aux_sym_number_token2, + ACTIONS(12143), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12145), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(12147), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1294), 16, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, + ACTIONS(12149), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12418), 1, + aux_sym__c_word_token1, + STATE(3366), 1, + sym__c_unary_expression, + STATE(3370), 1, + sym__c_binary_expression, + STATE(3371), 1, + sym__c_postfix_expression, + ACTIONS(12129), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3272), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [275886] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12131), 1, + anon_sym_LPAREN, + ACTIONS(12135), 1, + anon_sym_DOLLAR, + ACTIONS(12137), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(12139), 1, + aux_sym_number_token1, + ACTIONS(12141), 1, + aux_sym_number_token2, + ACTIONS(12143), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(12145), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12147), 1, + anon_sym_BQUOTE, + ACTIONS(12149), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [275240] = 5, + ACTIONS(12420), 1, + aux_sym__c_word_token1, + STATE(3366), 1, + sym__c_unary_expression, + STATE(3370), 1, + sym__c_binary_expression, + STATE(3371), 1, + sym__c_postfix_expression, + ACTIONS(12129), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3287), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [275942] = 5, ACTIONS(71), 1, sym_comment, - STATE(5175), 1, + STATE(5353), 1, aux_sym_concatenation_repeat1, - ACTIONS(12327), 2, + ACTIONS(12422), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4467), 7, + ACTIONS(1272), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305655,32 +306523,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4469), 12, + ACTIONS(1274), 12, sym_file_descriptor, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [275274] = 4, + sym__special_character, + [275976] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11749), 1, + anon_sym_LPAREN, + ACTIONS(11753), 1, + anon_sym_DOLLAR, + ACTIONS(11755), 1, + anon_sym_DQUOTE, + ACTIONS(11757), 1, + aux_sym_number_token1, + ACTIONS(11759), 1, + aux_sym_number_token2, + ACTIONS(11761), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11763), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11765), 1, + anon_sym_BQUOTE, + ACTIONS(11767), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12424), 1, + aux_sym__c_word_token1, + STATE(3243), 1, + sym__c_unary_expression, + STATE(3246), 1, + sym__c_binary_expression, + STATE(3247), 1, + sym__c_postfix_expression, + ACTIONS(11747), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3337), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [276032] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12360), 1, + ACTIONS(12430), 1, anon_sym_esac, - ACTIONS(12356), 6, + ACTIONS(12426), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12358), 15, + ACTIONS(12428), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -305696,43 +306604,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275306] = 4, + [276064] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12366), 1, - anon_sym_esac, - ACTIONS(12362), 6, - anon_sym_LPAREN, + ACTIONS(1300), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(12364), 15, + ACTIONS(1302), 16, + sym__concat, sym_test_operator, - sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275338] = 5, + [276094] = 5, ACTIONS(71), 1, sym_comment, - STATE(5175), 1, + STATE(5246), 1, aux_sym_concatenation_repeat1, - ACTIONS(12327), 2, + ACTIONS(12348), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4564), 7, + ACTIONS(4593), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305740,7 +306647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4566), 12, + ACTIONS(4595), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -305753,109 +306660,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [275372] = 6, - ACTIONS(3), 1, + [276128] = 8, + ACTIONS(71), 1, sym_comment, - ACTIONS(11512), 1, - aux_sym_concatenation_token1, - ACTIONS(11514), 1, - sym__concat, - STATE(5208), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4554), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 17, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(4310), 1, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(4323), 1, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + ACTIONS(12416), 1, anon_sym_LT_LT_LT, - [275408] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11512), 1, - aux_sym_concatenation_token1, - ACTIONS(11514), 1, - sym__concat, - STATE(5207), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4566), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 17, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, + STATE(5622), 1, + sym_herestring_redirect, + STATE(5473), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4325), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [275444] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11512), 1, - aux_sym_concatenation_token1, - ACTIONS(11514), 1, - sym__concat, - STATE(5208), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4372), 2, + ACTIONS(4327), 9, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [275480] = 6, + [276168] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12436), 1, + anon_sym_esac, + ACTIONS(12432), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12434), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [276200] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, + ACTIONS(11604), 1, aux_sym_concatenation_token1, - ACTIONS(11514), 1, + ACTIONS(11606), 1, sym__concat, - STATE(5207), 1, + STATE(5322), 1, aux_sym_concatenation_repeat1, - ACTIONS(4469), 2, + ACTIONS(1274), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 17, + ACTIONS(1272), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -305872,20 +306749,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [275516] = 4, + sym__special_character, + [276236] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12372), 1, + ACTIONS(12442), 1, anon_sym_esac, - ACTIONS(12368), 6, + ACTIONS(12438), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12370), 15, + ACTIONS(12440), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -305901,19 +306778,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275548] = 6, + [276268] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, + ACTIONS(11454), 1, aux_sym_concatenation_token1, - ACTIONS(11514), 1, + ACTIONS(12444), 1, sym__concat, - STATE(5208), 1, + STATE(4240), 1, aux_sym_concatenation_repeat1, - ACTIONS(2074), 2, + ACTIONS(1268), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2072), 17, + ACTIONS(1266), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -305931,49 +306808,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [275584] = 6, + [276304] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, - aux_sym_concatenation_token1, - ACTIONS(11514), 1, - sym__concat, - STATE(5207), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5697), 2, - sym_file_descriptor, + ACTIONS(5335), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5695), 17, + ACTIONS(12201), 1, + sym_file_descriptor, + ACTIONS(4705), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5094), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(11571), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5333), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5016), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11569), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [275620] = 6, + [276346] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, + ACTIONS(11454), 1, aux_sym_concatenation_token1, - ACTIONS(11514), 1, + ACTIONS(12446), 1, sym__concat, - STATE(5208), 1, + STATE(4240), 1, aux_sym_concatenation_repeat1, - ACTIONS(2096), 2, + ACTIONS(1288), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2094), 17, + ACTIONS(1286), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -305991,19 +306871,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [275656] = 6, + [276382] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11264), 1, + anon_sym_DOLLAR, + ACTIONS(11270), 1, + aux_sym_number_token2, + ACTIONS(12255), 1, + anon_sym_LPAREN, + ACTIONS(12259), 1, + anon_sym_DQUOTE, + ACTIONS(12261), 1, + aux_sym_number_token1, + ACTIONS(12263), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12265), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12267), 1, + anon_sym_BQUOTE, + ACTIONS(12269), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12448), 1, + aux_sym__c_word_token1, + STATE(3024), 1, + sym__c_postfix_expression, + STATE(3087), 1, + sym__c_unary_expression, + STATE(3118), 1, + sym__c_binary_expression, + ACTIONS(12253), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3085), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [276438] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12454), 1, + anon_sym_esac, + ACTIONS(12450), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12452), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [276470] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, + ACTIONS(11458), 1, aux_sym_concatenation_token1, - ACTIONS(11514), 1, + ACTIONS(12456), 1, sym__concat, - STATE(5207), 1, + STATE(4245), 1, aux_sym_concatenation_repeat1, - ACTIONS(5723), 2, + ACTIONS(1268), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5721), 17, + ACTIONS(1266), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -306020,21 +306969,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [275692] = 6, + [276506] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11500), 1, + ACTIONS(11458), 1, aux_sym_concatenation_token1, - ACTIONS(11502), 1, + ACTIONS(12458), 1, sym__concat, - STATE(5210), 1, + STATE(4245), 1, aux_sym_concatenation_repeat1, - ACTIONS(5375), 3, + ACTIONS(1288), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5373), 16, + ACTIONS(1286), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -306051,73 +306999,458 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [275728] = 6, - ACTIONS(3), 1, + [276542] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(11500), 1, + ACTIONS(1296), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1298), 16, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - ACTIONS(11502), 1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [276572] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11264), 1, + anon_sym_DOLLAR, + ACTIONS(11270), 1, + aux_sym_number_token2, + ACTIONS(12255), 1, + anon_sym_LPAREN, + ACTIONS(12259), 1, + anon_sym_DQUOTE, + ACTIONS(12261), 1, + aux_sym_number_token1, + ACTIONS(12263), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12265), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12267), 1, + anon_sym_BQUOTE, + ACTIONS(12269), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12460), 1, + aux_sym__c_word_token1, + STATE(3024), 1, + sym__c_postfix_expression, + STATE(3087), 1, + sym__c_unary_expression, + STATE(3118), 1, + sym__c_binary_expression, + ACTIONS(12253), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3093), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [276628] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11264), 1, + anon_sym_DOLLAR, + ACTIONS(11270), 1, + aux_sym_number_token2, + ACTIONS(12255), 1, + anon_sym_LPAREN, + ACTIONS(12259), 1, + anon_sym_DQUOTE, + ACTIONS(12261), 1, + aux_sym_number_token1, + ACTIONS(12263), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12265), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12267), 1, + anon_sym_BQUOTE, + ACTIONS(12269), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12462), 1, + aux_sym__c_word_token1, + STATE(3024), 1, + sym__c_postfix_expression, + STATE(3087), 1, + sym__c_unary_expression, + STATE(3118), 1, + sym__c_binary_expression, + ACTIONS(12253), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3094), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [276684] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11749), 1, + anon_sym_LPAREN, + ACTIONS(11753), 1, + anon_sym_DOLLAR, + ACTIONS(11755), 1, + anon_sym_DQUOTE, + ACTIONS(11757), 1, + aux_sym_number_token1, + ACTIONS(11759), 1, + aux_sym_number_token2, + ACTIONS(11761), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11763), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11765), 1, + anon_sym_BQUOTE, + ACTIONS(11767), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12464), 1, + aux_sym__c_word_token1, + STATE(3243), 1, + sym__c_unary_expression, + STATE(3246), 1, + sym__c_binary_expression, + STATE(3247), 1, + sym__c_postfix_expression, + ACTIONS(11747), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3338), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [276740] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11749), 1, + anon_sym_LPAREN, + ACTIONS(11753), 1, + anon_sym_DOLLAR, + ACTIONS(11755), 1, + anon_sym_DQUOTE, + ACTIONS(11757), 1, + aux_sym_number_token1, + ACTIONS(11759), 1, + aux_sym_number_token2, + ACTIONS(11761), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11763), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11765), 1, + anon_sym_BQUOTE, + ACTIONS(11767), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12466), 1, + aux_sym__c_word_token1, + STATE(3243), 1, + sym__c_unary_expression, + STATE(3246), 1, + sym__c_binary_expression, + STATE(3247), 1, + sym__c_postfix_expression, + ACTIONS(11747), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3339), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [276796] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11749), 1, + anon_sym_LPAREN, + ACTIONS(11753), 1, + anon_sym_DOLLAR, + ACTIONS(11755), 1, + anon_sym_DQUOTE, + ACTIONS(11757), 1, + aux_sym_number_token1, + ACTIONS(11759), 1, + aux_sym_number_token2, + ACTIONS(11761), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11763), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11765), 1, + anon_sym_BQUOTE, + ACTIONS(11767), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12468), 1, + aux_sym__c_word_token1, + STATE(3243), 1, + sym__c_unary_expression, + STATE(3246), 1, + sym__c_binary_expression, + STATE(3247), 1, + sym__c_postfix_expression, + ACTIONS(11747), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3340), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [276852] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1312), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1314), 16, sym__concat, - STATE(5209), 1, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [276882] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5246), 1, aux_sym_concatenation_repeat1, - ACTIONS(5069), 3, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(5067), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12348), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4511), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(4513), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [275764] = 4, + anon_sym_LT_LT_LT, + [276916] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12366), 1, - anon_sym_esac, - ACTIONS(12362), 6, + ACTIONS(11749), 1, anon_sym_LPAREN, + ACTIONS(11753), 1, anon_sym_DOLLAR, + ACTIONS(11755), 1, + anon_sym_DQUOTE, + ACTIONS(11757), 1, aux_sym_number_token1, + ACTIONS(11759), 1, aux_sym_number_token2, + ACTIONS(11761), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11763), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12364), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, + ACTIONS(11765), 1, + anon_sym_BQUOTE, + ACTIONS(11767), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12470), 1, + aux_sym__c_word_token1, + STATE(3243), 1, + sym__c_unary_expression, + STATE(3246), 1, + sym__c_binary_expression, + STATE(3247), 1, + sym__c_postfix_expression, + ACTIONS(11747), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3297), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [276972] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11749), 1, + anon_sym_LPAREN, + ACTIONS(11753), 1, + anon_sym_DOLLAR, + ACTIONS(11755), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(11757), 1, + aux_sym_number_token1, + ACTIONS(11759), 1, + aux_sym_number_token2, + ACTIONS(11761), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(11763), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11765), 1, anon_sym_BQUOTE, + ACTIONS(11767), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [275796] = 5, + ACTIONS(12472), 1, + aux_sym__c_word_token1, + STATE(3243), 1, + sym__c_unary_expression, + STATE(3246), 1, + sym__c_binary_expression, + STATE(3247), 1, + sym__c_postfix_expression, + ACTIONS(11747), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3341), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [277028] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11749), 1, + anon_sym_LPAREN, + ACTIONS(11753), 1, + anon_sym_DOLLAR, + ACTIONS(11755), 1, + anon_sym_DQUOTE, + ACTIONS(11757), 1, + aux_sym_number_token1, + ACTIONS(11759), 1, + aux_sym_number_token2, + ACTIONS(11761), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11763), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11765), 1, + anon_sym_BQUOTE, + ACTIONS(11767), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12474), 1, + aux_sym__c_word_token1, + STATE(3243), 1, + sym__c_unary_expression, + STATE(3246), 1, + sym__c_binary_expression, + STATE(3247), 1, + sym__c_postfix_expression, + ACTIONS(11747), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3343), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [277084] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11749), 1, + anon_sym_LPAREN, + ACTIONS(11753), 1, + anon_sym_DOLLAR, + ACTIONS(11755), 1, + anon_sym_DQUOTE, + ACTIONS(11757), 1, + aux_sym_number_token1, + ACTIONS(11759), 1, + aux_sym_number_token2, + ACTIONS(11761), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11763), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11765), 1, + anon_sym_BQUOTE, + ACTIONS(11767), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12476), 1, + aux_sym__c_word_token1, + STATE(3243), 1, + sym__c_unary_expression, + STATE(3246), 1, + sym__c_binary_expression, + STATE(3247), 1, + sym__c_postfix_expression, + ACTIONS(11747), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3345), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [277140] = 5, ACTIONS(71), 1, sym_comment, - STATE(5180), 1, + STATE(5226), 1, aux_sym_concatenation_repeat1, - ACTIONS(12327), 2, + ACTIONS(12348), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4552), 7, + ACTIONS(4577), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306125,7 +307458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4554), 12, + ACTIONS(4579), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -306138,67 +307471,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [275830] = 4, + [277174] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(12354), 1, - anon_sym_esac, - ACTIONS(12350), 6, - anon_sym_LPAREN, + ACTIONS(12487), 1, + anon_sym_LT_LT_LT, + ACTIONS(12490), 1, + sym_file_descriptor, + ACTIONS(11365), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(12484), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12481), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5171), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11373), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(12478), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [277216] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1320), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(12352), 15, + ACTIONS(1322), 16, + sym__concat, sym_test_operator, - sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275862] = 16, + [277246] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(11808), 1, + ACTIONS(11749), 1, anon_sym_LPAREN, - ACTIONS(11812), 1, + ACTIONS(11753), 1, anon_sym_DOLLAR, - ACTIONS(11814), 1, + ACTIONS(11755), 1, anon_sym_DQUOTE, - ACTIONS(11816), 1, + ACTIONS(11757), 1, aux_sym_number_token1, - ACTIONS(11818), 1, + ACTIONS(11759), 1, aux_sym_number_token2, - ACTIONS(11820), 1, + ACTIONS(11761), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(11822), 1, + ACTIONS(11763), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11824), 1, + ACTIONS(11765), 1, anon_sym_BQUOTE, - ACTIONS(11826), 1, + ACTIONS(11767), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12374), 1, + ACTIONS(12493), 1, aux_sym__c_word_token1, - STATE(3285), 1, + STATE(3243), 1, + sym__c_unary_expression, + STATE(3246), 1, + sym__c_binary_expression, + STATE(3247), 1, sym__c_postfix_expression, - STATE(3286), 1, + ACTIONS(11747), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3346), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [277302] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11749), 1, + anon_sym_LPAREN, + ACTIONS(11753), 1, + anon_sym_DOLLAR, + ACTIONS(11755), 1, + anon_sym_DQUOTE, + ACTIONS(11757), 1, + aux_sym_number_token1, + ACTIONS(11759), 1, + aux_sym_number_token2, + ACTIONS(11761), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11763), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11765), 1, + anon_sym_BQUOTE, + ACTIONS(11767), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12495), 1, + aux_sym__c_word_token1, + STATE(3243), 1, + sym__c_unary_expression, + STATE(3246), 1, sym__c_binary_expression, - STATE(3290), 1, + STATE(3247), 1, + sym__c_postfix_expression, + ACTIONS(11747), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3347), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [277358] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11749), 1, + anon_sym_LPAREN, + ACTIONS(11753), 1, + anon_sym_DOLLAR, + ACTIONS(11755), 1, + anon_sym_DQUOTE, + ACTIONS(11757), 1, + aux_sym_number_token1, + ACTIONS(11759), 1, + aux_sym_number_token2, + ACTIONS(11761), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11763), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11765), 1, + anon_sym_BQUOTE, + ACTIONS(11767), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12497), 1, + aux_sym__c_word_token1, + STATE(3243), 1, sym__c_unary_expression, - ACTIONS(11806), 2, + STATE(3246), 1, + sym__c_binary_expression, + STATE(3247), 1, + sym__c_postfix_expression, + ACTIONS(11747), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3276), 7, + STATE(3348), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -306206,103 +307651,373 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [275918] = 4, + [277414] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12380), 1, - anon_sym_esac, - ACTIONS(12376), 6, + ACTIONS(11749), 1, anon_sym_LPAREN, + ACTIONS(11753), 1, + anon_sym_DOLLAR, + ACTIONS(11755), 1, + anon_sym_DQUOTE, + ACTIONS(11757), 1, + aux_sym_number_token1, + ACTIONS(11759), 1, + aux_sym_number_token2, + ACTIONS(11761), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11763), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11765), 1, + anon_sym_BQUOTE, + ACTIONS(11767), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12499), 1, + aux_sym__c_word_token1, + STATE(3243), 1, + sym__c_unary_expression, + STATE(3246), 1, + sym__c_binary_expression, + STATE(3247), 1, + sym__c_postfix_expression, + ACTIONS(11747), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3349), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [277470] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1324), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(12378), 15, + ACTIONS(1326), 16, + sym__concat, sym_test_operator, - sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275950] = 4, + [277500] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12380), 1, - anon_sym_esac, - ACTIONS(12376), 6, - anon_sym_LPAREN, + ACTIONS(1328), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(12378), 15, + ACTIONS(1330), 16, + sym__concat, sym_test_operator, - sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275982] = 4, + [277530] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12372), 1, - anon_sym_esac, - ACTIONS(12368), 6, + ACTIONS(11749), 1, anon_sym_LPAREN, + ACTIONS(11753), 1, anon_sym_DOLLAR, + ACTIONS(11755), 1, + anon_sym_DQUOTE, + ACTIONS(11757), 1, aux_sym_number_token1, + ACTIONS(11759), 1, aux_sym_number_token2, + ACTIONS(11761), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11763), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12370), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, + ACTIONS(11765), 1, + anon_sym_BQUOTE, + ACTIONS(11767), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12501), 1, + aux_sym__c_word_token1, + STATE(3243), 1, + sym__c_unary_expression, + STATE(3246), 1, + sym__c_binary_expression, + STATE(3247), 1, + sym__c_postfix_expression, + ACTIONS(11747), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3350), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [277586] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11264), 1, + anon_sym_DOLLAR, + ACTIONS(11270), 1, + aux_sym_number_token2, + ACTIONS(12255), 1, + anon_sym_LPAREN, + ACTIONS(12259), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(12261), 1, + aux_sym_number_token1, + ACTIONS(12263), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12265), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12267), 1, + anon_sym_BQUOTE, + ACTIONS(12269), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12503), 1, + aux_sym__c_word_token1, + STATE(3024), 1, + sym__c_postfix_expression, + STATE(3087), 1, + sym__c_unary_expression, + STATE(3118), 1, + sym__c_binary_expression, + ACTIONS(12253), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3095), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [277642] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11264), 1, + anon_sym_DOLLAR, + ACTIONS(11270), 1, + aux_sym_number_token2, + ACTIONS(12255), 1, + anon_sym_LPAREN, + ACTIONS(12259), 1, + anon_sym_DQUOTE, + ACTIONS(12261), 1, + aux_sym_number_token1, + ACTIONS(12263), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12265), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12267), 1, + anon_sym_BQUOTE, + ACTIONS(12269), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12505), 1, + aux_sym__c_word_token1, + STATE(3024), 1, + sym__c_postfix_expression, + STATE(3087), 1, + sym__c_unary_expression, + STATE(3118), 1, + sym__c_binary_expression, + ACTIONS(12253), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3099), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [277698] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5226), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12348), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5593), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(5595), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [277732] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12131), 1, + anon_sym_LPAREN, + ACTIONS(12135), 1, + anon_sym_DOLLAR, + ACTIONS(12137), 1, + anon_sym_DQUOTE, + ACTIONS(12139), 1, + aux_sym_number_token1, + ACTIONS(12141), 1, + aux_sym_number_token2, + ACTIONS(12143), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12145), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12147), 1, + anon_sym_BQUOTE, + ACTIONS(12149), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12507), 1, + aux_sym__c_word_token1, + STATE(3366), 1, + sym__c_unary_expression, + STATE(3370), 1, + sym__c_binary_expression, + STATE(3371), 1, + sym__c_postfix_expression, + ACTIONS(12129), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3195), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [277788] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7790), 1, + anon_sym_DQUOTE, + ACTIONS(7798), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7810), 1, + sym_variable_name, + ACTIONS(12511), 1, + anon_sym_LPAREN, + ACTIONS(12513), 1, + anon_sym_DOLLAR, + ACTIONS(12515), 1, + anon_sym_RBRACE3, + ACTIONS(12517), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12519), 1, anon_sym_BQUOTE, + ACTIONS(12521), 1, anon_sym_DOLLAR_BQUOTE, + STATE(6719), 1, + sym_process_substitution, + STATE(6935), 1, + sym__concatenation_in_expansion, + ACTIONS(7214), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276014] = 4, + ACTIONS(12509), 4, + sym__expansion_word, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(6485), 5, + sym_string, + sym_array, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [277842] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11373), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12529), 1, + anon_sym_LT_LT_LT, + ACTIONS(12532), 1, + sym_file_descriptor, + ACTIONS(12526), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5185), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11365), 6, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(12523), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [277882] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12386), 1, + ACTIONS(12368), 1, anon_sym_esac, - ACTIONS(12382), 6, + ACTIONS(12364), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12384), 15, + ACTIONS(12366), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -306318,77 +308033,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276046] = 6, - ACTIONS(3), 1, + [277914] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(12388), 1, - sym_variable_name, - STATE(6746), 1, - sym_subscript, - ACTIONS(11290), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(5147), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11288), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(5226), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12348), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4426), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [276082] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12391), 1, - sym_variable_name, - STATE(6746), 1, - sym_subscript, - ACTIONS(11329), 2, + ACTIONS(4428), 12, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(5147), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11327), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [276118] = 3, + anon_sym_LT_LT_LT, + [277948] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11264), 1, + anon_sym_DOLLAR, + ACTIONS(11270), 1, + aux_sym_number_token2, + ACTIONS(12255), 1, + anon_sym_LPAREN, + ACTIONS(12259), 1, + anon_sym_DQUOTE, + ACTIONS(12261), 1, + aux_sym_number_token1, + ACTIONS(12263), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12265), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12267), 1, + anon_sym_BQUOTE, + ACTIONS(12269), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12535), 1, + aux_sym__c_word_token1, + STATE(3024), 1, + sym__c_postfix_expression, + STATE(3087), 1, + sym__c_unary_expression, + STATE(3118), 1, + sym__c_binary_expression, + ACTIONS(12253), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3106), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [278004] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11264), 1, + anon_sym_DOLLAR, + ACTIONS(11270), 1, + aux_sym_number_token2, + ACTIONS(12255), 1, + anon_sym_LPAREN, + ACTIONS(12259), 1, + anon_sym_DQUOTE, + ACTIONS(12261), 1, + aux_sym_number_token1, + ACTIONS(12263), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12265), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12267), 1, + anon_sym_BQUOTE, + ACTIONS(12269), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12537), 1, + aux_sym__c_word_token1, + STATE(3024), 1, + sym__c_postfix_expression, + STATE(3087), 1, + sym__c_unary_expression, + STATE(3118), 1, + sym__c_binary_expression, + ACTIONS(12253), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3107), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [278060] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1316), 6, + ACTIONS(1356), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1318), 16, + ACTIONS(1358), 16, sym__concat, sym_test_operator, sym__brace_start, @@ -306405,71 +308169,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276148] = 3, + [278090] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(1320), 6, + ACTIONS(11264), 1, anon_sym_DOLLAR, - aux_sym_number_token1, + ACTIONS(11270), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1322), 16, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, + ACTIONS(12255), 1, + anon_sym_LPAREN, + ACTIONS(12259), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(12261), 1, + aux_sym_number_token1, + ACTIONS(12263), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(12265), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12267), 1, + anon_sym_BQUOTE, + ACTIONS(12269), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [276178] = 3, + ACTIONS(12539), 1, + aux_sym__c_word_token1, + STATE(3024), 1, + sym__c_postfix_expression, + STATE(3087), 1, + sym__c_unary_expression, + STATE(3118), 1, + sym__c_binary_expression, + ACTIONS(12253), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3108), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [278146] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(1328), 6, + ACTIONS(11264), 1, anon_sym_DOLLAR, - aux_sym_number_token1, + ACTIONS(11270), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1330), 16, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, + ACTIONS(12255), 1, + anon_sym_LPAREN, + ACTIONS(12259), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(12261), 1, + aux_sym_number_token1, + ACTIONS(12263), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(12265), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12267), 1, + anon_sym_BQUOTE, + ACTIONS(12269), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [276208] = 3, + ACTIONS(12541), 1, + aux_sym__c_word_token1, + STATE(3024), 1, + sym__c_postfix_expression, + STATE(3087), 1, + sym__c_unary_expression, + STATE(3118), 1, + sym__c_binary_expression, + ACTIONS(12253), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3109), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [278202] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1340), 6, + ACTIONS(1308), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1342), 16, + ACTIONS(1310), 16, sym__concat, sym_test_operator, sym__brace_start, @@ -306486,61 +308276,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276238] = 3, + [278232] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1352), 6, + ACTIONS(12547), 1, + anon_sym_esac, + ACTIONS(12543), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1354), 16, - sym__concat, + ACTIONS(12545), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276268] = 3, + [278264] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(1356), 6, + ACTIONS(12131), 1, + anon_sym_LPAREN, + ACTIONS(12135), 1, anon_sym_DOLLAR, + ACTIONS(12137), 1, + anon_sym_DQUOTE, + ACTIONS(12139), 1, aux_sym_number_token1, + ACTIONS(12141), 1, aux_sym_number_token2, + ACTIONS(12143), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12145), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(12147), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1358), 16, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(12149), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [276298] = 3, + ACTIONS(12549), 1, + aux_sym__c_word_token1, + STATE(3366), 1, + sym__c_unary_expression, + STATE(3370), 1, + sym__c_binary_expression, + STATE(3371), 1, + sym__c_postfix_expression, + ACTIONS(12129), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3197), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [278320] = 3, ACTIONS(71), 1, sym_comment, ACTIONS(1332), 6, @@ -306567,17 +308371,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276328] = 3, + [278350] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1336), 6, + ACTIONS(1344), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1338), 16, + ACTIONS(1346), 16, sym__concat, sym_test_operator, sym__brace_start, @@ -306594,125 +308398,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276358] = 3, + [278380] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 6, + ACTIONS(12379), 1, + anon_sym_esac, + ACTIONS(12375), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1314), 16, - sym__concat, + ACTIONS(12377), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276388] = 3, - ACTIONS(71), 1, + [278412] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 6, - anon_sym_DOLLAR, + ACTIONS(7794), 1, aux_sym_number_token1, + ACTIONS(7796), 1, aux_sym_number_token2, + ACTIONS(12553), 1, + anon_sym_LPAREN, + ACTIONS(12555), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12557), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(12559), 1, + anon_sym_DOLLAR, + ACTIONS(12561), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12563), 1, + anon_sym_RBRACE3, + ACTIONS(12565), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(12567), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1346), 16, - sym__concat, - sym_test_operator, - sym__brace_start, + ACTIONS(12569), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12571), 1, + aux_sym__simple_variable_name_token1, + STATE(5429), 1, + sym_simple_expansion, + STATE(6281), 1, + sym_number, + STATE(6287), 1, + sym_expansion, + STATE(6290), 1, + sym__expansion_max_length_binary_expression, + STATE(6452), 1, + sym__expansion_max_length_expression, + STATE(7049), 1, + sym_parenthesized_expression, + STATE(7060), 1, + sym_arithmetic_expansion, + STATE(7091), 1, + sym_command_substitution, + ACTIONS(12551), 2, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [276418] = 3, + [278480] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 6, + ACTIONS(12442), 1, + anon_sym_esac, + ACTIONS(12438), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1310), 16, - sym__concat, + ACTIONS(12440), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276448] = 3, + [278512] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1306), 16, + STATE(5381), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12573), 2, sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + ACTIONS(1272), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1274), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [276478] = 3, + [278546] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 6, + ACTIONS(1356), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1310), 16, + ACTIONS(1358), 16, sym__concat, sym_test_operator, sym__brace_start, @@ -306729,80 +308556,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276508] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12397), 1, - anon_sym_esac, - ACTIONS(12393), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12395), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [276540] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5387), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12221), 1, - sym_file_descriptor, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5099), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(11556), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(5385), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4986), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11554), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [276582] = 4, + [278576] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12403), 1, + ACTIONS(12579), 1, anon_sym_esac, - ACTIONS(12399), 6, + ACTIONS(12575), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12401), 15, + ACTIONS(12577), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -306818,17 +308584,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276614] = 3, + [278608] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 6, + ACTIONS(1304), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1302), 16, + ACTIONS(1306), 16, sym__concat, sym_test_operator, sym__brace_start, @@ -306845,100 +308611,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276644] = 4, + [278638] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12409), 1, - anon_sym_esac, - ACTIONS(12405), 6, - anon_sym_LPAREN, + ACTIONS(11264), 1, anon_sym_DOLLAR, - aux_sym_number_token1, + ACTIONS(11270), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12407), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, + ACTIONS(12255), 1, + anon_sym_LPAREN, + ACTIONS(12259), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(12261), 1, + aux_sym_number_token1, + ACTIONS(12263), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(12265), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12267), 1, anon_sym_BQUOTE, + ACTIONS(12269), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [276676] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12417), 1, - anon_sym_LT_LT_LT, - ACTIONS(12419), 1, - sym_file_descriptor, - ACTIONS(11357), 2, - anon_sym_PIPE, - anon_sym_LT_LT, - ACTIONS(12415), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12413), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5205), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11363), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_LT_LT_DASH, - ACTIONS(12411), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [276718] = 16, + ACTIONS(12581), 1, + aux_sym__c_word_token1, + STATE(3024), 1, + sym__c_postfix_expression, + STATE(3087), 1, + sym__c_unary_expression, + STATE(3118), 1, + sym__c_binary_expression, + ACTIONS(12253), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3110), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [278694] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12167), 1, + ACTIONS(12131), 1, anon_sym_LPAREN, - ACTIONS(12171), 1, + ACTIONS(12135), 1, anon_sym_DOLLAR, - ACTIONS(12173), 1, + ACTIONS(12137), 1, anon_sym_DQUOTE, - ACTIONS(12175), 1, + ACTIONS(12139), 1, aux_sym_number_token1, - ACTIONS(12177), 1, + ACTIONS(12141), 1, aux_sym_number_token2, - ACTIONS(12179), 1, + ACTIONS(12143), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12181), 1, + ACTIONS(12145), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12183), 1, + ACTIONS(12147), 1, anon_sym_BQUOTE, - ACTIONS(12185), 1, + ACTIONS(12149), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12421), 1, + ACTIONS(12583), 1, aux_sym__c_word_token1, - STATE(3442), 1, + STATE(3366), 1, sym__c_unary_expression, - STATE(3443), 1, + STATE(3370), 1, sym__c_binary_expression, - STATE(3444), 1, + STATE(3371), 1, sym__c_postfix_expression, - ACTIONS(12165), 2, + ACTIONS(12129), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3454), 7, + STATE(3445), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -306946,186 +308691,142 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [276774] = 4, + [278750] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12427), 1, - anon_sym_esac, - ACTIONS(12423), 6, - anon_sym_LPAREN, + ACTIONS(1336), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(12425), 15, + ACTIONS(1338), 16, + sym__concat, sym_test_operator, - sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276806] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5175), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12327), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5721), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(5723), 12, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [276840] = 3, + [278780] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 6, + ACTIONS(12131), 1, + anon_sym_LPAREN, + ACTIONS(12135), 1, anon_sym_DOLLAR, + ACTIONS(12137), 1, + anon_sym_DQUOTE, + ACTIONS(12139), 1, aux_sym_number_token1, + ACTIONS(12141), 1, aux_sym_number_token2, + ACTIONS(12143), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12145), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(12147), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1298), 16, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(12149), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [276870] = 4, + ACTIONS(12585), 1, + aux_sym__c_word_token1, + STATE(3366), 1, + sym__c_unary_expression, + STATE(3370), 1, + sym__c_binary_expression, + STATE(3371), 1, + sym__c_postfix_expression, + ACTIONS(12129), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3184), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [278836] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12433), 1, - anon_sym_esac, - ACTIONS(12429), 6, - anon_sym_LPAREN, + ACTIONS(1352), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(12431), 15, + ACTIONS(1354), 16, + sym__concat, sym_test_operator, - sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276902] = 5, - ACTIONS(71), 1, + [278866] = 9, + ACTIONS(3), 1, sym_comment, - STATE(5180), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12327), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4370), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(4372), 12, + ACTIONS(5103), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12201), 1, sym_file_descriptor, + ACTIONS(4705), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5094), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, + ACTIONS(11571), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [276936] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5322), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12435), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1261), 8, - anon_sym_PIPE, + ACTIONS(5101), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5016), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11569), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - sym__special_character, - ACTIONS(1263), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [276970] = 6, + [278908] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(12327), 1, - aux_sym_concatenation_token1, - ACTIONS(12437), 1, - sym__concat, - STATE(5188), 1, + STATE(5403), 1, aux_sym_concatenation_repeat1, - ACTIONS(1265), 7, + ACTIONS(12587), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1272), 8, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -307133,7 +308834,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1267), 12, + sym__special_character, + ACTIONS(1274), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -307145,52 +308847,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [277006] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11363), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12443), 1, - anon_sym_LT_LT_LT, - ACTIONS(12445), 1, - sym_file_descriptor, - ACTIONS(12441), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5181), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11357), 6, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(12439), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [277046] = 4, + [278942] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12451), 1, + ACTIONS(12593), 1, anon_sym_esac, - ACTIONS(12447), 6, + ACTIONS(12589), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12449), 15, + ACTIONS(12591), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -307206,135 +308875,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [277078] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5180), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12327), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2072), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(2074), 12, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [277112] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5175), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12327), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5695), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(5697), 12, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [277146] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12327), 1, - aux_sym_concatenation_token1, - ACTIONS(12453), 1, - sym__concat, - STATE(5188), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1286), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1288), 12, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [277182] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11315), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12461), 1, - anon_sym_LT_LT_LT, - ACTIONS(12464), 1, - sym_file_descriptor, - ACTIONS(12458), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5181), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11307), 6, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(12455), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [277222] = 5, + [278974] = 5, ACTIONS(71), 1, sym_comment, - STATE(5180), 1, + STATE(5226), 1, aux_sym_concatenation_repeat1, - ACTIONS(12327), 2, + ACTIONS(12348), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(2094), 7, + ACTIONS(5587), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -307342,7 +308891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2096), 12, + ACTIONS(5589), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -307355,240 +308904,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [277256] = 4, + [279008] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12471), 1, - anon_sym_esac, - ACTIONS(12467), 6, - anon_sym_LPAREN, + ACTIONS(1340), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(12469), 15, + ACTIONS(1342), 16, + sym__concat, sym_test_operator, - sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [277288] = 8, + [279038] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4253), 1, - anon_sym_PIPE, - ACTIONS(4348), 1, - anon_sym_PIPE_AMP, - ACTIONS(12473), 1, - anon_sym_LT_LT_LT, - STATE(5679), 1, - sym_herestring_redirect, - STATE(5436), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4270), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(4272), 9, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [277328] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12167), 1, - anon_sym_LPAREN, - ACTIONS(12171), 1, + ACTIONS(1292), 6, anon_sym_DOLLAR, - ACTIONS(12173), 1, - anon_sym_DQUOTE, - ACTIONS(12175), 1, aux_sym_number_token1, - ACTIONS(12177), 1, aux_sym_number_token2, - ACTIONS(12179), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12181), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12183), 1, anon_sym_BQUOTE, - ACTIONS(12185), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12475), 1, - aux_sym__c_word_token1, - STATE(3442), 1, - sym__c_unary_expression, - STATE(3443), 1, - sym__c_binary_expression, - STATE(3444), 1, - sym__c_postfix_expression, - ACTIONS(12165), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3405), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [277384] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12167), 1, - anon_sym_LPAREN, - ACTIONS(12171), 1, - anon_sym_DOLLAR, - ACTIONS(12173), 1, + sym_word, + ACTIONS(1294), 16, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(12175), 1, - aux_sym_number_token1, - ACTIONS(12177), 1, - aux_sym_number_token2, - ACTIONS(12179), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(12181), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12183), 1, - anon_sym_BQUOTE, - ACTIONS(12185), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12477), 1, - aux_sym__c_word_token1, - STATE(3442), 1, - sym__c_unary_expression, - STATE(3443), 1, - sym__c_binary_expression, - STATE(3444), 1, - sym__c_postfix_expression, - ACTIONS(12165), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3404), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [277440] = 16, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [279068] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12167), 1, + ACTIONS(12599), 1, + anon_sym_esac, + ACTIONS(12595), 6, anon_sym_LPAREN, - ACTIONS(12171), 1, anon_sym_DOLLAR, - ACTIONS(12173), 1, - anon_sym_DQUOTE, - ACTIONS(12175), 1, aux_sym_number_token1, - ACTIONS(12177), 1, aux_sym_number_token2, - ACTIONS(12179), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12181), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12183), 1, + sym_word, + ACTIONS(12597), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(12185), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12479), 1, - aux_sym__c_word_token1, - STATE(3442), 1, - sym__c_unary_expression, - STATE(3443), 1, - sym__c_binary_expression, - STATE(3444), 1, - sym__c_postfix_expression, - ACTIONS(12165), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3403), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [277496] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5188), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12481), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1251), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1253), 12, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [277530] = 9, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [279100] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5383), 1, + ACTIONS(5096), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12221), 1, + ACTIONS(12201), 1, sym_file_descriptor, - ACTIONS(4692), 2, + ACTIONS(4705), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(5099), 2, + ACTIONS(5094), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11556), 2, + ACTIONS(11571), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(5381), 3, + ACTIONS(5092), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(4986), 3, + STATE(5016), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11554), 8, + ACTIONS(11569), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -307597,39 +309019,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [277572] = 16, + [279142] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12167), 1, + ACTIONS(12131), 1, anon_sym_LPAREN, - ACTIONS(12171), 1, + ACTIONS(12135), 1, anon_sym_DOLLAR, - ACTIONS(12173), 1, + ACTIONS(12137), 1, anon_sym_DQUOTE, - ACTIONS(12175), 1, + ACTIONS(12139), 1, aux_sym_number_token1, - ACTIONS(12177), 1, + ACTIONS(12141), 1, aux_sym_number_token2, - ACTIONS(12179), 1, + ACTIONS(12143), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12181), 1, + ACTIONS(12145), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12183), 1, + ACTIONS(12147), 1, anon_sym_BQUOTE, - ACTIONS(12185), 1, + ACTIONS(12149), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12484), 1, + ACTIONS(12601), 1, aux_sym__c_word_token1, - STATE(3442), 1, + STATE(3366), 1, sym__c_unary_expression, - STATE(3443), 1, + STATE(3370), 1, sym__c_binary_expression, - STATE(3444), 1, + STATE(3371), 1, sym__c_postfix_expression, - ACTIONS(12165), 2, + ACTIONS(12129), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3402), 7, + STATE(3435), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -307637,224 +309059,115 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [277628] = 16, - ACTIONS(71), 1, + [279198] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(12167), 1, - anon_sym_LPAREN, - ACTIONS(12171), 1, - anon_sym_DOLLAR, - ACTIONS(12173), 1, - anon_sym_DQUOTE, - ACTIONS(12175), 1, + ACTIONS(7794), 1, aux_sym_number_token1, - ACTIONS(12177), 1, + ACTIONS(7796), 1, aux_sym_number_token2, - ACTIONS(12179), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12181), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12183), 1, - anon_sym_BQUOTE, - ACTIONS(12185), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12486), 1, - aux_sym__c_word_token1, - STATE(3442), 1, - sym__c_unary_expression, - STATE(3443), 1, - sym__c_binary_expression, - STATE(3444), 1, - sym__c_postfix_expression, - ACTIONS(12165), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3399), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [277684] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12167), 1, + ACTIONS(12553), 1, anon_sym_LPAREN, - ACTIONS(12171), 1, + ACTIONS(12557), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(12559), 1, anon_sym_DOLLAR, - ACTIONS(12173), 1, - anon_sym_DQUOTE, - ACTIONS(12175), 1, - aux_sym_number_token1, - ACTIONS(12177), 1, - aux_sym_number_token2, - ACTIONS(12179), 1, + ACTIONS(12561), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12181), 1, + ACTIONS(12565), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12183), 1, + ACTIONS(12567), 1, anon_sym_BQUOTE, - ACTIONS(12185), 1, + ACTIONS(12569), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12488), 1, - aux_sym__c_word_token1, - STATE(3442), 1, - sym__c_unary_expression, - STATE(3443), 1, - sym__c_binary_expression, - STATE(3444), 1, - sym__c_postfix_expression, - ACTIONS(12165), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3395), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, + ACTIONS(12603), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12605), 1, + anon_sym_RBRACE3, + ACTIONS(12607), 1, + aux_sym__simple_variable_name_token1, + STATE(5419), 1, sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [277740] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12494), 1, - anon_sym_esac, - ACTIONS(12490), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12492), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, + STATE(6347), 1, + sym__expansion_max_length_binary_expression, + STATE(6452), 1, + sym__expansion_max_length_expression, + ACTIONS(12551), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [277772] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12167), 1, - anon_sym_LPAREN, - ACTIONS(12171), 1, - anon_sym_DOLLAR, - ACTIONS(12173), 1, - anon_sym_DQUOTE, - ACTIONS(12175), 1, - aux_sym_number_token1, - ACTIONS(12177), 1, - aux_sym_number_token2, - ACTIONS(12179), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12181), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12183), 1, - anon_sym_BQUOTE, - ACTIONS(12185), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12496), 1, - aux_sym__c_word_token1, - STATE(3442), 1, - sym__c_unary_expression, - STATE(3443), 1, - sym__c_binary_expression, - STATE(3444), 1, - sym__c_postfix_expression, - ACTIONS(12165), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3394), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, + STATE(6300), 2, sym_number, - sym_simple_expansion, sym_expansion, + STATE(7211), 3, + sym_parenthesized_expression, + sym_arithmetic_expansion, sym_command_substitution, - [277828] = 13, - ACTIONS(71), 1, + [279260] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(4253), 1, - anon_sym_PIPE, - ACTIONS(4348), 1, - anon_sym_PIPE_AMP, - ACTIONS(5994), 1, + ACTIONS(5111), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12201), 1, + sym_file_descriptor, + ACTIONS(4705), 2, anon_sym_LT_LT, - ACTIONS(5996), 1, anon_sym_LT_LT_DASH, - ACTIONS(12504), 1, - anon_sym_LT_LT_LT, - ACTIONS(12506), 1, - sym_file_descriptor, - STATE(5556), 1, - sym_herestring_redirect, - ACTIONS(5992), 2, + ACTIONS(5094), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12502), 2, + ACTIONS(11571), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(12500), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5350), 3, + ACTIONS(5109), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5016), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(12498), 5, + ACTIONS(11569), 8, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [277878] = 16, + anon_sym_GT_PIPE, + [279302] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12167), 1, + ACTIONS(12131), 1, anon_sym_LPAREN, - ACTIONS(12171), 1, + ACTIONS(12135), 1, anon_sym_DOLLAR, - ACTIONS(12173), 1, + ACTIONS(12137), 1, anon_sym_DQUOTE, - ACTIONS(12175), 1, + ACTIONS(12139), 1, aux_sym_number_token1, - ACTIONS(12177), 1, + ACTIONS(12141), 1, aux_sym_number_token2, - ACTIONS(12179), 1, + ACTIONS(12143), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12181), 1, + ACTIONS(12145), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12183), 1, + ACTIONS(12147), 1, anon_sym_BQUOTE, - ACTIONS(12185), 1, + ACTIONS(12149), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12508), 1, + ACTIONS(12609), 1, aux_sym__c_word_token1, - STATE(3442), 1, + STATE(3366), 1, sym__c_unary_expression, - STATE(3443), 1, + STATE(3370), 1, sym__c_binary_expression, - STATE(3444), 1, + STATE(3371), 1, sym__c_postfix_expression, - ACTIONS(12165), 2, + ACTIONS(12129), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3392), 7, + STATE(3170), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -307862,79 +309175,82 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [277934] = 16, - ACTIONS(71), 1, + [279358] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(12167), 1, - anon_sym_LPAREN, - ACTIONS(12171), 1, - anon_sym_DOLLAR, - ACTIONS(12173), 1, - anon_sym_DQUOTE, - ACTIONS(12175), 1, + ACTIONS(7794), 1, aux_sym_number_token1, - ACTIONS(12177), 1, + ACTIONS(7796), 1, aux_sym_number_token2, - ACTIONS(12179), 1, + ACTIONS(12553), 1, + anon_sym_LPAREN, + ACTIONS(12557), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(12559), 1, + anon_sym_DOLLAR, + ACTIONS(12561), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12181), 1, + ACTIONS(12565), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12183), 1, + ACTIONS(12567), 1, anon_sym_BQUOTE, - ACTIONS(12185), 1, + ACTIONS(12569), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12510), 1, - aux_sym__c_word_token1, - STATE(3442), 1, - sym__c_unary_expression, - STATE(3443), 1, - sym__c_binary_expression, - STATE(3444), 1, - sym__c_postfix_expression, - ACTIONS(12165), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3390), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, + ACTIONS(12611), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12613), 1, + anon_sym_RBRACE3, + ACTIONS(12615), 1, + aux_sym__simple_variable_name_token1, + STATE(5469), 1, sym_simple_expansion, + STATE(6273), 1, + sym__expansion_max_length_binary_expression, + STATE(6452), 1, + sym__expansion_max_length_expression, + ACTIONS(12551), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6309), 2, + sym_number, sym_expansion, + STATE(6857), 3, + sym_parenthesized_expression, + sym_arithmetic_expansion, sym_command_substitution, - [277990] = 16, + [279420] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(12167), 1, + ACTIONS(12131), 1, anon_sym_LPAREN, - ACTIONS(12171), 1, + ACTIONS(12135), 1, anon_sym_DOLLAR, - ACTIONS(12173), 1, + ACTIONS(12137), 1, anon_sym_DQUOTE, - ACTIONS(12175), 1, + ACTIONS(12139), 1, aux_sym_number_token1, - ACTIONS(12177), 1, + ACTIONS(12141), 1, aux_sym_number_token2, - ACTIONS(12179), 1, + ACTIONS(12143), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12181), 1, + ACTIONS(12145), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12183), 1, + ACTIONS(12147), 1, anon_sym_BQUOTE, - ACTIONS(12185), 1, + ACTIONS(12149), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12512), 1, + ACTIONS(12617), 1, aux_sym__c_word_token1, - STATE(3442), 1, + STATE(3366), 1, sym__c_unary_expression, - STATE(3443), 1, + STATE(3370), 1, sym__c_binary_expression, - STATE(3444), 1, + STATE(3371), 1, sym__c_postfix_expression, - ACTIONS(12165), 2, + ACTIONS(12129), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3387), 7, + STATE(3414), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -307942,44 +309258,17 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [278046] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1251), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1253), 16, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [278076] = 3, + [279476] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1324), 6, + ACTIONS(1348), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1326), 16, + ACTIONS(1350), 16, sym__concat, sym_test_operator, sym__brace_start, @@ -307996,19 +309285,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278106] = 4, + [279506] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12471), 1, + ACTIONS(12623), 1, anon_sym_esac, - ACTIONS(12467), 6, + ACTIONS(12619), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12469), 15, + ACTIONS(12621), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -308024,159 +309313,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278138] = 16, + [279538] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(12167), 1, - anon_sym_LPAREN, - ACTIONS(12171), 1, - anon_sym_DOLLAR, - ACTIONS(12173), 1, - anon_sym_DQUOTE, - ACTIONS(12175), 1, - aux_sym_number_token1, - ACTIONS(12177), 1, - aux_sym_number_token2, - ACTIONS(12179), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12181), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12183), 1, - anon_sym_BQUOTE, - ACTIONS(12185), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12514), 1, - aux_sym__c_word_token1, - STATE(3442), 1, - sym__c_unary_expression, - STATE(3443), 1, - sym__c_binary_expression, - STATE(3444), 1, - sym__c_postfix_expression, - ACTIONS(12165), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3384), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [278194] = 16, + ACTIONS(12348), 1, + aux_sym_concatenation_token1, + ACTIONS(12625), 1, + sym__concat, + STATE(5130), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1266), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1268), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [279574] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12167), 1, + ACTIONS(12631), 1, + anon_sym_esac, + ACTIONS(12627), 6, anon_sym_LPAREN, - ACTIONS(12171), 1, anon_sym_DOLLAR, - ACTIONS(12173), 1, - anon_sym_DQUOTE, - ACTIONS(12175), 1, aux_sym_number_token1, - ACTIONS(12177), 1, aux_sym_number_token2, - ACTIONS(12179), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12181), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12183), 1, + sym_word, + ACTIONS(12629), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(12185), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12516), 1, - aux_sym__c_word_token1, - STATE(3442), 1, - sym__c_unary_expression, - STATE(3443), 1, - sym__c_binary_expression, - STATE(3444), 1, - sym__c_postfix_expression, - ACTIONS(12165), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3381), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [278250] = 3, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [279606] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1348), 6, + ACTIONS(12454), 1, + anon_sym_esac, + ACTIONS(12450), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1350), 16, - sym__concat, + ACTIONS(12452), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278280] = 9, + [279638] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(12527), 1, + ACTIONS(12639), 1, anon_sym_LT_LT_LT, - ACTIONS(12530), 1, + ACTIONS(12641), 1, sym_file_descriptor, - ACTIONS(11307), 2, + ACTIONS(11349), 2, anon_sym_PIPE, anon_sym_LT_LT, - ACTIONS(12524), 2, + ACTIONS(12637), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(12521), 3, + ACTIONS(12635), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(5205), 3, + STATE(5171), 3, sym_file_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(11315), 5, + ACTIONS(11355), 5, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_AMP, anon_sym_RBRACK, anon_sym_LT_LT_DASH, - ACTIONS(12518), 5, + ACTIONS(12633), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [278322] = 6, + [279680] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, - sym__concat, - STATE(5393), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 2, + ACTIONS(12643), 1, + sym_variable_name, + STATE(6730), 1, + sym_subscript, + ACTIONS(11309), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 17, + STATE(5232), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11307), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -308193,20 +309462,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [279716] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12547), 1, + anon_sym_esac, + ACTIONS(12543), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12545), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym__special_character, - [278358] = 6, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [279748] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, - aux_sym_concatenation_token1, - ACTIONS(12533), 1, - sym__concat, - STATE(4253), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 2, + ACTIONS(12645), 1, + sym_variable_name, + STATE(6730), 1, + sym_subscript, + ACTIONS(11294), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 17, + STATE(5232), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11292), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -308223,20 +309520,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [278394] = 6, + [279784] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, + ACTIONS(11458), 1, aux_sym_concatenation_token1, - ACTIONS(12535), 1, + ACTIONS(11460), 1, sym__concat, - STATE(4253), 1, + STATE(5156), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 2, + ACTIONS(5167), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 17, + ACTIONS(5165), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -308253,21 +309550,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [278430] = 6, + [279820] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11500), 1, + ACTIONS(11458), 1, aux_sym_concatenation_token1, - ACTIONS(12537), 1, + ACTIONS(11460), 1, sym__concat, - STATE(4244), 1, + STATE(5157), 1, aux_sym_concatenation_repeat1, - ACTIONS(1267), 3, + ACTIONS(5175), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 16, + ACTIONS(5173), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -308284,20 +309580,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [278466] = 6, + [279856] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11264), 1, + anon_sym_DOLLAR, + ACTIONS(11270), 1, + aux_sym_number_token2, + ACTIONS(12255), 1, + anon_sym_LPAREN, + ACTIONS(12259), 1, + anon_sym_DQUOTE, + ACTIONS(12261), 1, + aux_sym_number_token1, + ACTIONS(12263), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12265), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12267), 1, + anon_sym_BQUOTE, + ACTIONS(12269), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12648), 1, + aux_sym__c_word_token1, + STATE(3024), 1, + sym__c_postfix_expression, + STATE(3087), 1, + sym__c_unary_expression, + STATE(3118), 1, + sym__c_binary_expression, + ACTIONS(12253), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3069), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [279912] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11500), 1, + ACTIONS(11454), 1, aux_sym_concatenation_token1, - ACTIONS(12539), 1, + ACTIONS(11456), 1, sym__concat, - STATE(4244), 1, + STATE(5153), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 3, + ACTIONS(2169), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 16, + ACTIONS(2167), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -308314,214 +309649,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [278502] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7793), 1, - aux_sym_number_token1, - ACTIONS(7795), 1, - aux_sym_number_token2, - ACTIONS(12543), 1, - anon_sym_LPAREN, - ACTIONS(12545), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12547), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(12549), 1, - anon_sym_DOLLAR, - ACTIONS(12551), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12553), 1, - anon_sym_RBRACE3, - ACTIONS(12555), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12557), 1, - anon_sym_BQUOTE, - ACTIONS(12559), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12561), 1, - aux_sym__simple_variable_name_token1, - STATE(5460), 1, - sym_simple_expansion, - STATE(6264), 1, - sym_number, - STATE(6267), 1, - sym_expansion, - STATE(6268), 1, - sym__expansion_max_length_binary_expression, - STATE(6470), 1, - sym__expansion_max_length_expression, - STATE(7025), 1, - sym_parenthesized_expression, - STATE(7026), 1, - sym_arithmetic_expansion, - STATE(7027), 1, - sym_command_substitution, - ACTIONS(12541), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - [278570] = 19, + anon_sym_LT_LT_LT, + [279948] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7793), 1, - aux_sym_number_token1, - ACTIONS(7795), 1, - aux_sym_number_token2, - ACTIONS(12543), 1, - anon_sym_LPAREN, - ACTIONS(12547), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(12549), 1, - anon_sym_DOLLAR, - ACTIONS(12551), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12555), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12557), 1, - anon_sym_BQUOTE, - ACTIONS(12559), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12563), 1, + ACTIONS(11454), 1, + aux_sym_concatenation_token1, + ACTIONS(11456), 1, + sym__concat, + STATE(5151), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5595), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12565), 1, - anon_sym_RBRACE3, - ACTIONS(12567), 1, - aux_sym__simple_variable_name_token1, - STATE(5458), 1, - sym_simple_expansion, - STATE(6256), 1, - sym__expansion_max_length_binary_expression, - STATE(6470), 1, - sym__expansion_max_length_expression, - ACTIONS(12541), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6344), 2, - sym_number, - sym_expansion, - STATE(6977), 3, - sym_parenthesized_expression, - sym_arithmetic_expansion, - sym_command_substitution, - [278632] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12473), 1, - anon_sym_LT_LT_LT, - STATE(5679), 1, - sym_herestring_redirect, - STATE(5436), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4253), 7, + ACTIONS(5593), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4348), 10, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [279984] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11454), 1, + aux_sym_concatenation_token1, + ACTIONS(11456), 1, + sym__concat, + STATE(5153), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2173), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2171), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [278668] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11808), 1, - anon_sym_LPAREN, - ACTIONS(11812), 1, - anon_sym_DOLLAR, - ACTIONS(11814), 1, - anon_sym_DQUOTE, - ACTIONS(11816), 1, - aux_sym_number_token1, - ACTIONS(11818), 1, - aux_sym_number_token2, - ACTIONS(11820), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11822), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11824), 1, - anon_sym_BQUOTE, - ACTIONS(11826), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12569), 1, - aux_sym__c_word_token1, - STATE(3285), 1, - sym__c_postfix_expression, - STATE(3286), 1, - sym__c_binary_expression, - STATE(3290), 1, - sym__c_unary_expression, - ACTIONS(11806), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3217), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [278724] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12360), 1, - anon_sym_esac, - ACTIONS(12356), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12358), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [278756] = 5, + anon_sym_LT_LT_LT, + [280020] = 6, ACTIONS(3), 1, sym_comment, - STATE(5216), 1, - aux_sym_pipeline_repeat1, - ACTIONS(11748), 2, + ACTIONS(11454), 1, + aux_sym_concatenation_token1, + ACTIONS(11456), 1, + sym__concat, + STATE(5151), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4428), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12571), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(11743), 17, - anon_sym_SEMI, + ACTIONS(4426), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -308530,296 +309739,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [278790] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11808), 1, - anon_sym_LPAREN, - ACTIONS(11812), 1, - anon_sym_DOLLAR, - ACTIONS(11814), 1, - anon_sym_DQUOTE, - ACTIONS(11816), 1, - aux_sym_number_token1, - ACTIONS(11818), 1, - aux_sym_number_token2, - ACTIONS(11820), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11822), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11824), 1, - anon_sym_BQUOTE, - ACTIONS(11826), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12574), 1, - aux_sym__c_word_token1, - STATE(3285), 1, - sym__c_postfix_expression, - STATE(3286), 1, - sym__c_binary_expression, - STATE(3290), 1, - sym__c_unary_expression, - ACTIONS(11806), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3218), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [278846] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11808), 1, - anon_sym_LPAREN, - ACTIONS(11812), 1, - anon_sym_DOLLAR, - ACTIONS(11814), 1, - anon_sym_DQUOTE, - ACTIONS(11816), 1, - aux_sym_number_token1, - ACTIONS(11818), 1, - aux_sym_number_token2, - ACTIONS(11820), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11822), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11824), 1, - anon_sym_BQUOTE, - ACTIONS(11826), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12576), 1, - aux_sym__c_word_token1, - STATE(3285), 1, - sym__c_postfix_expression, - STATE(3286), 1, - sym__c_binary_expression, - STATE(3290), 1, - sym__c_unary_expression, - ACTIONS(11806), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3216), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [278902] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11808), 1, - anon_sym_LPAREN, - ACTIONS(11812), 1, - anon_sym_DOLLAR, - ACTIONS(11814), 1, - anon_sym_DQUOTE, - ACTIONS(11816), 1, - aux_sym_number_token1, - ACTIONS(11818), 1, - aux_sym_number_token2, - ACTIONS(11820), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11822), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11824), 1, - anon_sym_BQUOTE, - ACTIONS(11826), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12578), 1, - aux_sym__c_word_token1, - STATE(3285), 1, - sym__c_postfix_expression, - STATE(3286), 1, - sym__c_binary_expression, - STATE(3290), 1, - sym__c_unary_expression, - ACTIONS(11806), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3214), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [278958] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11808), 1, - anon_sym_LPAREN, - ACTIONS(11812), 1, - anon_sym_DOLLAR, - ACTIONS(11814), 1, - anon_sym_DQUOTE, - ACTIONS(11816), 1, - aux_sym_number_token1, - ACTIONS(11818), 1, - aux_sym_number_token2, - ACTIONS(11820), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11822), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11824), 1, - anon_sym_BQUOTE, - ACTIONS(11826), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12580), 1, - aux_sym__c_word_token1, - STATE(3285), 1, - sym__c_postfix_expression, - STATE(3286), 1, - sym__c_binary_expression, - STATE(3290), 1, - sym__c_unary_expression, - ACTIONS(11806), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3207), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [279014] = 5, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [280056] = 6, + ACTIONS(3), 1, sym_comment, - STATE(5297), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12582), 2, - sym__concat, + ACTIONS(11454), 1, aux_sym_concatenation_token1, - ACTIONS(1261), 7, + ACTIONS(11456), 1, + sym__concat, + STATE(5153), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4513), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4511), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1263), 12, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [280092] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11454), 1, + aux_sym_concatenation_token1, + ACTIONS(11456), 1, + sym__concat, + STATE(5151), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4579), 2, sym_file_descriptor, - sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(4577), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [279048] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11808), 1, - anon_sym_LPAREN, - ACTIONS(11812), 1, - anon_sym_DOLLAR, - ACTIONS(11814), 1, - anon_sym_DQUOTE, - ACTIONS(11816), 1, - aux_sym_number_token1, - ACTIONS(11818), 1, - aux_sym_number_token2, - ACTIONS(11820), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11822), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11824), 1, - anon_sym_BQUOTE, - ACTIONS(11826), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12584), 1, - aux_sym__c_word_token1, - STATE(3285), 1, - sym__c_postfix_expression, - STATE(3286), 1, - sym__c_binary_expression, - STATE(3290), 1, - sym__c_unary_expression, - ACTIONS(11806), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3205), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [279104] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11808), 1, - anon_sym_LPAREN, - ACTIONS(11812), 1, - anon_sym_DOLLAR, - ACTIONS(11814), 1, - anon_sym_DQUOTE, - ACTIONS(11816), 1, - aux_sym_number_token1, - ACTIONS(11818), 1, - aux_sym_number_token2, - ACTIONS(11820), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11822), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11824), 1, - anon_sym_BQUOTE, - ACTIONS(11826), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12586), 1, - aux_sym__c_word_token1, - STATE(3285), 1, - sym__c_postfix_expression, - STATE(3286), 1, - sym__c_binary_expression, - STATE(3290), 1, - sym__c_unary_expression, - ACTIONS(11806), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3202), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [279160] = 5, + anon_sym_LT_LT_LT, + [280128] = 6, ACTIONS(3), 1, sym_comment, - STATE(5216), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12068), 2, + ACTIONS(11454), 1, + aux_sym_concatenation_token1, + ACTIONS(11456), 1, + sym__concat, + STATE(5153), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4595), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12588), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12064), 17, - anon_sym_SEMI, + ACTIONS(4593), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -308828,99 +309829,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [279194] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11808), 1, - anon_sym_LPAREN, - ACTIONS(11812), 1, - anon_sym_DOLLAR, - ACTIONS(11814), 1, - anon_sym_DQUOTE, - ACTIONS(11816), 1, - aux_sym_number_token1, - ACTIONS(11818), 1, - aux_sym_number_token2, - ACTIONS(11820), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11822), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11824), 1, - anon_sym_BQUOTE, - ACTIONS(11826), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12590), 1, - aux_sym__c_word_token1, - STATE(3285), 1, - sym__c_postfix_expression, - STATE(3286), 1, - sym__c_binary_expression, - STATE(3290), 1, - sym__c_unary_expression, - ACTIONS(11806), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3201), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [279250] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11256), 1, - anon_sym_DOLLAR, - ACTIONS(11262), 1, - aux_sym_number_token2, - ACTIONS(12233), 1, - anon_sym_LPAREN, - ACTIONS(12237), 1, - anon_sym_DQUOTE, - ACTIONS(12239), 1, - aux_sym_number_token1, - ACTIONS(12241), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12243), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12245), 1, - anon_sym_BQUOTE, - ACTIONS(12247), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12592), 1, - aux_sym__c_word_token1, - STATE(3113), 1, - sym__c_postfix_expression, - STATE(3116), 1, - sym__c_binary_expression, - STATE(3118), 1, - sym__c_unary_expression, - ACTIONS(12231), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3075), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [279306] = 4, + anon_sym_LT_LT_LT, + [280164] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12494), 1, + ACTIONS(12354), 1, anon_sym_esac, - ACTIONS(12490), 6, + ACTIONS(12350), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12492), 15, + ACTIONS(12352), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -308936,39 +309858,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [279338] = 16, + [280196] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(11808), 1, + ACTIONS(12131), 1, anon_sym_LPAREN, - ACTIONS(11812), 1, + ACTIONS(12135), 1, anon_sym_DOLLAR, - ACTIONS(11814), 1, + ACTIONS(12137), 1, anon_sym_DQUOTE, - ACTIONS(11816), 1, + ACTIONS(12139), 1, aux_sym_number_token1, - ACTIONS(11818), 1, + ACTIONS(12141), 1, aux_sym_number_token2, - ACTIONS(11820), 1, + ACTIONS(12143), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(11822), 1, + ACTIONS(12145), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11824), 1, + ACTIONS(12147), 1, anon_sym_BQUOTE, - ACTIONS(11826), 1, + ACTIONS(12149), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12594), 1, + ACTIONS(12650), 1, aux_sym__c_word_token1, - STATE(3285), 1, - sym__c_postfix_expression, - STATE(3286), 1, - sym__c_binary_expression, - STATE(3290), 1, + STATE(3366), 1, sym__c_unary_expression, - ACTIONS(11806), 2, + STATE(3370), 1, + sym__c_binary_expression, + STATE(3371), 1, + sym__c_postfix_expression, + ACTIONS(12129), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3200), 7, + STATE(3187), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -308976,39 +309898,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [279394] = 16, + [280252] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(11808), 1, + ACTIONS(12131), 1, anon_sym_LPAREN, - ACTIONS(11812), 1, + ACTIONS(12135), 1, anon_sym_DOLLAR, - ACTIONS(11814), 1, + ACTIONS(12137), 1, anon_sym_DQUOTE, - ACTIONS(11816), 1, + ACTIONS(12139), 1, aux_sym_number_token1, - ACTIONS(11818), 1, + ACTIONS(12141), 1, aux_sym_number_token2, - ACTIONS(11820), 1, + ACTIONS(12143), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(11822), 1, + ACTIONS(12145), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11824), 1, + ACTIONS(12147), 1, anon_sym_BQUOTE, - ACTIONS(11826), 1, + ACTIONS(12149), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12596), 1, + ACTIONS(12652), 1, aux_sym__c_word_token1, - STATE(3285), 1, - sym__c_postfix_expression, - STATE(3286), 1, - sym__c_binary_expression, - STATE(3290), 1, + STATE(3366), 1, sym__c_unary_expression, - ACTIONS(11806), 2, + STATE(3370), 1, + sym__c_binary_expression, + STATE(3371), 1, + sym__c_postfix_expression, + ACTIONS(12129), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3199), 7, + STATE(3286), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -309016,402 +309938,97 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [279450] = 16, + [280308] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11808), 1, - anon_sym_LPAREN, - ACTIONS(11812), 1, - anon_sym_DOLLAR, - ACTIONS(11814), 1, - anon_sym_DQUOTE, - ACTIONS(11816), 1, - aux_sym_number_token1, - ACTIONS(11818), 1, - aux_sym_number_token2, - ACTIONS(11820), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11822), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11824), 1, - anon_sym_BQUOTE, - ACTIONS(11826), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12598), 1, - aux_sym__c_word_token1, - STATE(3285), 1, - sym__c_postfix_expression, - STATE(3286), 1, - sym__c_binary_expression, - STATE(3290), 1, - sym__c_unary_expression, - ACTIONS(11806), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3198), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [279506] = 16, + ACTIONS(12348), 1, + aux_sym_concatenation_token1, + ACTIONS(12654), 1, + sym__concat, + STATE(5130), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1288), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [280344] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(11808), 1, + ACTIONS(12579), 1, + anon_sym_esac, + ACTIONS(12575), 6, anon_sym_LPAREN, - ACTIONS(11812), 1, anon_sym_DOLLAR, - ACTIONS(11814), 1, - anon_sym_DQUOTE, - ACTIONS(11816), 1, - aux_sym_number_token1, - ACTIONS(11818), 1, - aux_sym_number_token2, - ACTIONS(11820), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11822), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11824), 1, - anon_sym_BQUOTE, - ACTIONS(11826), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12600), 1, - aux_sym__c_word_token1, - STATE(3285), 1, - sym__c_postfix_expression, - STATE(3286), 1, - sym__c_binary_expression, - STATE(3290), 1, - sym__c_unary_expression, - ACTIONS(11806), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3196), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [279562] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7793), 1, aux_sym_number_token1, - ACTIONS(7795), 1, aux_sym_number_token2, - ACTIONS(12543), 1, - anon_sym_LPAREN, - ACTIONS(12547), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(12549), 1, - anon_sym_DOLLAR, - ACTIONS(12551), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12555), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12557), 1, - anon_sym_BQUOTE, - ACTIONS(12559), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12602), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12604), 1, - anon_sym_RBRACE3, - ACTIONS(12606), 1, - aux_sym__simple_variable_name_token1, - STATE(5429), 1, - sym_simple_expansion, - STATE(6266), 1, - sym__expansion_max_length_binary_expression, - STATE(6470), 1, - sym__expansion_max_length_expression, - ACTIONS(12541), 2, + sym_word, + ACTIONS(12577), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6260), 2, - sym_number, - sym_expansion, - STATE(6798), 3, - sym_parenthesized_expression, - sym_arithmetic_expansion, - sym_command_substitution, - [279624] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11256), 1, - anon_sym_DOLLAR, - ACTIONS(11262), 1, - aux_sym_number_token2, - ACTIONS(12233), 1, - anon_sym_LPAREN, - ACTIONS(12237), 1, - anon_sym_DQUOTE, - ACTIONS(12239), 1, - aux_sym_number_token1, - ACTIONS(12241), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12243), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12245), 1, - anon_sym_BQUOTE, - ACTIONS(12247), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12608), 1, - aux_sym__c_word_token1, - STATE(3113), 1, - sym__c_postfix_expression, - STATE(3116), 1, - sym__c_binary_expression, - STATE(3118), 1, - sym__c_unary_expression, - ACTIONS(12231), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2948), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [279680] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11256), 1, - anon_sym_DOLLAR, - ACTIONS(11262), 1, - aux_sym_number_token2, - ACTIONS(12233), 1, - anon_sym_LPAREN, - ACTIONS(12237), 1, + anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(12239), 1, - aux_sym_number_token1, - ACTIONS(12241), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(12243), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12245), 1, anon_sym_BQUOTE, - ACTIONS(12247), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12610), 1, - aux_sym__c_word_token1, - STATE(3113), 1, - sym__c_postfix_expression, - STATE(3116), 1, - sym__c_binary_expression, - STATE(3118), 1, - sym__c_unary_expression, - ACTIONS(12231), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3005), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [279736] = 16, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [280376] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(11256), 1, - anon_sym_DOLLAR, - ACTIONS(11262), 1, - aux_sym_number_token2, - ACTIONS(12233), 1, + ACTIONS(12131), 1, anon_sym_LPAREN, - ACTIONS(12237), 1, - anon_sym_DQUOTE, - ACTIONS(12239), 1, - aux_sym_number_token1, - ACTIONS(12241), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12243), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12245), 1, - anon_sym_BQUOTE, - ACTIONS(12247), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12612), 1, - aux_sym__c_word_token1, - STATE(3113), 1, - sym__c_postfix_expression, - STATE(3116), 1, - sym__c_binary_expression, - STATE(3118), 1, - sym__c_unary_expression, - ACTIONS(12231), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2999), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [279792] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11256), 1, + ACTIONS(12135), 1, anon_sym_DOLLAR, - ACTIONS(11262), 1, - aux_sym_number_token2, - ACTIONS(12233), 1, - anon_sym_LPAREN, - ACTIONS(12237), 1, + ACTIONS(12137), 1, anon_sym_DQUOTE, - ACTIONS(12239), 1, + ACTIONS(12139), 1, aux_sym_number_token1, - ACTIONS(12241), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12243), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12245), 1, - anon_sym_BQUOTE, - ACTIONS(12247), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12614), 1, - aux_sym__c_word_token1, - STATE(3113), 1, - sym__c_postfix_expression, - STATE(3116), 1, - sym__c_binary_expression, - STATE(3118), 1, - sym__c_unary_expression, - ACTIONS(12231), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2993), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [279848] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11256), 1, - anon_sym_DOLLAR, - ACTIONS(11262), 1, + ACTIONS(12141), 1, aux_sym_number_token2, - ACTIONS(12233), 1, - anon_sym_LPAREN, - ACTIONS(12237), 1, - anon_sym_DQUOTE, - ACTIONS(12239), 1, - aux_sym_number_token1, - ACTIONS(12241), 1, + ACTIONS(12143), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12243), 1, + ACTIONS(12145), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12245), 1, + ACTIONS(12147), 1, anon_sym_BQUOTE, - ACTIONS(12247), 1, + ACTIONS(12149), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12616), 1, + ACTIONS(12656), 1, aux_sym__c_word_token1, - STATE(3113), 1, - sym__c_postfix_expression, - STATE(3116), 1, - sym__c_binary_expression, - STATE(3118), 1, + STATE(3366), 1, sym__c_unary_expression, - ACTIONS(12231), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2992), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [279904] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11256), 1, - anon_sym_DOLLAR, - ACTIONS(11262), 1, - aux_sym_number_token2, - ACTIONS(12233), 1, - anon_sym_LPAREN, - ACTIONS(12237), 1, - anon_sym_DQUOTE, - ACTIONS(12239), 1, - aux_sym_number_token1, - ACTIONS(12241), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12243), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12245), 1, - anon_sym_BQUOTE, - ACTIONS(12247), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12618), 1, - aux_sym__c_word_token1, - STATE(3113), 1, - sym__c_postfix_expression, - STATE(3116), 1, + STATE(3370), 1, sym__c_binary_expression, - STATE(3118), 1, - sym__c_unary_expression, - ACTIONS(12231), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2991), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [279960] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11256), 1, - anon_sym_DOLLAR, - ACTIONS(11262), 1, - aux_sym_number_token2, - ACTIONS(12233), 1, - anon_sym_LPAREN, - ACTIONS(12237), 1, - anon_sym_DQUOTE, - ACTIONS(12239), 1, - aux_sym_number_token1, - ACTIONS(12241), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12243), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12245), 1, - anon_sym_BQUOTE, - ACTIONS(12247), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12620), 1, - aux_sym__c_word_token1, - STATE(3113), 1, + STATE(3371), 1, sym__c_postfix_expression, - STATE(3116), 1, - sym__c_binary_expression, - STATE(3118), 1, - sym__c_unary_expression, - ACTIONS(12231), 2, + ACTIONS(12129), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3019), 7, + STATE(3453), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -309419,15 +310036,15 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [280016] = 5, + [280432] = 5, ACTIONS(71), 1, sym_comment, - STATE(5270), 1, + STATE(5246), 1, aux_sym_concatenation_repeat1, - ACTIONS(12622), 2, + ACTIONS(12348), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1261), 7, + ACTIONS(2171), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309435,240 +310052,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1263), 12, + ACTIONS(2173), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - sym__special_character, - [280050] = 16, + [280466] = 16, ACTIONS(71), 1, sym_comment, - ACTIONS(11256), 1, - anon_sym_DOLLAR, - ACTIONS(11262), 1, - aux_sym_number_token2, - ACTIONS(12233), 1, + ACTIONS(12131), 1, anon_sym_LPAREN, - ACTIONS(12237), 1, - anon_sym_DQUOTE, - ACTIONS(12239), 1, - aux_sym_number_token1, - ACTIONS(12241), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12243), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12245), 1, - anon_sym_BQUOTE, - ACTIONS(12247), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12624), 1, - aux_sym__c_word_token1, - STATE(3113), 1, - sym__c_postfix_expression, - STATE(3116), 1, - sym__c_binary_expression, - STATE(3118), 1, - sym__c_unary_expression, - ACTIONS(12231), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2965), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [280106] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11256), 1, + ACTIONS(12135), 1, anon_sym_DOLLAR, - ACTIONS(11262), 1, - aux_sym_number_token2, - ACTIONS(12233), 1, - anon_sym_LPAREN, - ACTIONS(12237), 1, + ACTIONS(12137), 1, anon_sym_DQUOTE, - ACTIONS(12239), 1, + ACTIONS(12139), 1, aux_sym_number_token1, - ACTIONS(12241), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12243), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12245), 1, - anon_sym_BQUOTE, - ACTIONS(12247), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12626), 1, - aux_sym__c_word_token1, - STATE(3113), 1, - sym__c_postfix_expression, - STATE(3116), 1, - sym__c_binary_expression, - STATE(3118), 1, - sym__c_unary_expression, - ACTIONS(12231), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2956), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [280162] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11256), 1, - anon_sym_DOLLAR, - ACTIONS(11262), 1, + ACTIONS(12141), 1, aux_sym_number_token2, - ACTIONS(12233), 1, - anon_sym_LPAREN, - ACTIONS(12237), 1, - anon_sym_DQUOTE, - ACTIONS(12239), 1, - aux_sym_number_token1, - ACTIONS(12241), 1, + ACTIONS(12143), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12243), 1, + ACTIONS(12145), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12245), 1, + ACTIONS(12147), 1, anon_sym_BQUOTE, - ACTIONS(12247), 1, + ACTIONS(12149), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12628), 1, + ACTIONS(12658), 1, aux_sym__c_word_token1, - STATE(3113), 1, - sym__c_postfix_expression, - STATE(3116), 1, - sym__c_binary_expression, - STATE(3118), 1, + STATE(3366), 1, sym__c_unary_expression, - ACTIONS(12231), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2952), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [280218] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11256), 1, - anon_sym_DOLLAR, - ACTIONS(11262), 1, - aux_sym_number_token2, - ACTIONS(12233), 1, - anon_sym_LPAREN, - ACTIONS(12237), 1, - anon_sym_DQUOTE, - ACTIONS(12239), 1, - aux_sym_number_token1, - ACTIONS(12241), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12243), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12245), 1, - anon_sym_BQUOTE, - ACTIONS(12247), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12630), 1, - aux_sym__c_word_token1, - STATE(3113), 1, - sym__c_postfix_expression, - STATE(3116), 1, + STATE(3370), 1, sym__c_binary_expression, - STATE(3118), 1, - sym__c_unary_expression, - ACTIONS(12231), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3036), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [280274] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12636), 1, - anon_sym_esac, - ACTIONS(12632), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12634), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [280306] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11256), 1, - anon_sym_DOLLAR, - ACTIONS(11262), 1, - aux_sym_number_token2, - ACTIONS(12233), 1, - anon_sym_LPAREN, - ACTIONS(12237), 1, - anon_sym_DQUOTE, - ACTIONS(12239), 1, - aux_sym_number_token1, - ACTIONS(12241), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12243), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12245), 1, - anon_sym_BQUOTE, - ACTIONS(12247), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12638), 1, - aux_sym__c_word_token1, - STATE(3113), 1, + STATE(3371), 1, sym__c_postfix_expression, - STATE(3116), 1, - sym__c_binary_expression, - STATE(3118), 1, - sym__c_unary_expression, - ACTIONS(12231), 2, + ACTIONS(12129), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2947), 7, + STATE(3364), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -309676,19 +310105,17 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [280362] = 4, + [280522] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12644), 1, - anon_sym_esac, - ACTIONS(12640), 6, + ACTIONS(12660), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12642), 15, + ACTIONS(12662), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -309696,99 +310123,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [280394] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5142), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12221), 1, - sym_file_descriptor, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5099), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(11556), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(5140), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4986), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11554), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [280436] = 15, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7789), 1, - anon_sym_DQUOTE, - ACTIONS(7797), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7809), 1, - sym_variable_name, - ACTIONS(12648), 1, - anon_sym_LPAREN, - ACTIONS(12650), 1, - anon_sym_DOLLAR, - ACTIONS(12652), 1, - anon_sym_RBRACE3, - ACTIONS(12654), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12656), 1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(12658), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6631), 1, - sym_process_substitution, - STATE(7008), 1, - sym__concatenation_in_expansion, - ACTIONS(7240), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(12646), 4, - sym__expansion_word, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(6498), 5, - sym_string, - sym_array, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [280490] = 4, + [280551] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12644), 1, - anon_sym_esac, - ACTIONS(12640), 6, + ACTIONS(12664), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12642), 15, + ACTIONS(12666), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -309804,17 +310157,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [280522] = 3, + [280580] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12640), 6, + ACTIONS(12589), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12642), 15, + ACTIONS(12591), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -309830,17 +310183,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [280551] = 3, + [280609] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12490), 6, + ACTIONS(12668), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12492), 15, + ACTIONS(12670), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -309856,15 +310209,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [280580] = 5, + [280638] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12678), 1, + anon_sym_LT_LT_LT, + ACTIONS(12680), 1, + sym_file_descriptor, + ACTIONS(11349), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(12676), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12674), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5295), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11355), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(12672), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [280679] = 5, ACTIONS(71), 1, sym_comment, - STATE(5390), 1, + STATE(5403), 1, aux_sym_concatenation_repeat1, - ACTIONS(12582), 2, + ACTIONS(12587), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(5373), 7, + ACTIONS(5593), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309872,48 +310257,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5375), 11, + ACTIONS(5595), 11, sym_file_descriptor, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [280613] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12660), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12662), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [280642] = 3, + [280712] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1336), 7, + STATE(5403), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12587), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4577), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309921,9 +310285,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1338), 14, + ACTIONS(4579), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -309934,17 +310297,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [280671] = 5, + [280745] = 5, ACTIONS(71), 1, sym_comment, - STATE(5297), 1, + STATE(5337), 1, aux_sym_concatenation_repeat1, - ACTIONS(12582), 2, + ACTIONS(12587), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(5067), 7, + ACTIONS(4593), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -309952,52 +310313,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5069), 11, + ACTIONS(4595), 11, sym_file_descriptor, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [280704] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12664), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12666), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [280733] = 5, + [280778] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(12668), 1, - sym__special_character, - STATE(5388), 1, - aux_sym__literal_repeat1, - ACTIONS(4467), 7, + STATE(5381), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12573), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5587), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310005,97 +310341,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4469), 12, + ACTIONS(5589), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [280766] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12670), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12672), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [280795] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7793), 1, - aux_sym_number_token1, - ACTIONS(7795), 1, - aux_sym_number_token2, - ACTIONS(12543), 1, - anon_sym_LPAREN, - ACTIONS(12547), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(12551), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12555), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12557), 1, - anon_sym_BQUOTE, - ACTIONS(12559), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12674), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12676), 1, - anon_sym_COLON, - ACTIONS(12678), 1, - anon_sym_RBRACE3, - ACTIONS(12680), 1, - aux_sym__simple_variable_name_token1, - STATE(6218), 1, - sym__expansion_max_length_binary_expression, - STATE(6470), 1, - sym__expansion_max_length_expression, - ACTIONS(12541), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6208), 2, - sym_number, - sym_expansion, - STATE(6780), 3, - sym_parenthesized_expression, - sym_arithmetic_expansion, - sym_command_substitution, - [280854] = 3, + [280811] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12423), 6, + ACTIONS(12358), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12425), 15, + ACTIONS(12360), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -310111,10 +310379,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [280883] = 3, + [280840] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 7, + STATE(5382), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12573), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2167), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310122,25 +310395,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1310), 14, + ACTIONS(2169), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [280912] = 3, + [280873] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 7, + STATE(5353), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12422), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5165), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310148,117 +310423,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1310), 14, + ACTIONS(5167), 11, sym_file_descriptor, - sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [280941] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12682), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12684), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [280970] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12682), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12684), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [280999] = 12, + [280906] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(4253), 1, + STATE(5337), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12587), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2171), 7, anon_sym_PIPE, - ACTIONS(4348), 1, - anon_sym_PIPE_AMP, - ACTIONS(5994), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - ACTIONS(5996), 1, - anon_sym_LT_LT_DASH, - ACTIONS(7517), 1, - anon_sym_RBRACK, - ACTIONS(12686), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(2173), 11, sym_file_descriptor, - ACTIONS(5992), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12502), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12500), 3, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(5350), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12498), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [281046] = 5, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [280939] = 5, ACTIONS(71), 1, sym_comment, - STATE(5471), 1, + STATE(5354), 1, aux_sym_concatenation_repeat1, - ACTIONS(12688), 2, + ACTIONS(12422), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1261), 7, + ACTIONS(5173), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310266,8 +310479,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1263), 11, + ACTIONS(5175), 11, sym_file_descriptor, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -310277,18 +310491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [280972] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4310), 1, + anon_sym_PIPE, + ACTIONS(4323), 1, + anon_sym_PIPE_AMP, + ACTIONS(6012), 1, + anon_sym_LT_LT, + ACTIONS(6014), 1, + anon_sym_LT_LT_DASH, + ACTIONS(7280), 1, + anon_sym_RBRACK, + ACTIONS(12682), 1, + sym_file_descriptor, + ACTIONS(6010), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12387), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12385), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5369), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12383), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [281019] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12684), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12686), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym__special_character, - [281079] = 3, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [281048] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12690), 6, + ACTIONS(12684), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12692), 15, + ACTIONS(12686), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -310304,10 +310578,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [281108] = 3, + [281077] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1344), 7, + ACTIONS(12688), 1, + sym__special_character, + STATE(5355), 1, + aux_sym__literal_repeat1, + ACTIONS(5587), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310315,9 +310593,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1346), 14, + ACTIONS(5589), 12, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -310329,17 +310606,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [281137] = 6, + [281110] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(12622), 1, - aux_sym_concatenation_token1, - ACTIONS(12694), 1, - sym__concat, - STATE(5276), 1, + STATE(5381), 1, aux_sym_concatenation_repeat1, - ACTIONS(1265), 7, + ACTIONS(12573), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5593), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310347,7 +310622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1267), 11, + ACTIONS(5595), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -310359,16 +310634,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [281172] = 6, + [281143] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(12622), 1, - aux_sym_concatenation_token1, - ACTIONS(12696), 1, - sym__concat, - STATE(5276), 1, + STATE(5382), 1, aux_sym_concatenation_repeat1, - ACTIONS(1286), 7, + ACTIONS(12573), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2171), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310376,7 +310650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1288), 11, + ACTIONS(2173), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -310388,7 +310662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [281207] = 3, + [281176] = 3, ACTIONS(71), 1, sym_comment, ACTIONS(12690), 6, @@ -310414,17 +310688,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [281236] = 3, + [281205] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12664), 6, + ACTIONS(12690), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12666), 15, + ACTIONS(12692), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -310440,26 +310714,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [281265] = 5, + [281234] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12698), 1, - sym__special_character, - STATE(5274), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 5, + ACTIONS(12694), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1364), 14, + ACTIONS(12696), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -310468,17 +310740,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [281298] = 3, + [281263] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12701), 6, + ACTIONS(12694), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12703), 15, + ACTIONS(12696), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -310494,45 +310766,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [281327] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5276), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12705), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1251), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1253), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [281360] = 3, + [281292] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12708), 6, + ACTIONS(12694), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12710), 15, + ACTIONS(12696), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -310548,71 +310792,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [281389] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5328), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12435), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4552), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(4554), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [281422] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1356), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1358), 14, - sym_file_descriptor, - sym__concat, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [281451] = 3, + [281321] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12664), 6, + ACTIONS(12694), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12666), 15, + ACTIONS(12696), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -310628,17 +310818,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [281480] = 3, + [281350] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12708), 6, + ACTIONS(12690), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12710), 15, + ACTIONS(12692), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -310654,17 +310844,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [281509] = 3, + [281379] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12682), 6, + ACTIONS(12690), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12684), 15, + ACTIONS(12692), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -310680,17 +310870,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [281538] = 3, + [281408] = 10, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11398), 1, + anon_sym_PIPE, + ACTIONS(12701), 1, + anon_sym_LT_LT, + ACTIONS(12710), 1, + anon_sym_LT_LT_DASH, + ACTIONS(12713), 1, + sym_file_descriptor, + ACTIONS(12707), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12704), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5279), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11409), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + ACTIONS(12698), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [281451] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12195), 1, + sym__special_character, + STATE(4990), 1, + aux_sym__literal_repeat1, + ACTIONS(12306), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(12304), 16, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [281484] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12682), 6, + ACTIONS(12410), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12684), 15, + ACTIONS(12412), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -310706,43 +310957,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [281567] = 3, + [281513] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1306), 14, - sym_file_descriptor, - sym__concat, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [281596] = 3, + ACTIONS(12364), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12366), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [281542] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12701), 6, + ACTIONS(12432), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12703), 15, + ACTIONS(12434), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -310758,134 +311009,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [281625] = 6, - ACTIONS(3), 1, + [281571] = 12, + ACTIONS(71), 1, sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, - sym__concat, - STATE(5392), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4554), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(4310), 1, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(4323), 1, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(6012), 1, + anon_sym_LT_LT, + ACTIONS(6014), 1, anon_sym_LT_LT_DASH, - [281660] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, - sym__concat, - STATE(5393), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4566), 2, + ACTIONS(7386), 1, + anon_sym_RBRACK, + ACTIONS(12682), 1, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 16, + ACTIONS(6010), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + ACTIONS(12387), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12385), 3, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [281695] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1352), 7, - anon_sym_PIPE, + STATE(5369), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12383), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1354), 14, - sym_file_descriptor, - sym__concat, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [281724] = 12, + [281618] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(4253), 1, + ACTIONS(4310), 1, anon_sym_PIPE, - ACTIONS(4348), 1, + ACTIONS(4323), 1, anon_sym_PIPE_AMP, - ACTIONS(5994), 1, + ACTIONS(6012), 1, anon_sym_LT_LT, - ACTIONS(5996), 1, + ACTIONS(6014), 1, anon_sym_LT_LT_DASH, - ACTIONS(7561), 1, + ACTIONS(7454), 1, anon_sym_RBRACK, - ACTIONS(12686), 1, + ACTIONS(12682), 1, sym_file_descriptor, - ACTIONS(5992), 2, + ACTIONS(6010), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12502), 2, + ACTIONS(12387), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(12500), 3, + ACTIONS(12385), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(5350), 3, + STATE(5369), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(12498), 5, + ACTIONS(12383), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [281771] = 5, + [281665] = 6, ACTIONS(71), 1, sym_comment, - STATE(5322), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12435), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4564), 7, + ACTIONS(12716), 1, + sym_variable_name, + STATE(6769), 1, + sym_subscript, + STATE(5286), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11292), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310893,29 +311097,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4566), 11, + ACTIONS(11294), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [281804] = 3, + [281700] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12701), 6, + ACTIONS(12426), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12703), 15, + ACTIONS(12428), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -310931,100 +311134,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [281833] = 5, + [281729] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(12668), 1, - sym__special_character, - STATE(5388), 1, - aux_sym__literal_repeat1, - ACTIONS(4564), 7, + ACTIONS(4310), 1, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4323), 1, + anon_sym_PIPE_AMP, + ACTIONS(6012), 1, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(4566), 12, + ACTIONS(6014), 1, + anon_sym_LT_LT_DASH, + ACTIONS(7426), 1, + anon_sym_RBRACK, + ACTIONS(12682), 1, sym_file_descriptor, + ACTIONS(6010), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, + ACTIONS(12387), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [281866] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, - sym__concat, - STATE(5392), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2074), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2072), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + ACTIONS(12385), 3, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [281901] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1340), 7, - anon_sym_PIPE, + STATE(5369), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12383), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1342), 14, - sym_file_descriptor, - sym__concat, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [281930] = 3, + [281776] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12664), 6, + ACTIONS(12619), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12666), 15, + ACTIONS(12621), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -311040,17 +311195,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [281959] = 3, + [281805] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12690), 6, + ACTIONS(12575), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12692), 15, + ACTIONS(12577), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -311066,72 +311221,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [281988] = 6, + [281834] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12582), 1, - aux_sym_concatenation_token1, - ACTIONS(12712), 1, - sym__concat, - STATE(5374), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1265), 7, + ACTIONS(12575), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12577), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [281863] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12364), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12366), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [281892] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12375), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12377), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [281921] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12627), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12629), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [281950] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12728), 1, + anon_sym_LT_LT_LT, + ACTIONS(12731), 1, + sym_file_descriptor, + ACTIONS(11365), 2, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1267), 11, - sym_file_descriptor, - sym_variable_name, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12725), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12722), 3, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + STATE(5295), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11373), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - [282023] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1320), 7, - anon_sym_PIPE, + ACTIONS(12719), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1322), 14, - sym_file_descriptor, - sym__concat, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [282052] = 3, + [281991] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12690), 6, + ACTIONS(12404), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12692), 15, + ACTIONS(12406), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -311147,80 +311383,303 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [282081] = 5, - ACTIONS(71), 1, + [282020] = 8, + ACTIONS(3), 1, sym_comment, - STATE(5271), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12622), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4370), 7, + ACTIONS(11548), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12734), 1, + sym_file_descriptor, + ACTIONS(4705), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(12326), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5301), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11546), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12324), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4372), 11, + anon_sym_GT_PIPE, + [282059] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11466), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12328), 1, + anon_sym_LT_LT_LT, + ACTIONS(12736), 1, sym_file_descriptor, + ACTIONS(12326), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4968), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11464), 6, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(12324), 8, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [282098] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4310), 2, + anon_sym_PIPE, anon_sym_PIPE_AMP, + ACTIONS(4327), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(5297), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4325), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [282114] = 5, - ACTIONS(71), 1, + [282131] = 4, + ACTIONS(3), 1, sym_comment, - STATE(5270), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12622), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4564), 7, + ACTIONS(4327), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(5297), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4325), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4566), 11, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [282162] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11409), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12744), 1, sym_file_descriptor, + ACTIONS(11904), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(12741), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5301), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11398), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PIPE_AMP, + ACTIONS(12738), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, + [282201] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11416), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12328), 1, + anon_sym_LT_LT_LT, + ACTIONS(12736), 1, + sym_file_descriptor, + ACTIONS(12326), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + STATE(4976), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11414), 6, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, + ACTIONS(12324), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [282240] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11450), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12328), 1, anon_sym_LT_LT_LT, - [282147] = 3, + ACTIONS(12736), 1, + sym_file_descriptor, + ACTIONS(12326), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4998), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11448), 6, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(12324), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [282279] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5838), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12734), 1, + sym_file_descriptor, + ACTIONS(4310), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4705), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5836), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12326), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5297), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12324), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [282320] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(12405), 6, - anon_sym_LPAREN, + ACTIONS(4310), 1, + anon_sym_PIPE, + ACTIONS(4323), 1, + anon_sym_PIPE_AMP, + ACTIONS(6012), 1, + anon_sym_LT_LT, + ACTIONS(6014), 1, + anon_sym_LT_LT_DASH, + ACTIONS(7462), 1, + anon_sym_RBRACK, + ACTIONS(12682), 1, + sym_file_descriptor, + ACTIONS(6010), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12387), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12385), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5369), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12383), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [282367] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12747), 1, + sym__special_character, + STATE(5306), 1, + aux_sym__literal_repeat1, + ACTIONS(1360), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12407), 15, + ACTIONS(1362), 14, sym_test_operator, - sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -311229,45 +311688,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [282176] = 5, + [282400] = 3, ACTIONS(71), 1, sym_comment, - STATE(5271), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12622), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4552), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(4554), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [282209] = 3, + ACTIONS(12595), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12597), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [282429] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12368), 6, + ACTIONS(12543), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12370), 15, + ACTIONS(12545), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -311283,75 +311740,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [282238] = 6, - ACTIONS(3), 1, + [282458] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, - sym__concat, - STATE(5393), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5697), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5695), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12688), 1, + sym__special_character, + STATE(5355), 1, + aux_sym__literal_repeat1, + ACTIONS(5593), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [282273] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, - sym__concat, - STATE(5392), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4372), 2, + ACTIONS(5595), 12, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [282308] = 3, + anon_sym_LT_LT_LT, + [282491] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12399), 6, + ACTIONS(12543), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12401), 15, + ACTIONS(12545), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -311367,17 +311794,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [282337] = 3, + [282520] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12701), 6, + ACTIONS(12404), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12703), 15, + ACTIONS(12406), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -311393,17 +311820,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [282366] = 3, + [282549] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12714), 6, + ACTIONS(12350), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12716), 15, + ACTIONS(12352), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -311419,17 +311846,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [282395] = 3, + [282578] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12714), 6, + ACTIONS(12350), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12716), 15, + ACTIONS(12352), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -311445,17 +311872,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [282424] = 3, + [282607] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12393), 6, + ACTIONS(12375), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12395), 15, + ACTIONS(12377), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -311471,46 +311898,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [282453] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, - sym__concat, - STATE(5393), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4469), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [282488] = 3, + [282636] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12714), 6, + ACTIONS(12450), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12716), 15, + ACTIONS(12452), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -311526,17 +311924,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [282517] = 3, + [282665] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12714), 6, + ACTIONS(12438), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12716), 15, + ACTIONS(12440), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -311552,52 +311950,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [282546] = 12, + [282694] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4253), 1, - anon_sym_PIPE, - ACTIONS(4348), 1, - anon_sym_PIPE_AMP, - ACTIONS(5994), 1, - anon_sym_LT_LT, - ACTIONS(5996), 1, - anon_sym_LT_LT_DASH, - ACTIONS(7463), 1, - anon_sym_RBRACK, - ACTIONS(12686), 1, - sym_file_descriptor, - ACTIONS(5992), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(12502), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12500), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5350), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12498), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [282593] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12718), 6, + ACTIONS(12750), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12720), 15, + ACTIONS(12752), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -311613,107 +311976,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [282622] = 12, - ACTIONS(71), 1, + [282723] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(4253), 1, + ACTIONS(5843), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12734), 1, + sym_file_descriptor, + ACTIONS(4310), 2, anon_sym_PIPE, - ACTIONS(4348), 1, anon_sym_PIPE_AMP, - ACTIONS(5994), 1, + ACTIONS(4705), 2, anon_sym_LT_LT, - ACTIONS(5996), 1, anon_sym_LT_LT_DASH, - ACTIONS(7557), 1, - anon_sym_RBRACK, - ACTIONS(12686), 1, - sym_file_descriptor, - ACTIONS(5992), 2, + ACTIONS(5836), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12502), 2, + ACTIONS(12326), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(12500), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5350), 3, + STATE(5297), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(12498), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [282669] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, - sym__concat, - STATE(5393), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5723), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5721), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(12324), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [282704] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12382), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12384), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [282733] = 3, + [282764] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12376), 6, + ACTIONS(12754), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12378), 15, + ACTIONS(12756), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -311729,17 +312034,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [282762] = 3, + [282793] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12722), 6, + ACTIONS(12754), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12724), 15, + ACTIONS(12756), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -311755,81 +312060,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [282791] = 6, + [282822] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(12435), 1, - aux_sym_concatenation_token1, - ACTIONS(12726), 1, - sym__concat, - STATE(5349), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1265), 7, + ACTIONS(4310), 1, anon_sym_PIPE, + ACTIONS(4323), 1, + anon_sym_PIPE_AMP, + ACTIONS(6012), 1, + anon_sym_LT_LT, + ACTIONS(6014), 1, + anon_sym_LT_LT_DASH, + ACTIONS(7492), 1, + anon_sym_RBRACK, + ACTIONS(12682), 1, + sym_file_descriptor, + ACTIONS(6010), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12387), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12385), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5369), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12383), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1267), 11, + [282869] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(12758), 1, + sym__concat, + STATE(4287), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1266), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [282826] = 5, - ACTIONS(71), 1, + [282904] = 6, + ACTIONS(3), 1, sym_comment, - STATE(5270), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12622), 2, - sym__concat, + ACTIONS(11604), 1, aux_sym_concatenation_token1, - ACTIONS(4467), 7, + ACTIONS(12760), 1, + sym__concat, + STATE(4287), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1286), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(4469), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [282859] = 3, + [282939] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(12350), 6, - anon_sym_LPAREN, + ACTIONS(12762), 1, + sym__special_character, + STATE(5306), 1, + aux_sym__literal_repeat1, + ACTIONS(5315), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12352), 15, + ACTIONS(5317), 14, sym_test_operator, - sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, @@ -311838,17 +312181,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [282888] = 3, + [282972] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4310), 1, + anon_sym_PIPE, + ACTIONS(4323), 1, + anon_sym_PIPE_AMP, + ACTIONS(6012), 1, + anon_sym_LT_LT, + ACTIONS(6014), 1, + anon_sym_LT_LT_DASH, + ACTIONS(7502), 1, + anon_sym_RBRACK, + ACTIONS(12682), 1, + sym_file_descriptor, + ACTIONS(6010), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12387), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12385), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5369), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12383), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [283019] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12728), 6, + ACTIONS(12438), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12730), 15, + ACTIONS(12440), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -311864,17 +312242,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [282917] = 3, + [283048] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12376), 6, + ACTIONS(12450), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12378), 15, + ACTIONS(12452), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -311890,42 +312268,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [282946] = 3, + [283077] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1316), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1318), 14, - sym_file_descriptor, + STATE(5403), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12587), 2, sym__concat, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [282975] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12435), 1, - aux_sym_concatenation_token1, - ACTIONS(12732), 1, - sym__concat, - STATE(5349), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1286), 7, + ACTIONS(5587), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311933,7 +312284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1288), 11, + ACTIONS(5589), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311945,67 +312296,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [283010] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12708), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12710), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [283039] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12708), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12710), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [283068] = 5, + [283110] = 5, ACTIONS(71), 1, sym_comment, - STATE(5328), 1, + STATE(5337), 1, aux_sym_concatenation_repeat1, - ACTIONS(12435), 2, + ACTIONS(12587), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(2072), 7, + ACTIONS(2167), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312013,7 +312312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2074), 11, + ACTIONS(2169), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312025,17 +312324,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [283101] = 3, + [283143] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12368), 6, + ACTIONS(12764), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12370), 15, + ACTIONS(12766), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -312051,17 +312350,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [283130] = 3, + [283172] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12356), 6, + ACTIONS(12768), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12358), 15, + ACTIONS(12770), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -312077,17 +312376,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [283159] = 3, + [283201] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12447), 6, + ACTIONS(12772), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12449), 15, + ACTIONS(12774), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -312103,17 +312402,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [283188] = 3, + [283230] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12490), 6, + ACTIONS(12776), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12492), 15, + ACTIONS(12778), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -312129,17 +312428,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [283217] = 3, + [283259] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12632), 6, + ACTIONS(12776), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12634), 15, + ACTIONS(12778), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -312155,10 +312454,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [283246] = 3, + [283288] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 7, + STATE(5337), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12587), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4511), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312166,9 +312470,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1314), 14, + ACTIONS(4513), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -312179,19 +312482,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [283275] = 3, + [283321] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12640), 6, + ACTIONS(12776), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12642), 15, + ACTIONS(12778), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -312207,43 +312508,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [283304] = 3, + [283350] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(12467), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12469), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [283333] = 3, + ACTIONS(12587), 1, + aux_sym_concatenation_token1, + ACTIONS(12780), 1, + sym__concat, + STATE(5339), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1288), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [283385] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12429), 6, + ACTIONS(12776), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12431), 15, + ACTIONS(12778), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -312259,69 +312563,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [283362] = 3, + [283414] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(12734), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12736), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [283391] = 3, + STATE(5339), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12782), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1276), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1278), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [283447] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(12467), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12469), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(12688), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [283420] = 3, + STATE(5355), 1, + aux_sym__literal_repeat1, + ACTIONS(4426), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(4428), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [283480] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12356), 6, + ACTIONS(12754), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12358), 15, + ACTIONS(12756), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -312337,17 +312645,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [283449] = 3, + [283509] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12350), 6, + ACTIONS(12754), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12352), 15, + ACTIONS(12756), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -312363,43 +312671,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [283478] = 3, + [283538] = 12, ACTIONS(71), 1, sym_comment, - ACTIONS(12362), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12364), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [283507] = 3, + ACTIONS(4310), 1, + anon_sym_PIPE, + ACTIONS(4323), 1, + anon_sym_PIPE_AMP, + ACTIONS(6012), 1, + anon_sym_LT_LT, + ACTIONS(6014), 1, + anon_sym_LT_LT_DASH, + ACTIONS(7496), 1, + anon_sym_RBRACK, + ACTIONS(12682), 1, + sym_file_descriptor, + ACTIONS(6010), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12387), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12385), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5369), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12383), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [283585] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1296), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1298), 14, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [283614] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12362), 6, + ACTIONS(12785), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12364), 15, + ACTIONS(12787), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -312415,15 +312758,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [283536] = 5, + [283643] = 3, ACTIONS(71), 1, sym_comment, - STATE(5328), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12435), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4370), 7, + ACTIONS(1304), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312431,8 +312769,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4372), 11, + ACTIONS(1306), 14, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -312443,15 +312782,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [283569] = 5, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [283672] = 3, ACTIONS(71), 1, sym_comment, - STATE(5322), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12435), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4467), 7, + ACTIONS(1276), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312459,8 +312795,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4469), 11, + ACTIONS(1278), 14, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -312471,15 +312808,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [283602] = 5, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [283701] = 3, ACTIONS(71), 1, sym_comment, - STATE(5349), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12738), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1251), 7, + ACTIONS(1308), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312487,8 +312821,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1253), 11, + ACTIONS(1310), 14, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -312499,76 +312834,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [283635] = 10, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5994), 1, - anon_sym_LT_LT, - ACTIONS(5996), 1, - anon_sym_LT_LT_DASH, - ACTIONS(11453), 1, - anon_sym_PIPE, - ACTIONS(12686), 1, - sym_file_descriptor, - ACTIONS(12502), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12500), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5382), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11455), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - ACTIONS(12498), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [283678] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12276), 1, - sym__special_character, - STATE(5021), 1, - aux_sym__literal_repeat1, - ACTIONS(12313), 3, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(12311), 16, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [283711] = 5, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [283730] = 3, ACTIONS(71), 1, sym_comment, - STATE(5271), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12622), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2072), 7, + ACTIONS(1312), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312576,139 +312847,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2074), 11, + ACTIONS(1314), 14, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [283744] = 3, - ACTIONS(71), 1, + aux_sym_concatenation_token1, + [283759] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(12741), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(7794), 1, aux_sym_number_token1, + ACTIONS(7796), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12743), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [283773] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12745), 6, + ACTIONS(12553), 1, anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12747), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(12557), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(12561), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(12565), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12567), 1, anon_sym_BQUOTE, + ACTIONS(12569), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [283802] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12734), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12736), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, + ACTIONS(12789), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12791), 1, + anon_sym_COLON, + ACTIONS(12793), 1, + anon_sym_RBRACE3, + ACTIONS(12795), 1, + aux_sym__simple_variable_name_token1, + STATE(6214), 1, + sym__expansion_max_length_binary_expression, + STATE(6452), 1, + sym__expansion_max_length_expression, + ACTIONS(12551), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [283831] = 12, + STATE(6218), 2, + sym_number, + sym_expansion, + STATE(6755), 3, + sym_parenthesized_expression, + sym_arithmetic_expansion, + sym_command_substitution, + [283818] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4253), 1, + ACTIONS(1316), 7, anon_sym_PIPE, - ACTIONS(4348), 1, - anon_sym_PIPE_AMP, - ACTIONS(5994), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - ACTIONS(5996), 1, - anon_sym_LT_LT_DASH, - ACTIONS(7551), 1, - anon_sym_RBRACK, - ACTIONS(12686), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1318), 14, sym_file_descriptor, - ACTIONS(5992), 2, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12502), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12500), 3, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(5350), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12498), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [283878] = 5, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [283847] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12668), 1, - sym__special_character, - STATE(5388), 1, - aux_sym__literal_repeat1, - ACTIONS(5695), 7, + ACTIONS(1300), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312716,8 +312940,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5697), 12, + ACTIONS(1302), 14, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -312729,50 +312954,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [283911] = 12, + aux_sym_concatenation_token1, + [283876] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(4253), 1, + ACTIONS(12422), 1, + aux_sym_concatenation_token1, + ACTIONS(12797), 1, + sym__concat, + STATE(5356), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1266), 7, anon_sym_PIPE, - ACTIONS(4348), 1, - anon_sym_PIPE_AMP, - ACTIONS(5994), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - ACTIONS(5996), 1, - anon_sym_LT_LT_DASH, - ACTIONS(7374), 1, - anon_sym_RBRACK, - ACTIONS(12686), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1268), 11, sym_file_descriptor, - ACTIONS(5992), 2, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12502), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12500), 3, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(5350), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12498), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [283958] = 5, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [283911] = 6, ACTIONS(71), 1, sym_comment, - STATE(5270), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12622), 2, - sym__concat, + ACTIONS(12422), 1, aux_sym_concatenation_token1, - ACTIONS(5695), 7, + ACTIONS(12799), 1, + sym__concat, + STATE(5356), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312780,8 +313001,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5697), 11, + ACTIONS(1288), 11, sym_file_descriptor, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -312791,18 +313013,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [283991] = 6, + [283946] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(12749), 1, - sym_variable_name, - STATE(6737), 1, - sym_subscript, - STATE(5385), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11327), 7, + ACTIONS(12801), 1, + sym__special_character, + STATE(5355), 1, + aux_sym__literal_repeat1, + ACTIONS(1360), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312810,120 +313028,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11329), 10, + ACTIONS(1362), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284026] = 12, + anon_sym_LT_LT_LT, + [283979] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(4253), 1, + STATE(5356), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12804), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1276), 7, anon_sym_PIPE, - ACTIONS(4348), 1, - anon_sym_PIPE_AMP, - ACTIONS(5994), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - ACTIONS(5996), 1, - anon_sym_LT_LT_DASH, - ACTIONS(7563), 1, - anon_sym_RBRACK, - ACTIONS(12686), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1278), 11, sym_file_descriptor, - ACTIONS(5992), 2, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12502), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12500), 3, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(5350), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12498), 5, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [284012] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5381), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12573), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4426), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [284073] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12757), 1, - anon_sym_LT_LT_LT, - ACTIONS(12759), 1, + ACTIONS(4428), 11, sym_file_descriptor, - ACTIONS(11357), 2, - anon_sym_PIPE, - anon_sym_LT_LT, - ACTIONS(12755), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12753), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5363), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11363), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - ACTIONS(12751), 5, + anon_sym_LT_LT_LT, + [284045] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5382), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12573), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4511), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [284114] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12770), 1, - anon_sym_LT_LT_LT, - ACTIONS(12773), 1, + ACTIONS(4513), 11, sym_file_descriptor, - ACTIONS(11307), 2, - anon_sym_PIPE, - anon_sym_LT_LT, - ACTIONS(12767), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12764), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5363), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11315), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - ACTIONS(12761), 5, + anon_sym_LT_LT_LT, + [284078] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12688), 1, + sym__special_character, + STATE(5355), 1, + aux_sym__literal_repeat1, + ACTIONS(4577), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [284155] = 3, + ACTIONS(4579), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [284111] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1348), 7, + ACTIONS(1320), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312931,7 +313164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1350), 14, + ACTIONS(1322), 14, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -312946,191 +313179,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [284184] = 5, + [284140] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12776), 1, - sym__special_character, - STATE(5274), 1, - aux_sym__literal_repeat1, - ACTIONS(5393), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5395), 14, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [284217] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11455), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12778), 1, - sym_file_descriptor, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(12346), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5370), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11453), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1324), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12344), 8, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [284256] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11535), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12317), 1, - anon_sym_LT_LT_LT, - ACTIONS(12780), 1, + ACTIONS(1326), 14, sym_file_descriptor, - ACTIONS(12346), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4877), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11533), 6, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - ACTIONS(12344), 8, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [284169] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1328), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [284295] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4272), 2, + ACTIONS(1330), 14, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(5366), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4270), 14, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284328] = 4, - ACTIONS(3), 1, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [284198] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(4272), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(5366), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4270), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1332), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1334), 14, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284359] = 8, - ACTIONS(3), 1, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [284227] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(11431), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12788), 1, - sym_file_descriptor, - ACTIONS(11920), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(12785), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5370), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11420), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1336), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12782), 8, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1338), 14, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - [284398] = 5, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [284256] = 3, ACTIONS(71), 1, sym_comment, - STATE(5322), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12435), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5721), 7, + ACTIONS(1340), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -313138,8 +313294,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5723), 11, + ACTIONS(1342), 14, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -313150,46 +313307,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284431] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11414), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12317), 1, anon_sym_LT_LT_LT, - ACTIONS(12780), 1, - sym_file_descriptor, - ACTIONS(12346), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4868), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11412), 6, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(12344), 8, + aux_sym_concatenation_token1, + [284285] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1292), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1294), 14, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - [284470] = 5, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [284314] = 3, ACTIONS(71), 1, sym_comment, - STATE(5270), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12622), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5721), 7, + ACTIONS(1348), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -313197,27 +313346,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5723), 11, + ACTIONS(1350), 14, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [284503] = 5, + aux_sym_concatenation_token1, + [284343] = 3, ACTIONS(71), 1, sym_comment, - STATE(5374), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12791), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1251), 7, + ACTIONS(1352), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -313225,57 +313372,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1253), 11, + ACTIONS(1354), 14, sym_file_descriptor, - sym_variable_name, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284536] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11506), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12317), 1, anon_sym_LT_LT_LT, - ACTIONS(12780), 1, + aux_sym_concatenation_token1, + [284372] = 10, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6012), 1, + anon_sym_LT_LT, + ACTIONS(6014), 1, + anon_sym_LT_LT_DASH, + ACTIONS(11546), 1, + anon_sym_PIPE, + ACTIONS(12682), 1, sym_file_descriptor, - ACTIONS(12346), 2, + ACTIONS(12387), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5017), 2, + ACTIONS(12385), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5279), 3, sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11504), 6, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11548), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(12344), 8, + anon_sym_RBRACK, + ACTIONS(12383), 5, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [284575] = 5, + [284415] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12668), 1, - sym__special_character, - STATE(5388), 1, - aux_sym__literal_repeat1, - ACTIONS(5721), 7, + ACTIONS(1356), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -313283,8 +313431,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5723), 12, + ACTIONS(1358), 14, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -313296,15 +313445,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [284608] = 5, + aux_sym_concatenation_token1, + [284444] = 3, ACTIONS(71), 1, sym_comment, - STATE(5322), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12435), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5695), 7, + ACTIONS(1344), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -313312,8 +313457,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5697), 11, + ACTIONS(1346), 14, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -313324,15 +313470,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284641] = 5, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [284473] = 3, ACTIONS(71), 1, sym_comment, - STATE(5271), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12622), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2094), 7, + ACTIONS(1356), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -313340,27 +313483,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2096), 11, + ACTIONS(1358), 14, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [284674] = 5, + aux_sym_concatenation_token1, + [284502] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12684), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12686), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [284531] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12684), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12686), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [284560] = 5, ACTIONS(71), 1, sym_comment, - STATE(5328), 1, + STATE(5381), 1, aux_sym_concatenation_repeat1, - ACTIONS(12435), 2, + ACTIONS(12573), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(2094), 7, + ACTIONS(4577), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -313368,22 +313566,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2096), 11, + ACTIONS(4579), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284707] = 3, + anon_sym_LT_LT_LT, + [284593] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1324), 7, + STATE(5382), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12573), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4593), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -313391,129 +313594,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1326), 14, + ACTIONS(4595), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [284736] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5942), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12778), 1, - sym_file_descriptor, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5940), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(12346), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5366), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12344), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [284777] = 10, + [284626] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11420), 1, + ACTIONS(12807), 1, + sym_variable_name, + STATE(6769), 1, + sym_subscript, + STATE(5286), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11307), 7, anon_sym_PIPE, - ACTIONS(12797), 1, - anon_sym_LT_LT, - ACTIONS(12806), 1, - anon_sym_LT_LT_DASH, - ACTIONS(12809), 1, - sym_file_descriptor, - ACTIONS(12803), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12800), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5382), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11431), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - ACTIONS(12794), 5, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [284820] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5944), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12778), 1, + ACTIONS(11309), 10, sym_file_descriptor, - ACTIONS(4253), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5940), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12346), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5366), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12344), 8, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, - [284861] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [284661] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12670), 6, + ACTIONS(12809), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12672), 15, + ACTIONS(12811), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -313529,46 +313661,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [284890] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12812), 1, - sym_variable_name, - STATE(6737), 1, - sym_subscript, - STATE(5385), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11288), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(11290), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [284925] = 3, + [284690] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12734), 6, + ACTIONS(12809), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12736), 15, + ACTIONS(12811), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -313584,40 +313687,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [284954] = 3, + [284719] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1251), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1253), 14, - sym_file_descriptor, + STATE(5475), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12813), 2, sym__concat, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [284983] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12815), 1, - sym__special_character, - STATE(5388), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 7, + ACTIONS(1272), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -313625,23 +313703,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1364), 12, + ACTIONS(1274), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [285016] = 3, + sym__special_character, + [284752] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 7, + ACTIONS(12573), 1, + aux_sym_concatenation_token1, + ACTIONS(12815), 1, + sym__concat, + STATE(5384), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1266), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -313649,29 +313732,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1298), 14, + ACTIONS(1268), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [285045] = 6, + [284787] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(12582), 1, + ACTIONS(12573), 1, aux_sym_concatenation_token1, - ACTIONS(12818), 1, + ACTIONS(12817), 1, sym__concat, - STATE(5374), 1, + STATE(5384), 1, aux_sym_concatenation_repeat1, ACTIONS(1286), 7, anon_sym_PIPE, @@ -313683,7 +313763,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP, ACTIONS(1288), 11, sym_file_descriptor, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -313693,17 +313772,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [285080] = 3, + anon_sym_LT_LT_LT, + [284822] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12820), 6, + ACTIONS(12819), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12822), 15, + ACTIONS(12821), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -313719,110 +313799,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [285109] = 6, - ACTIONS(3), 1, + [284851] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(12824), 1, - sym__concat, - STATE(4268), 1, + STATE(5384), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12823), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1276), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [285144] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(12826), 1, - sym__concat, - STATE(4268), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1267), 2, + ACTIONS(1278), 11, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [285179] = 12, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4253), 1, - anon_sym_PIPE, - ACTIONS(4348), 1, - anon_sym_PIPE_AMP, - ACTIONS(5994), 1, - anon_sym_LT_LT, - ACTIONS(5996), 1, - anon_sym_LT_LT_DASH, - ACTIONS(7543), 1, - anon_sym_RBRACK, - ACTIONS(12686), 1, - sym_file_descriptor, - ACTIONS(5992), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(12502), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12500), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5350), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12498), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [285226] = 3, + anon_sym_LT_LT_LT, + [284884] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12734), 6, + ACTIONS(12826), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12736), 15, + ACTIONS(12828), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -313838,17 +313853,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [285255] = 3, + [284913] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12670), 6, + ACTIONS(12826), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12672), 15, + ACTIONS(12828), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -313864,17 +313879,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [285284] = 3, + [284942] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12828), 6, + ACTIONS(12826), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12830), 15, + ACTIONS(12828), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -313890,98 +313905,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [285313] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11651), 1, - aux_sym_concatenation_token1, - ACTIONS(11653), 1, - sym__concat, - STATE(5392), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2096), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2094), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [285348] = 3, + [284971] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1328), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1330), 14, - sym_file_descriptor, - sym__concat, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [285377] = 3, + ACTIONS(12826), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12828), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [285000] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1294), 14, - sym_file_descriptor, - sym__concat, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [285406] = 3, + ACTIONS(12809), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12811), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [285029] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12670), 6, + ACTIONS(12809), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12672), 15, + ACTIONS(12811), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -313997,365 +313983,299 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [285435] = 3, - ACTIONS(71), 1, + [285058] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1332), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1334), 14, - sym_file_descriptor, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(11606), 1, sym__concat, + STATE(5322), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5589), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5587), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [285464] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1300), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1302), 14, - sym_file_descriptor, - sym__concat, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [285493] = 3, - ACTIONS(71), 1, + [285093] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1332), 7, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(11606), 1, + sym__concat, + STATE(5323), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2169), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2167), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1334), 13, - sym_file_descriptor, - sym__concat, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [285521] = 9, - ACTIONS(71), 1, + [285128] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(12473), 1, - anon_sym_LT_LT_LT, - ACTIONS(12838), 1, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(11606), 1, + sym__concat, + STATE(5322), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4428), 2, sym_file_descriptor, - ACTIONS(11504), 2, - anon_sym_PIPE, - anon_sym_LT_LT, - ACTIONS(12836), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5695), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(12834), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(11506), 4, + aux_sym_heredoc_redirect_token1, + ACTIONS(4426), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(12832), 5, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [285561] = 11, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4253), 1, - anon_sym_PIPE, - ACTIONS(4348), 1, - anon_sym_PIPE_AMP, - ACTIONS(5994), 1, anon_sym_LT_LT, - ACTIONS(5996), 1, - anon_sym_LT_LT_DASH, - ACTIONS(12686), 1, - sym_file_descriptor, - ACTIONS(5992), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(12502), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12500), 3, anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5350), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12498), 5, - anon_sym_LT, - anon_sym_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [285605] = 6, - ACTIONS(71), 1, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [285163] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(12688), 1, + ACTIONS(11604), 1, aux_sym_concatenation_token1, - ACTIONS(12840), 1, + ACTIONS(11606), 1, sym__concat, - STATE(5411), 1, + STATE(5323), 1, aux_sym_concatenation_repeat1, - ACTIONS(1286), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1288), 10, + ACTIONS(4513), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4511), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [285639] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12842), 1, - sym__special_character, - STATE(5479), 1, - aux_sym__literal_repeat1, - ACTIONS(5067), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(5069), 11, - sym_file_descriptor, - sym_variable_name, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [285671] = 3, - ACTIONS(71), 1, + [285198] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1350), 13, - sym_file_descriptor, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(11606), 1, sym__concat, - sym_variable_name, + STATE(5322), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5595), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5593), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [285699] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1261), 8, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - sym__special_character, - ACTIONS(1263), 12, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [285727] = 5, - ACTIONS(71), 1, + [285233] = 6, + ACTIONS(3), 1, sym_comment, - STATE(5411), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12844), 2, - sym__concat, + ACTIONS(11604), 1, aux_sym_concatenation_token1, - ACTIONS(1251), 7, + ACTIONS(11606), 1, + sym__concat, + STATE(5323), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2173), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2171), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1253), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [285759] = 5, - ACTIONS(71), 1, + [285268] = 6, + ACTIONS(3), 1, sym_comment, - STATE(5407), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12688), 2, - sym__concat, + ACTIONS(11604), 1, aux_sym_concatenation_token1, - ACTIONS(4370), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(4372), 10, + ACTIONS(11606), 1, + sym__concat, + STATE(5322), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4579), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4577), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [285791] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1324), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1326), 13, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [285819] = 3, - ACTIONS(71), 1, + [285303] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 7, + ACTIONS(11604), 1, + aux_sym_concatenation_token1, + ACTIONS(11606), 1, + sym__concat, + STATE(5323), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4595), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4593), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1294), 13, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [285847] = 5, + [285338] = 3, ACTIONS(71), 1, sym_comment, - STATE(5407), 1, + ACTIONS(12664), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12666), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [285367] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12664), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12666), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [285396] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(5403), 1, aux_sym_concatenation_repeat1, - ACTIONS(12688), 2, + ACTIONS(12587), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4552), 7, + ACTIONS(4426), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -314363,31 +314283,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4554), 10, + ACTIONS(4428), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [285879] = 3, + [285429] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1261), 5, + ACTIONS(12664), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1263), 15, + ACTIONS(12666), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, @@ -314399,15 +314321,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [285907] = 5, + [285458] = 6, ACTIONS(71), 1, sym_comment, - STATE(5471), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12688), 2, - sym__concat, + ACTIONS(12587), 1, aux_sym_concatenation_token1, - ACTIONS(5695), 7, + ACTIONS(12830), 1, + sym__concat, + STATE(5339), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1266), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -314415,26 +314338,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5697), 10, + ACTIONS(1268), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [285939] = 5, + [285493] = 3, ACTIONS(71), 1, sym_comment, - STATE(5407), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12688), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2072), 7, + ACTIONS(1344), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -314442,8 +314361,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2074), 10, + ACTIONS(1346), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -314453,14 +314373,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [285971] = 4, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [285521] = 3, ACTIONS(71), 1, sym_comment, - STATE(5436), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4270), 7, + ACTIONS(1356), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -314468,8 +314386,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4272), 10, + ACTIONS(1358), 13, sym_file_descriptor, + sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -314479,65 +314399,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [286001] = 5, + aux_sym_concatenation_token1, + [285549] = 6, ACTIONS(71), 1, sym_comment, - STATE(5471), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12688), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4467), 7, + ACTIONS(4310), 1, anon_sym_PIPE, + ACTIONS(4323), 1, + anon_sym_PIPE_AMP, + STATE(5473), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4325), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4469), 10, + ACTIONS(4327), 9, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [286033] = 6, + [285583] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(4253), 1, + ACTIONS(12832), 1, + sym__special_character, + STATE(5443), 1, + aux_sym__literal_repeat1, + ACTIONS(4577), 7, anon_sym_PIPE, - ACTIONS(4348), 1, - anon_sym_PIPE_AMP, - STATE(5436), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4270), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4272), 9, + ACTIONS(4579), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [286067] = 3, + [285615] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1316), 7, + ACTIONS(12834), 1, + sym__special_character, + STATE(5417), 1, + aux_sym__literal_repeat1, + ACTIONS(5587), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -314545,10 +314470,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1318), 13, + ACTIONS(5589), 11, sym_file_descriptor, - sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -314558,46 +314481,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [286095] = 9, + anon_sym_LT_LT_LT, + [285647] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(12473), 1, + ACTIONS(12416), 1, anon_sym_LT_LT_LT, - ACTIONS(12838), 1, + ACTIONS(12842), 1, sym_file_descriptor, - ACTIONS(11533), 2, + ACTIONS(11414), 2, anon_sym_PIPE, anon_sym_LT_LT, - ACTIONS(12836), 2, + ACTIONS(12840), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5672), 2, + STATE(5663), 2, sym_file_redirect, sym_herestring_redirect, - ACTIONS(12834), 3, + ACTIONS(12838), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(11535), 4, + ACTIONS(11416), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(12832), 5, + ACTIONS(12836), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [286135] = 5, + [285687] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12847), 1, - sym__special_character, - STATE(5426), 1, - aux_sym__literal_repeat1, - ACTIONS(5721), 7, + STATE(5473), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4325), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -314605,170 +314528,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5723), 11, + ACTIONS(4327), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [286167] = 11, - ACTIONS(71), 1, + [285717] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 1, - anon_sym_DQUOTE, - ACTIONS(7797), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12648), 1, - anon_sym_LPAREN, - ACTIONS(12650), 1, + ACTIONS(12346), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(12344), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - ACTIONS(12654), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12656), 1, - anon_sym_BQUOTE, - ACTIONS(12658), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7807), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(12849), 5, - sym_variable_name, - sym__expansion_word, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - sym_word, - STATE(6487), 6, - sym_string, - sym_array, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [286211] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12851), 1, - sym__special_character, - STATE(5426), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1364), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [286243] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5407), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12688), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2094), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(2096), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [286275] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1251), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1253), 13, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [286303] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7793), 1, aux_sym_number_token1, - ACTIONS(7795), 1, aux_sym_number_token2, - ACTIONS(12543), 1, - anon_sym_LPAREN, - ACTIONS(12547), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(12551), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12555), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12557), 1, anon_sym_BQUOTE, - ACTIONS(12559), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12854), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12856), 1, - anon_sym_RBRACE3, - ACTIONS(12858), 1, - aux_sym__simple_variable_name_token1, - STATE(6259), 1, - sym__expansion_max_length_binary_expression, - STATE(6470), 1, - sym__expansion_max_length_expression, - ACTIONS(12541), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6258), 2, - sym_number, - sym_expansion, - STATE(7022), 3, - sym_parenthesized_expression, - sym_arithmetic_expansion, - sym_command_substitution, - [286359] = 3, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [285745] = 3, ACTIONS(71), 1, sym_comment, ACTIONS(1340), 7, @@ -314793,35 +314589,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [286387] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1296), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1298), 13, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [286415] = 3, + [285773] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 7, + ACTIONS(1292), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -314829,7 +314600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1310), 13, + ACTIONS(1294), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -314843,10 +314614,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [286443] = 3, + [285801] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 7, + ACTIONS(1344), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -314854,9 +314625,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1306), 13, + ACTIONS(1346), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -314866,12 +314638,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [286471] = 3, + [285829] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 7, + ACTIONS(1356), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -314879,9 +314650,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1310), 13, + ACTIONS(1358), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -314891,12 +314663,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [286499] = 3, + [285857] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1328), 7, + ACTIONS(1316), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -314904,10 +314675,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1330), 13, + ACTIONS(1318), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -314917,47 +314687,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [286527] = 10, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11453), 1, - anon_sym_PIPE, - ACTIONS(12860), 1, - anon_sym_LT_LT, - ACTIONS(12862), 1, - anon_sym_LT_LT_DASH, - ACTIONS(12864), 1, - sym_file_descriptor, - ACTIONS(12836), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(11455), 3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - ACTIONS(12834), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5465), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12832), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [286569] = 5, + [285885] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(12866), 1, + ACTIONS(12844), 1, sym__special_character, - STATE(5469), 1, + STATE(5417), 1, aux_sym__literal_repeat1, - ACTIONS(5721), 7, + ACTIONS(1360), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -314965,7 +314704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5723), 11, + ACTIONS(1362), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -314977,10 +314716,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [286601] = 3, + [285917] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1324), 7, + ACTIONS(1312), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -314988,7 +314727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1326), 13, + ACTIONS(1314), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -315002,10 +314741,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [286629] = 3, + [285945] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7794), 1, + aux_sym_number_token1, + ACTIONS(7796), 1, + aux_sym_number_token2, + ACTIONS(12553), 1, + anon_sym_LPAREN, + ACTIONS(12557), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(12561), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12565), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12567), 1, + anon_sym_BQUOTE, + ACTIONS(12569), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12847), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12849), 1, + anon_sym_RBRACE3, + ACTIONS(12851), 1, + aux_sym__simple_variable_name_token1, + STATE(6338), 1, + sym__expansion_max_length_binary_expression, + STATE(6452), 1, + sym__expansion_max_length_expression, + ACTIONS(12551), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6303), 2, + sym_number, + sym_expansion, + STATE(6799), 3, + sym_parenthesized_expression, + sym_arithmetic_expansion, + sym_command_substitution, + [286001] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1352), 7, + ACTIONS(1356), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315013,7 +314791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1354), 13, + ACTIONS(1358), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -315027,10 +314805,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [286657] = 3, + [286029] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1251), 7, + STATE(5475), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12813), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4426), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315038,9 +314821,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1253), 13, + ACTIONS(4428), 10, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -315050,12 +314832,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [286685] = 3, + [286061] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 7, + ACTIONS(1356), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315063,24 +314843,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1294), 13, + ACTIONS(1358), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [286713] = 3, + [286089] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1356), 7, + STATE(5476), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12813), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4511), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315088,10 +314873,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1358), 13, + ACTIONS(4513), 10, sym_file_descriptor, - sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -315101,11 +314884,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [286741] = 3, + [286121] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1344), 7, + STATE(5475), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12813), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4577), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315113,10 +314900,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1346), 13, + ACTIONS(4579), 10, sym_file_descriptor, - sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -315126,11 +314911,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [286769] = 3, + [286153] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1348), 7, + STATE(5476), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12813), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4593), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315138,9 +314927,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1350), 13, + ACTIONS(4595), 10, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -315150,12 +314938,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [286797] = 3, + [286185] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 7, + ACTIONS(1336), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315163,9 +314949,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1314), 13, + ACTIONS(1338), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -315175,12 +314962,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [286825] = 3, + [286213] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 7, + ACTIONS(1324), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315188,10 +314974,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1302), 13, + ACTIONS(1326), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -315201,15 +314986,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [286853] = 5, + [286241] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(12847), 1, - sym__special_character, - STATE(5426), 1, - aux_sym__literal_repeat1, - ACTIONS(4564), 7, + STATE(5475), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12813), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5587), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315217,22 +315004,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4566), 11, + ACTIONS(5589), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [286885] = 3, + [286273] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7794), 1, + aux_sym_number_token1, + ACTIONS(7796), 1, + aux_sym_number_token2, + ACTIONS(12553), 1, + anon_sym_LPAREN, + ACTIONS(12557), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(12561), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12565), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12567), 1, + anon_sym_BQUOTE, + ACTIONS(12569), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12853), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12855), 1, + anon_sym_RBRACE3, + ACTIONS(12857), 1, + aux_sym__simple_variable_name_token1, + STATE(6294), 1, + sym_number, + STATE(6322), 1, + sym_expansion, + STATE(6354), 1, + sym__expansion_max_length_binary_expression, + STATE(6452), 1, + sym__expansion_max_length_expression, + STATE(6860), 1, + sym_parenthesized_expression, + STATE(6903), 1, + sym_arithmetic_expansion, + STATE(6956), 1, + sym_command_substitution, + ACTIONS(12551), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + [286335] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1332), 7, + ACTIONS(1296), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315240,7 +315068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1334), 13, + ACTIONS(1298), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -315254,10 +315082,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [286913] = 3, + [286363] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1336), 7, + STATE(5476), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12813), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2167), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315265,9 +315098,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1338), 13, + ACTIONS(2169), 10, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -315277,12 +315109,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [286941] = 3, + [286395] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 7, + ACTIONS(1304), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315290,7 +315120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1302), 13, + ACTIONS(1306), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -315304,10 +315134,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [286969] = 3, + [286423] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 7, + ACTIONS(1276), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315315,7 +315145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1298), 13, + ACTIONS(1278), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -315329,10 +315159,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [286997] = 3, + [286451] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1320), 7, + ACTIONS(1348), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315340,7 +315170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1322), 13, + ACTIONS(1350), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -315354,10 +315184,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [287025] = 3, + [286479] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 7, + ACTIONS(12832), 1, + sym__special_character, + STATE(5443), 1, + aux_sym__literal_repeat1, + ACTIONS(5587), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315365,21 +315199,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1298), 13, + ACTIONS(5589), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [287053] = 3, + [286511] = 3, ACTIONS(71), 1, sym_comment, ACTIONS(1308), 7, @@ -315404,10 +315236,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [287081] = 3, + [286539] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 7, + ACTIONS(1312), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315415,7 +315247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1306), 13, + ACTIONS(1314), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -315429,35 +315261,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [287109] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12325), 3, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(12323), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [287137] = 3, + [286567] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 7, + ACTIONS(1316), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315465,63 +315272,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1302), 13, + ACTIONS(1318), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [287165] = 17, - ACTIONS(3), 1, + [286595] = 11, + ACTIONS(71), 1, sym_comment, - ACTIONS(7793), 1, - aux_sym_number_token1, - ACTIONS(7795), 1, - aux_sym_number_token2, - ACTIONS(12543), 1, - anon_sym_LPAREN, - ACTIONS(12547), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(12551), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12555), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12557), 1, - anon_sym_BQUOTE, - ACTIONS(12559), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12868), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12870), 1, - anon_sym_RBRACE3, - ACTIONS(12872), 1, - aux_sym__simple_variable_name_token1, - STATE(6301), 1, - sym__expansion_max_length_binary_expression, - STATE(6470), 1, - sym__expansion_max_length_expression, - ACTIONS(12541), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6279), 2, - sym_number, - sym_expansion, - STATE(6825), 3, - sym_parenthesized_expression, - sym_arithmetic_expansion, - sym_command_substitution, - [287221] = 3, + ACTIONS(4310), 1, + anon_sym_PIPE, + ACTIONS(4323), 1, + anon_sym_PIPE_AMP, + ACTIONS(6012), 1, + anon_sym_LT_LT, + ACTIONS(6014), 1, + anon_sym_LT_LT_DASH, + ACTIONS(12682), 1, + sym_file_descriptor, + ACTIONS(6010), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12387), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12385), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5369), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12383), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [286639] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 7, + ACTIONS(1300), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315529,7 +315330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1310), 13, + ACTIONS(1302), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -315543,52 +315344,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [287249] = 20, - ACTIONS(3), 1, + [286667] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(7793), 1, - aux_sym_number_token1, - ACTIONS(7795), 1, - aux_sym_number_token2, - ACTIONS(12543), 1, - anon_sym_LPAREN, - ACTIONS(12547), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(12551), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12555), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12557), 1, - anon_sym_BQUOTE, - ACTIONS(12559), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12874), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12876), 1, - anon_sym_RBRACE3, - ACTIONS(12878), 1, - aux_sym__simple_variable_name_token1, - STATE(6261), 1, - sym__expansion_max_length_binary_expression, - STATE(6287), 1, - sym_number, - STATE(6299), 1, - sym_expansion, - STATE(6470), 1, - sym__expansion_max_length_expression, - STATE(7251), 1, - sym_parenthesized_expression, - STATE(7302), 1, - sym_arithmetic_expansion, - STATE(7477), 1, - sym_command_substitution, - ACTIONS(12541), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - [287311] = 3, + ACTIONS(1332), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1334), 13, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [286695] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1251), 7, + ACTIONS(1352), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315596,28 +315380,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1253), 13, + ACTIONS(1354), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [287339] = 5, + [286723] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(12866), 1, + ACTIONS(12859), 1, sym__special_character, - STATE(5469), 1, + STATE(5443), 1, aux_sym__literal_repeat1, - ACTIONS(4467), 7, + ACTIONS(1360), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315625,22 +315409,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4469), 11, + ACTIONS(1362), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [287371] = 3, + [286755] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1316), 7, + ACTIONS(1336), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315648,24 +315432,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1318), 13, + ACTIONS(1338), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [287399] = 3, + [286783] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1352), 7, + ACTIONS(1324), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315673,60 +315457,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1354), 13, + ACTIONS(1326), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [287427] = 10, + [286811] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(11420), 1, + ACTIONS(12416), 1, + anon_sym_LT_LT_LT, + ACTIONS(12842), 1, + sym_file_descriptor, + ACTIONS(11464), 2, anon_sym_PIPE, - ACTIONS(12883), 1, anon_sym_LT_LT, - ACTIONS(12892), 1, - anon_sym_LT_LT_DASH, - ACTIONS(12895), 1, - sym_file_descriptor, - ACTIONS(12889), 2, + ACTIONS(12840), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(11431), 3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - ACTIONS(12886), 3, + STATE(5675), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(12838), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(5465), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12880), 5, + ACTIONS(11466), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(12836), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [287469] = 5, + [286851] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12866), 1, - sym__special_character, - STATE(5469), 1, - aux_sym__literal_repeat1, - ACTIONS(4564), 7, + ACTIONS(1296), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1298), 13, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [286879] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1272), 8, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315734,22 +315538,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4566), 11, + sym__special_character, + ACTIONS(1274), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [287501] = 3, + [286907] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1292), 7, + ACTIONS(1304), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315757,9 +315563,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1294), 13, + ACTIONS(1306), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -315769,12 +315576,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [287529] = 3, + [286935] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1320), 7, + ACTIONS(1276), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315782,28 +315588,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1322), 13, + ACTIONS(1278), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [287557] = 5, + [286963] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12898), 1, - sym__special_character, - STATE(5469), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 7, + ACTIONS(1308), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315811,8 +315613,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1364), 11, + ACTIONS(1310), 13, sym_file_descriptor, + sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -315822,8 +315626,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [287589] = 3, + aux_sym_concatenation_token1, + [286991] = 3, ACTIONS(71), 1, sym_comment, ACTIONS(1328), 7, @@ -315841,23 +315645,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [287617] = 6, + [287019] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(12688), 1, - aux_sym_concatenation_token1, - ACTIONS(12901), 1, - sym__concat, - STATE(5411), 1, + STATE(5476), 1, aux_sym_concatenation_repeat1, - ACTIONS(1265), 7, + ACTIONS(12813), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2171), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315865,7 +315668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1267), 10, + ACTIONS(2173), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -315876,10 +315679,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [287651] = 3, + [287051] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1320), 7, + ACTIONS(1312), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315887,7 +315690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1322), 13, + ACTIONS(1314), 13, sym_file_descriptor, sym__concat, sym_variable_name, @@ -315901,10 +315704,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [287679] = 3, + [287079] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 7, + ACTIONS(1320), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315912,7 +315715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1314), 13, + ACTIONS(1322), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -315926,15 +315729,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [287707] = 5, + [287107] = 3, ACTIONS(71), 1, sym_comment, - STATE(5471), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12688), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4564), 7, + ACTIONS(1324), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315942,57 +315740,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4566), 10, + ACTIONS(1326), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [287739] = 9, + aux_sym_concatenation_token1, + [287135] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12473), 1, - anon_sym_LT_LT_LT, - ACTIONS(12838), 1, - sym_file_descriptor, - ACTIONS(11412), 2, + ACTIONS(1348), 7, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - ACTIONS(12836), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5681), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(12834), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(11414), 4, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1350), 13, + sym_file_descriptor, + sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - ACTIONS(12832), 5, + aux_sym_concatenation_token1, + [287163] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1328), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [287779] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5471), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12688), 2, + ACTIONS(1330), 13, + sym_file_descriptor, sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - ACTIONS(5721), 7, + [287191] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12834), 1, + sym__special_character, + STATE(5417), 1, + aux_sym__literal_repeat1, + ACTIONS(4426), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316000,7 +315819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5723), 10, + ACTIONS(4428), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -316011,10 +315830,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [287811] = 3, + anon_sym_LT_LT_LT, + [287223] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1344), 7, + ACTIONS(1332), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316022,7 +315842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1346), 13, + ACTIONS(1334), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -316036,7 +315856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [287839] = 3, + [287251] = 3, ACTIONS(71), 1, sym_comment, ACTIONS(1336), 7, @@ -316061,14 +315881,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [287867] = 5, + [287279] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12903), 1, - sym__special_character, - STATE(5479), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 7, + ACTIONS(1340), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316076,22 +315892,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1364), 11, + ACTIONS(1342), 13, sym_file_descriptor, - sym_variable_name, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [287899] = 3, + aux_sym_concatenation_token1, + [287307] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1324), 7, + ACTIONS(1292), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316099,7 +315917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1326), 13, + ACTIONS(1294), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -316113,10 +315931,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [287927] = 3, + [287335] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1332), 7, + ACTIONS(1348), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316124,24 +315942,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1334), 13, + ACTIONS(1350), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [287955] = 3, + [287363] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1340), 7, + ACTIONS(12862), 1, + sym__special_character, + STATE(5465), 1, + aux_sym__literal_repeat1, + ACTIONS(1360), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316149,24 +315971,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1342), 13, + ACTIONS(1362), 11, sym_file_descriptor, - sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [287983] = 3, + [287395] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1356), 7, + ACTIONS(1316), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316174,24 +315994,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1358), 13, + ACTIONS(1318), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [288011] = 3, + [287423] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 7, + ACTIONS(1352), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316199,24 +316019,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1310), 13, + ACTIONS(1354), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [288039] = 3, + [287451] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1344), 7, + ACTIONS(1300), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316224,9 +316044,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1346), 13, + ACTIONS(1302), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -316236,9 +316057,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [288067] = 3, + [287479] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7794), 1, + aux_sym_number_token1, + ACTIONS(7796), 1, + aux_sym_number_token2, + ACTIONS(12553), 1, + anon_sym_LPAREN, + ACTIONS(12557), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(12561), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12565), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12567), 1, + anon_sym_BQUOTE, + ACTIONS(12569), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12865), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12867), 1, + anon_sym_RBRACE3, + ACTIONS(12869), 1, + aux_sym__simple_variable_name_token1, + STATE(6365), 1, + sym__expansion_max_length_binary_expression, + STATE(6452), 1, + sym__expansion_max_length_expression, + ACTIONS(12551), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6360), 2, + sym_number, + sym_expansion, + STATE(6954), 3, + sym_parenthesized_expression, + sym_arithmetic_expansion, + sym_command_substitution, + [287535] = 3, ACTIONS(71), 1, sym_comment, ACTIONS(1356), 7, @@ -316256,17 +316115,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [288095] = 3, + [287563] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1348), 7, + ACTIONS(1344), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316274,7 +316133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1350), 13, + ACTIONS(1346), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -316288,10 +316147,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [288123] = 3, + [287591] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1336), 7, + ACTIONS(1356), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316299,49 +316158,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1338), 13, + ACTIONS(1358), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [288151] = 3, + [287619] = 10, ACTIONS(71), 1, sym_comment, - ACTIONS(1328), 7, + ACTIONS(11546), 1, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(12871), 1, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1330), 13, + ACTIONS(12873), 1, + anon_sym_LT_LT_DASH, + ACTIONS(12875), 1, sym_file_descriptor, - sym__concat, + ACTIONS(12840), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(11548), 3, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, anon_sym_PIPE_AMP, + ACTIONS(12838), 3, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [288179] = 3, + STATE(5494), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12836), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [287661] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1340), 7, + ACTIONS(12877), 1, + sym__special_character, + STATE(5465), 1, + aux_sym__literal_repeat1, + ACTIONS(5165), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316349,9 +316219,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1342), 13, + ACTIONS(5167), 11, sym_file_descriptor, - sym__concat, sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -316362,11 +316231,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [288207] = 3, + [287693] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 7, + ACTIONS(12813), 1, + aux_sym_concatenation_token1, + ACTIONS(12879), 1, + sym__concat, + STATE(5477), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1266), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316374,10 +316248,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1314), 13, + ACTIONS(1268), 10, sym_file_descriptor, - sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -316387,11 +316259,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [288235] = 3, + [287727] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1316), 7, + ACTIONS(12813), 1, + aux_sym_concatenation_token1, + ACTIONS(12881), 1, + sym__concat, + STATE(5477), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316399,9 +316276,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1318), 13, + ACTIONS(1288), 10, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -316411,12 +316287,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [288263] = 3, + [287761] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 7, + STATE(5477), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12883), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1276), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316424,10 +316303,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1310), 13, + ACTIONS(1278), 10, sym_file_descriptor, - sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -316437,15 +316314,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [288291] = 5, + [287793] = 11, ACTIONS(71), 1, sym_comment, - ACTIONS(12866), 1, - sym__special_character, - STATE(5469), 1, - aux_sym__literal_repeat1, - ACTIONS(5695), 7, + ACTIONS(7790), 1, + anon_sym_DQUOTE, + ACTIONS(7798), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12511), 1, + anon_sym_LPAREN, + ACTIONS(12513), 1, + anon_sym_DOLLAR, + ACTIONS(12517), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12519), 1, + anon_sym_BQUOTE, + ACTIONS(12521), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7808), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(12886), 5, + sym_variable_name, + sym__expansion_word, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(6510), 6, + sym_string, + sym_array, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [287837] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1300), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316453,8 +316358,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5697), 11, + ACTIONS(1302), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -316465,10 +316371,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [288323] = 3, + aux_sym_concatenation_token1, + [287865] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 7, + ACTIONS(1332), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316476,7 +316383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1306), 13, + ACTIONS(1334), 13, sym_file_descriptor, sym__concat, sym_variable_name, @@ -316490,14 +316397,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [288351] = 5, + [287893] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(12847), 1, + ACTIONS(12834), 1, sym__special_character, - STATE(5426), 1, + STATE(5417), 1, aux_sym__literal_repeat1, - ACTIONS(5695), 7, + ACTIONS(4577), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316505,22 +316412,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5697), 11, + ACTIONS(4579), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [288383] = 3, + anon_sym_LT_LT_LT, + [287925] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1352), 7, + ACTIONS(12832), 1, + sym__special_character, + STATE(5443), 1, + aux_sym__literal_repeat1, + ACTIONS(5593), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316528,28 +316439,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1354), 13, + ACTIONS(5595), 11, sym_file_descriptor, - sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [288411] = 5, + [287957] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12847), 1, - sym__special_character, - STATE(5426), 1, - aux_sym__literal_repeat1, - ACTIONS(4467), 7, + ACTIONS(1320), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316557,52 +316462,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4469), 11, + ACTIONS(1322), 13, sym_file_descriptor, + sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [288443] = 5, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [287985] = 3, + ACTIONS(71), 1, sym_comment, - STATE(5528), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12068), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12906), 2, + ACTIONS(1328), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12064), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1330), 13, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [288474] = 5, + aux_sym_concatenation_token1, + [288013] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12908), 1, - sym__special_character, - STATE(5520), 1, - aux_sym__literal_repeat1, - ACTIONS(4564), 7, + ACTIONS(1352), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316610,8 +316512,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4566), 10, + ACTIONS(1354), 13, sym_file_descriptor, + sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -316621,10 +316525,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [288505] = 3, + aux_sym_concatenation_token1, + [288041] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1356), 7, + ACTIONS(1304), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316632,7 +316537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1358), 12, + ACTIONS(1306), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -316644,11 +316549,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [288532] = 3, + [288069] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1344), 7, + ACTIONS(1276), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316656,7 +316562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1346), 12, + ACTIONS(1278), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -316668,99 +316574,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [288559] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12912), 1, - anon_sym_DQUOTE, - ACTIONS(12916), 1, - sym_variable_name, - STATE(6206), 1, - sym_string, - ACTIONS(12914), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1239), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - ACTIONS(12910), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - [288594] = 9, - ACTIONS(3), 1, + [288097] = 9, + ACTIONS(71), 1, sym_comment, - ACTIONS(3727), 1, + ACTIONS(12416), 1, anon_sym_LT_LT_LT, - ACTIONS(3751), 1, + ACTIONS(12842), 1, sym_file_descriptor, - ACTIONS(12918), 1, - aux_sym_heredoc_redirect_token1, - STATE(6998), 1, - sym__heredoc_expression, - ACTIONS(3717), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3723), 2, + ACTIONS(11448), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(12840), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5609), 3, + STATE(5648), 2, sym_file_redirect, sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3721), 8, + ACTIONS(12838), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(11450), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(12836), 5, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [288633] = 9, - ACTIONS(3), 1, + [288137] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(3727), 1, - anon_sym_LT_LT_LT, - ACTIONS(3751), 1, - sym_file_descriptor, - ACTIONS(12920), 1, - aux_sym_heredoc_redirect_token1, - STATE(7030), 1, - sym__heredoc_expression, - ACTIONS(3717), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3723), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5609), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3721), 8, + ACTIONS(1320), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1322), 13, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - [288672] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [288165] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1261), 7, + ACTIONS(1308), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316768,8 +316643,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1263), 12, + ACTIONS(1310), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -316780,11 +316656,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - sym__special_character, - [288699] = 3, + aux_sym_concatenation_token1, + [288193] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1320), 7, + ACTIONS(1340), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316792,9 +316668,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1322), 12, + ACTIONS(1342), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -316805,7 +316682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [288726] = 3, + [288221] = 3, ACTIONS(71), 1, sym_comment, ACTIONS(1292), 7, @@ -316816,9 +316693,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1294), 12, + ACTIONS(1294), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -316829,10 +316707,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [288753] = 3, + [288249] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1316), 7, + ACTIONS(1296), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316840,7 +316718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1318), 12, + ACTIONS(1298), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -316852,11 +316730,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [288780] = 3, + [288277] = 10, ACTIONS(71), 1, sym_comment, - ACTIONS(1340), 7, + ACTIONS(11398), 1, + anon_sym_PIPE, + ACTIONS(12891), 1, + anon_sym_LT_LT, + ACTIONS(12900), 1, + anon_sym_LT_LT_DASH, + ACTIONS(12903), 1, + sym_file_descriptor, + ACTIONS(12897), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(11409), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + ACTIONS(12894), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5494), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12888), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [288319] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1272), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1274), 15, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [288347] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12832), 1, + sym__special_character, + STATE(5443), 1, + aux_sym__literal_repeat1, + ACTIONS(4426), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316864,23 +316804,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1342), 12, + ACTIONS(4428), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [288807] = 3, + [288379] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 7, + ACTIONS(12834), 1, + sym__special_character, + STATE(5417), 1, + aux_sym__literal_repeat1, + ACTIONS(5593), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316888,9 +316831,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1314), 12, + ACTIONS(5595), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -316900,11 +316842,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [288834] = 3, + anon_sym_LT_LT_LT, + [288411] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1261), 7, + STATE(5475), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12813), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5593), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316912,9 +316859,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1263), 12, + ACTIONS(5595), 10, sym_file_descriptor, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -316924,11 +316870,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [288861] = 3, + [288443] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1352), 7, + ACTIONS(1328), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316936,7 +316881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1354), 12, + ACTIONS(1330), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -316949,56 +316894,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [288888] = 7, + [288470] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(12912), 1, - anon_sym_DQUOTE, - ACTIONS(12916), 1, - sym_variable_name, - STATE(6206), 1, - sym_string, - ACTIONS(12914), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1227), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, + ACTIONS(5838), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12910), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - [288923] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3727), 1, - anon_sym_LT_LT_LT, - ACTIONS(3751), 1, + ACTIONS(12734), 1, sym_file_descriptor, - ACTIONS(12922), 1, - aux_sym_heredoc_redirect_token1, - STATE(6931), 1, - sym__heredoc_expression, - ACTIONS(3717), 2, + ACTIONS(4705), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5836), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3723), 2, + ACTIONS(12326), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5609), 3, + STATE(5297), 3, sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3721), 8, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12324), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -317007,28 +316923,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [288962] = 9, + [288507] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1324), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1326), 12, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [288534] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3727), 1, + ACTIONS(3664), 1, anon_sym_LT_LT_LT, - ACTIONS(3751), 1, + ACTIONS(3688), 1, sym_file_descriptor, - ACTIONS(12924), 1, + ACTIONS(12906), 1, aux_sym_heredoc_redirect_token1, - STATE(6928), 1, + STATE(6881), 1, sym__heredoc_expression, - ACTIONS(3717), 2, + ACTIONS(3654), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3723), 2, + ACTIONS(3660), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5609), 3, + STATE(5564), 3, sym_file_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(3721), 8, + ACTIONS(3658), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -317037,28 +316977,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [289001] = 9, + [288573] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3727), 1, + ACTIONS(3664), 1, anon_sym_LT_LT_LT, - ACTIONS(3751), 1, + ACTIONS(3688), 1, sym_file_descriptor, - ACTIONS(12926), 1, + ACTIONS(12908), 1, aux_sym_heredoc_redirect_token1, - STATE(6853), 1, + STATE(7429), 1, sym__heredoc_expression, - ACTIONS(3717), 2, + ACTIONS(3654), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3723), 2, + ACTIONS(3660), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5609), 3, + STATE(5564), 3, sym_file_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(3721), 8, + ACTIONS(3658), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -317067,41 +317007,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [289040] = 6, - ACTIONS(3), 1, + [288612] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(12928), 1, - aux_sym_concatenation_token1, - ACTIONS(12930), 1, - sym__concat, - STATE(5577), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1263), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1320), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1322), 12, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - [289073] = 5, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [288639] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(12908), 1, + ACTIONS(12910), 1, sym__special_character, - STATE(5520), 1, + STATE(5519), 1, aux_sym__literal_repeat1, - ACTIONS(5721), 7, + ACTIONS(5587), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317109,7 +317046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5723), 10, + ACTIONS(5589), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -317120,14 +317057,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [289104] = 5, + [288670] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12932), 1, - sym__special_character, - STATE(5520), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 7, + ACTIONS(4511), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317135,45 +317068,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1364), 10, + ACTIONS(4513), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [289135] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [288697] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 7, - anon_sym_PIPE, + ACTIONS(3664), 1, + anon_sym_LT_LT_LT, + ACTIONS(3688), 1, + sym_file_descriptor, + ACTIONS(12912), 1, + aux_sym_heredoc_redirect_token1, + STATE(7215), 1, + sym__heredoc_expression, + ACTIONS(3654), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3660), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5564), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3658), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1330), 12, + anon_sym_GT_PIPE, + [288736] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3664), 1, + anon_sym_LT_LT_LT, + ACTIONS(3688), 1, sym_file_descriptor, - sym__concat, + ACTIONS(12914), 1, + aux_sym_heredoc_redirect_token1, + STATE(7432), 1, + sym__heredoc_expression, + ACTIONS(3654), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(3660), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5564), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3658), 8, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, + [288775] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3664), 1, + anon_sym_LT_LT_LT, + ACTIONS(3688), 1, + sym_file_descriptor, + ACTIONS(12916), 1, + aux_sym_heredoc_redirect_token1, + STATE(7219), 1, + sym__heredoc_expression, + ACTIONS(3654), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3660), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [289162] = 3, + STATE(5564), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3658), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [288814] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 7, + ACTIONS(1272), 8, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317181,23 +317182,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1310), 12, + sym__special_character, + ACTIONS(1274), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [289189] = 3, + [288841] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1336), 7, + ACTIONS(1356), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317205,7 +317206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1338), 12, + ACTIONS(1358), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -317218,10 +317219,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [289216] = 3, + [288868] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 7, + ACTIONS(1344), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317229,7 +317230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1306), 12, + ACTIONS(1346), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -317242,10 +317243,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [289243] = 3, + [288895] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1332), 7, + ACTIONS(1356), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317253,7 +317254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1334), 12, + ACTIONS(1358), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -317266,10 +317267,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [289270] = 3, + [288922] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4552), 7, + ACTIONS(1332), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317277,23 +317278,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4554), 12, + ACTIONS(1334), 12, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [289297] = 3, + aux_sym_concatenation_token1, + [288949] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 7, + ACTIONS(1272), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317301,9 +317302,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1310), 12, + ACTIONS(1274), 12, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -317313,37 +317313,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [289324] = 5, + anon_sym_LT_LT_LT, + sym__special_character, + [288976] = 7, ACTIONS(3), 1, sym_comment, - STATE(5528), 1, - aux_sym_pipeline_repeat1, - ACTIONS(11748), 2, - sym_file_descriptor, + ACTIONS(12920), 1, + anon_sym_DQUOTE, + ACTIONS(12924), 1, + sym_variable_name, + STATE(6233), 1, + sym_string, + ACTIONS(12922), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1227), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + aux_sym_heredoc_redirect_token1, + ACTIONS(12918), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [289011] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12920), 1, + anon_sym_DQUOTE, + ACTIONS(12924), 1, + sym_variable_name, + STATE(6233), 1, + sym_string, + ACTIONS(12922), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1239), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, aux_sym_heredoc_redirect_token1, - ACTIONS(12935), 2, + ACTIONS(12918), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [289046] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12910), 1, + sym__special_character, + STATE(5519), 1, + aux_sym__literal_repeat1, + ACTIONS(5593), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(11743), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(5595), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [289355] = 3, + [289077] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1261), 8, + ACTIONS(12926), 1, + sym__special_character, + STATE(5519), 1, + aux_sym__literal_repeat1, + ACTIONS(1360), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317351,23 +317412,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - sym__special_character, - ACTIONS(1263), 11, + ACTIONS(1362), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [289382] = 3, + [289108] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(2094), 7, + ACTIONS(4593), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317375,7 +317434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2096), 12, + ACTIONS(4595), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -317388,44 +317447,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [289409] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3727), 1, - anon_sym_LT_LT_LT, - ACTIONS(3751), 1, - sym_file_descriptor, - ACTIONS(12938), 1, - aux_sym_heredoc_redirect_token1, - STATE(7028), 1, - sym__heredoc_expression, - ACTIONS(3717), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3723), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5609), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3721), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [289448] = 5, + [289135] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12908), 1, - sym__special_character, - STATE(5520), 1, - aux_sym__literal_repeat1, - ACTIONS(5695), 7, + ACTIONS(1272), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317433,8 +317458,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5697), 10, + ACTIONS(1274), 12, sym_file_descriptor, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -317444,39 +317470,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [289479] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5942), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12778), 1, - sym_file_descriptor, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5940), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(12346), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5366), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12344), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [289516] = 3, + sym__special_character, + [289162] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1300), 7, + ACTIONS(1352), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317484,7 +317482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1302), 12, + ACTIONS(1354), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -317497,27 +317495,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [289543] = 8, + [289189] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5944), 1, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(12931), 1, + sym__concat, + STATE(5562), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1274), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12778), 1, + ACTIONS(1272), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + [289222] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3664), 1, + anon_sym_LT_LT_LT, + ACTIONS(3688), 1, sym_file_descriptor, - ACTIONS(4692), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5940), 2, + ACTIONS(12933), 1, + aux_sym_heredoc_redirect_token1, + STATE(7004), 1, + sym__heredoc_expression, + ACTIONS(3654), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12346), 2, + ACTIONS(3660), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5366), 3, + STATE(5564), 3, sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12344), 8, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3658), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -317526,10 +317552,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [289580] = 3, + [289261] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1296), 7, + ACTIONS(1304), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317537,7 +317563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1298), 12, + ACTIONS(1306), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -317550,10 +317576,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [289607] = 3, + [289288] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1348), 7, + ACTIONS(1276), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317561,7 +317587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1350), 12, + ACTIONS(1278), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -317574,28 +317600,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [289634] = 9, + [289315] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3727), 1, + ACTIONS(3664), 1, anon_sym_LT_LT_LT, - ACTIONS(3751), 1, + ACTIONS(3688), 1, sym_file_descriptor, - ACTIONS(12940), 1, + ACTIONS(12935), 1, aux_sym_heredoc_redirect_token1, - STATE(6868), 1, + STATE(7464), 1, sym__heredoc_expression, - ACTIONS(3717), 2, + ACTIONS(3654), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3723), 2, + ACTIONS(3660), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5609), 3, + STATE(5564), 3, sym_file_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(3721), 8, + ACTIONS(3658), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -317604,52 +317630,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [289673] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2072), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(2074), 12, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [289700] = 9, + [289354] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3727), 1, + ACTIONS(3664), 1, anon_sym_LT_LT_LT, - ACTIONS(3751), 1, + ACTIONS(3688), 1, sym_file_descriptor, - ACTIONS(12942), 1, + ACTIONS(12937), 1, aux_sym_heredoc_redirect_token1, - STATE(6866), 1, + STATE(6800), 1, sym__heredoc_expression, - ACTIONS(3717), 2, + ACTIONS(3654), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3723), 2, + ACTIONS(3660), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5609), 3, + STATE(5564), 3, sym_file_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(3721), 8, + ACTIONS(3658), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -317658,10 +317660,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [289739] = 3, + [289393] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1251), 7, + ACTIONS(1296), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317669,7 +317671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1253), 12, + ACTIONS(1298), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -317682,10 +317684,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [289766] = 3, + [289420] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1324), 7, + ACTIONS(1336), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317693,7 +317695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1326), 12, + ACTIONS(1338), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -317706,10 +317708,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [289793] = 3, + [289447] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4370), 7, + ACTIONS(1308), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317717,27 +317719,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4372), 12, + ACTIONS(1310), 12, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [289820] = 5, + aux_sym_concatenation_token1, + [289474] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12908), 1, + ACTIONS(1312), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1314), 12, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [289501] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12910), 1, sym__special_character, - STATE(5520), 1, + STATE(5519), 1, aux_sym__literal_repeat1, - ACTIONS(4467), 7, + ACTIONS(4426), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317745,7 +317771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4469), 10, + ACTIONS(4428), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -317756,70 +317782,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [289851] = 9, + [289532] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3727), 1, - anon_sym_LT_LT_LT, - ACTIONS(3751), 1, + STATE(5535), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11899), 2, sym_file_descriptor, - ACTIONS(12944), 1, aux_sym_heredoc_redirect_token1, - STATE(6835), 1, - sym__heredoc_expression, - ACTIONS(3717), 2, + ACTIONS(12939), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(11895), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3723), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5609), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3721), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [289890] = 9, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [289563] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3727), 1, - anon_sym_LT_LT_LT, - ACTIONS(3751), 1, + STATE(5535), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11844), 2, sym_file_descriptor, - ACTIONS(12946), 1, aux_sym_heredoc_redirect_token1, - STATE(6836), 1, - sym__heredoc_expression, - ACTIONS(3717), 2, + ACTIONS(12941), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(11839), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3723), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5609), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3721), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [289929] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [289594] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(11741), 7, + ACTIONS(1316), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317827,8 +317845,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11739), 11, + ACTIONS(1318), 12, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -317838,37 +317857,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [289955] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12928), 1, aux_sym_concatenation_token1, - ACTIONS(12930), 1, - sym__concat, - STATE(5577), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4469), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + [289621] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2167), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(2169), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [289987] = 3, + [289648] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4552), 7, + ACTIONS(1340), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317876,80 +317893,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4554), 11, + ACTIONS(1342), 12, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [290013] = 9, + aux_sym_concatenation_token1, + [289675] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4692), 1, - anon_sym_LT_LT, - ACTIONS(11993), 1, - sym_file_descriptor, - ACTIONS(12954), 1, - anon_sym_LT_LT_DASH, - ACTIONS(12948), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(12952), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12950), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(4746), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11540), 5, + ACTIONS(1292), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [290051] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12860), 1, - anon_sym_LT_LT, - ACTIONS(12862), 1, - anon_sym_LT_LT_DASH, - ACTIONS(12864), 1, + ACTIONS(1294), 12, sym_file_descriptor, - ACTIONS(5992), 2, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12836), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12834), 3, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(5436), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12832), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [290089] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [289702] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5766), 7, + ACTIONS(1300), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317957,9 +317941,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5768), 11, + ACTIONS(1302), 12, sym_file_descriptor, - sym_variable_name, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -317969,65 +317953,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [290115] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12928), 1, aux_sym_concatenation_token1, - ACTIONS(12930), 1, - sym__concat, - STATE(5580), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2074), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2072), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + [289729] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2171), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [290147] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4692), 1, - anon_sym_LT_LT, - ACTIONS(12221), 1, + ACTIONS(2173), 12, sym_file_descriptor, - ACTIONS(12954), 1, - anon_sym_LT_LT_DASH, - ACTIONS(12956), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12960), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12958), 3, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(4986), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11554), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [290185] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [289756] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(4370), 7, + ACTIONS(12910), 1, + sym__special_character, + STATE(5519), 1, + aux_sym__literal_repeat1, + ACTIONS(4577), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318035,22 +317993,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4372), 11, + ACTIONS(4579), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [290211] = 3, + [289787] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12101), 7, + ACTIONS(1348), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318058,109 +318015,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12103), 11, + ACTIONS(1350), 12, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [290237] = 9, - ACTIONS(71), 1, + aux_sym_concatenation_token1, + [289814] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(4692), 1, - anon_sym_LT_LT, - ACTIONS(11834), 1, + ACTIONS(3664), 1, + anon_sym_LT_LT_LT, + ACTIONS(3688), 1, sym_file_descriptor, - ACTIONS(12954), 1, - anon_sym_LT_LT_DASH, - ACTIONS(12962), 2, + ACTIONS(12944), 1, + aux_sym_heredoc_redirect_token1, + STATE(7491), 1, + sym__heredoc_expression, + ACTIONS(3654), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12966), 2, + ACTIONS(3660), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(12964), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(4650), 3, + STATE(5564), 3, sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11479), 5, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3658), 8, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [290275] = 9, - ACTIONS(71), 1, + anon_sym_GT_PIPE, + [289853] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(4692), 1, - anon_sym_LT_LT, - ACTIONS(11856), 1, + ACTIONS(5843), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12734), 1, sym_file_descriptor, - ACTIONS(12954), 1, + ACTIONS(4705), 2, + anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(12968), 2, + ACTIONS(5836), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12972), 2, + ACTIONS(12326), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(12970), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(4697), 3, + STATE(5297), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11485), 5, + ACTIONS(12324), 8, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [290313] = 9, - ACTIONS(71), 1, + anon_sym_GT_PIPE, + [289890] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(4692), 1, - anon_sym_LT_LT, - ACTIONS(12778), 1, + ACTIONS(3664), 1, + anon_sym_LT_LT_LT, + ACTIONS(3688), 1, sym_file_descriptor, - ACTIONS(12954), 1, - anon_sym_LT_LT_DASH, - ACTIONS(12974), 2, + ACTIONS(12946), 1, + aux_sym_heredoc_redirect_token1, + STATE(6994), 1, + sym__heredoc_expression, + ACTIONS(3654), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12978), 2, + ACTIONS(3660), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(12976), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5366), 3, + STATE(5564), 3, sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12344), 5, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3658), 8, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [290351] = 3, + anon_sym_GT_PIPE, + [289929] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(11780), 7, + ACTIONS(12191), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318168,74 +318128,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11782), 11, + ACTIONS(12193), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [290377] = 6, + [289955] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(11745), 1, + ACTIONS(12271), 7, anon_sym_PIPE, - ACTIONS(12980), 1, - anon_sym_PIPE_AMP, - STATE(5602), 1, - aux_sym_pipeline_repeat1, - ACTIONS(11743), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11748), 9, + ACTIONS(12273), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [290409] = 6, - ACTIONS(3), 1, + [289981] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(12928), 1, - aux_sym_concatenation_token1, - ACTIONS(12930), 1, - sym__concat, - STATE(5577), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5723), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5721), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12271), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(12273), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [290441] = 3, + anon_sym_LT_LT_DASH, + [290007] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(2072), 7, + ACTIONS(12107), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318243,7 +318197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2074), 11, + ACTIONS(12105), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -318255,33 +318209,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [290467] = 3, - ACTIONS(71), 1, + [290033] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(11752), 7, - anon_sym_PIPE, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(12931), 1, + sym__concat, + STATE(5562), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4428), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4426), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11750), 11, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [290065] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(12931), 1, + sym__concat, + STATE(5563), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4513), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4511), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [290493] = 3, + [290097] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12201), 7, + ACTIONS(12275), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318289,7 +318272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12199), 11, + ACTIONS(12277), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -318301,10 +318284,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [290519] = 3, + [290123] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5373), 7, + ACTIONS(5871), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318312,7 +318295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5375), 11, + ACTIONS(5873), 11, sym_file_descriptor, sym_variable_name, anon_sym_PIPE_PIPE, @@ -318324,10 +318307,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [290545] = 3, + [290149] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(11735), 7, + ACTIONS(12275), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318335,22 +318318,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11733), 11, + ACTIONS(12277), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [290571] = 3, + [290175] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12189), 7, + ACTIONS(12109), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318358,7 +318341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12187), 11, + ACTIONS(12111), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -318370,62 +318353,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [290597] = 9, + [290201] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(5994), 1, + ACTIONS(4469), 1, anon_sym_LT_LT, - ACTIONS(5996), 1, - anon_sym_LT_LT_DASH, - ACTIONS(12686), 1, + ACTIONS(11634), 1, sym_file_descriptor, - ACTIONS(5992), 2, + ACTIONS(12954), 1, + anon_sym_LT_LT_DASH, + ACTIONS(12948), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12502), 2, + ACTIONS(12952), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(12500), 3, + ACTIONS(12950), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(5350), 3, + STATE(4509), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(12498), 5, + ACTIONS(11299), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [290635] = 3, + [290239] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(12001), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4705), 1, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(12003), 11, + ACTIONS(12201), 1, sym_file_descriptor, + ACTIONS(12962), 1, + anon_sym_LT_LT_DASH, + ACTIONS(12956), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(12960), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12958), 3, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [290661] = 3, + STATE(5016), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11569), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [290277] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12145), 7, + ACTIONS(4511), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318433,22 +318422,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12147), 11, + ACTIONS(4513), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [290687] = 3, + anon_sym_LT_LT_LT, + [290303] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12141), 7, + ACTIONS(12069), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318456,22 +318445,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12143), 11, + ACTIONS(12067), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [290713] = 3, + anon_sym_LT_LT_LT, + [290329] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12137), 7, + ACTIONS(11887), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318479,68 +318468,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12139), 11, + ACTIONS(11885), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [290739] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [290355] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(12211), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(12209), 11, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(12964), 1, + sym__concat, + STATE(5566), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1266), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [290765] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [290387] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(2094), 7, - anon_sym_PIPE, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(12966), 1, + sym__concat, + STATE(5566), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1286), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2096), 11, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [290419] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11373), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12974), 1, + anon_sym_LT_LT_LT, + ACTIONS(12977), 1, sym_file_descriptor, + ACTIONS(11365), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(12971), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5564), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(12968), 8, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [290791] = 3, + [290455] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12105), 7, + ACTIONS(11953), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318548,31 +318571,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12107), 11, + ACTIONS(11951), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [290817] = 6, + anon_sym_LT_LT_LT, + [290481] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12928), 1, + ACTIONS(12980), 1, aux_sym_concatenation_token1, ACTIONS(12983), 1, sym__concat, - STATE(5583), 1, + STATE(5566), 1, aux_sym_concatenation_repeat1, - ACTIONS(1267), 2, + ACTIONS(1278), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1265), 13, + ACTIONS(1276), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -318586,33 +318609,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [290849] = 3, + [290513] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(12117), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4312), 1, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(12119), 11, + ACTIONS(11512), 1, sym_file_descriptor, + ACTIONS(12992), 1, + anon_sym_LT_LT_DASH, + ACTIONS(12986), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(12990), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12988), 3, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [290875] = 3, + STATE(4407), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11246), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [290551] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12117), 7, + ACTIONS(12121), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318620,7 +318649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12119), 11, + ACTIONS(12123), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -318632,19 +318661,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [290901] = 6, + [290577] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12928), 1, + ACTIONS(12929), 1, aux_sym_concatenation_token1, - ACTIONS(12985), 1, + ACTIONS(12931), 1, sym__concat, - STATE(5583), 1, + STATE(5562), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 2, + ACTIONS(5595), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 13, + ACTIONS(5593), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [290609] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(12931), 1, + sym__concat, + STATE(5563), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2173), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2171), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -318658,10 +318713,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [290933] = 3, + [290641] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12161), 7, + ACTIONS(12229), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318669,7 +318724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12163), 11, + ACTIONS(12227), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -318681,10 +318736,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [290959] = 3, + [290667] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(11844), 7, + ACTIONS(12125), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318692,74 +318747,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11842), 11, + ACTIONS(12127), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [290985] = 6, - ACTIONS(3), 1, + [290693] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(12987), 1, - aux_sym_concatenation_token1, - ACTIONS(12990), 1, - sym__concat, + ACTIONS(12994), 1, + anon_sym_PIPE, + ACTIONS(12996), 1, + anon_sym_PIPE_AMP, STATE(5583), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1253), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + aux_sym_pipeline_repeat1, + ACTIONS(11895), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(11899), 9, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [291017] = 6, - ACTIONS(3), 1, + anon_sym_LT_LT_DASH, + [290725] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(12928), 1, - aux_sym_concatenation_token1, - ACTIONS(12930), 1, - sym__concat, - STATE(5577), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5697), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5695), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2171), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(2173), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [291049] = 3, + anon_sym_LT_LT_DASH, + [290751] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12217), 7, + ACTIONS(12163), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318767,7 +318819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12219), 11, + ACTIONS(12165), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -318779,10 +318831,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [291075] = 3, + [290777] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12223), 7, + ACTIONS(5173), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318790,22 +318842,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12225), 11, + ACTIONS(5175), 11, sym_file_descriptor, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [291101] = 3, + [290803] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4370), 7, + ACTIONS(11875), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318813,7 +318865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4372), 11, + ACTIONS(11873), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -318825,10 +318877,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [291127] = 3, + [290829] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(11725), 7, + ACTIONS(4705), 1, + anon_sym_LT_LT, + ACTIONS(11867), 1, + sym_file_descriptor, + ACTIONS(12962), 1, + anon_sym_LT_LT_DASH, + ACTIONS(12998), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(13002), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(13000), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(4670), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11468), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [290867] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12004), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318836,7 +318917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11727), 11, + ACTIONS(12002), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -318848,10 +318929,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [291153] = 3, + [290893] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12201), 7, + ACTIONS(12245), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318859,7 +318940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12199), 11, + ACTIONS(12243), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -318871,10 +318952,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [291179] = 3, + [290919] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12223), 7, + ACTIONS(12211), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318882,7 +318963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12225), 11, + ACTIONS(12213), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -318894,10 +318975,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [291205] = 3, + [290945] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(11731), 7, + ACTIONS(2167), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318905,7 +318986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11729), 11, + ACTIONS(2169), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -318917,62 +318998,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [291231] = 3, + [290971] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11792), 7, + ACTIONS(13004), 1, anon_sym_PIPE, + ACTIONS(13007), 1, + anon_sym_PIPE_AMP, + STATE(5583), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11839), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11790), 11, + ACTIONS(11844), 9, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [291257] = 9, + [291003] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4382), 1, - anon_sym_LT_LT, - ACTIONS(11562), 1, - sym_file_descriptor, - ACTIONS(12999), 1, - anon_sym_LT_LT_DASH, - ACTIONS(12993), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(12997), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12995), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(4455), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11333), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [291295] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11828), 7, + ACTIONS(5888), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318980,8 +319035,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11830), 11, + ACTIONS(5890), 11, sym_file_descriptor, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -318991,11 +319047,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [291321] = 3, + [291029] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12249), 7, + ACTIONS(11945), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319003,45 +319058,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12251), 11, + ACTIONS(11943), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [291347] = 3, + anon_sym_LT_LT_LT, + [291055] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(12257), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4705), 1, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(12259), 11, + ACTIONS(11831), 1, sym_file_descriptor, + ACTIONS(12962), 1, + anon_sym_LT_LT_DASH, + ACTIONS(13010), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(13014), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(13012), 3, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [291373] = 3, + STATE(4669), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11540), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [291093] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12257), 7, + ACTIONS(12167), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319049,7 +319110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12259), 11, + ACTIONS(12169), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -319061,10 +319122,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [291399] = 3, + [291119] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12159), 7, + ACTIONS(11779), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319072,45 +319133,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12157), 11, + ACTIONS(11777), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [291425] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [291145] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(12159), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(12157), 11, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(12931), 1, + sym__concat, + STATE(5562), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4579), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4577), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [291451] = 3, + anon_sym_LT_LT_LT, + [291177] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12105), 7, + ACTIONS(4593), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319118,94 +319182,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12107), 11, + ACTIONS(4595), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [291477] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [291203] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(2072), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(2074), 11, + ACTIONS(12929), 1, + aux_sym_concatenation_token1, + ACTIONS(12931), 1, + sym__concat, + STATE(5563), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4595), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4593), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [291503] = 6, + [291235] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13001), 1, + ACTIONS(12119), 7, anon_sym_PIPE, - ACTIONS(13003), 1, - anon_sym_PIPE_AMP, - STATE(5611), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12064), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12068), 9, + ACTIONS(12117), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [291535] = 3, + [291261] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(11958), 7, - anon_sym_PIPE, + ACTIONS(6012), 1, + anon_sym_LT_LT, + ACTIONS(6014), 1, + anon_sym_LT_LT_DASH, + ACTIONS(12682), 1, + sym_file_descriptor, + ACTIONS(6010), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12387), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12385), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5369), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12383), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11956), 11, + [291299] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4705), 1, + anon_sym_LT_LT, + ACTIONS(11829), 1, sym_file_descriptor, + ACTIONS(12962), 1, + anon_sym_LT_LT_DASH, + ACTIONS(13016), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(13020), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(13018), 3, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [291561] = 3, + STATE(4634), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11522), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [291337] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(2094), 7, + ACTIONS(11823), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319213,7 +319312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2096), 11, + ACTIONS(11821), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -319225,19 +319324,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [291587] = 6, + [291363] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12928), 1, + ACTIONS(12929), 1, aux_sym_concatenation_token1, - ACTIONS(12930), 1, + ACTIONS(12931), 1, sym__concat, - STATE(5580), 1, + STATE(5562), 1, aux_sym_concatenation_repeat1, - ACTIONS(4554), 2, + ACTIONS(5589), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 13, + ACTIONS(5587), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -319251,113 +319350,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [291619] = 6, - ACTIONS(3), 1, + [291395] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(12928), 1, - aux_sym_concatenation_token1, - ACTIONS(12930), 1, - sym__concat, - STATE(5577), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4566), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12167), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(12169), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [291651] = 3, + anon_sym_LT_LT_DASH, + [291421] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1261), 7, + ACTIONS(11841), 1, anon_sym_PIPE, + ACTIONS(13022), 1, + anon_sym_PIPE_AMP, + STATE(5573), 1, + aux_sym_pipeline_repeat1, + ACTIONS(11839), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1263), 11, + ACTIONS(11844), 9, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [291677] = 6, - ACTIONS(3), 1, + [291453] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(12928), 1, - aux_sym_concatenation_token1, - ACTIONS(12930), 1, - sym__concat, - STATE(5580), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2096), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2094), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12179), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(12181), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [291709] = 8, - ACTIONS(3), 1, + anon_sym_LT_LT_DASH, + [291479] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(11315), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(13011), 1, - anon_sym_LT_LT_LT, - ACTIONS(13014), 1, + ACTIONS(12179), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(12181), 11, sym_file_descriptor, - ACTIONS(11307), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(13008), 2, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5609), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(13005), 8, + anon_sym_LT_LT_DASH, + [291505] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12189), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(12187), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - [291745] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [291531] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5770), 7, + ACTIONS(11931), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319365,9 +319479,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5772), 11, + ACTIONS(11929), 11, sym_file_descriptor, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -319377,36 +319490,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [291771] = 6, + anon_sym_LT_LT_LT, + [291557] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13017), 1, + ACTIONS(11789), 7, anon_sym_PIPE, - ACTIONS(13020), 1, - anon_sym_PIPE_AMP, - STATE(5611), 1, - aux_sym_pipeline_repeat1, - ACTIONS(11743), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11748), 9, + ACTIONS(11787), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [291803] = 3, + anon_sym_LT_LT_LT, + [291583] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4552), 7, + ACTIONS(11994), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319414,7 +319525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4554), 11, + ACTIONS(11992), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -319426,10 +319537,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [291829] = 3, + [291609] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12034), 7, + ACTIONS(2167), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319437,51 +319548,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12036), 11, + ACTIONS(2169), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [291855] = 9, + [291635] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(4255), 1, + ACTIONS(12871), 1, anon_sym_LT_LT, - ACTIONS(11457), 1, - sym_file_descriptor, - ACTIONS(13029), 1, + ACTIONS(12873), 1, anon_sym_LT_LT_DASH, - ACTIONS(13023), 2, + ACTIONS(12875), 1, + sym_file_descriptor, + ACTIONS(6010), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(13027), 2, + ACTIONS(12840), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(13025), 3, + ACTIONS(12838), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(4283), 3, + STATE(5473), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11280), 5, + ACTIONS(12836), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [291893] = 3, + [291673] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(11929), 7, + ACTIONS(4593), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319489,7 +319600,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11931), 11, + ACTIONS(4595), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [291699] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11797), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(11795), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -319501,19 +319635,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [291919] = 6, + [291725] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12928), 1, + ACTIONS(12929), 1, aux_sym_concatenation_token1, - ACTIONS(12930), 1, + ACTIONS(12931), 1, sym__concat, - STATE(5580), 1, + STATE(5563), 1, aux_sym_concatenation_repeat1, - ACTIONS(4372), 2, + ACTIONS(2169), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 13, + ACTIONS(2167), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -319527,10 +319661,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [291951] = 3, + [291757] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12201), 7, + ACTIONS(4511), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319538,43 +319672,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12199), 10, + ACTIONS(4513), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [291976] = 3, - ACTIONS(3), 1, + [291783] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1322), 3, + ACTIONS(11923), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(11921), 11, sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [291809] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2171), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(2173), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [292001] = 3, + [291835] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(2094), 7, + ACTIONS(4705), 1, + anon_sym_LT_LT, + ACTIONS(12734), 1, + sym_file_descriptor, + ACTIONS(12962), 1, + anon_sym_LT_LT_DASH, + ACTIONS(13025), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(13029), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(13027), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5297), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12324), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [291873] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1272), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319582,7 +319770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2096), 10, + ACTIONS(1274), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -319593,10 +319781,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292026] = 3, + sym__special_character, + [291899] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(11958), 7, + ACTIONS(12119), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319604,21 +319793,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11956), 10, + ACTIONS(12117), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292051] = 3, + [291925] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12034), 7, + ACTIONS(12229), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319626,25 +319816,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12036), 10, + ACTIONS(12227), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292076] = 3, + [291951] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 3, + ACTIONS(13031), 1, + sym__special_character, + STATE(5631), 1, + aux_sym__literal_repeat1, + ACTIONS(5589), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5587), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [291980] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 14, + ACTIONS(1312), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [292005] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1292), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -319659,10 +319896,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [292101] = 3, + [292030] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5930), 7, + ACTIONS(11923), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319670,7 +319907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5932), 10, + ACTIONS(11921), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -319681,10 +319918,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292126] = 3, + [292055] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(5930), 7, + ACTIONS(12275), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319692,7 +319929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5932), 10, + ACTIONS(12277), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -319703,7 +319940,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292151] = 3, + [292080] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12245), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(12243), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [292105] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1318), 3, @@ -319725,10 +319984,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [292176] = 3, + [292130] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12159), 7, + ACTIONS(12211), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319736,7 +319995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12157), 10, + ACTIONS(12213), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -319747,10 +320006,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292201] = 3, + [292155] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1354), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1352), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [292180] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12159), 7, + ACTIONS(12185), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319758,7 +320039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12157), 10, + ACTIONS(12183), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -319769,14 +320050,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292226] = 3, + [292205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 3, + ACTIONS(1302), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 14, + ACTIONS(1300), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -319791,10 +320072,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [292251] = 3, + [292230] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4370), 7, + ACTIONS(12177), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319802,7 +320083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4372), 10, + ACTIONS(12175), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -319813,32 +320094,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292276] = 3, - ACTIONS(71), 1, + [292255] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(12257), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(12259), 10, + ACTIONS(1342), 3, sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1340), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [292301] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [292280] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12257), 7, + ACTIONS(12229), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319846,7 +320127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12259), 10, + ACTIONS(12227), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -319857,17 +320138,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292326] = 5, + [292305] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13031), 1, + ACTIONS(13033), 1, sym__special_character, - STATE(5657), 1, + STATE(5631), 1, aux_sym__literal_repeat1, - ACTIONS(5697), 2, + ACTIONS(1362), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5695), 13, + ACTIONS(1360), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -319881,10 +320162,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [292355] = 3, + [292334] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12249), 7, + ACTIONS(11931), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319892,7 +320173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12251), 10, + ACTIONS(11929), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -319903,10 +320184,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292380] = 3, + [292359] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12207), 7, + ACTIONS(12069), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319914,7 +320195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12205), 10, + ACTIONS(12067), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -319925,10 +320206,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292405] = 3, + [292384] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12223), 7, + ACTIONS(12229), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319936,7 +320217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12225), 10, + ACTIONS(12227), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -319947,10 +320228,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292430] = 3, + [292409] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12223), 7, + ACTIONS(12119), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319958,7 +320239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12225), 10, + ACTIONS(12117), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -319969,10 +320250,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292455] = 3, + [292434] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1358), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1356), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [292459] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(11828), 7, + ACTIONS(12115), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319980,7 +320283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11830), 10, + ACTIONS(12113), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -319991,10 +320294,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292480] = 3, + [292484] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13031), 1, + sym__special_character, + STATE(5631), 1, + aux_sym__literal_repeat1, + ACTIONS(5595), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5593), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [292513] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12201), 7, + ACTIONS(12179), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320002,7 +320329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12199), 10, + ACTIONS(12181), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320013,10 +320340,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292505] = 3, + [292538] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12217), 7, + ACTIONS(12119), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320024,7 +320351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12219), 10, + ACTIONS(12117), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320035,10 +320362,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292530] = 3, + [292563] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12161), 7, + ACTIONS(12271), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320046,7 +320373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12163), 10, + ACTIONS(12273), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320057,10 +320384,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292555] = 3, + [292588] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12117), 7, + ACTIONS(12281), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320068,7 +320395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12119), 10, + ACTIONS(12279), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320079,10 +320406,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292580] = 3, + [292613] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1320), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [292638] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12117), 7, + ACTIONS(12163), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320090,7 +320439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12119), 10, + ACTIONS(12165), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320101,34 +320450,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292605] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13031), 1, - sym__special_character, - STATE(5657), 1, - aux_sym__literal_repeat1, - ACTIONS(4566), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4564), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [292634] = 3, + [292663] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(11792), 7, + ACTIONS(12271), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320136,7 +320461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11790), 10, + ACTIONS(12273), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320147,10 +320472,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292659] = 3, + [292688] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12105), 7, + ACTIONS(12107), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320158,7 +320483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12107), 10, + ACTIONS(12105), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320169,10 +320494,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292684] = 3, + [292713] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12105), 7, + ACTIONS(12115), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320180,7 +320505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12107), 10, + ACTIONS(12113), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320191,10 +320516,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292709] = 3, + [292738] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(11731), 7, + ACTIONS(12239), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320202,7 +320527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11729), 10, + ACTIONS(12241), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320213,10 +320538,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292734] = 3, + [292763] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(11725), 7, + ACTIONS(4511), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320224,7 +320549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11727), 10, + ACTIONS(4513), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320235,10 +320560,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292759] = 3, + [292788] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12211), 7, + ACTIONS(12231), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320246,7 +320571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12209), 10, + ACTIONS(12233), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320257,10 +320582,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292784] = 3, + [292813] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1334), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1332), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [292838] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12137), 7, + ACTIONS(12109), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320268,7 +320615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12139), 10, + ACTIONS(12111), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320279,17 +320626,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292809] = 5, + [292863] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(13031), 1, sym__special_character, - STATE(5657), 1, + STATE(5631), 1, aux_sym__literal_repeat1, - ACTIONS(4469), 2, + ACTIONS(4579), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4467), 13, + ACTIONS(4577), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -320303,10 +320650,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [292838] = 3, + [292892] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(11929), 7, + ACTIONS(12235), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320314,7 +320661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11931), 10, + ACTIONS(12237), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320325,10 +320672,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292863] = 3, + [292917] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12145), 7, + ACTIONS(12275), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320336,7 +320683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12147), 10, + ACTIONS(12277), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320347,14 +320694,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292888] = 3, + [292942] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12173), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(12171), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [292967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 3, + ACTIONS(1306), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 14, + ACTIONS(1304), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -320369,14 +320738,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [292913] = 3, + [292992] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 3, + ACTIONS(1278), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 14, + ACTIONS(1276), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -320391,10 +320760,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [292938] = 3, + [293017] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12267), 7, + ACTIONS(12209), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320402,7 +320771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12265), 10, + ACTIONS(12207), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320413,17 +320782,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292963] = 5, + [293042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13033), 1, - sym__special_character, - STATE(5657), 1, - aux_sym__literal_repeat1, - ACTIONS(1364), 2, + ACTIONS(1358), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1362), 13, + ACTIONS(1356), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -320437,10 +320803,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [292992] = 3, + aux_sym_concatenation_token1, + [293067] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12189), 7, + ACTIONS(11823), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320448,7 +320815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12187), 10, + ACTIONS(11821), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320459,10 +320826,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [293017] = 3, + [293092] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12141), 7, + ACTIONS(11779), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320470,7 +320837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12143), 10, + ACTIONS(11777), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320481,32 +320848,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [293042] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1326), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [293067] = 3, + [293117] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12197), 7, + ACTIONS(12219), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320514,7 +320859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12195), 10, + ACTIONS(12221), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320525,76 +320870,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [293092] = 3, - ACTIONS(3), 1, + [293142] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1338), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12121), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [293117] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 3, + ACTIONS(12123), 10, sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [293142] = 3, - ACTIONS(3), 1, + anon_sym_LT_LT_DASH, + [293167] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1314), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12217), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(12215), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [293167] = 3, + anon_sym_LT_LT_DASH, + [293192] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12153), 7, + ACTIONS(12179), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320602,7 +320925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12155), 10, + ACTIONS(12181), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320613,32 +320936,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [293192] = 3, - ACTIONS(3), 1, + [293217] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1354), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12167), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(12169), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [293217] = 3, + anon_sym_LT_LT_DASH, + [293242] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12149), 7, + ACTIONS(12225), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320646,7 +320969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12151), 10, + ACTIONS(12223), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320657,36 +320980,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [293242] = 3, - ACTIONS(3), 1, + [293267] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1310), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12125), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(12127), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [293267] = 3, + anon_sym_LT_LT_DASH, + [293292] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 3, + ACTIONS(13031), 1, + sym__special_character, + STATE(5631), 1, + aux_sym__literal_repeat1, + ACTIONS(4428), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 14, + ACTIONS(4426), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -320700,15 +321026,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [293292] = 3, + [293321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 3, + ACTIONS(1298), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 14, + ACTIONS(1296), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -320723,10 +321048,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [293317] = 3, + [293346] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(4552), 7, + ACTIONS(11953), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320734,7 +321059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4554), 10, + ACTIONS(11951), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320745,10 +321070,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [293342] = 3, + [293371] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12135), 7, + ACTIONS(12189), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320756,7 +321081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12133), 10, + ACTIONS(12187), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320767,10 +321092,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [293367] = 3, + [293396] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12213), 7, + ACTIONS(12247), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320778,7 +321103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12215), 10, + ACTIONS(12249), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320789,34 +321114,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [293392] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13031), 1, - sym__special_character, - STATE(5657), 1, - aux_sym__literal_repeat1, - ACTIONS(5723), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5721), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, [293421] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12213), 7, + ACTIONS(12159), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320824,7 +321125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12215), 10, + ACTIONS(12161), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320838,7 +321139,7 @@ static const uint16_t ts_small_parse_table[] = { [293446] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(11741), 7, + ACTIONS(12167), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320846,7 +321147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11739), 10, + ACTIONS(12169), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320860,7 +321161,7 @@ static const uint16_t ts_small_parse_table[] = { [293471] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12131), 7, + ACTIONS(12004), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320868,7 +321169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12129), 10, + ACTIONS(12002), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320880,31 +321181,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, [293496] = 3, - ACTIONS(71), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(12127), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(12125), 10, + ACTIONS(1326), 3, sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1324), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, [293521] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12101), 7, + ACTIONS(12205), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320912,7 +321213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12103), 10, + ACTIONS(12203), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320924,31 +321225,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, [293546] = 3, - ACTIONS(3), 1, + ACTIONS(71), 1, sym_comment, - ACTIONS(1253), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(4593), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(4595), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, + anon_sym_LT_LT_DASH, [293571] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12111), 7, + ACTIONS(12191), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320956,7 +321257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12109), 10, + ACTIONS(12193), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320970,7 +321271,7 @@ static const uint16_t ts_small_parse_table[] = { [293596] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12271), 7, + ACTIONS(5927), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320978,7 +321279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12269), 10, + ACTIONS(5929), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320990,31 +321291,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, [293621] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1294), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [293646] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12193), 7, + ACTIONS(12185), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -321022,7 +321301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12191), 10, + ACTIONS(12183), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -321033,10 +321312,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [293671] = 3, + [293646] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12123), 7, + ACTIONS(12290), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -321044,7 +321323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12121), 10, + ACTIONS(12288), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -321055,10 +321334,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [293696] = 3, + [293671] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12115), 7, + ACTIONS(5927), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -321066,7 +321345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12113), 10, + ACTIONS(5929), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -321077,36 +321356,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [293721] = 3, - ACTIONS(71), 1, + [293696] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(12229), 7, - anon_sym_PIPE, + ACTIONS(1350), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1348), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12227), 10, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [293721] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1338), 3, sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1336), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, [293746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 3, + ACTIONS(1330), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 14, + ACTIONS(1328), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -321124,7 +321425,7 @@ static const uint16_t ts_small_parse_table[] = { [293771] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12229), 7, + ACTIONS(2171), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -321132,7 +321433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12227), 10, + ACTIONS(2173), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -321146,7 +321447,7 @@ static const uint16_t ts_small_parse_table[] = { [293796] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12255), 7, + ACTIONS(12151), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -321154,7 +321455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12253), 10, + ACTIONS(12153), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -321166,31 +321467,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, [293821] = 3, - ACTIONS(71), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(12296), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(12298), 10, + ACTIONS(1346), 3, sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1344), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, [293846] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(2072), 7, + ACTIONS(2167), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -321198,7 +321499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2074), 10, + ACTIONS(2169), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -321212,11 +321513,11 @@ static const uint16_t ts_small_parse_table[] = { [293871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 3, + ACTIONS(1310), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 14, + ACTIONS(1308), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -321234,7 +321535,7 @@ static const uint16_t ts_small_parse_table[] = { [293896] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12294), 7, + ACTIONS(12155), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -321242,7 +321543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12292), 10, + ACTIONS(12157), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -321256,7 +321557,7 @@ static const uint16_t ts_small_parse_table[] = { [293921] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12261), 7, + ACTIONS(11789), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -321264,7 +321565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12263), 10, + ACTIONS(11787), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -321276,43 +321577,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, [293946] = 3, - ACTIONS(3), 1, + ACTIONS(71), 1, sym_comment, - ACTIONS(1350), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12103), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(12101), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, + anon_sym_LT_LT_DASH, [293971] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13040), 1, aux_sym__simple_variable_name_token1, ACTIONS(13042), 1, sym_variable_name, - STATE(3533), 1, + STATE(3545), 1, sym_subscript, - STATE(6448), 1, + STATE(6460), 1, sym_command_substitution, ACTIONS(13038), 3, anon_sym_DOLLAR, @@ -321328,13 +321629,13 @@ static const uint16_t ts_small_parse_table[] = { [294009] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6492), 1, + ACTIONS(6494), 1, anon_sym_DQUOTE, ACTIONS(13048), 1, sym_variable_name, - STATE(6513), 1, + STATE(6482), 1, sym_string, - ACTIONS(1239), 2, + ACTIONS(1227), 2, anon_sym_PIPE, anon_sym_RPAREN, ACTIONS(13046), 2, @@ -321350,16 +321651,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [294041] = 7, + [294041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6492), 1, + ACTIONS(1274), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1272), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + [294065] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6494), 1, anon_sym_DQUOTE, ACTIONS(13048), 1, sym_variable_name, - STATE(6513), 1, + STATE(6482), 1, sym_string, - ACTIONS(1227), 2, + ACTIONS(1239), 2, anon_sym_PIPE, anon_sym_RPAREN, ACTIONS(13046), 2, @@ -321375,20 +321697,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [294073] = 9, + [294097] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11764), 1, + ACTIONS(11735), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11766), 1, + ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11768), 1, + ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(13054), 1, aux_sym__simple_variable_name_token1, ACTIONS(13056), 1, sym_variable_name, - STATE(6448), 2, + STATE(6460), 2, sym_subscript, sym_command_substitution, ACTIONS(13052), 3, @@ -321402,27 +321724,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_POUND, anon_sym_AT2, - [294109] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - sym__special_character, [294133] = 12, ACTIONS(3), 1, sym_comment, @@ -321442,12 +321743,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - STATE(5768), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -321471,17 +321772,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13078), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5705), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [294215] = 12, + [294215] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4513), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4511), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [294238] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -321500,17 +321821,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13082), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [294256] = 12, + [294279] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -321529,17 +321850,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13086), 1, anon_sym_DQUOTE, - STATE(5711), 1, + STATE(5708), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [294297] = 12, + [294320] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -321558,17 +321879,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13090), 1, anon_sym_DQUOTE, - STATE(5752), 1, + STATE(5711), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [294338] = 12, + [294361] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -321587,17 +321908,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13094), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [294379] = 12, + [294402] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2173), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2171), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [294425] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -321616,17 +321957,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13098), 1, anon_sym_DQUOTE, - STATE(5713), 1, + STATE(5720), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [294420] = 12, + [294466] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -321645,17 +321986,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13102), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [294461] = 12, + [294507] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -321674,17 +322015,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13106), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5714), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [294502] = 12, + [294548] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4595), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4593), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [294571] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -321703,17 +322064,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13110), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [294543] = 12, + [294612] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -321732,17 +322093,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13114), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [294584] = 12, + [294653] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -321761,17 +322122,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13118), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5746), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [294625] = 12, + [294694] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -321790,17 +322151,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13122), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5719), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [294666] = 12, + [294735] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -321819,17 +322180,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13126), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5723), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [294707] = 12, + [294776] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -321848,17 +322209,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13130), 1, anon_sym_DQUOTE, - STATE(5719), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [294748] = 12, + [294817] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -321877,17 +322238,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13134), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [294789] = 12, + [294858] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -321906,17 +322267,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13138), 1, anon_sym_DQUOTE, - STATE(5801), 1, + STATE(5722), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [294830] = 12, + [294899] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -321935,17 +322296,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13142), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [294871] = 12, + [294940] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -321964,17 +322325,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13146), 1, anon_sym_DQUOTE, - STATE(5712), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [294912] = 12, + [294981] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -321993,17 +322354,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13150), 1, anon_sym_DQUOTE, - STATE(5766), 1, + STATE(5725), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [294953] = 12, + [295022] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -322022,17 +322383,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13154), 1, anon_sym_DQUOTE, - STATE(5704), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [294994] = 12, + [295063] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -322051,17 +322412,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13158), 1, anon_sym_DQUOTE, - STATE(5710), 1, + STATE(5732), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295035] = 12, + [295104] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -322080,17 +322441,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13162), 1, anon_sym_DQUOTE, - STATE(5707), 1, + STATE(5728), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295076] = 12, + [295145] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -322109,17 +322470,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13166), 1, anon_sym_DQUOTE, - STATE(5731), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295117] = 12, + [295186] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -322138,17 +322499,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13170), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5733), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295158] = 12, + [295227] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -322167,17 +322528,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13174), 1, anon_sym_DQUOTE, - STATE(5709), 1, + STATE(5731), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295199] = 12, + [295268] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -322196,17 +322557,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13178), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295240] = 12, + [295309] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -322225,17 +322586,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13182), 1, anon_sym_DQUOTE, - STATE(5728), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295281] = 12, + [295350] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -322254,17 +322615,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13186), 1, anon_sym_DQUOTE, - STATE(5740), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295322] = 12, + [295391] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -322283,17 +322644,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13190), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5735), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295363] = 12, + [295432] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -322312,17 +322673,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13194), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295404] = 12, + [295473] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -322341,17 +322702,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13198), 1, anon_sym_DQUOTE, - STATE(5726), 1, + STATE(5738), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295445] = 12, + [295514] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -322370,17 +322731,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13202), 1, anon_sym_DQUOTE, - STATE(5702), 1, + STATE(5742), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295486] = 12, + [295555] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -322399,17 +322760,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13206), 1, anon_sym_DQUOTE, - STATE(5848), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295527] = 12, + [295596] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -322428,17 +322789,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13210), 1, anon_sym_DQUOTE, - STATE(5732), 1, + STATE(5743), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295568] = 12, + [295637] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -322457,37 +322818,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13214), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5752), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295609] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2096), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2094), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [295632] = 12, + [295678] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -322506,17 +322847,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13218), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5702), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295673] = 12, + [295719] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -322535,17 +322876,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13222), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295714] = 12, + [295760] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -322564,17 +322905,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13226), 1, anon_sym_DQUOTE, - STATE(5739), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295755] = 12, + [295801] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -322593,17 +322934,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13230), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5747), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295796] = 12, + [295842] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -322622,37 +322963,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13234), 1, anon_sym_DQUOTE, - STATE(5749), 1, + STATE(5748), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295837] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4372), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4370), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [295860] = 12, + [295883] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -322671,17 +322992,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13238), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295901] = 12, + [295924] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -322700,36 +323021,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13242), 1, anon_sym_DQUOTE, - STATE(5737), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295942] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4554), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4552), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, [295965] = 12, ACTIONS(3), 1, sym_comment, @@ -322749,12 +323050,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13246), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -322778,12 +323079,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13250), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5751), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -322807,12 +323108,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13254), 1, anon_sym_DQUOTE, - STATE(5745), 1, + STATE(5753), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -322836,12 +323137,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13258), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -322865,12 +323166,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13262), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -322894,12 +323195,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13266), 1, anon_sym_DQUOTE, - STATE(5760), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -322907,28 +323208,28 @@ static const uint16_t ts_small_parse_table[] = { [296211] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13271), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13274), 1, + anon_sym_DOLLAR, + ACTIONS(13277), 1, + anon_sym_DQUOTE, + ACTIONS(13279), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13282), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13285), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13288), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13291), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13268), 1, - anon_sym_DOLLAR, - ACTIONS(13270), 1, - anon_sym_DQUOTE, - STATE(5759), 1, + STATE(5754), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13268), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -322948,16 +323249,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13272), 1, + ACTIONS(13294), 1, anon_sym_DOLLAR, - ACTIONS(13274), 1, + ACTIONS(13296), 1, anon_sym_DQUOTE, - STATE(5864), 1, + STATE(5757), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -322977,16 +323278,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13276), 1, + ACTIONS(13298), 1, anon_sym_DOLLAR, - ACTIONS(13278), 1, + ACTIONS(13300), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5758), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -323006,16 +323307,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13280), 1, + ACTIONS(13302), 1, anon_sym_DOLLAR, - ACTIONS(13282), 1, + ACTIONS(13304), 1, anon_sym_DQUOTE, - STATE(5715), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -323035,16 +323336,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13284), 1, + ACTIONS(13306), 1, anon_sym_DOLLAR, - ACTIONS(13286), 1, + ACTIONS(13308), 1, anon_sym_DQUOTE, - STATE(5742), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -323064,16 +323365,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13288), 1, + ACTIONS(13310), 1, anon_sym_DOLLAR, - ACTIONS(13290), 1, + ACTIONS(13312), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5762), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -323093,16 +323394,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13292), 1, + ACTIONS(13314), 1, anon_sym_DOLLAR, - ACTIONS(13294), 1, + ACTIONS(13316), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5761), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -323122,16 +323423,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13296), 1, + ACTIONS(13318), 1, anon_sym_DOLLAR, - ACTIONS(13298), 1, + ACTIONS(13320), 1, anon_sym_DQUOTE, - STATE(5767), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -323151,16 +323452,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13300), 1, + ACTIONS(13322), 1, anon_sym_DOLLAR, - ACTIONS(13302), 1, + ACTIONS(13324), 1, anon_sym_DQUOTE, - STATE(5756), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -323180,16 +323481,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13304), 1, + ACTIONS(13326), 1, anon_sym_DOLLAR, - ACTIONS(13306), 1, + ACTIONS(13328), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5766), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -323209,16 +323510,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13308), 1, + ACTIONS(13330), 1, anon_sym_DOLLAR, - ACTIONS(13310), 1, + ACTIONS(13332), 1, anon_sym_DQUOTE, - STATE(5763), 1, + STATE(5783), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -323238,16 +323539,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13312), 1, + ACTIONS(13334), 1, anon_sym_DOLLAR, - ACTIONS(13314), 1, + ACTIONS(13336), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5767), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -323267,16 +323568,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13316), 1, + ACTIONS(13338), 1, anon_sym_DOLLAR, - ACTIONS(13318), 1, + ACTIONS(13340), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -323296,16 +323597,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13320), 1, + ACTIONS(13342), 1, anon_sym_DOLLAR, - ACTIONS(13322), 1, + ACTIONS(13344), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -323313,28 +323614,28 @@ static const uint16_t ts_small_parse_table[] = { [296785] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13327), 1, + ACTIONS(13060), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13330), 1, - anon_sym_DOLLAR, - ACTIONS(13333), 1, - anon_sym_DQUOTE, - ACTIONS(13335), 1, + ACTIONS(13066), 1, sym_string_content, - ACTIONS(13338), 1, + ACTIONS(13068), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13341), 1, + ACTIONS(13070), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13344), 1, + ACTIONS(13072), 1, anon_sym_BQUOTE, - ACTIONS(13347), 1, + ACTIONS(13074), 1, anon_sym_DOLLAR_BQUOTE, - STATE(5768), 1, + ACTIONS(13346), 1, + anon_sym_DOLLAR, + ACTIONS(13348), 1, + anon_sym_DQUOTE, + STATE(5771), 1, aux_sym_string_repeat1, - ACTIONS(13324), 2, + ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -323363,7 +323664,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -323387,12 +323688,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13356), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -323416,12 +323717,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13360), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -323445,12 +323746,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13364), 1, anon_sym_DQUOTE, - STATE(5813), 1, + STATE(5777), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -323474,12 +323775,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13368), 1, anon_sym_DQUOTE, - STATE(5771), 1, + STATE(5775), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -323503,12 +323804,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13372), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5852), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -323532,12 +323833,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13376), 1, anon_sym_DQUOTE, - STATE(5774), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -323561,12 +323862,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13380), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5778), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -323590,12 +323891,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13384), 1, anon_sym_DQUOTE, - STATE(5776), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -323619,12 +323920,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13388), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -323648,12 +323949,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13392), 1, anon_sym_DQUOTE, - STATE(5785), 1, + STATE(5782), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -323677,12 +323978,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13396), 1, anon_sym_DQUOTE, - STATE(5795), 1, + STATE(5781), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -323706,12 +324007,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13400), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -323735,12 +324036,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13404), 1, anon_sym_DQUOTE, - STATE(5778), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -323764,12 +324065,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13408), 1, anon_sym_DQUOTE, - STATE(5714), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -323793,12 +324094,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13412), 1, anon_sym_DQUOTE, - STATE(5703), 1, + STATE(5786), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -323822,12 +324123,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13416), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5787), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -323851,12 +324152,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13420), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -323880,12 +324181,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13424), 1, anon_sym_DQUOTE, - STATE(5748), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -323909,37 +324210,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13428), 1, anon_sym_DQUOTE, - STATE(5786), 1, + STATE(5864), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [297646] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2074), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2072), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [297669] = 12, + [297646] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -323958,17 +324239,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13432), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5793), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [297710] = 12, + [297687] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -323987,17 +324268,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13436), 1, anon_sym_DQUOTE, - STATE(5790), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [297751] = 12, + [297728] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -324016,17 +324297,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13440), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5807), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [297792] = 12, + [297769] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -324045,17 +324326,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13444), 1, anon_sym_DQUOTE, - STATE(5792), 1, + STATE(5794), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [297833] = 12, + [297810] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -324074,17 +324355,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13448), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [297874] = 12, + [297851] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -324103,17 +324384,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13452), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [297915] = 12, + [297892] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -324132,17 +324413,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13456), 1, anon_sym_DQUOTE, - STATE(5794), 1, + STATE(5796), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [297956] = 12, + [297933] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -324161,17 +324442,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13460), 1, anon_sym_DQUOTE, - STATE(5803), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [297997] = 12, + [297974] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -324190,17 +324471,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13464), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5800), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298038] = 12, + [298015] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -324219,17 +324500,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13468), 1, anon_sym_DQUOTE, - STATE(5798), 1, + STATE(5799), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298079] = 12, + [298056] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -324248,17 +324529,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13472), 1, anon_sym_DQUOTE, - STATE(5751), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298120] = 12, + [298097] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -324277,17 +324558,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13476), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298161] = 12, + [298138] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -324306,17 +324587,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13480), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5802), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298202] = 12, + [298179] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -324335,17 +324616,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13484), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298243] = 12, + [298220] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -324364,17 +324645,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13488), 1, anon_sym_DQUOTE, - STATE(5802), 1, + STATE(5806), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298284] = 12, + [298261] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -324393,17 +324674,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13492), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5805), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298325] = 12, + [298302] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -324422,17 +324703,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13496), 1, anon_sym_DQUOTE, - STATE(5765), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298366] = 12, + [298343] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -324451,17 +324732,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13500), 1, anon_sym_DQUOTE, - STATE(5805), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298407] = 12, + [298384] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -324480,17 +324761,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13504), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298448] = 12, + [298425] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -324509,17 +324790,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13508), 1, anon_sym_DQUOTE, - STATE(5808), 1, + STATE(5810), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298489] = 12, + [298466] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -324538,17 +324819,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13512), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5812), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298530] = 12, + [298507] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -324567,17 +324848,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13516), 1, anon_sym_DQUOTE, - STATE(5810), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298571] = 12, + [298548] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -324596,17 +324877,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13520), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5715), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298612] = 12, + [298589] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -324625,17 +324906,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13524), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298653] = 12, + [298630] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -324654,17 +324935,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13528), 1, anon_sym_DQUOTE, - STATE(5812), 1, + STATE(5814), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298694] = 12, + [298671] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -324683,17 +324964,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13532), 1, anon_sym_DQUOTE, - STATE(5821), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298735] = 12, + [298712] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -324712,17 +324993,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13536), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5820), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298776] = 12, + [298753] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -324741,17 +325022,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13540), 1, anon_sym_DQUOTE, - STATE(5816), 1, + STATE(5818), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298817] = 12, + [298794] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -324770,17 +325051,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13544), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5828), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298858] = 12, + [298835] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -324799,17 +325080,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13548), 1, anon_sym_DQUOTE, - STATE(5818), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298899] = 12, + [298876] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -324828,17 +325109,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13552), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5821), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298940] = 12, + [298917] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -324857,17 +325138,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13556), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298981] = 12, + [298958] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -324886,17 +325167,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13560), 1, anon_sym_DQUOTE, - STATE(5829), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [299022] = 12, + [298999] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -324915,17 +325196,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13564), 1, anon_sym_DQUOTE, - STATE(5820), 1, + STATE(5824), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [299063] = 12, + [299040] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -324944,17 +325225,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13568), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5825), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [299104] = 12, + [299081] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -324973,17 +325254,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13572), 1, anon_sym_DQUOTE, - STATE(5824), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [299145] = 12, + [299122] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -325002,17 +325283,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13576), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [299186] = 12, + [299163] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -325031,17 +325312,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13580), 1, anon_sym_DQUOTE, - STATE(5826), 1, + STATE(5830), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [299227] = 12, + [299204] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -325060,17 +325341,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13584), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5829), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [299268] = 12, + [299245] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -325089,17 +325370,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13588), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [299309] = 12, + [299286] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -325118,17 +325399,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13592), 1, anon_sym_DQUOTE, - STATE(5828), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [299350] = 12, + [299327] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -325147,17 +325428,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13596), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [299391] = 12, + [299368] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -325176,17 +325457,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13600), 1, anon_sym_DQUOTE, - STATE(5831), 1, + STATE(5832), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [299432] = 12, + [299409] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -325205,17 +325486,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13604), 1, anon_sym_DQUOTE, - STATE(5839), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [299473] = 12, + [299450] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -325234,17 +325515,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13608), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5835), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [299514] = 12, + [299491] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -325263,17 +325544,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13612), 1, anon_sym_DQUOTE, - STATE(5834), 1, + STATE(5856), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [299555] = 12, + [299532] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(13060), 1, @@ -325292,16 +325573,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13616), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, + [299573] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2169), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2167), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, [299596] = 12, ACTIONS(3), 1, sym_comment, @@ -325321,12 +325622,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13620), 1, anon_sym_DQUOTE, - STATE(5836), 1, + STATE(5846), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -325350,12 +325651,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13624), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5840), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -325379,12 +325680,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13628), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5845), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -325408,12 +325709,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13632), 1, anon_sym_DQUOTE, - STATE(5838), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -325437,12 +325738,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13636), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5842), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -325466,12 +325767,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13640), 1, anon_sym_DQUOTE, - STATE(5841), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -325495,12 +325796,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13644), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5844), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -325524,12 +325825,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13648), 1, anon_sym_DQUOTE, - STATE(5843), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -325553,12 +325854,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13652), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -325582,12 +325883,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13656), 1, anon_sym_DQUOTE, - STATE(5845), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -325611,12 +325912,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13660), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5848), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -325640,12 +325941,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13664), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -325669,12 +325970,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13668), 1, anon_sym_DQUOTE, - STATE(5781), 1, + STATE(5850), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -325698,12 +325999,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13672), 1, anon_sym_DQUOTE, - STATE(5847), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -325727,12 +326028,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13676), 1, anon_sym_DQUOTE, - STATE(5857), 1, + STATE(5861), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -325756,12 +326057,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13680), 1, anon_sym_DQUOTE, - STATE(5717), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -325785,12 +326086,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13684), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5854), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -325814,12 +326115,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13688), 1, anon_sym_DQUOTE, - STATE(5853), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -325843,12 +326144,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13692), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5857), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -325872,12 +326173,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13696), 1, anon_sym_DQUOTE, - STATE(5855), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -325901,12 +326202,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13700), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -325930,12 +326231,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13704), 1, anon_sym_DQUOTE, - STATE(5860), 1, + STATE(5859), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -325959,12 +326260,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13708), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -325988,12 +326289,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13712), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5862), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -326017,12 +326318,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13716), 1, anon_sym_DQUOTE, - STATE(5859), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -326046,12 +326347,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13720), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -326075,12 +326376,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13724), 1, anon_sym_DQUOTE, - STATE(5862), 1, + STATE(5790), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -326104,12 +326405,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, ACTIONS(13728), 1, anon_sym_DQUOTE, - STATE(5768), 1, + STATE(5754), 1, aux_sym_string_repeat1, ACTIONS(13058), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6127), 4, + STATE(6149), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, @@ -326117,16 +326418,16 @@ static const uint16_t ts_small_parse_table[] = { [300744] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3775), 1, + ACTIONS(5347), 1, anon_sym_DQUOTE, - ACTIONS(3779), 1, + ACTIONS(5351), 1, sym_variable_name, - STATE(2093), 1, + STATE(2691), 1, sym_string, - ACTIONS(3777), 2, + ACTIONS(5349), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3773), 9, + ACTIONS(5345), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326139,16 +326440,16 @@ static const uint16_t ts_small_parse_table[] = { [300772] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13170), 1, + ACTIONS(7476), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(7480), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(4510), 1, + sym_string, + ACTIONS(7478), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(7474), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326161,16 +326462,16 @@ static const uint16_t ts_small_parse_table[] = { [300800] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13118), 1, + ACTIONS(2129), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(3716), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(1725), 1, + sym_string, + ACTIONS(3714), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(3712), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326183,16 +326484,16 @@ static const uint16_t ts_small_parse_table[] = { [300828] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13246), 1, + ACTIONS(3247), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(3724), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(1876), 1, + sym_string, + ACTIONS(3722), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(3720), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326205,7 +326506,7 @@ static const uint16_t ts_small_parse_table[] = { [300856] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13142), 1, + ACTIONS(13114), 1, anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, @@ -326227,16 +326528,16 @@ static const uint16_t ts_small_parse_table[] = { [300884] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8556), 1, + ACTIONS(1908), 1, anon_sym_DQUOTE, - ACTIONS(8560), 1, + ACTIONS(1912), 1, sym_variable_name, - STATE(5364), 1, + STATE(1129), 1, sym_string, - ACTIONS(8558), 2, + ACTIONS(1910), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8554), 9, + ACTIONS(1906), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326249,12 +326550,12 @@ static const uint16_t ts_small_parse_table[] = { [300912] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(13356), 1, + anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13738), 1, - anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -326271,16 +326572,16 @@ static const uint16_t ts_small_parse_table[] = { [300940] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, - sym_variable_name, - ACTIONS(13740), 1, + ACTIONS(7008), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(7012), 1, + sym_variable_name, + STATE(4270), 1, + sym_string, + ACTIONS(7010), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(7006), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326293,12 +326594,12 @@ static const uint16_t ts_small_parse_table[] = { [300968] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(13360), 1, + anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13742), 1, - anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -326315,12 +326616,12 @@ static const uint16_t ts_small_parse_table[] = { [300996] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(13110), 1, + anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13744), 1, - anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -326337,16 +326638,16 @@ static const uint16_t ts_small_parse_table[] = { [301024] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7673), 1, - anon_sym_DQUOTE, - ACTIONS(7677), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(4393), 1, - sym_string, - ACTIONS(7675), 2, + ACTIONS(13738), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7671), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326359,16 +326660,16 @@ static const uint16_t ts_small_parse_table[] = { [301052] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4857), 1, - anon_sym_DQUOTE, - ACTIONS(4861), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(2638), 1, - sym_string, - ACTIONS(4859), 2, + ACTIONS(13740), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4855), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326381,12 +326682,12 @@ static const uint16_t ts_small_parse_table[] = { [301080] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(13178), 1, + anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13746), 1, - anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -326403,16 +326704,16 @@ static const uint16_t ts_small_parse_table[] = { [301108] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13114), 1, + ACTIONS(1498), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(2165), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(1215), 1, + sym_string, + ACTIONS(2163), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(2161), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326425,16 +326726,16 @@ static const uint16_t ts_small_parse_table[] = { [301136] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5061), 1, + ACTIONS(1623), 1, anon_sym_DQUOTE, - ACTIONS(5065), 1, + ACTIONS(1627), 1, sym_variable_name, - STATE(2712), 1, + STATE(838), 1, sym_string, - ACTIONS(5063), 2, + ACTIONS(1625), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5059), 9, + ACTIONS(1621), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326447,7 +326748,7 @@ static const uint16_t ts_small_parse_table[] = { [301164] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13134), 1, + ACTIONS(13182), 1, anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, @@ -326469,7 +326770,7 @@ static const uint16_t ts_small_parse_table[] = { [301192] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13708), 1, + ACTIONS(13376), 1, anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, @@ -326491,12 +326792,12 @@ static const uint16_t ts_small_parse_table[] = { [301220] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13190), 1, - anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, + ACTIONS(13742), 1, + anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -326513,16 +326814,16 @@ static const uint16_t ts_small_parse_table[] = { [301248] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4558), 1, + ACTIONS(4654), 1, anon_sym_DQUOTE, - ACTIONS(4562), 1, + ACTIONS(4658), 1, sym_variable_name, - STATE(2447), 1, + STATE(2645), 1, sym_string, - ACTIONS(4560), 2, + ACTIONS(4656), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4556), 9, + ACTIONS(4652), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326535,16 +326836,16 @@ static const uint16_t ts_small_parse_table[] = { [301276] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1591), 1, - anon_sym_DQUOTE, - ACTIONS(2155), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(1282), 1, - sym_string, - ACTIONS(2153), 2, + ACTIONS(13744), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2151), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326557,12 +326858,12 @@ static const uint16_t ts_small_parse_table[] = { [301304] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(13384), 1, + anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13748), 1, - anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -326579,16 +326880,16 @@ static const uint16_t ts_small_parse_table[] = { [301332] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13318), 1, + ACTIONS(6431), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(6435), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(3505), 1, + sym_string, + ACTIONS(6433), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(6429), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326601,16 +326902,16 @@ static const uint16_t ts_small_parse_table[] = { [301360] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, - sym_variable_name, - ACTIONS(13750), 1, + ACTIONS(1418), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(1742), 1, + sym_variable_name, + STATE(1000), 1, + sym_string, + ACTIONS(1740), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(1738), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326623,12 +326924,12 @@ static const uint16_t ts_small_parse_table[] = { [301388] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(13186), 1, + anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13752), 1, - anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -326645,12 +326946,12 @@ static const uint16_t ts_small_parse_table[] = { [301416] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(13388), 1, + anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13754), 1, - anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -326667,12 +326968,12 @@ static const uint16_t ts_small_parse_table[] = { [301444] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13314), 1, - anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, + ACTIONS(13746), 1, + anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -326689,12 +326990,12 @@ static const uint16_t ts_small_parse_table[] = { [301472] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13222), 1, - anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, + ACTIONS(13748), 1, + anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -326711,16 +327012,16 @@ static const uint16_t ts_small_parse_table[] = { [301500] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8714), 1, - anon_sym_DQUOTE, - ACTIONS(8718), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(5444), 1, - sym_string, - ACTIONS(8716), 2, + ACTIONS(13750), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8712), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326733,16 +327034,16 @@ static const uint16_t ts_small_parse_table[] = { [301528] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, - sym_variable_name, - ACTIONS(13756), 1, + ACTIONS(4442), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(4446), 1, + sym_variable_name, + STATE(2392), 1, + sym_string, + ACTIONS(4444), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(4440), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326755,16 +327056,16 @@ static const uint16_t ts_small_parse_table[] = { [301556] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5152), 1, + ACTIONS(2950), 1, anon_sym_DQUOTE, - ACTIONS(5156), 1, + ACTIONS(2954), 1, sym_variable_name, - STATE(2566), 1, + STATE(1459), 1, sym_string, - ACTIONS(5154), 2, + ACTIONS(2952), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5150), 9, + ACTIONS(2948), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326777,16 +327078,16 @@ static const uint16_t ts_small_parse_table[] = { [301584] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8868), 1, + ACTIONS(13064), 1, anon_sym_DQUOTE, - ACTIONS(8872), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(5409), 1, - sym_string, - ACTIONS(8870), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8866), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326799,12 +327100,12 @@ static const uint16_t ts_small_parse_table[] = { [301612] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(13400), 1, + anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13758), 1, - anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -326821,12 +327122,12 @@ static const uint16_t ts_small_parse_table[] = { [301640] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13712), 1, - anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, + ACTIONS(13752), 1, + anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -326843,7 +327144,7 @@ static const uint16_t ts_small_parse_table[] = { [301668] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13250), 1, + ACTIONS(13404), 1, anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, @@ -326865,12 +327166,12 @@ static const uint16_t ts_small_parse_table[] = { [301696] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13258), 1, - anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, + ACTIONS(13754), 1, + anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -326887,16 +327188,16 @@ static const uint16_t ts_small_parse_table[] = { [301724] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5086), 1, + ACTIONS(13408), 1, anon_sym_DQUOTE, - ACTIONS(5090), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(2442), 1, - sym_string, - ACTIONS(5088), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5084), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326909,12 +327210,12 @@ static const uint16_t ts_small_parse_table[] = { [301752] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(13194), 1, + anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13760), 1, - anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -326931,16 +327232,16 @@ static const uint16_t ts_small_parse_table[] = { [301780] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13178), 1, + ACTIONS(1231), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(1237), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(476), 1, + sym_string, + ACTIONS(1233), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(1229), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326953,16 +327254,16 @@ static const uint16_t ts_small_parse_table[] = { [301808] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8623), 1, + ACTIONS(3135), 1, anon_sym_DQUOTE, - ACTIONS(8627), 1, + ACTIONS(7081), 1, sym_variable_name, - STATE(5204), 1, + STATE(4523), 1, sym_string, - ACTIONS(8625), 2, + ACTIONS(7079), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8621), 9, + ACTIONS(7077), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326979,7 +327280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13762), 1, + ACTIONS(13756), 1, anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, @@ -327001,7 +327302,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13764), 1, + ACTIONS(13758), 1, anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, @@ -327019,7 +327320,7 @@ static const uint16_t ts_small_parse_table[] = { [301892] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13290), 1, + ACTIONS(13424), 1, anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, @@ -327041,16 +327342,16 @@ static const uint16_t ts_small_parse_table[] = { [301920] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1231), 1, + ACTIONS(13420), 1, anon_sym_DQUOTE, - ACTIONS(1237), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(489), 1, - sym_string, - ACTIONS(1233), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1229), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327063,16 +327364,16 @@ static const uint16_t ts_small_parse_table[] = { [301948] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2428), 1, - anon_sym_DQUOTE, - ACTIONS(2432), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(1204), 1, - sym_string, - ACTIONS(2430), 2, + ACTIONS(13760), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2426), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327089,7 +327390,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13766), 1, + ACTIONS(13762), 1, anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, @@ -327107,16 +327408,16 @@ static const uint16_t ts_small_parse_table[] = { [302004] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, - sym_variable_name, - ACTIONS(13768), 1, + ACTIONS(1882), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(3477), 1, + sym_variable_name, + STATE(1334), 1, + sym_string, + ACTIONS(3475), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(3473), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327129,16 +327430,16 @@ static const uint16_t ts_small_parse_table[] = { [302032] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, - sym_variable_name, - ACTIONS(13770), 1, + ACTIONS(5339), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(5343), 1, + sym_variable_name, + STATE(2538), 1, + sym_string, + ACTIONS(5341), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(5337), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327151,7 +327452,7 @@ static const uint16_t ts_small_parse_table[] = { [302060] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13322), 1, + ACTIONS(13094), 1, anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, @@ -327173,12 +327474,12 @@ static const uint16_t ts_small_parse_table[] = { [302088] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13728), 1, - anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, + ACTIONS(13764), 1, + anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -327195,12 +327496,12 @@ static const uint16_t ts_small_parse_table[] = { [302116] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13194), 1, - anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, + ACTIONS(13766), 1, + anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -327217,16 +327518,16 @@ static const uint16_t ts_small_parse_table[] = { [302144] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1245), 1, + ACTIONS(13728), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(503), 1, - sym_string, - ACTIONS(1247), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1243), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327239,16 +327540,16 @@ static const uint16_t ts_small_parse_table[] = { [302172] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, - sym_variable_name, - ACTIONS(13772), 1, + ACTIONS(3390), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(3608), 1, + sym_variable_name, + STATE(1816), 1, + sym_string, + ACTIONS(3606), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(3604), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327261,12 +327562,12 @@ static const uint16_t ts_small_parse_table[] = { [302200] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13294), 1, - anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, + ACTIONS(13768), 1, + anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -327283,16 +327584,16 @@ static const uint16_t ts_small_parse_table[] = { [302228] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, - sym_variable_name, - ACTIONS(13774), 1, + ACTIONS(1245), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(1249), 1, + sym_variable_name, + STATE(508), 1, + sym_string, + ACTIONS(1247), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(1243), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327305,16 +327606,16 @@ static const uint16_t ts_small_parse_table[] = { [302256] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8694), 1, + ACTIONS(13448), 1, anon_sym_DQUOTE, - ACTIONS(8698), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(5487), 1, - sym_string, - ACTIONS(8696), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8692), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327327,16 +327628,16 @@ static const uint16_t ts_small_parse_table[] = { [302284] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13778), 1, - anon_sym_DQUOTE, - ACTIONS(13782), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(6761), 1, - sym_string, - ACTIONS(13780), 2, + ACTIONS(13770), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13776), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327349,12 +327650,12 @@ static const uint16_t ts_small_parse_table[] = { [302312] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(13206), 1, + anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13784), 1, - anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -327375,7 +327676,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13786), 1, + ACTIONS(13772), 1, anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, @@ -327393,16 +327694,16 @@ static const uint16_t ts_small_parse_table[] = { [302368] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4397), 1, - anon_sym_DQUOTE, - ACTIONS(4401), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(2412), 1, - sym_string, - ACTIONS(4399), 2, + ACTIONS(13774), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4395), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327415,16 +327716,16 @@ static const uint16_t ts_small_parse_table[] = { [302396] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1765), 1, + ACTIONS(13452), 1, anon_sym_DQUOTE, - ACTIONS(2959), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(1213), 1, - sym_string, - ACTIONS(2957), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2955), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327437,16 +327738,16 @@ static const uint16_t ts_small_parse_table[] = { [302424] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12912), 1, + ACTIONS(8918), 1, anon_sym_DQUOTE, - ACTIONS(12916), 1, + ACTIONS(8922), 1, sym_variable_name, - STATE(6206), 1, + STATE(5529), 1, sym_string, - ACTIONS(12914), 2, + ACTIONS(8920), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(12910), 9, + ACTIONS(8916), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327459,16 +327760,16 @@ static const uint16_t ts_small_parse_table[] = { [302452] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3701), 1, - anon_sym_DQUOTE, - ACTIONS(3705), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(2025), 1, - sym_string, - ACTIONS(3703), 2, + ACTIONS(13776), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3699), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327481,12 +327782,12 @@ static const uint16_t ts_small_parse_table[] = { [302480] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13356), 1, - anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, + ACTIONS(13778), 1, + anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -327503,12 +327804,12 @@ static const uint16_t ts_small_parse_table[] = { [302508] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(13460), 1, + anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13788), 1, - anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -327525,16 +327826,16 @@ static const uint16_t ts_small_parse_table[] = { [302536] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13720), 1, + ACTIONS(2623), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(3483), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(1605), 1, + sym_string, + ACTIONS(3481), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(3479), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327547,16 +327848,16 @@ static const uint16_t ts_small_parse_table[] = { [302564] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3423), 1, + ACTIONS(4106), 1, anon_sym_DQUOTE, - ACTIONS(3427), 1, + ACTIONS(4110), 1, sym_variable_name, - STATE(1686), 1, + STATE(2268), 1, sym_string, - ACTIONS(3425), 2, + ACTIONS(4108), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3421), 9, + ACTIONS(4104), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327573,7 +327874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13790), 1, + ACTIONS(13780), 1, anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, @@ -327591,12 +327892,12 @@ static const uint16_t ts_small_parse_table[] = { [302620] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13218), 1, - anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, + ACTIONS(13782), 1, + anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -327613,12 +327914,12 @@ static const uint16_t ts_small_parse_table[] = { [302648] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(13472), 1, + anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13792), 1, - anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -327635,7 +327936,7 @@ static const uint16_t ts_small_parse_table[] = { [302676] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13230), 1, + ACTIONS(13134), 1, anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, @@ -327657,16 +327958,16 @@ static const uint16_t ts_small_parse_table[] = { [302704] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4663), 1, + ACTIONS(13476), 1, anon_sym_DQUOTE, - ACTIONS(4667), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(2716), 1, - sym_string, - ACTIONS(4665), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4661), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327679,16 +327980,16 @@ static const uint16_t ts_small_parse_table[] = { [302732] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4797), 1, - anon_sym_DQUOTE, - ACTIONS(4801), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(2585), 1, - sym_string, - ACTIONS(4799), 2, + ACTIONS(13784), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4795), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327705,7 +328006,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13794), 1, + ACTIONS(13786), 1, anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, @@ -327723,7 +328024,7 @@ static const uint16_t ts_small_parse_table[] = { [302788] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13664), 1, + ACTIONS(13226), 1, anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, @@ -327745,12 +328046,12 @@ static const uint16_t ts_small_parse_table[] = { [302816] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13360), 1, - anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, + ACTIONS(13788), 1, + anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -327767,16 +328068,16 @@ static const uint16_t ts_small_parse_table[] = { [302844] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2307), 1, + ACTIONS(13484), 1, anon_sym_DQUOTE, - ACTIONS(2947), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(1432), 1, - sym_string, - ACTIONS(2945), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2943), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327789,12 +328090,12 @@ static const uint16_t ts_small_parse_table[] = { [302872] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(13222), 1, + anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13796), 1, - anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -327811,16 +328112,16 @@ static const uint16_t ts_small_parse_table[] = { [302900] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, - sym_variable_name, - ACTIONS(13798), 1, + ACTIONS(3612), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(3616), 1, + sym_variable_name, + STATE(2249), 1, + sym_string, + ACTIONS(3614), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(3610), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327833,7 +328134,7 @@ static const uint16_t ts_small_parse_table[] = { [302928] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13372), 1, + ACTIONS(13130), 1, anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, @@ -327855,16 +328156,16 @@ static const uint16_t ts_small_parse_table[] = { [302956] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13238), 1, + ACTIONS(3416), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(3420), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(1573), 1, + sym_string, + ACTIONS(3418), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(3414), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327881,7 +328182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13800), 1, + ACTIONS(13790), 1, anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, @@ -327899,12 +328200,12 @@ static const uint16_t ts_small_parse_table[] = { [303012] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13692), 1, - anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, + ACTIONS(13792), 1, + anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -327921,7 +328222,7 @@ static const uint16_t ts_small_parse_table[] = { [303040] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13700), 1, + ACTIONS(13082), 1, anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, @@ -327943,12 +328244,12 @@ static const uint16_t ts_small_parse_table[] = { [303068] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(13504), 1, + anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13802), 1, - anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -327965,16 +328266,16 @@ static const uint16_t ts_small_parse_table[] = { [303096] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(13496), 1, anon_sym_DQUOTE, - ACTIONS(1823), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(1125), 1, - sym_string, - ACTIONS(1821), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1817), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327987,16 +328288,16 @@ static const uint16_t ts_small_parse_table[] = { [303124] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, + ACTIONS(13500), 1, anon_sym_DQUOTE, - ACTIONS(4871), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(2525), 1, - sym_string, - ACTIONS(4869), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4865), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328009,7 +328310,7 @@ static const uint16_t ts_small_parse_table[] = { [303152] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13380), 1, + ACTIONS(13238), 1, anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, @@ -328031,16 +328332,16 @@ static const uint16_t ts_small_parse_table[] = { [303180] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5614), 1, - anon_sym_DQUOTE, - ACTIONS(5719), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(3393), 1, - sym_string, - ACTIONS(5717), 2, + ACTIONS(13794), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5715), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328057,7 +328358,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13804), 1, + ACTIONS(13796), 1, anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, @@ -328079,7 +328380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13806), 1, + ACTIONS(13798), 1, anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, @@ -328101,7 +328402,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13808), 1, + ACTIONS(13800), 1, anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, @@ -328119,16 +328420,16 @@ static const uint16_t ts_small_parse_table[] = { [303292] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4084), 1, + ACTIONS(1458), 1, anon_sym_DQUOTE, - ACTIONS(7613), 1, + ACTIONS(1813), 1, sym_variable_name, - STATE(4606), 1, + STATE(1026), 1, sym_string, - ACTIONS(7611), 2, + ACTIONS(1811), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7609), 9, + ACTIONS(1809), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328141,12 +328442,12 @@ static const uint16_t ts_small_parse_table[] = { [303320] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13388), 1, - anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, + ACTIONS(13802), 1, + anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -328163,16 +328464,16 @@ static const uint16_t ts_small_parse_table[] = { [303348] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(13516), 1, anon_sym_DQUOTE, - ACTIONS(1807), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(922), 1, - sym_string, - ACTIONS(1805), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1803), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328185,16 +328486,16 @@ static const uint16_t ts_small_parse_table[] = { [303376] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13400), 1, + ACTIONS(3580), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(3584), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(1952), 1, + sym_string, + ACTIONS(3582), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(3578), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328207,16 +328508,16 @@ static const uint16_t ts_small_parse_table[] = { [303404] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, - sym_variable_name, - ACTIONS(13810), 1, + ACTIONS(2468), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(2895), 1, + sym_variable_name, + STATE(1470), 1, + sym_string, + ACTIONS(2893), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(2891), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328229,16 +328530,16 @@ static const uint16_t ts_small_parse_table[] = { [303432] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13064), 1, + ACTIONS(1534), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(2159), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(1202), 1, + sym_string, + ACTIONS(2157), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(2155), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328251,12 +328552,12 @@ static const uint16_t ts_small_parse_table[] = { [303460] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13262), 1, - anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, + ACTIONS(13804), 1, + anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -328273,12 +328574,12 @@ static const uint16_t ts_small_parse_table[] = { [303488] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13278), 1, - anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, + ACTIONS(13806), 1, + anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -328295,7 +328596,7 @@ static const uint16_t ts_small_parse_table[] = { [303516] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13684), 1, + ACTIONS(13524), 1, anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, @@ -328317,16 +328618,16 @@ static const uint16_t ts_small_parse_table[] = { [303544] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13416), 1, + ACTIONS(2311), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(2315), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(1411), 1, + sym_string, + ACTIONS(2313), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(2309), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328339,12 +328640,12 @@ static const uint16_t ts_small_parse_table[] = { [303572] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13078), 1, - anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, + ACTIONS(13808), 1, + anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -328361,12 +328662,12 @@ static const uint16_t ts_small_parse_table[] = { [303600] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(13242), 1, + anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13812), 1, - anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -328383,16 +328684,16 @@ static const uint16_t ts_small_parse_table[] = { [303628] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, + ACTIONS(4078), 1, anon_sym_DQUOTE, - ACTIONS(1815), 1, + ACTIONS(7611), 1, sym_variable_name, - STATE(1061), 1, + STATE(4444), 1, sym_string, - ACTIONS(1813), 2, + ACTIONS(7609), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1809), 9, + ACTIONS(7607), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328405,16 +328706,16 @@ static const uint16_t ts_small_parse_table[] = { [303656] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6492), 1, + ACTIONS(13532), 1, anon_sym_DQUOTE, - ACTIONS(13048), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(6513), 1, - sym_string, - ACTIONS(13046), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13044), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328427,12 +328728,12 @@ static const uint16_t ts_small_parse_table[] = { [303684] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(13102), 1, + anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13814), 1, - anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -328449,16 +328750,16 @@ static const uint16_t ts_small_parse_table[] = { [303712] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6210), 1, + ACTIONS(8728), 1, anon_sym_DQUOTE, - ACTIONS(6214), 1, + ACTIONS(8732), 1, sym_variable_name, - STATE(3525), 1, + STATE(5493), 1, sym_string, - ACTIONS(6212), 2, + ACTIONS(8730), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(6208), 9, + ACTIONS(8726), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328471,12 +328772,12 @@ static const uint16_t ts_small_parse_table[] = { [303740] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13420), 1, - anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, + ACTIONS(13810), 1, + anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -328497,7 +328798,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13816), 1, + ACTIONS(13812), 1, anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, @@ -328515,16 +328816,16 @@ static const uint16_t ts_small_parse_table[] = { [303796] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(262), 1, + ACTIONS(3279), 1, anon_sym_DQUOTE, - ACTIONS(5162), 1, + ACTIONS(3491), 1, sym_variable_name, - STATE(2734), 1, + STATE(1800), 1, sym_string, - ACTIONS(5160), 2, + ACTIONS(3489), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5158), 9, + ACTIONS(3487), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328537,12 +328838,12 @@ static const uint16_t ts_small_parse_table[] = { [303824] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(13246), 1, + anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13818), 1, - anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -328559,16 +328860,16 @@ static const uint16_t ts_small_parse_table[] = { [303852] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2608), 1, + ACTIONS(13548), 1, anon_sym_DQUOTE, - ACTIONS(2778), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(1525), 1, - sym_string, - ACTIONS(2776), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2774), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328585,7 +328886,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13820), 1, + ACTIONS(13814), 1, anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, @@ -328607,7 +328908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13822), 1, + ACTIONS(13816), 1, anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, @@ -328625,16 +328926,16 @@ static const uint16_t ts_small_parse_table[] = { [303936] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9150), 1, + ACTIONS(13142), 1, anon_sym_DQUOTE, - ACTIONS(9154), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(5537), 1, - sym_string, - ACTIONS(9152), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9148), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328647,7 +328948,7 @@ static const uint16_t ts_small_parse_table[] = { [303964] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13432), 1, + ACTIONS(13556), 1, anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, @@ -328669,16 +328970,16 @@ static const uint16_t ts_small_parse_table[] = { [303992] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3791), 1, + ACTIONS(13560), 1, anon_sym_DQUOTE, - ACTIONS(7444), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(4389), 1, - sym_string, - ACTIONS(7442), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7440), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328691,12 +328992,12 @@ static const uint16_t ts_small_parse_table[] = { [304020] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13660), 1, - anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, + ACTIONS(13818), 1, + anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -328717,7 +329018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13824), 1, + ACTIONS(13820), 1, anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, @@ -328735,7 +329036,7 @@ static const uint16_t ts_small_parse_table[] = { [304076] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13306), 1, + ACTIONS(13262), 1, anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, @@ -328757,16 +329058,16 @@ static const uint16_t ts_small_parse_table[] = { [304104] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, - sym_variable_name, - ACTIONS(13826), 1, + ACTIONS(3169), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(3426), 1, + sym_variable_name, + STATE(1731), 1, + sym_string, + ACTIONS(3424), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(3422), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328779,16 +329080,16 @@ static const uint16_t ts_small_parse_table[] = { [304132] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13440), 1, + ACTIONS(4916), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(4920), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(2612), 1, + sym_string, + ACTIONS(4918), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(4914), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328801,16 +329102,16 @@ static const uint16_t ts_small_parse_table[] = { [304160] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13452), 1, + ACTIONS(12920), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(12924), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(6233), 1, + sym_string, + ACTIONS(12922), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(12918), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328823,12 +329124,12 @@ static const uint16_t ts_small_parse_table[] = { [304188] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(13588), 1, + anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13828), 1, - anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -328845,12 +329146,12 @@ static const uint16_t ts_small_parse_table[] = { [304216] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(13572), 1, + anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13830), 1, - anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -328867,7 +329168,7 @@ static const uint16_t ts_small_parse_table[] = { [304244] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13448), 1, + ACTIONS(13258), 1, anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, @@ -328889,12 +329190,12 @@ static const uint16_t ts_small_parse_table[] = { [304272] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(13576), 1, + anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13832), 1, - anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -328911,16 +329212,16 @@ static const uint16_t ts_small_parse_table[] = { [304300] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5874), 1, - anon_sym_DQUOTE, - ACTIONS(11244), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(5696), 1, - sym_string, - ACTIONS(11242), 2, + ACTIONS(13822), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11240), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328933,12 +329234,12 @@ static const uint16_t ts_small_parse_table[] = { [304328] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13214), 1, - anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, + ACTIONS(13824), 1, + anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -328955,16 +329256,16 @@ static const uint16_t ts_small_parse_table[] = { [304356] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3371), 1, - anon_sym_DQUOTE, - ACTIONS(7153), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(4512), 1, - sym_string, - ACTIONS(7151), 2, + ACTIONS(13826), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7149), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328977,16 +329278,16 @@ static const uint16_t ts_small_parse_table[] = { [304384] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, - sym_variable_name, - ACTIONS(13834), 1, + ACTIONS(3630), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(7194), 1, + sym_variable_name, + STATE(4297), 1, + sym_string, + ACTIONS(7192), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(7190), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328999,12 +329300,12 @@ static const uint16_t ts_small_parse_table[] = { [304412] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(13146), 1, + anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13836), 1, - anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -329021,16 +329322,16 @@ static const uint16_t ts_small_parse_table[] = { [304440] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, - anon_sym_DQUOTE, - ACTIONS(2070), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(1176), 1, - sym_string, - ACTIONS(2068), 2, + ACTIONS(13828), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2066), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329043,7 +329344,7 @@ static const uint16_t ts_small_parse_table[] = { [304468] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13464), 1, + ACTIONS(13266), 1, anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, @@ -329065,7 +329366,7 @@ static const uint16_t ts_small_parse_table[] = { [304496] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13484), 1, + ACTIONS(13592), 1, anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, @@ -329087,12 +329388,12 @@ static const uint16_t ts_small_parse_table[] = { [304524] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13652), 1, - anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, + ACTIONS(13830), 1, + anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -329109,12 +329410,12 @@ static const uint16_t ts_small_parse_table[] = { [304552] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(13596), 1, + anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13838), 1, - anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -329135,7 +329436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13840), 1, + ACTIONS(13832), 1, anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, @@ -329153,16 +329454,16 @@ static const uint16_t ts_small_parse_table[] = { [304608] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, - sym_variable_name, - ACTIONS(13842), 1, + ACTIONS(2727), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(6779), 1, + sym_variable_name, + STATE(4341), 1, + sym_string, + ACTIONS(6777), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(6775), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329179,7 +329480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13844), 1, + ACTIONS(13834), 1, anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, @@ -329197,16 +329498,16 @@ static const uint16_t ts_small_parse_table[] = { [304664] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, + ACTIONS(8615), 1, anon_sym_DQUOTE, - ACTIONS(7757), 1, + ACTIONS(8619), 1, sym_variable_name, - STATE(4808), 1, + STATE(5158), 1, sym_string, - ACTIONS(7755), 2, + ACTIONS(8617), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7753), 9, + ACTIONS(8613), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329219,16 +329520,16 @@ static const uint16_t ts_small_parse_table[] = { [304692] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13480), 1, + ACTIONS(3852), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(7460), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(4863), 1, + sym_string, + ACTIONS(7458), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(7456), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329241,16 +329542,16 @@ static const uint16_t ts_small_parse_table[] = { [304720] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3439), 1, + ACTIONS(13604), 1, anon_sym_DQUOTE, - ACTIONS(3653), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(1878), 1, - sym_string, - ACTIONS(3651), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3649), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329267,7 +329568,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13846), 1, + ACTIONS(13836), 1, anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, @@ -329285,16 +329586,16 @@ static const uint16_t ts_small_parse_table[] = { [304776] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, - sym_variable_name, - ACTIONS(13848), 1, + ACTIONS(5777), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(11244), 1, + sym_variable_name, + STATE(5671), 1, + sym_string, + ACTIONS(11242), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(11240), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329307,12 +329608,12 @@ static const uint16_t ts_small_parse_table[] = { [304804] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13492), 1, - anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, + ACTIONS(13838), 1, + anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -329333,7 +329634,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13850), 1, + ACTIONS(13840), 1, anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, @@ -329351,16 +329652,16 @@ static const uint16_t ts_small_parse_table[] = { [304860] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2339), 1, + ACTIONS(3672), 1, anon_sym_DQUOTE, - ACTIONS(2492), 1, + ACTIONS(7768), 1, sym_variable_name, - STATE(1463), 1, + STATE(4636), 1, sym_string, - ACTIONS(2490), 2, + ACTIONS(7766), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2488), 9, + ACTIONS(7764), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329373,16 +329674,16 @@ static const uint16_t ts_small_parse_table[] = { [304888] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, - sym_variable_name, - ACTIONS(13852), 1, + ACTIONS(262), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(5185), 1, + sym_variable_name, + STATE(2710), 1, + sym_string, + ACTIONS(5183), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(5181), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329395,16 +329696,16 @@ static const uint16_t ts_small_parse_table[] = { [304916] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4115), 1, + ACTIONS(13616), 1, anon_sym_DQUOTE, - ACTIONS(4119), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(2334), 1, - sym_string, - ACTIONS(4117), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4113), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329417,16 +329718,16 @@ static const uint16_t ts_small_parse_table[] = { [304944] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13504), 1, + ACTIONS(5555), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(5559), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(3442), 1, + sym_string, + ACTIONS(5557), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(5553), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329439,12 +329740,12 @@ static const uint16_t ts_small_parse_table[] = { [304972] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(13304), 1, + anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13854), 1, - anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -329461,16 +329762,16 @@ static const uint16_t ts_small_parse_table[] = { [305000] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, - sym_variable_name, - ACTIONS(13856), 1, + ACTIONS(1916), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(1920), 1, + sym_variable_name, + STATE(1090), 1, + sym_string, + ACTIONS(1918), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(1914), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329483,16 +329784,16 @@ static const uint16_t ts_small_parse_table[] = { [305028] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13644), 1, + ACTIONS(5086), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(5090), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(2862), 1, + sym_string, + ACTIONS(5088), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(5084), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329505,12 +329806,12 @@ static const uint16_t ts_small_parse_table[] = { [305056] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13512), 1, - anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, + ACTIONS(13842), 1, + anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -329527,16 +329828,16 @@ static const uint16_t ts_small_parse_table[] = { [305084] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13524), 1, + ACTIONS(3706), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(3710), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(1942), 1, + sym_string, + ACTIONS(3708), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(3704), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329549,12 +329850,12 @@ static const uint16_t ts_small_parse_table[] = { [305112] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(13308), 1, + anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13858), 1, - anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -329571,16 +329872,16 @@ static const uint16_t ts_small_parse_table[] = { [305140] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, - sym_variable_name, - ACTIONS(13860), 1, + ACTIONS(2295), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(2299), 1, + sym_variable_name, + STATE(1266), 1, + sym_string, + ACTIONS(2297), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(2293), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329593,7 +329894,7 @@ static const uint16_t ts_small_parse_table[] = { [305168] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13520), 1, + ACTIONS(13154), 1, anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, @@ -329615,16 +329916,16 @@ static const uint16_t ts_small_parse_table[] = { [305196] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1619), 1, + ACTIONS(13632), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(868), 1, - sym_string, - ACTIONS(1621), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1617), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329637,12 +329938,12 @@ static const uint16_t ts_small_parse_table[] = { [305224] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13476), 1, - anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, + ACTIONS(13844), 1, + anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -329659,12 +329960,12 @@ static const uint16_t ts_small_parse_table[] = { [305252] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13106), 1, - anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, + ACTIONS(13846), 1, + anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -329681,16 +329982,16 @@ static const uint16_t ts_small_parse_table[] = { [305280] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, - sym_variable_name, - ACTIONS(13862), 1, + ACTIONS(3022), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(3026), 1, + sym_variable_name, + STATE(1747), 1, + sym_string, + ACTIONS(3024), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(3020), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329703,16 +330004,16 @@ static const uint16_t ts_small_parse_table[] = { [305308] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7358), 1, - anon_sym_DQUOTE, - ACTIONS(7362), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(4457), 1, - sym_string, - ACTIONS(7360), 2, + ACTIONS(13848), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7356), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329725,12 +330026,12 @@ static const uint16_t ts_small_parse_table[] = { [305336] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(13640), 1, + anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13864), 1, - anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -329747,16 +330048,16 @@ static const uint16_t ts_small_parse_table[] = { [305364] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2867), 1, + ACTIONS(2816), 1, anon_sym_DQUOTE, - ACTIONS(6852), 1, + ACTIONS(2960), 1, sym_variable_name, - STATE(4263), 1, + STATE(1690), 1, sym_string, - ACTIONS(6850), 2, + ACTIONS(2958), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(6848), 9, + ACTIONS(2956), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329773,7 +330074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13866), 1, + ACTIONS(13850), 1, anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, @@ -329791,16 +330092,16 @@ static const uint16_t ts_small_parse_table[] = { [305420] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13536), 1, + ACTIONS(6494), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(13048), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(6482), 1, + sym_string, + ACTIONS(13046), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(13044), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329813,16 +330114,16 @@ static const uint16_t ts_small_parse_table[] = { [305448] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, - sym_variable_name, - ACTIONS(13868), 1, + ACTIONS(2695), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(2901), 1, + sym_variable_name, + STATE(1555), 1, + sym_string, + ACTIONS(2899), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(2897), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329835,16 +330136,16 @@ static const uint16_t ts_small_parse_table[] = { [305476] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2042), 1, - anon_sym_DQUOTE, - ACTIONS(3647), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(1547), 1, - sym_string, - ACTIONS(3645), 2, + ACTIONS(13852), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3643), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329857,16 +330158,16 @@ static const uint16_t ts_small_parse_table[] = { [305504] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3030), 1, + ACTIONS(13652), 1, anon_sym_DQUOTE, - ACTIONS(7135), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(4446), 1, - sym_string, - ACTIONS(7133), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7131), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329879,7 +330180,7 @@ static const uint16_t ts_small_parse_table[] = { [305532] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13636), 1, + ACTIONS(13648), 1, anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, @@ -329901,16 +330202,16 @@ static const uint16_t ts_small_parse_table[] = { [305560] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, - sym_variable_name, - ACTIONS(13870), 1, + ACTIONS(3103), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(3107), 1, + sym_variable_name, + STATE(1501), 1, + sym_string, + ACTIONS(3105), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(3101), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329923,16 +330224,16 @@ static const uint16_t ts_small_parse_table[] = { [305588] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3282), 1, - anon_sym_DQUOTE, - ACTIONS(3286), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(1628), 1, - sym_string, - ACTIONS(3284), 2, + ACTIONS(13854), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3280), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329945,16 +330246,16 @@ static const uint16_t ts_small_parse_table[] = { [305616] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3115), 1, + ACTIONS(5026), 1, anon_sym_DQUOTE, - ACTIONS(3119), 1, + ACTIONS(5030), 1, sym_variable_name, - STATE(1864), 1, + STATE(2466), 1, sym_string, - ACTIONS(3117), 2, + ACTIONS(5028), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3113), 9, + ACTIONS(5024), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329971,7 +330272,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13872), 1, + ACTIONS(13856), 1, anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, @@ -329989,7 +330290,7 @@ static const uint16_t ts_small_parse_table[] = { [305672] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13544), 1, + ACTIONS(13656), 1, anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, @@ -330015,7 +330316,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13874), 1, + ACTIONS(13858), 1, anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, @@ -330033,7 +330334,7 @@ static const uint16_t ts_small_parse_table[] = { [305728] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13556), 1, + ACTIONS(13680), 1, anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, @@ -330055,16 +330356,16 @@ static const uint16_t ts_small_parse_table[] = { [305756] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2578), 1, + ACTIONS(13320), 1, anon_sym_DQUOTE, - ACTIONS(2953), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(1585), 1, - sym_string, - ACTIONS(2951), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2949), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330077,16 +330378,16 @@ static const uint16_t ts_small_parse_table[] = { [305784] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, - sym_variable_name, - ACTIONS(13876), 1, + ACTIONS(13862), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(13866), 1, + sym_variable_name, + STATE(6761), 1, + sym_string, + ACTIONS(13864), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(13860), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330103,7 +330404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13878), 1, + ACTIONS(13868), 1, anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, @@ -330121,16 +330422,16 @@ static const uint16_t ts_small_parse_table[] = { [305840] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3189), 1, + ACTIONS(13696), 1, anon_sym_DQUOTE, - ACTIONS(4058), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(1737), 1, - sym_string, - ACTIONS(4056), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4054), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330143,16 +330444,16 @@ static const uint16_t ts_small_parse_table[] = { [305868] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1791), 1, + ACTIONS(13664), 1, anon_sym_DQUOTE, - ACTIONS(1795), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(998), 1, - sym_string, - ACTIONS(1793), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1789), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330169,7 +330470,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13880), 1, + ACTIONS(13870), 1, anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, @@ -330187,12 +330488,12 @@ static const uint16_t ts_small_parse_table[] = { [305924] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13552), 1, - anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, + ACTIONS(13872), 1, + anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -330209,16 +330510,16 @@ static const uint16_t ts_small_parse_table[] = { [305952] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3213), 1, + ACTIONS(5037), 1, anon_sym_DQUOTE, - ACTIONS(3217), 1, + ACTIONS(5041), 1, sym_variable_name, - STATE(1919), 1, + STATE(2596), 1, sym_string, - ACTIONS(3215), 2, + ACTIONS(5039), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3211), 9, + ACTIONS(5035), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330231,12 +330532,12 @@ static const uint16_t ts_small_parse_table[] = { [305980] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(13324), 1, + anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13882), 1, - anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -330253,16 +330554,16 @@ static const uint16_t ts_small_parse_table[] = { [306008] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3679), 1, + ACTIONS(1698), 1, anon_sym_DQUOTE, - ACTIONS(7352), 1, + ACTIONS(2889), 1, sym_variable_name, - STATE(4859), 1, + STATE(1284), 1, sym_string, - ACTIONS(7350), 2, + ACTIONS(2887), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7348), 9, + ACTIONS(2885), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330275,7 +330576,7 @@ static const uint16_t ts_small_parse_table[] = { [306036] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13624), 1, + ACTIONS(13672), 1, anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, @@ -330301,7 +330602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13884), 1, + ACTIONS(13874), 1, anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, @@ -330319,16 +330620,16 @@ static const uint16_t ts_small_parse_table[] = { [306092] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13122), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(1750), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(904), 1, + sym_string, + ACTIONS(1748), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(1744), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330341,12 +330642,12 @@ static const uint16_t ts_small_parse_table[] = { [306120] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13110), 1, - anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, + ACTIONS(13876), 1, + anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -330363,12 +330664,12 @@ static const uint16_t ts_small_parse_table[] = { [306148] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13568), 1, - anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, + ACTIONS(13878), 1, + anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -330385,16 +330686,16 @@ static const uint16_t ts_small_parse_table[] = { [306176] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13126), 1, + ACTIONS(8661), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(8665), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(5430), 1, + sym_string, + ACTIONS(8663), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(8659), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330407,16 +330708,16 @@ static const uint16_t ts_small_parse_table[] = { [306204] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3580), 1, - anon_sym_DQUOTE, - ACTIONS(3584), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(2121), 1, - sym_string, - ACTIONS(3582), 2, + ACTIONS(13880), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3578), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330429,16 +330730,16 @@ static const uint16_t ts_small_parse_table[] = { [306232] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3274), 1, + ACTIONS(2042), 1, anon_sym_DQUOTE, - ACTIONS(3278), 1, + ACTIONS(3878), 1, sym_variable_name, - STATE(1825), 1, + STATE(1683), 1, sym_string, - ACTIONS(3276), 2, + ACTIONS(3876), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3272), 9, + ACTIONS(3874), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330451,12 +330752,12 @@ static const uint16_t ts_small_parse_table[] = { [306260] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(13688), 1, + anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13886), 1, - anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -330477,7 +330778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13888), 1, + ACTIONS(13882), 1, anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, @@ -330495,12 +330796,12 @@ static const uint16_t ts_small_parse_table[] = { [306316] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13082), 1, - anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, + ACTIONS(13884), 1, + anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -330517,16 +330818,16 @@ static const uint16_t ts_small_parse_table[] = { [306344] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, - sym_variable_name, - ACTIONS(13890), 1, + ACTIONS(4459), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(4463), 1, + sym_variable_name, + STATE(2520), 1, + sym_string, + ACTIONS(4461), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(4457), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330539,16 +330840,16 @@ static const uint16_t ts_small_parse_table[] = { [306372] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7143), 1, + ACTIONS(5065), 1, anon_sym_DQUOTE, - ACTIONS(7147), 1, + ACTIONS(5069), 1, sym_variable_name, - STATE(4322), 1, + STATE(2433), 1, sym_string, - ACTIONS(7145), 2, + ACTIONS(5067), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7141), 9, + ACTIONS(5063), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330561,16 +330862,16 @@ static const uint16_t ts_small_parse_table[] = { [306400] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13628), 1, + ACTIONS(3354), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(7115), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(4471), 1, + sym_string, + ACTIONS(7113), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(7111), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330583,7 +330884,7 @@ static const uint16_t ts_small_parse_table[] = { [306428] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13576), 1, + ACTIONS(13700), 1, anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, @@ -330605,12 +330906,12 @@ static const uint16_t ts_small_parse_table[] = { [306456] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13588), 1, - anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, + ACTIONS(13886), 1, + anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -330627,16 +330928,16 @@ static const uint16_t ts_small_parse_table[] = { [306484] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1458), 1, - anon_sym_DQUOTE, - ACTIONS(1973), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(1130), 1, - sym_string, - ACTIONS(1971), 2, + ACTIONS(13888), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1969), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330649,16 +330950,16 @@ static const uint16_t ts_small_parse_table[] = { [306512] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2267), 1, + ACTIONS(8555), 1, anon_sym_DQUOTE, - ACTIONS(3829), 1, + ACTIONS(8559), 1, sym_variable_name, - STATE(1595), 1, + STATE(5344), 1, sym_string, - ACTIONS(3827), 2, + ACTIONS(8557), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3825), 9, + ACTIONS(8553), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330671,7 +330972,7 @@ static const uint16_t ts_small_parse_table[] = { [306540] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13616), 1, + ACTIONS(13166), 1, anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, @@ -330693,12 +330994,12 @@ static const uint16_t ts_small_parse_table[] = { [306568] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(13708), 1, + anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13892), 1, - anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -330715,12 +331016,12 @@ static const uint16_t ts_small_parse_table[] = { [306596] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(13340), 1, + anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13894), 1, - anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -330737,12 +331038,12 @@ static const uint16_t ts_small_parse_table[] = { [306624] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13102), 1, - anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, + ACTIONS(13890), 1, + anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -330759,16 +331060,16 @@ static const uint16_t ts_small_parse_table[] = { [306652] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13584), 1, + ACTIONS(7631), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(7635), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(4316), 1, + sym_string, + ACTIONS(7633), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(7629), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330785,7 +331086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13896), 1, + ACTIONS(13892), 1, anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, @@ -330803,16 +331104,16 @@ static const uint16_t ts_small_parse_table[] = { [306708] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2790), 1, + ACTIONS(13716), 1, anon_sym_DQUOTE, - ACTIONS(3223), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(1600), 1, - sym_string, - ACTIONS(3221), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3219), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330825,7 +331126,7 @@ static const uint16_t ts_small_parse_table[] = { [306736] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13094), 1, + ACTIONS(13344), 1, anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, @@ -330847,12 +331148,12 @@ static const uint16_t ts_small_parse_table[] = { [306764] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(13720), 1, + anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13898), 1, - anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -330873,7 +331174,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13900), 1, + ACTIONS(13894), 1, anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, @@ -330891,16 +331192,16 @@ static const uint16_t ts_small_parse_table[] = { [306820] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5361), 1, - anon_sym_DQUOTE, - ACTIONS(5365), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(2850), 1, - sym_string, - ACTIONS(5363), 2, + ACTIONS(13896), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5359), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330913,16 +331214,16 @@ static const uint16_t ts_small_parse_table[] = { [306848] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13596), 1, + ACTIONS(9028), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(9032), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(5447), 1, + sym_string, + ACTIONS(9030), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(9026), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330935,16 +331236,16 @@ static const uint16_t ts_small_parse_table[] = { [306876] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2965), 1, - anon_sym_DQUOTE, - ACTIONS(2969), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(1454), 1, - sym_string, - ACTIONS(2967), 2, + ACTIONS(13898), 1, + anon_sym_DQUOTE, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2963), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330957,16 +331258,16 @@ static const uint16_t ts_small_parse_table[] = { [306904] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1835), 1, + ACTIONS(13436), 1, anon_sym_DQUOTE, - ACTIONS(3125), 1, + ACTIONS(13732), 1, + sym_string_content, + ACTIONS(13736), 1, sym_variable_name, - STATE(1416), 1, - sym_string, - ACTIONS(3123), 2, + ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3121), 9, + ACTIONS(13730), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330983,7 +331284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_content, ACTIONS(13736), 1, sym_variable_name, - ACTIONS(13902), 1, + ACTIONS(13900), 1, anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, @@ -331001,12 +331302,12 @@ static const uint16_t ts_small_parse_table[] = { [306960] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13608), 1, - anon_sym_DQUOTE, ACTIONS(13732), 1, sym_string_content, ACTIONS(13736), 1, sym_variable_name, + ACTIONS(13902), 1, + anon_sym_DQUOTE, ACTIONS(13734), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, @@ -331042,7 +331343,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [307017] = 7, + [307017] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1342), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1340), 12, + anon_sym_LPAREN_LPAREN, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + aux_sym__simple_variable_name_token1, + [307038] = 7, ACTIONS(71), 1, sym_comment, ACTIONS(13918), 1, @@ -331064,7 +331383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [307046] = 7, + [307067] = 7, ACTIONS(71), 1, sym_comment, ACTIONS(13918), 1, @@ -331086,7 +331405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [307075] = 7, + [307096] = 7, ACTIONS(71), 1, sym_comment, ACTIONS(13918), 1, @@ -331108,7 +331427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [307104] = 7, + [307125] = 7, ACTIONS(71), 1, sym_comment, ACTIONS(13946), 1, @@ -331130,7 +331449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [307133] = 7, + [307154] = 7, ACTIONS(71), 1, sym_comment, ACTIONS(13918), 1, @@ -331152,19 +331471,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [307162] = 7, + [307183] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(13918), 1, + ACTIONS(13966), 1, anon_sym_LT_LT, - ACTIONS(13924), 1, + ACTIONS(13972), 1, anon_sym_LT_LT_DASH, - ACTIONS(13970), 1, + ACTIONS(13974), 1, anon_sym_LT_LT_LT, - ACTIONS(13968), 2, + ACTIONS(13970), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(13966), 3, + ACTIONS(13968), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, @@ -331174,30 +331493,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [307191] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1346), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 12, - anon_sym_LPAREN_LPAREN, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - aux_sym__simple_variable_name_token1, [307212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 1, + ACTIONS(1294), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 12, + ACTIONS(1292), 12, anon_sym_LPAREN_LPAREN, anon_sym_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -331213,20 +331514,20 @@ static const uint16_t ts_small_parse_table[] = { [307233] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(13974), 1, + ACTIONS(13918), 1, anon_sym_LT_LT, - ACTIONS(13980), 1, + ACTIONS(13924), 1, anon_sym_LT_LT_DASH, ACTIONS(13982), 1, anon_sym_LT_LT_LT, - ACTIONS(13978), 2, + ACTIONS(13980), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(13976), 3, + ACTIONS(13978), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(13972), 5, + ACTIONS(13976), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -331252,7 +331553,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [307287] = 4, + [307287] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13918), 1, + anon_sym_LT_LT, + ACTIONS(13924), 1, + anon_sym_LT_LT_DASH, + ACTIONS(13980), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(13978), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(13976), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [307313] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(13988), 1, @@ -331270,27 +331591,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [307309] = 6, + [307335] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(13974), 1, + ACTIONS(13946), 1, anon_sym_LT_LT, - ACTIONS(13980), 1, + ACTIONS(13952), 1, anon_sym_LT_LT_DASH, - ACTIONS(13978), 2, + ACTIONS(13950), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(13976), 3, + ACTIONS(13948), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(13972), 5, + ACTIONS(13944), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [307335] = 4, + [307361] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(13994), 1, @@ -331308,7 +331629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [307357] = 4, + [307383] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(14000), 1, @@ -331326,65 +331647,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [307379] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14006), 1, - sym_variable_name, - ACTIONS(14004), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(14002), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - [307401] = 6, + [307405] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(13906), 1, - anon_sym_LT_LT, - ACTIONS(13912), 1, - anon_sym_LT_LT_DASH, - ACTIONS(13910), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(13908), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(13904), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [307427] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14010), 1, + ACTIONS(13918), 1, anon_sym_LT_LT, - ACTIONS(14016), 1, + ACTIONS(13924), 1, anon_sym_LT_LT_DASH, - ACTIONS(14014), 2, + ACTIONS(13940), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14012), 3, + ACTIONS(13938), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14008), 5, + ACTIONS(13936), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [307453] = 6, + [307431] = 6, ACTIONS(71), 1, sym_comment, ACTIONS(13918), 1, @@ -331404,73 +331687,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [307479] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13918), 1, - anon_sym_LT_LT, - ACTIONS(13924), 1, - anon_sym_LT_LT_DASH, - ACTIONS(13960), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(13958), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(13956), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [307505] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14022), 1, - sym_variable_name, - ACTIONS(14020), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(14018), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - [307527] = 6, + [307457] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(13918), 1, + ACTIONS(13966), 1, anon_sym_LT_LT, - ACTIONS(13924), 1, + ACTIONS(13972), 1, anon_sym_LT_LT_DASH, - ACTIONS(13940), 2, + ACTIONS(13970), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(13938), 3, + ACTIONS(13968), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(13936), 5, + ACTIONS(13964), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [307553] = 4, + [307483] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14028), 1, + ACTIONS(14006), 1, sym_variable_name, - ACTIONS(14026), 2, + ACTIONS(14004), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14024), 9, + ACTIONS(14002), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -331480,15 +331725,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [307575] = 4, + [307505] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14034), 1, + ACTIONS(14012), 1, sym_variable_name, - ACTIONS(14032), 2, + ACTIONS(14010), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14030), 9, + ACTIONS(14008), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -331498,15 +331743,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [307597] = 4, + [307527] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13782), 1, + ACTIONS(14018), 1, sym_variable_name, - ACTIONS(13780), 2, + ACTIONS(14016), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13776), 9, + ACTIONS(14014), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -331516,7 +331761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [307619] = 6, + [307549] = 6, ACTIONS(71), 1, sym_comment, ACTIONS(13918), 1, @@ -331536,15 +331781,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [307645] = 4, + [307575] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14040), 1, + ACTIONS(13866), 1, sym_variable_name, - ACTIONS(14038), 2, + ACTIONS(13864), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14036), 9, + ACTIONS(13860), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -331554,172 +331799,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [307667] = 6, + [307597] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14022), 1, + anon_sym_LT_LT, + ACTIONS(14028), 1, + anon_sym_LT_LT_DASH, + ACTIONS(14026), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14024), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(14020), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [307623] = 6, ACTIONS(71), 1, sym_comment, ACTIONS(13918), 1, anon_sym_LT_LT, ACTIONS(13924), 1, anon_sym_LT_LT_DASH, - ACTIONS(13968), 2, + ACTIONS(13960), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(13966), 3, + ACTIONS(13958), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(13964), 5, + ACTIONS(13956), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [307693] = 6, + [307649] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(13946), 1, + ACTIONS(13906), 1, anon_sym_LT_LT, - ACTIONS(13952), 1, + ACTIONS(13912), 1, anon_sym_LT_LT_DASH, - ACTIONS(13950), 2, + ACTIONS(13910), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(13948), 3, + ACTIONS(13908), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(13944), 5, + ACTIONS(13904), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [307719] = 5, + [307675] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14034), 1, + sym_variable_name, + ACTIONS(14032), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(14030), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [307697] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14040), 1, + sym_variable_name, + ACTIONS(14038), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(14036), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [307719] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14042), 1, + anon_sym_DOLLAR, + ACTIONS(14045), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(14048), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(14051), 1, + anon_sym_BQUOTE, + ACTIONS(14054), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14057), 1, + sym_heredoc_content, + ACTIONS(14060), 1, + sym_heredoc_end, + STATE(6117), 4, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + aux_sym_heredoc_body_repeat1, + [307750] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14048), 1, + ACTIONS(14068), 1, anon_sym_LT_LT_LT, - ACTIONS(14046), 2, + ACTIONS(14066), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14044), 3, + ACTIONS(14064), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14042), 5, + ACTIONS(14062), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [307742] = 5, + [307773] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14056), 1, + ACTIONS(14076), 1, anon_sym_LT_LT_LT, - ACTIONS(14054), 2, + ACTIONS(14074), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14052), 3, + ACTIONS(14072), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14050), 5, + ACTIONS(14070), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [307765] = 5, + [307796] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14064), 1, + ACTIONS(14084), 1, anon_sym_LT_LT_LT, - ACTIONS(14062), 2, + ACTIONS(14082), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14060), 3, + ACTIONS(14080), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14058), 5, + ACTIONS(14078), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [307788] = 5, + [307819] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14072), 1, + ACTIONS(13934), 1, anon_sym_LT_LT_LT, - ACTIONS(14070), 2, + ACTIONS(13932), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14068), 3, + ACTIONS(13930), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14066), 5, + ACTIONS(13928), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [307811] = 3, + [307842] = 9, ACTIONS(71), 1, sym_comment, - ACTIONS(14074), 1, - anon_sym_RBRACE3, - ACTIONS(14076), 10, - anon_sym_U, - anon_sym_u, - anon_sym_L, - anon_sym_Q, - anon_sym_E, - anon_sym_P, - anon_sym_A, - anon_sym_K, - anon_sym_a, - anon_sym_k, - [307830] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1314), 1, - sym__concat, - ACTIONS(1312), 10, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [307849] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1310), 1, - sym__concat, - ACTIONS(1308), 10, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(14086), 1, anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, + ACTIONS(14088), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(14090), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(14092), 1, anon_sym_BQUOTE, + ACTIONS(14094), 1, anon_sym_DOLLAR_BQUOTE, - [307868] = 3, + ACTIONS(14096), 1, + sym_heredoc_content, + ACTIONS(14098), 1, + sym_heredoc_end, + STATE(6117), 4, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + aux_sym_heredoc_body_repeat1, + [307873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 1, + ACTIONS(1350), 1, sym__concat, - ACTIONS(1336), 10, + ACTIONS(1348), 10, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -331730,46 +332027,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [307887] = 3, - ACTIONS(3), 1, + [307892] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(14078), 1, - sym__concat, - ACTIONS(13333), 10, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [307906] = 5, + ACTIONS(13914), 1, + anon_sym_LT_LT_LT, + ACTIONS(13910), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(13908), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(13904), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [307915] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(13962), 1, + ACTIONS(14106), 1, anon_sym_LT_LT_LT, - ACTIONS(13960), 2, + ACTIONS(14104), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(13958), 3, + ACTIONS(14102), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(13956), 5, + ACTIONS(14100), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [307929] = 3, + [307938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14082), 1, + ACTIONS(1302), 1, sym__concat, - ACTIONS(14080), 10, + ACTIONS(1300), 10, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -331780,358 +332079,228 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [307948] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14084), 1, - anon_sym_DOLLAR, - ACTIONS(14086), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(14088), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(14090), 1, - anon_sym_BQUOTE, - ACTIONS(14092), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(14094), 1, - sym_heredoc_content, - ACTIONS(14096), 1, - sym_heredoc_end, - STATE(6131), 4, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [307979] = 5, + [307957] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(13926), 1, + ACTIONS(13962), 1, anon_sym_LT_LT_LT, - ACTIONS(13922), 2, + ACTIONS(13960), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(13920), 3, + ACTIONS(13958), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(13916), 5, + ACTIONS(13956), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [308002] = 5, + [307980] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(13954), 1, + ACTIONS(14114), 1, anon_sym_LT_LT_LT, - ACTIONS(13950), 2, + ACTIONS(14112), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(13948), 3, + ACTIONS(14110), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(13944), 5, + ACTIONS(14108), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [308025] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14084), 1, - anon_sym_DOLLAR, - ACTIONS(14086), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(14088), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(14090), 1, - anon_sym_BQUOTE, - ACTIONS(14092), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(14098), 1, - sym_heredoc_content, - ACTIONS(14100), 1, - sym_heredoc_end, - STATE(6137), 4, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [308056] = 5, + [308003] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14108), 1, + ACTIONS(14122), 1, anon_sym_LT_LT_LT, - ACTIONS(14106), 2, + ACTIONS(14120), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14104), 3, + ACTIONS(14118), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14102), 5, + ACTIONS(14116), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [308079] = 5, + [308026] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14116), 1, + ACTIONS(13954), 1, anon_sym_LT_LT_LT, - ACTIONS(14114), 2, + ACTIONS(13950), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14112), 3, + ACTIONS(13948), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14110), 5, + ACTIONS(13944), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [308102] = 5, + [308049] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(13942), 1, + ACTIONS(14130), 1, anon_sym_LT_LT_LT, - ACTIONS(13940), 2, + ACTIONS(14128), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(13938), 3, + ACTIONS(14126), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(13936), 5, + ACTIONS(14124), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [308125] = 5, + [308072] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14124), 1, + ACTIONS(14138), 1, anon_sym_LT_LT_LT, - ACTIONS(14122), 2, + ACTIONS(14136), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14120), 3, + ACTIONS(14134), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14118), 5, + ACTIONS(14132), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [308148] = 5, + [308095] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14132), 1, + ACTIONS(14146), 1, anon_sym_LT_LT_LT, - ACTIONS(14130), 2, + ACTIONS(14144), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14128), 3, + ACTIONS(14142), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14126), 5, + ACTIONS(14140), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [308171] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14134), 1, - anon_sym_DOLLAR, - ACTIONS(14137), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(14140), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(14143), 1, - anon_sym_BQUOTE, - ACTIONS(14146), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(14149), 1, - sym_heredoc_content, - ACTIONS(14152), 1, - sym_heredoc_end, - STATE(6137), 4, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [308202] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1294), 1, - sym__concat, - ACTIONS(1292), 10, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [308221] = 5, + [308118] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14160), 1, + ACTIONS(14154), 1, anon_sym_LT_LT_LT, - ACTIONS(14158), 2, + ACTIONS(14152), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14156), 3, + ACTIONS(14150), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14154), 5, + ACTIONS(14148), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [308244] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1358), 1, - sym__concat, - ACTIONS(1356), 10, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [308263] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1334), 1, - sym__concat, - ACTIONS(1332), 10, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [308282] = 5, + [308141] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14168), 1, + ACTIONS(14162), 1, anon_sym_LT_LT_LT, - ACTIONS(14166), 2, + ACTIONS(14160), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14164), 3, + ACTIONS(14158), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14162), 5, + ACTIONS(14156), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [308305] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1346), 1, - sym__concat, - ACTIONS(1344), 10, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [308324] = 5, + [308164] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14176), 1, + ACTIONS(14170), 1, anon_sym_LT_LT_LT, - ACTIONS(14174), 2, + ACTIONS(14168), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14172), 3, + ACTIONS(14166), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14170), 5, + ACTIONS(14164), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [308347] = 5, + [308187] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14184), 1, + ACTIONS(14178), 1, anon_sym_LT_LT_LT, - ACTIONS(14182), 2, + ACTIONS(14176), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14180), 3, + ACTIONS(14174), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14178), 5, + ACTIONS(14172), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [308370] = 5, + [308210] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(13982), 1, + ACTIONS(13942), 1, anon_sym_LT_LT_LT, - ACTIONS(13978), 2, + ACTIONS(13940), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(13976), 3, + ACTIONS(13938), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(13972), 5, + ACTIONS(13936), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [308393] = 3, + [308233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 1, + ACTIONS(1318), 1, sym__concat, - ACTIONS(1304), 10, + ACTIONS(1316), 10, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -332142,202 +332311,334 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [308412] = 5, + [308252] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14192), 1, + ACTIONS(13982), 1, anon_sym_LT_LT_LT, - ACTIONS(14190), 2, + ACTIONS(13980), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14188), 3, + ACTIONS(13978), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14186), 5, + ACTIONS(13976), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [308435] = 5, + [308275] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14200), 1, + ACTIONS(14186), 1, anon_sym_LT_LT_LT, - ACTIONS(14198), 2, + ACTIONS(14184), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14196), 3, + ACTIONS(14182), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14194), 5, + ACTIONS(14180), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [308458] = 5, + [308298] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14202), 1, + ACTIONS(14194), 1, anon_sym_LT_LT_LT, - ACTIONS(14014), 2, + ACTIONS(14192), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14012), 3, + ACTIONS(14190), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14008), 5, + ACTIONS(14188), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [308481] = 5, + [308321] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14210), 1, + ACTIONS(13926), 1, anon_sym_LT_LT_LT, - ACTIONS(14208), 2, + ACTIONS(13922), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14206), 3, + ACTIONS(13920), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14204), 5, + ACTIONS(13916), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [308504] = 5, + [308344] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14218), 1, + ACTIONS(14202), 1, anon_sym_LT_LT_LT, - ACTIONS(14216), 2, + ACTIONS(14200), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14214), 3, + ACTIONS(14198), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14212), 5, + ACTIONS(14196), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [308527] = 5, + [308367] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(13970), 1, + ACTIONS(14210), 1, anon_sym_LT_LT_LT, - ACTIONS(13968), 2, + ACTIONS(14208), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(13966), 3, + ACTIONS(14206), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(13964), 5, + ACTIONS(14204), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [308550] = 3, - ACTIONS(3), 1, + [308390] = 9, + ACTIONS(71), 1, sym_comment, - ACTIONS(1310), 1, - sym__concat, - ACTIONS(1308), 10, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(14086), 1, anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, + ACTIONS(14088), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(14090), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(14092), 1, anon_sym_BQUOTE, + ACTIONS(14094), 1, anon_sym_DOLLAR_BQUOTE, - [308569] = 5, + ACTIONS(14212), 1, + sym_heredoc_content, + ACTIONS(14214), 1, + sym_heredoc_end, + STATE(6122), 4, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + aux_sym_heredoc_body_repeat1, + [308421] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14226), 1, - anon_sym_LT_LT_LT, - ACTIONS(14224), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(14222), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(14220), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [308592] = 5, + ACTIONS(14216), 1, + anon_sym_RBRACE3, + ACTIONS(14218), 10, + anon_sym_U, + anon_sym_u, + anon_sym_L, + anon_sym_Q, + anon_sym_E, + anon_sym_P, + anon_sym_A, + anon_sym_K, + anon_sym_a, + anon_sym_k, + [308440] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14234), 1, + ACTIONS(14220), 1, anon_sym_LT_LT_LT, - ACTIONS(14232), 2, + ACTIONS(14026), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14230), 3, + ACTIONS(14024), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14228), 5, + ACTIONS(14020), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [308615] = 5, + [308463] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14224), 1, + sym__concat, + ACTIONS(14222), 10, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [308482] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14242), 1, + ACTIONS(14232), 1, anon_sym_LT_LT_LT, - ACTIONS(14240), 2, + ACTIONS(14230), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14238), 3, + ACTIONS(14228), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14236), 5, + ACTIONS(14226), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [308638] = 5, + [308505] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(13934), 1, + ACTIONS(14240), 1, anon_sym_LT_LT_LT, - ACTIONS(13932), 2, + ACTIONS(14238), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(13930), 3, + ACTIONS(14236), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(13928), 5, + ACTIONS(14234), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + [308528] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1354), 1, + sym__concat, + ACTIONS(1352), 10, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [308547] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1358), 1, + sym__concat, + ACTIONS(1356), 10, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [308566] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1346), 1, + sym__concat, + ACTIONS(1344), 10, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [308585] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1358), 1, + sym__concat, + ACTIONS(1356), 10, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [308604] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1342), 1, + sym__concat, + ACTIONS(1340), 10, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [308623] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 1, + sym__concat, + ACTIONS(1292), 10, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [308642] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14242), 1, + sym__concat, + ACTIONS(13277), 10, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, [308661] = 8, ACTIONS(71), 1, sym_comment, @@ -332353,7 +332654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(14254), 1, anon_sym_LBRACK_LBRACK, - STATE(4580), 4, + STATE(5303), 4, sym_if_statement, sym_compound_statement, sym_subshell, @@ -332361,19 +332662,19 @@ static const uint16_t ts_small_parse_table[] = { [308689] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14256), 1, + ACTIONS(14244), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14258), 1, + ACTIONS(14246), 1, anon_sym_LPAREN, - ACTIONS(14260), 1, + ACTIONS(14248), 1, anon_sym_if, - ACTIONS(14262), 1, + ACTIONS(14250), 1, anon_sym_LBRACE, - ACTIONS(14264), 1, + ACTIONS(14252), 1, anon_sym_LBRACK, - ACTIONS(14266), 1, + ACTIONS(14254), 1, anon_sym_LBRACK_LBRACK, - STATE(4387), 4, + STATE(4956), 4, sym_if_statement, sym_compound_statement, sym_subshell, @@ -332381,50 +332682,42 @@ static const uint16_t ts_small_parse_table[] = { [308717] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14268), 1, + ACTIONS(14256), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14270), 1, + ACTIONS(14258), 1, anon_sym_LPAREN, - ACTIONS(14272), 1, + ACTIONS(14260), 1, anon_sym_if, - ACTIONS(14274), 1, + ACTIONS(14262), 1, anon_sym_LBRACE, - ACTIONS(14276), 1, + ACTIONS(14264), 1, anon_sym_LBRACK, - ACTIONS(14278), 1, + ACTIONS(14266), 1, anon_sym_LBRACK_LBRACK, - STATE(5001), 4, + STATE(5488), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [308745] = 8, - ACTIONS(71), 1, + [308745] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(14268), 1, + ACTIONS(14268), 10, anon_sym_LPAREN_LPAREN, - ACTIONS(14270), 1, - anon_sym_LPAREN, - ACTIONS(14272), 1, - anon_sym_if, - ACTIONS(14274), 1, - anon_sym_LBRACE, - ACTIONS(14276), 1, - anon_sym_LBRACK, - ACTIONS(14278), 1, - anon_sym_LBRACK_LBRACK, - STATE(4659), 4, - sym_if_statement, - sym_compound_statement, - sym_subshell, - sym_test_command, - [308773] = 8, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [308761] = 8, ACTIONS(71), 1, sym_comment, ACTIONS(14244), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14246), 1, - anon_sym_LPAREN, ACTIONS(14248), 1, anon_sym_if, ACTIONS(14250), 1, @@ -332433,76 +332726,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(14254), 1, anon_sym_LBRACK_LBRACK, - STATE(4549), 4, + ACTIONS(14270), 1, + anon_sym_LPAREN, + STATE(4677), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [308801] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14280), 1, - anon_sym_DQUOTE, - ACTIONS(14282), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(14284), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(14286), 1, - anon_sym_BQUOTE, - ACTIONS(14288), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5433), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - STATE(6677), 3, - sym_string, - sym_expansion, - sym_command_substitution, - [308829] = 8, + [308789] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14290), 1, + ACTIONS(14256), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14292), 1, - anon_sym_LPAREN, - ACTIONS(14294), 1, + ACTIONS(14260), 1, anon_sym_if, - ACTIONS(14296), 1, + ACTIONS(14262), 1, anon_sym_LBRACE, - ACTIONS(14298), 1, + ACTIONS(14264), 1, anon_sym_LBRACK, - ACTIONS(14300), 1, + ACTIONS(14266), 1, anon_sym_LBRACK_LBRACK, - STATE(5405), 4, + ACTIONS(14272), 1, + anon_sym_LPAREN, + STATE(5446), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [308857] = 8, + [308817] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14268), 1, + ACTIONS(14244), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14270), 1, + ACTIONS(14246), 1, anon_sym_LPAREN, - ACTIONS(14272), 1, + ACTIONS(14248), 1, anon_sym_if, - ACTIONS(14274), 1, + ACTIONS(14250), 1, anon_sym_LBRACE, - ACTIONS(14276), 1, + ACTIONS(14252), 1, anon_sym_LBRACK, - ACTIONS(14278), 1, + ACTIONS(14254), 1, anon_sym_LBRACK_LBRACK, - STATE(4829), 4, + STATE(4683), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [308885] = 8, + [308845] = 8, ACTIONS(71), 1, sym_comment, ACTIONS(14244), 1, anon_sym_LPAREN_LPAREN, + ACTIONS(14246), 1, + anon_sym_LPAREN, ACTIONS(14248), 1, anon_sym_if, ACTIONS(14250), 1, @@ -332511,231 +332788,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(14254), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14302), 1, - anon_sym_LPAREN, - STATE(4420), 4, + STATE(4685), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [308913] = 8, + [308873] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14256), 1, + ACTIONS(14244), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14260), 1, + ACTIONS(14248), 1, anon_sym_if, - ACTIONS(14262), 1, + ACTIONS(14250), 1, anon_sym_LBRACE, - ACTIONS(14264), 1, + ACTIONS(14252), 1, anon_sym_LBRACK, - ACTIONS(14266), 1, + ACTIONS(14254), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14304), 1, + ACTIONS(14274), 1, anon_sym_LPAREN, - STATE(4273), 4, + STATE(5019), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [308941] = 8, + [308901] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14268), 1, + ACTIONS(14276), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14270), 1, + ACTIONS(14278), 1, anon_sym_LPAREN, - ACTIONS(14272), 1, + ACTIONS(14280), 1, anon_sym_if, - ACTIONS(14274), 1, + ACTIONS(14282), 1, anon_sym_LBRACE, - ACTIONS(14276), 1, + ACTIONS(14284), 1, anon_sym_LBRACK, - ACTIONS(14278), 1, + ACTIONS(14286), 1, anon_sym_LBRACK_LBRACK, - STATE(5000), 4, + STATE(4293), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [308969] = 8, + [308929] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14256), 1, + ACTIONS(14244), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14260), 1, + ACTIONS(14248), 1, anon_sym_if, - ACTIONS(14262), 1, + ACTIONS(14250), 1, anon_sym_LBRACE, - ACTIONS(14264), 1, + ACTIONS(14252), 1, anon_sym_LBRACK, - ACTIONS(14266), 1, + ACTIONS(14254), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14304), 1, + ACTIONS(14288), 1, anon_sym_LPAREN, - STATE(4346), 4, + STATE(4716), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [308997] = 8, + [308957] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14268), 1, + ACTIONS(14276), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14272), 1, + ACTIONS(14280), 1, anon_sym_if, - ACTIONS(14274), 1, + ACTIONS(14282), 1, anon_sym_LBRACE, - ACTIONS(14276), 1, + ACTIONS(14284), 1, anon_sym_LBRACK, - ACTIONS(14278), 1, + ACTIONS(14286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14306), 1, + ACTIONS(14290), 1, anon_sym_LPAREN, - STATE(4723), 4, + STATE(4309), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [309025] = 8, + [308985] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14268), 1, + ACTIONS(14244), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14272), 1, + ACTIONS(14246), 1, + anon_sym_LPAREN, + ACTIONS(14248), 1, anon_sym_if, - ACTIONS(14274), 1, + ACTIONS(14250), 1, anon_sym_LBRACE, - ACTIONS(14276), 1, + ACTIONS(14252), 1, anon_sym_LBRACK, - ACTIONS(14278), 1, + ACTIONS(14254), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14308), 1, - anon_sym_LPAREN, - STATE(5367), 4, + STATE(4733), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [309053] = 8, + [309013] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14268), 1, + ACTIONS(14244), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14270), 1, + ACTIONS(14246), 1, anon_sym_LPAREN, - ACTIONS(14272), 1, + ACTIONS(14248), 1, anon_sym_if, - ACTIONS(14274), 1, + ACTIONS(14250), 1, anon_sym_LBRACE, - ACTIONS(14276), 1, + ACTIONS(14252), 1, anon_sym_LBRACK, - ACTIONS(14278), 1, + ACTIONS(14254), 1, anon_sym_LBRACK_LBRACK, - STATE(4625), 4, + STATE(4807), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [309081] = 8, + [309041] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14268), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(14272), 1, - anon_sym_if, - ACTIONS(14274), 1, - anon_sym_LBRACE, ACTIONS(14276), 1, - anon_sym_LBRACK, + anon_sym_LPAREN_LPAREN, ACTIONS(14278), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(14310), 1, anon_sym_LPAREN, - STATE(4719), 4, - sym_if_statement, - sym_compound_statement, - sym_subshell, - sym_test_command, - [309109] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14290), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(14294), 1, + ACTIONS(14280), 1, anon_sym_if, - ACTIONS(14296), 1, + ACTIONS(14282), 1, anon_sym_LBRACE, - ACTIONS(14298), 1, + ACTIONS(14284), 1, anon_sym_LBRACK, - ACTIONS(14300), 1, + ACTIONS(14286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14312), 1, - anon_sym_LPAREN, - STATE(5423), 4, + STATE(4266), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [309137] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14076), 10, - anon_sym_U, - anon_sym_u, - anon_sym_L, - anon_sym_Q, - anon_sym_E, - anon_sym_P, - anon_sym_A, - anon_sym_K, - anon_sym_a, - anon_sym_k, - [309153] = 8, + [309069] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14268), 1, + ACTIONS(14292), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14270), 1, + ACTIONS(14294), 1, anon_sym_LPAREN, - ACTIONS(14272), 1, + ACTIONS(14296), 1, anon_sym_if, - ACTIONS(14274), 1, + ACTIONS(14298), 1, anon_sym_LBRACE, - ACTIONS(14276), 1, + ACTIONS(14300), 1, anon_sym_LBRACK, - ACTIONS(14278), 1, + ACTIONS(14302), 1, anon_sym_LBRACK_LBRACK, - STATE(5372), 4, + STATE(4431), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [309181] = 8, + [309097] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14268), 1, + ACTIONS(14244), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14270), 1, + ACTIONS(14246), 1, anon_sym_LPAREN, - ACTIONS(14272), 1, + ACTIONS(14248), 1, anon_sym_if, - ACTIONS(14274), 1, + ACTIONS(14250), 1, anon_sym_LBRACE, - ACTIONS(14276), 1, + ACTIONS(14252), 1, anon_sym_LBRACK, - ACTIONS(14278), 1, + ACTIONS(14254), 1, anon_sym_LBRACK_LBRACK, - STATE(5375), 4, + STATE(4610), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [309209] = 2, + [309125] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14314), 10, + ACTIONS(13277), 10, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -332746,96 +332987,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [309225] = 8, + [309141] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14290), 1, + ACTIONS(14244), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14292), 1, + ACTIONS(14246), 1, anon_sym_LPAREN, - ACTIONS(14294), 1, + ACTIONS(14248), 1, anon_sym_if, - ACTIONS(14296), 1, + ACTIONS(14250), 1, anon_sym_LBRACE, - ACTIONS(14298), 1, + ACTIONS(14252), 1, anon_sym_LBRACK, - ACTIONS(14300), 1, + ACTIONS(14254), 1, anon_sym_LBRACK_LBRACK, - STATE(5475), 4, + STATE(5032), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [309253] = 8, + [309169] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14268), 1, + ACTIONS(14244), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14270), 1, - anon_sym_LPAREN, - ACTIONS(14272), 1, + ACTIONS(14248), 1, anon_sym_if, - ACTIONS(14274), 1, + ACTIONS(14250), 1, anon_sym_LBRACE, - ACTIONS(14276), 1, + ACTIONS(14252), 1, anon_sym_LBRACK, - ACTIONS(14278), 1, + ACTIONS(14254), 1, anon_sym_LBRACK_LBRACK, - STATE(4747), 4, + ACTIONS(14304), 1, + anon_sym_LPAREN, + STATE(4748), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [309281] = 8, + [309197] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14268), 1, + ACTIONS(14256), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14270), 1, + ACTIONS(14258), 1, anon_sym_LPAREN, - ACTIONS(14272), 1, + ACTIONS(14260), 1, anon_sym_if, - ACTIONS(14274), 1, + ACTIONS(14262), 1, anon_sym_LBRACE, - ACTIONS(14276), 1, + ACTIONS(14264), 1, anon_sym_LBRACK, - ACTIONS(14278), 1, + ACTIONS(14266), 1, anon_sym_LBRACK_LBRACK, - STATE(4758), 4, + STATE(5409), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [309309] = 2, - ACTIONS(3), 1, + [309225] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14218), 10, + anon_sym_U, + anon_sym_u, + anon_sym_L, + anon_sym_Q, + anon_sym_E, + anon_sym_P, + anon_sym_A, + anon_sym_K, + anon_sym_a, + anon_sym_k, + [309241] = 8, + ACTIONS(71), 1, sym_comment, - ACTIONS(13333), 10, + ACTIONS(14292), 1, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + ACTIONS(14296), 1, + anon_sym_if, + ACTIONS(14298), 1, + anon_sym_LBRACE, + ACTIONS(14300), 1, + anon_sym_LBRACK, + ACTIONS(14302), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14306), 1, + anon_sym_LPAREN, + STATE(4447), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [309269] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14308), 1, anon_sym_DQUOTE, - sym_string_content, + ACTIONS(14310), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(14312), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(14314), 1, anon_sym_BQUOTE, + ACTIONS(14316), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(5470), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + STATE(6663), 3, + sym_string, + sym_expansion, + sym_command_substitution, + [309297] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14244), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(14248), 1, + anon_sym_if, + ACTIONS(14250), 1, + anon_sym_LBRACE, + ACTIONS(14252), 1, + anon_sym_LBRACK, + ACTIONS(14254), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14318), 1, + anon_sym_LPAREN, + STATE(5298), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, [309325] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14268), 1, + ACTIONS(14244), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14270), 1, + ACTIONS(14246), 1, anon_sym_LPAREN, - ACTIONS(14272), 1, + ACTIONS(14248), 1, anon_sym_if, - ACTIONS(14274), 1, + ACTIONS(14250), 1, anon_sym_LBRACE, - ACTIONS(14276), 1, + ACTIONS(14252), 1, anon_sym_LBRACK, - ACTIONS(14278), 1, + ACTIONS(14254), 1, anon_sym_LBRACK_LBRACK, - STATE(4685), 4, + STATE(4767), 4, sym_if_statement, sym_compound_statement, sym_subshell, @@ -332843,19 +333144,19 @@ static const uint16_t ts_small_parse_table[] = { [309353] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14268), 1, + ACTIONS(14292), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14272), 1, + ACTIONS(14296), 1, anon_sym_if, - ACTIONS(14274), 1, + ACTIONS(14298), 1, anon_sym_LBRACE, - ACTIONS(14276), 1, + ACTIONS(14300), 1, anon_sym_LBRACK, - ACTIONS(14278), 1, + ACTIONS(14302), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14316), 1, + ACTIONS(14306), 1, anon_sym_LPAREN, - STATE(4667), 4, + STATE(4452), 4, sym_if_statement, sym_compound_statement, sym_subshell, @@ -332863,256 +333164,254 @@ static const uint16_t ts_small_parse_table[] = { [309381] = 8, ACTIONS(71), 1, sym_comment, - ACTIONS(14268), 1, + ACTIONS(14244), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14272), 1, + ACTIONS(14246), 1, + anon_sym_LPAREN, + ACTIONS(14248), 1, anon_sym_if, - ACTIONS(14274), 1, + ACTIONS(14250), 1, anon_sym_LBRACE, - ACTIONS(14276), 1, + ACTIONS(14252), 1, anon_sym_LBRACK, - ACTIONS(14278), 1, + ACTIONS(14254), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14318), 1, - anon_sym_LPAREN, - STATE(4995), 4, + STATE(5302), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [309409] = 10, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14320), 1, - anon_sym_SLASH, - ACTIONS(14322), 1, - anon_sym_DQUOTE, - ACTIONS(14324), 1, - anon_sym_RBRACE3, - ACTIONS(14326), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(14328), 1, - anon_sym_BQUOTE, - ACTIONS(14330), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(14332), 1, - sym__regex_no_slash, - STATE(6582), 1, - sym_string, - STATE(6749), 1, - sym_command_substitution, - [309440] = 6, + [309409] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 1, + ACTIONS(1274), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(14334), 1, + ACTIONS(14320), 1, aux_sym_concatenation_token1, - ACTIONS(14336), 1, + ACTIONS(14322), 1, sym__concat, STATE(6201), 1, aux_sym_concatenation_repeat1, - ACTIONS(1261), 5, + ACTIONS(1272), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, sym__special_character, - [309463] = 7, - ACTIONS(3), 1, + [309432] = 10, + ACTIONS(71), 1, sym_comment, + ACTIONS(14324), 1, + anon_sym_SLASH, + ACTIONS(14326), 1, + anon_sym_DQUOTE, + ACTIONS(14328), 1, + anon_sym_RBRACE3, + ACTIONS(14330), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(14332), 1, + anon_sym_BQUOTE, ACTIONS(14334), 1, - aux_sym_concatenation_token1, + anon_sym_DOLLAR_BQUOTE, ACTIONS(14336), 1, - sym__concat, - ACTIONS(14338), 1, - anon_sym_in, - ACTIONS(14342), 1, - aux_sym_heredoc_redirect_token1, - STATE(6201), 1, - aux_sym_concatenation_repeat1, - ACTIONS(14340), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [309487] = 8, + sym__regex_no_slash, + STATE(6648), 1, + sym_string, + STATE(6782), 1, + sym_command_substitution, + [309463] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14344), 1, + ACTIONS(14338), 1, anon_sym_RPAREN, - ACTIONS(14346), 1, + ACTIONS(14341), 1, anon_sym_DQUOTE, - ACTIONS(14348), 1, + ACTIONS(14344), 1, sym_raw_string, - ACTIONS(14350), 1, + ACTIONS(14347), 1, anon_sym_RBRACE3, - ACTIONS(14352), 1, + ACTIONS(14349), 1, aux_sym__expansion_regex_token1, - ACTIONS(14354), 1, + ACTIONS(14352), 1, sym_regex, - STATE(6194), 2, + STATE(6189), 2, sym_string, aux_sym__expansion_regex_repeat1, - [309513] = 7, + [309489] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(14334), 1, + ACTIONS(14320), 1, aux_sym_concatenation_token1, - ACTIONS(14336), 1, + ACTIONS(14322), 1, sym__concat, - ACTIONS(14356), 1, + ACTIONS(14355), 1, anon_sym_in, - ACTIONS(14360), 1, + ACTIONS(14359), 1, aux_sym_heredoc_redirect_token1, - STATE(6201), 1, + STATE(6195), 1, aux_sym_concatenation_repeat1, - ACTIONS(14358), 3, + ACTIONS(14357), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [309537] = 7, + [309513] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14334), 1, + ACTIONS(1278), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14361), 1, aux_sym_concatenation_token1, - ACTIONS(14336), 1, + ACTIONS(14364), 1, sym__concat, - ACTIONS(14362), 1, - anon_sym_in, - ACTIONS(14366), 1, - aux_sym_heredoc_redirect_token1, - STATE(6193), 1, + STATE(6191), 1, aux_sym_concatenation_repeat1, - ACTIONS(14364), 3, + ACTIONS(1276), 4, + anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [309561] = 6, + [309535] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(14334), 1, + ACTIONS(14320), 1, aux_sym_concatenation_token1, - ACTIONS(14368), 1, + ACTIONS(14322), 1, sym__concat, - STATE(6204), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1286), 4, + ACTIONS(14367), 1, anon_sym_in, + ACTIONS(14371), 1, + aux_sym_heredoc_redirect_token1, + STATE(6201), 1, + aux_sym_concatenation_repeat1, + ACTIONS(14369), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [309583] = 8, + [309559] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(14370), 1, - anon_sym_RPAREN, + ACTIONS(14320), 1, + aux_sym_concatenation_token1, + ACTIONS(14322), 1, + sym__concat, ACTIONS(14373), 1, - anon_sym_DQUOTE, - ACTIONS(14376), 1, - sym_raw_string, - ACTIONS(14379), 1, - anon_sym_RBRACE3, - ACTIONS(14381), 1, - aux_sym__expansion_regex_token1, - ACTIONS(14384), 1, - sym_regex, - STATE(6194), 2, - sym_string, - aux_sym__expansion_regex_repeat1, - [309609] = 7, + anon_sym_in, + ACTIONS(14377), 1, + aux_sym_heredoc_redirect_token1, + STATE(6201), 1, + aux_sym_concatenation_repeat1, + ACTIONS(14375), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [309583] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(7793), 1, + ACTIONS(7794), 1, aux_sym_number_token1, - ACTIONS(7795), 1, + ACTIONS(7796), 1, aux_sym_number_token2, - ACTIONS(14387), 1, + ACTIONS(14379), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(14389), 1, + ACTIONS(14381), 1, aux_sym__simple_variable_name_token1, - STATE(6227), 1, + STATE(6245), 1, sym__expansion_max_length_binary_expression, - STATE(6215), 3, + STATE(6239), 3, sym_number, sym_expansion, sym__expansion_max_length_expression, - [309633] = 7, + [309607] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1288), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14320), 1, + aux_sym_concatenation_token1, + ACTIONS(14383), 1, + sym__concat, + STATE(6191), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [309629] = 7, ACTIONS(71), 1, sym_comment, - ACTIONS(7793), 1, + ACTIONS(7794), 1, aux_sym_number_token1, - ACTIONS(7795), 1, + ACTIONS(7796), 1, aux_sym_number_token2, - ACTIONS(14387), 1, + ACTIONS(14379), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(14391), 1, + ACTIONS(14385), 1, aux_sym__simple_variable_name_token1, - STATE(6227), 1, + STATE(6245), 1, sym__expansion_max_length_binary_expression, - STATE(6212), 3, + STATE(6206), 3, sym_number, sym_expansion, sym__expansion_max_length_expression, - [309657] = 8, + [309653] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14344), 1, + ACTIONS(14387), 1, anon_sym_RPAREN, - ACTIONS(14346), 1, + ACTIONS(14389), 1, anon_sym_DQUOTE, - ACTIONS(14352), 1, - aux_sym__expansion_regex_token1, - ACTIONS(14393), 1, + ACTIONS(14391), 1, sym_raw_string, - ACTIONS(14395), 1, + ACTIONS(14393), 1, anon_sym_RBRACE3, + ACTIONS(14395), 1, + aux_sym__expansion_regex_token1, ACTIONS(14397), 1, sym_regex, - STATE(6190), 2, + STATE(6203), 2, sym_string, aux_sym__expansion_regex_repeat1, - [309683] = 7, + [309679] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(14334), 1, + ACTIONS(14320), 1, aux_sym_concatenation_token1, - ACTIONS(14336), 1, + ACTIONS(14322), 1, sym__concat, ACTIONS(14399), 1, anon_sym_in, ACTIONS(14403), 1, aux_sym_heredoc_redirect_token1, - STATE(6193), 1, + STATE(6195), 1, aux_sym_concatenation_repeat1, ACTIONS(14401), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [309707] = 7, + [309703] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(14334), 1, + ACTIONS(14320), 1, aux_sym_concatenation_token1, - ACTIONS(14336), 1, + ACTIONS(14322), 1, sym__concat, ACTIONS(14405), 1, anon_sym_in, ACTIONS(14409), 1, aux_sym_heredoc_redirect_token1, - STATE(6193), 1, + STATE(6201), 1, aux_sym_concatenation_repeat1, ACTIONS(14407), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [309731] = 7, + [309727] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(14334), 1, + ACTIONS(14320), 1, aux_sym_concatenation_token1, - ACTIONS(14336), 1, + ACTIONS(14322), 1, sym__concat, ACTIONS(14411), 1, anon_sym_in, @@ -333124,85 +333423,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [309755] = 6, + [309751] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1267), 1, + ACTIONS(1268), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(14334), 1, + ACTIONS(14320), 1, aux_sym_concatenation_token1, ACTIONS(14417), 1, sym__concat, - STATE(6204), 1, + STATE(6191), 1, aux_sym_concatenation_repeat1, - ACTIONS(1265), 4, + ACTIONS(1266), 4, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [309777] = 7, + [309773] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(14334), 1, + ACTIONS(14320), 1, aux_sym_concatenation_token1, - ACTIONS(14336), 1, + ACTIONS(14322), 1, sym__concat, ACTIONS(14419), 1, anon_sym_in, ACTIONS(14423), 1, aux_sym_heredoc_redirect_token1, - STATE(6193), 1, + STATE(6195), 1, aux_sym_concatenation_repeat1, ACTIONS(14421), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [309801] = 7, + [309797] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14334), 1, - aux_sym_concatenation_token1, - ACTIONS(14336), 1, - sym__concat, + ACTIONS(14387), 1, + anon_sym_RPAREN, + ACTIONS(14389), 1, + anon_sym_DQUOTE, + ACTIONS(14395), 1, + aux_sym__expansion_regex_token1, ACTIONS(14425), 1, - anon_sym_in, + sym_raw_string, + ACTIONS(14427), 1, + anon_sym_RBRACE3, ACTIONS(14429), 1, - aux_sym_heredoc_redirect_token1, - STATE(6201), 1, - aux_sym_concatenation_repeat1, - ACTIONS(14427), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [309825] = 6, + sym_regex, + STATE(6189), 2, + sym_string, + aux_sym__expansion_regex_repeat1, + [309823] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(14431), 1, + ACTIONS(14320), 1, aux_sym_concatenation_token1, - ACTIONS(14434), 1, + ACTIONS(14322), 1, sym__concat, - STATE(6204), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1251), 4, + ACTIONS(14431), 1, anon_sym_in, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [309847] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1326), 2, - sym__concat, + ACTIONS(14435), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 5, - anon_sym_in, + STATE(6195), 1, + aux_sym_concatenation_repeat1, + ACTIONS(14433), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - aux_sym_concatenation_token1, - [309862] = 3, + [309847] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1350), 2, @@ -333214,32 +333503,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [309877] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1294), 2, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - aux_sym_concatenation_token1, - [309892] = 4, + [309862] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14439), 1, - anon_sym_COLON, - ACTIONS(14441), 1, - anon_sym_RBRACE3, - ACTIONS(14437), 5, + ACTIONS(14437), 7, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [309909] = 3, + anon_sym_COLON, + anon_sym_RBRACE3, + [309875] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1322), 2, @@ -333251,84 +333526,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [309924] = 3, + [309890] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 2, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 5, + ACTIONS(14367), 1, anon_sym_in, + ACTIONS(14371), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14439), 1, + sym__special_character, + STATE(6241), 1, + aux_sym__literal_repeat1, + ACTIONS(14369), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - aux_sym_concatenation_token1, - [309939] = 3, + [309911] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1356), 1, - anon_sym_DOLLAR, - ACTIONS(1358), 6, - sym_heredoc_content, - sym_heredoc_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [309954] = 3, + ACTIONS(1358), 7, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_RBRACE3, + [309924] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14445), 3, + ACTIONS(1346), 7, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(14443), 4, + anon_sym_COLON, + anon_sym_RBRACE3, + [309937] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1358), 7, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_COLON, anon_sym_RBRACE3, - [309969] = 6, + [309950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14425), 1, - anon_sym_in, - ACTIONS(14429), 1, + ACTIONS(1294), 2, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(14447), 1, - sym__special_character, - STATE(6240), 1, - aux_sym__literal_repeat1, - ACTIONS(14427), 3, + ACTIONS(1292), 5, + anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [309990] = 3, + aux_sym_concatenation_token1, + [309965] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 2, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 5, + ACTIONS(14405), 1, anon_sym_in, + ACTIONS(14409), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14439), 1, + sym__special_character, + STATE(6241), 1, + aux_sym__literal_repeat1, + ACTIONS(14407), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - aux_sym_concatenation_token1, - [310005] = 2, + [309986] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14443), 7, + ACTIONS(14443), 1, + anon_sym_COLON, + ACTIONS(14445), 1, + anon_sym_RBRACE3, + ACTIONS(14441), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_RBRACE3, - [310018] = 2, + [310003] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1338), 7, + ACTIONS(1350), 7, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -333336,6 +333625,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_COLON, anon_sym_RBRACE3, + [310016] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1356), 1, + anon_sym_DOLLAR, + ACTIONS(1358), 6, + sym_heredoc_content, + sym_heredoc_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, [310031] = 3, ACTIONS(3), 1, sym_comment, @@ -333351,147 +333652,205 @@ static const uint16_t ts_small_parse_table[] = { [310046] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14451), 1, + ACTIONS(14449), 1, anon_sym_COLON, - ACTIONS(14453), 1, + ACTIONS(14451), 1, anon_sym_RBRACE3, - ACTIONS(14449), 5, + ACTIONS(14447), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [310063] = 6, + [310063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14356), 1, - anon_sym_in, - ACTIONS(14360), 1, + ACTIONS(1318), 2, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(14447), 1, - sym__special_character, - STATE(6240), 1, - aux_sym__literal_repeat1, - ACTIONS(14358), 3, + ACTIONS(1316), 5, + anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [310084] = 6, + aux_sym_concatenation_token1, + [310078] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(14411), 1, anon_sym_in, ACTIONS(14415), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(14447), 1, + ACTIONS(14439), 1, sym__special_character, - STATE(6240), 1, + STATE(6241), 1, aux_sym__literal_repeat1, ACTIONS(14413), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [310105] = 3, + [310099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 2, + ACTIONS(1306), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 5, + ACTIONS(1304), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [310120] = 3, + [310114] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1354), 7, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_RBRACE3, + [310127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 2, + ACTIONS(1330), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 5, + ACTIONS(1328), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [310135] = 6, + [310142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14338), 1, - anon_sym_in, - ACTIONS(14342), 1, + ACTIONS(1334), 2, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(14447), 1, - sym__special_character, - STATE(6240), 1, - aux_sym__literal_repeat1, - ACTIONS(14340), 3, + ACTIONS(1332), 5, + anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [310156] = 3, + aux_sym_concatenation_token1, + [310157] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 1, + ACTIONS(1352), 1, anon_sym_DOLLAR, - ACTIONS(1310), 6, + ACTIONS(1354), 6, sym_heredoc_content, sym_heredoc_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [310171] = 3, + [310172] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14373), 1, + anon_sym_in, + ACTIONS(14377), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14439), 1, + sym__special_character, + STATE(6241), 1, + aux_sym__literal_repeat1, + ACTIONS(14375), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [310193] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1324), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + aux_sym_concatenation_token1, + [310208] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1354), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1352), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + aux_sym_concatenation_token1, + [310223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 2, + ACTIONS(1358), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 5, + ACTIONS(1356), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [310186] = 3, + [310238] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1304), 1, + ACTIONS(1348), 1, anon_sym_DOLLAR, - ACTIONS(1306), 6, + ACTIONS(1350), 6, sym_heredoc_content, sym_heredoc_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [310201] = 2, - ACTIONS(71), 1, + [310253] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(14449), 7, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_RBRACE3, - [310214] = 2, - ACTIONS(71), 1, + ACTIONS(1346), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1344), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + aux_sym_concatenation_token1, + [310268] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 7, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_RBRACE3, - [310227] = 2, + ACTIONS(1278), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1276), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + aux_sym_concatenation_token1, + [310283] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1296), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + aux_sym_concatenation_token1, + [310298] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1318), 7, + ACTIONS(1330), 7, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -333499,202 +333858,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_COLON, anon_sym_RBRACE3, - [310240] = 3, + [310311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 2, + ACTIONS(1358), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 5, + ACTIONS(1356), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [310255] = 3, + [310326] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 2, + ACTIONS(1310), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 5, + ACTIONS(1308), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [310270] = 3, + [310341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 2, + ACTIONS(1342), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 5, + ACTIONS(1340), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [310285] = 3, + [310356] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1308), 1, + ACTIONS(1344), 1, anon_sym_DOLLAR, - ACTIONS(1310), 6, + ACTIONS(1346), 6, sym_heredoc_content, sym_heredoc_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [310300] = 2, + [310371] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1314), 7, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(14453), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(14437), 4, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_COLON, anon_sym_RBRACE3, - [310313] = 3, + [310386] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1344), 1, + ACTIONS(1340), 1, anon_sym_DOLLAR, - ACTIONS(1346), 6, + ACTIONS(1342), 6, sym_heredoc_content, sym_heredoc_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [310328] = 3, + [310401] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 2, - sym__concat, + ACTIONS(1362), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 5, + ACTIONS(14455), 1, + sym__special_character, + STATE(6241), 1, + aux_sym__literal_repeat1, + ACTIONS(1360), 4, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - aux_sym_concatenation_token1, - [310343] = 3, + [310420] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1312), 1, + ACTIONS(1356), 1, anon_sym_DOLLAR, - ACTIONS(1314), 6, + ACTIONS(1358), 6, sym_heredoc_content, sym_heredoc_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [310358] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1318), 2, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - aux_sym_concatenation_token1, - [310373] = 3, + [310435] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1336), 1, + ACTIONS(1292), 1, anon_sym_DOLLAR, - ACTIONS(1338), 6, + ACTIONS(1294), 6, sym_heredoc_content, sym_heredoc_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [310388] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1364), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(14455), 1, - sym__special_character, - STATE(6240), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [310407] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1310), 2, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - aux_sym_concatenation_token1, - [310422] = 3, + [310450] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 2, + ACTIONS(1314), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 5, + ACTIONS(1312), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [310437] = 3, - ACTIONS(3), 1, + [310465] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1342), 2, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - aux_sym_concatenation_token1, - [310452] = 3, + ACTIONS(14441), 7, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_RBRACE3, + [310478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 2, + ACTIONS(1302), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 5, + ACTIONS(1300), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [310467] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1310), 7, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_RBRACE3, - [310480] = 2, + [310493] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1306), 7, + ACTIONS(1322), 7, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -333702,1549 +334014,1541 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_COLON, anon_sym_RBRACE3, - [310493] = 2, + [310506] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1310), 7, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, + ACTIONS(14458), 1, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, + ACTIONS(14462), 1, anon_sym_RBRACE3, - [310506] = 6, + ACTIONS(14464), 1, + sym__expansion_word, + STATE(6420), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(14460), 2, + sym__concat, + aux_sym_concatenation_token1, + [310526] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(10142), 1, + ACTIONS(10742), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10144), 1, + ACTIONS(10746), 1, anon_sym_BQUOTE, - ACTIONS(10146), 1, + ACTIONS(10748), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14458), 1, + ACTIONS(14466), 1, anon_sym_DOLLAR_LPAREN, - STATE(4576), 2, + STATE(6223), 2, sym_expansion, sym_command_substitution, - [310526] = 6, + [310546] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9382), 1, + ACTIONS(9252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9384), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9386), 1, + ACTIONS(9254), 1, anon_sym_BQUOTE, - ACTIONS(9388), 1, + ACTIONS(9256), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3215), 2, + ACTIONS(14468), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1601), 2, sym_expansion, sym_command_substitution, - [310546] = 6, + [310566] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1334), 2, + sym_regex, + aux_sym__expansion_regex_token1, + ACTIONS(1332), 4, + anon_sym_RPAREN, + anon_sym_DQUOTE, + sym_raw_string, + anon_sym_RBRACE3, + [310580] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14326), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(14328), 1, + ACTIONS(5207), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5211), 1, anon_sym_BQUOTE, - ACTIONS(14330), 1, + ACTIONS(5213), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14387), 1, - anon_sym_DOLLAR_LBRACE, - STATE(6228), 2, + ACTIONS(14470), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2910), 2, sym_expansion, sym_command_substitution, - [310566] = 6, + [310600] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(10512), 1, + ACTIONS(4227), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10514), 1, + ACTIONS(4231), 1, anon_sym_BQUOTE, - ACTIONS(10516), 1, + ACTIONS(4233), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14460), 1, + ACTIONS(14472), 1, anon_sym_DOLLAR_LPAREN, - STATE(1503), 2, + STATE(2571), 2, sym_expansion, sym_command_substitution, - [310586] = 6, + [310620] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9054), 1, + ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9056), 1, - anon_sym_BQUOTE, - ACTIONS(9058), 1, + ACTIONS(321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14462), 1, + ACTIONS(5884), 1, + anon_sym_BQUOTE, + ACTIONS(14474), 1, anon_sym_DOLLAR_LPAREN, - STATE(1781), 2, + STATE(2615), 2, sym_expansion, sym_command_substitution, - [310606] = 6, + [310640] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14478), 1, + anon_sym_COMMA, + ACTIONS(14480), 1, + aux_sym_heredoc_redirect_token1, + STATE(4737), 1, + sym__c_terminator, + STATE(6280), 1, + aux_sym__for_body_repeat1, + ACTIONS(14476), 2, + anon_sym_SEMI, + anon_sym_AMP, + [310660] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9772), 1, + ACTIONS(8306), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9776), 1, + ACTIONS(8310), 1, anon_sym_BQUOTE, - ACTIONS(9778), 1, + ACTIONS(8312), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14464), 1, + ACTIONS(14482), 1, anon_sym_DOLLAR_LPAREN, - STATE(6236), 2, + STATE(1203), 2, sym_expansion, sym_command_substitution, - [310626] = 6, + [310680] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8886), 1, + ACTIONS(8502), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8888), 1, + ACTIONS(8506), 1, anon_sym_BQUOTE, - ACTIONS(8890), 1, + ACTIONS(8508), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14466), 1, + ACTIONS(14484), 1, anon_sym_DOLLAR_LPAREN, - STATE(1157), 2, + STATE(1467), 2, sym_expansion, sym_command_substitution, - [310646] = 6, + [310700] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1338), 2, + sym_regex, + aux_sym__expansion_regex_token1, + ACTIONS(1336), 4, + anon_sym_RPAREN, + anon_sym_DQUOTE, + sym_raw_string, + anon_sym_RBRACE3, + [310714] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8116), 1, + ACTIONS(9450), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8120), 1, + ACTIONS(9452), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9454), 1, anon_sym_BQUOTE, - ACTIONS(8122), 1, + ACTIONS(9456), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14468), 1, - anon_sym_DOLLAR_LPAREN, - STATE(1233), 2, + STATE(2859), 2, sym_expansion, sym_command_substitution, - [310666] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14470), 1, - anon_sym_RBRACE3, - ACTIONS(14449), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [310680] = 6, + [310734] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9686), 1, + ACTIONS(8070), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9688), 1, + ACTIONS(8072), 1, anon_sym_BQUOTE, - ACTIONS(9690), 1, + ACTIONS(8074), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14472), 1, + ACTIONS(14486), 1, anon_sym_DOLLAR_LPAREN, - STATE(1793), 2, + STATE(1641), 2, sym_expansion, sym_command_substitution, - [310700] = 3, + [310754] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14474), 1, + ACTIONS(14488), 1, anon_sym_RBRACE3, - ACTIONS(14437), 5, + ACTIONS(14447), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [310714] = 3, + [310768] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14476), 1, - anon_sym_RBRACE3, - ACTIONS(14449), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [310728] = 3, + ACTIONS(205), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(209), 1, + anon_sym_BQUOTE, + ACTIONS(211), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14490), 1, + anon_sym_DOLLAR_LPAREN, + STATE(505), 2, + sym_expansion, + sym_command_substitution, + [310788] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14478), 1, - anon_sym_RBRACE3, - ACTIONS(14437), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [310742] = 3, + ACTIONS(9996), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9998), 1, + anon_sym_BQUOTE, + ACTIONS(10000), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14492), 1, + anon_sym_DOLLAR_LPAREN, + STATE(4476), 2, + sym_expansion, + sym_command_substitution, + [310808] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14480), 1, - anon_sym_RBRACE3, - ACTIONS(14449), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, + ACTIONS(14494), 1, anon_sym_SLASH, - anon_sym_PERCENT, - [310756] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14482), 1, + ACTIONS(14496), 1, anon_sym_RBRACE3, - ACTIONS(14437), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [310770] = 6, + ACTIONS(14498), 1, + sym__expansion_word, + STATE(6420), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(14460), 2, + sym__concat, + aux_sym_concatenation_token1, + [310828] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(10070), 1, + ACTIONS(9218), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10072), 1, + ACTIONS(9220), 1, anon_sym_BQUOTE, - ACTIONS(10074), 1, + ACTIONS(9222), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14484), 1, + ACTIONS(14500), 1, anon_sym_DOLLAR_LPAREN, - STATE(4701), 2, + STATE(1813), 2, sym_expansion, sym_command_substitution, - [310790] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14482), 1, - anon_sym_RBRACE3, - ACTIONS(14437), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [310804] = 6, + [310848] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14486), 1, + ACTIONS(14502), 1, anon_sym_fi, - ACTIONS(14488), 1, + ACTIONS(14504), 1, anon_sym_elif, - ACTIONS(14490), 1, + ACTIONS(14506), 1, anon_sym_else, - STATE(7320), 1, + STATE(7066), 1, sym_else_clause, - STATE(6400), 2, + STATE(6422), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [310824] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14492), 1, - anon_sym_RBRACE3, - ACTIONS(14449), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [310838] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14482), 1, - anon_sym_RBRACE3, - ACTIONS(14437), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [310852] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14494), 1, - anon_sym_RBRACE3, - ACTIONS(14449), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [310866] = 6, + [310868] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(465), 1, + ACTIONS(9124), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(469), 1, + ACTIONS(9126), 1, anon_sym_BQUOTE, - ACTIONS(471), 1, + ACTIONS(9128), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14496), 1, + ACTIONS(14508), 1, anon_sym_DOLLAR_LPAREN, - STATE(887), 2, + STATE(1366), 2, sym_expansion, sym_command_substitution, - [310886] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14500), 1, - anon_sym_COMMA, - ACTIONS(14502), 1, - aux_sym_heredoc_redirect_token1, - STATE(4651), 1, - sym__c_terminator, - STATE(6334), 1, - aux_sym__for_body_repeat1, - ACTIONS(14498), 2, - anon_sym_SEMI, - anon_sym_AMP, - [310906] = 6, + [310888] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1085), 1, + ACTIONS(8968), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1087), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, + ACTIONS(8972), 1, anon_sym_BQUOTE, - ACTIONS(14504), 1, + ACTIONS(8974), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14510), 1, anon_sym_DOLLAR_LPAREN, - STATE(2586), 2, + STATE(2439), 2, sym_expansion, sym_command_substitution, - [310926] = 6, + [310908] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8970), 1, + ACTIONS(721), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8972), 1, + ACTIONS(725), 1, anon_sym_BQUOTE, - ACTIONS(8974), 1, + ACTIONS(727), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14506), 1, + ACTIONS(14512), 1, anon_sym_DOLLAR_LPAREN, - STATE(1530), 2, + STATE(921), 2, sym_expansion, sym_command_substitution, - [310946] = 6, + [310928] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1157), 1, + ACTIONS(9394), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1163), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3060), 1, + ACTIONS(9396), 1, anon_sym_BQUOTE, - ACTIONS(14508), 1, + ACTIONS(9398), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14514), 1, anon_sym_DOLLAR_LPAREN, - STATE(2276), 2, + STATE(1364), 2, sym_expansion, sym_command_substitution, - [310966] = 6, + [310948] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9072), 1, + ACTIONS(371), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9074), 1, + ACTIONS(375), 1, anon_sym_BQUOTE, - ACTIONS(9076), 1, + ACTIONS(377), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14510), 1, + ACTIONS(14516), 1, anon_sym_DOLLAR_LPAREN, - STATE(1617), 2, + STATE(1092), 2, sym_expansion, sym_command_substitution, - [310986] = 3, + [310968] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14478), 1, + anon_sym_COMMA, + ACTIONS(14520), 1, + aux_sym_heredoc_redirect_token1, + STATE(4249), 1, + sym__c_terminator, + STATE(6359), 1, + aux_sym__for_body_repeat1, + ACTIONS(14518), 2, + anon_sym_SEMI, + anon_sym_AMP, + [310988] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14512), 1, + ACTIONS(14522), 1, anon_sym_RBRACE3, - ACTIONS(14437), 5, + ACTIONS(14441), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [311000] = 6, + [311002] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9320), 1, + ACTIONS(9104), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9322), 1, + ACTIONS(9106), 1, anon_sym_BQUOTE, - ACTIONS(9324), 1, + ACTIONS(9108), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14514), 1, + ACTIONS(14524), 1, anon_sym_DOLLAR_LPAREN, - STATE(4561), 2, + STATE(1685), 2, sym_expansion, sym_command_substitution, - [311020] = 6, + [311022] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(4834), 1, + ACTIONS(9184), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4838), 1, + ACTIONS(9186), 1, anon_sym_BQUOTE, - ACTIONS(4840), 1, + ACTIONS(9188), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14516), 1, + ACTIONS(14526), 1, anon_sym_DOLLAR_LPAREN, - STATE(2663), 2, + STATE(1742), 2, sym_expansion, sym_command_substitution, - [311040] = 6, + [311042] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9916), 1, + ACTIONS(14528), 1, + anon_sym_PIPE, + ACTIONS(14530), 1, + anon_sym_RPAREN, + STATE(6463), 1, + aux_sym_concatenation_repeat1, + STATE(6631), 1, + aux_sym_case_item_repeat1, + ACTIONS(14532), 2, + sym__concat, + aux_sym_concatenation_token1, + [311062] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4681), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9918), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9920), 1, + ACTIONS(4685), 1, anon_sym_BQUOTE, - ACTIONS(9922), 1, + ACTIONS(4687), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3295), 2, + ACTIONS(14534), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2724), 2, sym_expansion, sym_command_substitution, - [311060] = 3, + [311082] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14518), 1, - anon_sym_RBRACE3, - ACTIONS(14437), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, + ACTIONS(14536), 1, anon_sym_SLASH, - anon_sym_PERCENT, - [311074] = 6, + ACTIONS(14538), 1, + anon_sym_RBRACE3, + ACTIONS(14540), 1, + sym__expansion_word, + STATE(6420), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(14460), 2, + sym__concat, + aux_sym_concatenation_token1, + [311102] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4942), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4946), 1, + anon_sym_BQUOTE, + ACTIONS(4948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14542), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2595), 2, + sym_expansion, + sym_command_substitution, + [311122] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14500), 1, + ACTIONS(14478), 1, anon_sym_COMMA, - ACTIONS(14522), 1, + ACTIONS(14546), 1, aux_sym_heredoc_redirect_token1, - STATE(4646), 1, + STATE(4609), 1, sym__c_terminator, - STATE(6463), 1, + STATE(6393), 1, aux_sym__for_body_repeat1, - ACTIONS(14520), 2, + ACTIONS(14544), 2, anon_sym_SEMI, anon_sym_AMP, - [311094] = 6, + [311142] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(7972), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7976), 1, - anon_sym_BQUOTE, - ACTIONS(7978), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(14524), 1, - anon_sym_DOLLAR_LPAREN, - STATE(4320), 2, - sym_expansion, - sym_command_substitution, - [311114] = 6, + ACTIONS(14488), 1, + anon_sym_RBRACE3, + ACTIONS(14447), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [311156] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8434), 1, + ACTIONS(12263), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8436), 1, + ACTIONS(12265), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12267), 1, anon_sym_BQUOTE, - ACTIONS(8438), 1, + ACTIONS(12269), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14526), 1, - anon_sym_DOLLAR_LPAREN, - STATE(1236), 2, + STATE(2998), 2, sym_expansion, sym_command_substitution, - [311134] = 6, + [311176] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(4961), 1, + ACTIONS(10344), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4965), 1, + ACTIONS(10346), 1, anon_sym_BQUOTE, - ACTIONS(4967), 1, + ACTIONS(10348), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14528), 1, + ACTIONS(14548), 1, anon_sym_DOLLAR_LPAREN, - STATE(2606), 2, + STATE(5688), 2, sym_expansion, sym_command_substitution, - [311154] = 6, + [311196] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1274), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1272), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + sym__special_character, + [311210] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9810), 1, + ACTIONS(7972), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9812), 1, + ACTIONS(7976), 1, anon_sym_BQUOTE, - ACTIONS(9814), 1, + ACTIONS(7978), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14530), 1, + ACTIONS(14550), 1, anon_sym_DOLLAR_LPAREN, - STATE(4572), 2, + STATE(4386), 2, sym_expansion, sym_command_substitution, - [311174] = 6, + [311230] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(10022), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8242), 1, + ACTIONS(10024), 1, anon_sym_BQUOTE, - ACTIONS(8244), 1, + ACTIONS(10026), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14532), 1, + ACTIONS(14552), 1, anon_sym_DOLLAR_LPAREN, - STATE(1472), 2, + STATE(4353), 2, sym_expansion, sym_command_substitution, - [311194] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14500), 1, - anon_sym_COMMA, - ACTIONS(14536), 1, - aux_sym_heredoc_redirect_token1, - STATE(4700), 1, - sym__c_terminator, - STATE(6463), 1, - aux_sym__for_body_repeat1, - ACTIONS(14534), 2, - anon_sym_SEMI, - anon_sym_AMP, - [311214] = 3, + [311250] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14512), 1, + ACTIONS(14488), 1, anon_sym_RBRACE3, - ACTIONS(14437), 5, + ACTIONS(14447), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [311228] = 6, + [311264] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9644), 1, + ACTIONS(14528), 1, + anon_sym_PIPE, + ACTIONS(14554), 1, + anon_sym_RPAREN, + STATE(6463), 1, + aux_sym_concatenation_repeat1, + STATE(6624), 1, + aux_sym_case_item_repeat1, + ACTIONS(14532), 2, + sym__concat, + aux_sym_concatenation_token1, + [311284] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11761), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9646), 1, + ACTIONS(11763), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11765), 1, anon_sym_BQUOTE, - ACTIONS(9648), 1, + ACTIONS(11767), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14538), 1, - anon_sym_DOLLAR_LPAREN, - STATE(4386), 2, + STATE(3293), 2, sym_expansion, sym_command_substitution, - [311248] = 6, + [311304] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14488), 1, + ACTIONS(14556), 1, + anon_sym_RBRACE3, + ACTIONS(14441), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [311318] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14504), 1, anon_sym_elif, - ACTIONS(14490), 1, + ACTIONS(14506), 1, anon_sym_else, - ACTIONS(14540), 1, + ACTIONS(14558), 1, anon_sym_fi, - STATE(7480), 1, + STATE(7152), 1, sym_else_clause, - STATE(6400), 2, + STATE(6422), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [311268] = 6, + [311338] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(125), 1, + ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(129), 1, - anon_sym_BQUOTE, - ACTIONS(131), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14542), 1, + ACTIONS(3119), 1, + anon_sym_BQUOTE, + ACTIONS(14560), 1, anon_sym_DOLLAR_LPAREN, - STATE(484), 2, + STATE(2294), 2, sym_expansion, sym_command_substitution, - [311288] = 6, + [311358] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(7234), 1, + ACTIONS(4821), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7236), 1, + ACTIONS(4825), 1, anon_sym_BQUOTE, - ACTIONS(7238), 1, + ACTIONS(4827), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14544), 1, + ACTIONS(14562), 1, anon_sym_DOLLAR_LPAREN, - STATE(6519), 2, + STATE(5362), 2, sym_expansion, sym_command_substitution, - [311308] = 6, + [311378] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(8192), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8196), 1, - anon_sym_BQUOTE, - ACTIONS(8198), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(14546), 1, - anon_sym_DOLLAR_LPAREN, - STATE(1668), 2, - sym_expansion, - sym_command_substitution, - [311328] = 3, + ACTIONS(14564), 1, + anon_sym_RBRACE3, + ACTIONS(14447), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [311392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 2, + ACTIONS(14568), 2, sym_regex, aux_sym__expansion_regex_token1, - ACTIONS(1352), 4, + ACTIONS(14566), 4, anon_sym_RPAREN, anon_sym_DQUOTE, sym_raw_string, anon_sym_RBRACE3, - [311342] = 6, + [311406] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(5275), 1, + ACTIONS(8004), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5279), 1, + ACTIONS(8006), 1, anon_sym_BQUOTE, - ACTIONS(5281), 1, + ACTIONS(8008), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14548), 1, + ACTIONS(14570), 1, anon_sym_DOLLAR_LPAREN, - STATE(5489), 2, + STATE(1315), 2, sym_expansion, sym_command_substitution, - [311362] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4781), 1, + [311426] = 6, + ACTIONS(61), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4785), 1, + ACTIONS(65), 1, anon_sym_BQUOTE, - ACTIONS(4787), 1, + ACTIONS(67), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14550), 1, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14572), 1, anon_sym_DOLLAR_LPAREN, - STATE(5399), 2, + STATE(1155), 2, sym_expansion, sym_command_substitution, - [311382] = 6, + [311446] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8154), 1, + ACTIONS(14504), 1, + anon_sym_elif, + ACTIONS(14506), 1, + anon_sym_else, + ACTIONS(14574), 1, + anon_sym_fi, + STATE(6795), 1, + sym_else_clause, + STATE(6422), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [311466] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8587), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8158), 1, + ACTIONS(8591), 1, anon_sym_BQUOTE, - ACTIONS(8160), 1, + ACTIONS(8593), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14552), 1, + ACTIONS(14576), 1, anon_sym_DOLLAR_LPAREN, - STATE(4595), 2, + STATE(5178), 2, sym_expansion, sym_command_substitution, - [311402] = 6, + [311486] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(10944), 1, + ACTIONS(14578), 1, + anon_sym_RBRACE3, + ACTIONS(14447), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [311500] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9486), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10946), 1, + ACTIONS(9488), 1, anon_sym_BQUOTE, - ACTIONS(10948), 1, + ACTIONS(9490), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14554), 1, + ACTIONS(14580), 1, anon_sym_DOLLAR_LPAREN, - STATE(1875), 2, + STATE(1818), 2, sym_expansion, sym_command_substitution, - [311422] = 6, + [311520] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(4165), 1, + ACTIONS(9872), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4169), 1, + ACTIONS(9874), 1, anon_sym_BQUOTE, - ACTIONS(4171), 1, + ACTIONS(9876), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14556), 1, + ACTIONS(14582), 1, anon_sym_DOLLAR_LPAREN, - STATE(2444), 2, + STATE(1899), 2, sym_expansion, sym_command_substitution, - [311442] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14512), 1, - anon_sym_RBRACE3, - ACTIONS(14437), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [311456] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14500), 1, - anon_sym_COMMA, - ACTIONS(14560), 1, - aux_sym_heredoc_redirect_token1, - STATE(4742), 1, - sym__c_terminator, - STATE(6280), 1, - aux_sym__for_body_repeat1, - ACTIONS(14558), 2, - anon_sym_SEMI, - anon_sym_AMP, - [311476] = 3, + [311540] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14562), 1, + ACTIONS(14584), 1, anon_sym_RBRACE3, - ACTIONS(14449), 5, + ACTIONS(14447), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [311490] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14564), 1, - anon_sym_PIPE, - ACTIONS(14566), 1, - anon_sym_RPAREN, - STATE(6439), 1, - aux_sym_concatenation_repeat1, - STATE(6570), 1, - aux_sym_case_item_repeat1, - ACTIONS(14568), 2, - sym__concat, - aux_sym_concatenation_token1, - [311510] = 6, + [311554] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14564), 1, - anon_sym_PIPE, - ACTIONS(14570), 1, - anon_sym_RPAREN, - STATE(6439), 1, - aux_sym_concatenation_repeat1, - STATE(6710), 1, - aux_sym_case_item_repeat1, - ACTIONS(14568), 2, - sym__concat, - aux_sym_concatenation_token1, - [311530] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1263), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1261), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - sym__special_character, - [311544] = 6, + ACTIONS(9356), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9358), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9360), 1, + anon_sym_BQUOTE, + ACTIONS(9362), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3245), 2, + sym_expansion, + sym_command_substitution, + [311574] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9018), 1, + ACTIONS(9772), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9020), 1, + ACTIONS(9774), 1, anon_sym_BQUOTE, - ACTIONS(9022), 1, + ACTIONS(9776), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14572), 1, + ACTIONS(14586), 1, anon_sym_DOLLAR_LPAREN, - STATE(1384), 2, + STATE(4553), 2, sym_expansion, sym_command_substitution, - [311564] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 2, - sym_regex, - aux_sym__expansion_regex_token1, - ACTIONS(1340), 4, - anon_sym_RPAREN, - anon_sym_DQUOTE, - sym_raw_string, - anon_sym_RBRACE3, - [311578] = 6, + [311594] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(379), 1, + ACTIONS(2667), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(385), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5809), 1, + ACTIONS(2671), 1, anon_sym_BQUOTE, - ACTIONS(14574), 1, + ACTIONS(2673), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14588), 1, anon_sym_DOLLAR_LPAREN, - STATE(2697), 2, + STATE(2314), 2, sym_expansion, sym_command_substitution, - [311598] = 6, + [311614] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(205), 1, + ACTIONS(8142), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(209), 1, + ACTIONS(8146), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(8148), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14576), 1, + ACTIONS(14590), 1, anon_sym_DOLLAR_LPAREN, - STATE(505), 2, + STATE(5484), 2, sym_expansion, sym_command_substitution, - [311618] = 6, + [311634] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9248), 1, + ACTIONS(8846), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9250), 1, + ACTIONS(8848), 1, anon_sym_BQUOTE, - ACTIONS(9252), 1, + ACTIONS(8850), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14578), 1, + ACTIONS(14592), 1, anon_sym_DOLLAR_LPAREN, - STATE(1248), 2, + STATE(2194), 2, sym_expansion, sym_command_substitution, - [311638] = 6, + [311654] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14564), 1, - anon_sym_PIPE, - ACTIONS(14580), 1, - anon_sym_RPAREN, - STATE(6373), 1, - aux_sym_concatenation_repeat1, - STATE(6707), 1, - aux_sym_case_item_repeat1, - ACTIONS(14568), 2, - sym__concat, - aux_sym_concatenation_token1, - [311658] = 6, + ACTIONS(14594), 1, + anon_sym_RBRACE3, + ACTIONS(14447), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [311668] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14330), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(14332), 1, + anon_sym_BQUOTE, + ACTIONS(14334), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14379), 1, + anon_sym_DOLLAR_LBRACE, + STATE(6234), 2, + sym_expansion, + sym_command_substitution, + [311688] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8282), 1, + ACTIONS(9016), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8286), 1, + ACTIONS(9018), 1, anon_sym_BQUOTE, - ACTIONS(8288), 1, + ACTIONS(9020), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14582), 1, + ACTIONS(14596), 1, anon_sym_DOLLAR_LPAREN, - STATE(1449), 2, + STATE(3305), 2, sym_expansion, sym_command_substitution, - [311678] = 6, + [311708] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14564), 1, + ACTIONS(14528), 1, anon_sym_PIPE, - ACTIONS(14584), 1, + ACTIONS(14598), 1, anon_sym_RPAREN, - STATE(6373), 1, + STATE(6388), 1, aux_sym_concatenation_repeat1, - STATE(6590), 1, + STATE(6682), 1, aux_sym_case_item_repeat1, - ACTIONS(14568), 2, + ACTIONS(14532), 2, sym__concat, aux_sym_concatenation_token1, - [311698] = 6, + [311728] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8526), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8530), 1, + ACTIONS(8250), 1, anon_sym_BQUOTE, - ACTIONS(8532), 1, + ACTIONS(8252), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14586), 1, + ACTIONS(14600), 1, anon_sym_DOLLAR_LPAREN, - STATE(2510), 2, + STATE(1300), 2, sym_expansion, sym_command_substitution, - [311718] = 6, + [311748] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14588), 1, - anon_sym_SLASH, - ACTIONS(14592), 1, - anon_sym_RBRACE3, - ACTIONS(14594), 1, - sym__expansion_word, - STATE(6475), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14590), 2, - sym__concat, - aux_sym_concatenation_token1, - [311738] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(8952), 1, + ACTIONS(12143), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8954), 1, + ACTIONS(12145), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12147), 1, anon_sym_BQUOTE, - ACTIONS(8956), 1, + ACTIONS(12149), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14596), 1, - anon_sym_DOLLAR_LPAREN, - STATE(3175), 2, + STATE(3204), 2, sym_expansion, sym_command_substitution, - [311758] = 6, + [311768] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9132), 1, + ACTIONS(8428), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9136), 1, + ACTIONS(8432), 1, anon_sym_BQUOTE, - ACTIONS(9138), 1, + ACTIONS(8434), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14598), 1, + ACTIONS(14602), 1, anon_sym_DOLLAR_LPAREN, - STATE(2399), 2, + STATE(1579), 2, sym_expansion, sym_command_substitution, - [311778] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1322), 2, - sym_regex, - aux_sym__expansion_regex_token1, - ACTIONS(1320), 4, - anon_sym_RPAREN, - anon_sym_DQUOTE, - sym_raw_string, - anon_sym_RBRACE3, - [311792] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14564), 1, - anon_sym_PIPE, - ACTIONS(14600), 1, - anon_sym_RPAREN, - STATE(6373), 1, - aux_sym_concatenation_repeat1, - STATE(6652), 1, - aux_sym_case_item_repeat1, - ACTIONS(14568), 2, - sym__concat, - aux_sym_concatenation_token1, - [311812] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14500), 1, - anon_sym_COMMA, - ACTIONS(14604), 1, - aux_sym_heredoc_redirect_token1, - STATE(4236), 1, - sym__c_terminator, - STATE(6463), 1, - aux_sym__for_body_repeat1, - ACTIONS(14602), 2, - anon_sym_SEMI, - anon_sym_AMP, - [311832] = 6, + [311788] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(4647), 1, + ACTIONS(8220), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4651), 1, + ACTIONS(8222), 1, anon_sym_BQUOTE, - ACTIONS(4653), 1, + ACTIONS(8224), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14606), 1, + ACTIONS(14604), 1, anon_sym_DOLLAR_LPAREN, - STATE(2583), 2, + STATE(1618), 2, sym_expansion, sym_command_substitution, - [311852] = 6, + [311808] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8352), 1, + ACTIONS(5131), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8354), 1, + ACTIONS(5135), 1, anon_sym_BQUOTE, - ACTIONS(8356), 1, + ACTIONS(5137), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14608), 1, + ACTIONS(14606), 1, anon_sym_DOLLAR_LPAREN, - STATE(1538), 2, + STATE(5458), 2, sym_expansion, sym_command_substitution, - [311872] = 6, + [311828] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14528), 1, + anon_sym_PIPE, + ACTIONS(14608), 1, + anon_sym_RPAREN, + STATE(6463), 1, + aux_sym_concatenation_repeat1, + STATE(6556), 1, + aux_sym_case_item_repeat1, + ACTIONS(14532), 2, + sym__concat, + aux_sym_concatenation_token1, + [311848] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14478), 1, + anon_sym_COMMA, + ACTIONS(14612), 1, + aux_sym_heredoc_redirect_token1, + STATE(4623), 1, + sym__c_terminator, + STATE(6393), 1, + aux_sym__for_body_repeat1, + ACTIONS(14610), 2, + anon_sym_SEMI, + anon_sym_AMP, + [311868] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(5329), 1, + ACTIONS(8936), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5333), 1, + ACTIONS(8938), 1, anon_sym_BQUOTE, - ACTIONS(5335), 1, + ACTIONS(8940), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14610), 1, + ACTIONS(14614), 1, anon_sym_DOLLAR_LPAREN, - STATE(5470), 2, + STATE(908), 2, sym_expansion, sym_command_substitution, - [311892] = 6, + [311888] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(11820), 1, + ACTIONS(1165), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(11822), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11824), 1, - anon_sym_BQUOTE, - ACTIONS(11826), 1, + ACTIONS(1167), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3245), 2, - sym_expansion, - sym_command_substitution, - [311912] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9996), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9998), 1, + ACTIONS(3598), 1, anon_sym_BQUOTE, - ACTIONS(10000), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(14612), 1, + ACTIONS(14616), 1, anon_sym_DOLLAR_LPAREN, - STATE(1479), 2, + STATE(2654), 2, sym_expansion, sym_command_substitution, - [311932] = 6, + [311908] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(8320), 1, + ACTIONS(14564), 1, + anon_sym_RBRACE3, + ACTIONS(14447), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [311922] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9658), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8324), 1, + ACTIONS(9660), 1, anon_sym_BQUOTE, - ACTIONS(8326), 1, + ACTIONS(9662), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14614), 1, + ACTIONS(14618), 1, anon_sym_DOLLAR_LPAREN, - STATE(5435), 2, + STATE(1488), 2, sym_expansion, sym_command_substitution, - [311952] = 4, - ACTIONS(71), 1, - sym_comment, - STATE(6373), 1, - aux_sym_concatenation_repeat1, - ACTIONS(14568), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1263), 3, - anon_sym_PIPE, - anon_sym_RPAREN, - sym__special_character, - [311968] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14488), 1, - anon_sym_elif, - ACTIONS(14490), 1, - anon_sym_else, - ACTIONS(14616), 1, - anon_sym_fi, - STATE(7012), 1, - sym_else_clause, - STATE(6400), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [311988] = 6, + [311942] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14564), 1, + ACTIONS(14528), 1, anon_sym_PIPE, - ACTIONS(14618), 1, + ACTIONS(14620), 1, anon_sym_RPAREN, - STATE(6439), 1, + STATE(6463), 1, aux_sym_concatenation_repeat1, - STATE(6711), 1, + STATE(6573), 1, aux_sym_case_item_repeat1, - ACTIONS(14568), 2, + ACTIONS(14532), 2, sym__concat, aux_sym_concatenation_token1, - [312008] = 6, + [311962] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8386), 1, + ACTIONS(8992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8390), 1, + ACTIONS(8994), 1, anon_sym_BQUOTE, - ACTIONS(8392), 1, + ACTIONS(8996), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14620), 1, + ACTIONS(14622), 1, anon_sym_DOLLAR_LPAREN, - STATE(4405), 2, + STATE(4709), 2, sym_expansion, sym_command_substitution, - [312028] = 6, - ACTIONS(3), 1, + [311982] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(14500), 1, - anon_sym_COMMA, + ACTIONS(14528), 1, + anon_sym_PIPE, ACTIONS(14624), 1, - aux_sym_heredoc_redirect_token1, - STATE(4803), 1, - sym__c_terminator, - STATE(6286), 1, - aux_sym__for_body_repeat1, - ACTIONS(14622), 2, - anon_sym_SEMI, - anon_sym_AMP, - [312048] = 6, + anon_sym_RPAREN, + STATE(6388), 1, + aux_sym_concatenation_repeat1, + STATE(6575), 1, + aux_sym_case_item_repeat1, + ACTIONS(14532), 2, + sym__concat, + aux_sym_concatenation_token1, + [312002] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14488), 1, + ACTIONS(14504), 1, anon_sym_elif, - ACTIONS(14490), 1, + ACTIONS(14506), 1, anon_sym_else, ACTIONS(14626), 1, anon_sym_fi, - STATE(6921), 1, + STATE(7342), 1, sym_else_clause, - STATE(6400), 2, + STATE(6422), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [312068] = 6, + [312022] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8010), 1, + ACTIONS(4615), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8014), 1, + ACTIONS(4619), 1, anon_sym_BQUOTE, - ACTIONS(8016), 1, + ACTIONS(4621), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(14628), 1, anon_sym_DOLLAR_LPAREN, - STATE(3529), 2, + STATE(2580), 2, sym_expansion, sym_command_substitution, - [312088] = 6, + [312042] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8858), 1, + ACTIONS(8828), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8860), 1, + ACTIONS(8830), 1, anon_sym_BQUOTE, - ACTIONS(8862), 1, + ACTIONS(8832), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(14630), 1, anon_sym_DOLLAR_LPAREN, - STATE(2111), 2, + STATE(1996), 2, sym_expansion, sym_command_substitution, - [312108] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14500), 1, - anon_sym_COMMA, - ACTIONS(14634), 1, - aux_sym_heredoc_redirect_token1, - STATE(4741), 1, - sym__c_terminator, - STATE(6463), 1, - aux_sym__for_body_repeat1, - ACTIONS(14632), 2, - anon_sym_SEMI, - anon_sym_AMP, - [312128] = 6, + [312062] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(1057), 1, + ACTIONS(8038), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1061), 1, + ACTIONS(8042), 1, anon_sym_BQUOTE, - ACTIONS(1063), 1, + ACTIONS(8044), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14636), 1, + ACTIONS(14632), 1, anon_sym_DOLLAR_LPAREN, - STATE(1971), 2, + STATE(4280), 2, sym_expansion, sym_command_substitution, - [312148] = 6, + [312082] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8585), 1, + ACTIONS(463), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8589), 1, + ACTIONS(467), 1, anon_sym_BQUOTE, - ACTIONS(8591), 1, + ACTIONS(469), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14638), 1, + ACTIONS(14634), 1, anon_sym_DOLLAR_LPAREN, - STATE(5151), 2, + STATE(849), 2, sym_expansion, sym_command_substitution, - [312168] = 6, + [312102] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14488), 1, - anon_sym_elif, - ACTIONS(14490), 1, - anon_sym_else, - ACTIONS(14640), 1, - anon_sym_fi, - STATE(7004), 1, - sym_else_clause, - STATE(6400), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [312188] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14564), 1, + ACTIONS(14528), 1, anon_sym_PIPE, - ACTIONS(14642), 1, + ACTIONS(14636), 1, anon_sym_RPAREN, - STATE(6439), 1, + STATE(6388), 1, aux_sym_concatenation_repeat1, - STATE(6597), 1, + STATE(6562), 1, aux_sym_case_item_repeat1, - ACTIONS(14568), 2, + ACTIONS(14532), 2, sym__concat, aux_sym_concatenation_token1, - [312208] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14488), 1, - anon_sym_elif, - ACTIONS(14490), 1, - anon_sym_else, - ACTIONS(14644), 1, - anon_sym_fi, - STATE(6862), 1, - sym_else_clause, - STATE(6400), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [312228] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14488), 1, - anon_sym_elif, - ACTIONS(14490), 1, - anon_sym_else, - ACTIONS(14646), 1, - anon_sym_fi, - STATE(7416), 1, - sym_else_clause, - STATE(6400), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [312248] = 6, + [312122] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9948), 1, + ACTIONS(8352), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9950), 1, + ACTIONS(8356), 1, anon_sym_BQUOTE, - ACTIONS(9952), 1, + ACTIONS(8358), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14648), 1, + ACTIONS(14638), 1, anon_sym_DOLLAR_LPAREN, - STATE(4388), 2, + STATE(3491), 2, sym_expansion, sym_command_substitution, - [312268] = 6, + [312142] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14478), 1, + anon_sym_COMMA, + ACTIONS(14642), 1, + aux_sym_heredoc_redirect_token1, + STATE(4736), 1, + sym__c_terminator, + STATE(6393), 1, + aux_sym__for_body_repeat1, + ACTIONS(14640), 2, + anon_sym_SEMI, + anon_sym_AMP, + [312162] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(2650), 1, + ACTIONS(1057), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2654), 1, + ACTIONS(1061), 1, anon_sym_BQUOTE, - ACTIONS(2656), 1, + ACTIONS(1063), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14650), 1, + ACTIONS(14644), 1, anon_sym_DOLLAR_LPAREN, - STATE(2333), 2, + STATE(1982), 2, sym_expansion, sym_command_substitution, - [312288] = 6, + [312182] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8074), 1, + ACTIONS(8900), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8076), 1, + ACTIONS(8902), 1, anon_sym_BQUOTE, - ACTIONS(8078), 1, + ACTIONS(8904), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14652), 1, + ACTIONS(14646), 1, anon_sym_DOLLAR_LPAREN, - STATE(1689), 2, + STATE(1763), 2, sym_expansion, sym_command_substitution, - [312308] = 3, + [312202] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14654), 1, + STATE(6463), 1, + aux_sym_concatenation_repeat1, + ACTIONS(14532), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1274), 3, + anon_sym_PIPE, + anon_sym_RPAREN, + sym__special_character, + [312218] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14648), 1, anon_sym_RBRACE3, - ACTIONS(14437), 5, + ACTIONS(14441), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [312322] = 6, + [312232] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(5419), 1, + ACTIONS(9522), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5423), 1, + ACTIONS(9524), 1, anon_sym_BQUOTE, - ACTIONS(5425), 1, + ACTIONS(9526), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14656), 1, + ACTIONS(14650), 1, anon_sym_DOLLAR_LPAREN, - STATE(5521), 2, + STATE(4558), 2, sym_expansion, sym_command_substitution, - [312342] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14658), 1, - anon_sym_SLASH, - ACTIONS(14660), 1, - anon_sym_RBRACE3, - ACTIONS(14662), 1, - sym__expansion_word, - STATE(6475), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14590), 2, - sym__concat, - aux_sym_concatenation_token1, - [312362] = 6, + [312252] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9296), 1, + ACTIONS(9154), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9298), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9300), 1, + ACTIONS(9156), 1, anon_sym_BQUOTE, - ACTIONS(9302), 1, + ACTIONS(9158), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2852), 2, + ACTIONS(14652), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1116), 2, sym_expansion, sym_command_substitution, - [312382] = 6, + [312272] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9000), 1, + ACTIONS(8876), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9002), 1, + ACTIONS(8878), 1, anon_sym_BQUOTE, - ACTIONS(9004), 1, + ACTIONS(8880), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14664), 1, + ACTIONS(14654), 1, anon_sym_DOLLAR_LPAREN, - STATE(2257), 2, + STATE(1242), 2, sym_expansion, sym_command_substitution, - [312402] = 6, + [312292] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(4516), 1, + ACTIONS(5446), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4520), 1, + ACTIONS(5450), 1, anon_sym_BQUOTE, - ACTIONS(4522), 1, + ACTIONS(5452), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14666), 1, + ACTIONS(14656), 1, anon_sym_DOLLAR_LPAREN, - STATE(2576), 2, + STATE(5499), 2, sym_expansion, sym_command_substitution, - [312422] = 6, + [312312] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9206), 1, + ACTIONS(125), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9208), 1, + ACTIONS(129), 1, anon_sym_BQUOTE, - ACTIONS(9210), 1, + ACTIONS(131), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14668), 1, + ACTIONS(14658), 1, anon_sym_DOLLAR_LPAREN, - STATE(1300), 2, + STATE(484), 2, sym_expansion, sym_command_substitution, - [312442] = 6, + [312332] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8914), 1, + ACTIONS(7208), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8916), 1, + ACTIONS(7210), 1, anon_sym_BQUOTE, - ACTIONS(8918), 1, + ACTIONS(7212), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14670), 1, + ACTIONS(14660), 1, anon_sym_DOLLAR_LPAREN, - STATE(1888), 2, + STATE(6540), 2, sym_expansion, sym_command_substitution, - [312462] = 6, + [312352] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8828), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8830), 1, - anon_sym_BQUOTE, - ACTIONS(8832), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(14672), 1, - anon_sym_DOLLAR_LPAREN, - STATE(4862), 2, - sym_expansion, - sym_command_substitution, - [312482] = 6, + ACTIONS(14504), 1, + anon_sym_elif, + ACTIONS(14506), 1, + anon_sym_else, + ACTIONS(14662), 1, + anon_sym_fi, + STATE(7189), 1, + sym_else_clause, + STATE(6422), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [312372] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14674), 1, - anon_sym_SLASH, - ACTIONS(14676), 1, + ACTIONS(14504), 1, + anon_sym_elif, + ACTIONS(14506), 1, + anon_sym_else, + ACTIONS(14664), 1, + anon_sym_fi, + STATE(7323), 1, + sym_else_clause, + STATE(6422), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [312392] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14666), 1, anon_sym_RBRACE3, - ACTIONS(14678), 1, - sym__expansion_word, - STATE(6475), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14590), 2, - sym__concat, - aux_sym_concatenation_token1, - [312502] = 6, + ACTIONS(14441), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [312406] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14478), 1, + anon_sym_COMMA, + ACTIONS(14670), 1, + aux_sym_heredoc_redirect_token1, + STATE(4687), 1, + sym__c_terminator, + STATE(6319), 1, + aux_sym__for_body_repeat1, + ACTIONS(14668), 2, + anon_sym_SEMI, + anon_sym_AMP, + [312426] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14478), 1, + anon_sym_COMMA, + ACTIONS(14674), 1, + aux_sym_heredoc_redirect_token1, + STATE(4813), 1, + sym__c_terminator, + STATE(6334), 1, + aux_sym__for_body_repeat1, + ACTIONS(14672), 2, + anon_sym_SEMI, + anon_sym_AMP, + [312446] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(9102), 1, + ACTIONS(9836), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9104), 1, + ACTIONS(9838), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9840), 1, anon_sym_BQUOTE, - ACTIONS(9106), 1, + ACTIONS(9842), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14680), 1, - anon_sym_DOLLAR_LPAREN, - STATE(984), 2, + STATE(3225), 2, sym_expansion, sym_command_substitution, - [312522] = 6, + [312466] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(721), 1, + ACTIONS(8180), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(725), 1, + ACTIONS(8184), 1, anon_sym_BQUOTE, - ACTIONS(727), 1, + ACTIONS(8186), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14682), 1, + ACTIONS(14676), 1, anon_sym_DOLLAR_LPAREN, - STATE(964), 2, + STATE(4561), 2, sym_expansion, sym_command_substitution, - [312542] = 6, + [312486] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12241), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12243), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12245), 1, - anon_sym_BQUOTE, - ACTIONS(12247), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(3021), 2, - sym_expansion, - sym_command_substitution, - [312562] = 6, + ACTIONS(14564), 1, + anon_sym_RBRACE3, + ACTIONS(14447), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [312500] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8934), 1, + ACTIONS(8390), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8936), 1, + ACTIONS(8394), 1, anon_sym_BQUOTE, - ACTIONS(8938), 1, + ACTIONS(8396), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14684), 1, + ACTIONS(14678), 1, anon_sym_DOLLAR_LPAREN, - STATE(1783), 2, + STATE(2551), 2, sym_expansion, sym_command_substitution, - [312582] = 6, - ACTIONS(61), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(65), 1, - anon_sym_BQUOTE, - ACTIONS(67), 1, - anon_sym_DOLLAR_BQUOTE, + [312520] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14686), 1, - anon_sym_DOLLAR_LPAREN, - STATE(1113), 2, - sym_expansion, - sym_command_substitution, - [312602] = 6, + ACTIONS(14680), 1, + anon_sym_RBRACE3, + ACTIONS(14441), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [312534] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(328), 1, + ACTIONS(8104), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(332), 1, + ACTIONS(8108), 1, anon_sym_BQUOTE, - ACTIONS(334), 1, + ACTIONS(8110), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14688), 1, + ACTIONS(14682), 1, anon_sym_DOLLAR_LPAREN, - STATE(1058), 2, + STATE(1570), 2, sym_expansion, sym_command_substitution, - [312622] = 6, + [312554] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(12179), 1, + ACTIONS(5295), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12181), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12183), 1, + ACTIONS(5299), 1, anon_sym_BQUOTE, - ACTIONS(12185), 1, + ACTIONS(5301), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3282), 2, + ACTIONS(14684), 1, + anon_sym_DOLLAR_LPAREN, + STATE(5452), 2, sym_expansion, sym_command_substitution, - [312642] = 3, + [312574] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14504), 1, + anon_sym_elif, + ACTIONS(14506), 1, + anon_sym_else, + ACTIONS(14686), 1, + anon_sym_fi, + STATE(7383), 1, + sym_else_clause, + STATE(6422), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [312594] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14504), 1, + anon_sym_elif, + ACTIONS(14506), 1, + anon_sym_else, + ACTIONS(14688), 1, + anon_sym_fi, + STATE(6880), 1, + sym_else_clause, + STATE(6422), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [312614] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14478), 1, + anon_sym_COMMA, + ACTIONS(14692), 1, + aux_sym_heredoc_redirect_token1, + STATE(4236), 1, + sym__c_terminator, + STATE(6393), 1, + aux_sym__for_body_repeat1, + ACTIONS(14690), 2, + anon_sym_SEMI, + anon_sym_AMP, + [312634] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14694), 1, + anon_sym_RBRACE3, + ACTIONS(14447), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [312648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14692), 2, + ACTIONS(1326), 2, sym_regex, aux_sym__expansion_regex_token1, - ACTIONS(14690), 4, + ACTIONS(1324), 4, anon_sym_RPAREN, anon_sym_DQUOTE, sym_raw_string, anon_sym_RBRACE3, - [312656] = 6, + [312662] = 6, ACTIONS(71), 1, sym_comment, ACTIONS(9554), 1, @@ -335253,1898 +335557,1920 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(9558), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14694), 1, + ACTIONS(14696), 1, anon_sym_DOLLAR_LPAREN, - STATE(5628), 2, + STATE(4383), 2, sym_expansion, sym_command_substitution, - [312676] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14488), 1, - anon_sym_elif, - ACTIONS(14490), 1, - anon_sym_else, - ACTIONS(14696), 1, - anon_sym_fi, - STATE(7417), 1, - sym_else_clause, - STATE(6400), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [312696] = 6, + [312682] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14564), 1, - anon_sym_PIPE, + ACTIONS(9714), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9716), 1, + anon_sym_BQUOTE, + ACTIONS(9718), 1, + anon_sym_DOLLAR_BQUOTE, ACTIONS(14698), 1, - anon_sym_RPAREN, - STATE(6373), 1, - aux_sym_concatenation_repeat1, - STATE(6598), 1, - aux_sym_case_item_repeat1, - ACTIONS(14568), 2, - sym__concat, - aux_sym_concatenation_token1, - [312716] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14500), 1, - anon_sym_COMMA, - ACTIONS(14702), 1, - aux_sym_heredoc_redirect_token1, - STATE(4241), 1, - sym__c_terminator, - STATE(6319), 1, - aux_sym__for_body_repeat1, - ACTIONS(14700), 2, - anon_sym_SEMI, - anon_sym_AMP, - [312736] = 6, + anon_sym_DOLLAR_LPAREN, + STATE(4732), 2, + sym_expansion, + sym_command_substitution, + [312702] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(5126), 1, + ACTIONS(4789), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5130), 1, + ACTIONS(4793), 1, anon_sym_BQUOTE, - ACTIONS(5132), 1, + ACTIONS(4795), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14704), 1, + ACTIONS(14700), 1, anon_sym_DOLLAR_LPAREN, - STATE(2870), 2, + STATE(2708), 2, sym_expansion, sym_command_substitution, + [312722] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14702), 1, + anon_sym_RBRACE3, + ACTIONS(14441), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [312736] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14528), 1, + anon_sym_PIPE, + ACTIONS(14704), 1, + anon_sym_RPAREN, + STATE(6388), 1, + aux_sym_concatenation_repeat1, + STATE(6635), 1, + aux_sym_case_item_repeat1, + ACTIONS(14532), 2, + sym__concat, + aux_sym_concatenation_token1, [312756] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(8488), 1, + ACTIONS(9074), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8492), 1, + ACTIONS(9076), 1, anon_sym_BQUOTE, - ACTIONS(8494), 1, + ACTIONS(9078), 1, anon_sym_DOLLAR_BQUOTE, ACTIONS(14706), 1, anon_sym_DOLLAR_LPAREN, - STATE(1683), 2, + STATE(1298), 2, sym_expansion, sym_command_substitution, - [312776] = 6, + [312776] = 5, ACTIONS(71), 1, sym_comment, ACTIONS(14708), 1, sym_simple_heredoc_body, ACTIONS(14710), 1, sym__heredoc_body_beginning, - STATE(5099), 1, + STATE(7082), 1, + sym_heredoc_body, + STATE(5550), 2, sym__heredoc_body, - STATE(5100), 1, sym__simple_heredoc_body, - STATE(6796), 1, - sym_heredoc_body, - [312795] = 6, + [312793] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14431), 1, + anon_sym_in, + ACTIONS(14435), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14433), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [312808] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14710), 1, - sym__heredoc_body_beginning, + ACTIONS(14528), 1, + anon_sym_PIPE, + ACTIONS(14530), 1, + anon_sym_RPAREN, ACTIONS(14712), 1, - sym_simple_heredoc_body, - STATE(5630), 1, - sym__simple_heredoc_body, - STATE(5631), 1, - sym__heredoc_body, - STATE(7466), 1, - sym_heredoc_body, - [312814] = 3, + sym__special_character, + STATE(6528), 1, + aux_sym__literal_repeat1, + STATE(6656), 1, + aux_sym_case_item_repeat1, + [312827] = 3, ACTIONS(71), 1, sym_comment, ACTIONS(14714), 1, sym__concat, - ACTIONS(6836), 4, + ACTIONS(6835), 4, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, anon_sym_RBRACE3, - [312827] = 6, + [312840] = 6, ACTIONS(71), 1, sym_comment, ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(14712), 1, + ACTIONS(14716), 1, sym_simple_heredoc_body, - STATE(5641), 1, - sym__simple_heredoc_body, - STATE(5642), 1, + STATE(4983), 1, sym__heredoc_body, - STATE(7466), 1, + STATE(5002), 1, + sym__simple_heredoc_body, + STATE(7280), 1, sym_heredoc_body, - [312846] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14716), 1, - anon_sym_SLASH, - ACTIONS(14718), 1, - anon_sym_RBRACE3, - STATE(6475), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14590), 2, - sym__concat, - aux_sym_concatenation_token1, - [312863] = 5, + [312859] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14568), 1, - aux_sym_concatenation_token1, - ACTIONS(14720), 1, - sym__concat, - STATE(6419), 1, + STATE(6373), 1, aux_sym_concatenation_repeat1, - ACTIONS(1267), 2, + ACTIONS(1278), 2, anon_sym_PIPE, anon_sym_RPAREN, - [312880] = 4, - ACTIONS(3), 1, + ACTIONS(14718), 2, + sym__concat, + aux_sym_concatenation_token1, + [312874] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(14419), 1, - anon_sym_in, - ACTIONS(14423), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(14421), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [312895] = 5, + ACTIONS(8561), 1, + anon_sym_RBRACE3, + STATE(6400), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(8542), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [312889] = 5, ACTIONS(71), 1, sym_comment, ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(14722), 1, + ACTIONS(14721), 1, sym_simple_heredoc_body, - STATE(6845), 1, + STATE(7484), 1, sym_heredoc_body, - STATE(4892), 2, + STATE(5681), 2, sym__heredoc_body, sym__simple_heredoc_body, - [312912] = 4, - ACTIONS(3), 1, + [312906] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(14399), 1, - anon_sym_in, - ACTIONS(14403), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(14401), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [312927] = 6, + ACTIONS(14710), 1, + sym__heredoc_body_beginning, + ACTIONS(14716), 1, + sym_simple_heredoc_body, + STATE(7280), 1, + sym_heredoc_body, + STATE(4865), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [312923] = 5, ACTIONS(71), 1, sym_comment, ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(14722), 1, + ACTIONS(14716), 1, sym_simple_heredoc_body, - STATE(4979), 1, + STATE(7280), 1, + sym_heredoc_body, + STATE(4880), 2, + sym__heredoc_body, sym__simple_heredoc_body, - STATE(4983), 1, + [312940] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14710), 1, + sym__heredoc_body_beginning, + ACTIONS(14721), 1, + sym_simple_heredoc_body, + STATE(5630), 1, sym__heredoc_body, - STATE(6845), 1, + STATE(5634), 1, + sym__simple_heredoc_body, + STATE(7484), 1, sym_heredoc_body, - [312946] = 6, + [312959] = 6, ACTIONS(71), 1, sym_comment, ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(14722), 1, + ACTIONS(14723), 1, sym_simple_heredoc_body, - STATE(4970), 1, - sym__simple_heredoc_body, - STATE(4973), 1, + STATE(5062), 1, sym__heredoc_body, - STATE(6845), 1, + STATE(5063), 1, + sym__simple_heredoc_body, + STATE(6830), 1, sym_heredoc_body, - [312965] = 5, + [312978] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14674), 1, - anon_sym_SLASH, - ACTIONS(14676), 1, - anon_sym_RBRACE3, - STATE(6475), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14590), 2, + STATE(6388), 1, + aux_sym_concatenation_repeat1, + ACTIONS(14532), 2, sym__concat, aux_sym_concatenation_token1, - [312982] = 5, + ACTIONS(14725), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [312993] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14727), 1, + sym__concat, + ACTIONS(6863), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [313006] = 6, ACTIONS(71), 1, sym_comment, ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(14724), 1, + ACTIONS(14721), 1, sym_simple_heredoc_body, - STATE(7519), 1, - sym_heredoc_body, - STATE(4890), 2, + STATE(5635), 1, sym__heredoc_body, + STATE(5640), 1, sym__simple_heredoc_body, - [312999] = 4, + STATE(7484), 1, + sym_heredoc_body, + [313025] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14726), 1, + ACTIONS(14729), 1, anon_sym_in, - ACTIONS(14730), 1, + ACTIONS(14733), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(14728), 3, + ACTIONS(14731), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [313014] = 5, + [313040] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14710), 1, + sym__heredoc_body_beginning, + ACTIONS(14723), 1, + sym_simple_heredoc_body, + STATE(5060), 1, + sym__heredoc_body, + STATE(5061), 1, + sym__simple_heredoc_body, + STATE(6830), 1, + sym_heredoc_body, + [313059] = 5, ACTIONS(71), 1, sym_comment, ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(14724), 1, + ACTIONS(14723), 1, sym_simple_heredoc_body, - STATE(7519), 1, + STATE(6830), 1, sym_heredoc_body, - STATE(4937), 2, + STATE(5038), 2, sym__heredoc_body, sym__simple_heredoc_body, - [313031] = 6, + [313076] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14735), 1, + anon_sym_RBRACE3, + STATE(6431), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(8542), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [313091] = 5, ACTIONS(71), 1, sym_comment, ACTIONS(14708), 1, sym_simple_heredoc_body, ACTIONS(14710), 1, sym__heredoc_body_beginning, - STATE(5112), 1, + STATE(7082), 1, + sym_heredoc_body, + STATE(5547), 2, + sym__heredoc_body, sym__simple_heredoc_body, - STATE(5120), 1, + [313108] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14532), 1, + aux_sym_concatenation_token1, + ACTIONS(14737), 1, + sym__concat, + STATE(6373), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1288), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [313125] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14710), 1, + sym__heredoc_body_beginning, + ACTIONS(14716), 1, + sym_simple_heredoc_body, + STATE(4946), 1, sym__heredoc_body, - STATE(6796), 1, + STATE(4951), 1, + sym__simple_heredoc_body, + STATE(7280), 1, sym_heredoc_body, - [313050] = 5, + [313144] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14355), 1, + anon_sym_in, + ACTIONS(14359), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14357), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [313159] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14528), 1, + anon_sym_PIPE, + ACTIONS(14608), 1, + anon_sym_RPAREN, + ACTIONS(14712), 1, + sym__special_character, + STATE(6528), 1, + aux_sym__literal_repeat1, + STATE(6565), 1, + aux_sym_case_item_repeat1, + [313178] = 5, ACTIONS(71), 1, sym_comment, ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(14722), 1, + ACTIONS(14716), 1, sym_simple_heredoc_body, - STATE(6845), 1, + STATE(7280), 1, sym_heredoc_body, - STATE(4968), 2, + STATE(4916), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [313195] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14741), 1, + anon_sym_COMMA, + ACTIONS(14744), 1, + aux_sym_heredoc_redirect_token1, + STATE(6393), 1, + aux_sym__for_body_repeat1, + ACTIONS(14739), 2, + anon_sym_SEMI, + anon_sym_AMP, + [313212] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14708), 1, + sym_simple_heredoc_body, + ACTIONS(14710), 1, + sym__heredoc_body_beginning, + STATE(7082), 1, + sym_heredoc_body, + STATE(5556), 2, sym__heredoc_body, sym__simple_heredoc_body, - [313067] = 6, + [313229] = 6, ACTIONS(71), 1, sym_comment, ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(14712), 1, + ACTIONS(14721), 1, sym_simple_heredoc_body, - STATE(5645), 1, + STATE(5621), 1, sym__simple_heredoc_body, - STATE(5646), 1, + STATE(5655), 1, sym__heredoc_body, - STATE(7466), 1, + STATE(7484), 1, sym_heredoc_body, - [313086] = 6, + [313248] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(689), 1, - anon_sym_LBRACE, - ACTIONS(14732), 1, + ACTIONS(14746), 1, + anon_sym_SLASH, + ACTIONS(14748), 1, + anon_sym_RBRACE3, + STATE(6420), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(14460), 2, + sym__concat, + aux_sym_concatenation_token1, + [313265] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14419), 1, + anon_sym_in, + ACTIONS(14423), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14421), 3, anon_sym_SEMI, - ACTIONS(14734), 1, - anon_sym_do, - STATE(5061), 1, - sym_do_group, - STATE(5063), 1, - sym_compound_statement, - [313105] = 6, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [313280] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14710), 1, - sym__heredoc_body_beginning, - ACTIONS(14724), 1, - sym_simple_heredoc_body, - STATE(4944), 1, - sym__heredoc_body, - STATE(4947), 1, - sym__simple_heredoc_body, - STATE(7519), 1, - sym_heredoc_body, - [313124] = 3, + ACTIONS(14750), 1, + anon_sym_SLASH, + ACTIONS(14752), 1, + anon_sym_RBRACE3, + STATE(6420), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(14460), 2, + sym__concat, + aux_sym_concatenation_token1, + [313297] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14736), 1, + ACTIONS(1358), 5, sym__concat, - ACTIONS(6842), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, + sym__expansion_word, + anon_sym_SLASH, + aux_sym_concatenation_token1, anon_sym_RBRACE3, - [313137] = 4, + [313308] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14738), 1, + ACTIONS(14754), 1, anon_sym_RBRACE3, - STATE(6474), 1, + STATE(6431), 1, aux_sym__expansion_body_repeat1, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [313152] = 4, + [313323] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14738), 1, + ACTIONS(14756), 1, anon_sym_RBRACE3, - STATE(6474), 1, + STATE(6431), 1, aux_sym__expansion_body_repeat1, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [313167] = 5, + [313338] = 5, ACTIONS(71), 1, sym_comment, + ACTIONS(14708), 1, + sym_simple_heredoc_body, ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(14712), 1, - sym_simple_heredoc_body, - STATE(7466), 1, + STATE(7082), 1, sym_heredoc_body, - STATE(5649), 2, + STATE(5575), 2, sym__heredoc_body, sym__simple_heredoc_body, - [313184] = 6, + [313355] = 5, ACTIONS(71), 1, sym_comment, ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(14724), 1, + ACTIONS(14716), 1, sym_simple_heredoc_body, - STATE(4872), 1, + STATE(7280), 1, + sym_heredoc_body, + STATE(5001), 2, sym__heredoc_body, - STATE(4881), 1, sym__simple_heredoc_body, - STATE(7519), 1, - sym_heredoc_body, - [313203] = 4, + [313372] = 5, ACTIONS(71), 1, sym_comment, - STATE(6373), 1, - aux_sym_concatenation_repeat1, - ACTIONS(14568), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(14740), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [313218] = 4, + ACTIONS(14710), 1, + sym__heredoc_body_beginning, + ACTIONS(14716), 1, + sym_simple_heredoc_body, + STATE(7280), 1, + sym_heredoc_body, + STATE(4906), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [313389] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14738), 1, + ACTIONS(14758), 1, anon_sym_RBRACE3, - STATE(6474), 1, + STATE(6431), 1, aux_sym__expansion_body_repeat1, - ACTIONS(8050), 3, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [313233] = 5, + [313404] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14708), 1, - sym_simple_heredoc_body, ACTIONS(14710), 1, sym__heredoc_body_beginning, - STATE(6796), 1, + ACTIONS(14723), 1, + sym_simple_heredoc_body, + STATE(6830), 1, sym_heredoc_body, - STATE(5101), 2, + STATE(5040), 2, sym__heredoc_body, sym__simple_heredoc_body, - [313250] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(165), 1, - anon_sym_LBRACE, - ACTIONS(14742), 1, - anon_sym_SEMI, - ACTIONS(14744), 1, - anon_sym_do, - STATE(5673), 1, - sym_do_group, - STATE(5675), 1, - sym_compound_statement, - [313269] = 5, + [313421] = 5, ACTIONS(71), 1, sym_comment, ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(14724), 1, + ACTIONS(14721), 1, sym_simple_heredoc_body, - STATE(7519), 1, + STATE(7484), 1, sym_heredoc_body, - STATE(4882), 2, + STATE(5652), 2, sym__heredoc_body, sym__simple_heredoc_body, - [313286] = 6, + [313438] = 6, ACTIONS(71), 1, sym_comment, ACTIONS(14708), 1, sym_simple_heredoc_body, ACTIONS(14710), 1, sym__heredoc_body_beginning, - STATE(5052), 1, - sym__simple_heredoc_body, - STATE(5105), 1, + STATE(5587), 1, sym__heredoc_body, - STATE(6796), 1, + STATE(5597), 1, + sym__simple_heredoc_body, + STATE(7082), 1, sym_heredoc_body, - [313305] = 5, + [313457] = 5, ACTIONS(71), 1, sym_comment, ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(14712), 1, + ACTIONS(14723), 1, sym_simple_heredoc_body, - STATE(7466), 1, + STATE(6830), 1, sym_heredoc_body, - STATE(5633), 2, + STATE(5046), 2, sym__heredoc_body, sym__simple_heredoc_body, - [313322] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14748), 1, - anon_sym_elif, - ACTIONS(14746), 2, - anon_sym_fi, - anon_sym_else, - STATE(6400), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [313337] = 6, + [313474] = 6, ACTIONS(71), 1, sym_comment, ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(14724), 1, + ACTIONS(14760), 1, sym_simple_heredoc_body, - STATE(4929), 1, + STATE(5013), 1, sym__heredoc_body, - STATE(4936), 1, + STATE(5014), 1, sym__simple_heredoc_body, - STATE(7519), 1, + STATE(7361), 1, sym_heredoc_body, - [313356] = 4, + [313493] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14751), 1, + ACTIONS(8549), 1, anon_sym_RBRACE3, - STATE(6474), 1, + STATE(6421), 1, aux_sym__expansion_body_repeat1, - ACTIONS(8050), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - [313371] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14753), 1, - sym__concat, - ACTIONS(6827), 4, + ACTIONS(8542), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - anon_sym_RBRACE3, - [313384] = 5, + [313508] = 6, ACTIONS(71), 1, sym_comment, ACTIONS(14708), 1, sym_simple_heredoc_body, ACTIONS(14710), 1, sym__heredoc_body_beginning, - STATE(6796), 1, - sym_heredoc_body, - STATE(5103), 2, + STATE(5599), 1, sym__heredoc_body, + STATE(5600), 1, sym__simple_heredoc_body, - [313401] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14564), 1, - anon_sym_PIPE, - ACTIONS(14698), 1, - anon_sym_RPAREN, - ACTIONS(14755), 1, - sym__special_character, - STATE(6545), 1, - aux_sym__literal_repeat1, - STATE(6595), 1, - aux_sym_case_item_repeat1, - [313420] = 5, + STATE(7082), 1, + sym_heredoc_body, + [313527] = 6, ACTIONS(71), 1, sym_comment, ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(14757), 1, + ACTIONS(14716), 1, sym_simple_heredoc_body, - STATE(7011), 1, - sym_heredoc_body, - STATE(5568), 2, + STATE(4910), 1, sym__heredoc_body, + STATE(4913), 1, sym__simple_heredoc_body, - [313437] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14759), 1, - sym__concat, - ACTIONS(6818), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_RBRACE3, - [313450] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14761), 1, - anon_sym_in, - ACTIONS(14765), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(14763), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [313465] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14564), 1, - anon_sym_PIPE, - ACTIONS(14600), 1, - anon_sym_RPAREN, - ACTIONS(14755), 1, - sym__special_character, - STATE(6545), 1, - aux_sym__literal_repeat1, - STATE(6627), 1, - aux_sym_case_item_repeat1, - [313484] = 5, + STATE(7280), 1, + sym_heredoc_body, + [313546] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14767), 1, + STATE(6414), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(14762), 2, anon_sym_SLASH, - ACTIONS(14769), 1, anon_sym_RBRACE3, - STATE(6475), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14590), 2, + ACTIONS(14764), 2, sym__concat, aux_sym_concatenation_token1, - [313501] = 5, + [313561] = 5, ACTIONS(71), 1, sym_comment, + ACTIONS(14708), 1, + sym_simple_heredoc_body, ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(14712), 1, - sym_simple_heredoc_body, - STATE(7466), 1, + STATE(7082), 1, sym_heredoc_body, - STATE(5653), 2, + STATE(5601), 2, sym__heredoc_body, sym__simple_heredoc_body, - [313518] = 6, + [313578] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14708), 1, - sym_simple_heredoc_body, ACTIONS(14710), 1, sym__heredoc_body_beginning, - STATE(5067), 1, + ACTIONS(14723), 1, + sym_simple_heredoc_body, + STATE(5047), 1, sym__heredoc_body, - STATE(5068), 1, + STATE(5048), 1, sym__simple_heredoc_body, - STATE(6796), 1, + STATE(6830), 1, sym_heredoc_body, - [313537] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14405), 1, - anon_sym_in, - ACTIONS(14409), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(14407), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [313552] = 5, + [313597] = 5, ACTIONS(71), 1, sym_comment, + ACTIONS(14708), 1, + sym_simple_heredoc_body, ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(14724), 1, - sym_simple_heredoc_body, - STATE(7519), 1, + STATE(7082), 1, sym_heredoc_body, - STATE(4922), 2, + STATE(5581), 2, sym__heredoc_body, sym__simple_heredoc_body, - [313569] = 6, + [313614] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14564), 1, - anon_sym_PIPE, - ACTIONS(14584), 1, - anon_sym_RPAREN, - ACTIONS(14755), 1, - sym__special_character, - STATE(6545), 1, - aux_sym__literal_repeat1, - STATE(6703), 1, - aux_sym_case_item_repeat1, - [313588] = 5, + ACTIONS(14710), 1, + sym__heredoc_body_beginning, + ACTIONS(14716), 1, + sym_simple_heredoc_body, + STATE(7280), 1, + sym_heredoc_body, + STATE(4941), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [313631] = 5, ACTIONS(71), 1, sym_comment, ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(14757), 1, + ACTIONS(14760), 1, sym_simple_heredoc_body, - STATE(7011), 1, + STATE(7361), 1, sym_heredoc_body, - STATE(5571), 2, + STATE(4969), 2, sym__heredoc_body, sym__simple_heredoc_body, - [313605] = 6, - ACTIONS(29), 1, - anon_sym_LBRACE, + [313648] = 4, + ACTIONS(71), 1, + sym_comment, + STATE(6414), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(14460), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(14767), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [313663] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14756), 1, + anon_sym_RBRACE3, + STATE(6431), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(8542), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [313678] = 4, ACTIONS(71), 1, sym_comment, ACTIONS(14771), 1, - anon_sym_SEMI, - ACTIONS(14773), 1, - anon_sym_do, - STATE(5005), 1, - sym_do_group, - STATE(5009), 1, - sym_compound_statement, - [313624] = 5, + anon_sym_elif, + ACTIONS(14769), 2, + anon_sym_fi, + anon_sym_else, + STATE(6422), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [313693] = 5, ACTIONS(71), 1, sym_comment, ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(14724), 1, + ACTIONS(14721), 1, sym_simple_heredoc_body, - STATE(7519), 1, + STATE(7484), 1, sym_heredoc_body, - STATE(4932), 2, + STATE(5644), 2, sym__heredoc_body, sym__simple_heredoc_body, - [313641] = 4, + [313710] = 3, ACTIONS(71), 1, sym_comment, - STATE(6419), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1253), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - ACTIONS(14775), 2, + ACTIONS(14774), 1, sym__concat, - aux_sym_concatenation_token1, - [313656] = 4, + ACTIONS(6817), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [313723] = 4, ACTIONS(71), 1, sym_comment, - STATE(6439), 1, - aux_sym_concatenation_repeat1, - ACTIONS(14568), 2, + ACTIONS(14776), 1, + anon_sym_RBRACE3, + STATE(6431), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(8542), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [313738] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1358), 5, sym__concat, + sym__expansion_word, + anon_sym_SLASH, aux_sym_concatenation_token1, - ACTIONS(14778), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [313671] = 6, + anon_sym_RBRACE3, + [313749] = 6, ACTIONS(71), 1, sym_comment, ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(14712), 1, + ACTIONS(14721), 1, sym_simple_heredoc_body, - STATE(5635), 1, - sym__simple_heredoc_body, - STATE(5636), 1, + STATE(5667), 1, sym__heredoc_body, - STATE(7466), 1, + STATE(5676), 1, + sym__simple_heredoc_body, + STATE(7484), 1, sym_heredoc_body, - [313690] = 6, + [313768] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14735), 1, + anon_sym_RBRACE3, + STATE(6431), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(8542), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [313783] = 6, ACTIONS(71), 1, sym_comment, ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(14722), 1, + ACTIONS(14723), 1, sym_simple_heredoc_body, - STATE(5002), 1, + STATE(5051), 1, sym__heredoc_body, - STATE(5011), 1, + STATE(5052), 1, sym__simple_heredoc_body, - STATE(6845), 1, + STATE(6830), 1, sym_heredoc_body, - [313709] = 5, + [313802] = 5, ACTIONS(71), 1, sym_comment, ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(14722), 1, + ACTIONS(14723), 1, sym_simple_heredoc_body, - STATE(6845), 1, + STATE(6830), 1, sym_heredoc_body, - STATE(4915), 2, + STATE(5053), 2, sym__heredoc_body, sym__simple_heredoc_body, - [313726] = 4, + [313819] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14751), 1, + ACTIONS(14778), 1, anon_sym_RBRACE3, - STATE(6474), 1, + STATE(6431), 1, aux_sym__expansion_body_repeat1, - ACTIONS(8050), 3, + ACTIONS(14780), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [313741] = 5, + [313834] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14780), 1, - anon_sym_SLASH, - ACTIONS(14782), 1, + ACTIONS(14735), 1, anon_sym_RBRACE3, - STATE(6475), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14590), 2, - sym__concat, - aux_sym_concatenation_token1, - [313758] = 6, + STATE(6431), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(8542), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [313849] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14564), 1, + ACTIONS(14710), 1, + sym__heredoc_body_beginning, + ACTIONS(14723), 1, + sym_simple_heredoc_body, + STATE(6830), 1, + sym_heredoc_body, + STATE(5054), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [313866] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14528), 1, anon_sym_PIPE, - ACTIONS(14580), 1, + ACTIONS(14620), 1, anon_sym_RPAREN, - ACTIONS(14755), 1, + ACTIONS(14712), 1, sym__special_character, - STATE(6545), 1, + STATE(6528), 1, aux_sym__literal_repeat1, - STATE(6694), 1, + STATE(6585), 1, aux_sym_case_item_repeat1, - [313777] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14658), 1, - anon_sym_SLASH, - ACTIONS(14660), 1, - anon_sym_RBRACE3, - STATE(6475), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14590), 2, - sym__concat, - aux_sym_concatenation_token1, - [313794] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14784), 1, - anon_sym_RBRACE3, - STATE(6474), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(8050), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - [313809] = 5, + [313885] = 6, ACTIONS(71), 1, sym_comment, ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(14757), 1, + ACTIONS(14721), 1, sym_simple_heredoc_body, - STATE(7011), 1, - sym_heredoc_body, - STATE(5574), 2, + STATE(5639), 1, sym__heredoc_body, + STATE(5666), 1, sym__simple_heredoc_body, - [313826] = 6, + STATE(7484), 1, + sym_heredoc_body, + [313904] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1346), 5, + sym__concat, + sym__expansion_word, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [313915] = 6, ACTIONS(71), 1, sym_comment, ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(14724), 1, + ACTIONS(14716), 1, sym_simple_heredoc_body, - STATE(4923), 1, - sym__heredoc_body, - STATE(4926), 1, + STATE(4873), 1, sym__simple_heredoc_body, - STATE(7519), 1, + STATE(4886), 1, + sym__heredoc_body, + STATE(7280), 1, sym_heredoc_body, - [313845] = 6, + [313934] = 6, ACTIONS(71), 1, sym_comment, ACTIONS(14708), 1, sym_simple_heredoc_body, ACTIONS(14710), 1, sym__heredoc_body_beginning, - STATE(5087), 1, + STATE(5592), 1, sym__heredoc_body, - STATE(5098), 1, + STATE(5615), 1, sym__simple_heredoc_body, - STATE(6796), 1, + STATE(7082), 1, sym_heredoc_body, - [313864] = 6, + [313953] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(689), 1, + anon_sym_LBRACE, + ACTIONS(14783), 1, + anon_sym_SEMI, + ACTIONS(14785), 1, + anon_sym_do, + STATE(5112), 1, + sym_do_group, + STATE(5113), 1, + sym_compound_statement, + [313972] = 6, ACTIONS(71), 1, sym_comment, ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(14757), 1, + ACTIONS(14723), 1, sym_simple_heredoc_body, - STATE(5576), 1, - sym__simple_heredoc_body, - STATE(5600), 1, + STATE(5055), 1, sym__heredoc_body, - STATE(7011), 1, + STATE(5056), 1, + sym__simple_heredoc_body, + STATE(6830), 1, sym_heredoc_body, - [313883] = 6, + [313991] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14708), 1, - sym_simple_heredoc_body, ACTIONS(14710), 1, sym__heredoc_body_beginning, - STATE(5072), 1, + ACTIONS(14723), 1, + sym_simple_heredoc_body, + STATE(5057), 1, sym__heredoc_body, - STATE(5077), 1, + STATE(5058), 1, sym__simple_heredoc_body, - STATE(6796), 1, + STATE(6830), 1, sym_heredoc_body, - [313902] = 5, + [314010] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14536), 1, + anon_sym_SLASH, + ACTIONS(14538), 1, + anon_sym_RBRACE3, + STATE(6420), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(14460), 2, + sym__concat, + aux_sym_concatenation_token1, + [314027] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14708), 1, - sym_simple_heredoc_body, ACTIONS(14710), 1, sym__heredoc_body_beginning, - STATE(6796), 1, - sym_heredoc_body, - STATE(5083), 2, + ACTIONS(14716), 1, + sym_simple_heredoc_body, + STATE(4914), 1, sym__heredoc_body, + STATE(4915), 1, sym__simple_heredoc_body, - [313919] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1310), 5, - sym__concat, - sym__expansion_word, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [313930] = 2, + STATE(7280), 1, + sym_heredoc_body, + [314046] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1306), 5, - sym__concat, - sym__expansion_word, - anon_sym_SLASH, - aux_sym_concatenation_token1, + ACTIONS(14754), 1, anon_sym_RBRACE3, - [313941] = 6, + STATE(6431), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(8542), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [314061] = 6, ACTIONS(71), 1, sym_comment, ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(14757), 1, + ACTIONS(14760), 1, sym_simple_heredoc_body, - STATE(5578), 1, + STATE(4972), 1, sym__heredoc_body, - STATE(5579), 1, + STATE(4973), 1, sym__simple_heredoc_body, - STATE(7011), 1, + STATE(7361), 1, sym_heredoc_body, - [313960] = 2, + [314080] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1310), 5, - sym__concat, - sym__expansion_word, + ACTIONS(14787), 1, anon_sym_SLASH, - aux_sym_concatenation_token1, + ACTIONS(14789), 1, anon_sym_RBRACE3, - [313971] = 5, + STATE(6420), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(14460), 2, + sym__concat, + aux_sym_concatenation_token1, + [314097] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14568), 1, - aux_sym_concatenation_token1, - ACTIONS(14786), 1, - sym__concat, - STATE(6419), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [313988] = 6, + ACTIONS(14708), 1, + sym_simple_heredoc_body, + ACTIONS(14710), 1, + sym__heredoc_body_beginning, + STATE(5548), 1, + sym__heredoc_body, + STATE(5549), 1, + sym__simple_heredoc_body, + STATE(7082), 1, + sym_heredoc_body, + [314116] = 6, ACTIONS(71), 1, sym_comment, ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(14724), 1, + ACTIONS(14760), 1, sym_simple_heredoc_body, - STATE(4867), 1, + STATE(4961), 1, sym__heredoc_body, - STATE(4908), 1, + STATE(4962), 1, sym__simple_heredoc_body, - STATE(7519), 1, + STATE(7361), 1, sym_heredoc_body, - [314007] = 6, + [314135] = 6, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14791), 1, + anon_sym_SEMI, + ACTIONS(14793), 1, + anon_sym_do, + STATE(4904), 1, + sym_do_group, + STATE(5017), 1, + sym_compound_statement, + [314154] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14458), 1, + anon_sym_SLASH, + ACTIONS(14462), 1, + anon_sym_RBRACE3, + STATE(6420), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(14460), 2, + sym__concat, + aux_sym_concatenation_token1, + [314171] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(433), 1, + ACTIONS(431), 1, anon_sym_LBRACE, - ACTIONS(14788), 1, + ACTIONS(14795), 1, anon_sym_SEMI, - ACTIONS(14790), 1, + ACTIONS(14797), 1, anon_sym_do, - STATE(4916), 1, + STATE(4911), 1, sym_do_group, - STATE(4927), 1, + STATE(4912), 1, sym_compound_statement, - [314026] = 5, + [314190] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14710), 1, - sym__heredoc_body_beginning, - ACTIONS(14722), 1, - sym_simple_heredoc_body, - STATE(6845), 1, - sym_heredoc_body, - STATE(4989), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [314043] = 4, + ACTIONS(14799), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(14453), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [314203] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14792), 1, + ACTIONS(14399), 1, anon_sym_in, - ACTIONS(14796), 1, + ACTIONS(14403), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(14794), 3, + ACTIONS(14401), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [314058] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14710), 1, - sym__heredoc_body_beginning, - ACTIONS(14724), 1, - sym_simple_heredoc_body, - STATE(4956), 1, - sym__heredoc_body, - STATE(4957), 1, - sym__simple_heredoc_body, - STATE(7519), 1, - sym_heredoc_body, - [314077] = 5, + [314218] = 6, ACTIONS(71), 1, sym_comment, ACTIONS(14708), 1, sym_simple_heredoc_body, ACTIONS(14710), 1, sym__heredoc_body_beginning, - STATE(6796), 1, - sym_heredoc_body, - STATE(5080), 2, + STATE(5553), 1, sym__heredoc_body, + STATE(5555), 1, sym__simple_heredoc_body, - [314094] = 6, + STATE(7082), 1, + sym_heredoc_body, + [314237] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14710), 1, - sym__heredoc_body_beginning, - ACTIONS(14712), 1, - sym_simple_heredoc_body, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(14801), 1, + anon_sym_SEMI, + ACTIONS(14803), 1, + anon_sym_do, STATE(5626), 1, - sym__simple_heredoc_body, - STATE(5627), 1, - sym__heredoc_body, - STATE(7466), 1, - sym_heredoc_body, - [314113] = 5, + sym_do_group, + STATE(5683), 1, + sym_compound_statement, + [314256] = 5, ACTIONS(71), 1, sym_comment, ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(14724), 1, + ACTIONS(14721), 1, sym_simple_heredoc_body, - STATE(7519), 1, + STATE(7484), 1, sym_heredoc_body, - STATE(4933), 2, + STATE(5646), 2, sym__heredoc_body, sym__simple_heredoc_body, - [314130] = 4, + [314273] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(8038), 1, - anon_sym_RBRACE3, - STATE(6389), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(8050), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - [314145] = 5, + STATE(6463), 1, + aux_sym_concatenation_repeat1, + ACTIONS(14532), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(14805), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [314288] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14588), 1, + ACTIONS(14494), 1, anon_sym_SLASH, - ACTIONS(14592), 1, + ACTIONS(14496), 1, anon_sym_RBRACE3, - STATE(6475), 1, + STATE(6420), 1, aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14590), 2, + ACTIONS(14460), 2, sym__concat, aux_sym_concatenation_token1, - [314162] = 5, + [314305] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14710), 1, - sym__heredoc_body_beginning, + ACTIONS(14528), 1, + anon_sym_PIPE, + ACTIONS(14554), 1, + anon_sym_RPAREN, ACTIONS(14712), 1, - sym_simple_heredoc_body, - STATE(7466), 1, - sym_heredoc_body, - STATE(5639), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [314179] = 5, + sym__special_character, + STATE(6528), 1, + aux_sym__literal_repeat1, + STATE(6691), 1, + aux_sym_case_item_repeat1, + [314324] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14710), 1, - sym__heredoc_body_beginning, - ACTIONS(14712), 1, - sym_simple_heredoc_body, - STATE(7466), 1, - sym_heredoc_body, - STATE(5640), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [314196] = 5, + ACTIONS(8530), 1, + anon_sym_RBRACE3, + STATE(6386), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(8542), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [314339] = 6, ACTIONS(71), 1, sym_comment, ACTIONS(14708), 1, sym_simple_heredoc_body, ACTIONS(14710), 1, sym__heredoc_body_beginning, - STATE(6796), 1, - sym_heredoc_body, - STATE(5035), 2, + STATE(5571), 1, sym__heredoc_body, + STATE(5616), 1, sym__simple_heredoc_body, - [314213] = 5, + STATE(7082), 1, + sym_heredoc_body, + [314358] = 5, ACTIONS(71), 1, sym_comment, ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(14757), 1, + ACTIONS(14760), 1, sym_simple_heredoc_body, - STATE(7011), 1, + STATE(7361), 1, sym_heredoc_body, - STATE(5581), 2, + STATE(4917), 2, sym__heredoc_body, sym__simple_heredoc_body, - [314230] = 5, + [314375] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14532), 1, + aux_sym_concatenation_token1, + ACTIONS(14807), 1, + sym__concat, + STATE(6373), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1268), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [314392] = 6, ACTIONS(71), 1, sym_comment, ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(14757), 1, + ACTIONS(14716), 1, sym_simple_heredoc_body, - STATE(7011), 1, - sym_heredoc_body, - STATE(5585), 2, + STATE(5020), 1, sym__heredoc_body, + STATE(5025), 1, sym__simple_heredoc_body, - [314247] = 5, + STATE(7280), 1, + sym_heredoc_body, + [314411] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14809), 1, + anon_sym_in, + ACTIONS(14813), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14811), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [314426] = 5, ACTIONS(71), 1, sym_comment, ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(14722), 1, + ACTIONS(14721), 1, sym_simple_heredoc_body, - STATE(6845), 1, + STATE(7484), 1, sym_heredoc_body, - STATE(5022), 2, + STATE(5673), 2, sym__heredoc_body, sym__simple_heredoc_body, - [314264] = 6, + [314443] = 5, ACTIONS(71), 1, sym_comment, ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(14722), 1, + ACTIONS(14760), 1, sym_simple_heredoc_body, - STATE(4935), 1, + STATE(7361), 1, + sym_heredoc_body, + STATE(4866), 2, sym__heredoc_body, - STATE(4948), 1, sym__simple_heredoc_body, - STATE(6845), 1, - sym_heredoc_body, - [314283] = 6, + [314460] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14815), 1, + anon_sym_in, + ACTIONS(14819), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14817), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [314475] = 5, ACTIONS(71), 1, sym_comment, ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(14722), 1, + ACTIONS(14723), 1, sym_simple_heredoc_body, - STATE(4900), 1, + STATE(6830), 1, + sym_heredoc_body, + STATE(5059), 2, sym__heredoc_body, - STATE(4920), 1, sym__simple_heredoc_body, - STATE(6845), 1, - sym_heredoc_body, - [314302] = 5, + [314492] = 5, ACTIONS(71), 1, sym_comment, ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(14722), 1, + ACTIONS(14760), 1, sym_simple_heredoc_body, - STATE(6845), 1, + STATE(7361), 1, sym_heredoc_body, - STATE(4961), 2, + STATE(4885), 2, sym__heredoc_body, sym__simple_heredoc_body, - [314319] = 6, + [314509] = 6, ACTIONS(71), 1, sym_comment, ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(14757), 1, + ACTIONS(14760), 1, sym_simple_heredoc_body, - STATE(5565), 1, + STATE(4889), 1, sym__heredoc_body, - STATE(5589), 1, + STATE(4892), 1, sym__simple_heredoc_body, - STATE(7011), 1, + STATE(7361), 1, sym_heredoc_body, - [314338] = 4, - ACTIONS(71), 1, - sym_comment, - STATE(6460), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14798), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - ACTIONS(14800), 2, - sym__concat, - aux_sym_concatenation_token1, - [314353] = 6, + [314528] = 6, ACTIONS(71), 1, sym_comment, ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(14757), 1, + ACTIONS(14760), 1, sym_simple_heredoc_body, - STATE(5586), 1, - sym__simple_heredoc_body, - STATE(5590), 1, + STATE(4895), 1, sym__heredoc_body, - STATE(7011), 1, - sym_heredoc_body, - [314372] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14710), 1, - sym__heredoc_body_beginning, - ACTIONS(14712), 1, - sym_simple_heredoc_body, - STATE(5617), 1, + STATE(4918), 1, sym__simple_heredoc_body, - STATE(5638), 1, - sym__heredoc_body, - STATE(7466), 1, + STATE(7361), 1, sym_heredoc_body, - [314391] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14805), 1, - anon_sym_COMMA, - ACTIONS(14808), 1, - aux_sym_heredoc_redirect_token1, - STATE(6463), 1, - aux_sym__for_body_repeat1, - ACTIONS(14803), 2, - anon_sym_SEMI, - anon_sym_AMP, - [314408] = 6, + [314547] = 5, ACTIONS(71), 1, sym_comment, ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(14722), 1, + ACTIONS(14760), 1, sym_simple_heredoc_body, - STATE(4886), 1, + STATE(7361), 1, + sym_heredoc_body, + STATE(4925), 2, sym__heredoc_body, - STATE(4887), 1, sym__simple_heredoc_body, - STATE(6845), 1, - sym_heredoc_body, - [314427] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14810), 1, - anon_sym_RBRACE3, - STATE(6474), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(8050), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - [314442] = 5, + [314564] = 5, ACTIONS(71), 1, sym_comment, ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(14712), 1, + ACTIONS(14760), 1, sym_simple_heredoc_body, - STATE(7466), 1, + STATE(7361), 1, sym_heredoc_body, - STATE(5658), 2, + STATE(4931), 2, sym__heredoc_body, sym__simple_heredoc_body, - [314459] = 5, + [314581] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14821), 1, + anon_sym_in, + ACTIONS(14825), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14823), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [314596] = 5, ACTIONS(71), 1, sym_comment, ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(14757), 1, + ACTIONS(14721), 1, sym_simple_heredoc_body, - STATE(7011), 1, + STATE(7484), 1, sym_heredoc_body, - STATE(5595), 2, + STATE(5624), 2, sym__heredoc_body, sym__simple_heredoc_body, - [314476] = 6, + [314613] = 6, ACTIONS(71), 1, sym_comment, ACTIONS(14710), 1, sym__heredoc_body_beginning, - ACTIONS(14757), 1, + ACTIONS(14760), 1, sym_simple_heredoc_body, - STATE(5596), 1, + STATE(4957), 1, sym__heredoc_body, - STATE(5597), 1, + STATE(4960), 1, sym__simple_heredoc_body, - STATE(7011), 1, + STATE(7361), 1, sym_heredoc_body, - [314495] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14362), 1, - anon_sym_in, - ACTIONS(14366), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(14364), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [314510] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14812), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(14445), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [314523] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14814), 1, - anon_sym_in, - ACTIONS(14818), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(14816), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [314538] = 4, + [314632] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(8548), 1, - anon_sym_RBRACE3, - STATE(6476), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(8050), 3, + ACTIONS(14827), 1, + sym__concat, + ACTIONS(6857), 4, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [314553] = 5, + anon_sym_RBRACE3, + [314645] = 6, ACTIONS(71), 1, sym_comment, - ACTIONS(14708), 1, - sym_simple_heredoc_body, ACTIONS(14710), 1, sym__heredoc_body_beginning, - STATE(6796), 1, - sym_heredoc_body, - STATE(5066), 2, + ACTIONS(14721), 1, + sym_simple_heredoc_body, + STATE(5641), 1, sym__heredoc_body, + STATE(5645), 1, sym__simple_heredoc_body, - [314570] = 4, + STATE(7484), 1, + sym_heredoc_body, + [314664] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14820), 1, + ACTIONS(1350), 4, + sym__concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, anon_sym_RBRACE3, - STATE(6474), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(14822), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - [314585] = 4, + [314674] = 5, ACTIONS(71), 1, sym_comment, - STATE(6460), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14590), 2, + ACTIONS(14829), 1, + anon_sym_esac, + ACTIONS(14831), 1, + anon_sym_SEMI_SEMI, + ACTIONS(14833), 1, + anon_sym_SEMI_AMP, + ACTIONS(14835), 1, + anon_sym_SEMI_SEMI_AMP, + [314690] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1298), 4, sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, aux_sym_concatenation_token1, - ACTIONS(14825), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - [314600] = 4, + [314700] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14827), 1, + ACTIONS(1338), 4, + sym__concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, anon_sym_RBRACE3, - STATE(6474), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(8050), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - [314615] = 4, + [314710] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14827), 1, - anon_sym_RBRACE3, - STATE(6474), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(8050), 3, + ACTIONS(1358), 4, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [314630] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(8550), 1, anon_sym_RBRACE3, - STATE(6424), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(8050), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - [314645] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14710), 1, - sym__heredoc_body_beginning, - ACTIONS(14757), 1, - sym_simple_heredoc_body, - STATE(5598), 1, - sym__heredoc_body, - STATE(5599), 1, - sym__simple_heredoc_body, - STATE(7011), 1, - sym_heredoc_body, - [314664] = 2, + [314720] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1338), 4, + ACTIONS(14837), 1, + anon_sym_RBRACE3, + STATE(6420), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(14460), 2, sym__concat, - anon_sym_SLASH, aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [314674] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14808), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(14803), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_AMP, - [314686] = 5, + [314734] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7787), 1, + ACTIONS(14839), 1, sym__special_character, - ACTIONS(14780), 1, + STATE(6486), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 2, anon_sym_SLASH, - ACTIONS(14782), 1, anon_sym_RBRACE3, - STATE(6500), 1, - aux_sym__literal_repeat1, - [314702] = 2, + [314748] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1310), 4, + ACTIONS(1354), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [314712] = 2, + [314758] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1306), 4, + ACTIONS(14842), 1, + anon_sym_esac, + ACTIONS(14844), 1, + anon_sym_SEMI_SEMI, + ACTIONS(14846), 1, + anon_sym_SEMI_AMP, + ACTIONS(14848), 1, + anon_sym_SEMI_SEMI_AMP, + [314774] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1314), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [314722] = 2, + [314784] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1310), 4, + ACTIONS(1358), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [314732] = 2, + [314794] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1326), 4, + ACTIONS(1346), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [314742] = 2, + [314804] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7052), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [314814] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14798), 4, + ACTIONS(5890), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [314752] = 5, + [314824] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(7787), 1, + ACTIONS(7788), 1, sym__special_character, - ACTIONS(14767), 1, + ACTIONS(14746), 1, anon_sym_SLASH, - ACTIONS(14769), 1, + ACTIONS(14748), 1, anon_sym_RBRACE3, - STATE(6500), 1, + STATE(6486), 1, aux_sym__literal_repeat1, - [314768] = 2, + [314840] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14829), 4, + ACTIONS(14850), 4, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, anon_sym_RBRACE3, - [314778] = 2, + [314850] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1298), 4, - sym__concat, + ACTIONS(7788), 1, + sym__special_character, + ACTIONS(14750), 1, anon_sym_SLASH, - aux_sym_concatenation_token1, + ACTIONS(14752), 1, anon_sym_RBRACE3, - [314788] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14831), 1, - anon_sym_esac, - ACTIONS(14833), 1, - anon_sym_SEMI_SEMI, - ACTIONS(14835), 1, - anon_sym_SEMI_AMP, - ACTIONS(14837), 1, - anon_sym_SEMI_SEMI_AMP, - [314804] = 5, + STATE(6486), 1, + aux_sym__literal_repeat1, + [314866] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14839), 1, + ACTIONS(14852), 1, anon_sym_esac, - ACTIONS(14841), 1, + ACTIONS(14854), 1, anon_sym_SEMI_SEMI, - ACTIONS(14843), 1, + ACTIONS(14856), 1, anon_sym_SEMI_AMP, - ACTIONS(14845), 1, + ACTIONS(14858), 1, anon_sym_SEMI_SEMI_AMP, - [314820] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14849), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(14847), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_AMP, - [314832] = 2, + [314882] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1253), 4, + ACTIONS(1338), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [314842] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(689), 1, - anon_sym_LBRACE, - ACTIONS(14734), 1, - anon_sym_do, - STATE(5085), 1, - sym_do_group, - STATE(5088), 1, - sym_compound_statement, - [314858] = 5, + [314892] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14831), 1, - anon_sym_esac, - ACTIONS(14851), 1, - anon_sym_SEMI_SEMI, - ACTIONS(14853), 1, - anon_sym_SEMI_AMP, - ACTIONS(14855), 1, - anon_sym_SEMI_SEMI_AMP, - [314874] = 2, + ACTIONS(7788), 1, + sym__special_character, + ACTIONS(14787), 1, + anon_sym_SLASH, + ACTIONS(14789), 1, + anon_sym_RBRACE3, + STATE(6486), 1, + aux_sym__literal_repeat1, + [314908] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1314), 4, + ACTIONS(1358), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [314884] = 4, + [314918] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14857), 1, - anon_sym_RBRACE3, - STATE(6475), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14590), 2, + ACTIONS(1342), 4, sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, aux_sym_concatenation_token1, - [314898] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1310), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_RBRACE3, - [314908] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14859), 1, - sym__special_character, - STATE(6500), 1, - aux_sym__literal_repeat1, - ACTIONS(1364), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - [314922] = 5, + [314928] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14862), 1, + ACTIONS(14860), 1, anon_sym_esac, - ACTIONS(14864), 1, + ACTIONS(14862), 1, anon_sym_SEMI_SEMI, - ACTIONS(14866), 1, + ACTIONS(14864), 2, anon_sym_SEMI_AMP, - ACTIONS(14868), 1, anon_sym_SEMI_SEMI_AMP, - [314938] = 2, + [314942] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14868), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14866), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_AMP, + [314954] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1338), 4, + ACTIONS(1294), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [314948] = 2, + [314964] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1346), 4, + ACTIONS(1306), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [314958] = 2, + [314974] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1358), 4, + ACTIONS(1278), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [314968] = 2, + [314984] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(5772), 4, + ACTIONS(1326), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [314978] = 2, + [314994] = 5, + ACTIONS(29), 1, + anon_sym_LBRACE, ACTIONS(71), 1, sym_comment, - ACTIONS(1358), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, + ACTIONS(14793), 1, + anon_sym_do, + STATE(4870), 1, + sym_do_group, + STATE(4981), 1, + sym_compound_statement, + [315010] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6835), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, anon_sym_RBRACE3, - [314988] = 2, + [315020] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1346), 4, + ACTIONS(14762), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [314998] = 5, + [315030] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(165), 1, - anon_sym_LBRACE, - ACTIONS(14744), 1, - anon_sym_do, - STATE(5687), 1, - sym_do_group, - STATE(5689), 1, - sym_compound_statement, - [315014] = 2, + ACTIONS(14870), 1, + anon_sym_esac, + ACTIONS(14872), 1, + anon_sym_SEMI_SEMI, + ACTIONS(14874), 1, + anon_sym_SEMI_AMP, + ACTIONS(14876), 1, + anon_sym_SEMI_SEMI_AMP, + [315046] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1354), 4, + ACTIONS(1310), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [315024] = 2, + [315056] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1342), 4, - sym__concat, - anon_sym_PIPE, - anon_sym_RPAREN, - aux_sym_concatenation_token1, - [315034] = 5, + ACTIONS(7071), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [315066] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14839), 1, + ACTIONS(14829), 1, anon_sym_esac, - ACTIONS(14870), 1, + ACTIONS(14878), 1, anon_sym_SEMI_SEMI, - ACTIONS(14872), 1, + ACTIONS(14880), 1, anon_sym_SEMI_AMP, - ACTIONS(14874), 1, + ACTIONS(14882), 1, anon_sym_SEMI_SEMI_AMP, - [315050] = 5, + [315082] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(433), 1, - anon_sym_LBRACE, - ACTIONS(14790), 1, - anon_sym_do, - STATE(5003), 1, - sym_do_group, - STATE(5006), 1, - sym_compound_statement, - [315066] = 2, + ACTIONS(14852), 1, + anon_sym_esac, + ACTIONS(14884), 1, + anon_sym_SEMI_SEMI, + ACTIONS(14886), 1, + anon_sym_SEMI_AMP, + ACTIONS(14888), 1, + anon_sym_SEMI_SEMI_AMP, + [315098] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1350), 4, + ACTIONS(6817), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [315108] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1334), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [315076] = 2, + [315118] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1322), 4, + ACTIONS(1358), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [315086] = 2, + [315128] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1342), 4, + ACTIONS(1346), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [315096] = 2, + [315138] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1314), 4, + ACTIONS(1358), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [315106] = 2, + [315148] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14892), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14890), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_AMP, + [315160] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(5768), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [315116] = 2, + ACTIONS(14870), 1, + anon_sym_esac, + ACTIONS(14894), 1, + anon_sym_SEMI_SEMI, + ACTIONS(14896), 1, + anon_sym_SEMI_AMP, + ACTIONS(14898), 1, + anon_sym_SEMI_SEMI_AMP, + [315176] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(1354), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [315126] = 2, + ACTIONS(689), 1, + anon_sym_LBRACE, + ACTIONS(14785), 1, + anon_sym_do, + STATE(5064), 1, + sym_compound_statement, + STATE(5097), 1, + sym_do_group, + [315192] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1330), 4, - sym__concat, + ACTIONS(14712), 1, + sym__special_character, + STATE(6528), 1, + aux_sym__literal_repeat1, + ACTIONS(14805), 2, anon_sym_PIPE, anon_sym_RPAREN, - aux_sym_concatenation_token1, - [315136] = 2, + [315206] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1322), 4, + ACTIONS(1318), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [315146] = 5, + [315216] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14862), 1, + ACTIONS(14842), 1, anon_sym_esac, - ACTIONS(14876), 1, + ACTIONS(14900), 1, anon_sym_SEMI_SEMI, - ACTIONS(14878), 1, + ACTIONS(14902), 1, anon_sym_SEMI_AMP, - ACTIONS(14880), 1, + ACTIONS(14904), 1, anon_sym_SEMI_SEMI_AMP, - [315162] = 2, + [315232] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1298), 4, - sym__concat, + ACTIONS(14906), 1, + anon_sym_esac, + ACTIONS(14908), 1, + anon_sym_SEMI_SEMI, + ACTIONS(14910), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [315246] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14912), 1, + sym__special_character, + STATE(6528), 1, + aux_sym__literal_repeat1, + ACTIONS(1362), 2, anon_sym_PIPE, anon_sym_RPAREN, - aux_sym_concatenation_token1, - [315172] = 2, + [315260] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1318), 4, + ACTIONS(5873), 4, sym__concat, - anon_sym_PIPE, - anon_sym_RPAREN, + anon_sym_SLASH, aux_sym_concatenation_token1, - [315182] = 5, + anon_sym_RBRACE3, + [315270] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14882), 1, - anon_sym_esac, - ACTIONS(14884), 1, - anon_sym_SEMI_SEMI, - ACTIONS(14886), 1, - anon_sym_SEMI_AMP, - ACTIONS(14888), 1, - anon_sym_SEMI_SEMI_AMP, - [315198] = 2, + ACTIONS(431), 1, + anon_sym_LBRACE, + ACTIONS(14797), 1, + anon_sym_do, + STATE(4942), 1, + sym_do_group, + STATE(4943), 1, + sym_compound_statement, + [315286] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1310), 4, + ACTIONS(1342), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [315208] = 2, + [315296] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1334), 4, + ACTIONS(1294), 4, sym__concat, - anon_sym_PIPE, - anon_sym_RPAREN, + anon_sym_SLASH, aux_sym_concatenation_token1, - [315218] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7160), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_RBRACE3, - [315228] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6818), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_RBRACE3, - [315238] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7164), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, anon_sym_RBRACE3, - [315248] = 5, + [315306] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(7787), 1, - sym__special_character, - ACTIONS(14716), 1, + ACTIONS(1334), 4, + sym__concat, anon_sym_SLASH, - ACTIONS(14718), 1, + aux_sym_concatenation_token1, anon_sym_RBRACE3, - STATE(6500), 1, - aux_sym__literal_repeat1, - [315264] = 3, + [315316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14892), 1, + ACTIONS(14744), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(14890), 3, + ACTIONS(14739), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_AMP, - [315276] = 2, + [315328] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1306), 4, + ACTIONS(1310), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [315286] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14894), 1, - anon_sym_esac, - ACTIONS(14896), 1, - anon_sym_SEMI_SEMI, - ACTIONS(14898), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [315300] = 2, + [315338] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(1302), 4, @@ -337152,6163 +337478,6138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [315310] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1294), 4, - sym__concat, - anon_sym_PIPE, - anon_sym_RPAREN, - aux_sym_concatenation_token1, - [315320] = 4, + [315348] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14900), 1, + ACTIONS(14915), 1, anon_sym_esac, - ACTIONS(14902), 1, + ACTIONS(14917), 1, anon_sym_SEMI_SEMI, - ACTIONS(14904), 2, + ACTIONS(14919), 2, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [315334] = 2, + [315362] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1310), 4, + ACTIONS(1354), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [315344] = 2, + [315372] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1306), 4, + ACTIONS(1358), 4, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, anon_sym_RBRACE3, - [315354] = 4, + [315382] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14906), 1, + ACTIONS(1330), 4, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + [315392] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14921), 1, anon_sym_esac, - ACTIONS(14908), 1, + ACTIONS(14923), 1, anon_sym_SEMI_SEMI, - ACTIONS(14910), 2, + ACTIONS(14925), 2, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [315368] = 2, + [315406] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1310), 4, + ACTIONS(1326), 4, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + [315416] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1346), 4, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, anon_sym_RBRACE3, - [315378] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14912), 1, - anon_sym_esac, - ACTIONS(14914), 1, - anon_sym_SEMI_SEMI, - ACTIONS(14916), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [315392] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14882), 1, - anon_sym_esac, - ACTIONS(14918), 1, - anon_sym_SEMI_SEMI, - ACTIONS(14920), 1, - anon_sym_SEMI_AMP, - ACTIONS(14922), 1, - anon_sym_SEMI_SEMI_AMP, - [315408] = 4, + [315426] = 5, ACTIONS(71), 1, sym_comment, - ACTIONS(14755), 1, - sym__special_character, - STATE(6545), 1, - aux_sym__literal_repeat1, - ACTIONS(14740), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [315422] = 5, - ACTIONS(29), 1, + ACTIONS(165), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14773), 1, + ACTIONS(14803), 1, anon_sym_do, - STATE(4931), 1, + STATE(5637), 1, sym_do_group, - STATE(4938), 1, + STATE(5647), 1, sym_compound_statement, - [315438] = 4, + [315442] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14924), 1, - sym__special_character, - STATE(6545), 1, - aux_sym__literal_repeat1, - ACTIONS(1364), 2, + ACTIONS(1350), 4, + sym__concat, anon_sym_PIPE, anon_sym_RPAREN, + aux_sym_concatenation_token1, [315452] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6827), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_RBRACE3, - [315462] = 3, + ACTIONS(1322), 4, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + [315462] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14929), 1, - anon_sym_LBRACK, - ACTIONS(14927), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [315473] = 4, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(14927), 1, + anon_sym_RPAREN_RPAREN, + STATE(6662), 1, + aux_sym_arithmetic_expansion_repeat1, + [315475] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(14931), 1, + ACTIONS(14929), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [315486] = 3, + [315488] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14929), 1, - anon_sym_LBRACK, - ACTIONS(14933), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [315497] = 4, + ACTIONS(14880), 1, + anon_sym_SEMI_AMP, + ACTIONS(14882), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(14931), 1, + anon_sym_SEMI_SEMI, + [315501] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14528), 1, + anon_sym_PIPE, + ACTIONS(14624), 1, + anon_sym_RPAREN, + STATE(6582), 1, + aux_sym_case_item_repeat1, + [315514] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14808), 1, + ACTIONS(14744), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(14935), 1, + ACTIONS(14933), 1, anon_sym_COMMA, - STATE(6550), 1, + STATE(6551), 1, aux_sym__for_body_repeat1, - [315510] = 4, + [315527] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14938), 1, - anon_sym_COMMA, - ACTIONS(14940), 1, - anon_sym_RPAREN, - STATE(6640), 1, - aux_sym__for_body_repeat1, - [315523] = 4, + ACTIONS(14833), 1, + anon_sym_SEMI_AMP, + ACTIONS(14835), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(14936), 1, + anon_sym_SEMI_SEMI, + [315540] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(14942), 1, + ACTIONS(14938), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [315536] = 4, + [315553] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14846), 1, + anon_sym_SEMI_AMP, + ACTIONS(14848), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(14940), 1, + anon_sym_SEMI_SEMI, + [315566] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(7354), 1, + ACTIONS(14942), 1, anon_sym_RPAREN_RPAREN, ACTIONS(14944), 1, anon_sym_COMMA, - STATE(6553), 1, - aux_sym_arithmetic_expansion_repeat1, - [315549] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1310), 3, - sym_extglob_pattern, - anon_sym_PIPE, - anon_sym_RPAREN, - [315558] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1306), 3, - sym_extglob_pattern, - anon_sym_PIPE, - anon_sym_RPAREN, - [315567] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1310), 3, - sym_extglob_pattern, - anon_sym_PIPE, - anon_sym_RPAREN, - [315576] = 2, + STATE(6551), 1, + aux_sym__for_body_repeat1, + [315579] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1354), 3, - sym_extglob_pattern, + ACTIONS(14528), 1, anon_sym_PIPE, + ACTIONS(14946), 1, anon_sym_RPAREN, - [315585] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12339), 1, - anon_sym_PIPE, - ACTIONS(14947), 1, - anon_sym_PIPE_AMP, - STATE(5102), 1, - aux_sym_pipeline_repeat1, - [315598] = 4, + STATE(6717), 1, + aux_sym_case_item_repeat1, + [315592] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(14949), 1, + ACTIONS(14948), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [315611] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14929), 1, - anon_sym_LBRACK, - ACTIONS(14951), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [315622] = 2, + [315605] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1334), 3, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_RBRACE3, - [315631] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(14953), 1, + ACTIONS(14950), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [315644] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1314), 3, - sym_extglob_pattern, - anon_sym_PIPE, - anon_sym_RPAREN, - [315653] = 2, + [315618] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1342), 3, - sym_extglob_pattern, - anon_sym_PIPE, - anon_sym_RPAREN, - [315662] = 4, + ACTIONS(14944), 1, + anon_sym_COMMA, + ACTIONS(14952), 1, + anon_sym_RPAREN_RPAREN, + STATE(6677), 1, + aux_sym__for_body_repeat1, + [315631] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(14955), 1, + ACTIONS(14954), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [315675] = 4, + [315644] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12906), 1, - anon_sym_PIPE, - ACTIONS(14957), 1, - anon_sym_PIPE_AMP, - STATE(5499), 1, - aux_sym_pipeline_repeat1, - [315688] = 4, + ACTIONS(14944), 1, + anon_sym_COMMA, + ACTIONS(14956), 1, + anon_sym_RPAREN_RPAREN, + STATE(6551), 1, + aux_sym__for_body_repeat1, + [315657] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14564), 1, + ACTIONS(14528), 1, anon_sym_PIPE, - ACTIONS(14959), 1, + ACTIONS(14958), 1, anon_sym_RPAREN, - STATE(6599), 1, + STATE(6717), 1, aux_sym_case_item_repeat1, - [315701] = 4, + [315670] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(13001), 1, - anon_sym_PIPE, - ACTIONS(13003), 1, - anon_sym_PIPE_AMP, - STATE(5602), 1, - aux_sym_pipeline_repeat1, - [315714] = 4, + ACTIONS(14960), 1, + anon_sym_SEMI_SEMI, + ACTIONS(14910), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [315681] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14564), 1, + ACTIONS(14528), 1, anon_sym_PIPE, - ACTIONS(14566), 1, + ACTIONS(14962), 1, anon_sym_RPAREN, - STATE(6567), 1, + STATE(6717), 1, aux_sym_case_item_repeat1, - [315727] = 4, + [315694] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14564), 1, + ACTIONS(14528), 1, anon_sym_PIPE, - ACTIONS(14961), 1, + ACTIONS(14964), 1, anon_sym_RPAREN, - STATE(6599), 1, + STATE(6717), 1, aux_sym_case_item_repeat1, - [315740] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1338), 3, - sym_extglob_pattern, - anon_sym_PIPE, - anon_sym_RPAREN, - [315749] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12337), 1, - anon_sym_PIPE, - ACTIONS(14963), 1, - anon_sym_PIPE_AMP, - STATE(5095), 1, - aux_sym_pipeline_repeat1, - [315762] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1322), 3, - sym_extglob_pattern, - anon_sym_PIPE, - anon_sym_RPAREN, - [315771] = 4, + [315707] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(14965), 1, + ACTIONS(14966), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [315784] = 3, + [315720] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14929), 1, - anon_sym_LBRACK, - ACTIONS(14967), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [315795] = 4, + ACTIONS(14968), 1, + anon_sym_COMMA, + ACTIONS(14970), 1, + anon_sym_RPAREN, + STATE(6581), 1, + aux_sym__for_body_repeat1, + [315733] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(14969), 1, + ACTIONS(14972), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [315808] = 4, + [315746] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(14971), 1, - anon_sym_RPAREN_RPAREN, - STATE(6553), 1, - aux_sym_arithmetic_expansion_repeat1, - [315821] = 3, + ACTIONS(14896), 1, + anon_sym_SEMI_AMP, + ACTIONS(14898), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(14974), 1, + anon_sym_SEMI_SEMI, + [315759] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14929), 1, + ACTIONS(14978), 1, anon_sym_LBRACK, - ACTIONS(14973), 2, + ACTIONS(14976), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [315832] = 4, + [315770] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(14975), 1, + ACTIONS(14980), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [315845] = 4, + [315783] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(14977), 1, - anon_sym_RPAREN_RPAREN, - STATE(6553), 1, - aux_sym_arithmetic_expansion_repeat1, - [315858] = 2, + ACTIONS(14886), 1, + anon_sym_SEMI_AMP, + ACTIONS(14888), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(14982), 1, + anon_sym_SEMI_SEMI, + [315796] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1263), 3, + ACTIONS(14528), 1, anon_sym_PIPE, + ACTIONS(14984), 1, anon_sym_RPAREN, - sym__special_character, - [315867] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14979), 1, - anon_sym_SLASH, - ACTIONS(14981), 1, - anon_sym_RBRACE3, - ACTIONS(14983), 1, - sym__regex_no_slash, - [315880] = 3, + STATE(6717), 1, + aux_sym_case_item_repeat1, + [315809] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14985), 1, - sym__concat, - ACTIONS(6827), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [315891] = 4, + ACTIONS(14856), 1, + anon_sym_SEMI_AMP, + ACTIONS(14858), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(14986), 1, + anon_sym_SEMI_SEMI, + [315822] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12066), 1, + ACTIONS(14528), 1, anon_sym_PIPE, - ACTIONS(14987), 1, - anon_sym_PIPE_AMP, - STATE(4824), 1, - aux_sym_pipeline_repeat1, - [315904] = 3, + ACTIONS(14988), 1, + anon_sym_RPAREN, + STATE(6717), 1, + aux_sym_case_item_repeat1, + [315835] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14989), 1, - sym__concat, - ACTIONS(6818), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [315915] = 4, + ACTIONS(14874), 1, + anon_sym_SEMI_AMP, + ACTIONS(14876), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(14990), 1, + anon_sym_SEMI_SEMI, + [315848] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(14991), 1, + ACTIONS(14992), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [315928] = 4, + [315861] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14993), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(14995), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - STATE(6550), 1, - aux_sym__for_body_repeat1, - [315941] = 4, + ACTIONS(14994), 1, + anon_sym_RPAREN_RPAREN, + STATE(6662), 1, + aux_sym_arithmetic_expansion_repeat1, + [315874] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(14997), 1, + ACTIONS(14996), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [315954] = 4, + [315887] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14938), 1, - anon_sym_COMMA, - ACTIONS(14999), 1, - anon_sym_RPAREN, - STATE(6679), 1, - aux_sym__for_body_repeat1, - [315967] = 4, + ACTIONS(14978), 1, + anon_sym_LBRACK, + ACTIONS(14998), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [315898] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14564), 1, - anon_sym_PIPE, - ACTIONS(15001), 1, + ACTIONS(14968), 1, + anon_sym_COMMA, + ACTIONS(15000), 1, anon_sym_RPAREN, - STATE(6599), 1, - aux_sym_case_item_repeat1, - [315980] = 4, + STATE(6617), 1, + aux_sym__for_body_repeat1, + [315911] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14564), 1, + ACTIONS(14528), 1, anon_sym_PIPE, - ACTIONS(14618), 1, + ACTIONS(15002), 1, anon_sym_RPAREN, - STATE(6676), 1, + STATE(6717), 1, aux_sym_case_item_repeat1, - [315993] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(15003), 1, - anon_sym_RPAREN_RPAREN, - STATE(6553), 1, - aux_sym_arithmetic_expansion_repeat1, - [316006] = 4, + [315924] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(15005), 1, + ACTIONS(15004), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [316019] = 4, + [315937] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(14944), 1, anon_sym_COMMA, - ACTIONS(15007), 1, + ACTIONS(15006), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, - aux_sym_arithmetic_expansion_repeat1, - [316032] = 4, + STATE(6688), 1, + aux_sym__for_body_repeat1, + [315950] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14564), 1, + ACTIONS(14528), 1, anon_sym_PIPE, - ACTIONS(15009), 1, + ACTIONS(15008), 1, anon_sym_RPAREN, - STATE(6599), 1, + STATE(6717), 1, aux_sym_case_item_repeat1, - [316045] = 4, + [315963] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14564), 1, + ACTIONS(1358), 3, + sym_extglob_pattern, anon_sym_PIPE, - ACTIONS(15011), 1, anon_sym_RPAREN, - STATE(6599), 1, - aux_sym_case_item_repeat1, - [316058] = 4, + [315972] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14564), 1, - anon_sym_PIPE, - ACTIONS(15013), 1, - anon_sym_RPAREN, - STATE(6599), 1, - aux_sym_case_item_repeat1, - [316071] = 4, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(15010), 1, + anon_sym_RPAREN_RPAREN, + STATE(6662), 1, + aux_sym_arithmetic_expansion_repeat1, + [315985] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14564), 1, + ACTIONS(12286), 1, anon_sym_PIPE, - ACTIONS(15015), 1, - anon_sym_RPAREN, - STATE(6599), 1, - aux_sym_case_item_repeat1, - [316084] = 4, + ACTIONS(15012), 1, + anon_sym_PIPE_AMP, + STATE(4995), 1, + aux_sym_pipeline_repeat1, + [315998] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15017), 1, - anon_sym_PIPE, - ACTIONS(15020), 1, - anon_sym_RPAREN, - STATE(6599), 1, - aux_sym_case_item_repeat1, - [316097] = 4, + ACTIONS(14978), 1, + anon_sym_LBRACK, + ACTIONS(15014), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [316009] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(15022), 1, + ACTIONS(15016), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, + aux_sym_arithmetic_expansion_repeat1, + [316022] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14978), 1, + anon_sym_LBRACK, + ACTIONS(15018), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [316033] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(15020), 1, + anon_sym_RPAREN_RPAREN, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [316110] = 4, + [316046] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(14944), 1, anon_sym_COMMA, - ACTIONS(15024), 1, + ACTIONS(15022), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, - aux_sym_arithmetic_expansion_repeat1, - [316123] = 4, + STATE(6551), 1, + aux_sym__for_body_repeat1, + [316059] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(14944), 1, anon_sym_COMMA, - ACTIONS(15026), 1, + ACTIONS(15024), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, - aux_sym_arithmetic_expansion_repeat1, - [316136] = 3, + STATE(6689), 1, + aux_sym__for_body_repeat1, + [316072] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14929), 1, + ACTIONS(14978), 1, anon_sym_LBRACK, - ACTIONS(15028), 2, + ACTIONS(15026), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [316147] = 3, + [316083] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14929), 1, + ACTIONS(15028), 1, + anon_sym_SEMI_SEMI, + ACTIONS(14919), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [316094] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14978), 1, anon_sym_LBRACK, ACTIONS(15030), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [316158] = 4, + [316105] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14938), 1, + ACTIONS(6897), 1, anon_sym_COMMA, ACTIONS(15032), 1, - anon_sym_RPAREN, - STATE(6589), 1, - aux_sym__for_body_repeat1, - [316171] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(15034), 1, - anon_sym_RPAREN_RPAREN, - STATE(6553), 1, - aux_sym_arithmetic_expansion_repeat1, - [316184] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(15036), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [316197] = 4, + [316118] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(14944), 1, anon_sym_COMMA, - ACTIONS(15038), 1, + ACTIONS(15034), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, - aux_sym_arithmetic_expansion_repeat1, - [316210] = 3, + STATE(6561), 1, + aux_sym__for_body_repeat1, + [316131] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15040), 1, - sym__concat, - ACTIONS(6836), 2, + ACTIONS(14978), 1, + anon_sym_LBRACK, + ACTIONS(15036), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [316221] = 3, + [316142] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15042), 1, - sym__concat, - ACTIONS(6842), 2, + ACTIONS(14978), 1, + anon_sym_LBRACK, + ACTIONS(15038), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [316232] = 3, + [316153] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15044), 1, - anon_sym_SEMI_SEMI, - ACTIONS(14910), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [316243] = 4, + ACTIONS(14978), 1, + anon_sym_LBRACK, + ACTIONS(15040), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [316164] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(15046), 1, + ACTIONS(15042), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [316256] = 4, + [316177] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14978), 1, + anon_sym_LBRACK, + ACTIONS(15044), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [316188] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(15048), 1, + ACTIONS(15046), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [316269] = 4, + [316201] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(12304), 1, - anon_sym_PIPE, - ACTIONS(15050), 1, - anon_sym_PIPE_AMP, - STATE(5036), 1, - aux_sym_pipeline_repeat1, - [316282] = 2, + ACTIONS(14978), 1, + anon_sym_LBRACK, + ACTIONS(15048), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [316212] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1294), 3, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_RBRACE3, - [316291] = 3, + ACTIONS(14978), 1, + anon_sym_LBRACK, + ACTIONS(15050), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [316223] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14929), 1, + ACTIONS(14978), 1, anon_sym_LBRACK, ACTIONS(15052), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [316302] = 4, + [316234] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, ACTIONS(15054), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [316315] = 4, + [316247] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14995), 1, - anon_sym_COMMA, - ACTIONS(15056), 1, - anon_sym_RPAREN_RPAREN, - STATE(6681), 1, - aux_sym__for_body_repeat1, - [316328] = 3, + ACTIONS(14978), 1, + anon_sym_LBRACK, + ACTIONS(15056), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [316258] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14929), 1, + ACTIONS(14978), 1, anon_sym_LBRACK, ACTIONS(15058), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [316339] = 4, + [316269] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14843), 1, - anon_sym_SEMI_AMP, - ACTIONS(14845), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(15060), 1, - anon_sym_SEMI_SEMI, - [316352] = 4, + ACTIONS(14978), 1, + anon_sym_LBRACK, + ACTIONS(15060), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [316280] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, ACTIONS(15062), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [316365] = 4, + [316293] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, ACTIONS(15064), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [316378] = 4, + [316306] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, ACTIONS(15066), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [316391] = 4, + [316319] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(15068), 1, - anon_sym_RPAREN_RPAREN, - STATE(6553), 1, - aux_sym_arithmetic_expansion_repeat1, - [316404] = 4, + ACTIONS(14978), 1, + anon_sym_LBRACK, + ACTIONS(15068), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [316330] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, + ACTIONS(14744), 1, + anon_sym_RPAREN, ACTIONS(15070), 1, - anon_sym_RPAREN_RPAREN, - STATE(6553), 1, - aux_sym_arithmetic_expansion_repeat1, - [316417] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14995), 1, anon_sym_COMMA, - ACTIONS(15072), 1, - anon_sym_RPAREN_RPAREN, - STATE(6550), 1, + STATE(6617), 1, aux_sym__for_body_repeat1, - [316430] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14564), 1, - anon_sym_PIPE, - ACTIONS(15074), 1, - anon_sym_RPAREN, - STATE(6599), 1, - aux_sym_case_item_repeat1, - [316443] = 3, + [316343] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14929), 1, + ACTIONS(14978), 1, anon_sym_LBRACK, - ACTIONS(15076), 2, + ACTIONS(15073), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [316454] = 4, + [316354] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(15078), 1, - anon_sym_RPAREN_RPAREN, - STATE(6553), 1, - aux_sym_arithmetic_expansion_repeat1, - [316467] = 4, + ACTIONS(14978), 1, + anon_sym_LBRACK, + ACTIONS(15075), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [316365] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(15080), 1, + ACTIONS(15077), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [316480] = 3, + [316378] = 2, ACTIONS(71), 1, sym_comment, - STATE(6475), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14590), 2, - sym__concat, - aux_sym_concatenation_token1, - [316491] = 4, + ACTIONS(1274), 3, + anon_sym_PIPE, + anon_sym_RPAREN, + sym__special_character, + [316387] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14995), 1, + ACTIONS(14944), 1, anon_sym_COMMA, - ACTIONS(15082), 1, + ACTIONS(15079), 1, anon_sym_RPAREN_RPAREN, - STATE(6587), 1, + STATE(6593), 1, aux_sym__for_body_repeat1, - [316504] = 4, + [316400] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(15084), 1, - anon_sym_RPAREN_RPAREN, - STATE(6553), 1, - aux_sym_arithmetic_expansion_repeat1, - [316517] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14929), 1, + ACTIONS(14978), 1, anon_sym_LBRACK, - ACTIONS(15086), 2, + ACTIONS(15081), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [316528] = 2, + [316411] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1354), 3, - sym__regex_no_slash, - anon_sym_SLASH, - anon_sym_RBRACE3, - [316537] = 3, + ACTIONS(14528), 1, + anon_sym_PIPE, + ACTIONS(15083), 1, + anon_sym_RPAREN, + STATE(6717), 1, + aux_sym_case_item_repeat1, + [316424] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14929), 1, - anon_sym_LBRACK, - ACTIONS(15088), 2, + ACTIONS(15085), 1, + sym__concat, + ACTIONS(6835), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [316548] = 4, + [316435] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14886), 1, - anon_sym_SEMI_AMP, - ACTIONS(14888), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(15090), 1, - anon_sym_SEMI_SEMI, - [316561] = 3, + ACTIONS(14944), 1, + anon_sym_COMMA, + ACTIONS(15087), 1, + anon_sym_RPAREN_RPAREN, + STATE(6551), 1, + aux_sym__for_body_repeat1, + [316448] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14929), 1, - anon_sym_LBRACK, - ACTIONS(15092), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [316572] = 4, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(15089), 1, + anon_sym_RPAREN_RPAREN, + STATE(6662), 1, + aux_sym_arithmetic_expansion_repeat1, + [316461] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(15094), 1, + ACTIONS(15091), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [316585] = 4, + [316474] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14938), 1, - anon_sym_COMMA, - ACTIONS(15096), 1, + ACTIONS(1346), 3, + sym_extglob_pattern, + anon_sym_PIPE, anon_sym_RPAREN, - STATE(6679), 1, - aux_sym__for_body_repeat1, - [316598] = 3, + [316483] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14929), 1, - anon_sym_LBRACK, - ACTIONS(15098), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [316609] = 4, + ACTIONS(1358), 3, + sym_extglob_pattern, + anon_sym_PIPE, + anon_sym_RPAREN, + [316492] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(15100), 1, - anon_sym_RPAREN_RPAREN, - STATE(6553), 1, - aux_sym_arithmetic_expansion_repeat1, - [316622] = 4, + ACTIONS(14528), 1, + anon_sym_PIPE, + ACTIONS(15093), 1, + anon_sym_RPAREN, + STATE(6717), 1, + aux_sym_case_item_repeat1, + [316505] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(15102), 1, - anon_sym_RPAREN_RPAREN, - STATE(6553), 1, - aux_sym_arithmetic_expansion_repeat1, - [316635] = 4, + ACTIONS(12316), 1, + anon_sym_PIPE, + ACTIONS(15095), 1, + anon_sym_PIPE_AMP, + STATE(5077), 1, + aux_sym_pipeline_repeat1, + [316518] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(15104), 1, + ACTIONS(15097), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [316648] = 2, + [316531] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1342), 3, - sym__regex_no_slash, - anon_sym_SLASH, - anon_sym_RBRACE3, - [316657] = 4, + ACTIONS(15099), 1, + sym__concat, + ACTIONS(6817), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [316542] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14995), 1, - anon_sym_COMMA, - ACTIONS(15106), 1, - anon_sym_RPAREN_RPAREN, - STATE(6550), 1, - aux_sym__for_body_repeat1, - [316670] = 4, + ACTIONS(14528), 1, + anon_sym_PIPE, + ACTIONS(15101), 1, + anon_sym_RPAREN, + STATE(6717), 1, + aux_sym_case_item_repeat1, + [316555] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(15108), 1, + ACTIONS(15103), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [316683] = 4, + [316568] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14995), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(15110), 1, + ACTIONS(15105), 1, anon_sym_RPAREN_RPAREN, - STATE(6626), 1, - aux_sym__for_body_repeat1, - [316696] = 3, + STATE(6662), 1, + aux_sym_arithmetic_expansion_repeat1, + [316581] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15112), 1, - anon_sym_SEMI_SEMI, - ACTIONS(14916), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [316707] = 4, + ACTIONS(14528), 1, + anon_sym_PIPE, + ACTIONS(14598), 1, + anon_sym_RPAREN, + STATE(6683), 1, + aux_sym_case_item_repeat1, + [316594] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14978), 1, + anon_sym_LBRACK, + ACTIONS(15107), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [316605] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(15114), 1, + ACTIONS(15109), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [316720] = 3, + [316618] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(1261), 1, - sym__special_character, - ACTIONS(1263), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - [316731] = 4, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(15111), 1, + anon_sym_RPAREN_RPAREN, + STATE(6662), 1, + aux_sym_arithmetic_expansion_repeat1, + [316631] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14564), 1, + ACTIONS(1334), 3, + sym_extglob_pattern, anon_sym_PIPE, - ACTIONS(15116), 1, anon_sym_RPAREN, - STATE(6599), 1, - aux_sym_case_item_repeat1, - [316744] = 4, + [316640] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(14944), 1, anon_sym_COMMA, - ACTIONS(15118), 1, + ACTIONS(15113), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, - aux_sym_arithmetic_expansion_repeat1, - [316757] = 4, + STATE(6551), 1, + aux_sym__for_body_repeat1, + [316653] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14995), 1, + ACTIONS(14944), 1, anon_sym_COMMA, - ACTIONS(15120), 1, + ACTIONS(15115), 1, anon_sym_RPAREN_RPAREN, - STATE(6550), 1, + STATE(6551), 1, aux_sym__for_body_repeat1, - [316770] = 4, + [316666] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(14944), 1, anon_sym_COMMA, - ACTIONS(15122), 1, + ACTIONS(15117), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, - aux_sym_arithmetic_expansion_repeat1, - [316783] = 4, + STATE(6555), 1, + aux_sym__for_body_repeat1, + [316679] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(15124), 1, + ACTIONS(15119), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [316796] = 4, + [316692] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(14968), 1, anon_sym_COMMA, - ACTIONS(15126), 1, - anon_sym_RPAREN_RPAREN, - STATE(6553), 1, - aux_sym_arithmetic_expansion_repeat1, - [316809] = 4, + ACTIONS(15121), 1, + anon_sym_RPAREN, + STATE(6617), 1, + aux_sym__for_body_repeat1, + [316705] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14995), 1, - anon_sym_COMMA, - ACTIONS(15128), 1, - anon_sym_RPAREN_RPAREN, - STATE(6654), 1, - aux_sym__for_body_repeat1, - [316822] = 4, + ACTIONS(15123), 1, + anon_sym_SLASH, + ACTIONS(15125), 1, + anon_sym_RBRACE3, + ACTIONS(15127), 1, + sym__regex_no_slash, + [316718] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14938), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(15130), 1, - anon_sym_RPAREN, - STATE(6679), 1, - aux_sym__for_body_repeat1, - [316835] = 4, + ACTIONS(15129), 1, + anon_sym_RPAREN_RPAREN, + STATE(6662), 1, + aux_sym_arithmetic_expansion_repeat1, + [316731] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(15132), 1, + ACTIONS(15131), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [316848] = 4, + [316744] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(15134), 1, + ACTIONS(15133), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [316861] = 3, + [316757] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14929), 1, - anon_sym_LBRACK, - ACTIONS(15136), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [316872] = 2, + ACTIONS(14528), 1, + anon_sym_PIPE, + ACTIONS(15135), 1, + anon_sym_RPAREN, + STATE(6717), 1, + aux_sym_case_item_repeat1, + [316770] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1322), 3, - sym__regex_no_slash, - anon_sym_SLASH, - anon_sym_RBRACE3, - [316881] = 3, + ACTIONS(1354), 3, + sym_extglob_pattern, + anon_sym_PIPE, + anon_sym_RPAREN, + [316779] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14929), 1, - anon_sym_LBRACK, - ACTIONS(15138), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [316892] = 4, + ACTIONS(12342), 1, + anon_sym_PIPE, + ACTIONS(15137), 1, + anon_sym_PIPE_AMP, + STATE(5096), 1, + aux_sym_pipeline_repeat1, + [316792] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14995), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(15140), 1, + ACTIONS(15139), 1, anon_sym_RPAREN_RPAREN, - STATE(6706), 1, - aux_sym__for_body_repeat1, - [316905] = 3, + STATE(6662), 1, + aux_sym_arithmetic_expansion_repeat1, + [316805] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15142), 1, - anon_sym_SEMI_SEMI, - ACTIONS(14904), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [316916] = 4, + ACTIONS(14528), 1, + anon_sym_PIPE, + ACTIONS(15141), 1, + anon_sym_RPAREN, + STATE(6717), 1, + aux_sym_case_item_repeat1, + [316818] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14872), 1, - anon_sym_SEMI_AMP, - ACTIONS(14874), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(15144), 1, - anon_sym_SEMI_SEMI, - [316929] = 3, + ACTIONS(1326), 3, + sym_extglob_pattern, + anon_sym_PIPE, + anon_sym_RPAREN, + [316827] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14929), 1, - anon_sym_LBRACK, - ACTIONS(15146), 2, + ACTIONS(15143), 1, + sym__concat, + ACTIONS(6857), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [316940] = 4, + [316838] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(15148), 1, + ACTIONS(15145), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [316953] = 4, + [316851] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14995), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(15150), 1, + ACTIONS(15147), 1, anon_sym_RPAREN_RPAREN, - STATE(6550), 1, - aux_sym__for_body_repeat1, - [316966] = 4, + STATE(6662), 1, + aux_sym_arithmetic_expansion_repeat1, + [316864] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14938), 1, + ACTIONS(15149), 1, + sym__concat, + ACTIONS(6863), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [316875] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7484), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(15151), 1, anon_sym_COMMA, - ACTIONS(15152), 1, - anon_sym_RPAREN, - STATE(6659), 1, - aux_sym__for_body_repeat1, - [316979] = 3, + STATE(6662), 1, + aux_sym_arithmetic_expansion_repeat1, + [316888] = 3, ACTIONS(71), 1, sym_comment, ACTIONS(15154), 1, - anon_sym_SEMI_SEMI, - ACTIONS(14898), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [316990] = 3, + sym_extglob_pattern, + ACTIONS(6751), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [316899] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14929), 1, - anon_sym_LBRACK, - ACTIONS(15156), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [317001] = 4, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(15156), 1, + anon_sym_RPAREN_RPAREN, + STATE(6662), 1, + aux_sym_arithmetic_expansion_repeat1, + [316912] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12203), 1, - anon_sym_PIPE, + ACTIONS(6897), 1, + anon_sym_COMMA, ACTIONS(15158), 1, - anon_sym_PIPE_AMP, - STATE(4904), 1, - aux_sym_pipeline_repeat1, - [317014] = 4, + anon_sym_RPAREN_RPAREN, + STATE(6662), 1, + aux_sym_arithmetic_expansion_repeat1, + [316925] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14995), 1, + ACTIONS(14968), 1, anon_sym_COMMA, ACTIONS(15160), 1, - anon_sym_RPAREN_RPAREN, - STATE(6646), 1, + anon_sym_RPAREN, + STATE(6647), 1, aux_sym__for_body_repeat1, - [317027] = 4, + [316938] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14564), 1, - anon_sym_PIPE, + ACTIONS(6897), 1, + anon_sym_COMMA, ACTIONS(15162), 1, - anon_sym_RPAREN, - STATE(6599), 1, - aux_sym_case_item_repeat1, - [317040] = 3, + anon_sym_RPAREN_RPAREN, + STATE(6662), 1, + aux_sym_arithmetic_expansion_repeat1, + [316951] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(15164), 1, - sym_extglob_pattern, - ACTIONS(6749), 2, + ACTIONS(14528), 1, anon_sym_PIPE, + ACTIONS(14704), 1, anon_sym_RPAREN, - [317051] = 4, + STATE(6652), 1, + aux_sym_case_item_repeat1, + [316964] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14995), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(15166), 1, + ACTIONS(15164), 1, anon_sym_RPAREN_RPAREN, - STATE(6714), 1, - aux_sym__for_body_repeat1, - [317064] = 4, + STATE(6662), 1, + aux_sym_arithmetic_expansion_repeat1, + [316977] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14808), 1, - anon_sym_RPAREN, - ACTIONS(15168), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - STATE(6679), 1, - aux_sym__for_body_repeat1, - [317077] = 4, + ACTIONS(15166), 1, + anon_sym_RPAREN_RPAREN, + STATE(6662), 1, + aux_sym_arithmetic_expansion_repeat1, + [316990] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(15171), 1, + ACTIONS(15168), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [317090] = 4, + [317003] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1318), 3, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_RBRACE3, + [317012] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14995), 1, + ACTIONS(1302), 3, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_RBRACE3, + [317021] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(15173), 1, + ACTIONS(15170), 1, anon_sym_RPAREN_RPAREN, - STATE(6550), 1, - aux_sym__for_body_repeat1, - [317103] = 4, + STATE(6662), 1, + aux_sym_arithmetic_expansion_repeat1, + [317034] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1350), 3, + sym_extglob_pattern, + anon_sym_PIPE, + anon_sym_RPAREN, + [317043] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(15175), 1, + ACTIONS(15172), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [317116] = 4, + [317056] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(14944), 1, anon_sym_COMMA, - ACTIONS(15177), 1, + ACTIONS(15174), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, - aux_sym_arithmetic_expansion_repeat1, - [317129] = 4, + STATE(6551), 1, + aux_sym__for_body_repeat1, + [317069] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(14944), 1, anon_sym_COMMA, - ACTIONS(15179), 1, + ACTIONS(15176), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, - aux_sym_arithmetic_expansion_repeat1, - [317142] = 4, + STATE(6643), 1, + aux_sym__for_body_repeat1, + [317082] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(15181), 1, + ACTIONS(15178), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [317155] = 3, + [317095] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14929), 1, - anon_sym_LBRACK, - ACTIONS(15183), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [317166] = 4, + ACTIONS(1272), 1, + sym__special_character, + ACTIONS(1274), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [317106] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(15185), 1, + ACTIONS(15180), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [317179] = 4, + [317119] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, - anon_sym_COMMA, - ACTIONS(15187), 1, - anon_sym_RPAREN_RPAREN, - STATE(6553), 1, - aux_sym_arithmetic_expansion_repeat1, - [317192] = 4, + ACTIONS(14528), 1, + anon_sym_PIPE, + ACTIONS(15182), 1, + anon_sym_RPAREN, + STATE(6717), 1, + aux_sym_case_item_repeat1, + [317132] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14528), 1, + anon_sym_PIPE, + ACTIONS(15184), 1, + anon_sym_RPAREN, + STATE(6717), 1, + aux_sym_case_item_repeat1, + [317145] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12994), 1, + anon_sym_PIPE, + ACTIONS(12996), 1, + anon_sym_PIPE_AMP, + STATE(5573), 1, + aux_sym_pipeline_repeat1, + [317158] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14995), 1, + ACTIONS(14944), 1, anon_sym_COMMA, - ACTIONS(15189), 1, + ACTIONS(15186), 1, anon_sym_RPAREN_RPAREN, - STATE(6550), 1, + STATE(6644), 1, aux_sym__for_body_repeat1, - [317205] = 4, + [317171] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14920), 1, - anon_sym_SEMI_AMP, - ACTIONS(14922), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(15191), 1, - anon_sym_SEMI_SEMI, - [317218] = 4, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(15188), 1, + anon_sym_RPAREN_RPAREN, + STATE(6662), 1, + aux_sym_arithmetic_expansion_repeat1, + [317184] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(15193), 1, + ACTIONS(15190), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [317231] = 4, + [317197] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(14944), 1, anon_sym_COMMA, - ACTIONS(15195), 1, + ACTIONS(15192), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, - aux_sym_arithmetic_expansion_repeat1, - [317244] = 4, + STATE(6551), 1, + aux_sym__for_body_repeat1, + [317210] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(14944), 1, anon_sym_COMMA, - ACTIONS(15197), 1, + ACTIONS(15194), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6551), 1, + aux_sym__for_body_repeat1, + [317223] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(15196), 1, + anon_sym_RPAREN_RPAREN, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [317257] = 4, + [317236] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14564), 1, + ACTIONS(14528), 1, anon_sym_PIPE, - ACTIONS(15199), 1, + ACTIONS(15198), 1, anon_sym_RPAREN, - STATE(6599), 1, + STATE(6717), 1, aux_sym_case_item_repeat1, - [317270] = 4, + [317249] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14564), 1, + ACTIONS(1338), 3, + sym_extglob_pattern, anon_sym_PIPE, - ACTIONS(14570), 1, anon_sym_RPAREN, - STATE(6709), 1, - aux_sym_case_item_repeat1, - [317283] = 3, + [317258] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14929), 1, - anon_sym_LBRACK, - ACTIONS(15201), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [317294] = 4, + ACTIONS(14528), 1, + anon_sym_PIPE, + ACTIONS(14636), 1, + anon_sym_RPAREN, + STATE(6564), 1, + aux_sym_case_item_repeat1, + [317271] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(15203), 1, + ACTIONS(15200), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [317307] = 4, + [317284] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(15205), 1, + ACTIONS(15202), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [317320] = 4, + [317297] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(15207), 1, + ACTIONS(15204), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [317333] = 4, + [317310] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14835), 1, - anon_sym_SEMI_AMP, - ACTIONS(14837), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(15209), 1, - anon_sym_SEMI_SEMI, - [317346] = 4, + ACTIONS(1326), 3, + sym__regex_no_slash, + anon_sym_SLASH, + anon_sym_RBRACE3, + [317319] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(15211), 1, + ACTIONS(15206), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [317359] = 4, + [317332] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1334), 3, + sym__regex_no_slash, + anon_sym_SLASH, + anon_sym_RBRACE3, + [317341] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14995), 1, + ACTIONS(14944), 1, anon_sym_COMMA, - ACTIONS(15213), 1, + ACTIONS(15208), 1, anon_sym_RPAREN_RPAREN, - STATE(6670), 1, + STATE(6626), 1, aux_sym__for_body_repeat1, - [317372] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14564), 1, - anon_sym_PIPE, - ACTIONS(15215), 1, - anon_sym_RPAREN, - STATE(6599), 1, - aux_sym_case_item_repeat1, - [317385] = 3, + [317354] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14929), 1, + ACTIONS(14978), 1, anon_sym_LBRACK, - ACTIONS(15217), 2, + ACTIONS(15210), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [317396] = 3, + [317365] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14929), 1, - anon_sym_LBRACK, - ACTIONS(15219), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [317407] = 4, + ACTIONS(1338), 3, + sym__regex_no_slash, + anon_sym_SLASH, + anon_sym_RBRACE3, + [317374] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14995), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(15221), 1, + ACTIONS(15212), 1, anon_sym_RPAREN_RPAREN, - STATE(6550), 1, - aux_sym__for_body_repeat1, - [317420] = 4, + STATE(6662), 1, + aux_sym_arithmetic_expansion_repeat1, + [317387] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14564), 1, + ACTIONS(14902), 1, + anon_sym_SEMI_AMP, + ACTIONS(14904), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(15214), 1, + anon_sym_SEMI_SEMI, + [317400] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12381), 1, anon_sym_PIPE, - ACTIONS(15223), 1, - anon_sym_RPAREN, - STATE(6599), 1, - aux_sym_case_item_repeat1, - [317433] = 4, + ACTIONS(15216), 1, + anon_sym_PIPE_AMP, + STATE(5132), 1, + aux_sym_pipeline_repeat1, + [317413] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(15225), 1, + ACTIONS(15218), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [317446] = 4, + [317426] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14564), 1, - anon_sym_PIPE, - ACTIONS(15227), 1, - anon_sym_RPAREN, - STATE(6599), 1, - aux_sym_case_item_repeat1, - [317459] = 4, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(15220), 1, + anon_sym_RPAREN_RPAREN, + STATE(6662), 1, + aux_sym_arithmetic_expansion_repeat1, + [317439] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14564), 1, - anon_sym_PIPE, - ACTIONS(15229), 1, - anon_sym_RPAREN, - STATE(6599), 1, - aux_sym_case_item_repeat1, - [317472] = 4, + ACTIONS(6897), 1, + anon_sym_COMMA, + ACTIONS(15222), 1, + anon_sym_RPAREN_RPAREN, + STATE(6662), 1, + aux_sym_arithmetic_expansion_repeat1, + [317452] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14564), 1, + ACTIONS(12314), 1, anon_sym_PIPE, - ACTIONS(15231), 1, - anon_sym_RPAREN, - STATE(6599), 1, - aux_sym_case_item_repeat1, - [317485] = 4, + ACTIONS(15224), 1, + anon_sym_PIPE_AMP, + STATE(5075), 1, + aux_sym_pipeline_repeat1, + [317465] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(15233), 1, + ACTIONS(15226), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [317498] = 4, + [317478] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14995), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(15235), 1, + ACTIONS(15228), 1, anon_sym_RPAREN_RPAREN, - STATE(6689), 1, - aux_sym__for_body_repeat1, - [317511] = 4, + STATE(6662), 1, + aux_sym_arithmetic_expansion_repeat1, + [317491] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14995), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(15237), 1, + ACTIONS(15230), 1, anon_sym_RPAREN_RPAREN, - STATE(6550), 1, - aux_sym__for_body_repeat1, - [317524] = 4, + STATE(6662), 1, + aux_sym_arithmetic_expansion_repeat1, + [317504] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12939), 1, + anon_sym_PIPE, + ACTIONS(15232), 1, + anon_sym_PIPE_AMP, + STATE(5534), 1, + aux_sym_pipeline_repeat1, + [317517] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(14968), 1, anon_sym_COMMA, - ACTIONS(15239), 1, - anon_sym_RPAREN_RPAREN, - STATE(6553), 1, - aux_sym_arithmetic_expansion_repeat1, - [317537] = 4, + ACTIONS(15234), 1, + anon_sym_RPAREN, + STATE(6725), 1, + aux_sym__for_body_repeat1, + [317530] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14878), 1, + ACTIONS(15236), 1, + anon_sym_SEMI_SEMI, + ACTIONS(14925), 2, anon_sym_SEMI_AMP, - ACTIONS(14880), 1, anon_sym_SEMI_SEMI_AMP, - ACTIONS(15241), 1, - anon_sym_SEMI_SEMI, - [317550] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14929), 1, - anon_sym_LBRACK, - ACTIONS(15243), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [317561] = 4, + [317541] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(12588), 1, + ACTIONS(11897), 1, anon_sym_PIPE, - ACTIONS(15245), 1, + ACTIONS(15238), 1, anon_sym_PIPE_AMP, - STATE(5224), 1, + STATE(4681), 1, aux_sym_pipeline_repeat1, - [317574] = 4, + [317554] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14866), 1, - anon_sym_SEMI_AMP, - ACTIONS(14868), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(15247), 1, - anon_sym_SEMI_SEMI, - [317587] = 4, + ACTIONS(15240), 1, + anon_sym_PIPE, + ACTIONS(15243), 1, + anon_sym_RPAREN, + STATE(6717), 1, + aux_sym_case_item_repeat1, + [317567] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(15249), 1, + ACTIONS(15245), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [317600] = 4, + [317580] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + STATE(6420), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(14460), 2, + sym__concat, + aux_sym_concatenation_token1, + [317591] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(15251), 1, + ACTIONS(15247), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - [317613] = 4, + [317604] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14978), 1, + anon_sym_LBRACK, + ACTIONS(15249), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [317615] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14853), 1, + ACTIONS(15251), 1, + anon_sym_SEMI_SEMI, + ACTIONS(14864), 2, anon_sym_SEMI_AMP, - ACTIONS(14855), 1, anon_sym_SEMI_SEMI_AMP, - ACTIONS(15253), 1, - anon_sym_SEMI_SEMI, [317626] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(15255), 1, + ACTIONS(15253), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, [317639] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(6881), 1, + ACTIONS(6897), 1, anon_sym_COMMA, - ACTIONS(15257), 1, + ACTIONS(15255), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, [317652] = 4, ACTIONS(71), 1, sym_comment, - ACTIONS(14564), 1, - anon_sym_PIPE, - ACTIONS(14642), 1, + ACTIONS(14968), 1, + anon_sym_COMMA, + ACTIONS(15257), 1, anon_sym_RPAREN, - STATE(6596), 1, - aux_sym_case_item_repeat1, - [317665] = 2, + STATE(6617), 1, + aux_sym__for_body_repeat1, + [317665] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15136), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [317673] = 2, + ACTIONS(15259), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(15261), 1, + aux_sym__simple_variable_name_token1, + [317675] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15030), 2, + ACTIONS(15263), 1, + anon_sym_SLASH, + ACTIONS(15265), 1, + anon_sym_RBRACE3, + [317685] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6817), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [317681] = 2, + [317693] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(14892), 2, anon_sym_COMMA, anon_sym_RPAREN, - [317689] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15259), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(15261), 1, - aux_sym__simple_variable_name_token1, - [317699] = 3, + [317701] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14790), 1, - anon_sym_do, - STATE(4966), 1, - sym_do_group, + ACTIONS(15058), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, [317709] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15217), 2, + ACTIONS(15018), 2, anon_sym_EQ, anon_sym_PLUS_EQ, [317717] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14773), 1, - anon_sym_do, - STATE(4898), 1, - sym_do_group, + ACTIONS(15267), 1, + anon_sym_RBRACE3, + ACTIONS(15269), 1, + sym_regex, [317727] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(7160), 2, + ACTIONS(14998), 2, anon_sym_EQ, anon_sym_PLUS_EQ, [317735] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(7164), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [317743] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6799), 2, - anon_sym_COLON, + ACTIONS(1314), 2, + anon_sym_SLASH, anon_sym_RBRACE3, - [317751] = 2, + [317743] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14927), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [317759] = 2, + ACTIONS(14536), 1, + anon_sym_SLASH, + ACTIONS(14538), 1, + anon_sym_RBRACE3, + [317753] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15138), 2, + ACTIONS(15026), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [317767] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14892), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - [317775] = 2, + [317761] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15201), 2, + ACTIONS(15060), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [317783] = 2, + [317769] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1302), 2, + ACTIONS(15271), 1, anon_sym_SLASH, + ACTIONS(15273), 1, anon_sym_RBRACE3, - [317791] = 2, + [317779] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14808), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - [317799] = 2, + ACTIONS(15275), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(15277), 1, + aux_sym__simple_variable_name_token1, + [317789] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14808), 2, + ACTIONS(14744), 2, anon_sym_COMMA, anon_sym_RPAREN, - [317807] = 3, + [317797] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14734), 1, + ACTIONS(14803), 1, anon_sym_do, - STATE(5089), 1, + STATE(5642), 1, sym_do_group, - [317817] = 3, + [317807] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14773), 1, + ACTIONS(14797), 1, anon_sym_do, - STATE(4940), 1, + STATE(4944), 1, sym_do_group, - [317827] = 3, + [317817] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14734), 1, - anon_sym_do, - STATE(5104), 1, - sym_do_group, - [317837] = 2, + ACTIONS(1326), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [317825] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15183), 2, + ACTIONS(15068), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [317845] = 3, + [317833] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15263), 1, - anon_sym_SLASH, - ACTIONS(15265), 1, - anon_sym_RBRACE3, - [317855] = 3, + ACTIONS(14744), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + [317841] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14767), 1, - anon_sym_SLASH, - ACTIONS(14769), 1, - anon_sym_RBRACE3, - [317865] = 3, + ACTIONS(15073), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [317849] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14979), 1, - anon_sym_SLASH, - ACTIONS(14981), 1, - anon_sym_RBRACE3, - [317875] = 2, + ACTIONS(14785), 1, + anon_sym_do, + STATE(5065), 1, + sym_do_group, + [317859] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15156), 2, + ACTIONS(15030), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [317883] = 2, + [317867] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15088), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [317891] = 3, + ACTIONS(14750), 1, + anon_sym_SLASH, + ACTIONS(14752), 1, + anon_sym_RBRACE3, + [317877] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15267), 1, + ACTIONS(6850), 2, + anon_sym_COLON, + anon_sym_RBRACE3, + [317885] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15279), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(15269), 1, + ACTIONS(15281), 1, aux_sym__simple_variable_name_token1, - [317901] = 2, + [317895] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1354), 2, + ACTIONS(15036), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [317903] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15283), 1, anon_sym_SLASH, + ACTIONS(15285), 1, anon_sym_RBRACE3, - [317909] = 2, + [317913] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14933), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [317917] = 3, + ACTIONS(14793), 1, + anon_sym_do, + STATE(4928), 1, + sym_do_group, + [317923] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15271), 1, + ACTIONS(14449), 1, + anon_sym_COLON, + ACTIONS(14451), 1, anon_sym_RBRACE3, - ACTIONS(15273), 1, - sym_regex, - [317927] = 2, + [317933] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15092), 2, + ACTIONS(15075), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [317935] = 2, + [317941] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15146), 2, + ACTIONS(15038), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [317943] = 2, + [317949] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15219), 2, + ACTIONS(15210), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [317951] = 2, + [317957] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15243), 2, + ACTIONS(7052), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [317959] = 2, + [317965] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15098), 2, + ACTIONS(7071), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [317967] = 2, + [317973] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(1350), 2, + ACTIONS(1298), 2, anon_sym_SLASH, anon_sym_RBRACE3, - [317975] = 2, + [317981] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14849), 2, - anon_sym_COMMA, + ACTIONS(6846), 2, + anon_sym_PIPE, anon_sym_RPAREN, - [317983] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14790), 1, - anon_sym_do, - STATE(5013), 1, - sym_do_group, - [317993] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14780), 1, - anon_sym_SLASH, - ACTIONS(14782), 1, - anon_sym_RBRACE3, - [318003] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1322), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - [318011] = 2, + [317989] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6862), 2, + ACTIONS(14725), 2, anon_sym_PIPE, anon_sym_RPAREN, - [318019] = 2, + [317997] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(1342), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - [318027] = 2, + ACTIONS(14793), 1, + anon_sym_do, + STATE(4982), 1, + sym_do_group, + [318007] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14849), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - [318035] = 2, + ACTIONS(15081), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [318015] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15076), 2, + ACTIONS(14976), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [318043] = 3, + [318023] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14744), 1, + ACTIONS(1334), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [318031] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14803), 1, anon_sym_do, - STATE(5690), 1, + STATE(5679), 1, sym_do_group, - [318053] = 2, + [318041] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15086), 2, + ACTIONS(15044), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [318061] = 2, + [318049] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15058), 2, + ACTIONS(15014), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [318069] = 2, + [318057] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14951), 2, + ACTIONS(15107), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [318077] = 2, + [318065] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14967), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [318085] = 2, + ACTIONS(15287), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(15289), 1, + aux_sym__simple_variable_name_token1, + [318075] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14778), 2, - anon_sym_PIPE, + ACTIONS(14868), 2, + anon_sym_COMMA, anon_sym_RPAREN, - [318093] = 2, + [318083] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(6818), 2, + ACTIONS(15048), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [318101] = 3, + [318091] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15275), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(15277), 1, - aux_sym__simple_variable_name_token1, - [318111] = 2, + ACTIONS(15291), 1, + anon_sym_SLASH, + ACTIONS(15293), 1, + anon_sym_RBRACE3, + [318101] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(6827), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [318119] = 3, + ACTIONS(14797), 1, + anon_sym_do, + STATE(5003), 1, + sym_do_group, + [318111] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15279), 1, + ACTIONS(14787), 1, anon_sym_SLASH, - ACTIONS(15281), 1, - anon_sym_RBRACE3, - [318129] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14439), 1, - anon_sym_COLON, - ACTIONS(14441), 1, + ACTIONS(14789), 1, anon_sym_RBRACE3, - [318139] = 2, + [318121] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15028), 2, + ACTIONS(6835), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [318147] = 3, + [318129] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14658), 1, - anon_sym_SLASH, - ACTIONS(14660), 1, - anon_sym_RBRACE3, - [318157] = 3, + ACTIONS(15050), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [318137] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14744), 1, + ACTIONS(14785), 1, anon_sym_do, - STATE(5661), 1, + STATE(5035), 1, sym_do_group, - [318167] = 3, + [318147] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14716), 1, + ACTIONS(1338), 2, anon_sym_SLASH, - ACTIONS(14718), 1, anon_sym_RBRACE3, - [318177] = 3, + [318155] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15283), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(15285), 1, - aux_sym__simple_variable_name_token1, - [318187] = 2, + ACTIONS(15123), 1, + anon_sym_SLASH, + ACTIONS(15125), 1, + anon_sym_RBRACE3, + [318165] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14892), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + [318173] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14973), 2, + ACTIONS(15052), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [318195] = 3, + [318181] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14588), 1, - anon_sym_SLASH, - ACTIONS(14592), 1, - anon_sym_RBRACE3, - [318205] = 3, + ACTIONS(15249), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [318189] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(14674), 1, + ACTIONS(14494), 1, anon_sym_SLASH, - ACTIONS(14676), 1, + ACTIONS(14496), 1, anon_sym_RBRACE3, - [318215] = 3, + [318199] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15287), 1, + ACTIONS(15056), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [318207] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(14458), 1, anon_sym_SLASH, - ACTIONS(15289), 1, + ACTIONS(14462), 1, anon_sym_RBRACE3, - [318225] = 2, + [318217] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15052), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [318233] = 3, + ACTIONS(14868), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + [318225] = 3, ACTIONS(71), 1, sym_comment, - ACTIONS(15291), 1, + ACTIONS(14746), 1, anon_sym_SLASH, - ACTIONS(15293), 1, + ACTIONS(14748), 1, anon_sym_RBRACE3, + [318235] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(15040), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, [318243] = 2, - ACTIONS(3), 1, + ACTIONS(71), 1, sym_comment, ACTIONS(15295), 1, - aux_sym_heredoc_redirect_token1, + anon_sym_RBRACE3, [318250] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15297), 1, - aux_sym_brace_expression_token1, + anon_sym_RPAREN, [318257] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15299), 1, - anon_sym_BQUOTE, + anon_sym_RBRACE2, [318264] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15301), 1, - anon_sym_BQUOTE, + anon_sym_fi, [318271] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15303), 1, - sym_heredoc_end, + anon_sym_esac, [318278] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15305), 1, - aux_sym_brace_expression_token1, + anon_sym_RBRACE3, [318285] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14478), 1, - anon_sym_RBRACE3, + ACTIONS(15307), 1, + anon_sym_RPAREN, [318292] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15307), 1, - anon_sym_RPAREN, + ACTIONS(14584), 1, + anon_sym_RBRACE3, [318299] = 2, - ACTIONS(71), 1, + ACTIONS(3), 1, sym_comment, ACTIONS(15309), 1, - anon_sym_RBRACE3, + aux_sym_heredoc_redirect_token1, [318306] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15311), 1, - anon_sym_RPAREN, + aux_sym_brace_expression_token1, [318313] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15313), 1, - aux_sym_brace_expression_token1, + anon_sym_RBRACE2, [318320] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15315), 1, - aux_sym_brace_expression_token1, + anon_sym_LBRACK, [318327] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15317), 1, - anon_sym_RPAREN, + anon_sym_BQUOTE, [318334] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15319), 1, - anon_sym_LT_LT_LT, + ACTIONS(15307), 1, + anon_sym_BQUOTE, [318341] = 2, - ACTIONS(3), 1, + ACTIONS(71), 1, sym_comment, - ACTIONS(15321), 1, - aux_sym_heredoc_redirect_token1, + ACTIONS(14756), 1, + anon_sym_RBRACE3, [318348] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15323), 1, + ACTIONS(14756), 1, anon_sym_RBRACE3, [318355] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15307), 1, - anon_sym_BQUOTE, + ACTIONS(15319), 1, + anon_sym_RPAREN, [318362] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15325), 1, - anon_sym_RPAREN, + ACTIONS(15321), 1, + anon_sym_RBRACE2, [318369] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15327), 1, - anon_sym_RBRACE3, + ACTIONS(15323), 1, + aux_sym_brace_expression_token1, [318376] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15329), 1, - aux_sym_brace_expression_token1, + ACTIONS(15325), 1, + anon_sym_BQUOTE, [318383] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15331), 1, - aux_sym_brace_expression_token1, + ACTIONS(15327), 1, + anon_sym_RBRACE3, [318390] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15333), 1, - anon_sym_LT_LT_LT, + ACTIONS(15329), 1, + anon_sym_RPAREN, [318397] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15335), 1, - anon_sym_RBRACE2, + ACTIONS(15331), 1, + anon_sym_RBRACE3, [318404] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15337), 1, - anon_sym_RPAREN, + ACTIONS(15333), 1, + anon_sym_BQUOTE, [318411] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15339), 1, + ACTIONS(15329), 1, anon_sym_BQUOTE, [318418] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15341), 1, - anon_sym_RBRACE2, + ACTIONS(15335), 1, + anon_sym_RPAREN, [318425] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15343), 1, + ACTIONS(15337), 1, anon_sym_RPAREN, [318432] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15337), 1, - anon_sym_BQUOTE, + ACTIONS(15339), 1, + aux_sym_brace_expression_token1, [318439] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15345), 1, - aux_sym_brace_expression_token1, + ACTIONS(15341), 1, + sym_heredoc_end, [318446] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15347), 1, - anon_sym_RPAREN, + ACTIONS(15343), 1, + anon_sym_BQUOTE, [318453] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15349), 1, - anon_sym_BQUOTE, + ACTIONS(15345), 1, + anon_sym_esac, [318460] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15351), 1, - anon_sym_BQUOTE, + ACTIONS(15347), 1, + anon_sym_RBRACE2, [318467] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15353), 1, - anon_sym_esac, + ACTIONS(15349), 1, + anon_sym_RBRACE2, [318474] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14518), 1, + ACTIONS(15351), 1, anon_sym_RBRACE3, [318481] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15355), 1, - sym_heredoc_end, + ACTIONS(15353), 1, + anon_sym_RPAREN, [318488] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15357), 1, + ACTIONS(15337), 1, anon_sym_BQUOTE, [318495] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15359), 1, - anon_sym_RBRACE2, + ACTIONS(15355), 1, + aux_sym_brace_expression_token1, [318502] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15361), 1, - aux_sym_brace_expression_token1, + ACTIONS(15357), 1, + anon_sym_RPAREN, [318509] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15363), 1, - anon_sym_RBRACE2, + ACTIONS(15359), 1, + sym_heredoc_end, [318516] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15349), 1, - anon_sym_RPAREN, + ACTIONS(15361), 1, + anon_sym_BQUOTE, [318523] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15365), 1, - anon_sym_RBRACE3, + ACTIONS(15353), 1, + anon_sym_BQUOTE, [318530] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(8838), 1, - anon_sym_RBRACK, + ACTIONS(15363), 1, + anon_sym_RPAREN, [318537] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(8846), 1, - anon_sym_RBRACK, + ACTIONS(15365), 1, + anon_sym_RBRACK_RBRACK, [318544] = 2, - ACTIONS(3), 1, + ACTIONS(71), 1, sym_comment, - ACTIONS(15367), 1, - aux_sym_heredoc_redirect_token1, + ACTIONS(14735), 1, + anon_sym_RBRACE3, [318551] = 2, - ACTIONS(3), 1, + ACTIONS(71), 1, sym_comment, - ACTIONS(15369), 1, - aux_sym_heredoc_redirect_token1, + ACTIONS(15367), 1, + anon_sym_RBRACE3, [318558] = 2, - ACTIONS(3), 1, + ACTIONS(71), 1, sym_comment, - ACTIONS(15371), 1, - aux_sym_heredoc_redirect_token1, + ACTIONS(15369), 1, + aux_sym_brace_expression_token1, [318565] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15373), 1, - aux_sym_brace_expression_token1, + ACTIONS(15371), 1, + anon_sym_RPAREN, [318572] = 2, - ACTIONS(3), 1, + ACTIONS(71), 1, sym_comment, - ACTIONS(15375), 1, - aux_sym_heredoc_redirect_token1, + ACTIONS(15373), 1, + anon_sym_RBRACE3, [318579] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15377), 1, - anon_sym_BQUOTE, + ACTIONS(15375), 1, + anon_sym_RPAREN, [318586] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15379), 1, - anon_sym_RBRACE3, + ACTIONS(15377), 1, + anon_sym_esac, [318593] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15381), 1, - anon_sym_RBRACE3, + ACTIONS(15379), 1, + anon_sym_BQUOTE, [318600] = 2, - ACTIONS(3), 1, + ACTIONS(71), 1, sym_comment, - ACTIONS(15383), 1, - aux_sym_heredoc_redirect_token1, + ACTIONS(15375), 1, + anon_sym_BQUOTE, [318607] = 2, - ACTIONS(3), 1, + ACTIONS(71), 1, sym_comment, - ACTIONS(15385), 1, - aux_sym_heredoc_redirect_token1, + ACTIONS(15381), 1, + anon_sym_RPAREN, [318614] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15387), 1, - sym_heredoc_end, + ACTIONS(15383), 1, + anon_sym_RBRACE3, [318621] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15389), 1, + ACTIONS(15385), 1, aux_sym_brace_expression_token1, [318628] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15391), 1, - aux_sym_brace_expression_token1, + ACTIONS(15387), 1, + anon_sym_RPAREN, [318635] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15393), 1, - anon_sym_LT_LT_LT, + ACTIONS(15389), 1, + anon_sym_RBRACE3, [318642] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15395), 1, - anon_sym_RPAREN, + ACTIONS(15391), 1, + anon_sym_esac, [318649] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15397), 1, - anon_sym_BQUOTE, + ACTIONS(15393), 1, + anon_sym_RBRACE2, [318656] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15399), 1, - anon_sym_esac, + ACTIONS(14564), 1, + anon_sym_RBRACE3, [318663] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15401), 1, - anon_sym_RBRACE2, + ACTIONS(15395), 1, + anon_sym_esac, [318670] = 2, - ACTIONS(3), 1, + ACTIONS(71), 1, sym_comment, - ACTIONS(15403), 1, - aux_sym_heredoc_redirect_token1, + ACTIONS(15397), 1, + anon_sym_esac, [318677] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15405), 1, - anon_sym_BQUOTE, + ACTIONS(15399), 1, + anon_sym_RPAREN, [318684] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15395), 1, - anon_sym_BQUOTE, + ACTIONS(15401), 1, + aux_sym_brace_expression_token1, [318691] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15407), 1, - aux_sym_brace_expression_token1, + ACTIONS(15403), 1, + anon_sym_BQUOTE, [318698] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15409), 1, - anon_sym_RPAREN, + ACTIONS(14594), 1, + anon_sym_RBRACE3, [318705] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15411), 1, - anon_sym_RBRACE2, + ACTIONS(15405), 1, + anon_sym_RBRACE3, [318712] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15413), 1, + ACTIONS(15407), 1, anon_sym_RPAREN, [318719] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15415), 1, + ACTIONS(14564), 1, anon_sym_RBRACE3, [318726] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15417), 1, - anon_sym_RPAREN, + ACTIONS(15409), 1, + anon_sym_BQUOTE, [318733] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14626), 1, - anon_sym_fi, + ACTIONS(15407), 1, + anon_sym_BQUOTE, [318740] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15419), 1, - anon_sym_BQUOTE, + ACTIONS(15411), 1, + sym_word, [318747] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15417), 1, - anon_sym_BQUOTE, + ACTIONS(15413), 1, + aux_sym_brace_expression_token1, [318754] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15421), 1, - aux_sym_brace_expression_token1, + ACTIONS(15387), 1, + anon_sym_BQUOTE, [318761] = 2, - ACTIONS(3), 1, + ACTIONS(71), 1, sym_comment, - ACTIONS(15423), 1, - aux_sym_heredoc_redirect_token1, + ACTIONS(15415), 1, + anon_sym_RBRACE3, [318768] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15425), 1, + ACTIONS(15417), 1, anon_sym_RPAREN, [318775] = 2, - ACTIONS(3), 1, + ACTIONS(71), 1, sym_comment, - ACTIONS(15427), 1, - aux_sym_heredoc_redirect_token1, + ACTIONS(15419), 1, + anon_sym_RPAREN, [318782] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15429), 1, - anon_sym_RBRACE2, + ACTIONS(15421), 1, + anon_sym_BQUOTE, [318789] = 2, - ACTIONS(3), 1, + ACTIONS(71), 1, sym_comment, - ACTIONS(15431), 1, - aux_sym_heredoc_redirect_token1, + ACTIONS(15417), 1, + anon_sym_BQUOTE, [318796] = 2, - ACTIONS(3), 1, + ACTIONS(71), 1, sym_comment, - ACTIONS(15433), 1, - aux_sym_heredoc_redirect_token1, + ACTIONS(15423), 1, + anon_sym_RPAREN, [318803] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15435), 1, + ACTIONS(15425), 1, anon_sym_RPAREN, [318810] = 2, - ACTIONS(3), 1, + ACTIONS(71), 1, sym_comment, - ACTIONS(15437), 1, - aux_sym_heredoc_redirect_token1, + ACTIONS(15427), 1, + aux_sym_brace_expression_token1, [318817] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15439), 1, - aux_sym_brace_expression_token1, + ACTIONS(15429), 1, + anon_sym_BQUOTE, [318824] = 2, - ACTIONS(3), 1, + ACTIONS(71), 1, sym_comment, - ACTIONS(15441), 1, - aux_sym_heredoc_redirect_token1, + ACTIONS(15431), 1, + anon_sym_esac, [318831] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14827), 1, - anon_sym_RBRACE3, + ACTIONS(15433), 1, + anon_sym_RBRACE2, [318838] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15443), 1, - anon_sym_BQUOTE, + ACTIONS(15435), 1, + anon_sym_RBRACE2, [318845] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15445), 1, - anon_sym_BQUOTE, + ACTIONS(15437), 1, + anon_sym_RBRACE2, [318852] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15443), 1, - anon_sym_RPAREN, + ACTIONS(15439), 1, + anon_sym_RBRACE2, [318859] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15447), 1, - anon_sym_BQUOTE, + ACTIONS(14502), 1, + anon_sym_fi, [318866] = 2, - ACTIONS(71), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(15449), 1, - anon_sym_BQUOTE, + ACTIONS(15441), 1, + aux_sym_heredoc_redirect_token1, [318873] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15451), 1, - anon_sym_in, + ACTIONS(15443), 1, + aux_sym_brace_expression_token1, [318880] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15453), 1, - aux_sym_brace_expression_token1, + ACTIONS(15445), 1, + anon_sym_BQUOTE, [318887] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15455), 1, - anon_sym_in, + ACTIONS(14735), 1, + anon_sym_RBRACE3, [318894] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15457), 1, - anon_sym_RBRACE2, + ACTIONS(15399), 1, + anon_sym_BQUOTE, [318901] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15459), 1, - anon_sym_RPAREN_RPAREN, + ACTIONS(14735), 1, + anon_sym_RBRACE3, [318908] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15461), 1, - aux_sym_brace_expression_token1, + ACTIONS(15447), 1, + anon_sym_esac, [318915] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15447), 1, - anon_sym_RPAREN, + ACTIONS(8908), 1, + anon_sym_RBRACK, [318922] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15463), 1, - anon_sym_LT_LT_LT, + ACTIONS(8856), 1, + anon_sym_RBRACK, [318929] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15465), 1, - anon_sym_RPAREN, + ACTIONS(15449), 1, + anon_sym_RBRACE3, [318936] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15467), 1, - anon_sym_RBRACE3, + ACTIONS(15451), 1, + aux_sym_brace_expression_token1, [318943] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15469), 1, - aux_sym_brace_expression_token1, + ACTIONS(14662), 1, + anon_sym_fi, [318950] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15471), 1, - anon_sym_RPAREN, + ACTIONS(15453), 1, + anon_sym_RBRACE3, [318957] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15473), 1, - sym_word, + ACTIONS(15455), 1, + anon_sym_RPAREN, [318964] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15475), 1, - anon_sym_RBRACE3, + ACTIONS(15457), 1, + anon_sym_RBRACE2, [318971] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15477), 1, - anon_sym_RPAREN, + ACTIONS(15459), 1, + anon_sym_BQUOTE, [318978] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15479), 1, + ACTIONS(15455), 1, anon_sym_BQUOTE, [318985] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15481), 1, - anon_sym_esac, + ACTIONS(15461), 1, + anon_sym_RPAREN, [318992] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15483), 1, - anon_sym_BQUOTE, + ACTIONS(15463), 1, + anon_sym_RPAREN, [318999] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15485), 1, - anon_sym_RBRACE3, + ACTIONS(15465), 1, + aux_sym_brace_expression_token1, [319006] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15487), 1, - aux_sym_brace_expression_token1, + ACTIONS(15467), 1, + anon_sym_RPAREN, [319013] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15489), 1, - anon_sym_RPAREN, + ACTIONS(15469), 1, + anon_sym_RBRACE3, [319020] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15491), 1, - anon_sym_BQUOTE, + ACTIONS(14564), 1, + anon_sym_RBRACE3, [319027] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15493), 1, - anon_sym_RBRACE3, + ACTIONS(15471), 1, + anon_sym_RBRACE2, [319034] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15495), 1, - anon_sym_BQUOTE, + ACTIONS(15473), 1, + anon_sym_esac, [319041] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15483), 1, - anon_sym_RPAREN, + ACTIONS(15475), 1, + anon_sym_in, [319048] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15489), 1, - anon_sym_BQUOTE, + ACTIONS(15477), 1, + anon_sym_RBRACE3, [319055] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15497), 1, - anon_sym_RBRACE3, + ACTIONS(15479), 1, + anon_sym_RPAREN, [319062] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15499), 1, - anon_sym_RPAREN, + ACTIONS(15481), 1, + aux_sym_brace_expression_token1, [319069] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15501), 1, - aux_sym_brace_expression_token1, + ACTIONS(15483), 1, + anon_sym_LT_LT_LT, [319076] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15325), 1, - anon_sym_BQUOTE, + ACTIONS(14735), 1, + anon_sym_RBRACE3, [319083] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15503), 1, - anon_sym_RBRACE2, + ACTIONS(15485), 1, + aux_sym_brace_expression_token1, [319090] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15505), 1, - anon_sym_RBRACK_RBRACK, + ACTIONS(15487), 1, + anon_sym_RPAREN_RPAREN, [319097] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15507), 1, - anon_sym_RPAREN, + ACTIONS(15489), 1, + anon_sym_RBRACE3, [319104] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15509), 1, + ACTIONS(15491), 1, anon_sym_RPAREN, [319111] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15511), 1, - anon_sym_RBRACE2, + ACTIONS(15493), 1, + anon_sym_in, [319118] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15513), 1, - anon_sym_RPAREN, + ACTIONS(15495), 1, + anon_sym_in, [319125] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15301), 1, - anon_sym_RPAREN, + ACTIONS(15497), 1, + aux_sym_brace_expression_token1, [319132] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15515), 1, - aux_sym_brace_expression_token1, + ACTIONS(15499), 1, + anon_sym_BQUOTE, [319139] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15517), 1, - anon_sym_RBRACK_RBRACK, + ACTIONS(15501), 1, + anon_sym_RBRACE3, [319146] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15519), 1, - anon_sym_fi, + ACTIONS(15503), 1, + anon_sym_RPAREN, [319153] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15521), 1, - anon_sym_RBRACE3, + ACTIONS(15491), 1, + anon_sym_BQUOTE, [319160] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15523), 1, - anon_sym_esac, + ACTIONS(15505), 1, + anon_sym_BQUOTE, [319167] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15525), 1, - anon_sym_RPAREN, + ACTIONS(15503), 1, + anon_sym_BQUOTE, [319174] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15527), 1, - anon_sym_RBRACE3, + ACTIONS(15507), 1, + aux_sym_brace_expression_token1, [319181] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15529), 1, - aux_sym_brace_expression_token1, + ACTIONS(15509), 1, + anon_sym_RPAREN, [319188] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15531), 1, - anon_sym_RPAREN, + ACTIONS(15511), 1, + anon_sym_in, [319195] = 2, - ACTIONS(3), 1, + ACTIONS(71), 1, sym_comment, - ACTIONS(15533), 1, - aux_sym_heredoc_redirect_token1, + ACTIONS(15513), 1, + anon_sym_RPAREN, [319202] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15535), 1, - anon_sym_BQUOTE, + ACTIONS(15515), 1, + anon_sym_RBRACE2, [319209] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15537), 1, - anon_sym_BQUOTE, + ACTIONS(15517), 1, + anon_sym_RPAREN, [319216] = 2, - ACTIONS(3), 1, + ACTIONS(71), 1, sym_comment, - ACTIONS(15539), 1, - aux_sym_heredoc_redirect_token1, + ACTIONS(15519), 1, + anon_sym_esac, [319223] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15525), 1, - anon_sym_BQUOTE, + ACTIONS(15521), 1, + aux_sym_brace_expression_token1, [319230] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15541), 1, - aux_sym_brace_expression_token1, + ACTIONS(15523), 1, + anon_sym_RBRACE2, [319237] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15531), 1, + ACTIONS(15525), 1, anon_sym_BQUOTE, [319244] = 2, - ACTIONS(3), 1, + ACTIONS(71), 1, sym_comment, - ACTIONS(15543), 1, - aux_sym_heredoc_redirect_token1, + ACTIONS(14837), 1, + anon_sym_RBRACE3, [319251] = 2, - ACTIONS(3), 1, + ACTIONS(71), 1, sym_comment, - ACTIONS(15545), 1, - aux_sym_heredoc_redirect_token1, + ACTIONS(15527), 1, + anon_sym_BQUOTE, [319258] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15547), 1, - anon_sym_RPAREN, + ACTIONS(15529), 1, + anon_sym_BQUOTE, [319265] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15549), 1, - anon_sym_RPAREN, + ACTIONS(14216), 1, + anon_sym_RBRACE3, [319272] = 2, - ACTIONS(3), 1, + ACTIONS(71), 1, sym_comment, - ACTIONS(15551), 1, - aux_sym_heredoc_redirect_token1, + ACTIONS(15531), 1, + aux_sym_brace_expression_token1, [319279] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15553), 1, - aux_sym_brace_expression_token1, + ACTIONS(14735), 1, + anon_sym_RBRACE3, [319286] = 2, - ACTIONS(3), 1, + ACTIONS(71), 1, sym_comment, - ACTIONS(15555), 1, - aux_sym_heredoc_redirect_token1, + ACTIONS(15517), 1, + anon_sym_BQUOTE, [319293] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15557), 1, - anon_sym_esac, + ACTIONS(15533), 1, + anon_sym_RBRACE3, [319300] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15559), 1, - anon_sym_BQUOTE, + ACTIONS(15535), 1, + anon_sym_RPAREN, [319307] = 2, - ACTIONS(3), 1, + ACTIONS(71), 1, sym_comment, - ACTIONS(15561), 1, - aux_sym_heredoc_redirect_token1, + ACTIONS(15537), 1, + anon_sym_RPAREN, [319314] = 2, - ACTIONS(3), 1, + ACTIONS(71), 1, sym_comment, - ACTIONS(15563), 1, - aux_sym_heredoc_redirect_token1, + ACTIONS(15539), 1, + anon_sym_BQUOTE, [319321] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15565), 1, - anon_sym_RBRACE3, + ACTIONS(15541), 1, + aux_sym_brace_expression_token1, [319328] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15567), 1, - aux_sym_brace_expression_token1, + ACTIONS(15535), 1, + anon_sym_BQUOTE, [319335] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15569), 1, - anon_sym_in, + ACTIONS(15543), 1, + anon_sym_RPAREN, [319342] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15571), 1, + ACTIONS(15545), 1, anon_sym_RBRACE2, [319349] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15573), 1, - anon_sym_in, + ACTIONS(15547), 1, + anon_sym_RBRACE3, [319356] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15397), 1, - anon_sym_RPAREN, + ACTIONS(15549), 1, + sym_heredoc_start, [319363] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15575), 1, - anon_sym_RPAREN_RPAREN, + ACTIONS(15551), 1, + anon_sym_RBRACE2, [319370] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15577), 1, + ACTIONS(15553), 1, aux_sym_brace_expression_token1, [319377] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15579), 1, - aux_sym_brace_expression_token1, + ACTIONS(14694), 1, + anon_sym_RBRACE3, [319384] = 2, - ACTIONS(71), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(15581), 1, - anon_sym_LT_LT_LT, + ACTIONS(15555), 1, + aux_sym_heredoc_redirect_token1, [319391] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15583), 1, - anon_sym_RPAREN, + ACTIONS(14564), 1, + anon_sym_RBRACE3, [319398] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15585), 1, - anon_sym_RBRACE3, + ACTIONS(15557), 1, + anon_sym_RPAREN, [319405] = 2, - ACTIONS(71), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(15587), 1, - anon_sym_RBRACE3, + ACTIONS(15559), 1, + aux_sym_heredoc_redirect_token1, [319412] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14738), 1, + ACTIONS(15561), 1, anon_sym_RBRACE3, [319419] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14738), 1, - anon_sym_RBRACE3, + ACTIONS(15563), 1, + aux_sym_brace_expression_token1, [319426] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15589), 1, - aux_sym_brace_expression_token1, + ACTIONS(15565), 1, + anon_sym_RBRACE3, [319433] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(9218), 1, - anon_sym_RBRACK, + ACTIONS(15567), 1, + anon_sym_RBRACE2, [319440] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15591), 1, - anon_sym_RPAREN, + ACTIONS(15569), 1, + anon_sym_RBRACE3, [319447] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14738), 1, + ACTIONS(15571), 1, anon_sym_RBRACE3, [319454] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14738), 1, - anon_sym_RBRACE3, + ACTIONS(15573), 1, + anon_sym_RPAREN, [319461] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14738), 1, + ACTIONS(15575), 1, anon_sym_RBRACE3, [319468] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14738), 1, - anon_sym_RBRACE3, + ACTIONS(15577), 1, + aux_sym_brace_expression_token1, [319475] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15593), 1, - aux_sym_brace_expression_token1, + ACTIONS(15579), 1, + anon_sym_BQUOTE, [319482] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(9220), 1, - anon_sym_RBRACK, + ACTIONS(15573), 1, + anon_sym_BQUOTE, [319489] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15595), 1, - sym_word, + ACTIONS(15581), 1, + anon_sym_RPAREN, [319496] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15597), 1, - anon_sym_RBRACE2, + ACTIONS(15583), 1, + anon_sym_esac, [319503] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14738), 1, - anon_sym_RBRACE3, + ACTIONS(15585), 1, + anon_sym_RPAREN, [319510] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14738), 1, - anon_sym_RBRACE3, + ACTIONS(15587), 1, + anon_sym_RBRACE2, [319517] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14738), 1, - anon_sym_RBRACE3, + ACTIONS(15589), 1, + aux_sym_brace_expression_token1, [319524] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15599), 1, - aux_sym_brace_expression_token1, + ACTIONS(14758), 1, + anon_sym_RBRACE3, [319531] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15601), 1, + ACTIONS(15591), 1, anon_sym_BQUOTE, [319538] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14654), 1, - anon_sym_RBRACE3, + ACTIONS(15585), 1, + anon_sym_BQUOTE, [319545] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14738), 1, - anon_sym_RBRACE3, + ACTIONS(15593), 1, + anon_sym_esac, [319552] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14738), 1, - anon_sym_RBRACE3, + ACTIONS(15595), 1, + anon_sym_RPAREN, [319559] = 2, - ACTIONS(71), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(14738), 1, - anon_sym_RBRACE3, + ACTIONS(15597), 1, + aux_sym_heredoc_redirect_token1, [319566] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14640), 1, - anon_sym_fi, + ACTIONS(15599), 1, + aux_sym_brace_expression_token1, [319573] = 2, - ACTIONS(71), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(15603), 1, - aux_sym_brace_expression_token1, + ACTIONS(15601), 1, + aux_sym_heredoc_redirect_token1, [319580] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15377), 1, - anon_sym_RPAREN, + ACTIONS(15603), 1, + anon_sym_esac, [319587] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15605), 1, - anon_sym_RBRACE3, + anon_sym_RBRACE2, [319594] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14751), 1, - anon_sym_RBRACE3, + ACTIONS(15607), 1, + anon_sym_RBRACK_RBRACK, [319601] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14751), 1, + ACTIONS(15609), 1, anon_sym_RBRACE3, [319608] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14751), 1, - anon_sym_RBRACE3, + ACTIONS(15611), 1, + anon_sym_RPAREN, [319615] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14751), 1, - anon_sym_RBRACE3, + ACTIONS(15613), 1, + aux_sym_brace_expression_token1, [319622] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15607), 1, - aux_sym_brace_expression_token1, + ACTIONS(15371), 1, + anon_sym_BQUOTE, [319629] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(9080), 1, - anon_sym_RBRACK, + ACTIONS(15615), 1, + anon_sym_BQUOTE, [319636] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15609), 1, - anon_sym_esac, + ACTIONS(15611), 1, + anon_sym_BQUOTE, [319643] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14751), 1, - anon_sym_RBRACE3, + ACTIONS(15617), 1, + anon_sym_RBRACK_RBRACK, [319650] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14751), 1, - anon_sym_RBRACE3, + ACTIONS(15619), 1, + anon_sym_RPAREN, [319657] = 2, - ACTIONS(71), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(14738), 1, - anon_sym_RBRACE3, + ACTIONS(15621), 1, + aux_sym_heredoc_redirect_token1, [319664] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14738), 1, - anon_sym_RBRACE3, + ACTIONS(15623), 1, + aux_sym_brace_expression_token1, [319671] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15611), 1, - aux_sym_brace_expression_token1, + ACTIONS(15625), 1, + anon_sym_RPAREN, [319678] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15613), 1, - anon_sym_esac, + ACTIONS(15627), 1, + anon_sym_RBRACE2, [319685] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15615), 1, + ACTIONS(15629), 1, aux_sym_heredoc_redirect_token1, [319692] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14738), 1, + ACTIONS(15631), 1, anon_sym_RBRACE3, [319699] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14738), 1, - anon_sym_RBRACE3, + ACTIONS(15633), 1, + anon_sym_RPAREN, [319706] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14738), 1, + ACTIONS(15635), 1, anon_sym_RBRACE3, [319713] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14738), 1, - anon_sym_RBRACE3, + ACTIONS(15637), 1, + aux_sym_brace_expression_token1, [319720] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15617), 1, - aux_sym_brace_expression_token1, + ACTIONS(15639), 1, + anon_sym_RPAREN, [319727] = 2, - ACTIONS(71), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(14616), 1, - anon_sym_fi, + ACTIONS(15641), 1, + aux_sym_heredoc_redirect_token1, [319734] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15619), 1, - anon_sym_esac, + ACTIONS(15643), 1, + anon_sym_RPAREN, [319741] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14074), 1, + ACTIONS(14488), 1, anon_sym_RBRACE3, [319748] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15621), 1, - anon_sym_esac, + ACTIONS(15645), 1, + anon_sym_BQUOTE, [319755] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14857), 1, + ACTIONS(15647), 1, anon_sym_RBRACE3, [319762] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15623), 1, - sym_heredoc_end, + ACTIONS(15649), 1, + aux_sym_brace_expression_token1, [319769] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15625), 1, - aux_sym_brace_expression_token1, + ACTIONS(15651), 1, + anon_sym_RPAREN, [319776] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15627), 1, - sym_heredoc_end, + ACTIONS(15653), 1, + anon_sym_RBRACE3, [319783] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15629), 1, - anon_sym_fi, + ACTIONS(15655), 1, + anon_sym_BQUOTE, [319790] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15631), 1, - anon_sym_esac, + ACTIONS(15651), 1, + anon_sym_BQUOTE, [319797] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15633), 1, - anon_sym_RBRACE3, + ACTIONS(15657), 1, + anon_sym_RPAREN, [319804] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15635), 1, - anon_sym_RBRACE2, + ACTIONS(15659), 1, + anon_sym_RBRACE3, [319811] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15637), 1, - anon_sym_esac, + ACTIONS(15661), 1, + aux_sym_brace_expression_token1, [319818] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15639), 1, - aux_sym_brace_expression_token1, + anon_sym_BQUOTE, [319825] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(9082), 1, - anon_sym_RBRACK, + ACTIONS(15663), 1, + anon_sym_RBRACE2, [319832] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15641), 1, - anon_sym_RBRACE2, + ACTIONS(15665), 1, + aux_sym_brace_expression_token1, [319839] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15643), 1, - anon_sym_esac, + ACTIONS(15667), 1, + anon_sym_RPAREN, [319846] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15645), 1, - anon_sym_esac, + ACTIONS(15669), 1, + anon_sym_RPAREN, [319853] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14474), 1, - anon_sym_RBRACE3, + ACTIONS(14688), 1, + anon_sym_fi, [319860] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14482), 1, - anon_sym_RBRACE3, + ACTIONS(15671), 1, + aux_sym_brace_expression_token1, [319867] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15647), 1, - aux_sym_brace_expression_token1, + ACTIONS(15673), 1, + anon_sym_RBRACE3, [319874] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14482), 1, - anon_sym_RBRACE3, + ACTIONS(15675), 1, + anon_sym_RPAREN, [319881] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14482), 1, - anon_sym_RBRACE3, + ACTIONS(15677), 1, + anon_sym_BQUOTE, [319888] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14482), 1, - anon_sym_RBRACE3, + ACTIONS(15679), 1, + anon_sym_BQUOTE, [319895] = 2, - ACTIONS(3), 1, + ACTIONS(71), 1, sym_comment, - ACTIONS(15649), 1, - aux_sym_heredoc_redirect_token1, + ACTIONS(15675), 1, + anon_sym_BQUOTE, [319902] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15651), 1, + ACTIONS(15681), 1, anon_sym_RBRACE3, [319909] = 2, - ACTIONS(3), 1, + ACTIONS(71), 1, sym_comment, - ACTIONS(15653), 1, - aux_sym_heredoc_redirect_token1, + ACTIONS(15683), 1, + aux_sym_brace_expression_token1, [319916] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15655), 1, - aux_sym_brace_expression_token1, + ACTIONS(15685), 1, + anon_sym_RPAREN, [319923] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15657), 1, + ACTIONS(15687), 1, anon_sym_RPAREN, [319930] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15659), 1, + ACTIONS(15689), 1, anon_sym_BQUOTE, [319937] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15661), 1, + ACTIONS(15685), 1, anon_sym_BQUOTE, [319944] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15663), 1, - anon_sym_esac, + ACTIONS(15691), 1, + anon_sym_RPAREN, [319951] = 2, - ACTIONS(3), 1, + ACTIONS(71), 1, sym_comment, - ACTIONS(15665), 1, - aux_sym_heredoc_redirect_token1, + ACTIONS(15693), 1, + anon_sym_BQUOTE, [319958] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15667), 1, - anon_sym_RBRACK_RBRACK, + ACTIONS(15695), 1, + aux_sym_brace_expression_token1, [319965] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(15669), 1, - aux_sym_brace_expression_token1, + anon_sym_BQUOTE, [319972] = 2, - ACTIONS(3), 1, + ACTIONS(71), 1, sym_comment, - ACTIONS(15671), 1, - aux_sym_heredoc_redirect_token1, + ACTIONS(15697), 1, + anon_sym_RBRACE2, [319979] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15673), 1, - anon_sym_BQUOTE, + ACTIONS(15699), 1, + anon_sym_RPAREN, [319986] = 2, - ACTIONS(3), 1, + ACTIONS(71), 1, sym_comment, - ACTIONS(15675), 1, - aux_sym_heredoc_redirect_token1, + ACTIONS(15701), 1, + anon_sym_RBRACE2, [319993] = 2, - ACTIONS(3), 1, + ACTIONS(71), 1, sym_comment, - ACTIONS(15677), 1, - aux_sym_heredoc_redirect_token1, + ACTIONS(14735), 1, + anon_sym_RBRACE3, [320000] = 2, - ACTIONS(71), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(15679), 1, - anon_sym_BQUOTE, + ACTIONS(15703), 1, + aux_sym_heredoc_redirect_token1, [320007] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15681), 1, - anon_sym_esac, + ACTIONS(15705), 1, + aux_sym_brace_expression_token1, [320014] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15683), 1, - aux_sym_brace_expression_token1, + ACTIONS(15643), 1, + anon_sym_BQUOTE, [320021] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15685), 1, - anon_sym_RBRACE3, + ACTIONS(15707), 1, + anon_sym_RBRACE2, [320028] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15661), 1, - anon_sym_RPAREN, + ACTIONS(15709), 1, + anon_sym_RBRACE2, [320035] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15687), 1, + ACTIONS(15711), 1, anon_sym_RPAREN, [320042] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15689), 1, - anon_sym_esac, + ACTIONS(14488), 1, + anon_sym_RBRACE3, [320049] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15691), 1, - anon_sym_BQUOTE, + ACTIONS(15713), 1, + anon_sym_RBRACE3, [320056] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15693), 1, - anon_sym_RBRACE3, + ACTIONS(15715), 1, + aux_sym_brace_expression_token1, [320063] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15695), 1, - aux_sym_brace_expression_token1, + ACTIONS(15717), 1, + anon_sym_RPAREN, [320070] = 2, - ACTIONS(71), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(15697), 1, - anon_sym_RPAREN, + ACTIONS(15719), 1, + aux_sym_heredoc_redirect_token1, [320077] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15699), 1, - anon_sym_RBRACE2, + ACTIONS(15721), 1, + anon_sym_BQUOTE, [320084] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15701), 1, - anon_sym_in, + ACTIONS(15717), 1, + anon_sym_BQUOTE, [320091] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15703), 1, - anon_sym_esac, + ACTIONS(15723), 1, + anon_sym_RPAREN, [320098] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15705), 1, - anon_sym_in, + ACTIONS(15725), 1, + anon_sym_RBRACE3, [320105] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15687), 1, - anon_sym_BQUOTE, + ACTIONS(15727), 1, + aux_sym_brace_expression_token1, [320112] = 2, - ACTIONS(71), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(15707), 1, - aux_sym_brace_expression_token1, + ACTIONS(15729), 1, + aux_sym_heredoc_redirect_token1, [320119] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15709), 1, - anon_sym_RPAREN, + ACTIONS(14488), 1, + anon_sym_RBRACE3, [320126] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15711), 1, - anon_sym_RPAREN_RPAREN, + ACTIONS(15731), 1, + anon_sym_RBRACE2, [320133] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15713), 1, - aux_sym_brace_expression_token1, + ACTIONS(15733), 1, + sym_heredoc_end, [320140] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15715), 1, - anon_sym_LT_LT_LT, + ACTIONS(15735), 1, + anon_sym_in, [320147] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15717), 1, + ACTIONS(15737), 1, anon_sym_RPAREN, [320154] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15719), 1, - anon_sym_RBRACE3, + ACTIONS(15739), 1, + aux_sym_brace_expression_token1, [320161] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15721), 1, - aux_sym_brace_expression_token1, + ACTIONS(15741), 1, + anon_sym_fi, [320168] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15723), 1, + ACTIONS(15743), 1, anon_sym_RPAREN, [320175] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15725), 1, - sym_word, + ACTIONS(15745), 1, + sym_heredoc_start, [320182] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14644), 1, - anon_sym_fi, + ACTIONS(15747), 1, + anon_sym_RBRACE3, [320189] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15727), 1, - anon_sym_BQUOTE, + ACTIONS(15749), 1, + anon_sym_RPAREN, [320196] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15729), 1, - anon_sym_RBRACE2, + ACTIONS(15751), 1, + anon_sym_RBRACE3, [320203] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15731), 1, - anon_sym_BQUOTE, + ACTIONS(15753), 1, + aux_sym_brace_expression_token1, [320210] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15733), 1, - aux_sym_brace_expression_token1, + ACTIONS(15755), 1, + anon_sym_RPAREN, [320217] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15735), 1, - anon_sym_RBRACE2, + ACTIONS(14735), 1, + anon_sym_RBRACE3, [320224] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15737), 1, + ACTIONS(15757), 1, anon_sym_BQUOTE, [320231] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15739), 1, - anon_sym_RBRACE2, + ACTIONS(15281), 1, + aux_sym__simple_variable_name_token1, [320238] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15741), 1, - anon_sym_BQUOTE, + ACTIONS(15759), 1, + anon_sym_RPAREN, [320245] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15731), 1, - anon_sym_RPAREN, + ACTIONS(15761), 1, + anon_sym_RBRACE2, [320252] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15743), 1, - anon_sym_BQUOTE, + ACTIONS(15763), 1, + aux_sym_brace_expression_token1, [320259] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15745), 1, - aux_sym_brace_expression_token1, + ACTIONS(15755), 1, + anon_sym_BQUOTE, [320266] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15727), 1, + ACTIONS(15765), 1, anon_sym_RPAREN, [320273] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15747), 1, - anon_sym_RBRACE3, + ACTIONS(15767), 1, + sym_heredoc_end, [320280] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15749), 1, + ACTIONS(15769), 1, anon_sym_BQUOTE, [320287] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15743), 1, - anon_sym_RPAREN, + ACTIONS(15771), 1, + anon_sym_RBRACE2, [320294] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15751), 1, + ACTIONS(15749), 1, anon_sym_BQUOTE, [320301] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15753), 1, - anon_sym_BQUOTE, + ACTIONS(15773), 1, + aux_sym_brace_expression_token1, [320308] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15755), 1, - aux_sym_brace_expression_token1, + ACTIONS(15775), 1, + anon_sym_RPAREN, [320315] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15751), 1, - anon_sym_RPAREN, + ACTIONS(15777), 1, + anon_sym_RBRACE2, [320322] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15757), 1, - anon_sym_RBRACE3, + ACTIONS(15779), 1, + anon_sym_RPAREN, [320329] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15759), 1, + ACTIONS(15781), 1, anon_sym_RBRACE2, [320336] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15761), 1, - anon_sym_BQUOTE, + ACTIONS(14488), 1, + anon_sym_RBRACE3, [320343] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15763), 1, - anon_sym_RPAREN, + ACTIONS(15783), 1, + anon_sym_RBRACE3, [320350] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15765), 1, - anon_sym_BQUOTE, + ACTIONS(15785), 1, + aux_sym_brace_expression_token1, [320357] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15767), 1, - aux_sym_brace_expression_token1, + ACTIONS(15787), 1, + anon_sym_RBRACK_RBRACK, [320364] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15769), 1, - anon_sym_BQUOTE, + ACTIONS(15789), 1, + anon_sym_RBRACE3, [320371] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15771), 1, - anon_sym_BQUOTE, + ACTIONS(9206), 1, + anon_sym_RBRACK, [320378] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15769), 1, - anon_sym_RPAREN, + ACTIONS(15791), 1, + anon_sym_RBRACE3, [320385] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15773), 1, + ACTIONS(15793), 1, anon_sym_RPAREN, [320392] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15775), 1, - anon_sym_BQUOTE, + ACTIONS(15795), 1, + anon_sym_RPAREN, [320399] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15777), 1, - anon_sym_BQUOTE, + ACTIONS(15797), 1, + aux_sym_brace_expression_token1, [320406] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15779), 1, - aux_sym_brace_expression_token1, + ACTIONS(15799), 1, + anon_sym_BQUOTE, [320413] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14512), 1, - anon_sym_RBRACE3, + ACTIONS(15793), 1, + anon_sym_BQUOTE, [320420] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15775), 1, + ACTIONS(15801), 1, anon_sym_RPAREN, [320427] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15781), 1, - anon_sym_RBRACE3, + ACTIONS(9024), 1, + anon_sym_RBRACK, [320434] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15783), 1, - anon_sym_RBRACE3, + ACTIONS(15803), 1, + anon_sym_RPAREN, [320441] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15785), 1, - anon_sym_RBRACE2, + ACTIONS(15805), 1, + anon_sym_RBRACK_RBRACK, [320448] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15787), 1, - anon_sym_BQUOTE, + ACTIONS(15807), 1, + aux_sym_brace_expression_token1, [320455] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15789), 1, - aux_sym_brace_expression_token1, + ACTIONS(15809), 1, + anon_sym_RBRACE2, [320462] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15791), 1, - anon_sym_BQUOTE, + ACTIONS(14735), 1, + anon_sym_RBRACE3, [320469] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15793), 1, - anon_sym_BQUOTE, + ACTIONS(15811), 1, + anon_sym_RBRACE2, [320476] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15787), 1, - anon_sym_RPAREN, + ACTIONS(15813), 1, + anon_sym_RBRACE2, [320483] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15795), 1, - anon_sym_RBRACE3, + ACTIONS(15815), 1, + anon_sym_RBRACK_RBRACK, [320490] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15797), 1, + ACTIONS(15817), 1, anon_sym_RBRACE3, [320497] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14646), 1, - anon_sym_fi, + ACTIONS(15819), 1, + aux_sym_brace_expression_token1, [320504] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15799), 1, - aux_sym_brace_expression_token1, + ACTIONS(15821), 1, + anon_sym_RPAREN, [320511] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15801), 1, - anon_sym_RBRACE2, + ACTIONS(15823), 1, + anon_sym_RBRACE3, [320518] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15803), 1, + ACTIONS(15825), 1, anon_sym_RPAREN, [320525] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15805), 1, - anon_sym_BQUOTE, + ACTIONS(14735), 1, + anon_sym_RBRACE3, [320532] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15807), 1, - anon_sym_BQUOTE, + ACTIONS(15827), 1, + anon_sym_RBRACE3, [320539] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15809), 1, + ACTIONS(15829), 1, anon_sym_RPAREN, [320546] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15811), 1, - anon_sym_RBRACK_RBRACK, + ACTIONS(15831), 1, + aux_sym_brace_expression_token1, [320553] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15813), 1, - aux_sym_brace_expression_token1, + ACTIONS(15833), 1, + anon_sym_BQUOTE, [320560] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15815), 1, + ACTIONS(15835), 1, anon_sym_BQUOTE, [320567] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15817), 1, + ACTIONS(15829), 1, anon_sym_BQUOTE, [320574] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15805), 1, + ACTIONS(15837), 1, anon_sym_RPAREN, [320581] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15819), 1, - anon_sym_RBRACE3, + ACTIONS(15839), 1, + anon_sym_BQUOTE, [320588] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15815), 1, - anon_sym_RPAREN, + ACTIONS(15825), 1, + anon_sym_BQUOTE, [320595] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15821), 1, - anon_sym_RBRACE3, + ACTIONS(15841), 1, + aux_sym_brace_expression_token1, [320602] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15823), 1, - aux_sym_brace_expression_token1, + ACTIONS(15843), 1, + anon_sym_RBRACE2, [320609] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15825), 1, - anon_sym_BQUOTE, + ACTIONS(15845), 1, + anon_sym_RPAREN, [320616] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15827), 1, - anon_sym_RBRACE3, + ACTIONS(15847), 1, + anon_sym_RPAREN, [320623] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15829), 1, + ACTIONS(15849), 1, anon_sym_BQUOTE, [320630] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15825), 1, - anon_sym_RPAREN, + ACTIONS(15851), 1, + anon_sym_RBRACE2, [320637] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15831), 1, - anon_sym_esac, + ACTIONS(15821), 1, + anon_sym_BQUOTE, [320644] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15833), 1, - anon_sym_RBRACE3, + ACTIONS(15853), 1, + aux_sym_brace_expression_token1, [320651] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15835), 1, - aux_sym_brace_expression_token1, + ACTIONS(15855), 1, + anon_sym_RBRACE3, [320658] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15837), 1, - anon_sym_RBRACE3, + ACTIONS(15857), 1, + anon_sym_RPAREN, [320665] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15839), 1, - anon_sym_BQUOTE, + ACTIONS(15859), 1, + anon_sym_RPAREN, [320672] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15841), 1, + ACTIONS(15795), 1, anon_sym_BQUOTE, [320679] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15839), 1, - anon_sym_RPAREN, + ACTIONS(15861), 1, + anon_sym_RBRACE3, [320686] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15843), 1, - anon_sym_RBRACE3, + ACTIONS(15863), 1, + anon_sym_RPAREN, [320693] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15845), 1, - sym_heredoc_end, + ACTIONS(15865), 1, + aux_sym_brace_expression_token1, [320700] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15847), 1, - aux_sym_brace_expression_token1, + ACTIONS(15867), 1, + anon_sym_BQUOTE, [320707] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15761), 1, - anon_sym_RPAREN, + ACTIONS(15869), 1, + anon_sym_BQUOTE, [320714] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15849), 1, - anon_sym_RBRACE2, + ACTIONS(15863), 1, + anon_sym_BQUOTE, [320721] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15851), 1, - anon_sym_RBRACE3, + ACTIONS(15871), 1, + anon_sym_RPAREN, [320728] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15659), 1, + ACTIONS(15873), 1, anon_sym_RPAREN, [320735] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15853), 1, - anon_sym_RPAREN, + ACTIONS(15857), 1, + anon_sym_BQUOTE, [320742] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15855), 1, - anon_sym_RBRACE2, + ACTIONS(15875), 1, + aux_sym_brace_expression_token1, [320749] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15857), 1, - aux_sym_brace_expression_token1, + ACTIONS(15877), 1, + anon_sym_RBRACE2, [320756] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15859), 1, - anon_sym_BQUOTE, + ACTIONS(15879), 1, + anon_sym_RPAREN, [320763] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15861), 1, - anon_sym_BQUOTE, + ACTIONS(14626), 1, + anon_sym_fi, [320770] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15863), 1, - anon_sym_BQUOTE, + ACTIONS(15881), 1, + anon_sym_LT_LT_LT, [320777] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15865), 1, - anon_sym_RPAREN, + ACTIONS(14735), 1, + anon_sym_RBRACE3, [320784] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15867), 1, - anon_sym_BQUOTE, + ACTIONS(15883), 1, + anon_sym_RBRACE3, [320791] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15869), 1, - anon_sym_BQUOTE, + ACTIONS(15885), 1, + aux_sym_brace_expression_token1, [320798] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15871), 1, - aux_sym_brace_expression_token1, + ACTIONS(15887), 1, + anon_sym_RBRACE3, [320805] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15853), 1, - anon_sym_BQUOTE, + ACTIONS(15889), 1, + anon_sym_RPAREN, [320812] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15873), 1, - anon_sym_RBRACK_RBRACK, + ACTIONS(15891), 1, + anon_sym_RPAREN, [320819] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15859), 1, - anon_sym_RPAREN, + ACTIONS(15893), 1, + anon_sym_RBRACE3, [320826] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15867), 1, + ACTIONS(15895), 1, anon_sym_RPAREN, [320833] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15875), 1, - anon_sym_RBRACE3, + ACTIONS(15897), 1, + anon_sym_BQUOTE, [320840] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15877), 1, - anon_sym_RBRACE3, + ACTIONS(15899), 1, + aux_sym_brace_expression_token1, [320847] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15879), 1, - aux_sym_brace_expression_token1, + ACTIONS(15901), 1, + anon_sym_BQUOTE, [320854] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15881), 1, - anon_sym_RPAREN, + ACTIONS(15895), 1, + anon_sym_BQUOTE, [320861] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15883), 1, - anon_sym_BQUOTE, + ACTIONS(15903), 1, + anon_sym_RPAREN, [320868] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15885), 1, - anon_sym_RPAREN, + ACTIONS(15905), 1, + aux_sym_brace_expression_token1, [320875] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15887), 1, + ACTIONS(15889), 1, anon_sym_BQUOTE, [320882] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15883), 1, - anon_sym_RPAREN, + ACTIONS(15907), 1, + anon_sym_RBRACE2, [320889] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15889), 1, - anon_sym_RBRACE3, + ACTIONS(15909), 1, + aux_sym_brace_expression_token1, [320896] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15891), 1, - aux_sym_brace_expression_token1, + ACTIONS(15911), 1, + anon_sym_RPAREN, [320903] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15893), 1, - anon_sym_RBRACE2, + ACTIONS(15913), 1, + anon_sym_BQUOTE, [320910] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15895), 1, - anon_sym_BQUOTE, + ACTIONS(15915), 1, + anon_sym_RBRACE2, [320917] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15897), 1, - anon_sym_BQUOTE, + ACTIONS(15917), 1, + anon_sym_RBRACE2, [320924] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15895), 1, - anon_sym_RPAREN, + ACTIONS(15919), 1, + anon_sym_RBRACE2, [320931] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15899), 1, - anon_sym_RBRACE2, + ACTIONS(14754), 1, + anon_sym_RBRACE3, [320938] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(9084), 1, - anon_sym_RBRACK, + ACTIONS(15921), 1, + aux_sym_brace_expression_token1, [320945] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15901), 1, - aux_sym_brace_expression_token1, + ACTIONS(15923), 1, + anon_sym_BQUOTE, [320952] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15903), 1, - anon_sym_RBRACE3, + ACTIONS(15891), 1, + anon_sym_BQUOTE, [320959] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15905), 1, - anon_sym_BQUOTE, + ACTIONS(15925), 1, + anon_sym_RPAREN, [320966] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(9146), 1, - anon_sym_RBRACK, + ACTIONS(15927), 1, + anon_sym_RBRACE3, [320973] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15907), 1, - anon_sym_BQUOTE, + ACTIONS(15929), 1, + anon_sym_RPAREN, [320980] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15909), 1, - anon_sym_RPAREN, + ACTIONS(15931), 1, + anon_sym_RBRACE3, [320987] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15911), 1, - anon_sym_RBRACE3, + ACTIONS(15933), 1, + aux_sym_brace_expression_token1, [320994] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15913), 1, - aux_sym_brace_expression_token1, + ACTIONS(15935), 1, + anon_sym_BQUOTE, [321001] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15905), 1, - anon_sym_RPAREN, + ACTIONS(15929), 1, + anon_sym_BQUOTE, [321008] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15915), 1, - anon_sym_RBRACE3, + ACTIONS(15937), 1, + anon_sym_RPAREN, [321015] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15917), 1, - anon_sym_RBRACK_RBRACK, + ACTIONS(15939), 1, + anon_sym_RPAREN, [321022] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15919), 1, - anon_sym_BQUOTE, + ACTIONS(14574), 1, + anon_sym_fi, [321029] = 2, - ACTIONS(71), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(15921), 1, - anon_sym_BQUOTE, + ACTIONS(15941), 1, + aux_sym_heredoc_redirect_token1, [321036] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15923), 1, - anon_sym_RBRACE2, + ACTIONS(15943), 1, + aux_sym_brace_expression_token1, [321043] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15925), 1, - aux_sym_brace_expression_token1, + ACTIONS(15945), 1, + anon_sym_RBRACE2, [321050] = 2, - ACTIONS(71), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(9028), 1, - anon_sym_RBRACK, + ACTIONS(15947), 1, + aux_sym_heredoc_redirect_token1, [321057] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15927), 1, - anon_sym_RPAREN, + ACTIONS(15949), 1, + anon_sym_RBRACE3, [321064] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15919), 1, - anon_sym_RPAREN, + ACTIONS(14735), 1, + anon_sym_RBRACE3, [321071] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15929), 1, + ACTIONS(14756), 1, anon_sym_RBRACE3, [321078] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15931), 1, + ACTIONS(14756), 1, anon_sym_RBRACE3, [321085] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(9026), 1, - anon_sym_RBRACK, + ACTIONS(15951), 1, + aux_sym_brace_expression_token1, [321092] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15933), 1, - aux_sym_brace_expression_token1, + ACTIONS(15953), 1, + anon_sym_RBRACE3, [321099] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15935), 1, + ACTIONS(15955), 1, anon_sym_RPAREN, [321106] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15937), 1, - anon_sym_BQUOTE, + ACTIONS(15957), 1, + anon_sym_RBRACE3, [321113] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15939), 1, - anon_sym_BQUOTE, + ACTIONS(15959), 1, + anon_sym_RPAREN, [321120] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15941), 1, - anon_sym_BQUOTE, + ACTIONS(15961), 1, + anon_sym_esac, [321127] = 2, - ACTIONS(71), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(15937), 1, - anon_sym_RPAREN, + ACTIONS(15963), 1, + aux_sym_heredoc_redirect_token1, [321134] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15943), 1, - sym_heredoc_start, + ACTIONS(15965), 1, + aux_sym_brace_expression_token1, [321141] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15945), 1, - aux_sym_brace_expression_token1, + ACTIONS(15967), 1, + anon_sym_BQUOTE, [321148] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15947), 1, - anon_sym_RBRACE3, + ACTIONS(15959), 1, + anon_sym_BQUOTE, [321155] = 2, - ACTIONS(71), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(15949), 1, - anon_sym_BQUOTE, + ACTIONS(15969), 1, + aux_sym_heredoc_redirect_token1, [321162] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15951), 1, + ACTIONS(15971), 1, anon_sym_BQUOTE, [321169] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15953), 1, - anon_sym_RPAREN, + ACTIONS(15955), 1, + anon_sym_BQUOTE, [321176] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15935), 1, - anon_sym_BQUOTE, + ACTIONS(14578), 1, + anon_sym_RBRACE3, [321183] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15955), 1, - anon_sym_BQUOTE, + ACTIONS(15973), 1, + aux_sym_brace_expression_token1, [321190] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15957), 1, - aux_sym_brace_expression_token1, + ACTIONS(15975), 1, + anon_sym_RPAREN, [321197] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15959), 1, - anon_sym_BQUOTE, + ACTIONS(15977), 1, + anon_sym_esac, [321204] = 2, - ACTIONS(71), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(15961), 1, - anon_sym_BQUOTE, + ACTIONS(15979), 1, + aux_sym_heredoc_redirect_token1, [321211] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15927), 1, - anon_sym_BQUOTE, + ACTIONS(15981), 1, + anon_sym_RBRACE2, [321218] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15955), 1, - anon_sym_RPAREN, + ACTIONS(15983), 1, + anon_sym_RBRACE3, [321225] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14827), 1, - anon_sym_RBRACE3, + ACTIONS(15985), 1, + anon_sym_RPAREN, [321232] = 2, - ACTIONS(71), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(15963), 1, - anon_sym_RBRACE3, + ACTIONS(15987), 1, + aux_sym_heredoc_redirect_token1, [321239] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14827), 1, - anon_sym_RBRACE3, + ACTIONS(15989), 1, + anon_sym_BQUOTE, [321246] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14827), 1, - anon_sym_RBRACE3, + ACTIONS(15985), 1, + anon_sym_BQUOTE, [321253] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14827), 1, + ACTIONS(14754), 1, anon_sym_RBRACE3, [321260] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14827), 1, + ACTIONS(14754), 1, anon_sym_RBRACE3, [321267] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15965), 1, - anon_sym_RPAREN, + ACTIONS(14754), 1, + anon_sym_RBRACE3, [321274] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15967), 1, - anon_sym_LBRACK, + ACTIONS(15991), 1, + anon_sym_BQUOTE, [321281] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15969), 1, - anon_sym_RBRACE2, + ACTIONS(15993), 1, + anon_sym_esac, [321288] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15971), 1, - anon_sym_BQUOTE, + ACTIONS(15995), 1, + sym_heredoc_end, [321295] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15973), 1, - anon_sym_BQUOTE, + ACTIONS(15997), 1, + anon_sym_RBRACE3, [321302] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15975), 1, - anon_sym_BQUOTE, + ACTIONS(15999), 1, + anon_sym_RPAREN, [321309] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15977), 1, - anon_sym_RPAREN, + ACTIONS(16001), 1, + anon_sym_RBRACE3, [321316] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15973), 1, - anon_sym_RPAREN, + ACTIONS(16003), 1, + anon_sym_BQUOTE, [321323] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14810), 1, + ACTIONS(16005), 1, anon_sym_RBRACE3, [321330] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14810), 1, - anon_sym_RBRACE3, + ACTIONS(15999), 1, + anon_sym_BQUOTE, [321337] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14810), 1, - anon_sym_RBRACE3, + ACTIONS(16007), 1, + anon_sym_RPAREN, [321344] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14810), 1, + ACTIONS(16009), 1, anon_sym_RBRACE3, [321351] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14810), 1, - anon_sym_RBRACE3, + ACTIONS(16011), 1, + anon_sym_RPAREN, [321358] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14810), 1, - anon_sym_RBRACE3, + ACTIONS(8948), 1, + anon_sym_RBRACK, [321365] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14827), 1, - anon_sym_RBRACE3, + ACTIONS(16013), 1, + anon_sym_BQUOTE, [321372] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14827), 1, - anon_sym_RBRACE3, + ACTIONS(16011), 1, + anon_sym_BQUOTE, [321379] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14827), 1, + ACTIONS(14756), 1, anon_sym_RBRACE3, [321386] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14827), 1, - anon_sym_RBRACE3, + ACTIONS(16015), 1, + anon_sym_RPAREN, [321393] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14827), 1, - anon_sym_RBRACE3, + ACTIONS(16017), 1, + anon_sym_RPAREN, [321400] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14827), 1, - anon_sym_RBRACE3, + ACTIONS(16019), 1, + anon_sym_BQUOTE, [321407] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15979), 1, - anon_sym_RBRACE2, + ACTIONS(16015), 1, + anon_sym_BQUOTE, [321414] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15981), 1, - anon_sym_RBRACE3, + ACTIONS(16021), 1, + anon_sym_RPAREN, [321421] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15961), 1, - anon_sym_RPAREN, + ACTIONS(16023), 1, + anon_sym_BQUOTE, [321428] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15983), 1, + ACTIONS(16025), 1, anon_sym_RBRACE2, [321435] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15985), 1, - anon_sym_RBRACE2, + ACTIONS(16007), 1, + anon_sym_BQUOTE, [321442] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15987), 1, + ACTIONS(16027), 1, anon_sym_RPAREN, [321449] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15989), 1, - anon_sym_BQUOTE, + ACTIONS(9204), 1, + anon_sym_RBRACK, [321456] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14512), 1, + ACTIONS(16029), 1, anon_sym_RBRACE3, [321463] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15991), 1, - anon_sym_BQUOTE, + ACTIONS(16031), 1, + anon_sym_RPAREN, [321470] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15993), 1, + ACTIONS(15939), 1, anon_sym_BQUOTE, [321477] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15991), 1, - anon_sym_RPAREN, + ACTIONS(16033), 1, + anon_sym_BQUOTE, [321484] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15995), 1, - anon_sym_RBRACE3, + ACTIONS(16031), 1, + anon_sym_BQUOTE, [321491] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15765), 1, - anon_sym_RPAREN, + ACTIONS(16035), 1, + anon_sym_RBRACE2, [321498] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15997), 1, - anon_sym_RBRACE3, + ACTIONS(16037), 1, + anon_sym_BQUOTE, [321505] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15999), 1, - anon_sym_in, + ACTIONS(16021), 1, + anon_sym_BQUOTE, [321512] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16001), 1, - anon_sym_in, + ACTIONS(16039), 1, + anon_sym_LT_LT_LT, [321519] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16003), 1, - anon_sym_RBRACE3, + ACTIONS(16041), 1, + anon_sym_RBRACE2, [321526] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16005), 1, + ACTIONS(16043), 1, anon_sym_RBRACE3, [321533] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16007), 1, - anon_sym_RPAREN, + ACTIONS(16045), 1, + anon_sym_RBRACE3, [321540] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16009), 1, - anon_sym_RBRACE2, + ACTIONS(16047), 1, + anon_sym_RPAREN, [321547] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16011), 1, - anon_sym_RPAREN, + ACTIONS(15277), 1, + aux_sym__simple_variable_name_token1, [321554] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15269), 1, - aux_sym__simple_variable_name_token1, + ACTIONS(16049), 1, + anon_sym_RPAREN, [321561] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16013), 1, - anon_sym_BQUOTE, + ACTIONS(16051), 1, + anon_sym_RPAREN, [321568] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16015), 1, - anon_sym_BQUOTE, + ACTIONS(16053), 1, + sym_word, [321575] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16017), 1, - sym_word, + ACTIONS(16055), 1, + anon_sym_DOT_DOT, [321582] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16019), 1, - anon_sym_DOT_DOT, + ACTIONS(16057), 1, + anon_sym_BQUOTE, [321589] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16013), 1, - anon_sym_RPAREN, + ACTIONS(16049), 1, + anon_sym_BQUOTE, [321596] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16021), 1, + ACTIONS(14754), 1, anon_sym_RBRACE3, [321603] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16023), 1, - anon_sym_RBRACE3, + ACTIONS(16059), 1, + anon_sym_RPAREN, [321610] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16025), 1, - anon_sym_RPAREN, + ACTIONS(16061), 1, + sym_heredoc_start, [321617] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16027), 1, - sym_heredoc_start, + ACTIONS(16063), 1, + anon_sym_BQUOTE, [321624] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16029), 1, - anon_sym_esac, + ACTIONS(16051), 1, + anon_sym_BQUOTE, [321631] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16031), 1, - anon_sym_RBRACE2, + ACTIONS(16065), 1, + anon_sym_RPAREN, [321638] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16033), 1, - anon_sym_BQUOTE, + ACTIONS(16067), 1, + anon_sym_RPAREN, [321645] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16035), 1, - anon_sym_RBRACE2, + ACTIONS(16069), 1, + anon_sym_RBRACE3, [321652] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16037), 1, + ACTIONS(16071), 1, anon_sym_RPAREN, [321659] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16039), 1, - anon_sym_BQUOTE, + ACTIONS(16073), 1, + sym_heredoc_end, [321666] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16041), 1, - anon_sym_RBRACE2, + ACTIONS(16075), 1, + anon_sym_BQUOTE, [321673] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16043), 1, + ACTIONS(16071), 1, anon_sym_BQUOTE, [321680] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16039), 1, - anon_sym_RPAREN, + ACTIONS(16077), 1, + anon_sym_RBRACE2, [321687] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16045), 1, - anon_sym_RBRACE3, + ACTIONS(16079), 1, + anon_sym_esac, [321694] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16047), 1, - anon_sym_RBRACE3, + ACTIONS(14664), 1, + anon_sym_fi, [321701] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16049), 1, - anon_sym_RPAREN, + ACTIONS(16081), 1, + anon_sym_RBRACE2, [321708] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16051), 1, - anon_sym_RBRACE2, + ACTIONS(14756), 1, + anon_sym_RBRACE3, [321715] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16053), 1, - anon_sym_RPAREN, + ACTIONS(16083), 1, + anon_sym_RBRACE3, [321722] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16055), 1, - anon_sym_BQUOTE, + ACTIONS(16085), 1, + anon_sym_RPAREN, [321729] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16057), 1, - anon_sym_BQUOTE, + ACTIONS(16087), 1, + anon_sym_esac, [321736] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16059), 1, - anon_sym_esac, + ACTIONS(16089), 1, + sym_heredoc_start, [321743] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16061), 1, - sym_heredoc_start, + ACTIONS(16091), 1, + anon_sym_BQUOTE, [321750] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16063), 1, - anon_sym_RPAREN, + ACTIONS(16085), 1, + anon_sym_BQUOTE, [321757] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16065), 1, - anon_sym_RPAREN, + ACTIONS(16093), 1, + anon_sym_RBRACE3, [321764] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16055), 1, + ACTIONS(16095), 1, anon_sym_RPAREN, [321771] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16067), 1, - anon_sym_RBRACE3, + ACTIONS(16097), 1, + anon_sym_esac, [321778] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16069), 1, - anon_sym_RBRACE2, + ACTIONS(16099), 1, + sym_word, [321785] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16071), 1, - anon_sym_RBRACE3, + ACTIONS(16101), 1, + anon_sym_RPAREN, [321792] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16073), 1, - anon_sym_RPAREN, + ACTIONS(16103), 1, + anon_sym_RBRACE3, [321799] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16075), 1, - anon_sym_BQUOTE, + ACTIONS(16105), 1, + anon_sym_RBRACE3, [321806] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16077), 1, - anon_sym_BQUOTE, + ACTIONS(16107), 1, + anon_sym_RPAREN, [321813] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14512), 1, - anon_sym_RBRACE3, + ACTIONS(16109), 1, + anon_sym_RPAREN, [321820] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16079), 1, - anon_sym_RBRACE3, + ACTIONS(16111), 1, + anon_sym_BQUOTE, [321827] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16081), 1, - anon_sym_RPAREN, + ACTIONS(16107), 1, + anon_sym_BQUOTE, [321834] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16083), 1, - anon_sym_BQUOTE, + ACTIONS(14735), 1, + anon_sym_RBRACE3, [321841] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16075), 1, - anon_sym_RPAREN, + ACTIONS(16113), 1, + anon_sym_BQUOTE, [321848] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16085), 1, + ACTIONS(16109), 1, anon_sym_BQUOTE, [321855] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16087), 1, - anon_sym_RBRACE3, + ACTIONS(16115), 1, + anon_sym_RPAREN, [321862] = 2, - ACTIONS(71), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(16089), 1, - anon_sym_RBRACE2, + ACTIONS(16117), 1, + aux_sym_heredoc_redirect_token1, [321869] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16091), 1, - anon_sym_RPAREN, + ACTIONS(16119), 1, + anon_sym_RBRACE3, [321876] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16093), 1, - anon_sym_BQUOTE, + ACTIONS(16121), 1, + anon_sym_RPAREN, [321883] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16083), 1, - anon_sym_RPAREN, + ACTIONS(14754), 1, + anon_sym_RBRACE3, [321890] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16095), 1, - anon_sym_RBRACE3, + ACTIONS(16123), 1, + anon_sym_BQUOTE, [321897] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16097), 1, + ACTIONS(16121), 1, anon_sym_BQUOTE, [321904] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16099), 1, - anon_sym_esac, + ACTIONS(16125), 1, + anon_sym_RBRACE2, [321911] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16093), 1, - anon_sym_RPAREN, + ACTIONS(16127), 1, + anon_sym_esac, [321918] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16101), 1, - anon_sym_RBRACE3, + ACTIONS(16129), 1, + aux_sym_brace_expression_token1, [321925] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16103), 1, - anon_sym_RBRACK_RBRACK, + ACTIONS(16131), 1, + anon_sym_BQUOTE, [321932] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16105), 1, - anon_sym_BQUOTE, + ACTIONS(16133), 1, + anon_sym_RBRACE3, [321939] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16107), 1, - anon_sym_fi, + ACTIONS(16135), 1, + anon_sym_RPAREN, [321946] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16007), 1, - anon_sym_BQUOTE, + ACTIONS(16137), 1, + anon_sym_RBRACE3, [321953] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16109), 1, - anon_sym_RBRACE2, + ACTIONS(16139), 1, + anon_sym_RPAREN, [321960] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16073), 1, - anon_sym_BQUOTE, + ACTIONS(14686), 1, + anon_sym_fi, [321967] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16111), 1, - anon_sym_RBRACE2, + ACTIONS(16141), 1, + anon_sym_BQUOTE, [321974] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16113), 1, - anon_sym_RPAREN, + ACTIONS(16139), 1, + anon_sym_BQUOTE, [321981] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16115), 1, - anon_sym_RPAREN_RPAREN, + ACTIONS(16143), 1, + anon_sym_BQUOTE, [321988] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16117), 1, + ACTIONS(16135), 1, anon_sym_BQUOTE, [321995] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16119), 1, - anon_sym_BQUOTE, + ACTIONS(16145), 1, + anon_sym_RPAREN, [322002] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16117), 1, - anon_sym_RPAREN, + ACTIONS(16095), 1, + anon_sym_BQUOTE, [322009] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16121), 1, - aux_sym_brace_expression_token1, + ACTIONS(16147), 1, + anon_sym_RBRACE3, [322016] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16123), 1, + ACTIONS(16149), 1, anon_sym_RBRACE3, [322023] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16125), 1, - anon_sym_RBRACE3, + ACTIONS(16151), 1, + anon_sym_RPAREN, [322030] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16127), 1, + ACTIONS(16153), 1, anon_sym_RPAREN, [322037] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16129), 1, - anon_sym_RPAREN, + ACTIONS(16155), 1, + anon_sym_BQUOTE, [322044] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16131), 1, + ACTIONS(16151), 1, anon_sym_BQUOTE, [322051] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16133), 1, + ACTIONS(16157), 1, anon_sym_RPAREN, [322058] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16135), 1, - anon_sym_RBRACE2, + ACTIONS(16159), 1, + anon_sym_RPAREN_RPAREN, [322065] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16137), 1, - anon_sym_RPAREN, + ACTIONS(16161), 1, + anon_sym_RBRACE2, [322072] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16139), 1, + ACTIONS(16163), 1, anon_sym_BQUOTE, [322079] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16141), 1, + ACTIONS(16153), 1, anon_sym_BQUOTE, [322086] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16139), 1, + ACTIONS(16165), 1, anon_sym_RPAREN, [322093] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16143), 1, - anon_sym_BQUOTE, + ACTIONS(16167), 1, + anon_sym_fi, [322100] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16145), 1, - anon_sym_RBRACE2, + ACTIONS(16169), 1, + anon_sym_RBRACE3, [322107] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16147), 1, - anon_sym_LT_LT_LT, + ACTIONS(16171), 1, + anon_sym_RPAREN, [322114] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16149), 1, - anon_sym_RBRACE3, + ACTIONS(16173), 1, + anon_sym_esac, [322121] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16151), 1, - anon_sym_RBRACE2, + ACTIONS(16175), 1, + anon_sym_BQUOTE, [322128] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16133), 1, + ACTIONS(16171), 1, anon_sym_BQUOTE, [322135] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16153), 1, - anon_sym_RBRACE3, + ACTIONS(16177), 1, + anon_sym_RBRACE2, [322142] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16155), 1, - sym_heredoc_start, + ACTIONS(16179), 1, + anon_sym_BQUOTE, [322149] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16157), 1, - anon_sym_RPAREN, + ACTIONS(16181), 1, + anon_sym_RBRACE2, [322156] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16159), 1, + ACTIONS(16183), 1, anon_sym_RBRACE2, [322163] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16161), 1, - anon_sym_RPAREN, + ACTIONS(16185), 1, + anon_sym_esac, [322170] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16163), 1, - anon_sym_RPAREN, + ACTIONS(16187), 1, + anon_sym_RBRACE3, [322177] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16165), 1, - anon_sym_BQUOTE, + ACTIONS(16189), 1, + anon_sym_RBRACE3, [322184] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16167), 1, - anon_sym_BQUOTE, + ACTIONS(16191), 1, + anon_sym_RPAREN, [322191] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16165), 1, + ACTIONS(16193), 1, anon_sym_RPAREN, [322198] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16169), 1, - anon_sym_RPAREN, + ACTIONS(16195), 1, + anon_sym_BQUOTE, [322205] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16171), 1, + ACTIONS(16191), 1, anon_sym_BQUOTE, [322212] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16173), 1, - anon_sym_BQUOTE, + ACTIONS(16197), 1, + sym_heredoc_end, [322219] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16171), 1, + ACTIONS(16199), 1, anon_sym_RPAREN, [322226] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16175), 1, - anon_sym_RBRACE3, + ACTIONS(16201), 1, + sym_heredoc_end, [322233] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(9158), 1, - anon_sym_RBRACK, + ACTIONS(16203), 1, + anon_sym_BQUOTE, [322240] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(9164), 1, - anon_sym_RBRACK, + ACTIONS(16199), 1, + anon_sym_BQUOTE, [322247] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16177), 1, + ACTIONS(16205), 1, anon_sym_RPAREN, [322254] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16179), 1, - anon_sym_RBRACE2, + ACTIONS(14756), 1, + anon_sym_RBRACE3, [322261] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16181), 1, - anon_sym_RPAREN, + ACTIONS(16207), 1, + anon_sym_BQUOTE, [322268] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16183), 1, + ACTIONS(16205), 1, anon_sym_BQUOTE, [322275] = 2, - ACTIONS(71), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(16185), 1, - anon_sym_BQUOTE, + ACTIONS(16209), 1, + aux_sym_heredoc_redirect_token1, [322282] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16187), 1, - anon_sym_RPAREN, + ACTIONS(14756), 1, + anon_sym_RBRACE3, [322289] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16189), 1, - anon_sym_BQUOTE, + ACTIONS(16211), 1, + anon_sym_RBRACE3, [322296] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16191), 1, - anon_sym_BQUOTE, + ACTIONS(16213), 1, + anon_sym_RPAREN, [322303] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16183), 1, - anon_sym_RPAREN, + ACTIONS(16215), 1, + sym_word, [322310] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16193), 1, - anon_sym_RBRACE3, + ACTIONS(16217), 1, + anon_sym_esac, [322317] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16195), 1, - anon_sym_RBRACE3, + ACTIONS(16219), 1, + anon_sym_BQUOTE, [322324] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16189), 1, - anon_sym_RPAREN, + ACTIONS(16213), 1, + anon_sym_BQUOTE, [322331] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16197), 1, - anon_sym_RBRACE2, + ACTIONS(16221), 1, + anon_sym_RPAREN, [322338] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16199), 1, - anon_sym_RBRACE3, + ACTIONS(16223), 1, + sym_heredoc_end, [322345] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16201), 1, - anon_sym_RPAREN, + ACTIONS(16225), 1, + anon_sym_LT_LT_LT, [322352] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16131), 1, - anon_sym_RPAREN, + ACTIONS(14758), 1, + anon_sym_RBRACE3, [322359] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16203), 1, - anon_sym_RBRACE3, + ACTIONS(16227), 1, + anon_sym_RBRACE2, [322366] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16205), 1, - anon_sym_RBRACE2, + ACTIONS(16229), 1, + aux_sym_brace_expression_token1, [322373] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16207), 1, - anon_sym_RPAREN, + ACTIONS(16231), 1, + ts_builtin_sym_end, [322380] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16209), 1, - anon_sym_BQUOTE, + ACTIONS(16233), 1, + anon_sym_fi, [322387] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16211), 1, + ACTIONS(16235), 1, anon_sym_BQUOTE, [322394] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16209), 1, - anon_sym_RPAREN, + ACTIONS(16237), 1, + anon_sym_esac, [322401] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16213), 1, - anon_sym_RBRACE3, + ACTIONS(9226), 1, + anon_sym_RBRACK, [322408] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16215), 1, - anon_sym_RBRACE2, + ACTIONS(16193), 1, + anon_sym_BQUOTE, [322415] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16217), 1, - anon_sym_RPAREN, + ACTIONS(15261), 1, + aux_sym__simple_variable_name_token1, [322422] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15261), 1, - aux_sym__simple_variable_name_token1, + ACTIONS(16239), 1, + anon_sym_esac, [322429] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16219), 1, - anon_sym_BQUOTE, + ACTIONS(14735), 1, + anon_sym_RBRACE3, [322436] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16221), 1, - anon_sym_BQUOTE, + ACTIONS(16241), 1, + sym_word, [322443] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16223), 1, - sym_word, + ACTIONS(16243), 1, + anon_sym_DOT_DOT, [322450] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16225), 1, - anon_sym_DOT_DOT, + ACTIONS(16245), 1, + anon_sym_RBRACK_RBRACK, [322457] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16219), 1, - anon_sym_RPAREN, + ACTIONS(16247), 1, + anon_sym_RBRACE3, [322464] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16227), 1, - anon_sym_RBRACE3, + ACTIONS(16249), 1, + anon_sym_RPAREN, [322471] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16229), 1, - anon_sym_RPAREN, + ACTIONS(16251), 1, + sym_heredoc_start, [322478] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16231), 1, - sym_heredoc_start, + ACTIONS(16253), 1, + anon_sym_RPAREN, [322485] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16233), 1, - anon_sym_RBRACE3, + ACTIONS(16255), 1, + anon_sym_esac, [322492] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16235), 1, - anon_sym_BQUOTE, + ACTIONS(16257), 1, + anon_sym_RBRACE3, [322499] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16201), 1, - anon_sym_BQUOTE, + ACTIONS(16259), 1, + sym_heredoc_start, [322506] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16237), 1, - sym_heredoc_start, + ACTIONS(16261), 1, + anon_sym_RPAREN, [322513] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16239), 1, - anon_sym_esac, + ACTIONS(16263), 1, + anon_sym_LT_LT_LT, [322520] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16241), 1, - anon_sym_RPAREN, + ACTIONS(16265), 1, + aux_sym_brace_expression_token1, [322527] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16243), 1, - anon_sym_RBRACE2, + ACTIONS(16267), 1, + anon_sym_RPAREN, [322534] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16245), 1, - anon_sym_RPAREN, + ACTIONS(16269), 1, + anon_sym_RPAREN_RPAREN, [322541] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16247), 1, - anon_sym_RBRACE2, + ACTIONS(16271), 1, + anon_sym_BQUOTE, [322548] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16249), 1, - anon_sym_RPAREN, + ACTIONS(16273), 1, + anon_sym_BQUOTE, [322555] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16251), 1, - anon_sym_RBRACK_RBRACK, + ACTIONS(16275), 1, + anon_sym_in, [322562] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16253), 1, - anon_sym_BQUOTE, + ACTIONS(16277), 1, + anon_sym_in, [322569] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16255), 1, + ACTIONS(16267), 1, anon_sym_BQUOTE, [322576] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16253), 1, + ACTIONS(16279), 1, anon_sym_RPAREN, [322583] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16257), 1, - anon_sym_RBRACE3, + ACTIONS(16281), 1, + anon_sym_RPAREN, [322590] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16259), 1, - anon_sym_esac, + ACTIONS(16253), 1, + anon_sym_BQUOTE, [322597] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16261), 1, - anon_sym_BQUOTE, + ACTIONS(16283), 1, + anon_sym_RBRACE2, [322604] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16263), 1, - anon_sym_RBRACE2, + ACTIONS(16285), 1, + anon_sym_RPAREN, [322611] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14486), 1, - anon_sym_fi, + ACTIONS(14758), 1, + anon_sym_RBRACE3, [322618] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14540), 1, - anon_sym_fi, + ACTIONS(9132), 1, + anon_sym_RBRACK, [322625] = 2, - ACTIONS(71), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(16265), 1, - anon_sym_RPAREN, + ACTIONS(16287), 1, + aux_sym_heredoc_redirect_token1, [322632] = 2, - ACTIONS(71), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(16267), 1, - anon_sym_BQUOTE, + ACTIONS(16289), 1, + aux_sym_heredoc_redirect_token1, [322639] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16269), 1, - anon_sym_BQUOTE, + ACTIONS(16291), 1, + anon_sym_RBRACE2, [322646] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16267), 1, - anon_sym_RPAREN, + ACTIONS(16293), 1, + ts_builtin_sym_end, [322653] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16271), 1, + ACTIONS(14758), 1, anon_sym_RBRACE3, [322660] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16241), 1, - anon_sym_BQUOTE, + ACTIONS(16295), 1, + anon_sym_RBRACE2, [322667] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16273), 1, - anon_sym_RPAREN, + ACTIONS(14756), 1, + anon_sym_RBRACE3, [322674] = 2, - ACTIONS(71), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(16275), 1, - anon_sym_RBRACE2, + ACTIONS(16297), 1, + aux_sym_heredoc_redirect_token1, [322681] = 2, - ACTIONS(71), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(16277), 1, - anon_sym_RPAREN, + ACTIONS(16299), 1, + aux_sym_heredoc_redirect_token1, [322688] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16279), 1, - anon_sym_RPAREN, + ACTIONS(16301), 1, + anon_sym_esac, [322695] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16281), 1, - anon_sym_RPAREN, + ACTIONS(16303), 1, + anon_sym_esac, [322702] = 2, - ACTIONS(71), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(16283), 1, - anon_sym_BQUOTE, + ACTIONS(16305), 1, + aux_sym_heredoc_redirect_token1, [322709] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16285), 1, - anon_sym_BQUOTE, + ACTIONS(16307), 1, + anon_sym_RBRACE3, [322716] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16287), 1, - anon_sym_BQUOTE, + ACTIONS(16309), 1, + anon_sym_RPAREN, [322723] = 2, - ACTIONS(71), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(16283), 1, - anon_sym_RPAREN, + ACTIONS(16311), 1, + aux_sym_heredoc_redirect_token1, [322730] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16289), 1, + ACTIONS(14735), 1, anon_sym_RBRACE3, [322737] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16291), 1, + ACTIONS(16313), 1, anon_sym_BQUOTE, [322744] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16293), 1, - anon_sym_RBRACE2, + ACTIONS(16309), 1, + anon_sym_BQUOTE, [322751] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16287), 1, + ACTIONS(16315), 1, anon_sym_RPAREN, [322758] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16295), 1, - anon_sym_RBRACE3, + ACTIONS(16317), 1, + anon_sym_RBRACE2, [322765] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16297), 1, - anon_sym_RPAREN, + ACTIONS(16319), 1, + anon_sym_RBRACE3, [322772] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16299), 1, - anon_sym_DOT_DOT, + ACTIONS(16321), 1, + anon_sym_RBRACE2, [322779] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16301), 1, - anon_sym_esac, + ACTIONS(16323), 1, + anon_sym_RBRACE3, [322786] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16303), 1, + ACTIONS(16325), 1, anon_sym_RPAREN, [322793] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16305), 1, - anon_sym_RBRACE2, + ACTIONS(14735), 1, + anon_sym_RBRACE3, [322800] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16307), 1, - anon_sym_RBRACE2, + ACTIONS(14758), 1, + anon_sym_RBRACE3, [322807] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16309), 1, - anon_sym_RBRACK_RBRACK, + ACTIONS(16327), 1, + anon_sym_BQUOTE, [322814] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16311), 1, - anon_sym_RPAREN, + ACTIONS(16325), 1, + anon_sym_BQUOTE, [322821] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16313), 1, - anon_sym_BQUOTE, + ACTIONS(16329), 1, + anon_sym_RPAREN, [322828] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16315), 1, - anon_sym_BQUOTE, + ACTIONS(14735), 1, + anon_sym_RBRACE3, [322835] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16313), 1, + ACTIONS(15913), 1, anon_sym_RPAREN, [322842] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16317), 1, + ACTIONS(16331), 1, anon_sym_RBRACE3, [322849] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16319), 1, - anon_sym_RBRACE2, + ACTIONS(16333), 1, + anon_sym_RPAREN, [322856] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16321), 1, - anon_sym_esac, + ACTIONS(9086), 1, + anon_sym_RBRACK, [322863] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16323), 1, - anon_sym_RBRACE2, + ACTIONS(16335), 1, + anon_sym_BQUOTE, [322870] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16325), 1, - anon_sym_RBRACE2, + ACTIONS(16333), 1, + anon_sym_BQUOTE, [322877] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16327), 1, + ACTIONS(16337), 1, anon_sym_RPAREN, [322884] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16329), 1, - anon_sym_BQUOTE, + ACTIONS(16339), 1, + anon_sym_RPAREN, [322891] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16331), 1, - anon_sym_RPAREN, + ACTIONS(16341), 1, + anon_sym_RBRACE3, [322898] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16333), 1, - anon_sym_BQUOTE, + ACTIONS(16343), 1, + anon_sym_RBRACE2, [322905] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16335), 1, - anon_sym_BQUOTE, + ACTIONS(16345), 1, + anon_sym_RPAREN, [322912] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16337), 1, - anon_sym_BQUOTE, + ACTIONS(16347), 1, + anon_sym_esac, [322919] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16333), 1, - anon_sym_RPAREN, + ACTIONS(16349), 1, + anon_sym_BQUOTE, [322926] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16339), 1, - anon_sym_RBRACE3, + ACTIONS(16345), 1, + anon_sym_BQUOTE, [322933] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16341), 1, + ACTIONS(16351), 1, anon_sym_RPAREN, [322940] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16329), 1, - anon_sym_RPAREN, + ACTIONS(14735), 1, + anon_sym_RBRACE3, [322947] = 2, - ACTIONS(71), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(16343), 1, - anon_sym_RBRACE3, + ACTIONS(16353), 1, + aux_sym_heredoc_redirect_token1, [322954] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16345), 1, - sym_heredoc_end, + ACTIONS(9112), 1, + anon_sym_RBRACK, [322961] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16347), 1, - sym_heredoc_end, + ACTIONS(9088), 1, + anon_sym_RBRACK, [322968] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16349), 1, - anon_sym_BQUOTE, + ACTIONS(16355), 1, + anon_sym_RBRACE3, [322975] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16351), 1, - anon_sym_RBRACE2, + ACTIONS(16357), 1, + anon_sym_RPAREN, [322982] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16353), 1, - ts_builtin_sym_end, + ACTIONS(16359), 1, + anon_sym_RBRACE2, [322989] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16355), 1, - ts_builtin_sym_end, + ACTIONS(16361), 1, + anon_sym_BQUOTE, [322996] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16357), 1, - anon_sym_RPAREN, + anon_sym_BQUOTE, [323003] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16359), 1, - anon_sym_BQUOTE, + ACTIONS(16363), 1, + anon_sym_DOT_DOT, [323010] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16361), 1, - anon_sym_BQUOTE, + ACTIONS(16365), 1, + anon_sym_RPAREN, [323017] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16363), 1, - anon_sym_BQUOTE, + ACTIONS(16367), 1, + anon_sym_LT_LT_LT, [323024] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16359), 1, - anon_sym_RPAREN, + ACTIONS(16369), 1, + anon_sym_RBRACE2, [323031] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16365), 1, - anon_sym_RBRACE3, + ACTIONS(16371), 1, + aux_sym_brace_expression_token1, [323038] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14512), 1, - anon_sym_RBRACE3, + ACTIONS(9060), 1, + anon_sym_RBRACK, [323045] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(14696), 1, - anon_sym_fi, + ACTIONS(15289), 1, + aux_sym__simple_variable_name_token1, [323052] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15285), 1, - aux_sym__simple_variable_name_token1, + ACTIONS(16373), 1, + anon_sym_RBRACE2, [323059] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16367), 1, - anon_sym_fi, + ACTIONS(14758), 1, + anon_sym_RBRACE3, [323066] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16369), 1, - anon_sym_RBRACE2, + ACTIONS(16375), 1, + sym_word, [323073] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16371), 1, - sym_word, + ACTIONS(16377), 1, + anon_sym_DOT_DOT, [323080] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16373), 1, - anon_sym_DOT_DOT, + ACTIONS(16379), 1, + anon_sym_RBRACE3, [323087] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16375), 1, - anon_sym_RPAREN, + ACTIONS(16381), 1, + sym_heredoc_end, [323094] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16377), 1, - anon_sym_BQUOTE, + ACTIONS(16383), 1, + anon_sym_RPAREN, [323101] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16379), 1, - anon_sym_RPAREN, + ACTIONS(16385), 1, + sym_heredoc_start, [323108] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16381), 1, - sym_heredoc_start, + ACTIONS(16387), 1, + anon_sym_RBRACE3, [323115] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16383), 1, - anon_sym_BQUOTE, + ACTIONS(14756), 1, + anon_sym_RBRACE3, [323122] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16385), 1, + ACTIONS(16389), 1, anon_sym_esac, [323129] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16387), 1, - anon_sym_RBRACE2, + ACTIONS(16391), 1, + sym_heredoc_start, [323136] = 2, - ACTIONS(71), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(16389), 1, - sym_heredoc_start, + ACTIONS(16393), 1, + aux_sym_heredoc_redirect_token1, [323143] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16377), 1, + ACTIONS(15429), 1, anon_sym_RPAREN, [323150] = 2, - ACTIONS(71), 1, + ACTIONS(3), 1, sym_comment, - ACTIONS(16391), 1, - anon_sym_RBRACE3, + ACTIONS(16395), 1, + aux_sym_heredoc_redirect_token1, [323157] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16393), 1, + ACTIONS(16397), 1, anon_sym_esac, [323164] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16395), 1, - anon_sym_esac, + ACTIONS(16399), 1, + anon_sym_RBRACK_RBRACK, [323171] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16397), 1, - anon_sym_RBRACE2, + ACTIONS(16401), 1, + anon_sym_RBRACE3, [323178] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16399), 1, + ACTIONS(16403), 1, anon_sym_RPAREN, [323185] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16401), 1, - anon_sym_BQUOTE, + ACTIONS(16405), 1, + anon_sym_RPAREN, [323192] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16403), 1, + ACTIONS(16407), 1, anon_sym_BQUOTE, [323199] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16401), 1, - anon_sym_RPAREN, + ACTIONS(16403), 1, + anon_sym_BQUOTE, [323206] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16405), 1, - anon_sym_RBRACE3, + ACTIONS(16409), 1, + anon_sym_RPAREN, [323213] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16407), 1, - anon_sym_RPAREN, + ACTIONS(16411), 1, + anon_sym_RBRACE3, [323220] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16409), 1, - anon_sym_esac, + ACTIONS(14558), 1, + anon_sym_fi, [323227] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16411), 1, - anon_sym_esac, - [323234] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16413), 1, anon_sym_RBRACE2, - [323241] = 2, + [323234] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16415), 1, anon_sym_RPAREN, - [323248] = 2, + [323241] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16417), 1, - anon_sym_BQUOTE, - [323255] = 2, + anon_sym_RBRACE3, + [323248] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16419), 1, - anon_sym_BQUOTE, + aux_sym_brace_expression_token1, + [323255] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(16421), 1, + anon_sym_RBRACE3, [323262] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16417), 1, + ACTIONS(16423), 1, anon_sym_RPAREN, [323269] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16421), 1, - anon_sym_RBRACE3, + ACTIONS(16425), 1, + sym_word, [323276] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16423), 1, - sym_word, + ACTIONS(16427), 1, + anon_sym_DOT_DOT, [323283] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16425), 1, - anon_sym_DOT_DOT, + ACTIONS(16429), 1, + anon_sym_RPAREN, [323290] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16427), 1, - anon_sym_RPAREN, + ACTIONS(16431), 1, + sym_heredoc_start, [323297] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16429), 1, - sym_heredoc_start, + ACTIONS(16433), 1, + anon_sym_RBRACK_RBRACK, [323304] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16431), 1, + ACTIONS(16435), 1, anon_sym_BQUOTE, [323311] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16433), 1, - sym_word, + ACTIONS(16437), 1, + sym_heredoc_start, [323318] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16435), 1, - sym_heredoc_start, + ACTIONS(16423), 1, + anon_sym_BQUOTE, [323325] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16437), 1, - anon_sym_BQUOTE, + ACTIONS(16439), 1, + anon_sym_RPAREN, [323332] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16439), 1, - sym_heredoc_end, + ACTIONS(16441), 1, + anon_sym_RPAREN, [323339] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16431), 1, - anon_sym_RPAREN, + ACTIONS(16443), 1, + anon_sym_RBRACE3, [323346] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16441), 1, - anon_sym_RBRACE3, + ACTIONS(16445), 1, + anon_sym_RPAREN, [323353] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16349), 1, - anon_sym_RPAREN, + ACTIONS(16447), 1, + sym_word, [323360] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16443), 1, - sym_heredoc_end, + ACTIONS(16449), 1, + anon_sym_esac, [323367] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16445), 1, - anon_sym_RBRACE3, + ACTIONS(16451), 1, + anon_sym_BQUOTE, [323374] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16447), 1, - anon_sym_RBRACE2, + ACTIONS(16445), 1, + anon_sym_BQUOTE, [323381] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16449), 1, - anon_sym_RPAREN, + ACTIONS(14735), 1, + anon_sym_RBRACE3, [323388] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16451), 1, - anon_sym_BQUOTE, + ACTIONS(14756), 1, + anon_sym_RBRACE3, [323395] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16453), 1, - anon_sym_esac, + anon_sym_RPAREN, [323402] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16455), 1, - anon_sym_BQUOTE, + ACTIONS(14756), 1, + anon_sym_RBRACE3, [323409] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16457), 1, - anon_sym_RBRACE3, + ACTIONS(16455), 1, + anon_sym_BQUOTE, [323416] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16451), 1, - anon_sym_RPAREN, + ACTIONS(16415), 1, + anon_sym_BQUOTE, [323423] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16459), 1, - anon_sym_RBRACE2, + ACTIONS(16457), 1, + anon_sym_RPAREN, [323430] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16461), 1, - anon_sym_RBRACE3, + ACTIONS(16459), 1, + anon_sym_RBRACE2, [323437] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16463), 1, - anon_sym_RBRACE2, + ACTIONS(16461), 1, + anon_sym_BQUOTE, [323444] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16465), 1, - anon_sym_RPAREN, + ACTIONS(16463), 1, + anon_sym_BQUOTE, [323451] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16467), 1, - anon_sym_BQUOTE, + ACTIONS(16465), 1, + anon_sym_DOT_DOT, [323458] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16469), 1, + ACTIONS(16467), 1, anon_sym_DOT_DOT, [323465] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16471), 1, + ACTIONS(16469), 1, anon_sym_DOT_DOT, [323472] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16473), 1, + ACTIONS(16471), 1, anon_sym_DOT_DOT, [323479] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16475), 1, + ACTIONS(16473), 1, anon_sym_DOT_DOT, [323486] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16477), 1, + ACTIONS(16475), 1, anon_sym_DOT_DOT, [323493] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16479), 1, + ACTIONS(16477), 1, anon_sym_DOT_DOT, [323500] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16481), 1, + ACTIONS(16479), 1, anon_sym_DOT_DOT, [323507] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16483), 1, + ACTIONS(16481), 1, anon_sym_DOT_DOT, [323514] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16485), 1, + ACTIONS(16483), 1, anon_sym_DOT_DOT, [323521] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16487), 1, + ACTIONS(16485), 1, anon_sym_DOT_DOT, [323528] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16489), 1, + ACTIONS(16487), 1, anon_sym_DOT_DOT, [323535] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16491), 1, + ACTIONS(16489), 1, anon_sym_DOT_DOT, [323542] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16493), 1, + ACTIONS(16491), 1, anon_sym_DOT_DOT, [323549] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16495), 1, + ACTIONS(16493), 1, anon_sym_DOT_DOT, [323556] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16497), 1, + ACTIONS(16495), 1, anon_sym_DOT_DOT, [323563] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16499), 1, + ACTIONS(16497), 1, anon_sym_DOT_DOT, [323570] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16501), 1, + ACTIONS(16499), 1, anon_sym_DOT_DOT, [323577] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16503), 1, + ACTIONS(16501), 1, anon_sym_DOT_DOT, [323584] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16505), 1, + ACTIONS(16503), 1, anon_sym_DOT_DOT, [323591] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16507), 1, + ACTIONS(16505), 1, anon_sym_DOT_DOT, [323598] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16509), 1, + ACTIONS(16507), 1, anon_sym_DOT_DOT, [323605] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16511), 1, + ACTIONS(16509), 1, anon_sym_DOT_DOT, [323612] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16513), 1, + ACTIONS(16511), 1, anon_sym_DOT_DOT, [323619] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16515), 1, + ACTIONS(16513), 1, anon_sym_DOT_DOT, [323626] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16517), 1, + ACTIONS(16515), 1, anon_sym_DOT_DOT, [323633] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16519), 1, + ACTIONS(16517), 1, anon_sym_DOT_DOT, [323640] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16521), 1, + ACTIONS(16519), 1, anon_sym_DOT_DOT, [323647] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16523), 1, + ACTIONS(16521), 1, anon_sym_DOT_DOT, [323654] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16525), 1, + ACTIONS(16523), 1, anon_sym_DOT_DOT, [323661] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16527), 1, + ACTIONS(16525), 1, anon_sym_DOT_DOT, [323668] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16529), 1, + ACTIONS(16527), 1, anon_sym_DOT_DOT, [323675] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16531), 1, + ACTIONS(16529), 1, anon_sym_DOT_DOT, [323682] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16533), 1, + ACTIONS(16531), 1, anon_sym_DOT_DOT, [323689] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16535), 1, + ACTIONS(16533), 1, anon_sym_DOT_DOT, [323696] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16537), 1, + ACTIONS(16535), 1, anon_sym_DOT_DOT, [323703] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16539), 1, + ACTIONS(16537), 1, anon_sym_DOT_DOT, [323710] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16541), 1, + ACTIONS(16539), 1, anon_sym_DOT_DOT, [323717] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16543), 1, + ACTIONS(16541), 1, anon_sym_DOT_DOT, [323724] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16545), 1, + ACTIONS(16543), 1, anon_sym_DOT_DOT, [323731] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16547), 1, + ACTIONS(16545), 1, anon_sym_DOT_DOT, [323738] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16549), 1, + ACTIONS(16547), 1, anon_sym_DOT_DOT, [323745] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16551), 1, + ACTIONS(16549), 1, anon_sym_DOT_DOT, [323752] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16553), 1, + ACTIONS(16551), 1, anon_sym_DOT_DOT, [323759] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16555), 1, + ACTIONS(16553), 1, anon_sym_DOT_DOT, [323766] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16557), 1, + ACTIONS(16555), 1, anon_sym_DOT_DOT, [323773] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16559), 1, + ACTIONS(16557), 1, anon_sym_DOT_DOT, [323780] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16561), 1, + ACTIONS(16559), 1, anon_sym_DOT_DOT, [323787] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16563), 1, + ACTIONS(16561), 1, anon_sym_DOT_DOT, [323794] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16565), 1, + ACTIONS(16563), 1, anon_sym_DOT_DOT, [323801] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16567), 1, + ACTIONS(16565), 1, anon_sym_DOT_DOT, [323808] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16569), 1, + ACTIONS(16567), 1, anon_sym_DOT_DOT, [323815] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16571), 1, + ACTIONS(16569), 1, anon_sym_DOT_DOT, [323822] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16573), 1, + ACTIONS(16571), 1, anon_sym_DOT_DOT, [323829] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16575), 1, + ACTIONS(16573), 1, anon_sym_DOT_DOT, [323836] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16577), 1, + ACTIONS(16575), 1, anon_sym_DOT_DOT, [323843] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16579), 1, + ACTIONS(16577), 1, anon_sym_DOT_DOT, [323850] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16581), 1, + ACTIONS(16579), 1, anon_sym_DOT_DOT, [323857] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16583), 1, + ACTIONS(16581), 1, anon_sym_DOT_DOT, [323864] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16585), 1, + ACTIONS(16583), 1, anon_sym_DOT_DOT, [323871] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16587), 1, - anon_sym_DOT_DOT, + ACTIONS(16585), 1, + aux_sym_brace_expression_token1, [323878] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16589), 1, - aux_sym_brace_expression_token1, + ACTIONS(16587), 1, + anon_sym_RBRACE2, [323885] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16591), 1, - anon_sym_BQUOTE, + ACTIONS(16589), 1, + anon_sym_in, [323892] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16467), 1, - anon_sym_RPAREN, + ACTIONS(16439), 1, + anon_sym_BQUOTE, [323899] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16593), 1, - anon_sym_RPAREN, + ACTIONS(16591), 1, + aux_sym_brace_expression_token1, [323906] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16595), 1, + ACTIONS(16593), 1, anon_sym_RBRACE3, [323913] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16593), 1, - anon_sym_BQUOTE, + ACTIONS(16595), 1, + anon_sym_RPAREN, [323920] = 2, ACTIONS(71), 1, sym_comment, ACTIONS(16597), 1, - anon_sym_esac, + anon_sym_LT_LT_LT, [323927] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(15277), 1, - aux_sym__simple_variable_name_token1, + ACTIONS(16599), 1, + aux_sym_brace_expression_token1, [323934] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16599), 1, + ACTIONS(16601), 1, aux_sym_brace_expression_token1, [323941] = 2, ACTIONS(71), 1, sym_comment, - ACTIONS(16601), 1, - anon_sym_BQUOTE, + ACTIONS(15529), 1, + anon_sym_RPAREN, [323948] = 2, ACTIONS(71), 1, sym_comment, @@ -343623,12 +343924,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 1, sym_comment, ACTIONS(16727), 1, - aux_sym_brace_expression_token1, + anon_sym_RPAREN_RPAREN, [324389] = 2, - ACTIONS(71), 1, + ACTIONS(3), 1, sym_comment, ACTIONS(16729), 1, - anon_sym_RBRACE3, + aux_sym_heredoc_redirect_token1, }; static const uint32_t ts_small_parse_table_map[] = { @@ -343637,4337 +343938,4337 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(530)] = 240, [SMALL_STATE(531)] = 359, [SMALL_STATE(532)] = 478, - [SMALL_STATE(533)] = 594, - [SMALL_STATE(534)] = 712, - [SMALL_STATE(535)] = 830, + [SMALL_STATE(533)] = 592, + [SMALL_STATE(534)] = 710, + [SMALL_STATE(535)] = 828, [SMALL_STATE(536)] = 944, - [SMALL_STATE(537)] = 1062, - [SMALL_STATE(538)] = 1180, - [SMALL_STATE(539)] = 1258, - [SMALL_STATE(540)] = 1336, + [SMALL_STATE(537)] = 1058, + [SMALL_STATE(538)] = 1136, + [SMALL_STATE(539)] = 1214, + [SMALL_STATE(540)] = 1332, [SMALL_STATE(541)] = 1450, - [SMALL_STATE(542)] = 1565, - [SMALL_STATE(543)] = 1678, - [SMALL_STATE(544)] = 1793, - [SMALL_STATE(545)] = 1910, - [SMALL_STATE(546)] = 2027, - [SMALL_STATE(547)] = 2136, - [SMALL_STATE(548)] = 2249, - [SMALL_STATE(549)] = 2358, - [SMALL_STATE(550)] = 2435, - [SMALL_STATE(551)] = 2512, - [SMALL_STATE(552)] = 2621, - [SMALL_STATE(553)] = 2698, + [SMALL_STATE(542)] = 1559, + [SMALL_STATE(543)] = 1668, + [SMALL_STATE(544)] = 1781, + [SMALL_STATE(545)] = 1890, + [SMALL_STATE(546)] = 2005, + [SMALL_STATE(547)] = 2120, + [SMALL_STATE(548)] = 2233, + [SMALL_STATE(549)] = 2310, + [SMALL_STATE(550)] = 2387, + [SMALL_STATE(551)] = 2464, + [SMALL_STATE(552)] = 2541, + [SMALL_STATE(553)] = 2658, [SMALL_STATE(554)] = 2775, [SMALL_STATE(555)] = 2890, [SMALL_STATE(556)] = 2966, - [SMALL_STATE(557)] = 3042, - [SMALL_STATE(558)] = 3154, - [SMALL_STATE(559)] = 3230, - [SMALL_STATE(560)] = 3338, - [SMALL_STATE(561)] = 3450, - [SMALL_STATE(562)] = 3562, - [SMALL_STATE(563)] = 3676, - [SMALL_STATE(564)] = 3784, + [SMALL_STATE(557)] = 3080, + [SMALL_STATE(558)] = 3188, + [SMALL_STATE(559)] = 3264, + [SMALL_STATE(560)] = 3340, + [SMALL_STATE(561)] = 3416, + [SMALL_STATE(562)] = 3528, + [SMALL_STATE(563)] = 3636, + [SMALL_STATE(564)] = 3748, [SMALL_STATE(565)] = 3860, - [SMALL_STATE(566)] = 3968, - [SMALL_STATE(567)] = 4080, - [SMALL_STATE(568)] = 4156, - [SMALL_STATE(569)] = 4232, + [SMALL_STATE(566)] = 3936, + [SMALL_STATE(567)] = 4044, + [SMALL_STATE(568)] = 4158, + [SMALL_STATE(569)] = 4234, [SMALL_STATE(570)] = 4346, [SMALL_STATE(571)] = 4453, - [SMALL_STATE(572)] = 4564, - [SMALL_STATE(573)] = 4639, - [SMALL_STATE(574)] = 4710, - [SMALL_STATE(575)] = 4823, - [SMALL_STATE(576)] = 4894, - [SMALL_STATE(577)] = 5001, - [SMALL_STATE(578)] = 5108, - [SMALL_STATE(579)] = 5183, - [SMALL_STATE(580)] = 5258, - [SMALL_STATE(581)] = 5333, - [SMALL_STATE(582)] = 5440, - [SMALL_STATE(583)] = 5551, - [SMALL_STATE(584)] = 5652, - [SMALL_STATE(585)] = 5761, - [SMALL_STATE(586)] = 5868, - [SMALL_STATE(587)] = 5975, - [SMALL_STATE(588)] = 6084, - [SMALL_STATE(589)] = 6159, + [SMALL_STATE(572)] = 4562, + [SMALL_STATE(573)] = 4671, + [SMALL_STATE(574)] = 4778, + [SMALL_STATE(575)] = 4885, + [SMALL_STATE(576)] = 4992, + [SMALL_STATE(577)] = 5067, + [SMALL_STATE(578)] = 5174, + [SMALL_STATE(579)] = 5249, + [SMALL_STATE(580)] = 5324, + [SMALL_STATE(581)] = 5399, + [SMALL_STATE(582)] = 5474, + [SMALL_STATE(583)] = 5549, + [SMALL_STATE(584)] = 5620, + [SMALL_STATE(585)] = 5691, + [SMALL_STATE(586)] = 5792, + [SMALL_STATE(587)] = 5899, + [SMALL_STATE(588)] = 6010, + [SMALL_STATE(589)] = 6123, [SMALL_STATE(590)] = 6234, - [SMALL_STATE(591)] = 6336, - [SMALL_STATE(592)] = 6436, - [SMALL_STATE(593)] = 6540, - [SMALL_STATE(594)] = 6640, - [SMALL_STATE(595)] = 6744, - [SMALL_STATE(596)] = 6844, - [SMALL_STATE(597)] = 6958, - [SMALL_STATE(598)] = 7032, - [SMALL_STATE(599)] = 7134, - [SMALL_STATE(600)] = 7198, - [SMALL_STATE(601)] = 7312, - [SMALL_STATE(602)] = 7382, - [SMALL_STATE(603)] = 7488, - [SMALL_STATE(604)] = 7562, - [SMALL_STATE(605)] = 7632, - [SMALL_STATE(606)] = 7706, - [SMALL_STATE(607)] = 7780, - [SMALL_STATE(608)] = 7850, - [SMALL_STATE(609)] = 7924, - [SMALL_STATE(610)] = 8024, - [SMALL_STATE(611)] = 8130, - [SMALL_STATE(612)] = 8204, - [SMALL_STATE(613)] = 8310, - [SMALL_STATE(614)] = 8412, + [SMALL_STATE(591)] = 6308, + [SMALL_STATE(592)] = 6382, + [SMALL_STATE(593)] = 6452, + [SMALL_STATE(594)] = 6522, + [SMALL_STATE(595)] = 6596, + [SMALL_STATE(596)] = 6670, + [SMALL_STATE(597)] = 6770, + [SMALL_STATE(598)] = 6870, + [SMALL_STATE(599)] = 6940, + [SMALL_STATE(600)] = 7014, + [SMALL_STATE(601)] = 7116, + [SMALL_STATE(602)] = 7222, + [SMALL_STATE(603)] = 7322, + [SMALL_STATE(604)] = 7428, + [SMALL_STATE(605)] = 7530, + [SMALL_STATE(606)] = 7594, + [SMALL_STATE(607)] = 7700, + [SMALL_STATE(608)] = 7802, + [SMALL_STATE(609)] = 7906, + [SMALL_STATE(610)] = 7980, + [SMALL_STATE(611)] = 8050, + [SMALL_STATE(612)] = 8164, + [SMALL_STATE(613)] = 8268, + [SMALL_STATE(614)] = 8382, [SMALL_STATE(615)] = 8482, [SMALL_STATE(616)] = 8581, - [SMALL_STATE(617)] = 8680, - [SMALL_STATE(618)] = 8795, - [SMALL_STATE(619)] = 8926, - [SMALL_STATE(620)] = 9057, - [SMALL_STATE(621)] = 9172, - [SMALL_STATE(622)] = 9271, - [SMALL_STATE(623)] = 9338, - [SMALL_STATE(624)] = 9469, - [SMALL_STATE(625)] = 9536, - [SMALL_STATE(626)] = 9603, - [SMALL_STATE(627)] = 9734, - [SMALL_STATE(628)] = 9833, - [SMALL_STATE(629)] = 9906, - [SMALL_STATE(630)] = 10007, - [SMALL_STATE(631)] = 10106, - [SMALL_STATE(632)] = 10205, - [SMALL_STATE(633)] = 10306, - [SMALL_STATE(634)] = 10407, - [SMALL_STATE(635)] = 10480, - [SMALL_STATE(636)] = 10579, - [SMALL_STATE(637)] = 10710, - [SMALL_STATE(638)] = 10783, - [SMALL_STATE(639)] = 10856, - [SMALL_STATE(640)] = 10929, - [SMALL_STATE(641)] = 11002, - [SMALL_STATE(642)] = 11075, - [SMALL_STATE(643)] = 11144, - [SMALL_STATE(644)] = 11217, - [SMALL_STATE(645)] = 11348, - [SMALL_STATE(646)] = 11417, - [SMALL_STATE(647)] = 11486, - [SMALL_STATE(648)] = 11559, - [SMALL_STATE(649)] = 11628, - [SMALL_STATE(650)] = 11697, - [SMALL_STATE(651)] = 11828, - [SMALL_STATE(652)] = 11927, - [SMALL_STATE(653)] = 12000, - [SMALL_STATE(654)] = 12099, - [SMALL_STATE(655)] = 12168, - [SMALL_STATE(656)] = 12235, - [SMALL_STATE(657)] = 12366, + [SMALL_STATE(617)] = 8682, + [SMALL_STATE(618)] = 8797, + [SMALL_STATE(619)] = 8928, + [SMALL_STATE(620)] = 9027, + [SMALL_STATE(621)] = 9126, + [SMALL_STATE(622)] = 9257, + [SMALL_STATE(623)] = 9356, + [SMALL_STATE(624)] = 9455, + [SMALL_STATE(625)] = 9522, + [SMALL_STATE(626)] = 9621, + [SMALL_STATE(627)] = 9690, + [SMALL_STATE(628)] = 9759, + [SMALL_STATE(629)] = 9890, + [SMALL_STATE(630)] = 9989, + [SMALL_STATE(631)] = 10056, + [SMALL_STATE(632)] = 10123, + [SMALL_STATE(633)] = 10222, + [SMALL_STATE(634)] = 10321, + [SMALL_STATE(635)] = 10436, + [SMALL_STATE(636)] = 10505, + [SMALL_STATE(637)] = 10578, + [SMALL_STATE(638)] = 10651, + [SMALL_STATE(639)] = 10724, + [SMALL_STATE(640)] = 10797, + [SMALL_STATE(641)] = 10866, + [SMALL_STATE(642)] = 10939, + [SMALL_STATE(643)] = 11012, + [SMALL_STATE(644)] = 11111, + [SMALL_STATE(645)] = 11180, + [SMALL_STATE(646)] = 11253, + [SMALL_STATE(647)] = 11326, + [SMALL_STATE(648)] = 11399, + [SMALL_STATE(649)] = 11472, + [SMALL_STATE(650)] = 11603, + [SMALL_STATE(651)] = 11734, + [SMALL_STATE(652)] = 11803, + [SMALL_STATE(653)] = 11904, + [SMALL_STATE(654)] = 11971, + [SMALL_STATE(655)] = 12102, + [SMALL_STATE(656)] = 12233, + [SMALL_STATE(657)] = 12334, [SMALL_STATE(658)] = 12465, - [SMALL_STATE(659)] = 12563, - [SMALL_STATE(660)] = 12691, - [SMALL_STATE(661)] = 12789, - [SMALL_STATE(662)] = 12917, - [SMALL_STATE(663)] = 12989, - [SMALL_STATE(664)] = 13061, - [SMALL_STATE(665)] = 13161, - [SMALL_STATE(666)] = 13259, - [SMALL_STATE(667)] = 13331, - [SMALL_STATE(668)] = 13431, - [SMALL_STATE(669)] = 13503, - [SMALL_STATE(670)] = 13575, - [SMALL_STATE(671)] = 13647, - [SMALL_STATE(672)] = 13775, - [SMALL_STATE(673)] = 13873, - [SMALL_STATE(674)] = 13941, - [SMALL_STATE(675)] = 14013, - [SMALL_STATE(676)] = 14121, - [SMALL_STATE(677)] = 14193, - [SMALL_STATE(678)] = 14265, - [SMALL_STATE(679)] = 14363, - [SMALL_STATE(680)] = 14435, - [SMALL_STATE(681)] = 14533, - [SMALL_STATE(682)] = 14631, - [SMALL_STATE(683)] = 14699, - [SMALL_STATE(684)] = 14771, - [SMALL_STATE(685)] = 14869, - [SMALL_STATE(686)] = 14997, - [SMALL_STATE(687)] = 15065, - [SMALL_STATE(688)] = 15137, - [SMALL_STATE(689)] = 15245, - [SMALL_STATE(690)] = 15313, - [SMALL_STATE(691)] = 15413, - [SMALL_STATE(692)] = 15511, - [SMALL_STATE(693)] = 15583, - [SMALL_STATE(694)] = 15683, - [SMALL_STATE(695)] = 15751, - [SMALL_STATE(696)] = 15851, - [SMALL_STATE(697)] = 15923, - [SMALL_STATE(698)] = 16051, - [SMALL_STATE(699)] = 16179, - [SMALL_STATE(700)] = 16251, - [SMALL_STATE(701)] = 16323, - [SMALL_STATE(702)] = 16451, - [SMALL_STATE(703)] = 16549, - [SMALL_STATE(704)] = 16659, - [SMALL_STATE(705)] = 16757, - [SMALL_STATE(706)] = 16855, - [SMALL_STATE(707)] = 16953, - [SMALL_STATE(708)] = 17051, - [SMALL_STATE(709)] = 17119, + [SMALL_STATE(659)] = 12537, + [SMALL_STATE(660)] = 12635, + [SMALL_STATE(661)] = 12733, + [SMALL_STATE(662)] = 12831, + [SMALL_STATE(663)] = 12903, + [SMALL_STATE(664)] = 12975, + [SMALL_STATE(665)] = 13103, + [SMALL_STATE(666)] = 13201, + [SMALL_STATE(667)] = 13299, + [SMALL_STATE(668)] = 13397, + [SMALL_STATE(669)] = 13497, + [SMALL_STATE(670)] = 13565, + [SMALL_STATE(671)] = 13633, + [SMALL_STATE(672)] = 13733, + [SMALL_STATE(673)] = 13831, + [SMALL_STATE(674)] = 13929, + [SMALL_STATE(675)] = 14027, + [SMALL_STATE(676)] = 14125, + [SMALL_STATE(677)] = 14223, + [SMALL_STATE(678)] = 14351, + [SMALL_STATE(679)] = 14451, + [SMALL_STATE(680)] = 14579, + [SMALL_STATE(681)] = 14651, + [SMALL_STATE(682)] = 14723, + [SMALL_STATE(683)] = 14795, + [SMALL_STATE(684)] = 14867, + [SMALL_STATE(685)] = 14939, + [SMALL_STATE(686)] = 15011, + [SMALL_STATE(687)] = 15109, + [SMALL_STATE(688)] = 15177, + [SMALL_STATE(689)] = 15275, + [SMALL_STATE(690)] = 15347, + [SMALL_STATE(691)] = 15419, + [SMALL_STATE(692)] = 15491, + [SMALL_STATE(693)] = 15563, + [SMALL_STATE(694)] = 15691, + [SMALL_STATE(695)] = 15763, + [SMALL_STATE(696)] = 15835, + [SMALL_STATE(697)] = 15903, + [SMALL_STATE(698)] = 16003, + [SMALL_STATE(699)] = 16071, + [SMALL_STATE(700)] = 16199, + [SMALL_STATE(701)] = 16267, + [SMALL_STATE(702)] = 16365, + [SMALL_STATE(703)] = 16493, + [SMALL_STATE(704)] = 16593, + [SMALL_STATE(705)] = 16721, + [SMALL_STATE(706)] = 16821, + [SMALL_STATE(707)] = 16929, + [SMALL_STATE(708)] = 17039, + [SMALL_STATE(709)] = 17147, [SMALL_STATE(710)] = 17219, [SMALL_STATE(711)] = 17290, [SMALL_STATE(712)] = 17415, [SMALL_STATE(713)] = 17540, - [SMALL_STATE(714)] = 17665, - [SMALL_STATE(715)] = 17762, - [SMALL_STATE(716)] = 17859, - [SMALL_STATE(717)] = 17930, - [SMALL_STATE(718)] = 18001, - [SMALL_STATE(719)] = 18100, - [SMALL_STATE(720)] = 18197, - [SMALL_STATE(721)] = 18294, - [SMALL_STATE(722)] = 18365, - [SMALL_STATE(723)] = 18462, - [SMALL_STATE(724)] = 18533, - [SMALL_STATE(725)] = 18630, - [SMALL_STATE(726)] = 18701, - [SMALL_STATE(727)] = 18798, - [SMALL_STATE(728)] = 18907, - [SMALL_STATE(729)] = 19022, - [SMALL_STATE(730)] = 19137, - [SMALL_STATE(731)] = 19262, - [SMALL_STATE(732)] = 19361, - [SMALL_STATE(733)] = 19432, - [SMALL_STATE(734)] = 19529, - [SMALL_STATE(735)] = 19654, - [SMALL_STATE(736)] = 19725, - [SMALL_STATE(737)] = 19840, - [SMALL_STATE(738)] = 19911, - [SMALL_STATE(739)] = 20008, - [SMALL_STATE(740)] = 20105, - [SMALL_STATE(741)] = 20176, - [SMALL_STATE(742)] = 20273, - [SMALL_STATE(743)] = 20370, - [SMALL_STATE(744)] = 20469, - [SMALL_STATE(745)] = 20584, - [SMALL_STATE(746)] = 20699, - [SMALL_STATE(747)] = 20802, - [SMALL_STATE(748)] = 20899, - [SMALL_STATE(749)] = 21002, - [SMALL_STATE(750)] = 21073, - [SMALL_STATE(751)] = 21144, - [SMALL_STATE(752)] = 21255, - [SMALL_STATE(753)] = 21364, - [SMALL_STATE(754)] = 21479, - [SMALL_STATE(755)] = 21574, - [SMALL_STATE(756)] = 21669, - [SMALL_STATE(757)] = 21740, - [SMALL_STATE(758)] = 21837, - [SMALL_STATE(759)] = 21952, - [SMALL_STATE(760)] = 22019, - [SMALL_STATE(761)] = 22144, - [SMALL_STATE(762)] = 22241, - [SMALL_STATE(763)] = 22366, - [SMALL_STATE(764)] = 22491, - [SMALL_STATE(765)] = 22588, - [SMALL_STATE(766)] = 22659, - [SMALL_STATE(767)] = 22730, - [SMALL_STATE(768)] = 22801, - [SMALL_STATE(769)] = 22872, - [SMALL_STATE(770)] = 22987, - [SMALL_STATE(771)] = 23102, - [SMALL_STATE(772)] = 23217, - [SMALL_STATE(773)] = 23284, - [SMALL_STATE(774)] = 23381, - [SMALL_STATE(775)] = 23452, - [SMALL_STATE(776)] = 23523, - [SMALL_STATE(777)] = 23594, + [SMALL_STATE(714)] = 17611, + [SMALL_STATE(715)] = 17682, + [SMALL_STATE(716)] = 17753, + [SMALL_STATE(717)] = 17878, + [SMALL_STATE(718)] = 17949, + [SMALL_STATE(719)] = 18046, + [SMALL_STATE(720)] = 18161, + [SMALL_STATE(721)] = 18256, + [SMALL_STATE(722)] = 18327, + [SMALL_STATE(723)] = 18398, + [SMALL_STATE(724)] = 18513, + [SMALL_STATE(725)] = 18608, + [SMALL_STATE(726)] = 18723, + [SMALL_STATE(727)] = 18794, + [SMALL_STATE(728)] = 18865, + [SMALL_STATE(729)] = 18936, + [SMALL_STATE(730)] = 19007, + [SMALL_STATE(731)] = 19132, + [SMALL_STATE(732)] = 19241, + [SMALL_STATE(733)] = 19312, + [SMALL_STATE(734)] = 19383, + [SMALL_STATE(735)] = 19480, + [SMALL_STATE(736)] = 19577, + [SMALL_STATE(737)] = 19692, + [SMALL_STATE(738)] = 19807, + [SMALL_STATE(739)] = 19922, + [SMALL_STATE(740)] = 20037, + [SMALL_STATE(741)] = 20134, + [SMALL_STATE(742)] = 20205, + [SMALL_STATE(743)] = 20276, + [SMALL_STATE(744)] = 20373, + [SMALL_STATE(745)] = 20470, + [SMALL_STATE(746)] = 20595, + [SMALL_STATE(747)] = 20692, + [SMALL_STATE(748)] = 20803, + [SMALL_STATE(749)] = 20900, + [SMALL_STATE(750)] = 20999, + [SMALL_STATE(751)] = 21096, + [SMALL_STATE(752)] = 21167, + [SMALL_STATE(753)] = 21264, + [SMALL_STATE(754)] = 21363, + [SMALL_STATE(755)] = 21460, + [SMALL_STATE(756)] = 21569, + [SMALL_STATE(757)] = 21640, + [SMALL_STATE(758)] = 21755, + [SMALL_STATE(759)] = 21854, + [SMALL_STATE(760)] = 21969, + [SMALL_STATE(761)] = 22094, + [SMALL_STATE(762)] = 22191, + [SMALL_STATE(763)] = 22288, + [SMALL_STATE(764)] = 22391, + [SMALL_STATE(765)] = 22516, + [SMALL_STATE(766)] = 22619, + [SMALL_STATE(767)] = 22716, + [SMALL_STATE(768)] = 22813, + [SMALL_STATE(769)] = 22910, + [SMALL_STATE(770)] = 23007, + [SMALL_STATE(771)] = 23110, + [SMALL_STATE(772)] = 23181, + [SMALL_STATE(773)] = 23252, + [SMALL_STATE(774)] = 23323, + [SMALL_STATE(775)] = 23438, + [SMALL_STATE(776)] = 23505, + [SMALL_STATE(777)] = 23572, [SMALL_STATE(778)] = 23697, - [SMALL_STATE(779)] = 23791, - [SMALL_STATE(780)] = 23887, - [SMALL_STATE(781)] = 23947, - [SMALL_STATE(782)] = 24043, - [SMALL_STATE(783)] = 24113, - [SMALL_STATE(784)] = 24209, - [SMALL_STATE(785)] = 24279, - [SMALL_STATE(786)] = 24373, - [SMALL_STATE(787)] = 24467, - [SMALL_STATE(788)] = 24537, - [SMALL_STATE(789)] = 24633, - [SMALL_STATE(790)] = 24729, - [SMALL_STATE(791)] = 24825, - [SMALL_STATE(792)] = 24919, - [SMALL_STATE(793)] = 25015, - [SMALL_STATE(794)] = 25085, - [SMALL_STATE(795)] = 25147, - [SMALL_STATE(796)] = 25217, - [SMALL_STATE(797)] = 25287, - [SMALL_STATE(798)] = 25391, - [SMALL_STATE(799)] = 25487, - [SMALL_STATE(800)] = 25591, - [SMALL_STATE(801)] = 25653, - [SMALL_STATE(802)] = 25723, - [SMALL_STATE(803)] = 25783, - [SMALL_STATE(804)] = 25887, - [SMALL_STATE(805)] = 25983, + [SMALL_STATE(779)] = 23793, + [SMALL_STATE(780)] = 23889, + [SMALL_STATE(781)] = 23959, + [SMALL_STATE(782)] = 24029, + [SMALL_STATE(783)] = 24099, + [SMALL_STATE(784)] = 24203, + [SMALL_STATE(785)] = 24299, + [SMALL_STATE(786)] = 24369, + [SMALL_STATE(787)] = 24439, + [SMALL_STATE(788)] = 24535, + [SMALL_STATE(789)] = 24629, + [SMALL_STATE(790)] = 24725, + [SMALL_STATE(791)] = 24821, + [SMALL_STATE(792)] = 24917, + [SMALL_STATE(793)] = 24987, + [SMALL_STATE(794)] = 25057, + [SMALL_STATE(795)] = 25151, + [SMALL_STATE(796)] = 25213, + [SMALL_STATE(797)] = 25307, + [SMALL_STATE(798)] = 25401, + [SMALL_STATE(799)] = 25497, + [SMALL_STATE(800)] = 25559, + [SMALL_STATE(801)] = 25655, + [SMALL_STATE(802)] = 25715, + [SMALL_STATE(803)] = 25785, + [SMALL_STATE(804)] = 25889, + [SMALL_STATE(805)] = 25993, [SMALL_STATE(806)] = 26053, - [SMALL_STATE(807)] = 26118, - [SMALL_STATE(808)] = 26197, - [SMALL_STATE(809)] = 26262, - [SMALL_STATE(810)] = 26335, - [SMALL_STATE(811)] = 26396, - [SMALL_STATE(812)] = 26491, - [SMALL_STATE(813)] = 26552, - [SMALL_STATE(814)] = 26619, - [SMALL_STATE(815)] = 26684, - [SMALL_STATE(816)] = 26749, - [SMALL_STATE(817)] = 26814, - [SMALL_STATE(818)] = 26911, - [SMALL_STATE(819)] = 26990, - [SMALL_STATE(820)] = 27055, - [SMALL_STATE(821)] = 27120, - [SMALL_STATE(822)] = 27185, - [SMALL_STATE(823)] = 27256, - [SMALL_STATE(824)] = 27321, - [SMALL_STATE(825)] = 27386, - [SMALL_STATE(826)] = 27481, - [SMALL_STATE(827)] = 27576, - [SMALL_STATE(828)] = 27635, - [SMALL_STATE(829)] = 27728, + [SMALL_STATE(807)] = 26148, + [SMALL_STATE(808)] = 26245, + [SMALL_STATE(809)] = 26324, + [SMALL_STATE(810)] = 26395, + [SMALL_STATE(811)] = 26468, + [SMALL_STATE(812)] = 26561, + [SMALL_STATE(813)] = 26626, + [SMALL_STATE(814)] = 26691, + [SMALL_STATE(815)] = 26756, + [SMALL_STATE(816)] = 26821, + [SMALL_STATE(817)] = 26888, + [SMALL_STATE(818)] = 26949, + [SMALL_STATE(819)] = 27014, + [SMALL_STATE(820)] = 27093, + [SMALL_STATE(821)] = 27158, + [SMALL_STATE(822)] = 27219, + [SMALL_STATE(823)] = 27284, + [SMALL_STATE(824)] = 27349, + [SMALL_STATE(825)] = 27414, + [SMALL_STATE(826)] = 27507, + [SMALL_STATE(827)] = 27572, + [SMALL_STATE(828)] = 27667, + [SMALL_STATE(829)] = 27726, [SMALL_STATE(830)] = 27821, - [SMALL_STATE(831)] = 27885, - [SMALL_STATE(832)] = 27943, - [SMALL_STATE(833)] = 28007, - [SMALL_STATE(834)] = 28071, - [SMALL_STATE(835)] = 28135, - [SMALL_STATE(836)] = 28213, - [SMALL_STATE(837)] = 28277, - [SMALL_STATE(838)] = 28341, - [SMALL_STATE(839)] = 28405, - [SMALL_STATE(840)] = 28477, - [SMALL_STATE(841)] = 28545, - [SMALL_STATE(842)] = 28609, - [SMALL_STATE(843)] = 28677, - [SMALL_STATE(844)] = 28735, - [SMALL_STATE(845)] = 28793, - [SMALL_STATE(846)] = 28851, - [SMALL_STATE(847)] = 28909, - [SMALL_STATE(848)] = 28979, - [SMALL_STATE(849)] = 29037, - [SMALL_STATE(850)] = 29115, - [SMALL_STATE(851)] = 29179, - [SMALL_STATE(852)] = 29275, - [SMALL_STATE(853)] = 29339, - [SMALL_STATE(854)] = 29403, - [SMALL_STATE(855)] = 29467, - [SMALL_STATE(856)] = 29525, - [SMALL_STATE(857)] = 29583, - [SMALL_STATE(858)] = 29641, - [SMALL_STATE(859)] = 29705, - [SMALL_STATE(860)] = 29769, - [SMALL_STATE(861)] = 29863, - [SMALL_STATE(862)] = 29927, - [SMALL_STATE(863)] = 30021, - [SMALL_STATE(864)] = 30115, - [SMALL_STATE(865)] = 30173, - [SMALL_STATE(866)] = 30269, - [SMALL_STATE(867)] = 30327, - [SMALL_STATE(868)] = 30423, - [SMALL_STATE(869)] = 30481, - [SMALL_STATE(870)] = 30539, - [SMALL_STATE(871)] = 30603, - [SMALL_STATE(872)] = 30661, - [SMALL_STATE(873)] = 30719, - [SMALL_STATE(874)] = 30787, - [SMALL_STATE(875)] = 30851, - [SMALL_STATE(876)] = 30947, - [SMALL_STATE(877)] = 31011, - [SMALL_STATE(878)] = 31079, - [SMALL_STATE(879)] = 31175, - [SMALL_STATE(880)] = 31271, - [SMALL_STATE(881)] = 31335, - [SMALL_STATE(882)] = 31403, - [SMALL_STATE(883)] = 31467, - [SMALL_STATE(884)] = 31535, - [SMALL_STATE(885)] = 31593, - [SMALL_STATE(886)] = 31657, - [SMALL_STATE(887)] = 31723, - [SMALL_STATE(888)] = 31781, - [SMALL_STATE(889)] = 31839, - [SMALL_STATE(890)] = 31897, - [SMALL_STATE(891)] = 31965, - [SMALL_STATE(892)] = 32029, - [SMALL_STATE(893)] = 32097, - [SMALL_STATE(894)] = 32161, - [SMALL_STATE(895)] = 32225, + [SMALL_STATE(831)] = 27917, + [SMALL_STATE(832)] = 28013, + [SMALL_STATE(833)] = 28077, + [SMALL_STATE(834)] = 28135, + [SMALL_STATE(835)] = 28229, + [SMALL_STATE(836)] = 28323, + [SMALL_STATE(837)] = 28381, + [SMALL_STATE(838)] = 28449, + [SMALL_STATE(839)] = 28507, + [SMALL_STATE(840)] = 28565, + [SMALL_STATE(841)] = 28623, + [SMALL_STATE(842)] = 28691, + [SMALL_STATE(843)] = 28749, + [SMALL_STATE(844)] = 28807, + [SMALL_STATE(845)] = 28901, + [SMALL_STATE(846)] = 28969, + [SMALL_STATE(847)] = 29047, + [SMALL_STATE(848)] = 29115, + [SMALL_STATE(849)] = 29173, + [SMALL_STATE(850)] = 29231, + [SMALL_STATE(851)] = 29295, + [SMALL_STATE(852)] = 29359, + [SMALL_STATE(853)] = 29423, + [SMALL_STATE(854)] = 29481, + [SMALL_STATE(855)] = 29539, + [SMALL_STATE(856)] = 29603, + [SMALL_STATE(857)] = 29667, + [SMALL_STATE(858)] = 29731, + [SMALL_STATE(859)] = 29795, + [SMALL_STATE(860)] = 29859, + [SMALL_STATE(861)] = 29917, + [SMALL_STATE(862)] = 29989, + [SMALL_STATE(863)] = 30047, + [SMALL_STATE(864)] = 30105, + [SMALL_STATE(865)] = 30163, + [SMALL_STATE(866)] = 30221, + [SMALL_STATE(867)] = 30285, + [SMALL_STATE(868)] = 30349, + [SMALL_STATE(869)] = 30413, + [SMALL_STATE(870)] = 30471, + [SMALL_STATE(871)] = 30529, + [SMALL_STATE(872)] = 30587, + [SMALL_STATE(873)] = 30653, + [SMALL_STATE(874)] = 30717, + [SMALL_STATE(875)] = 30787, + [SMALL_STATE(876)] = 30855, + [SMALL_STATE(877)] = 30923, + [SMALL_STATE(878)] = 31019, + [SMALL_STATE(879)] = 31083, + [SMALL_STATE(880)] = 31147, + [SMALL_STATE(881)] = 31225, + [SMALL_STATE(882)] = 31289, + [SMALL_STATE(883)] = 31353, + [SMALL_STATE(884)] = 31449, + [SMALL_STATE(885)] = 31513, + [SMALL_STATE(886)] = 31609, + [SMALL_STATE(887)] = 31673, + [SMALL_STATE(888)] = 31769, + [SMALL_STATE(889)] = 31865, + [SMALL_STATE(890)] = 31933, + [SMALL_STATE(891)] = 32001, + [SMALL_STATE(892)] = 32065, + [SMALL_STATE(893)] = 32129, + [SMALL_STATE(894)] = 32193, + [SMALL_STATE(895)] = 32257, [SMALL_STATE(896)] = 32321, - [SMALL_STATE(897)] = 32388, - [SMALL_STATE(898)] = 32483, - [SMALL_STATE(899)] = 32540, - [SMALL_STATE(900)] = 32607, - [SMALL_STATE(901)] = 32664, - [SMALL_STATE(902)] = 32721, - [SMALL_STATE(903)] = 32788, - [SMALL_STATE(904)] = 32883, - [SMALL_STATE(905)] = 32950, - [SMALL_STATE(906)] = 33013, - [SMALL_STATE(907)] = 33080, - [SMALL_STATE(908)] = 33145, - [SMALL_STATE(909)] = 33238, - [SMALL_STATE(910)] = 33331, - [SMALL_STATE(911)] = 33388, - [SMALL_STATE(912)] = 33455, - [SMALL_STATE(913)] = 33512, - [SMALL_STATE(914)] = 33589, - [SMALL_STATE(915)] = 33646, - [SMALL_STATE(916)] = 33703, - [SMALL_STATE(917)] = 33760, - [SMALL_STATE(918)] = 33817, - [SMALL_STATE(919)] = 33874, - [SMALL_STATE(920)] = 33931, - [SMALL_STATE(921)] = 33994, - [SMALL_STATE(922)] = 34051, - [SMALL_STATE(923)] = 34108, - [SMALL_STATE(924)] = 34165, - [SMALL_STATE(925)] = 34222, - [SMALL_STATE(926)] = 34333, - [SMALL_STATE(927)] = 34394, - [SMALL_STATE(928)] = 34451, - [SMALL_STATE(929)] = 34508, - [SMALL_STATE(930)] = 34565, - [SMALL_STATE(931)] = 34622, - [SMALL_STATE(932)] = 34679, - [SMALL_STATE(933)] = 34742, - [SMALL_STATE(934)] = 34853, - [SMALL_STATE(935)] = 34910, - [SMALL_STATE(936)] = 34973, - [SMALL_STATE(937)] = 35068, - [SMALL_STATE(938)] = 35179, - [SMALL_STATE(939)] = 35242, - [SMALL_STATE(940)] = 35337, - [SMALL_STATE(941)] = 35402, - [SMALL_STATE(942)] = 35469, - [SMALL_STATE(943)] = 35536, - [SMALL_STATE(944)] = 35603, - [SMALL_STATE(945)] = 35698, - [SMALL_STATE(946)] = 35775, - [SMALL_STATE(947)] = 35842, - [SMALL_STATE(948)] = 35905, - [SMALL_STATE(949)] = 35976, - [SMALL_STATE(950)] = 36039, - [SMALL_STATE(951)] = 36136, - [SMALL_STATE(952)] = 36247, - [SMALL_STATE(953)] = 36308, - [SMALL_STATE(954)] = 36375, - [SMALL_STATE(955)] = 36442, - [SMALL_STATE(956)] = 36553, - [SMALL_STATE(957)] = 36620, - [SMALL_STATE(958)] = 36683, - [SMALL_STATE(959)] = 36794, - [SMALL_STATE(960)] = 36857, - [SMALL_STATE(961)] = 36924, - [SMALL_STATE(962)] = 36993, - [SMALL_STATE(963)] = 37090, - [SMALL_STATE(964)] = 37147, - [SMALL_STATE(965)] = 37204, - [SMALL_STATE(966)] = 37267, - [SMALL_STATE(967)] = 37330, - [SMALL_STATE(968)] = 37425, - [SMALL_STATE(969)] = 37482, - [SMALL_STATE(970)] = 37545, - [SMALL_STATE(971)] = 37608, - [SMALL_STATE(972)] = 37703, - [SMALL_STATE(973)] = 37796, - [SMALL_STATE(974)] = 37889, - [SMALL_STATE(975)] = 37952, - [SMALL_STATE(976)] = 38009, - [SMALL_STATE(977)] = 38102, - [SMALL_STATE(978)] = 38159, - [SMALL_STATE(979)] = 38222, - [SMALL_STATE(980)] = 38319, - [SMALL_STATE(981)] = 38376, - [SMALL_STATE(982)] = 38471, - [SMALL_STATE(983)] = 38528, - [SMALL_STATE(984)] = 38591, - [SMALL_STATE(985)] = 38648, - [SMALL_STATE(986)] = 38711, - [SMALL_STATE(987)] = 38780, - [SMALL_STATE(988)] = 38837, - [SMALL_STATE(989)] = 38894, - [SMALL_STATE(990)] = 39005, - [SMALL_STATE(991)] = 39062, - [SMALL_STATE(992)] = 39139, - [SMALL_STATE(993)] = 39202, - [SMALL_STATE(994)] = 39265, - [SMALL_STATE(995)] = 39328, - [SMALL_STATE(996)] = 39391, - [SMALL_STATE(997)] = 39454, - [SMALL_STATE(998)] = 39565, - [SMALL_STATE(999)] = 39622, - [SMALL_STATE(1000)] = 39679, - [SMALL_STATE(1001)] = 39742, - [SMALL_STATE(1002)] = 39805, - [SMALL_STATE(1003)] = 39882, - [SMALL_STATE(1004)] = 39945, - [SMALL_STATE(1005)] = 40002, - [SMALL_STATE(1006)] = 40059, - [SMALL_STATE(1007)] = 40130, - [SMALL_STATE(1008)] = 40193, - [SMALL_STATE(1009)] = 40250, + [SMALL_STATE(897)] = 32384, + [SMALL_STATE(898)] = 32441, + [SMALL_STATE(899)] = 32504, + [SMALL_STATE(900)] = 32561, + [SMALL_STATE(901)] = 32618, + [SMALL_STATE(902)] = 32681, + [SMALL_STATE(903)] = 32738, + [SMALL_STATE(904)] = 32795, + [SMALL_STATE(905)] = 32852, + [SMALL_STATE(906)] = 32909, + [SMALL_STATE(907)] = 32966, + [SMALL_STATE(908)] = 33023, + [SMALL_STATE(909)] = 33080, + [SMALL_STATE(910)] = 33137, + [SMALL_STATE(911)] = 33200, + [SMALL_STATE(912)] = 33257, + [SMALL_STATE(913)] = 33320, + [SMALL_STATE(914)] = 33391, + [SMALL_STATE(915)] = 33454, + [SMALL_STATE(916)] = 33511, + [SMALL_STATE(917)] = 33568, + [SMALL_STATE(918)] = 33631, + [SMALL_STATE(919)] = 33694, + [SMALL_STATE(920)] = 33757, + [SMALL_STATE(921)] = 33814, + [SMALL_STATE(922)] = 33871, + [SMALL_STATE(923)] = 33938, + [SMALL_STATE(924)] = 34005, + [SMALL_STATE(925)] = 34062, + [SMALL_STATE(926)] = 34119, + [SMALL_STATE(927)] = 34176, + [SMALL_STATE(928)] = 34233, + [SMALL_STATE(929)] = 34290, + [SMALL_STATE(930)] = 34347, + [SMALL_STATE(931)] = 34404, + [SMALL_STATE(932)] = 34471, + [SMALL_STATE(933)] = 34538, + [SMALL_STATE(934)] = 34595, + [SMALL_STATE(935)] = 34652, + [SMALL_STATE(936)] = 34709, + [SMALL_STATE(937)] = 34776, + [SMALL_STATE(938)] = 34843, + [SMALL_STATE(939)] = 34900, + [SMALL_STATE(940)] = 34957, + [SMALL_STATE(941)] = 35014, + [SMALL_STATE(942)] = 35071, + [SMALL_STATE(943)] = 35128, + [SMALL_STATE(944)] = 35185, + [SMALL_STATE(945)] = 35242, + [SMALL_STATE(946)] = 35299, + [SMALL_STATE(947)] = 35366, + [SMALL_STATE(948)] = 35433, + [SMALL_STATE(949)] = 35498, + [SMALL_STATE(950)] = 35595, + [SMALL_STATE(951)] = 35706, + [SMALL_STATE(952)] = 35775, + [SMALL_STATE(953)] = 35852, + [SMALL_STATE(954)] = 35949, + [SMALL_STATE(955)] = 36012, + [SMALL_STATE(956)] = 36089, + [SMALL_STATE(957)] = 36146, + [SMALL_STATE(958)] = 36243, + [SMALL_STATE(959)] = 36338, + [SMALL_STATE(960)] = 36433, + [SMALL_STATE(961)] = 36528, + [SMALL_STATE(962)] = 36623, + [SMALL_STATE(963)] = 36716, + [SMALL_STATE(964)] = 36809, + [SMALL_STATE(965)] = 36902, + [SMALL_STATE(966)] = 36997, + [SMALL_STATE(967)] = 37060, + [SMALL_STATE(968)] = 37123, + [SMALL_STATE(969)] = 37190, + [SMALL_STATE(970)] = 37257, + [SMALL_STATE(971)] = 37320, + [SMALL_STATE(972)] = 37383, + [SMALL_STATE(973)] = 37494, + [SMALL_STATE(974)] = 37557, + [SMALL_STATE(975)] = 37652, + [SMALL_STATE(976)] = 37747, + [SMALL_STATE(977)] = 37842, + [SMALL_STATE(978)] = 37953, + [SMALL_STATE(979)] = 38014, + [SMALL_STATE(980)] = 38077, + [SMALL_STATE(981)] = 38140, + [SMALL_STATE(982)] = 38203, + [SMALL_STATE(983)] = 38268, + [SMALL_STATE(984)] = 38345, + [SMALL_STATE(985)] = 38456, + [SMALL_STATE(986)] = 38519, + [SMALL_STATE(987)] = 38590, + [SMALL_STATE(988)] = 38653, + [SMALL_STATE(989)] = 38716, + [SMALL_STATE(990)] = 38785, + [SMALL_STATE(991)] = 38848, + [SMALL_STATE(992)] = 38911, + [SMALL_STATE(993)] = 39022, + [SMALL_STATE(994)] = 39085, + [SMALL_STATE(995)] = 39148, + [SMALL_STATE(996)] = 39215, + [SMALL_STATE(997)] = 39282, + [SMALL_STATE(998)] = 39343, + [SMALL_STATE(999)] = 39410, + [SMALL_STATE(1000)] = 39477, + [SMALL_STATE(1001)] = 39534, + [SMALL_STATE(1002)] = 39645, + [SMALL_STATE(1003)] = 39708, + [SMALL_STATE(1004)] = 39785, + [SMALL_STATE(1005)] = 39896, + [SMALL_STATE(1006)] = 39953, + [SMALL_STATE(1007)] = 40010, + [SMALL_STATE(1008)] = 40103, + [SMALL_STATE(1009)] = 40196, [SMALL_STATE(1010)] = 40307, - [SMALL_STATE(1011)] = 40373, - [SMALL_STATE(1012)] = 40435, - [SMALL_STATE(1013)] = 40499, - [SMALL_STATE(1014)] = 40555, - [SMALL_STATE(1015)] = 40615, - [SMALL_STATE(1016)] = 40671, - [SMALL_STATE(1017)] = 40727, - [SMALL_STATE(1018)] = 40783, - [SMALL_STATE(1019)] = 40839, - [SMALL_STATE(1020)] = 40895, - [SMALL_STATE(1021)] = 40951, - [SMALL_STATE(1022)] = 41013, - [SMALL_STATE(1023)] = 41069, - [SMALL_STATE(1024)] = 41131, - [SMALL_STATE(1025)] = 41197, - [SMALL_STATE(1026)] = 41263, - [SMALL_STATE(1027)] = 41323, - [SMALL_STATE(1028)] = 41379, - [SMALL_STATE(1029)] = 41447, - [SMALL_STATE(1030)] = 41503, - [SMALL_STATE(1031)] = 41577, - [SMALL_STATE(1032)] = 41633, - [SMALL_STATE(1033)] = 41695, - [SMALL_STATE(1034)] = 41751, - [SMALL_STATE(1035)] = 41807, - [SMALL_STATE(1036)] = 41901, - [SMALL_STATE(1037)] = 41975, - [SMALL_STATE(1038)] = 42031, - [SMALL_STATE(1039)] = 42087, - [SMALL_STATE(1040)] = 42149, - [SMALL_STATE(1041)] = 42211, - [SMALL_STATE(1042)] = 42277, - [SMALL_STATE(1043)] = 42339, - [SMALL_STATE(1044)] = 42395, - [SMALL_STATE(1045)] = 42451, - [SMALL_STATE(1046)] = 42511, - [SMALL_STATE(1047)] = 42567, - [SMALL_STATE(1048)] = 42623, - [SMALL_STATE(1049)] = 42689, - [SMALL_STATE(1050)] = 42745, - [SMALL_STATE(1051)] = 42811, - [SMALL_STATE(1052)] = 42877, - [SMALL_STATE(1053)] = 42933, - [SMALL_STATE(1054)] = 42999, - [SMALL_STATE(1055)] = 43061, - [SMALL_STATE(1056)] = 43123, - [SMALL_STATE(1057)] = 43217, - [SMALL_STATE(1058)] = 43273, - [SMALL_STATE(1059)] = 43329, - [SMALL_STATE(1060)] = 43399, - [SMALL_STATE(1061)] = 43455, - [SMALL_STATE(1062)] = 43511, - [SMALL_STATE(1063)] = 43567, - [SMALL_STATE(1064)] = 43623, - [SMALL_STATE(1065)] = 43679, - [SMALL_STATE(1066)] = 43741, - [SMALL_STATE(1067)] = 43803, - [SMALL_STATE(1068)] = 43865, - [SMALL_STATE(1069)] = 43927, - [SMALL_STATE(1070)] = 43989, - [SMALL_STATE(1071)] = 44055, - [SMALL_STATE(1072)] = 44121, - [SMALL_STATE(1073)] = 44183, - [SMALL_STATE(1074)] = 44245, - [SMALL_STATE(1075)] = 44307, - [SMALL_STATE(1076)] = 44401, - [SMALL_STATE(1077)] = 44463, - [SMALL_STATE(1078)] = 44525, - [SMALL_STATE(1079)] = 44587, - [SMALL_STATE(1080)] = 44649, - [SMALL_STATE(1081)] = 44713, - [SMALL_STATE(1082)] = 44775, - [SMALL_STATE(1083)] = 44831, - [SMALL_STATE(1084)] = 44887, - [SMALL_STATE(1085)] = 44943, - [SMALL_STATE(1086)] = 44999, - [SMALL_STATE(1087)] = 45061, - [SMALL_STATE(1088)] = 45123, - [SMALL_STATE(1089)] = 45185, - [SMALL_STATE(1090)] = 45247, - [SMALL_STATE(1091)] = 45341, - [SMALL_STATE(1092)] = 45403, - [SMALL_STATE(1093)] = 45465, - [SMALL_STATE(1094)] = 45527, - [SMALL_STATE(1095)] = 45589, - [SMALL_STATE(1096)] = 45649, - [SMALL_STATE(1097)] = 45719, - [SMALL_STATE(1098)] = 45779, - [SMALL_STATE(1099)] = 45847, - [SMALL_STATE(1100)] = 45903, - [SMALL_STATE(1101)] = 45965, - [SMALL_STATE(1102)] = 46021, - [SMALL_STATE(1103)] = 46115, - [SMALL_STATE(1104)] = 46171, - [SMALL_STATE(1105)] = 46227, - [SMALL_STATE(1106)] = 46289, - [SMALL_STATE(1107)] = 46351, - [SMALL_STATE(1108)] = 46413, - [SMALL_STATE(1109)] = 46475, - [SMALL_STATE(1110)] = 46537, - [SMALL_STATE(1111)] = 46629, - [SMALL_STATE(1112)] = 46721, - [SMALL_STATE(1113)] = 46777, - [SMALL_STATE(1114)] = 46833, - [SMALL_STATE(1115)] = 46899, - [SMALL_STATE(1116)] = 46965, - [SMALL_STATE(1117)] = 47021, - [SMALL_STATE(1118)] = 47115, - [SMALL_STATE(1119)] = 47209, - [SMALL_STATE(1120)] = 47265, - [SMALL_STATE(1121)] = 47321, - [SMALL_STATE(1122)] = 47383, - [SMALL_STATE(1123)] = 47445, - [SMALL_STATE(1124)] = 47507, - [SMALL_STATE(1125)] = 47569, - [SMALL_STATE(1126)] = 47625, - [SMALL_STATE(1127)] = 47681, - [SMALL_STATE(1128)] = 47743, - [SMALL_STATE(1129)] = 47799, - [SMALL_STATE(1130)] = 47855, - [SMALL_STATE(1131)] = 47911, - [SMALL_STATE(1132)] = 47973, - [SMALL_STATE(1133)] = 48049, - [SMALL_STATE(1134)] = 48105, - [SMALL_STATE(1135)] = 48171, - [SMALL_STATE(1136)] = 48237, - [SMALL_STATE(1137)] = 48293, - [SMALL_STATE(1138)] = 48349, - [SMALL_STATE(1139)] = 48405, - [SMALL_STATE(1140)] = 48461, - [SMALL_STATE(1141)] = 48523, - [SMALL_STATE(1142)] = 48589, - [SMALL_STATE(1143)] = 48645, - [SMALL_STATE(1144)] = 48701, - [SMALL_STATE(1145)] = 48763, - [SMALL_STATE(1146)] = 48819, - [SMALL_STATE(1147)] = 48879, - [SMALL_STATE(1148)] = 48941, - [SMALL_STATE(1149)] = 49003, - [SMALL_STATE(1150)] = 49063, - [SMALL_STATE(1151)] = 49139, - [SMALL_STATE(1152)] = 49213, - [SMALL_STATE(1153)] = 49269, - [SMALL_STATE(1154)] = 49343, - [SMALL_STATE(1155)] = 49409, - [SMALL_STATE(1156)] = 49465, - [SMALL_STATE(1157)] = 49527, - [SMALL_STATE(1158)] = 49583, - [SMALL_STATE(1159)] = 49645, - [SMALL_STATE(1160)] = 49701, + [SMALL_STATE(1011)] = 40369, + [SMALL_STATE(1012)] = 40431, + [SMALL_STATE(1013)] = 40487, + [SMALL_STATE(1014)] = 40543, + [SMALL_STATE(1015)] = 40599, + [SMALL_STATE(1016)] = 40655, + [SMALL_STATE(1017)] = 40711, + [SMALL_STATE(1018)] = 40767, + [SMALL_STATE(1019)] = 40823, + [SMALL_STATE(1020)] = 40889, + [SMALL_STATE(1021)] = 40955, + [SMALL_STATE(1022)] = 41011, + [SMALL_STATE(1023)] = 41067, + [SMALL_STATE(1024)] = 41123, + [SMALL_STATE(1025)] = 41185, + [SMALL_STATE(1026)] = 41261, + [SMALL_STATE(1027)] = 41317, + [SMALL_STATE(1028)] = 41373, + [SMALL_STATE(1029)] = 41435, + [SMALL_STATE(1030)] = 41497, + [SMALL_STATE(1031)] = 41563, + [SMALL_STATE(1032)] = 41629, + [SMALL_STATE(1033)] = 41703, + [SMALL_STATE(1034)] = 41759, + [SMALL_STATE(1035)] = 41833, + [SMALL_STATE(1036)] = 41909, + [SMALL_STATE(1037)] = 41983, + [SMALL_STATE(1038)] = 42045, + [SMALL_STATE(1039)] = 42107, + [SMALL_STATE(1040)] = 42169, + [SMALL_STATE(1041)] = 42231, + [SMALL_STATE(1042)] = 42297, + [SMALL_STATE(1043)] = 42363, + [SMALL_STATE(1044)] = 42457, + [SMALL_STATE(1045)] = 42551, + [SMALL_STATE(1046)] = 42613, + [SMALL_STATE(1047)] = 42675, + [SMALL_STATE(1048)] = 42745, + [SMALL_STATE(1049)] = 42807, + [SMALL_STATE(1050)] = 42869, + [SMALL_STATE(1051)] = 42931, + [SMALL_STATE(1052)] = 42987, + [SMALL_STATE(1053)] = 43049, + [SMALL_STATE(1054)] = 43111, + [SMALL_STATE(1055)] = 43173, + [SMALL_STATE(1056)] = 43229, + [SMALL_STATE(1057)] = 43285, + [SMALL_STATE(1058)] = 43341, + [SMALL_STATE(1059)] = 43397, + [SMALL_STATE(1060)] = 43459, + [SMALL_STATE(1061)] = 43521, + [SMALL_STATE(1062)] = 43577, + [SMALL_STATE(1063)] = 43639, + [SMALL_STATE(1064)] = 43695, + [SMALL_STATE(1065)] = 43757, + [SMALL_STATE(1066)] = 43823, + [SMALL_STATE(1067)] = 43889, + [SMALL_STATE(1068)] = 43951, + [SMALL_STATE(1069)] = 44045, + [SMALL_STATE(1070)] = 44107, + [SMALL_STATE(1071)] = 44201, + [SMALL_STATE(1072)] = 44263, + [SMALL_STATE(1073)] = 44357, + [SMALL_STATE(1074)] = 44413, + [SMALL_STATE(1075)] = 44507, + [SMALL_STATE(1076)] = 44569, + [SMALL_STATE(1077)] = 44663, + [SMALL_STATE(1078)] = 44725, + [SMALL_STATE(1079)] = 44787, + [SMALL_STATE(1080)] = 44849, + [SMALL_STATE(1081)] = 44911, + [SMALL_STATE(1082)] = 44973, + [SMALL_STATE(1083)] = 45035, + [SMALL_STATE(1084)] = 45091, + [SMALL_STATE(1085)] = 45153, + [SMALL_STATE(1086)] = 45215, + [SMALL_STATE(1087)] = 45271, + [SMALL_STATE(1088)] = 45327, + [SMALL_STATE(1089)] = 45387, + [SMALL_STATE(1090)] = 45443, + [SMALL_STATE(1091)] = 45499, + [SMALL_STATE(1092)] = 45555, + [SMALL_STATE(1093)] = 45611, + [SMALL_STATE(1094)] = 45671, + [SMALL_STATE(1095)] = 45733, + [SMALL_STATE(1096)] = 45789, + [SMALL_STATE(1097)] = 45845, + [SMALL_STATE(1098)] = 45905, + [SMALL_STATE(1099)] = 45961, + [SMALL_STATE(1100)] = 46017, + [SMALL_STATE(1101)] = 46073, + [SMALL_STATE(1102)] = 46129, + [SMALL_STATE(1103)] = 46185, + [SMALL_STATE(1104)] = 46247, + [SMALL_STATE(1105)] = 46309, + [SMALL_STATE(1106)] = 46365, + [SMALL_STATE(1107)] = 46421, + [SMALL_STATE(1108)] = 46477, + [SMALL_STATE(1109)] = 46533, + [SMALL_STATE(1110)] = 46589, + [SMALL_STATE(1111)] = 46645, + [SMALL_STATE(1112)] = 46705, + [SMALL_STATE(1113)] = 46767, + [SMALL_STATE(1114)] = 46823, + [SMALL_STATE(1115)] = 46879, + [SMALL_STATE(1116)] = 46935, + [SMALL_STATE(1117)] = 46991, + [SMALL_STATE(1118)] = 47047, + [SMALL_STATE(1119)] = 47121, + [SMALL_STATE(1120)] = 47187, + [SMALL_STATE(1121)] = 47253, + [SMALL_STATE(1122)] = 47309, + [SMALL_STATE(1123)] = 47365, + [SMALL_STATE(1124)] = 47431, + [SMALL_STATE(1125)] = 47497, + [SMALL_STATE(1126)] = 47563, + [SMALL_STATE(1127)] = 47629, + [SMALL_STATE(1128)] = 47689, + [SMALL_STATE(1129)] = 47745, + [SMALL_STATE(1130)] = 47801, + [SMALL_STATE(1131)] = 47867, + [SMALL_STATE(1132)] = 47933, + [SMALL_STATE(1133)] = 48001, + [SMALL_STATE(1134)] = 48057, + [SMALL_STATE(1135)] = 48119, + [SMALL_STATE(1136)] = 48181, + [SMALL_STATE(1137)] = 48241, + [SMALL_STATE(1138)] = 48297, + [SMALL_STATE(1139)] = 48359, + [SMALL_STATE(1140)] = 48415, + [SMALL_STATE(1141)] = 48471, + [SMALL_STATE(1142)] = 48533, + [SMALL_STATE(1143)] = 48597, + [SMALL_STATE(1144)] = 48659, + [SMALL_STATE(1145)] = 48721, + [SMALL_STATE(1146)] = 48783, + [SMALL_STATE(1147)] = 48845, + [SMALL_STATE(1148)] = 48907, + [SMALL_STATE(1149)] = 48977, + [SMALL_STATE(1150)] = 49039, + [SMALL_STATE(1151)] = 49107, + [SMALL_STATE(1152)] = 49169, + [SMALL_STATE(1153)] = 49231, + [SMALL_STATE(1154)] = 49287, + [SMALL_STATE(1155)] = 49349, + [SMALL_STATE(1156)] = 49405, + [SMALL_STATE(1157)] = 49461, + [SMALL_STATE(1158)] = 49523, + [SMALL_STATE(1159)] = 49579, + [SMALL_STATE(1160)] = 49671, [SMALL_STATE(1161)] = 49763, - [SMALL_STATE(1162)] = 49819, - [SMALL_STATE(1163)] = 49881, + [SMALL_STATE(1162)] = 49823, + [SMALL_STATE(1163)] = 49887, [SMALL_STATE(1164)] = 49943, - [SMALL_STATE(1165)] = 50008, - [SMALL_STATE(1166)] = 50063, - [SMALL_STATE(1167)] = 50124, - [SMALL_STATE(1168)] = 50185, - [SMALL_STATE(1169)] = 50240, - [SMALL_STATE(1170)] = 50295, - [SMALL_STATE(1171)] = 50356, - [SMALL_STATE(1172)] = 50417, - [SMALL_STATE(1173)] = 50510, - [SMALL_STATE(1174)] = 50577, - [SMALL_STATE(1175)] = 50638, - [SMALL_STATE(1176)] = 50697, - [SMALL_STATE(1177)] = 50752, - [SMALL_STATE(1178)] = 50813, - [SMALL_STATE(1179)] = 50906, - [SMALL_STATE(1180)] = 50965, - [SMALL_STATE(1181)] = 51024, - [SMALL_STATE(1182)] = 51079, - [SMALL_STATE(1183)] = 51134, - [SMALL_STATE(1184)] = 51189, - [SMALL_STATE(1185)] = 51250, - [SMALL_STATE(1186)] = 51305, - [SMALL_STATE(1187)] = 51360, - [SMALL_STATE(1188)] = 51415, - [SMALL_STATE(1189)] = 51470, - [SMALL_STATE(1190)] = 51525, - [SMALL_STATE(1191)] = 51586, - [SMALL_STATE(1192)] = 51647, - [SMALL_STATE(1193)] = 51708, - [SMALL_STATE(1194)] = 51769, - [SMALL_STATE(1195)] = 51824, - [SMALL_STATE(1196)] = 51879, - [SMALL_STATE(1197)] = 51934, - [SMALL_STATE(1198)] = 51999, - [SMALL_STATE(1199)] = 52054, - [SMALL_STATE(1200)] = 52109, - [SMALL_STATE(1201)] = 52164, - [SMALL_STATE(1202)] = 52223, - [SMALL_STATE(1203)] = 52282, - [SMALL_STATE(1204)] = 52343, - [SMALL_STATE(1205)] = 52398, - [SMALL_STATE(1206)] = 52453, - [SMALL_STATE(1207)] = 52508, - [SMALL_STATE(1208)] = 52563, - [SMALL_STATE(1209)] = 52618, - [SMALL_STATE(1210)] = 52677, - [SMALL_STATE(1211)] = 52732, - [SMALL_STATE(1212)] = 52793, - [SMALL_STATE(1213)] = 52852, - [SMALL_STATE(1214)] = 52907, - [SMALL_STATE(1215)] = 52968, - [SMALL_STATE(1216)] = 53029, - [SMALL_STATE(1217)] = 53084, - [SMALL_STATE(1218)] = 53145, - [SMALL_STATE(1219)] = 53200, - [SMALL_STATE(1220)] = 53261, - [SMALL_STATE(1221)] = 53316, - [SMALL_STATE(1222)] = 53371, - [SMALL_STATE(1223)] = 53426, - [SMALL_STATE(1224)] = 53481, - [SMALL_STATE(1225)] = 53536, - [SMALL_STATE(1226)] = 53591, - [SMALL_STATE(1227)] = 53652, - [SMALL_STATE(1228)] = 53713, - [SMALL_STATE(1229)] = 53774, - [SMALL_STATE(1230)] = 53829, - [SMALL_STATE(1231)] = 53890, - [SMALL_STATE(1232)] = 53945, - [SMALL_STATE(1233)] = 54000, - [SMALL_STATE(1234)] = 54055, - [SMALL_STATE(1235)] = 54116, - [SMALL_STATE(1236)] = 54171, - [SMALL_STATE(1237)] = 54226, - [SMALL_STATE(1238)] = 54281, - [SMALL_STATE(1239)] = 54336, - [SMALL_STATE(1240)] = 54391, - [SMALL_STATE(1241)] = 54446, - [SMALL_STATE(1242)] = 54501, - [SMALL_STATE(1243)] = 54556, - [SMALL_STATE(1244)] = 54617, - [SMALL_STATE(1245)] = 54678, - [SMALL_STATE(1246)] = 54739, - [SMALL_STATE(1247)] = 54794, - [SMALL_STATE(1248)] = 54849, - [SMALL_STATE(1249)] = 54904, - [SMALL_STATE(1250)] = 54965, - [SMALL_STATE(1251)] = 55026, - [SMALL_STATE(1252)] = 55087, - [SMALL_STATE(1253)] = 55142, - [SMALL_STATE(1254)] = 55197, - [SMALL_STATE(1255)] = 55252, - [SMALL_STATE(1256)] = 55307, - [SMALL_STATE(1257)] = 55362, - [SMALL_STATE(1258)] = 55423, - [SMALL_STATE(1259)] = 55484, - [SMALL_STATE(1260)] = 55539, - [SMALL_STATE(1261)] = 55594, - [SMALL_STATE(1262)] = 55655, - [SMALL_STATE(1263)] = 55716, - [SMALL_STATE(1264)] = 55777, - [SMALL_STATE(1265)] = 55838, - [SMALL_STATE(1266)] = 55899, - [SMALL_STATE(1267)] = 55960, - [SMALL_STATE(1268)] = 56019, - [SMALL_STATE(1269)] = 56074, - [SMALL_STATE(1270)] = 56135, - [SMALL_STATE(1271)] = 56196, - [SMALL_STATE(1272)] = 56257, - [SMALL_STATE(1273)] = 56312, - [SMALL_STATE(1274)] = 56373, - [SMALL_STATE(1275)] = 56434, - [SMALL_STATE(1276)] = 56495, - [SMALL_STATE(1277)] = 56556, - [SMALL_STATE(1278)] = 56611, - [SMALL_STATE(1279)] = 56666, - [SMALL_STATE(1280)] = 56721, - [SMALL_STATE(1281)] = 56776, - [SMALL_STATE(1282)] = 56831, - [SMALL_STATE(1283)] = 56886, - [SMALL_STATE(1284)] = 56941, - [SMALL_STATE(1285)] = 56996, - [SMALL_STATE(1286)] = 57051, - [SMALL_STATE(1287)] = 57106, - [SMALL_STATE(1288)] = 57161, - [SMALL_STATE(1289)] = 57216, - [SMALL_STATE(1290)] = 57271, - [SMALL_STATE(1291)] = 57332, - [SMALL_STATE(1292)] = 57393, - [SMALL_STATE(1293)] = 57448, - [SMALL_STATE(1294)] = 57503, - [SMALL_STATE(1295)] = 57558, - [SMALL_STATE(1296)] = 57617, - [SMALL_STATE(1297)] = 57672, - [SMALL_STATE(1298)] = 57727, - [SMALL_STATE(1299)] = 57782, - [SMALL_STATE(1300)] = 57837, - [SMALL_STATE(1301)] = 57892, - [SMALL_STATE(1302)] = 57947, - [SMALL_STATE(1303)] = 58002, - [SMALL_STATE(1304)] = 58057, - [SMALL_STATE(1305)] = 58112, - [SMALL_STATE(1306)] = 58167, + [SMALL_STATE(1165)] = 50004, + [SMALL_STATE(1166)] = 50059, + [SMALL_STATE(1167)] = 50114, + [SMALL_STATE(1168)] = 50169, + [SMALL_STATE(1169)] = 50224, + [SMALL_STATE(1170)] = 50279, + [SMALL_STATE(1171)] = 50334, + [SMALL_STATE(1172)] = 50389, + [SMALL_STATE(1173)] = 50444, + [SMALL_STATE(1174)] = 50499, + [SMALL_STATE(1175)] = 50554, + [SMALL_STATE(1176)] = 50609, + [SMALL_STATE(1177)] = 50670, + [SMALL_STATE(1178)] = 50731, + [SMALL_STATE(1179)] = 50792, + [SMALL_STATE(1180)] = 50851, + [SMALL_STATE(1181)] = 50906, + [SMALL_STATE(1182)] = 50961, + [SMALL_STATE(1183)] = 51016, + [SMALL_STATE(1184)] = 51077, + [SMALL_STATE(1185)] = 51136, + [SMALL_STATE(1186)] = 51191, + [SMALL_STATE(1187)] = 51252, + [SMALL_STATE(1188)] = 51313, + [SMALL_STATE(1189)] = 51374, + [SMALL_STATE(1190)] = 51435, + [SMALL_STATE(1191)] = 51496, + [SMALL_STATE(1192)] = 51557, + [SMALL_STATE(1193)] = 51618, + [SMALL_STATE(1194)] = 51679, + [SMALL_STATE(1195)] = 51734, + [SMALL_STATE(1196)] = 51789, + [SMALL_STATE(1197)] = 51850, + [SMALL_STATE(1198)] = 51911, + [SMALL_STATE(1199)] = 51966, + [SMALL_STATE(1200)] = 52021, + [SMALL_STATE(1201)] = 52076, + [SMALL_STATE(1202)] = 52131, + [SMALL_STATE(1203)] = 52186, + [SMALL_STATE(1204)] = 52241, + [SMALL_STATE(1205)] = 52302, + [SMALL_STATE(1206)] = 52363, + [SMALL_STATE(1207)] = 52418, + [SMALL_STATE(1208)] = 52511, + [SMALL_STATE(1209)] = 52566, + [SMALL_STATE(1210)] = 52659, + [SMALL_STATE(1211)] = 52714, + [SMALL_STATE(1212)] = 52775, + [SMALL_STATE(1213)] = 52830, + [SMALL_STATE(1214)] = 52889, + [SMALL_STATE(1215)] = 52944, + [SMALL_STATE(1216)] = 52999, + [SMALL_STATE(1217)] = 53054, + [SMALL_STATE(1218)] = 53109, + [SMALL_STATE(1219)] = 53164, + [SMALL_STATE(1220)] = 53223, + [SMALL_STATE(1221)] = 53278, + [SMALL_STATE(1222)] = 53333, + [SMALL_STATE(1223)] = 53388, + [SMALL_STATE(1224)] = 53443, + [SMALL_STATE(1225)] = 53498, + [SMALL_STATE(1226)] = 53553, + [SMALL_STATE(1227)] = 53620, + [SMALL_STATE(1228)] = 53675, + [SMALL_STATE(1229)] = 53730, + [SMALL_STATE(1230)] = 53789, + [SMALL_STATE(1231)] = 53844, + [SMALL_STATE(1232)] = 53899, + [SMALL_STATE(1233)] = 53960, + [SMALL_STATE(1234)] = 54015, + [SMALL_STATE(1235)] = 54070, + [SMALL_STATE(1236)] = 54131, + [SMALL_STATE(1237)] = 54186, + [SMALL_STATE(1238)] = 54241, + [SMALL_STATE(1239)] = 54296, + [SMALL_STATE(1240)] = 54357, + [SMALL_STATE(1241)] = 54412, + [SMALL_STATE(1242)] = 54473, + [SMALL_STATE(1243)] = 54528, + [SMALL_STATE(1244)] = 54583, + [SMALL_STATE(1245)] = 54638, + [SMALL_STATE(1246)] = 54693, + [SMALL_STATE(1247)] = 54754, + [SMALL_STATE(1248)] = 54819, + [SMALL_STATE(1249)] = 54880, + [SMALL_STATE(1250)] = 54941, + [SMALL_STATE(1251)] = 55006, + [SMALL_STATE(1252)] = 55061, + [SMALL_STATE(1253)] = 55122, + [SMALL_STATE(1254)] = 55177, + [SMALL_STATE(1255)] = 55238, + [SMALL_STATE(1256)] = 55293, + [SMALL_STATE(1257)] = 55348, + [SMALL_STATE(1258)] = 55407, + [SMALL_STATE(1259)] = 55462, + [SMALL_STATE(1260)] = 55517, + [SMALL_STATE(1261)] = 55572, + [SMALL_STATE(1262)] = 55631, + [SMALL_STATE(1263)] = 55692, + [SMALL_STATE(1264)] = 55753, + [SMALL_STATE(1265)] = 55814, + [SMALL_STATE(1266)] = 55869, + [SMALL_STATE(1267)] = 55924, + [SMALL_STATE(1268)] = 55979, + [SMALL_STATE(1269)] = 56034, + [SMALL_STATE(1270)] = 56089, + [SMALL_STATE(1271)] = 56144, + [SMALL_STATE(1272)] = 56205, + [SMALL_STATE(1273)] = 56266, + [SMALL_STATE(1274)] = 56321, + [SMALL_STATE(1275)] = 56376, + [SMALL_STATE(1276)] = 56437, + [SMALL_STATE(1277)] = 56498, + [SMALL_STATE(1278)] = 56553, + [SMALL_STATE(1279)] = 56614, + [SMALL_STATE(1280)] = 56675, + [SMALL_STATE(1281)] = 56736, + [SMALL_STATE(1282)] = 56797, + [SMALL_STATE(1283)] = 56858, + [SMALL_STATE(1284)] = 56919, + [SMALL_STATE(1285)] = 56974, + [SMALL_STATE(1286)] = 57029, + [SMALL_STATE(1287)] = 57090, + [SMALL_STATE(1288)] = 57151, + [SMALL_STATE(1289)] = 57210, + [SMALL_STATE(1290)] = 57265, + [SMALL_STATE(1291)] = 57320, + [SMALL_STATE(1292)] = 57375, + [SMALL_STATE(1293)] = 57430, + [SMALL_STATE(1294)] = 57485, + [SMALL_STATE(1295)] = 57540, + [SMALL_STATE(1296)] = 57595, + [SMALL_STATE(1297)] = 57650, + [SMALL_STATE(1298)] = 57705, + [SMALL_STATE(1299)] = 57760, + [SMALL_STATE(1300)] = 57819, + [SMALL_STATE(1301)] = 57874, + [SMALL_STATE(1302)] = 57935, + [SMALL_STATE(1303)] = 57990, + [SMALL_STATE(1304)] = 58045, + [SMALL_STATE(1305)] = 58106, + [SMALL_STATE(1306)] = 58161, [SMALL_STATE(1307)] = 58222, - [SMALL_STATE(1308)] = 58282, - [SMALL_STATE(1309)] = 58342, - [SMALL_STATE(1310)] = 58396, - [SMALL_STATE(1311)] = 58450, - [SMALL_STATE(1312)] = 58510, - [SMALL_STATE(1313)] = 58576, - [SMALL_STATE(1314)] = 58634, - [SMALL_STATE(1315)] = 58724, - [SMALL_STATE(1316)] = 58778, - [SMALL_STATE(1317)] = 58832, - [SMALL_STATE(1318)] = 58922, - [SMALL_STATE(1319)] = 58982, - [SMALL_STATE(1320)] = 59036, - [SMALL_STATE(1321)] = 59096, - [SMALL_STATE(1322)] = 59154, - [SMALL_STATE(1323)] = 59214, - [SMALL_STATE(1324)] = 59268, - [SMALL_STATE(1325)] = 59322, - [SMALL_STATE(1326)] = 59382, - [SMALL_STATE(1327)] = 59442, - [SMALL_STATE(1328)] = 59496, - [SMALL_STATE(1329)] = 59550, - [SMALL_STATE(1330)] = 59604, - [SMALL_STATE(1331)] = 59664, - [SMALL_STATE(1332)] = 59724, - [SMALL_STATE(1333)] = 59814, - [SMALL_STATE(1334)] = 59874, - [SMALL_STATE(1335)] = 59928, - [SMALL_STATE(1336)] = 59986, - [SMALL_STATE(1337)] = 60046, - [SMALL_STATE(1338)] = 60106, - [SMALL_STATE(1339)] = 60160, - [SMALL_STATE(1340)] = 60220, - [SMALL_STATE(1341)] = 60274, - [SMALL_STATE(1342)] = 60334, - [SMALL_STATE(1343)] = 60394, - [SMALL_STATE(1344)] = 60454, - [SMALL_STATE(1345)] = 60514, - [SMALL_STATE(1346)] = 60568, - [SMALL_STATE(1347)] = 60622, - [SMALL_STATE(1348)] = 60682, - [SMALL_STATE(1349)] = 60736, - [SMALL_STATE(1350)] = 60794, - [SMALL_STATE(1351)] = 60848, - [SMALL_STATE(1352)] = 60902, - [SMALL_STATE(1353)] = 60956, - [SMALL_STATE(1354)] = 61010, - [SMALL_STATE(1355)] = 61070, - [SMALL_STATE(1356)] = 61130, - [SMALL_STATE(1357)] = 61190, - [SMALL_STATE(1358)] = 61250, - [SMALL_STATE(1359)] = 61308, - [SMALL_STATE(1360)] = 61362, - [SMALL_STATE(1361)] = 61422, - [SMALL_STATE(1362)] = 61480, - [SMALL_STATE(1363)] = 61540, - [SMALL_STATE(1364)] = 61600, - [SMALL_STATE(1365)] = 61654, - [SMALL_STATE(1366)] = 61708, - [SMALL_STATE(1367)] = 61762, - [SMALL_STATE(1368)] = 61822, - [SMALL_STATE(1369)] = 61880, - [SMALL_STATE(1370)] = 61940, - [SMALL_STATE(1371)] = 62000, - [SMALL_STATE(1372)] = 62060, - [SMALL_STATE(1373)] = 62120, - [SMALL_STATE(1374)] = 62180, - [SMALL_STATE(1375)] = 62238, - [SMALL_STATE(1376)] = 62292, - [SMALL_STATE(1377)] = 62346, - [SMALL_STATE(1378)] = 62404, - [SMALL_STATE(1379)] = 62458, - [SMALL_STATE(1380)] = 62516, - [SMALL_STATE(1381)] = 62574, - [SMALL_STATE(1382)] = 62634, - [SMALL_STATE(1383)] = 62692, - [SMALL_STATE(1384)] = 62752, - [SMALL_STATE(1385)] = 62806, - [SMALL_STATE(1386)] = 62860, - [SMALL_STATE(1387)] = 62914, - [SMALL_STATE(1388)] = 62968, - [SMALL_STATE(1389)] = 63028, - [SMALL_STATE(1390)] = 63082, - [SMALL_STATE(1391)] = 63136, - [SMALL_STATE(1392)] = 63196, - [SMALL_STATE(1393)] = 63256, - [SMALL_STATE(1394)] = 63310, - [SMALL_STATE(1395)] = 63370, - [SMALL_STATE(1396)] = 63430, - [SMALL_STATE(1397)] = 63490, - [SMALL_STATE(1398)] = 63550, - [SMALL_STATE(1399)] = 63610, - [SMALL_STATE(1400)] = 63670, - [SMALL_STATE(1401)] = 63724, - [SMALL_STATE(1402)] = 63782, - [SMALL_STATE(1403)] = 63836, - [SMALL_STATE(1404)] = 63890, - [SMALL_STATE(1405)] = 63944, - [SMALL_STATE(1406)] = 64004, - [SMALL_STATE(1407)] = 64058, - [SMALL_STATE(1408)] = 64118, - [SMALL_STATE(1409)] = 64172, - [SMALL_STATE(1410)] = 64226, - [SMALL_STATE(1411)] = 64280, - [SMALL_STATE(1412)] = 64334, - [SMALL_STATE(1413)] = 64394, - [SMALL_STATE(1414)] = 64448, - [SMALL_STATE(1415)] = 64502, - [SMALL_STATE(1416)] = 64562, - [SMALL_STATE(1417)] = 64616, - [SMALL_STATE(1418)] = 64670, - [SMALL_STATE(1419)] = 64724, - [SMALL_STATE(1420)] = 64778, - [SMALL_STATE(1421)] = 64838, - [SMALL_STATE(1422)] = 64898, - [SMALL_STATE(1423)] = 64952, - [SMALL_STATE(1424)] = 65006, - [SMALL_STATE(1425)] = 65060, - [SMALL_STATE(1426)] = 65124, - [SMALL_STATE(1427)] = 65188, - [SMALL_STATE(1428)] = 65242, - [SMALL_STATE(1429)] = 65296, - [SMALL_STATE(1430)] = 65354, - [SMALL_STATE(1431)] = 65408, - [SMALL_STATE(1432)] = 65466, - [SMALL_STATE(1433)] = 65520, - [SMALL_STATE(1434)] = 65578, - [SMALL_STATE(1435)] = 65632, - [SMALL_STATE(1436)] = 65686, - [SMALL_STATE(1437)] = 65744, - [SMALL_STATE(1438)] = 65798, - [SMALL_STATE(1439)] = 65852, - [SMALL_STATE(1440)] = 65906, - [SMALL_STATE(1441)] = 65960, - [SMALL_STATE(1442)] = 66020, - [SMALL_STATE(1443)] = 66074, - [SMALL_STATE(1444)] = 66134, - [SMALL_STATE(1445)] = 66194, - [SMALL_STATE(1446)] = 66254, - [SMALL_STATE(1447)] = 66314, - [SMALL_STATE(1448)] = 66374, - [SMALL_STATE(1449)] = 66432, - [SMALL_STATE(1450)] = 66486, - [SMALL_STATE(1451)] = 66540, - [SMALL_STATE(1452)] = 66600, - [SMALL_STATE(1453)] = 66654, - [SMALL_STATE(1454)] = 66708, - [SMALL_STATE(1455)] = 66762, - [SMALL_STATE(1456)] = 66816, - [SMALL_STATE(1457)] = 66870, - [SMALL_STATE(1458)] = 66930, - [SMALL_STATE(1459)] = 66984, - [SMALL_STATE(1460)] = 67038, - [SMALL_STATE(1461)] = 67098, - [SMALL_STATE(1462)] = 67152, - [SMALL_STATE(1463)] = 67206, - [SMALL_STATE(1464)] = 67260, - [SMALL_STATE(1465)] = 67314, - [SMALL_STATE(1466)] = 67368, - [SMALL_STATE(1467)] = 67422, - [SMALL_STATE(1468)] = 67482, - [SMALL_STATE(1469)] = 67542, - [SMALL_STATE(1470)] = 67596, - [SMALL_STATE(1471)] = 67656, - [SMALL_STATE(1472)] = 67710, - [SMALL_STATE(1473)] = 67764, - [SMALL_STATE(1474)] = 67818, - [SMALL_STATE(1475)] = 67876, - [SMALL_STATE(1476)] = 67936, - [SMALL_STATE(1477)] = 67990, - [SMALL_STATE(1478)] = 68044, - [SMALL_STATE(1479)] = 68098, - [SMALL_STATE(1480)] = 68152, + [SMALL_STATE(1308)] = 58280, + [SMALL_STATE(1309)] = 58340, + [SMALL_STATE(1310)] = 58400, + [SMALL_STATE(1311)] = 58460, + [SMALL_STATE(1312)] = 58514, + [SMALL_STATE(1313)] = 58568, + [SMALL_STATE(1314)] = 58622, + [SMALL_STATE(1315)] = 58680, + [SMALL_STATE(1316)] = 58734, + [SMALL_STATE(1317)] = 58794, + [SMALL_STATE(1318)] = 58848, + [SMALL_STATE(1319)] = 58912, + [SMALL_STATE(1320)] = 58976, + [SMALL_STATE(1321)] = 59030, + [SMALL_STATE(1322)] = 59084, + [SMALL_STATE(1323)] = 59144, + [SMALL_STATE(1324)] = 59202, + [SMALL_STATE(1325)] = 59256, + [SMALL_STATE(1326)] = 59310, + [SMALL_STATE(1327)] = 59370, + [SMALL_STATE(1328)] = 59430, + [SMALL_STATE(1329)] = 59490, + [SMALL_STATE(1330)] = 59550, + [SMALL_STATE(1331)] = 59610, + [SMALL_STATE(1332)] = 59664, + [SMALL_STATE(1333)] = 59718, + [SMALL_STATE(1334)] = 59772, + [SMALL_STATE(1335)] = 59826, + [SMALL_STATE(1336)] = 59886, + [SMALL_STATE(1337)] = 59946, + [SMALL_STATE(1338)] = 60006, + [SMALL_STATE(1339)] = 60066, + [SMALL_STATE(1340)] = 60124, + [SMALL_STATE(1341)] = 60184, + [SMALL_STATE(1342)] = 60238, + [SMALL_STATE(1343)] = 60292, + [SMALL_STATE(1344)] = 60350, + [SMALL_STATE(1345)] = 60410, + [SMALL_STATE(1346)] = 60470, + [SMALL_STATE(1347)] = 60530, + [SMALL_STATE(1348)] = 60584, + [SMALL_STATE(1349)] = 60638, + [SMALL_STATE(1350)] = 60692, + [SMALL_STATE(1351)] = 60746, + [SMALL_STATE(1352)] = 60800, + [SMALL_STATE(1353)] = 60860, + [SMALL_STATE(1354)] = 60950, + [SMALL_STATE(1355)] = 61040, + [SMALL_STATE(1356)] = 61094, + [SMALL_STATE(1357)] = 61148, + [SMALL_STATE(1358)] = 61238, + [SMALL_STATE(1359)] = 61292, + [SMALL_STATE(1360)] = 61346, + [SMALL_STATE(1361)] = 61400, + [SMALL_STATE(1362)] = 61454, + [SMALL_STATE(1363)] = 61514, + [SMALL_STATE(1364)] = 61568, + [SMALL_STATE(1365)] = 61622, + [SMALL_STATE(1366)] = 61682, + [SMALL_STATE(1367)] = 61736, + [SMALL_STATE(1368)] = 61790, + [SMALL_STATE(1369)] = 61844, + [SMALL_STATE(1370)] = 61902, + [SMALL_STATE(1371)] = 61960, + [SMALL_STATE(1372)] = 62014, + [SMALL_STATE(1373)] = 62072, + [SMALL_STATE(1374)] = 62130, + [SMALL_STATE(1375)] = 62190, + [SMALL_STATE(1376)] = 62244, + [SMALL_STATE(1377)] = 62298, + [SMALL_STATE(1378)] = 62352, + [SMALL_STATE(1379)] = 62406, + [SMALL_STATE(1380)] = 62460, + [SMALL_STATE(1381)] = 62514, + [SMALL_STATE(1382)] = 62572, + [SMALL_STATE(1383)] = 62626, + [SMALL_STATE(1384)] = 62680, + [SMALL_STATE(1385)] = 62738, + [SMALL_STATE(1386)] = 62792, + [SMALL_STATE(1387)] = 62846, + [SMALL_STATE(1388)] = 62906, + [SMALL_STATE(1389)] = 62966, + [SMALL_STATE(1390)] = 63020, + [SMALL_STATE(1391)] = 63074, + [SMALL_STATE(1392)] = 63128, + [SMALL_STATE(1393)] = 63186, + [SMALL_STATE(1394)] = 63240, + [SMALL_STATE(1395)] = 63294, + [SMALL_STATE(1396)] = 63348, + [SMALL_STATE(1397)] = 63402, + [SMALL_STATE(1398)] = 63462, + [SMALL_STATE(1399)] = 63516, + [SMALL_STATE(1400)] = 63576, + [SMALL_STATE(1401)] = 63630, + [SMALL_STATE(1402)] = 63684, + [SMALL_STATE(1403)] = 63738, + [SMALL_STATE(1404)] = 63792, + [SMALL_STATE(1405)] = 63852, + [SMALL_STATE(1406)] = 63912, + [SMALL_STATE(1407)] = 63972, + [SMALL_STATE(1408)] = 64032, + [SMALL_STATE(1409)] = 64090, + [SMALL_STATE(1410)] = 64150, + [SMALL_STATE(1411)] = 64208, + [SMALL_STATE(1412)] = 64262, + [SMALL_STATE(1413)] = 64316, + [SMALL_STATE(1414)] = 64374, + [SMALL_STATE(1415)] = 64434, + [SMALL_STATE(1416)] = 64494, + [SMALL_STATE(1417)] = 64548, + [SMALL_STATE(1418)] = 64602, + [SMALL_STATE(1419)] = 64660, + [SMALL_STATE(1420)] = 64720, + [SMALL_STATE(1421)] = 64780, + [SMALL_STATE(1422)] = 64840, + [SMALL_STATE(1423)] = 64900, + [SMALL_STATE(1424)] = 64954, + [SMALL_STATE(1425)] = 65020, + [SMALL_STATE(1426)] = 65074, + [SMALL_STATE(1427)] = 65134, + [SMALL_STATE(1428)] = 65188, + [SMALL_STATE(1429)] = 65242, + [SMALL_STATE(1430)] = 65296, + [SMALL_STATE(1431)] = 65356, + [SMALL_STATE(1432)] = 65416, + [SMALL_STATE(1433)] = 65470, + [SMALL_STATE(1434)] = 65530, + [SMALL_STATE(1435)] = 65590, + [SMALL_STATE(1436)] = 65650, + [SMALL_STATE(1437)] = 65710, + [SMALL_STATE(1438)] = 65770, + [SMALL_STATE(1439)] = 65830, + [SMALL_STATE(1440)] = 65890, + [SMALL_STATE(1441)] = 65950, + [SMALL_STATE(1442)] = 66010, + [SMALL_STATE(1443)] = 66070, + [SMALL_STATE(1444)] = 66130, + [SMALL_STATE(1445)] = 66184, + [SMALL_STATE(1446)] = 66244, + [SMALL_STATE(1447)] = 66298, + [SMALL_STATE(1448)] = 66358, + [SMALL_STATE(1449)] = 66418, + [SMALL_STATE(1450)] = 66478, + [SMALL_STATE(1451)] = 66538, + [SMALL_STATE(1452)] = 66592, + [SMALL_STATE(1453)] = 66646, + [SMALL_STATE(1454)] = 66704, + [SMALL_STATE(1455)] = 66764, + [SMALL_STATE(1456)] = 66822, + [SMALL_STATE(1457)] = 66876, + [SMALL_STATE(1458)] = 66934, + [SMALL_STATE(1459)] = 66994, + [SMALL_STATE(1460)] = 67048, + [SMALL_STATE(1461)] = 67108, + [SMALL_STATE(1462)] = 67168, + [SMALL_STATE(1463)] = 67222, + [SMALL_STATE(1464)] = 67276, + [SMALL_STATE(1465)] = 67330, + [SMALL_STATE(1466)] = 67384, + [SMALL_STATE(1467)] = 67438, + [SMALL_STATE(1468)] = 67492, + [SMALL_STATE(1469)] = 67546, + [SMALL_STATE(1470)] = 67600, + [SMALL_STATE(1471)] = 67654, + [SMALL_STATE(1472)] = 67708, + [SMALL_STATE(1473)] = 67766, + [SMALL_STATE(1474)] = 67820, + [SMALL_STATE(1475)] = 67874, + [SMALL_STATE(1476)] = 67928, + [SMALL_STATE(1477)] = 67988, + [SMALL_STATE(1478)] = 68042, + [SMALL_STATE(1479)] = 68096, + [SMALL_STATE(1480)] = 68156, [SMALL_STATE(1481)] = 68210, - [SMALL_STATE(1482)] = 68269, - [SMALL_STATE(1483)] = 68322, - [SMALL_STATE(1484)] = 68375, - [SMALL_STATE(1485)] = 68428, - [SMALL_STATE(1486)] = 68481, - [SMALL_STATE(1487)] = 68534, - [SMALL_STATE(1488)] = 68587, - [SMALL_STATE(1489)] = 68640, - [SMALL_STATE(1490)] = 68693, - [SMALL_STATE(1491)] = 68746, - [SMALL_STATE(1492)] = 68799, - [SMALL_STATE(1493)] = 68852, - [SMALL_STATE(1494)] = 68905, - [SMALL_STATE(1495)] = 68958, - [SMALL_STATE(1496)] = 69011, - [SMALL_STATE(1497)] = 69064, - [SMALL_STATE(1498)] = 69117, - [SMALL_STATE(1499)] = 69170, - [SMALL_STATE(1500)] = 69223, - [SMALL_STATE(1501)] = 69276, - [SMALL_STATE(1502)] = 69329, - [SMALL_STATE(1503)] = 69382, - [SMALL_STATE(1504)] = 69435, - [SMALL_STATE(1505)] = 69488, - [SMALL_STATE(1506)] = 69541, - [SMALL_STATE(1507)] = 69594, - [SMALL_STATE(1508)] = 69647, - [SMALL_STATE(1509)] = 69700, - [SMALL_STATE(1510)] = 69757, - [SMALL_STATE(1511)] = 69810, - [SMALL_STATE(1512)] = 69863, - [SMALL_STATE(1513)] = 69922, - [SMALL_STATE(1514)] = 69975, - [SMALL_STATE(1515)] = 70028, - [SMALL_STATE(1516)] = 70081, - [SMALL_STATE(1517)] = 70134, - [SMALL_STATE(1518)] = 70187, - [SMALL_STATE(1519)] = 70240, - [SMALL_STATE(1520)] = 70293, - [SMALL_STATE(1521)] = 70346, - [SMALL_STATE(1522)] = 70399, - [SMALL_STATE(1523)] = 70456, - [SMALL_STATE(1524)] = 70515, - [SMALL_STATE(1525)] = 70574, - [SMALL_STATE(1526)] = 70627, - [SMALL_STATE(1527)] = 70686, - [SMALL_STATE(1528)] = 70739, - [SMALL_STATE(1529)] = 70798, - [SMALL_STATE(1530)] = 70857, - [SMALL_STATE(1531)] = 70910, - [SMALL_STATE(1532)] = 70963, - [SMALL_STATE(1533)] = 71016, - [SMALL_STATE(1534)] = 71069, - [SMALL_STATE(1535)] = 71122, - [SMALL_STATE(1536)] = 71175, - [SMALL_STATE(1537)] = 71234, - [SMALL_STATE(1538)] = 71287, - [SMALL_STATE(1539)] = 71340, - [SMALL_STATE(1540)] = 71397, - [SMALL_STATE(1541)] = 71450, - [SMALL_STATE(1542)] = 71503, - [SMALL_STATE(1543)] = 71556, - [SMALL_STATE(1544)] = 71609, - [SMALL_STATE(1545)] = 71662, - [SMALL_STATE(1546)] = 71715, - [SMALL_STATE(1547)] = 71768, - [SMALL_STATE(1548)] = 71821, - [SMALL_STATE(1549)] = 71874, - [SMALL_STATE(1550)] = 71927, - [SMALL_STATE(1551)] = 71980, - [SMALL_STATE(1552)] = 72033, - [SMALL_STATE(1553)] = 72086, - [SMALL_STATE(1554)] = 72139, - [SMALL_STATE(1555)] = 72192, - [SMALL_STATE(1556)] = 72245, - [SMALL_STATE(1557)] = 72298, - [SMALL_STATE(1558)] = 72357, - [SMALL_STATE(1559)] = 72416, - [SMALL_STATE(1560)] = 72475, - [SMALL_STATE(1561)] = 72534, - [SMALL_STATE(1562)] = 72587, - [SMALL_STATE(1563)] = 72654, - [SMALL_STATE(1564)] = 72707, - [SMALL_STATE(1565)] = 72760, - [SMALL_STATE(1566)] = 72813, - [SMALL_STATE(1567)] = 72866, - [SMALL_STATE(1568)] = 72923, - [SMALL_STATE(1569)] = 72976, - [SMALL_STATE(1570)] = 73029, - [SMALL_STATE(1571)] = 73082, - [SMALL_STATE(1572)] = 73135, - [SMALL_STATE(1573)] = 73194, - [SMALL_STATE(1574)] = 73247, - [SMALL_STATE(1575)] = 73300, - [SMALL_STATE(1576)] = 73359, - [SMALL_STATE(1577)] = 73462, - [SMALL_STATE(1578)] = 73515, - [SMALL_STATE(1579)] = 73568, - [SMALL_STATE(1580)] = 73621, - [SMALL_STATE(1581)] = 73674, - [SMALL_STATE(1582)] = 73727, - [SMALL_STATE(1583)] = 73786, - [SMALL_STATE(1584)] = 73839, - [SMALL_STATE(1585)] = 73892, - [SMALL_STATE(1586)] = 73945, - [SMALL_STATE(1587)] = 73998, - [SMALL_STATE(1588)] = 74051, - [SMALL_STATE(1589)] = 74104, - [SMALL_STATE(1590)] = 74157, - [SMALL_STATE(1591)] = 74210, - [SMALL_STATE(1592)] = 74263, - [SMALL_STATE(1593)] = 74316, - [SMALL_STATE(1594)] = 74369, - [SMALL_STATE(1595)] = 74422, - [SMALL_STATE(1596)] = 74475, - [SMALL_STATE(1597)] = 74534, - [SMALL_STATE(1598)] = 74593, - [SMALL_STATE(1599)] = 74646, - [SMALL_STATE(1600)] = 74705, - [SMALL_STATE(1601)] = 74758, - [SMALL_STATE(1602)] = 74817, - [SMALL_STATE(1603)] = 74876, - [SMALL_STATE(1604)] = 74941, - [SMALL_STATE(1605)] = 74998, - [SMALL_STATE(1606)] = 75051, - [SMALL_STATE(1607)] = 75108, - [SMALL_STATE(1608)] = 75161, - [SMALL_STATE(1609)] = 75218, - [SMALL_STATE(1610)] = 75271, - [SMALL_STATE(1611)] = 75324, - [SMALL_STATE(1612)] = 75377, - [SMALL_STATE(1613)] = 75430, - [SMALL_STATE(1614)] = 75483, - [SMALL_STATE(1615)] = 75536, - [SMALL_STATE(1616)] = 75639, - [SMALL_STATE(1617)] = 75692, - [SMALL_STATE(1618)] = 75745, - [SMALL_STATE(1619)] = 75802, - [SMALL_STATE(1620)] = 75855, - [SMALL_STATE(1621)] = 75958, - [SMALL_STATE(1622)] = 76011, - [SMALL_STATE(1623)] = 76064, - [SMALL_STATE(1624)] = 76117, - [SMALL_STATE(1625)] = 76170, - [SMALL_STATE(1626)] = 76223, - [SMALL_STATE(1627)] = 76276, - [SMALL_STATE(1628)] = 76341, - [SMALL_STATE(1629)] = 76394, - [SMALL_STATE(1630)] = 76447, - [SMALL_STATE(1631)] = 76506, - [SMALL_STATE(1632)] = 76563, - [SMALL_STATE(1633)] = 76622, - [SMALL_STATE(1634)] = 76675, - [SMALL_STATE(1635)] = 76736, - [SMALL_STATE(1636)] = 76797, - [SMALL_STATE(1637)] = 76900, - [SMALL_STATE(1638)] = 76959, - [SMALL_STATE(1639)] = 77018, - [SMALL_STATE(1640)] = 77071, - [SMALL_STATE(1641)] = 77130, - [SMALL_STATE(1642)] = 77183, - [SMALL_STATE(1643)] = 77236, - [SMALL_STATE(1644)] = 77293, - [SMALL_STATE(1645)] = 77346, - [SMALL_STATE(1646)] = 77405, - [SMALL_STATE(1647)] = 77462, - [SMALL_STATE(1648)] = 77521, - [SMALL_STATE(1649)] = 77586, - [SMALL_STATE(1650)] = 77645, - [SMALL_STATE(1651)] = 77704, - [SMALL_STATE(1652)] = 77757, - [SMALL_STATE(1653)] = 77810, - [SMALL_STATE(1654)] = 77869, - [SMALL_STATE(1655)] = 77958, - [SMALL_STATE(1656)] = 78011, - [SMALL_STATE(1657)] = 78064, - [SMALL_STATE(1658)] = 78117, - [SMALL_STATE(1659)] = 78174, - [SMALL_STATE(1660)] = 78233, - [SMALL_STATE(1661)] = 78292, - [SMALL_STATE(1662)] = 78351, - [SMALL_STATE(1663)] = 78410, - [SMALL_STATE(1664)] = 78469, - [SMALL_STATE(1665)] = 78528, - [SMALL_STATE(1666)] = 78587, - [SMALL_STATE(1667)] = 78640, - [SMALL_STATE(1668)] = 78693, - [SMALL_STATE(1669)] = 78746, - [SMALL_STATE(1670)] = 78799, - [SMALL_STATE(1671)] = 78888, - [SMALL_STATE(1672)] = 78941, - [SMALL_STATE(1673)] = 79000, - [SMALL_STATE(1674)] = 79053, - [SMALL_STATE(1675)] = 79106, - [SMALL_STATE(1676)] = 79165, - [SMALL_STATE(1677)] = 79218, - [SMALL_STATE(1678)] = 79271, - [SMALL_STATE(1679)] = 79324, - [SMALL_STATE(1680)] = 79427, - [SMALL_STATE(1681)] = 79480, - [SMALL_STATE(1682)] = 79539, - [SMALL_STATE(1683)] = 79592, - [SMALL_STATE(1684)] = 79645, - [SMALL_STATE(1685)] = 79698, - [SMALL_STATE(1686)] = 79801, - [SMALL_STATE(1687)] = 79854, - [SMALL_STATE(1688)] = 79907, - [SMALL_STATE(1689)] = 79966, - [SMALL_STATE(1690)] = 80019, - [SMALL_STATE(1691)] = 80072, - [SMALL_STATE(1692)] = 80125, - [SMALL_STATE(1693)] = 80178, - [SMALL_STATE(1694)] = 80231, - [SMALL_STATE(1695)] = 80290, - [SMALL_STATE(1696)] = 80349, - [SMALL_STATE(1697)] = 80408, - [SMALL_STATE(1698)] = 80461, - [SMALL_STATE(1699)] = 80564, - [SMALL_STATE(1700)] = 80621, - [SMALL_STATE(1701)] = 80674, - [SMALL_STATE(1702)] = 80727, - [SMALL_STATE(1703)] = 80780, - [SMALL_STATE(1704)] = 80837, - [SMALL_STATE(1705)] = 80896, - [SMALL_STATE(1706)] = 80955, - [SMALL_STATE(1707)] = 81024, - [SMALL_STATE(1708)] = 81093, + [SMALL_STATE(1482)] = 68263, + [SMALL_STATE(1483)] = 68316, + [SMALL_STATE(1484)] = 68369, + [SMALL_STATE(1485)] = 68422, + [SMALL_STATE(1486)] = 68475, + [SMALL_STATE(1487)] = 68578, + [SMALL_STATE(1488)] = 68631, + [SMALL_STATE(1489)] = 68684, + [SMALL_STATE(1490)] = 68737, + [SMALL_STATE(1491)] = 68802, + [SMALL_STATE(1492)] = 68859, + [SMALL_STATE(1493)] = 68912, + [SMALL_STATE(1494)] = 68965, + [SMALL_STATE(1495)] = 69018, + [SMALL_STATE(1496)] = 69071, + [SMALL_STATE(1497)] = 69124, + [SMALL_STATE(1498)] = 69177, + [SMALL_STATE(1499)] = 69230, + [SMALL_STATE(1500)] = 69283, + [SMALL_STATE(1501)] = 69336, + [SMALL_STATE(1502)] = 69389, + [SMALL_STATE(1503)] = 69442, + [SMALL_STATE(1504)] = 69531, + [SMALL_STATE(1505)] = 69584, + [SMALL_STATE(1506)] = 69637, + [SMALL_STATE(1507)] = 69690, + [SMALL_STATE(1508)] = 69749, + [SMALL_STATE(1509)] = 69802, + [SMALL_STATE(1510)] = 69855, + [SMALL_STATE(1511)] = 69908, + [SMALL_STATE(1512)] = 69961, + [SMALL_STATE(1513)] = 70050, + [SMALL_STATE(1514)] = 70103, + [SMALL_STATE(1515)] = 70162, + [SMALL_STATE(1516)] = 70215, + [SMALL_STATE(1517)] = 70274, + [SMALL_STATE(1518)] = 70327, + [SMALL_STATE(1519)] = 70380, + [SMALL_STATE(1520)] = 70433, + [SMALL_STATE(1521)] = 70486, + [SMALL_STATE(1522)] = 70545, + [SMALL_STATE(1523)] = 70602, + [SMALL_STATE(1524)] = 70659, + [SMALL_STATE(1525)] = 70718, + [SMALL_STATE(1526)] = 70771, + [SMALL_STATE(1527)] = 70824, + [SMALL_STATE(1528)] = 70877, + [SMALL_STATE(1529)] = 70930, + [SMALL_STATE(1530)] = 70983, + [SMALL_STATE(1531)] = 71036, + [SMALL_STATE(1532)] = 71089, + [SMALL_STATE(1533)] = 71146, + [SMALL_STATE(1534)] = 71199, + [SMALL_STATE(1535)] = 71252, + [SMALL_STATE(1536)] = 71305, + [SMALL_STATE(1537)] = 71358, + [SMALL_STATE(1538)] = 71411, + [SMALL_STATE(1539)] = 71514, + [SMALL_STATE(1540)] = 71571, + [SMALL_STATE(1541)] = 71624, + [SMALL_STATE(1542)] = 71677, + [SMALL_STATE(1543)] = 71734, + [SMALL_STATE(1544)] = 71787, + [SMALL_STATE(1545)] = 71846, + [SMALL_STATE(1546)] = 71899, + [SMALL_STATE(1547)] = 71952, + [SMALL_STATE(1548)] = 72021, + [SMALL_STATE(1549)] = 72078, + [SMALL_STATE(1550)] = 72131, + [SMALL_STATE(1551)] = 72200, + [SMALL_STATE(1552)] = 72253, + [SMALL_STATE(1553)] = 72306, + [SMALL_STATE(1554)] = 72359, + [SMALL_STATE(1555)] = 72418, + [SMALL_STATE(1556)] = 72471, + [SMALL_STATE(1557)] = 72532, + [SMALL_STATE(1558)] = 72585, + [SMALL_STATE(1559)] = 72644, + [SMALL_STATE(1560)] = 72703, + [SMALL_STATE(1561)] = 72762, + [SMALL_STATE(1562)] = 72815, + [SMALL_STATE(1563)] = 72868, + [SMALL_STATE(1564)] = 72921, + [SMALL_STATE(1565)] = 72974, + [SMALL_STATE(1566)] = 73027, + [SMALL_STATE(1567)] = 73080, + [SMALL_STATE(1568)] = 73133, + [SMALL_STATE(1569)] = 73186, + [SMALL_STATE(1570)] = 73245, + [SMALL_STATE(1571)] = 73298, + [SMALL_STATE(1572)] = 73351, + [SMALL_STATE(1573)] = 73404, + [SMALL_STATE(1574)] = 73457, + [SMALL_STATE(1575)] = 73516, + [SMALL_STATE(1576)] = 73569, + [SMALL_STATE(1577)] = 73622, + [SMALL_STATE(1578)] = 73675, + [SMALL_STATE(1579)] = 73734, + [SMALL_STATE(1580)] = 73787, + [SMALL_STATE(1581)] = 73840, + [SMALL_STATE(1582)] = 73897, + [SMALL_STATE(1583)] = 73950, + [SMALL_STATE(1584)] = 74003, + [SMALL_STATE(1585)] = 74056, + [SMALL_STATE(1586)] = 74109, + [SMALL_STATE(1587)] = 74162, + [SMALL_STATE(1588)] = 74221, + [SMALL_STATE(1589)] = 74324, + [SMALL_STATE(1590)] = 74377, + [SMALL_STATE(1591)] = 74430, + [SMALL_STATE(1592)] = 74483, + [SMALL_STATE(1593)] = 74542, + [SMALL_STATE(1594)] = 74601, + [SMALL_STATE(1595)] = 74654, + [SMALL_STATE(1596)] = 74713, + [SMALL_STATE(1597)] = 74772, + [SMALL_STATE(1598)] = 74831, + [SMALL_STATE(1599)] = 74884, + [SMALL_STATE(1600)] = 74937, + [SMALL_STATE(1601)] = 74994, + [SMALL_STATE(1602)] = 75047, + [SMALL_STATE(1603)] = 75106, + [SMALL_STATE(1604)] = 75159, + [SMALL_STATE(1605)] = 75262, + [SMALL_STATE(1606)] = 75315, + [SMALL_STATE(1607)] = 75368, + [SMALL_STATE(1608)] = 75433, + [SMALL_STATE(1609)] = 75486, + [SMALL_STATE(1610)] = 75539, + [SMALL_STATE(1611)] = 75598, + [SMALL_STATE(1612)] = 75657, + [SMALL_STATE(1613)] = 75716, + [SMALL_STATE(1614)] = 75775, + [SMALL_STATE(1615)] = 75832, + [SMALL_STATE(1616)] = 75891, + [SMALL_STATE(1617)] = 75944, + [SMALL_STATE(1618)] = 76001, + [SMALL_STATE(1619)] = 76054, + [SMALL_STATE(1620)] = 76107, + [SMALL_STATE(1621)] = 76160, + [SMALL_STATE(1622)] = 76213, + [SMALL_STATE(1623)] = 76270, + [SMALL_STATE(1624)] = 76323, + [SMALL_STATE(1625)] = 76376, + [SMALL_STATE(1626)] = 76435, + [SMALL_STATE(1627)] = 76488, + [SMALL_STATE(1628)] = 76541, + [SMALL_STATE(1629)] = 76594, + [SMALL_STATE(1630)] = 76647, + [SMALL_STATE(1631)] = 76700, + [SMALL_STATE(1632)] = 76753, + [SMALL_STATE(1633)] = 76806, + [SMALL_STATE(1634)] = 76859, + [SMALL_STATE(1635)] = 76912, + [SMALL_STATE(1636)] = 77015, + [SMALL_STATE(1637)] = 77068, + [SMALL_STATE(1638)] = 77121, + [SMALL_STATE(1639)] = 77174, + [SMALL_STATE(1640)] = 77227, + [SMALL_STATE(1641)] = 77280, + [SMALL_STATE(1642)] = 77333, + [SMALL_STATE(1643)] = 77386, + [SMALL_STATE(1644)] = 77439, + [SMALL_STATE(1645)] = 77492, + [SMALL_STATE(1646)] = 77551, + [SMALL_STATE(1647)] = 77610, + [SMALL_STATE(1648)] = 77663, + [SMALL_STATE(1649)] = 77722, + [SMALL_STATE(1650)] = 77781, + [SMALL_STATE(1651)] = 77834, + [SMALL_STATE(1652)] = 77893, + [SMALL_STATE(1653)] = 77952, + [SMALL_STATE(1654)] = 78011, + [SMALL_STATE(1655)] = 78070, + [SMALL_STATE(1656)] = 78123, + [SMALL_STATE(1657)] = 78182, + [SMALL_STATE(1658)] = 78235, + [SMALL_STATE(1659)] = 78288, + [SMALL_STATE(1660)] = 78341, + [SMALL_STATE(1661)] = 78394, + [SMALL_STATE(1662)] = 78451, + [SMALL_STATE(1663)] = 78510, + [SMALL_STATE(1664)] = 78569, + [SMALL_STATE(1665)] = 78628, + [SMALL_STATE(1666)] = 78687, + [SMALL_STATE(1667)] = 78746, + [SMALL_STATE(1668)] = 78805, + [SMALL_STATE(1669)] = 78858, + [SMALL_STATE(1670)] = 78915, + [SMALL_STATE(1671)] = 78968, + [SMALL_STATE(1672)] = 79021, + [SMALL_STATE(1673)] = 79124, + [SMALL_STATE(1674)] = 79183, + [SMALL_STATE(1675)] = 79236, + [SMALL_STATE(1676)] = 79289, + [SMALL_STATE(1677)] = 79342, + [SMALL_STATE(1678)] = 79401, + [SMALL_STATE(1679)] = 79454, + [SMALL_STATE(1680)] = 79513, + [SMALL_STATE(1681)] = 79572, + [SMALL_STATE(1682)] = 79625, + [SMALL_STATE(1683)] = 79678, + [SMALL_STATE(1684)] = 79731, + [SMALL_STATE(1685)] = 79784, + [SMALL_STATE(1686)] = 79837, + [SMALL_STATE(1687)] = 79890, + [SMALL_STATE(1688)] = 79943, + [SMALL_STATE(1689)] = 79996, + [SMALL_STATE(1690)] = 80055, + [SMALL_STATE(1691)] = 80108, + [SMALL_STATE(1692)] = 80161, + [SMALL_STATE(1693)] = 80214, + [SMALL_STATE(1694)] = 80273, + [SMALL_STATE(1695)] = 80334, + [SMALL_STATE(1696)] = 80393, + [SMALL_STATE(1697)] = 80446, + [SMALL_STATE(1698)] = 80499, + [SMALL_STATE(1699)] = 80552, + [SMALL_STATE(1700)] = 80605, + [SMALL_STATE(1701)] = 80658, + [SMALL_STATE(1702)] = 80711, + [SMALL_STATE(1703)] = 80814, + [SMALL_STATE(1704)] = 80867, + [SMALL_STATE(1705)] = 80920, + [SMALL_STATE(1706)] = 80973, + [SMALL_STATE(1707)] = 81026, + [SMALL_STATE(1708)] = 81085, [SMALL_STATE(1709)] = 81152, - [SMALL_STATE(1710)] = 81205, - [SMALL_STATE(1711)] = 81264, - [SMALL_STATE(1712)] = 81323, - [SMALL_STATE(1713)] = 81376, - [SMALL_STATE(1714)] = 81429, - [SMALL_STATE(1715)] = 81488, - [SMALL_STATE(1716)] = 81547, - [SMALL_STATE(1717)] = 81600, - [SMALL_STATE(1718)] = 81659, - [SMALL_STATE(1719)] = 81712, - [SMALL_STATE(1720)] = 81773, - [SMALL_STATE(1721)] = 81830, - [SMALL_STATE(1722)] = 81889, - [SMALL_STATE(1723)] = 81948, - [SMALL_STATE(1724)] = 82001, - [SMALL_STATE(1725)] = 82054, + [SMALL_STATE(1710)] = 81211, + [SMALL_STATE(1711)] = 81270, + [SMALL_STATE(1712)] = 81335, + [SMALL_STATE(1713)] = 81394, + [SMALL_STATE(1714)] = 81453, + [SMALL_STATE(1715)] = 81512, + [SMALL_STATE(1716)] = 81571, + [SMALL_STATE(1717)] = 81624, + [SMALL_STATE(1718)] = 81677, + [SMALL_STATE(1719)] = 81738, + [SMALL_STATE(1720)] = 81795, + [SMALL_STATE(1721)] = 81848, + [SMALL_STATE(1722)] = 81901, + [SMALL_STATE(1723)] = 81954, + [SMALL_STATE(1724)] = 82007, + [SMALL_STATE(1725)] = 82060, [SMALL_STATE(1726)] = 82113, [SMALL_STATE(1727)] = 82165, [SMALL_STATE(1728)] = 82223, - [SMALL_STATE(1729)] = 82275, - [SMALL_STATE(1730)] = 82327, - [SMALL_STATE(1731)] = 82427, - [SMALL_STATE(1732)] = 82479, - [SMALL_STATE(1733)] = 82531, - [SMALL_STATE(1734)] = 82583, - [SMALL_STATE(1735)] = 82635, - [SMALL_STATE(1736)] = 82687, - [SMALL_STATE(1737)] = 82743, - [SMALL_STATE(1738)] = 82795, - [SMALL_STATE(1739)] = 82851, - [SMALL_STATE(1740)] = 82907, - [SMALL_STATE(1741)] = 82963, - [SMALL_STATE(1742)] = 83019, - [SMALL_STATE(1743)] = 83075, - [SMALL_STATE(1744)] = 83131, - [SMALL_STATE(1745)] = 83187, - [SMALL_STATE(1746)] = 83245, - [SMALL_STATE(1747)] = 83297, - [SMALL_STATE(1748)] = 83349, - [SMALL_STATE(1749)] = 83401, - [SMALL_STATE(1750)] = 83501, - [SMALL_STATE(1751)] = 83559, - [SMALL_STATE(1752)] = 83615, - [SMALL_STATE(1753)] = 83673, - [SMALL_STATE(1754)] = 83725, - [SMALL_STATE(1755)] = 83777, - [SMALL_STATE(1756)] = 83829, - [SMALL_STATE(1757)] = 83881, - [SMALL_STATE(1758)] = 83981, - [SMALL_STATE(1759)] = 84039, - [SMALL_STATE(1760)] = 84091, - [SMALL_STATE(1761)] = 84143, - [SMALL_STATE(1762)] = 84195, - [SMALL_STATE(1763)] = 84247, - [SMALL_STATE(1764)] = 84299, - [SMALL_STATE(1765)] = 84351, - [SMALL_STATE(1766)] = 84403, - [SMALL_STATE(1767)] = 84455, - [SMALL_STATE(1768)] = 84507, - [SMALL_STATE(1769)] = 84559, - [SMALL_STATE(1770)] = 84611, - [SMALL_STATE(1771)] = 84663, - [SMALL_STATE(1772)] = 84715, - [SMALL_STATE(1773)] = 84767, - [SMALL_STATE(1774)] = 84819, - [SMALL_STATE(1775)] = 84871, - [SMALL_STATE(1776)] = 84923, - [SMALL_STATE(1777)] = 84975, - [SMALL_STATE(1778)] = 85027, - [SMALL_STATE(1779)] = 85127, - [SMALL_STATE(1780)] = 85185, - [SMALL_STATE(1781)] = 85243, - [SMALL_STATE(1782)] = 85295, - [SMALL_STATE(1783)] = 85347, - [SMALL_STATE(1784)] = 85399, - [SMALL_STATE(1785)] = 85457, - [SMALL_STATE(1786)] = 85509, - [SMALL_STATE(1787)] = 85567, - [SMALL_STATE(1788)] = 85625, - [SMALL_STATE(1789)] = 85677, - [SMALL_STATE(1790)] = 85733, - [SMALL_STATE(1791)] = 85785, - [SMALL_STATE(1792)] = 85885, - [SMALL_STATE(1793)] = 85937, - [SMALL_STATE(1794)] = 85989, - [SMALL_STATE(1795)] = 86047, - [SMALL_STATE(1796)] = 86105, - [SMALL_STATE(1797)] = 86157, - [SMALL_STATE(1798)] = 86213, - [SMALL_STATE(1799)] = 86265, - [SMALL_STATE(1800)] = 86321, - [SMALL_STATE(1801)] = 86379, - [SMALL_STATE(1802)] = 86435, - [SMALL_STATE(1803)] = 86487, - [SMALL_STATE(1804)] = 86543, - [SMALL_STATE(1805)] = 86595, - [SMALL_STATE(1806)] = 86647, - [SMALL_STATE(1807)] = 86747, - [SMALL_STATE(1808)] = 86799, - [SMALL_STATE(1809)] = 86857, - [SMALL_STATE(1810)] = 86909, - [SMALL_STATE(1811)] = 86961, - [SMALL_STATE(1812)] = 87031, - [SMALL_STATE(1813)] = 87083, - [SMALL_STATE(1814)] = 87135, - [SMALL_STATE(1815)] = 87191, - [SMALL_STATE(1816)] = 87243, - [SMALL_STATE(1817)] = 87299, - [SMALL_STATE(1818)] = 87351, - [SMALL_STATE(1819)] = 87403, - [SMALL_STATE(1820)] = 87455, - [SMALL_STATE(1821)] = 87507, - [SMALL_STATE(1822)] = 87565, - [SMALL_STATE(1823)] = 87623, - [SMALL_STATE(1824)] = 87681, - [SMALL_STATE(1825)] = 87781, - [SMALL_STATE(1826)] = 87833, - [SMALL_STATE(1827)] = 87889, - [SMALL_STATE(1828)] = 87941, - [SMALL_STATE(1829)] = 87997, - [SMALL_STATE(1830)] = 88053, - [SMALL_STATE(1831)] = 88153, - [SMALL_STATE(1832)] = 88211, - [SMALL_STATE(1833)] = 88269, - [SMALL_STATE(1834)] = 88321, - [SMALL_STATE(1835)] = 88373, - [SMALL_STATE(1836)] = 88425, - [SMALL_STATE(1837)] = 88477, - [SMALL_STATE(1838)] = 88529, - [SMALL_STATE(1839)] = 88581, - [SMALL_STATE(1840)] = 88639, - [SMALL_STATE(1841)] = 88691, - [SMALL_STATE(1842)] = 88743, - [SMALL_STATE(1843)] = 88843, - [SMALL_STATE(1844)] = 88901, - [SMALL_STATE(1845)] = 88953, - [SMALL_STATE(1846)] = 89011, - [SMALL_STATE(1847)] = 89069, - [SMALL_STATE(1848)] = 89121, - [SMALL_STATE(1849)] = 89173, - [SMALL_STATE(1850)] = 89225, - [SMALL_STATE(1851)] = 89325, - [SMALL_STATE(1852)] = 89377, - [SMALL_STATE(1853)] = 89429, - [SMALL_STATE(1854)] = 89481, - [SMALL_STATE(1855)] = 89533, - [SMALL_STATE(1856)] = 89585, - [SMALL_STATE(1857)] = 89637, - [SMALL_STATE(1858)] = 89689, - [SMALL_STATE(1859)] = 89741, - [SMALL_STATE(1860)] = 89793, - [SMALL_STATE(1861)] = 89849, - [SMALL_STATE(1862)] = 89901, - [SMALL_STATE(1863)] = 89953, - [SMALL_STATE(1864)] = 90005, - [SMALL_STATE(1865)] = 90057, - [SMALL_STATE(1866)] = 90109, - [SMALL_STATE(1867)] = 90161, - [SMALL_STATE(1868)] = 90261, - [SMALL_STATE(1869)] = 90351, - [SMALL_STATE(1870)] = 90451, - [SMALL_STATE(1871)] = 90503, - [SMALL_STATE(1872)] = 90603, - [SMALL_STATE(1873)] = 90655, - [SMALL_STATE(1874)] = 90711, - [SMALL_STATE(1875)] = 90763, - [SMALL_STATE(1876)] = 90815, - [SMALL_STATE(1877)] = 90867, - [SMALL_STATE(1878)] = 90919, - [SMALL_STATE(1879)] = 90971, - [SMALL_STATE(1880)] = 91029, - [SMALL_STATE(1881)] = 91081, - [SMALL_STATE(1882)] = 91133, - [SMALL_STATE(1883)] = 91201, - [SMALL_STATE(1884)] = 91253, - [SMALL_STATE(1885)] = 91353, - [SMALL_STATE(1886)] = 91405, - [SMALL_STATE(1887)] = 91461, - [SMALL_STATE(1888)] = 91517, - [SMALL_STATE(1889)] = 91569, - [SMALL_STATE(1890)] = 91627, - [SMALL_STATE(1891)] = 91679, - [SMALL_STATE(1892)] = 91731, - [SMALL_STATE(1893)] = 91791, - [SMALL_STATE(1894)] = 91851, - [SMALL_STATE(1895)] = 91909, - [SMALL_STATE(1896)] = 91965, - [SMALL_STATE(1897)] = 92017, - [SMALL_STATE(1898)] = 92075, - [SMALL_STATE(1899)] = 92131, - [SMALL_STATE(1900)] = 92187, - [SMALL_STATE(1901)] = 92243, - [SMALL_STATE(1902)] = 92301, - [SMALL_STATE(1903)] = 92359, - [SMALL_STATE(1904)] = 92417, - [SMALL_STATE(1905)] = 92473, - [SMALL_STATE(1906)] = 92573, - [SMALL_STATE(1907)] = 92673, - [SMALL_STATE(1908)] = 92737, - [SMALL_STATE(1909)] = 92795, - [SMALL_STATE(1910)] = 92851, - [SMALL_STATE(1911)] = 92909, - [SMALL_STATE(1912)] = 92967, - [SMALL_STATE(1913)] = 93023, - [SMALL_STATE(1914)] = 93123, - [SMALL_STATE(1915)] = 93181, - [SMALL_STATE(1916)] = 93239, - [SMALL_STATE(1917)] = 93297, - [SMALL_STATE(1918)] = 93349, - [SMALL_STATE(1919)] = 93407, - [SMALL_STATE(1920)] = 93459, - [SMALL_STATE(1921)] = 93511, - [SMALL_STATE(1922)] = 93563, - [SMALL_STATE(1923)] = 93621, - [SMALL_STATE(1924)] = 93673, - [SMALL_STATE(1925)] = 93725, - [SMALL_STATE(1926)] = 93825, - [SMALL_STATE(1927)] = 93925, - [SMALL_STATE(1928)] = 94025, - [SMALL_STATE(1929)] = 94077, + [SMALL_STATE(1729)] = 82281, + [SMALL_STATE(1730)] = 82337, + [SMALL_STATE(1731)] = 82395, + [SMALL_STATE(1732)] = 82447, + [SMALL_STATE(1733)] = 82499, + [SMALL_STATE(1734)] = 82551, + [SMALL_STATE(1735)] = 82603, + [SMALL_STATE(1736)] = 82655, + [SMALL_STATE(1737)] = 82707, + [SMALL_STATE(1738)] = 82759, + [SMALL_STATE(1739)] = 82811, + [SMALL_STATE(1740)] = 82869, + [SMALL_STATE(1741)] = 82921, + [SMALL_STATE(1742)] = 82979, + [SMALL_STATE(1743)] = 83031, + [SMALL_STATE(1744)] = 83089, + [SMALL_STATE(1745)] = 83141, + [SMALL_STATE(1746)] = 83193, + [SMALL_STATE(1747)] = 83245, + [SMALL_STATE(1748)] = 83297, + [SMALL_STATE(1749)] = 83353, + [SMALL_STATE(1750)] = 83405, + [SMALL_STATE(1751)] = 83457, + [SMALL_STATE(1752)] = 83509, + [SMALL_STATE(1753)] = 83561, + [SMALL_STATE(1754)] = 83613, + [SMALL_STATE(1755)] = 83665, + [SMALL_STATE(1756)] = 83723, + [SMALL_STATE(1757)] = 83775, + [SMALL_STATE(1758)] = 83827, + [SMALL_STATE(1759)] = 83879, + [SMALL_STATE(1760)] = 83931, + [SMALL_STATE(1761)] = 83983, + [SMALL_STATE(1762)] = 84035, + [SMALL_STATE(1763)] = 84087, + [SMALL_STATE(1764)] = 84139, + [SMALL_STATE(1765)] = 84191, + [SMALL_STATE(1766)] = 84243, + [SMALL_STATE(1767)] = 84295, + [SMALL_STATE(1768)] = 84347, + [SMALL_STATE(1769)] = 84399, + [SMALL_STATE(1770)] = 84451, + [SMALL_STATE(1771)] = 84503, + [SMALL_STATE(1772)] = 84555, + [SMALL_STATE(1773)] = 84607, + [SMALL_STATE(1774)] = 84707, + [SMALL_STATE(1775)] = 84807, + [SMALL_STATE(1776)] = 84863, + [SMALL_STATE(1777)] = 84919, + [SMALL_STATE(1778)] = 84975, + [SMALL_STATE(1779)] = 85027, + [SMALL_STATE(1780)] = 85085, + [SMALL_STATE(1781)] = 85143, + [SMALL_STATE(1782)] = 85243, + [SMALL_STATE(1783)] = 85343, + [SMALL_STATE(1784)] = 85443, + [SMALL_STATE(1785)] = 85499, + [SMALL_STATE(1786)] = 85555, + [SMALL_STATE(1787)] = 85611, + [SMALL_STATE(1788)] = 85667, + [SMALL_STATE(1789)] = 85719, + [SMALL_STATE(1790)] = 85819, + [SMALL_STATE(1791)] = 85875, + [SMALL_STATE(1792)] = 85945, + [SMALL_STATE(1793)] = 86001, + [SMALL_STATE(1794)] = 86053, + [SMALL_STATE(1795)] = 86109, + [SMALL_STATE(1796)] = 86165, + [SMALL_STATE(1797)] = 86221, + [SMALL_STATE(1798)] = 86273, + [SMALL_STATE(1799)] = 86325, + [SMALL_STATE(1800)] = 86377, + [SMALL_STATE(1801)] = 86429, + [SMALL_STATE(1802)] = 86485, + [SMALL_STATE(1803)] = 86537, + [SMALL_STATE(1804)] = 86589, + [SMALL_STATE(1805)] = 86641, + [SMALL_STATE(1806)] = 86693, + [SMALL_STATE(1807)] = 86793, + [SMALL_STATE(1808)] = 86853, + [SMALL_STATE(1809)] = 86913, + [SMALL_STATE(1810)] = 86969, + [SMALL_STATE(1811)] = 87025, + [SMALL_STATE(1812)] = 87077, + [SMALL_STATE(1813)] = 87129, + [SMALL_STATE(1814)] = 87181, + [SMALL_STATE(1815)] = 87233, + [SMALL_STATE(1816)] = 87285, + [SMALL_STATE(1817)] = 87337, + [SMALL_STATE(1818)] = 87389, + [SMALL_STATE(1819)] = 87441, + [SMALL_STATE(1820)] = 87493, + [SMALL_STATE(1821)] = 87549, + [SMALL_STATE(1822)] = 87601, + [SMALL_STATE(1823)] = 87653, + [SMALL_STATE(1824)] = 87705, + [SMALL_STATE(1825)] = 87757, + [SMALL_STATE(1826)] = 87809, + [SMALL_STATE(1827)] = 87861, + [SMALL_STATE(1828)] = 87913, + [SMALL_STATE(1829)] = 87965, + [SMALL_STATE(1830)] = 88017, + [SMALL_STATE(1831)] = 88069, + [SMALL_STATE(1832)] = 88121, + [SMALL_STATE(1833)] = 88173, + [SMALL_STATE(1834)] = 88225, + [SMALL_STATE(1835)] = 88277, + [SMALL_STATE(1836)] = 88335, + [SMALL_STATE(1837)] = 88393, + [SMALL_STATE(1838)] = 88445, + [SMALL_STATE(1839)] = 88503, + [SMALL_STATE(1840)] = 88555, + [SMALL_STATE(1841)] = 88607, + [SMALL_STATE(1842)] = 88659, + [SMALL_STATE(1843)] = 88711, + [SMALL_STATE(1844)] = 88763, + [SMALL_STATE(1845)] = 88815, + [SMALL_STATE(1846)] = 88915, + [SMALL_STATE(1847)] = 89015, + [SMALL_STATE(1848)] = 89073, + [SMALL_STATE(1849)] = 89131, + [SMALL_STATE(1850)] = 89189, + [SMALL_STATE(1851)] = 89289, + [SMALL_STATE(1852)] = 89345, + [SMALL_STATE(1853)] = 89445, + [SMALL_STATE(1854)] = 89501, + [SMALL_STATE(1855)] = 89559, + [SMALL_STATE(1856)] = 89617, + [SMALL_STATE(1857)] = 89717, + [SMALL_STATE(1858)] = 89775, + [SMALL_STATE(1859)] = 89833, + [SMALL_STATE(1860)] = 89891, + [SMALL_STATE(1861)] = 89949, + [SMALL_STATE(1862)] = 90007, + [SMALL_STATE(1863)] = 90065, + [SMALL_STATE(1864)] = 90165, + [SMALL_STATE(1865)] = 90223, + [SMALL_STATE(1866)] = 90281, + [SMALL_STATE(1867)] = 90339, + [SMALL_STATE(1868)] = 90439, + [SMALL_STATE(1869)] = 90539, + [SMALL_STATE(1870)] = 90595, + [SMALL_STATE(1871)] = 90695, + [SMALL_STATE(1872)] = 90747, + [SMALL_STATE(1873)] = 90847, + [SMALL_STATE(1874)] = 90947, + [SMALL_STATE(1875)] = 91003, + [SMALL_STATE(1876)] = 91061, + [SMALL_STATE(1877)] = 91113, + [SMALL_STATE(1878)] = 91169, + [SMALL_STATE(1879)] = 91221, + [SMALL_STATE(1880)] = 91273, + [SMALL_STATE(1881)] = 91325, + [SMALL_STATE(1882)] = 91377, + [SMALL_STATE(1883)] = 91429, + [SMALL_STATE(1884)] = 91481, + [SMALL_STATE(1885)] = 91533, + [SMALL_STATE(1886)] = 91585, + [SMALL_STATE(1887)] = 91637, + [SMALL_STATE(1888)] = 91689, + [SMALL_STATE(1889)] = 91741, + [SMALL_STATE(1890)] = 91793, + [SMALL_STATE(1891)] = 91893, + [SMALL_STATE(1892)] = 91983, + [SMALL_STATE(1893)] = 92039, + [SMALL_STATE(1894)] = 92095, + [SMALL_STATE(1895)] = 92147, + [SMALL_STATE(1896)] = 92203, + [SMALL_STATE(1897)] = 92271, + [SMALL_STATE(1898)] = 92323, + [SMALL_STATE(1899)] = 92375, + [SMALL_STATE(1900)] = 92427, + [SMALL_STATE(1901)] = 92479, + [SMALL_STATE(1902)] = 92531, + [SMALL_STATE(1903)] = 92587, + [SMALL_STATE(1904)] = 92639, + [SMALL_STATE(1905)] = 92691, + [SMALL_STATE(1906)] = 92743, + [SMALL_STATE(1907)] = 92795, + [SMALL_STATE(1908)] = 92847, + [SMALL_STATE(1909)] = 92899, + [SMALL_STATE(1910)] = 92951, + [SMALL_STATE(1911)] = 93003, + [SMALL_STATE(1912)] = 93059, + [SMALL_STATE(1913)] = 93111, + [SMALL_STATE(1914)] = 93211, + [SMALL_STATE(1915)] = 93269, + [SMALL_STATE(1916)] = 93327, + [SMALL_STATE(1917)] = 93391, + [SMALL_STATE(1918)] = 93449, + [SMALL_STATE(1919)] = 93505, + [SMALL_STATE(1920)] = 93563, + [SMALL_STATE(1921)] = 93621, + [SMALL_STATE(1922)] = 93679, + [SMALL_STATE(1923)] = 93737, + [SMALL_STATE(1924)] = 93795, + [SMALL_STATE(1925)] = 93851, + [SMALL_STATE(1926)] = 93907, + [SMALL_STATE(1927)] = 93965, + [SMALL_STATE(1928)] = 94023, + [SMALL_STATE(1929)] = 94081, [SMALL_STATE(1930)] = 94133, [SMALL_STATE(1931)] = 94194, - [SMALL_STATE(1932)] = 94255, + [SMALL_STATE(1932)] = 94291, [SMALL_STATE(1933)] = 94352, [SMALL_STATE(1934)] = 94449, [SMALL_STATE(1935)] = 94546, [SMALL_STATE(1936)] = 94643, [SMALL_STATE(1937)] = 94740, [SMALL_STATE(1938)] = 94837, - [SMALL_STATE(1939)] = 94934, - [SMALL_STATE(1940)] = 94995, - [SMALL_STATE(1941)] = 95092, - [SMALL_STATE(1942)] = 95189, - [SMALL_STATE(1943)] = 95286, - [SMALL_STATE(1944)] = 95383, - [SMALL_STATE(1945)] = 95480, - [SMALL_STATE(1946)] = 95531, - [SMALL_STATE(1947)] = 95582, - [SMALL_STATE(1948)] = 95633, - [SMALL_STATE(1949)] = 95730, - [SMALL_STATE(1950)] = 95827, - [SMALL_STATE(1951)] = 95924, - [SMALL_STATE(1952)] = 95975, - [SMALL_STATE(1953)] = 96026, - [SMALL_STATE(1954)] = 96077, - [SMALL_STATE(1955)] = 96128, - [SMALL_STATE(1956)] = 96179, - [SMALL_STATE(1957)] = 96230, - [SMALL_STATE(1958)] = 96281, - [SMALL_STATE(1959)] = 96332, - [SMALL_STATE(1960)] = 96383, - [SMALL_STATE(1961)] = 96434, - [SMALL_STATE(1962)] = 96485, - [SMALL_STATE(1963)] = 96536, - [SMALL_STATE(1964)] = 96633, - [SMALL_STATE(1965)] = 96688, - [SMALL_STATE(1966)] = 96739, - [SMALL_STATE(1967)] = 96794, - [SMALL_STATE(1968)] = 96891, - [SMALL_STATE(1969)] = 96948, - [SMALL_STATE(1970)] = 97045, - [SMALL_STATE(1971)] = 97142, - [SMALL_STATE(1972)] = 97193, - [SMALL_STATE(1973)] = 97250, - [SMALL_STATE(1974)] = 97301, - [SMALL_STATE(1975)] = 97356, - [SMALL_STATE(1976)] = 97453, - [SMALL_STATE(1977)] = 97550, - [SMALL_STATE(1978)] = 97601, - [SMALL_STATE(1979)] = 97698, - [SMALL_STATE(1980)] = 97749, - [SMALL_STATE(1981)] = 97846, - [SMALL_STATE(1982)] = 97943, - [SMALL_STATE(1983)] = 98040, - [SMALL_STATE(1984)] = 98137, - [SMALL_STATE(1985)] = 98234, - [SMALL_STATE(1986)] = 98331, - [SMALL_STATE(1987)] = 98382, - [SMALL_STATE(1988)] = 98479, - [SMALL_STATE(1989)] = 98576, - [SMALL_STATE(1990)] = 98673, - [SMALL_STATE(1991)] = 98770, - [SMALL_STATE(1992)] = 98867, - [SMALL_STATE(1993)] = 98918, - [SMALL_STATE(1994)] = 98969, - [SMALL_STATE(1995)] = 99020, - [SMALL_STATE(1996)] = 99071, - [SMALL_STATE(1997)] = 99122, - [SMALL_STATE(1998)] = 99173, - [SMALL_STATE(1999)] = 99270, - [SMALL_STATE(2000)] = 99367, - [SMALL_STATE(2001)] = 99464, - [SMALL_STATE(2002)] = 99561, - [SMALL_STATE(2003)] = 99612, - [SMALL_STATE(2004)] = 99709, - [SMALL_STATE(2005)] = 99760, - [SMALL_STATE(2006)] = 99811, - [SMALL_STATE(2007)] = 99862, - [SMALL_STATE(2008)] = 99959, - [SMALL_STATE(2009)] = 100056, - [SMALL_STATE(2010)] = 100153, - [SMALL_STATE(2011)] = 100250, - [SMALL_STATE(2012)] = 100347, - [SMALL_STATE(2013)] = 100398, - [SMALL_STATE(2014)] = 100495, - [SMALL_STATE(2015)] = 100592, - [SMALL_STATE(2016)] = 100643, - [SMALL_STATE(2017)] = 100740, - [SMALL_STATE(2018)] = 100799, - [SMALL_STATE(2019)] = 100896, - [SMALL_STATE(2020)] = 100955, - [SMALL_STATE(2021)] = 101006, - [SMALL_STATE(2022)] = 101103, - [SMALL_STATE(2023)] = 101200, - [SMALL_STATE(2024)] = 101297, - [SMALL_STATE(2025)] = 101352, - [SMALL_STATE(2026)] = 101403, - [SMALL_STATE(2027)] = 101458, - [SMALL_STATE(2028)] = 101555, - [SMALL_STATE(2029)] = 101652, - [SMALL_STATE(2030)] = 101749, - [SMALL_STATE(2031)] = 101846, - [SMALL_STATE(2032)] = 101943, - [SMALL_STATE(2033)] = 101994, - [SMALL_STATE(2034)] = 102049, - [SMALL_STATE(2035)] = 102146, - [SMALL_STATE(2036)] = 102243, - [SMALL_STATE(2037)] = 102340, - [SMALL_STATE(2038)] = 102391, - [SMALL_STATE(2039)] = 102488, - [SMALL_STATE(2040)] = 102585, - [SMALL_STATE(2041)] = 102682, - [SMALL_STATE(2042)] = 102779, - [SMALL_STATE(2043)] = 102876, - [SMALL_STATE(2044)] = 102973, - [SMALL_STATE(2045)] = 103070, - [SMALL_STATE(2046)] = 103167, - [SMALL_STATE(2047)] = 103218, - [SMALL_STATE(2048)] = 103315, - [SMALL_STATE(2049)] = 103412, - [SMALL_STATE(2050)] = 103509, - [SMALL_STATE(2051)] = 103606, - [SMALL_STATE(2052)] = 103703, - [SMALL_STATE(2053)] = 103800, - [SMALL_STATE(2054)] = 103897, - [SMALL_STATE(2055)] = 103994, - [SMALL_STATE(2056)] = 104053, - [SMALL_STATE(2057)] = 104150, - [SMALL_STATE(2058)] = 104201, - [SMALL_STATE(2059)] = 104252, - [SMALL_STATE(2060)] = 104349, - [SMALL_STATE(2061)] = 104410, - [SMALL_STATE(2062)] = 104509, - [SMALL_STATE(2063)] = 104606, - [SMALL_STATE(2064)] = 104703, - [SMALL_STATE(2065)] = 104800, - [SMALL_STATE(2066)] = 104851, - [SMALL_STATE(2067)] = 104948, - [SMALL_STATE(2068)] = 105005, - [SMALL_STATE(2069)] = 105062, - [SMALL_STATE(2070)] = 105159, - [SMALL_STATE(2071)] = 105220, - [SMALL_STATE(2072)] = 105271, - [SMALL_STATE(2073)] = 105368, - [SMALL_STATE(2074)] = 105419, - [SMALL_STATE(2075)] = 105476, - [SMALL_STATE(2076)] = 105527, - [SMALL_STATE(2077)] = 105588, - [SMALL_STATE(2078)] = 105639, - [SMALL_STATE(2079)] = 105700, - [SMALL_STATE(2080)] = 105761, - [SMALL_STATE(2081)] = 105812, - [SMALL_STATE(2082)] = 105863, - [SMALL_STATE(2083)] = 105924, - [SMALL_STATE(2084)] = 105985, - [SMALL_STATE(2085)] = 106046, - [SMALL_STATE(2086)] = 106107, - [SMALL_STATE(2087)] = 106158, - [SMALL_STATE(2088)] = 106255, - [SMALL_STATE(2089)] = 106316, - [SMALL_STATE(2090)] = 106413, - [SMALL_STATE(2091)] = 106512, - [SMALL_STATE(2092)] = 106563, - [SMALL_STATE(2093)] = 106660, - [SMALL_STATE(2094)] = 106711, - [SMALL_STATE(2095)] = 106762, - [SMALL_STATE(2096)] = 106813, - [SMALL_STATE(2097)] = 106874, - [SMALL_STATE(2098)] = 106935, - [SMALL_STATE(2099)] = 106996, - [SMALL_STATE(2100)] = 107057, - [SMALL_STATE(2101)] = 107108, - [SMALL_STATE(2102)] = 107169, - [SMALL_STATE(2103)] = 107230, - [SMALL_STATE(2104)] = 107281, - [SMALL_STATE(2105)] = 107342, - [SMALL_STATE(2106)] = 107393, - [SMALL_STATE(2107)] = 107444, - [SMALL_STATE(2108)] = 107495, - [SMALL_STATE(2109)] = 107546, - [SMALL_STATE(2110)] = 107597, - [SMALL_STATE(2111)] = 107658, - [SMALL_STATE(2112)] = 107709, - [SMALL_STATE(2113)] = 107770, - [SMALL_STATE(2114)] = 107831, - [SMALL_STATE(2115)] = 107882, - [SMALL_STATE(2116)] = 107943, - [SMALL_STATE(2117)] = 107994, - [SMALL_STATE(2118)] = 108045, - [SMALL_STATE(2119)] = 108100, - [SMALL_STATE(2120)] = 108197, - [SMALL_STATE(2121)] = 108258, - [SMALL_STATE(2122)] = 108309, - [SMALL_STATE(2123)] = 108364, - [SMALL_STATE(2124)] = 108421, - [SMALL_STATE(2125)] = 108476, - [SMALL_STATE(2126)] = 108531, - [SMALL_STATE(2127)] = 108586, - [SMALL_STATE(2128)] = 108641, - [SMALL_STATE(2129)] = 108702, - [SMALL_STATE(2130)] = 108799, - [SMALL_STATE(2131)] = 108896, - [SMALL_STATE(2132)] = 108993, - [SMALL_STATE(2133)] = 109090, - [SMALL_STATE(2134)] = 109151, - [SMALL_STATE(2135)] = 109248, - [SMALL_STATE(2136)] = 109305, - [SMALL_STATE(2137)] = 109366, - [SMALL_STATE(2138)] = 109463, - [SMALL_STATE(2139)] = 109520, - [SMALL_STATE(2140)] = 109617, - [SMALL_STATE(2141)] = 109678, - [SMALL_STATE(2142)] = 109739, - [SMALL_STATE(2143)] = 109800, - [SMALL_STATE(2144)] = 109861, - [SMALL_STATE(2145)] = 109922, - [SMALL_STATE(2146)] = 110019, - [SMALL_STATE(2147)] = 110080, - [SMALL_STATE(2148)] = 110135, - [SMALL_STATE(2149)] = 110196, - [SMALL_STATE(2150)] = 110257, - [SMALL_STATE(2151)] = 110318, - [SMALL_STATE(2152)] = 110379, - [SMALL_STATE(2153)] = 110436, - [SMALL_STATE(2154)] = 110497, - [SMALL_STATE(2155)] = 110552, - [SMALL_STATE(2156)] = 110607, - [SMALL_STATE(2157)] = 110666, - [SMALL_STATE(2158)] = 110727, - [SMALL_STATE(2159)] = 110778, - [SMALL_STATE(2160)] = 110839, - [SMALL_STATE(2161)] = 110890, - [SMALL_STATE(2162)] = 110945, - [SMALL_STATE(2163)] = 110996, - [SMALL_STATE(2164)] = 111057, - [SMALL_STATE(2165)] = 111118, - [SMALL_STATE(2166)] = 111179, - [SMALL_STATE(2167)] = 111278, - [SMALL_STATE(2168)] = 111339, - [SMALL_STATE(2169)] = 111400, - [SMALL_STATE(2170)] = 111461, - [SMALL_STATE(2171)] = 111522, - [SMALL_STATE(2172)] = 111583, - [SMALL_STATE(2173)] = 111644, - [SMALL_STATE(2174)] = 111695, - [SMALL_STATE(2175)] = 111792, - [SMALL_STATE(2176)] = 111853, - [SMALL_STATE(2177)] = 111914, - [SMALL_STATE(2178)] = 111975, - [SMALL_STATE(2179)] = 112036, - [SMALL_STATE(2180)] = 112097, - [SMALL_STATE(2181)] = 112158, - [SMALL_STATE(2182)] = 112219, - [SMALL_STATE(2183)] = 112270, - [SMALL_STATE(2184)] = 112331, - [SMALL_STATE(2185)] = 112428, - [SMALL_STATE(2186)] = 112489, - [SMALL_STATE(2187)] = 112550, - [SMALL_STATE(2188)] = 112611, - [SMALL_STATE(2189)] = 112708, - [SMALL_STATE(2190)] = 112769, - [SMALL_STATE(2191)] = 112824, - [SMALL_STATE(2192)] = 112885, - [SMALL_STATE(2193)] = 112982, - [SMALL_STATE(2194)] = 113043, - [SMALL_STATE(2195)] = 113104, - [SMALL_STATE(2196)] = 113165, - [SMALL_STATE(2197)] = 113226, - [SMALL_STATE(2198)] = 113323, - [SMALL_STATE(2199)] = 113420, - [SMALL_STATE(2200)] = 113475, - [SMALL_STATE(2201)] = 113536, - [SMALL_STATE(2202)] = 113587, - [SMALL_STATE(2203)] = 113684, - [SMALL_STATE(2204)] = 113739, - [SMALL_STATE(2205)] = 113794, - [SMALL_STATE(2206)] = 113891, + [SMALL_STATE(1939)] = 94888, + [SMALL_STATE(1940)] = 94985, + [SMALL_STATE(1941)] = 95082, + [SMALL_STATE(1942)] = 95179, + [SMALL_STATE(1943)] = 95230, + [SMALL_STATE(1944)] = 95281, + [SMALL_STATE(1945)] = 95332, + [SMALL_STATE(1946)] = 95387, + [SMALL_STATE(1947)] = 95438, + [SMALL_STATE(1948)] = 95489, + [SMALL_STATE(1949)] = 95540, + [SMALL_STATE(1950)] = 95591, + [SMALL_STATE(1951)] = 95688, + [SMALL_STATE(1952)] = 95739, + [SMALL_STATE(1953)] = 95790, + [SMALL_STATE(1954)] = 95841, + [SMALL_STATE(1955)] = 95938, + [SMALL_STATE(1956)] = 96035, + [SMALL_STATE(1957)] = 96086, + [SMALL_STATE(1958)] = 96137, + [SMALL_STATE(1959)] = 96188, + [SMALL_STATE(1960)] = 96285, + [SMALL_STATE(1961)] = 96336, + [SMALL_STATE(1962)] = 96433, + [SMALL_STATE(1963)] = 96530, + [SMALL_STATE(1964)] = 96581, + [SMALL_STATE(1965)] = 96678, + [SMALL_STATE(1966)] = 96775, + [SMALL_STATE(1967)] = 96872, + [SMALL_STATE(1968)] = 96969, + [SMALL_STATE(1969)] = 97066, + [SMALL_STATE(1970)] = 97163, + [SMALL_STATE(1971)] = 97260, + [SMALL_STATE(1972)] = 97357, + [SMALL_STATE(1973)] = 97408, + [SMALL_STATE(1974)] = 97463, + [SMALL_STATE(1975)] = 97514, + [SMALL_STATE(1976)] = 97565, + [SMALL_STATE(1977)] = 97616, + [SMALL_STATE(1978)] = 97667, + [SMALL_STATE(1979)] = 97764, + [SMALL_STATE(1980)] = 97815, + [SMALL_STATE(1981)] = 97866, + [SMALL_STATE(1982)] = 97917, + [SMALL_STATE(1983)] = 97968, + [SMALL_STATE(1984)] = 98019, + [SMALL_STATE(1985)] = 98070, + [SMALL_STATE(1986)] = 98121, + [SMALL_STATE(1987)] = 98172, + [SMALL_STATE(1988)] = 98223, + [SMALL_STATE(1989)] = 98320, + [SMALL_STATE(1990)] = 98371, + [SMALL_STATE(1991)] = 98468, + [SMALL_STATE(1992)] = 98523, + [SMALL_STATE(1993)] = 98574, + [SMALL_STATE(1994)] = 98625, + [SMALL_STATE(1995)] = 98676, + [SMALL_STATE(1996)] = 98727, + [SMALL_STATE(1997)] = 98778, + [SMALL_STATE(1998)] = 98829, + [SMALL_STATE(1999)] = 98884, + [SMALL_STATE(2000)] = 98935, + [SMALL_STATE(2001)] = 98986, + [SMALL_STATE(2002)] = 99037, + [SMALL_STATE(2003)] = 99088, + [SMALL_STATE(2004)] = 99139, + [SMALL_STATE(2005)] = 99190, + [SMALL_STATE(2006)] = 99241, + [SMALL_STATE(2007)] = 99296, + [SMALL_STATE(2008)] = 99351, + [SMALL_STATE(2009)] = 99406, + [SMALL_STATE(2010)] = 99503, + [SMALL_STATE(2011)] = 99600, + [SMALL_STATE(2012)] = 99697, + [SMALL_STATE(2013)] = 99758, + [SMALL_STATE(2014)] = 99813, + [SMALL_STATE(2015)] = 99868, + [SMALL_STATE(2016)] = 99919, + [SMALL_STATE(2017)] = 100016, + [SMALL_STATE(2018)] = 100113, + [SMALL_STATE(2019)] = 100210, + [SMALL_STATE(2020)] = 100307, + [SMALL_STATE(2021)] = 100404, + [SMALL_STATE(2022)] = 100501, + [SMALL_STATE(2023)] = 100598, + [SMALL_STATE(2024)] = 100695, + [SMALL_STATE(2025)] = 100792, + [SMALL_STATE(2026)] = 100889, + [SMALL_STATE(2027)] = 100986, + [SMALL_STATE(2028)] = 101083, + [SMALL_STATE(2029)] = 101180, + [SMALL_STATE(2030)] = 101277, + [SMALL_STATE(2031)] = 101374, + [SMALL_STATE(2032)] = 101471, + [SMALL_STATE(2033)] = 101528, + [SMALL_STATE(2034)] = 101585, + [SMALL_STATE(2035)] = 101636, + [SMALL_STATE(2036)] = 101687, + [SMALL_STATE(2037)] = 101744, + [SMALL_STATE(2038)] = 101795, + [SMALL_STATE(2039)] = 101892, + [SMALL_STATE(2040)] = 101989, + [SMALL_STATE(2041)] = 102050, + [SMALL_STATE(2042)] = 102101, + [SMALL_STATE(2043)] = 102152, + [SMALL_STATE(2044)] = 102213, + [SMALL_STATE(2045)] = 102270, + [SMALL_STATE(2046)] = 102331, + [SMALL_STATE(2047)] = 102382, + [SMALL_STATE(2048)] = 102443, + [SMALL_STATE(2049)] = 102504, + [SMALL_STATE(2050)] = 102565, + [SMALL_STATE(2051)] = 102626, + [SMALL_STATE(2052)] = 102687, + [SMALL_STATE(2053)] = 102748, + [SMALL_STATE(2054)] = 102809, + [SMALL_STATE(2055)] = 102870, + [SMALL_STATE(2056)] = 102931, + [SMALL_STATE(2057)] = 102992, + [SMALL_STATE(2058)] = 103053, + [SMALL_STATE(2059)] = 103104, + [SMALL_STATE(2060)] = 103165, + [SMALL_STATE(2061)] = 103226, + [SMALL_STATE(2062)] = 103287, + [SMALL_STATE(2063)] = 103348, + [SMALL_STATE(2064)] = 103409, + [SMALL_STATE(2065)] = 103470, + [SMALL_STATE(2066)] = 103531, + [SMALL_STATE(2067)] = 103592, + [SMALL_STATE(2068)] = 103653, + [SMALL_STATE(2069)] = 103714, + [SMALL_STATE(2070)] = 103775, + [SMALL_STATE(2071)] = 103836, + [SMALL_STATE(2072)] = 103897, + [SMALL_STATE(2073)] = 103958, + [SMALL_STATE(2074)] = 104019, + [SMALL_STATE(2075)] = 104080, + [SMALL_STATE(2076)] = 104141, + [SMALL_STATE(2077)] = 104202, + [SMALL_STATE(2078)] = 104263, + [SMALL_STATE(2079)] = 104324, + [SMALL_STATE(2080)] = 104385, + [SMALL_STATE(2081)] = 104446, + [SMALL_STATE(2082)] = 104507, + [SMALL_STATE(2083)] = 104568, + [SMALL_STATE(2084)] = 104629, + [SMALL_STATE(2085)] = 104690, + [SMALL_STATE(2086)] = 104751, + [SMALL_STATE(2087)] = 104812, + [SMALL_STATE(2088)] = 104873, + [SMALL_STATE(2089)] = 104934, + [SMALL_STATE(2090)] = 104995, + [SMALL_STATE(2091)] = 105056, + [SMALL_STATE(2092)] = 105117, + [SMALL_STATE(2093)] = 105178, + [SMALL_STATE(2094)] = 105239, + [SMALL_STATE(2095)] = 105300, + [SMALL_STATE(2096)] = 105361, + [SMALL_STATE(2097)] = 105422, + [SMALL_STATE(2098)] = 105483, + [SMALL_STATE(2099)] = 105544, + [SMALL_STATE(2100)] = 105605, + [SMALL_STATE(2101)] = 105666, + [SMALL_STATE(2102)] = 105727, + [SMALL_STATE(2103)] = 105788, + [SMALL_STATE(2104)] = 105849, + [SMALL_STATE(2105)] = 105910, + [SMALL_STATE(2106)] = 105971, + [SMALL_STATE(2107)] = 106032, + [SMALL_STATE(2108)] = 106093, + [SMALL_STATE(2109)] = 106154, + [SMALL_STATE(2110)] = 106215, + [SMALL_STATE(2111)] = 106276, + [SMALL_STATE(2112)] = 106337, + [SMALL_STATE(2113)] = 106398, + [SMALL_STATE(2114)] = 106459, + [SMALL_STATE(2115)] = 106520, + [SMALL_STATE(2116)] = 106581, + [SMALL_STATE(2117)] = 106642, + [SMALL_STATE(2118)] = 106703, + [SMALL_STATE(2119)] = 106764, + [SMALL_STATE(2120)] = 106825, + [SMALL_STATE(2121)] = 106886, + [SMALL_STATE(2122)] = 106947, + [SMALL_STATE(2123)] = 107008, + [SMALL_STATE(2124)] = 107065, + [SMALL_STATE(2125)] = 107116, + [SMALL_STATE(2126)] = 107215, + [SMALL_STATE(2127)] = 107312, + [SMALL_STATE(2128)] = 107409, + [SMALL_STATE(2129)] = 107466, + [SMALL_STATE(2130)] = 107523, + [SMALL_STATE(2131)] = 107620, + [SMALL_STATE(2132)] = 107717, + [SMALL_STATE(2133)] = 107814, + [SMALL_STATE(2134)] = 107911, + [SMALL_STATE(2135)] = 108008, + [SMALL_STATE(2136)] = 108107, + [SMALL_STATE(2137)] = 108204, + [SMALL_STATE(2138)] = 108301, + [SMALL_STATE(2139)] = 108398, + [SMALL_STATE(2140)] = 108495, + [SMALL_STATE(2141)] = 108592, + [SMALL_STATE(2142)] = 108689, + [SMALL_STATE(2143)] = 108786, + [SMALL_STATE(2144)] = 108885, + [SMALL_STATE(2145)] = 108982, + [SMALL_STATE(2146)] = 109079, + [SMALL_STATE(2147)] = 109176, + [SMALL_STATE(2148)] = 109227, + [SMALL_STATE(2149)] = 109324, + [SMALL_STATE(2150)] = 109423, + [SMALL_STATE(2151)] = 109520, + [SMALL_STATE(2152)] = 109617, + [SMALL_STATE(2153)] = 109714, + [SMALL_STATE(2154)] = 109811, + [SMALL_STATE(2155)] = 109910, + [SMALL_STATE(2156)] = 110007, + [SMALL_STATE(2157)] = 110104, + [SMALL_STATE(2158)] = 110201, + [SMALL_STATE(2159)] = 110256, + [SMALL_STATE(2160)] = 110311, + [SMALL_STATE(2161)] = 110362, + [SMALL_STATE(2162)] = 110413, + [SMALL_STATE(2163)] = 110510, + [SMALL_STATE(2164)] = 110607, + [SMALL_STATE(2165)] = 110658, + [SMALL_STATE(2166)] = 110755, + [SMALL_STATE(2167)] = 110852, + [SMALL_STATE(2168)] = 110949, + [SMALL_STATE(2169)] = 111046, + [SMALL_STATE(2170)] = 111143, + [SMALL_STATE(2171)] = 111240, + [SMALL_STATE(2172)] = 111295, + [SMALL_STATE(2173)] = 111354, + [SMALL_STATE(2174)] = 111451, + [SMALL_STATE(2175)] = 111548, + [SMALL_STATE(2176)] = 111607, + [SMALL_STATE(2177)] = 111704, + [SMALL_STATE(2178)] = 111801, + [SMALL_STATE(2179)] = 111898, + [SMALL_STATE(2180)] = 111995, + [SMALL_STATE(2181)] = 112092, + [SMALL_STATE(2182)] = 112189, + [SMALL_STATE(2183)] = 112286, + [SMALL_STATE(2184)] = 112383, + [SMALL_STATE(2185)] = 112480, + [SMALL_STATE(2186)] = 112577, + [SMALL_STATE(2187)] = 112674, + [SMALL_STATE(2188)] = 112771, + [SMALL_STATE(2189)] = 112868, + [SMALL_STATE(2190)] = 112965, + [SMALL_STATE(2191)] = 113016, + [SMALL_STATE(2192)] = 113113, + [SMALL_STATE(2193)] = 113164, + [SMALL_STATE(2194)] = 113215, + [SMALL_STATE(2195)] = 113266, + [SMALL_STATE(2196)] = 113317, + [SMALL_STATE(2197)] = 113368, + [SMALL_STATE(2198)] = 113419, + [SMALL_STATE(2199)] = 113470, + [SMALL_STATE(2200)] = 113525, + [SMALL_STATE(2201)] = 113580, + [SMALL_STATE(2202)] = 113631, + [SMALL_STATE(2203)] = 113728, + [SMALL_STATE(2204)] = 113787, + [SMALL_STATE(2205)] = 113846, + [SMALL_STATE(2206)] = 113901, [SMALL_STATE(2207)] = 113952, - [SMALL_STATE(2208)] = 114013, - [SMALL_STATE(2209)] = 114110, - [SMALL_STATE(2210)] = 114207, - [SMALL_STATE(2211)] = 114258, - [SMALL_STATE(2212)] = 114313, - [SMALL_STATE(2213)] = 114374, - [SMALL_STATE(2214)] = 114471, - [SMALL_STATE(2215)] = 114522, - [SMALL_STATE(2216)] = 114573, - [SMALL_STATE(2217)] = 114624, - [SMALL_STATE(2218)] = 114685, - [SMALL_STATE(2219)] = 114736, - [SMALL_STATE(2220)] = 114797, - [SMALL_STATE(2221)] = 114858, - [SMALL_STATE(2222)] = 114919, - [SMALL_STATE(2223)] = 114970, - [SMALL_STATE(2224)] = 115031, - [SMALL_STATE(2225)] = 115082, - [SMALL_STATE(2226)] = 115179, - [SMALL_STATE(2227)] = 115276, - [SMALL_STATE(2228)] = 115327, - [SMALL_STATE(2229)] = 115388, - [SMALL_STATE(2230)] = 115485, - [SMALL_STATE(2231)] = 115582, - [SMALL_STATE(2232)] = 115679, - [SMALL_STATE(2233)] = 115776, - [SMALL_STATE(2234)] = 115873, - [SMALL_STATE(2235)] = 115970, - [SMALL_STATE(2236)] = 116067, - [SMALL_STATE(2237)] = 116128, - [SMALL_STATE(2238)] = 116179, - [SMALL_STATE(2239)] = 116276, - [SMALL_STATE(2240)] = 116373, - [SMALL_STATE(2241)] = 116470, - [SMALL_STATE(2242)] = 116569, - [SMALL_STATE(2243)] = 116666, - [SMALL_STATE(2244)] = 116763, - [SMALL_STATE(2245)] = 116862, - [SMALL_STATE(2246)] = 116959, - [SMALL_STATE(2247)] = 117056, - [SMALL_STATE(2248)] = 117107, - [SMALL_STATE(2249)] = 117204, - [SMALL_STATE(2250)] = 117301, - [SMALL_STATE(2251)] = 117398, - [SMALL_STATE(2252)] = 117497, - [SMALL_STATE(2253)] = 117594, - [SMALL_STATE(2254)] = 117645, - [SMALL_STATE(2255)] = 117700, - [SMALL_STATE(2256)] = 117761, - [SMALL_STATE(2257)] = 117858, - [SMALL_STATE(2258)] = 117909, - [SMALL_STATE(2259)] = 118006, - [SMALL_STATE(2260)] = 118067, - [SMALL_STATE(2261)] = 118118, - [SMALL_STATE(2262)] = 118215, - [SMALL_STATE(2263)] = 118276, - [SMALL_STATE(2264)] = 118327, - [SMALL_STATE(2265)] = 118388, - [SMALL_STATE(2266)] = 118449, - [SMALL_STATE(2267)] = 118546, + [SMALL_STATE(2208)] = 114007, + [SMALL_STATE(2209)] = 114058, + [SMALL_STATE(2210)] = 114109, + [SMALL_STATE(2211)] = 114206, + [SMALL_STATE(2212)] = 114303, + [SMALL_STATE(2213)] = 114400, + [SMALL_STATE(2214)] = 114497, + [SMALL_STATE(2215)] = 114548, + [SMALL_STATE(2216)] = 114647, + [SMALL_STATE(2217)] = 114698, + [SMALL_STATE(2218)] = 114795, + [SMALL_STATE(2219)] = 114892, + [SMALL_STATE(2220)] = 114989, + [SMALL_STATE(2221)] = 115086, + [SMALL_STATE(2222)] = 115183, + [SMALL_STATE(2223)] = 115280, + [SMALL_STATE(2224)] = 115377, + [SMALL_STATE(2225)] = 115474, + [SMALL_STATE(2226)] = 115571, + [SMALL_STATE(2227)] = 115668, + [SMALL_STATE(2228)] = 115765, + [SMALL_STATE(2229)] = 115862, + [SMALL_STATE(2230)] = 115917, + [SMALL_STATE(2231)] = 116014, + [SMALL_STATE(2232)] = 116071, + [SMALL_STATE(2233)] = 116168, + [SMALL_STATE(2234)] = 116219, + [SMALL_STATE(2235)] = 116274, + [SMALL_STATE(2236)] = 116371, + [SMALL_STATE(2237)] = 116428, + [SMALL_STATE(2238)] = 116525, + [SMALL_STATE(2239)] = 116576, + [SMALL_STATE(2240)] = 116631, + [SMALL_STATE(2241)] = 116728, + [SMALL_STATE(2242)] = 116783, + [SMALL_STATE(2243)] = 116880, + [SMALL_STATE(2244)] = 116977, + [SMALL_STATE(2245)] = 117074, + [SMALL_STATE(2246)] = 117135, + [SMALL_STATE(2247)] = 117196, + [SMALL_STATE(2248)] = 117247, + [SMALL_STATE(2249)] = 117298, + [SMALL_STATE(2250)] = 117349, + [SMALL_STATE(2251)] = 117404, + [SMALL_STATE(2252)] = 117455, + [SMALL_STATE(2253)] = 117506, + [SMALL_STATE(2254)] = 117557, + [SMALL_STATE(2255)] = 117608, + [SMALL_STATE(2256)] = 117705, + [SMALL_STATE(2257)] = 117802, + [SMALL_STATE(2258)] = 117853, + [SMALL_STATE(2259)] = 117950, + [SMALL_STATE(2260)] = 118047, + [SMALL_STATE(2261)] = 118144, + [SMALL_STATE(2262)] = 118241, + [SMALL_STATE(2263)] = 118338, + [SMALL_STATE(2264)] = 118435, + [SMALL_STATE(2265)] = 118486, + [SMALL_STATE(2266)] = 118537, + [SMALL_STATE(2267)] = 118592, [SMALL_STATE(2268)] = 118643, [SMALL_STATE(2269)] = 118693, [SMALL_STATE(2270)] = 118743, - [SMALL_STATE(2271)] = 118797, - [SMALL_STATE(2272)] = 118851, - [SMALL_STATE(2273)] = 118909, - [SMALL_STATE(2274)] = 118967, - [SMALL_STATE(2275)] = 119017, - [SMALL_STATE(2276)] = 119067, - [SMALL_STATE(2277)] = 119117, - [SMALL_STATE(2278)] = 119167, - [SMALL_STATE(2279)] = 119221, - [SMALL_STATE(2280)] = 119277, - [SMALL_STATE(2281)] = 119327, - [SMALL_STATE(2282)] = 119381, - [SMALL_STATE(2283)] = 119437, - [SMALL_STATE(2284)] = 119493, - [SMALL_STATE(2285)] = 119547, - [SMALL_STATE(2286)] = 119603, - [SMALL_STATE(2287)] = 119657, - [SMALL_STATE(2288)] = 119707, - [SMALL_STATE(2289)] = 119763, - [SMALL_STATE(2290)] = 119813, - [SMALL_STATE(2291)] = 119869, - [SMALL_STATE(2292)] = 119925, - [SMALL_STATE(2293)] = 119975, - [SMALL_STATE(2294)] = 120031, - [SMALL_STATE(2295)] = 120081, - [SMALL_STATE(2296)] = 120131, - [SMALL_STATE(2297)] = 120185, - [SMALL_STATE(2298)] = 120241, - [SMALL_STATE(2299)] = 120295, - [SMALL_STATE(2300)] = 120345, - [SMALL_STATE(2301)] = 120399, - [SMALL_STATE(2302)] = 120449, - [SMALL_STATE(2303)] = 120505, - [SMALL_STATE(2304)] = 120559, - [SMALL_STATE(2305)] = 120609, - [SMALL_STATE(2306)] = 120659, + [SMALL_STATE(2271)] = 118793, + [SMALL_STATE(2272)] = 118843, + [SMALL_STATE(2273)] = 118893, + [SMALL_STATE(2274)] = 118943, + [SMALL_STATE(2275)] = 118993, + [SMALL_STATE(2276)] = 119043, + [SMALL_STATE(2277)] = 119093, + [SMALL_STATE(2278)] = 119147, + [SMALL_STATE(2279)] = 119197, + [SMALL_STATE(2280)] = 119251, + [SMALL_STATE(2281)] = 119301, + [SMALL_STATE(2282)] = 119357, + [SMALL_STATE(2283)] = 119413, + [SMALL_STATE(2284)] = 119467, + [SMALL_STATE(2285)] = 119517, + [SMALL_STATE(2286)] = 119567, + [SMALL_STATE(2287)] = 119621, + [SMALL_STATE(2288)] = 119675, + [SMALL_STATE(2289)] = 119725, + [SMALL_STATE(2290)] = 119779, + [SMALL_STATE(2291)] = 119833, + [SMALL_STATE(2292)] = 119883, + [SMALL_STATE(2293)] = 119941, + [SMALL_STATE(2294)] = 119999, + [SMALL_STATE(2295)] = 120049, + [SMALL_STATE(2296)] = 120103, + [SMALL_STATE(2297)] = 120157, + [SMALL_STATE(2298)] = 120211, + [SMALL_STATE(2299)] = 120267, + [SMALL_STATE(2300)] = 120323, + [SMALL_STATE(2301)] = 120379, + [SMALL_STATE(2302)] = 120433, + [SMALL_STATE(2303)] = 120487, + [SMALL_STATE(2304)] = 120543, + [SMALL_STATE(2305)] = 120599, + [SMALL_STATE(2306)] = 120655, [SMALL_STATE(2307)] = 120709, - [SMALL_STATE(2308)] = 120759, + [SMALL_STATE(2308)] = 120763, [SMALL_STATE(2309)] = 120813, - [SMALL_STATE(2310)] = 120867, - [SMALL_STATE(2311)] = 120917, - [SMALL_STATE(2312)] = 120971, - [SMALL_STATE(2313)] = 121025, - [SMALL_STATE(2314)] = 121075, - [SMALL_STATE(2315)] = 121129, - [SMALL_STATE(2316)] = 121179, - [SMALL_STATE(2317)] = 121233, - [SMALL_STATE(2318)] = 121283, - [SMALL_STATE(2319)] = 121333, - [SMALL_STATE(2320)] = 121383, - [SMALL_STATE(2321)] = 121433, - [SMALL_STATE(2322)] = 121483, - [SMALL_STATE(2323)] = 121533, - [SMALL_STATE(2324)] = 121589, - [SMALL_STATE(2325)] = 121645, - [SMALL_STATE(2326)] = 121701, - [SMALL_STATE(2327)] = 121751, - [SMALL_STATE(2328)] = 121807, - [SMALL_STATE(2329)] = 121863, - [SMALL_STATE(2330)] = 121919, - [SMALL_STATE(2331)] = 121975, - [SMALL_STATE(2332)] = 122031, - [SMALL_STATE(2333)] = 122085, + [SMALL_STATE(2310)] = 120863, + [SMALL_STATE(2311)] = 120913, + [SMALL_STATE(2312)] = 120963, + [SMALL_STATE(2313)] = 121013, + [SMALL_STATE(2314)] = 121063, + [SMALL_STATE(2315)] = 121113, + [SMALL_STATE(2316)] = 121163, + [SMALL_STATE(2317)] = 121213, + [SMALL_STATE(2318)] = 121263, + [SMALL_STATE(2319)] = 121313, + [SMALL_STATE(2320)] = 121367, + [SMALL_STATE(2321)] = 121421, + [SMALL_STATE(2322)] = 121475, + [SMALL_STATE(2323)] = 121525, + [SMALL_STATE(2324)] = 121581, + [SMALL_STATE(2325)] = 121637, + [SMALL_STATE(2326)] = 121693, + [SMALL_STATE(2327)] = 121749, + [SMALL_STATE(2328)] = 121799, + [SMALL_STATE(2329)] = 121855, + [SMALL_STATE(2330)] = 121911, + [SMALL_STATE(2331)] = 121967, + [SMALL_STATE(2332)] = 122023, + [SMALL_STATE(2333)] = 122079, [SMALL_STATE(2334)] = 122135, - [SMALL_STATE(2335)] = 122185, - [SMALL_STATE(2336)] = 122235, - [SMALL_STATE(2337)] = 122291, + [SMALL_STATE(2335)] = 122191, + [SMALL_STATE(2336)] = 122247, + [SMALL_STATE(2337)] = 122297, [SMALL_STATE(2338)] = 122347, - [SMALL_STATE(2339)] = 122397, - [SMALL_STATE(2340)] = 122447, - [SMALL_STATE(2341)] = 122503, - [SMALL_STATE(2342)] = 122553, + [SMALL_STATE(2339)] = 122403, + [SMALL_STATE(2340)] = 122459, + [SMALL_STATE(2341)] = 122509, + [SMALL_STATE(2342)] = 122559, [SMALL_STATE(2343)] = 122609, [SMALL_STATE(2344)] = 122659, [SMALL_STATE(2345)] = 122709, [SMALL_STATE(2346)] = 122763, - [SMALL_STATE(2347)] = 122812, - [SMALL_STATE(2348)] = 122865, - [SMALL_STATE(2349)] = 122914, - [SMALL_STATE(2350)] = 123009, - [SMALL_STATE(2351)] = 123064, - [SMALL_STATE(2352)] = 123113, + [SMALL_STATE(2347)] = 122816, + [SMALL_STATE(2348)] = 122911, + [SMALL_STATE(2349)] = 122966, + [SMALL_STATE(2350)] = 123015, + [SMALL_STATE(2351)] = 123068, + [SMALL_STATE(2352)] = 123117, [SMALL_STATE(2353)] = 123166, - [SMALL_STATE(2354)] = 123261, + [SMALL_STATE(2354)] = 123215, [SMALL_STATE(2355)] = 123310, - [SMALL_STATE(2356)] = 123359, - [SMALL_STATE(2357)] = 123412, - [SMALL_STATE(2358)] = 123465, + [SMALL_STATE(2356)] = 123405, + [SMALL_STATE(2357)] = 123458, + [SMALL_STATE(2358)] = 123511, [SMALL_STATE(2359)] = 123560, - [SMALL_STATE(2360)] = 123613, - [SMALL_STATE(2361)] = 123708, - [SMALL_STATE(2362)] = 123803, - [SMALL_STATE(2363)] = 123852, - [SMALL_STATE(2364)] = 123901, - [SMALL_STATE(2365)] = 123996, - [SMALL_STATE(2366)] = 124051, - [SMALL_STATE(2367)] = 124104, - [SMALL_STATE(2368)] = 124159, - [SMALL_STATE(2369)] = 124208, - [SMALL_STATE(2370)] = 124261, - [SMALL_STATE(2371)] = 124314, - [SMALL_STATE(2372)] = 124367, - [SMALL_STATE(2373)] = 124462, - [SMALL_STATE(2374)] = 124515, - [SMALL_STATE(2375)] = 124568, - [SMALL_STATE(2376)] = 124617, - [SMALL_STATE(2377)] = 124712, - [SMALL_STATE(2378)] = 124807, - [SMALL_STATE(2379)] = 124902, - [SMALL_STATE(2380)] = 124997, - [SMALL_STATE(2381)] = 125046, - [SMALL_STATE(2382)] = 125095, - [SMALL_STATE(2383)] = 125148, - [SMALL_STATE(2384)] = 125197, - [SMALL_STATE(2385)] = 125246, - [SMALL_STATE(2386)] = 125301, - [SMALL_STATE(2387)] = 125356, - [SMALL_STATE(2388)] = 125411, - [SMALL_STATE(2389)] = 125460, - [SMALL_STATE(2390)] = 125515, - [SMALL_STATE(2391)] = 125564, - [SMALL_STATE(2392)] = 125619, - [SMALL_STATE(2393)] = 125668, - [SMALL_STATE(2394)] = 125717, - [SMALL_STATE(2395)] = 125770, - [SMALL_STATE(2396)] = 125823, - [SMALL_STATE(2397)] = 125876, - [SMALL_STATE(2398)] = 125931, - [SMALL_STATE(2399)] = 125980, - [SMALL_STATE(2400)] = 126029, - [SMALL_STATE(2401)] = 126078, - [SMALL_STATE(2402)] = 126127, - [SMALL_STATE(2403)] = 126176, - [SMALL_STATE(2404)] = 126231, - [SMALL_STATE(2405)] = 126286, - [SMALL_STATE(2406)] = 126339, - [SMALL_STATE(2407)] = 126392, - [SMALL_STATE(2408)] = 126447, - [SMALL_STATE(2409)] = 126500, - [SMALL_STATE(2410)] = 126553, - [SMALL_STATE(2411)] = 126648, - [SMALL_STATE(2412)] = 126743, - [SMALL_STATE(2413)] = 126792, - [SMALL_STATE(2414)] = 126845, - [SMALL_STATE(2415)] = 126940, - [SMALL_STATE(2416)] = 126993, - [SMALL_STATE(2417)] = 127088, - [SMALL_STATE(2418)] = 127141, - [SMALL_STATE(2419)] = 127190, - [SMALL_STATE(2420)] = 127243, - [SMALL_STATE(2421)] = 127292, - [SMALL_STATE(2422)] = 127341, - [SMALL_STATE(2423)] = 127396, - [SMALL_STATE(2424)] = 127445, - [SMALL_STATE(2425)] = 127500, - [SMALL_STATE(2426)] = 127553, - [SMALL_STATE(2427)] = 127608, - [SMALL_STATE(2428)] = 127661, - [SMALL_STATE(2429)] = 127756, - [SMALL_STATE(2430)] = 127811, - [SMALL_STATE(2431)] = 127860, - [SMALL_STATE(2432)] = 127915, - [SMALL_STATE(2433)] = 127968, - [SMALL_STATE(2434)] = 128021, - [SMALL_STATE(2435)] = 128074, - [SMALL_STATE(2436)] = 128127, - [SMALL_STATE(2437)] = 128180, - [SMALL_STATE(2438)] = 128233, - [SMALL_STATE(2439)] = 128286, - [SMALL_STATE(2440)] = 128335, - [SMALL_STATE(2441)] = 128388, + [SMALL_STATE(2360)] = 123655, + [SMALL_STATE(2361)] = 123710, + [SMALL_STATE(2362)] = 123765, + [SMALL_STATE(2363)] = 123818, + [SMALL_STATE(2364)] = 123871, + [SMALL_STATE(2365)] = 123966, + [SMALL_STATE(2366)] = 124015, + [SMALL_STATE(2367)] = 124068, + [SMALL_STATE(2368)] = 124117, + [SMALL_STATE(2369)] = 124170, + [SMALL_STATE(2370)] = 124225, + [SMALL_STATE(2371)] = 124278, + [SMALL_STATE(2372)] = 124331, + [SMALL_STATE(2373)] = 124386, + [SMALL_STATE(2374)] = 124439, + [SMALL_STATE(2375)] = 124534, + [SMALL_STATE(2376)] = 124589, + [SMALL_STATE(2377)] = 124638, + [SMALL_STATE(2378)] = 124687, + [SMALL_STATE(2379)] = 124742, + [SMALL_STATE(2380)] = 124797, + [SMALL_STATE(2381)] = 124852, + [SMALL_STATE(2382)] = 124905, + [SMALL_STATE(2383)] = 124954, + [SMALL_STATE(2384)] = 125007, + [SMALL_STATE(2385)] = 125060, + [SMALL_STATE(2386)] = 125109, + [SMALL_STATE(2387)] = 125204, + [SMALL_STATE(2388)] = 125299, + [SMALL_STATE(2389)] = 125354, + [SMALL_STATE(2390)] = 125403, + [SMALL_STATE(2391)] = 125458, + [SMALL_STATE(2392)] = 125511, + [SMALL_STATE(2393)] = 125560, + [SMALL_STATE(2394)] = 125613, + [SMALL_STATE(2395)] = 125666, + [SMALL_STATE(2396)] = 125719, + [SMALL_STATE(2397)] = 125772, + [SMALL_STATE(2398)] = 125821, + [SMALL_STATE(2399)] = 125874, + [SMALL_STATE(2400)] = 125923, + [SMALL_STATE(2401)] = 125976, + [SMALL_STATE(2402)] = 126025, + [SMALL_STATE(2403)] = 126074, + [SMALL_STATE(2404)] = 126123, + [SMALL_STATE(2405)] = 126176, + [SMALL_STATE(2406)] = 126229, + [SMALL_STATE(2407)] = 126324, + [SMALL_STATE(2408)] = 126419, + [SMALL_STATE(2409)] = 126474, + [SMALL_STATE(2410)] = 126529, + [SMALL_STATE(2411)] = 126582, + [SMALL_STATE(2412)] = 126631, + [SMALL_STATE(2413)] = 126726, + [SMALL_STATE(2414)] = 126781, + [SMALL_STATE(2415)] = 126836, + [SMALL_STATE(2416)] = 126885, + [SMALL_STATE(2417)] = 126980, + [SMALL_STATE(2418)] = 127035, + [SMALL_STATE(2419)] = 127090, + [SMALL_STATE(2420)] = 127143, + [SMALL_STATE(2421)] = 127196, + [SMALL_STATE(2422)] = 127245, + [SMALL_STATE(2423)] = 127298, + [SMALL_STATE(2424)] = 127351, + [SMALL_STATE(2425)] = 127404, + [SMALL_STATE(2426)] = 127457, + [SMALL_STATE(2427)] = 127552, + [SMALL_STATE(2428)] = 127607, + [SMALL_STATE(2429)] = 127702, + [SMALL_STATE(2430)] = 127797, + [SMALL_STATE(2431)] = 127846, + [SMALL_STATE(2432)] = 127895, + [SMALL_STATE(2433)] = 127948, + [SMALL_STATE(2434)] = 127997, + [SMALL_STATE(2435)] = 128046, + [SMALL_STATE(2436)] = 128099, + [SMALL_STATE(2437)] = 128148, + [SMALL_STATE(2438)] = 128243, + [SMALL_STATE(2439)] = 128292, + [SMALL_STATE(2440)] = 128341, + [SMALL_STATE(2441)] = 128390, [SMALL_STATE(2442)] = 128443, [SMALL_STATE(2443)] = 128492, [SMALL_STATE(2444)] = 128540, [SMALL_STATE(2445)] = 128588, - [SMALL_STATE(2446)] = 128644, - [SMALL_STATE(2447)] = 128692, - [SMALL_STATE(2448)] = 128740, - [SMALL_STATE(2449)] = 128788, - [SMALL_STATE(2450)] = 128836, - [SMALL_STATE(2451)] = 128884, - [SMALL_STATE(2452)] = 128936, - [SMALL_STATE(2453)] = 128984, - [SMALL_STATE(2454)] = 129036, - [SMALL_STATE(2455)] = 129084, - [SMALL_STATE(2456)] = 129140, - [SMALL_STATE(2457)] = 129192, - [SMALL_STATE(2458)] = 129244, - [SMALL_STATE(2459)] = 129296, - [SMALL_STATE(2460)] = 129350, - [SMALL_STATE(2461)] = 129402, - [SMALL_STATE(2462)] = 129458, - [SMALL_STATE(2463)] = 129506, - [SMALL_STATE(2464)] = 129562, - [SMALL_STATE(2465)] = 129614, - [SMALL_STATE(2466)] = 129662, - [SMALL_STATE(2467)] = 129716, - [SMALL_STATE(2468)] = 129764, - [SMALL_STATE(2469)] = 129812, - [SMALL_STATE(2470)] = 129860, - [SMALL_STATE(2471)] = 129914, - [SMALL_STATE(2472)] = 129968, - [SMALL_STATE(2473)] = 130020, - [SMALL_STATE(2474)] = 130074, - [SMALL_STATE(2475)] = 130126, - [SMALL_STATE(2476)] = 130180, - [SMALL_STATE(2477)] = 130232, - [SMALL_STATE(2478)] = 130280, - [SMALL_STATE(2479)] = 130328, - [SMALL_STATE(2480)] = 130376, - [SMALL_STATE(2481)] = 130430, - [SMALL_STATE(2482)] = 130478, - [SMALL_STATE(2483)] = 130526, - [SMALL_STATE(2484)] = 130578, - [SMALL_STATE(2485)] = 130630, - [SMALL_STATE(2486)] = 130678, - [SMALL_STATE(2487)] = 130730, - [SMALL_STATE(2488)] = 130782, - [SMALL_STATE(2489)] = 130836, - [SMALL_STATE(2490)] = 130888, - [SMALL_STATE(2491)] = 130940, - [SMALL_STATE(2492)] = 130994, - [SMALL_STATE(2493)] = 131042, - [SMALL_STATE(2494)] = 131094, - [SMALL_STATE(2495)] = 131148, - [SMALL_STATE(2496)] = 131202, - [SMALL_STATE(2497)] = 131250, - [SMALL_STATE(2498)] = 131306, - [SMALL_STATE(2499)] = 131354, - [SMALL_STATE(2500)] = 131402, - [SMALL_STATE(2501)] = 131454, - [SMALL_STATE(2502)] = 131510, - [SMALL_STATE(2503)] = 131558, - [SMALL_STATE(2504)] = 131610, - [SMALL_STATE(2505)] = 131658, - [SMALL_STATE(2506)] = 131706, - [SMALL_STATE(2507)] = 131760, - [SMALL_STATE(2508)] = 131808, - [SMALL_STATE(2509)] = 131856, - [SMALL_STATE(2510)] = 131910, - [SMALL_STATE(2511)] = 131958, - [SMALL_STATE(2512)] = 132010, - [SMALL_STATE(2513)] = 132058, - [SMALL_STATE(2514)] = 132106, - [SMALL_STATE(2515)] = 132154, - [SMALL_STATE(2516)] = 132202, - [SMALL_STATE(2517)] = 132250, - [SMALL_STATE(2518)] = 132298, - [SMALL_STATE(2519)] = 132346, - [SMALL_STATE(2520)] = 132394, - [SMALL_STATE(2521)] = 132442, - [SMALL_STATE(2522)] = 132494, - [SMALL_STATE(2523)] = 132542, - [SMALL_STATE(2524)] = 132590, - [SMALL_STATE(2525)] = 132638, - [SMALL_STATE(2526)] = 132686, - [SMALL_STATE(2527)] = 132734, - [SMALL_STATE(2528)] = 132782, - [SMALL_STATE(2529)] = 132830, - [SMALL_STATE(2530)] = 132878, - [SMALL_STATE(2531)] = 132926, - [SMALL_STATE(2532)] = 132974, - [SMALL_STATE(2533)] = 133026, - [SMALL_STATE(2534)] = 133080, - [SMALL_STATE(2535)] = 133128, - [SMALL_STATE(2536)] = 133176, - [SMALL_STATE(2537)] = 133224, - [SMALL_STATE(2538)] = 133276, - [SMALL_STATE(2539)] = 133328, - [SMALL_STATE(2540)] = 133380, - [SMALL_STATE(2541)] = 133434, - [SMALL_STATE(2542)] = 133486, - [SMALL_STATE(2543)] = 133534, - [SMALL_STATE(2544)] = 133588, - [SMALL_STATE(2545)] = 133636, - [SMALL_STATE(2546)] = 133684, - [SMALL_STATE(2547)] = 133740, - [SMALL_STATE(2548)] = 133796, - [SMALL_STATE(2549)] = 133848, - [SMALL_STATE(2550)] = 133904, - [SMALL_STATE(2551)] = 133958, - [SMALL_STATE(2552)] = 134012, - [SMALL_STATE(2553)] = 134068, - [SMALL_STATE(2554)] = 134122, - [SMALL_STATE(2555)] = 134170, - [SMALL_STATE(2556)] = 134224, - [SMALL_STATE(2557)] = 134272, - [SMALL_STATE(2558)] = 134324, - [SMALL_STATE(2559)] = 134372, - [SMALL_STATE(2560)] = 134422, - [SMALL_STATE(2561)] = 134470, - [SMALL_STATE(2562)] = 134526, - [SMALL_STATE(2563)] = 134574, - [SMALL_STATE(2564)] = 134630, - [SMALL_STATE(2565)] = 134684, - [SMALL_STATE(2566)] = 134732, - [SMALL_STATE(2567)] = 134780, - [SMALL_STATE(2568)] = 134828, - [SMALL_STATE(2569)] = 134880, - [SMALL_STATE(2570)] = 134932, - [SMALL_STATE(2571)] = 134980, - [SMALL_STATE(2572)] = 135028, - [SMALL_STATE(2573)] = 135082, - [SMALL_STATE(2574)] = 135134, - [SMALL_STATE(2575)] = 135182, - [SMALL_STATE(2576)] = 135236, - [SMALL_STATE(2577)] = 135284, - [SMALL_STATE(2578)] = 135332, - [SMALL_STATE(2579)] = 135386, - [SMALL_STATE(2580)] = 135434, - [SMALL_STATE(2581)] = 135482, - [SMALL_STATE(2582)] = 135530, + [SMALL_STATE(2446)] = 128636, + [SMALL_STATE(2447)] = 128684, + [SMALL_STATE(2448)] = 128732, + [SMALL_STATE(2449)] = 128780, + [SMALL_STATE(2450)] = 128828, + [SMALL_STATE(2451)] = 128876, + [SMALL_STATE(2452)] = 128924, + [SMALL_STATE(2453)] = 128972, + [SMALL_STATE(2454)] = 129020, + [SMALL_STATE(2455)] = 129074, + [SMALL_STATE(2456)] = 129128, + [SMALL_STATE(2457)] = 129182, + [SMALL_STATE(2458)] = 129230, + [SMALL_STATE(2459)] = 129282, + [SMALL_STATE(2460)] = 129336, + [SMALL_STATE(2461)] = 129388, + [SMALL_STATE(2462)] = 129436, + [SMALL_STATE(2463)] = 129492, + [SMALL_STATE(2464)] = 129548, + [SMALL_STATE(2465)] = 129596, + [SMALL_STATE(2466)] = 129648, + [SMALL_STATE(2467)] = 129696, + [SMALL_STATE(2468)] = 129748, + [SMALL_STATE(2469)] = 129796, + [SMALL_STATE(2470)] = 129844, + [SMALL_STATE(2471)] = 129900, + [SMALL_STATE(2472)] = 129956, + [SMALL_STATE(2473)] = 130004, + [SMALL_STATE(2474)] = 130052, + [SMALL_STATE(2475)] = 130100, + [SMALL_STATE(2476)] = 130148, + [SMALL_STATE(2477)] = 130202, + [SMALL_STATE(2478)] = 130256, + [SMALL_STATE(2479)] = 130310, + [SMALL_STATE(2480)] = 130358, + [SMALL_STATE(2481)] = 130412, + [SMALL_STATE(2482)] = 130464, + [SMALL_STATE(2483)] = 130516, + [SMALL_STATE(2484)] = 130572, + [SMALL_STATE(2485)] = 130628, + [SMALL_STATE(2486)] = 130682, + [SMALL_STATE(2487)] = 130736, + [SMALL_STATE(2488)] = 130788, + [SMALL_STATE(2489)] = 130844, + [SMALL_STATE(2490)] = 130900, + [SMALL_STATE(2491)] = 130956, + [SMALL_STATE(2492)] = 131012, + [SMALL_STATE(2493)] = 131064, + [SMALL_STATE(2494)] = 131112, + [SMALL_STATE(2495)] = 131160, + [SMALL_STATE(2496)] = 131208, + [SMALL_STATE(2497)] = 131256, + [SMALL_STATE(2498)] = 131304, + [SMALL_STATE(2499)] = 131356, + [SMALL_STATE(2500)] = 131410, + [SMALL_STATE(2501)] = 131464, + [SMALL_STATE(2502)] = 131518, + [SMALL_STATE(2503)] = 131572, + [SMALL_STATE(2504)] = 131624, + [SMALL_STATE(2505)] = 131676, + [SMALL_STATE(2506)] = 131724, + [SMALL_STATE(2507)] = 131772, + [SMALL_STATE(2508)] = 131826, + [SMALL_STATE(2509)] = 131880, + [SMALL_STATE(2510)] = 131932, + [SMALL_STATE(2511)] = 131986, + [SMALL_STATE(2512)] = 132040, + [SMALL_STATE(2513)] = 132094, + [SMALL_STATE(2514)] = 132148, + [SMALL_STATE(2515)] = 132200, + [SMALL_STATE(2516)] = 132254, + [SMALL_STATE(2517)] = 132308, + [SMALL_STATE(2518)] = 132360, + [SMALL_STATE(2519)] = 132412, + [SMALL_STATE(2520)] = 132460, + [SMALL_STATE(2521)] = 132508, + [SMALL_STATE(2522)] = 132556, + [SMALL_STATE(2523)] = 132604, + [SMALL_STATE(2524)] = 132652, + [SMALL_STATE(2525)] = 132704, + [SMALL_STATE(2526)] = 132752, + [SMALL_STATE(2527)] = 132800, + [SMALL_STATE(2528)] = 132848, + [SMALL_STATE(2529)] = 132902, + [SMALL_STATE(2530)] = 132950, + [SMALL_STATE(2531)] = 133002, + [SMALL_STATE(2532)] = 133054, + [SMALL_STATE(2533)] = 133106, + [SMALL_STATE(2534)] = 133154, + [SMALL_STATE(2535)] = 133206, + [SMALL_STATE(2536)] = 133254, + [SMALL_STATE(2537)] = 133302, + [SMALL_STATE(2538)] = 133350, + [SMALL_STATE(2539)] = 133398, + [SMALL_STATE(2540)] = 133446, + [SMALL_STATE(2541)] = 133498, + [SMALL_STATE(2542)] = 133546, + [SMALL_STATE(2543)] = 133594, + [SMALL_STATE(2544)] = 133642, + [SMALL_STATE(2545)] = 133690, + [SMALL_STATE(2546)] = 133738, + [SMALL_STATE(2547)] = 133792, + [SMALL_STATE(2548)] = 133842, + [SMALL_STATE(2549)] = 133894, + [SMALL_STATE(2550)] = 133942, + [SMALL_STATE(2551)] = 133996, + [SMALL_STATE(2552)] = 134044, + [SMALL_STATE(2553)] = 134096, + [SMALL_STATE(2554)] = 134144, + [SMALL_STATE(2555)] = 134196, + [SMALL_STATE(2556)] = 134244, + [SMALL_STATE(2557)] = 134296, + [SMALL_STATE(2558)] = 134344, + [SMALL_STATE(2559)] = 134392, + [SMALL_STATE(2560)] = 134440, + [SMALL_STATE(2561)] = 134492, + [SMALL_STATE(2562)] = 134540, + [SMALL_STATE(2563)] = 134588, + [SMALL_STATE(2564)] = 134636, + [SMALL_STATE(2565)] = 134692, + [SMALL_STATE(2566)] = 134744, + [SMALL_STATE(2567)] = 134792, + [SMALL_STATE(2568)] = 134844, + [SMALL_STATE(2569)] = 134896, + [SMALL_STATE(2570)] = 134948, + [SMALL_STATE(2571)] = 134996, + [SMALL_STATE(2572)] = 135044, + [SMALL_STATE(2573)] = 135096, + [SMALL_STATE(2574)] = 135144, + [SMALL_STATE(2575)] = 135192, + [SMALL_STATE(2576)] = 135240, + [SMALL_STATE(2577)] = 135296, + [SMALL_STATE(2578)] = 135344, + [SMALL_STATE(2579)] = 135392, + [SMALL_STATE(2580)] = 135440, + [SMALL_STATE(2581)] = 135488, + [SMALL_STATE(2582)] = 135536, [SMALL_STATE(2583)] = 135584, - [SMALL_STATE(2584)] = 135631, - [SMALL_STATE(2585)] = 135678, - [SMALL_STATE(2586)] = 135725, - [SMALL_STATE(2587)] = 135772, - [SMALL_STATE(2588)] = 135819, - [SMALL_STATE(2589)] = 135870, - [SMALL_STATE(2590)] = 135919, - [SMALL_STATE(2591)] = 135966, - [SMALL_STATE(2592)] = 136013, - [SMALL_STATE(2593)] = 136060, - [SMALL_STATE(2594)] = 136107, - [SMALL_STATE(2595)] = 136154, - [SMALL_STATE(2596)] = 136205, - [SMALL_STATE(2597)] = 136252, - [SMALL_STATE(2598)] = 136299, - [SMALL_STATE(2599)] = 136346, - [SMALL_STATE(2600)] = 136393, - [SMALL_STATE(2601)] = 136440, - [SMALL_STATE(2602)] = 136489, - [SMALL_STATE(2603)] = 136540, - [SMALL_STATE(2604)] = 136587, - [SMALL_STATE(2605)] = 136634, - [SMALL_STATE(2606)] = 136681, - [SMALL_STATE(2607)] = 136728, - [SMALL_STATE(2608)] = 136775, - [SMALL_STATE(2609)] = 136822, - [SMALL_STATE(2610)] = 136869, - [SMALL_STATE(2611)] = 136916, - [SMALL_STATE(2612)] = 136963, - [SMALL_STATE(2613)] = 137014, - [SMALL_STATE(2614)] = 137065, - [SMALL_STATE(2615)] = 137112, - [SMALL_STATE(2616)] = 137159, - [SMALL_STATE(2617)] = 137206, - [SMALL_STATE(2618)] = 137253, - [SMALL_STATE(2619)] = 137306, - [SMALL_STATE(2620)] = 137359, - [SMALL_STATE(2621)] = 137410, - [SMALL_STATE(2622)] = 137459, - [SMALL_STATE(2623)] = 137506, - [SMALL_STATE(2624)] = 137553, - [SMALL_STATE(2625)] = 137600, - [SMALL_STATE(2626)] = 137647, - [SMALL_STATE(2627)] = 137694, - [SMALL_STATE(2628)] = 137741, - [SMALL_STATE(2629)] = 137788, - [SMALL_STATE(2630)] = 137835, - [SMALL_STATE(2631)] = 137882, - [SMALL_STATE(2632)] = 137929, - [SMALL_STATE(2633)] = 137980, - [SMALL_STATE(2634)] = 138027, - [SMALL_STATE(2635)] = 138074, - [SMALL_STATE(2636)] = 138121, - [SMALL_STATE(2637)] = 138168, - [SMALL_STATE(2638)] = 138215, - [SMALL_STATE(2639)] = 138262, - [SMALL_STATE(2640)] = 138309, - [SMALL_STATE(2641)] = 138356, - [SMALL_STATE(2642)] = 138407, - [SMALL_STATE(2643)] = 138454, - [SMALL_STATE(2644)] = 138501, - [SMALL_STATE(2645)] = 138548, - [SMALL_STATE(2646)] = 138595, - [SMALL_STATE(2647)] = 138642, - [SMALL_STATE(2648)] = 138689, - [SMALL_STATE(2649)] = 138736, - [SMALL_STATE(2650)] = 138783, - [SMALL_STATE(2651)] = 138830, - [SMALL_STATE(2652)] = 138877, - [SMALL_STATE(2653)] = 138924, - [SMALL_STATE(2654)] = 138971, - [SMALL_STATE(2655)] = 139018, - [SMALL_STATE(2656)] = 139065, - [SMALL_STATE(2657)] = 139112, - [SMALL_STATE(2658)] = 139159, - [SMALL_STATE(2659)] = 139206, - [SMALL_STATE(2660)] = 139253, - [SMALL_STATE(2661)] = 139300, - [SMALL_STATE(2662)] = 139347, - [SMALL_STATE(2663)] = 139394, - [SMALL_STATE(2664)] = 139441, - [SMALL_STATE(2665)] = 139488, - [SMALL_STATE(2666)] = 139535, - [SMALL_STATE(2667)] = 139582, - [SMALL_STATE(2668)] = 139629, - [SMALL_STATE(2669)] = 139676, - [SMALL_STATE(2670)] = 139723, - [SMALL_STATE(2671)] = 139770, - [SMALL_STATE(2672)] = 139821, - [SMALL_STATE(2673)] = 139868, - [SMALL_STATE(2674)] = 139915, - [SMALL_STATE(2675)] = 139962, - [SMALL_STATE(2676)] = 140009, - [SMALL_STATE(2677)] = 140056, - [SMALL_STATE(2678)] = 140103, - [SMALL_STATE(2679)] = 140154, - [SMALL_STATE(2680)] = 140201, - [SMALL_STATE(2681)] = 140248, - [SMALL_STATE(2682)] = 140295, - [SMALL_STATE(2683)] = 140342, - [SMALL_STATE(2684)] = 140389, - [SMALL_STATE(2685)] = 140436, - [SMALL_STATE(2686)] = 140483, - [SMALL_STATE(2687)] = 140530, - [SMALL_STATE(2688)] = 140577, - [SMALL_STATE(2689)] = 140628, - [SMALL_STATE(2690)] = 140679, - [SMALL_STATE(2691)] = 140730, - [SMALL_STATE(2692)] = 140785, - [SMALL_STATE(2693)] = 140836, - [SMALL_STATE(2694)] = 140891, - [SMALL_STATE(2695)] = 140940, - [SMALL_STATE(2696)] = 140991, - [SMALL_STATE(2697)] = 141040, - [SMALL_STATE(2698)] = 141087, - [SMALL_STATE(2699)] = 141134, - [SMALL_STATE(2700)] = 141185, - [SMALL_STATE(2701)] = 141232, - [SMALL_STATE(2702)] = 141279, - [SMALL_STATE(2703)] = 141328, - [SMALL_STATE(2704)] = 141379, - [SMALL_STATE(2705)] = 141428, - [SMALL_STATE(2706)] = 141485, - [SMALL_STATE(2707)] = 141542, - [SMALL_STATE(2708)] = 141589, - [SMALL_STATE(2709)] = 141636, - [SMALL_STATE(2710)] = 141683, - [SMALL_STATE(2711)] = 141730, - [SMALL_STATE(2712)] = 141777, - [SMALL_STATE(2713)] = 141824, - [SMALL_STATE(2714)] = 141871, - [SMALL_STATE(2715)] = 141922, - [SMALL_STATE(2716)] = 141973, - [SMALL_STATE(2717)] = 142020, - [SMALL_STATE(2718)] = 142071, - [SMALL_STATE(2719)] = 142122, - [SMALL_STATE(2720)] = 142169, - [SMALL_STATE(2721)] = 142222, - [SMALL_STATE(2722)] = 142269, - [SMALL_STATE(2723)] = 142316, - [SMALL_STATE(2724)] = 142369, - [SMALL_STATE(2725)] = 142416, - [SMALL_STATE(2726)] = 142463, - [SMALL_STATE(2727)] = 142514, - [SMALL_STATE(2728)] = 142565, - [SMALL_STATE(2729)] = 142612, - [SMALL_STATE(2730)] = 142659, - [SMALL_STATE(2731)] = 142706, - [SMALL_STATE(2732)] = 142753, - [SMALL_STATE(2733)] = 142800, - [SMALL_STATE(2734)] = 142847, + [SMALL_STATE(2584)] = 135635, + [SMALL_STATE(2585)] = 135682, + [SMALL_STATE(2586)] = 135737, + [SMALL_STATE(2587)] = 135784, + [SMALL_STATE(2588)] = 135839, + [SMALL_STATE(2589)] = 135886, + [SMALL_STATE(2590)] = 135935, + [SMALL_STATE(2591)] = 135982, + [SMALL_STATE(2592)] = 136039, + [SMALL_STATE(2593)] = 136096, + [SMALL_STATE(2594)] = 136147, + [SMALL_STATE(2595)] = 136194, + [SMALL_STATE(2596)] = 136241, + [SMALL_STATE(2597)] = 136288, + [SMALL_STATE(2598)] = 136341, + [SMALL_STATE(2599)] = 136388, + [SMALL_STATE(2600)] = 136435, + [SMALL_STATE(2601)] = 136482, + [SMALL_STATE(2602)] = 136529, + [SMALL_STATE(2603)] = 136576, + [SMALL_STATE(2604)] = 136623, + [SMALL_STATE(2605)] = 136670, + [SMALL_STATE(2606)] = 136717, + [SMALL_STATE(2607)] = 136764, + [SMALL_STATE(2608)] = 136815, + [SMALL_STATE(2609)] = 136862, + [SMALL_STATE(2610)] = 136909, + [SMALL_STATE(2611)] = 136962, + [SMALL_STATE(2612)] = 137013, + [SMALL_STATE(2613)] = 137060, + [SMALL_STATE(2614)] = 137107, + [SMALL_STATE(2615)] = 137154, + [SMALL_STATE(2616)] = 137201, + [SMALL_STATE(2617)] = 137248, + [SMALL_STATE(2618)] = 137295, + [SMALL_STATE(2619)] = 137342, + [SMALL_STATE(2620)] = 137389, + [SMALL_STATE(2621)] = 137436, + [SMALL_STATE(2622)] = 137483, + [SMALL_STATE(2623)] = 137534, + [SMALL_STATE(2624)] = 137585, + [SMALL_STATE(2625)] = 137632, + [SMALL_STATE(2626)] = 137679, + [SMALL_STATE(2627)] = 137726, + [SMALL_STATE(2628)] = 137773, + [SMALL_STATE(2629)] = 137820, + [SMALL_STATE(2630)] = 137871, + [SMALL_STATE(2631)] = 137922, + [SMALL_STATE(2632)] = 137973, + [SMALL_STATE(2633)] = 138020, + [SMALL_STATE(2634)] = 138071, + [SMALL_STATE(2635)] = 138118, + [SMALL_STATE(2636)] = 138165, + [SMALL_STATE(2637)] = 138212, + [SMALL_STATE(2638)] = 138265, + [SMALL_STATE(2639)] = 138318, + [SMALL_STATE(2640)] = 138365, + [SMALL_STATE(2641)] = 138412, + [SMALL_STATE(2642)] = 138459, + [SMALL_STATE(2643)] = 138506, + [SMALL_STATE(2644)] = 138553, + [SMALL_STATE(2645)] = 138604, + [SMALL_STATE(2646)] = 138651, + [SMALL_STATE(2647)] = 138698, + [SMALL_STATE(2648)] = 138745, + [SMALL_STATE(2649)] = 138792, + [SMALL_STATE(2650)] = 138839, + [SMALL_STATE(2651)] = 138886, + [SMALL_STATE(2652)] = 138935, + [SMALL_STATE(2653)] = 138982, + [SMALL_STATE(2654)] = 139029, + [SMALL_STATE(2655)] = 139076, + [SMALL_STATE(2656)] = 139123, + [SMALL_STATE(2657)] = 139170, + [SMALL_STATE(2658)] = 139217, + [SMALL_STATE(2659)] = 139264, + [SMALL_STATE(2660)] = 139311, + [SMALL_STATE(2661)] = 139358, + [SMALL_STATE(2662)] = 139405, + [SMALL_STATE(2663)] = 139456, + [SMALL_STATE(2664)] = 139507, + [SMALL_STATE(2665)] = 139558, + [SMALL_STATE(2666)] = 139605, + [SMALL_STATE(2667)] = 139652, + [SMALL_STATE(2668)] = 139701, + [SMALL_STATE(2669)] = 139748, + [SMALL_STATE(2670)] = 139795, + [SMALL_STATE(2671)] = 139842, + [SMALL_STATE(2672)] = 139893, + [SMALL_STATE(2673)] = 139940, + [SMALL_STATE(2674)] = 139987, + [SMALL_STATE(2675)] = 140034, + [SMALL_STATE(2676)] = 140081, + [SMALL_STATE(2677)] = 140128, + [SMALL_STATE(2678)] = 140175, + [SMALL_STATE(2679)] = 140222, + [SMALL_STATE(2680)] = 140269, + [SMALL_STATE(2681)] = 140316, + [SMALL_STATE(2682)] = 140363, + [SMALL_STATE(2683)] = 140410, + [SMALL_STATE(2684)] = 140461, + [SMALL_STATE(2685)] = 140508, + [SMALL_STATE(2686)] = 140557, + [SMALL_STATE(2687)] = 140604, + [SMALL_STATE(2688)] = 140651, + [SMALL_STATE(2689)] = 140698, + [SMALL_STATE(2690)] = 140745, + [SMALL_STATE(2691)] = 140792, + [SMALL_STATE(2692)] = 140839, + [SMALL_STATE(2693)] = 140886, + [SMALL_STATE(2694)] = 140933, + [SMALL_STATE(2695)] = 140980, + [SMALL_STATE(2696)] = 141027, + [SMALL_STATE(2697)] = 141074, + [SMALL_STATE(2698)] = 141125, + [SMALL_STATE(2699)] = 141172, + [SMALL_STATE(2700)] = 141223, + [SMALL_STATE(2701)] = 141270, + [SMALL_STATE(2702)] = 141317, + [SMALL_STATE(2703)] = 141368, + [SMALL_STATE(2704)] = 141417, + [SMALL_STATE(2705)] = 141464, + [SMALL_STATE(2706)] = 141515, + [SMALL_STATE(2707)] = 141562, + [SMALL_STATE(2708)] = 141609, + [SMALL_STATE(2709)] = 141656, + [SMALL_STATE(2710)] = 141703, + [SMALL_STATE(2711)] = 141750, + [SMALL_STATE(2712)] = 141797, + [SMALL_STATE(2713)] = 141848, + [SMALL_STATE(2714)] = 141895, + [SMALL_STATE(2715)] = 141942, + [SMALL_STATE(2716)] = 141989, + [SMALL_STATE(2717)] = 142036, + [SMALL_STATE(2718)] = 142083, + [SMALL_STATE(2719)] = 142130, + [SMALL_STATE(2720)] = 142177, + [SMALL_STATE(2721)] = 142224, + [SMALL_STATE(2722)] = 142271, + [SMALL_STATE(2723)] = 142318, + [SMALL_STATE(2724)] = 142365, + [SMALL_STATE(2725)] = 142412, + [SMALL_STATE(2726)] = 142459, + [SMALL_STATE(2727)] = 142506, + [SMALL_STATE(2728)] = 142553, + [SMALL_STATE(2729)] = 142604, + [SMALL_STATE(2730)] = 142651, + [SMALL_STATE(2731)] = 142698, + [SMALL_STATE(2732)] = 142745, + [SMALL_STATE(2733)] = 142796, + [SMALL_STATE(2734)] = 142845, [SMALL_STATE(2735)] = 142894, [SMALL_STATE(2736)] = 142941, [SMALL_STATE(2737)] = 142988, - [SMALL_STATE(2738)] = 143034, - [SMALL_STATE(2739)] = 143090, - [SMALL_STATE(2740)] = 143172, - [SMALL_STATE(2741)] = 143254, - [SMALL_STATE(2742)] = 143336, - [SMALL_STATE(2743)] = 143418, - [SMALL_STATE(2744)] = 143500, - [SMALL_STATE(2745)] = 143582, - [SMALL_STATE(2746)] = 143664, - [SMALL_STATE(2747)] = 143746, - [SMALL_STATE(2748)] = 143828, - [SMALL_STATE(2749)] = 143910, - [SMALL_STATE(2750)] = 143992, - [SMALL_STATE(2751)] = 144074, - [SMALL_STATE(2752)] = 144156, - [SMALL_STATE(2753)] = 144238, - [SMALL_STATE(2754)] = 144320, - [SMALL_STATE(2755)] = 144402, - [SMALL_STATE(2756)] = 144484, - [SMALL_STATE(2757)] = 144566, - [SMALL_STATE(2758)] = 144648, - [SMALL_STATE(2759)] = 144730, - [SMALL_STATE(2760)] = 144812, - [SMALL_STATE(2761)] = 144894, - [SMALL_STATE(2762)] = 144976, - [SMALL_STATE(2763)] = 145058, - [SMALL_STATE(2764)] = 145140, - [SMALL_STATE(2765)] = 145222, - [SMALL_STATE(2766)] = 145304, - [SMALL_STATE(2767)] = 145386, - [SMALL_STATE(2768)] = 145468, - [SMALL_STATE(2769)] = 145550, - [SMALL_STATE(2770)] = 145632, - [SMALL_STATE(2771)] = 145714, - [SMALL_STATE(2772)] = 145796, - [SMALL_STATE(2773)] = 145878, - [SMALL_STATE(2774)] = 145960, - [SMALL_STATE(2775)] = 146042, - [SMALL_STATE(2776)] = 146124, - [SMALL_STATE(2777)] = 146174, - [SMALL_STATE(2778)] = 146256, - [SMALL_STATE(2779)] = 146338, - [SMALL_STATE(2780)] = 146420, - [SMALL_STATE(2781)] = 146474, - [SMALL_STATE(2782)] = 146556, - [SMALL_STATE(2783)] = 146638, - [SMALL_STATE(2784)] = 146720, - [SMALL_STATE(2785)] = 146802, - [SMALL_STATE(2786)] = 146884, - [SMALL_STATE(2787)] = 146966, - [SMALL_STATE(2788)] = 147048, - [SMALL_STATE(2789)] = 147130, - [SMALL_STATE(2790)] = 147212, - [SMALL_STATE(2791)] = 147294, - [SMALL_STATE(2792)] = 147376, - [SMALL_STATE(2793)] = 147458, - [SMALL_STATE(2794)] = 147540, - [SMALL_STATE(2795)] = 147622, - [SMALL_STATE(2796)] = 147704, - [SMALL_STATE(2797)] = 147750, - [SMALL_STATE(2798)] = 147832, - [SMALL_STATE(2799)] = 147878, - [SMALL_STATE(2800)] = 147960, - [SMALL_STATE(2801)] = 148042, - [SMALL_STATE(2802)] = 148088, - [SMALL_STATE(2803)] = 148158, - [SMALL_STATE(2804)] = 148204, - [SMALL_STATE(2805)] = 148286, - [SMALL_STATE(2806)] = 148332, - [SMALL_STATE(2807)] = 148382, - [SMALL_STATE(2808)] = 148428, - [SMALL_STATE(2809)] = 148478, - [SMALL_STATE(2810)] = 148524, - [SMALL_STATE(2811)] = 148574, - [SMALL_STATE(2812)] = 148656, - [SMALL_STATE(2813)] = 148706, - [SMALL_STATE(2814)] = 148758, - [SMALL_STATE(2815)] = 148812, - [SMALL_STATE(2816)] = 148862, - [SMALL_STATE(2817)] = 148920, - [SMALL_STATE(2818)] = 148966, - [SMALL_STATE(2819)] = 149012, - [SMALL_STATE(2820)] = 149058, - [SMALL_STATE(2821)] = 149140, - [SMALL_STATE(2822)] = 149186, - [SMALL_STATE(2823)] = 149232, - [SMALL_STATE(2824)] = 149278, - [SMALL_STATE(2825)] = 149324, - [SMALL_STATE(2826)] = 149370, - [SMALL_STATE(2827)] = 149416, - [SMALL_STATE(2828)] = 149478, - [SMALL_STATE(2829)] = 149542, - [SMALL_STATE(2830)] = 149608, - [SMALL_STATE(2831)] = 149676, - [SMALL_STATE(2832)] = 149748, - [SMALL_STATE(2833)] = 149826, - [SMALL_STATE(2834)] = 149876, - [SMALL_STATE(2835)] = 149926, - [SMALL_STATE(2836)] = 150002, - [SMALL_STATE(2837)] = 150084, - [SMALL_STATE(2838)] = 150140, - [SMALL_STATE(2839)] = 150188, - [SMALL_STATE(2840)] = 150234, - [SMALL_STATE(2841)] = 150290, - [SMALL_STATE(2842)] = 150336, - [SMALL_STATE(2843)] = 150382, - [SMALL_STATE(2844)] = 150430, - [SMALL_STATE(2845)] = 150512, - [SMALL_STATE(2846)] = 150584, - [SMALL_STATE(2847)] = 150630, - [SMALL_STATE(2848)] = 150676, - [SMALL_STATE(2849)] = 150732, - [SMALL_STATE(2850)] = 150778, - [SMALL_STATE(2851)] = 150824, - [SMALL_STATE(2852)] = 150874, - [SMALL_STATE(2853)] = 150920, - [SMALL_STATE(2854)] = 150966, - [SMALL_STATE(2855)] = 151012, - [SMALL_STATE(2856)] = 151058, - [SMALL_STATE(2857)] = 151104, - [SMALL_STATE(2858)] = 151150, - [SMALL_STATE(2859)] = 151232, - [SMALL_STATE(2860)] = 151278, - [SMALL_STATE(2861)] = 151324, - [SMALL_STATE(2862)] = 151370, - [SMALL_STATE(2863)] = 151418, - [SMALL_STATE(2864)] = 151464, - [SMALL_STATE(2865)] = 151510, - [SMALL_STATE(2866)] = 151558, - [SMALL_STATE(2867)] = 151604, - [SMALL_STATE(2868)] = 151654, - [SMALL_STATE(2869)] = 151728, - [SMALL_STATE(2870)] = 151774, - [SMALL_STATE(2871)] = 151820, - [SMALL_STATE(2872)] = 151866, - [SMALL_STATE(2873)] = 151912, - [SMALL_STATE(2874)] = 151958, - [SMALL_STATE(2875)] = 152008, - [SMALL_STATE(2876)] = 152054, - [SMALL_STATE(2877)] = 152100, - [SMALL_STATE(2878)] = 152146, - [SMALL_STATE(2879)] = 152192, - [SMALL_STATE(2880)] = 152238, - [SMALL_STATE(2881)] = 152320, - [SMALL_STATE(2882)] = 152366, - [SMALL_STATE(2883)] = 152412, - [SMALL_STATE(2884)] = 152458, - [SMALL_STATE(2885)] = 152504, - [SMALL_STATE(2886)] = 152550, - [SMALL_STATE(2887)] = 152604, - [SMALL_STATE(2888)] = 152660, - [SMALL_STATE(2889)] = 152716, - [SMALL_STATE(2890)] = 152762, - [SMALL_STATE(2891)] = 152836, - [SMALL_STATE(2892)] = 152882, - [SMALL_STATE(2893)] = 152928, - [SMALL_STATE(2894)] = 152974, - [SMALL_STATE(2895)] = 153050, - [SMALL_STATE(2896)] = 153106, - [SMALL_STATE(2897)] = 153162, - [SMALL_STATE(2898)] = 153208, - [SMALL_STATE(2899)] = 153278, - [SMALL_STATE(2900)] = 153346, - [SMALL_STATE(2901)] = 153392, - [SMALL_STATE(2902)] = 153438, - [SMALL_STATE(2903)] = 153494, - [SMALL_STATE(2904)] = 153550, - [SMALL_STATE(2905)] = 153596, - [SMALL_STATE(2906)] = 153642, - [SMALL_STATE(2907)] = 153688, - [SMALL_STATE(2908)] = 153734, - [SMALL_STATE(2909)] = 153780, - [SMALL_STATE(2910)] = 153826, - [SMALL_STATE(2911)] = 153872, - [SMALL_STATE(2912)] = 153918, - [SMALL_STATE(2913)] = 153968, - [SMALL_STATE(2914)] = 154014, - [SMALL_STATE(2915)] = 154064, - [SMALL_STATE(2916)] = 154130, - [SMALL_STATE(2917)] = 154194, - [SMALL_STATE(2918)] = 154256, - [SMALL_STATE(2919)] = 154302, - [SMALL_STATE(2920)] = 154348, - [SMALL_STATE(2921)] = 154394, - [SMALL_STATE(2922)] = 154454, - [SMALL_STATE(2923)] = 154510, - [SMALL_STATE(2924)] = 154564, - [SMALL_STATE(2925)] = 154620, - [SMALL_STATE(2926)] = 154668, - [SMALL_STATE(2927)] = 154714, - [SMALL_STATE(2928)] = 154760, - [SMALL_STATE(2929)] = 154806, - [SMALL_STATE(2930)] = 154852, - [SMALL_STATE(2931)] = 154898, - [SMALL_STATE(2932)] = 154944, - [SMALL_STATE(2933)] = 155026, - [SMALL_STATE(2934)] = 155084, - [SMALL_STATE(2935)] = 155130, - [SMALL_STATE(2936)] = 155176, - [SMALL_STATE(2937)] = 155228, - [SMALL_STATE(2938)] = 155278, - [SMALL_STATE(2939)] = 155326, - [SMALL_STATE(2940)] = 155376, - [SMALL_STATE(2941)] = 155422, + [SMALL_STATE(2738)] = 143060, + [SMALL_STATE(2739)] = 143142, + [SMALL_STATE(2740)] = 143188, + [SMALL_STATE(2741)] = 143270, + [SMALL_STATE(2742)] = 143316, + [SMALL_STATE(2743)] = 143362, + [SMALL_STATE(2744)] = 143430, + [SMALL_STATE(2745)] = 143476, + [SMALL_STATE(2746)] = 143558, + [SMALL_STATE(2747)] = 143604, + [SMALL_STATE(2748)] = 143650, + [SMALL_STATE(2749)] = 143696, + [SMALL_STATE(2750)] = 143742, + [SMALL_STATE(2751)] = 143824, + [SMALL_STATE(2752)] = 143870, + [SMALL_STATE(2753)] = 143932, + [SMALL_STATE(2754)] = 143982, + [SMALL_STATE(2755)] = 144064, + [SMALL_STATE(2756)] = 144110, + [SMALL_STATE(2757)] = 144156, + [SMALL_STATE(2758)] = 144238, + [SMALL_STATE(2759)] = 144320, + [SMALL_STATE(2760)] = 144386, + [SMALL_STATE(2761)] = 144468, + [SMALL_STATE(2762)] = 144524, + [SMALL_STATE(2763)] = 144574, + [SMALL_STATE(2764)] = 144656, + [SMALL_STATE(2765)] = 144738, + [SMALL_STATE(2766)] = 144784, + [SMALL_STATE(2767)] = 144830, + [SMALL_STATE(2768)] = 144890, + [SMALL_STATE(2769)] = 144946, + [SMALL_STATE(2770)] = 145000, + [SMALL_STATE(2771)] = 145082, + [SMALL_STATE(2772)] = 145134, + [SMALL_STATE(2773)] = 145184, + [SMALL_STATE(2774)] = 145232, + [SMALL_STATE(2775)] = 145314, + [SMALL_STATE(2776)] = 145360, + [SMALL_STATE(2777)] = 145406, + [SMALL_STATE(2778)] = 145488, + [SMALL_STATE(2779)] = 145570, + [SMALL_STATE(2780)] = 145652, + [SMALL_STATE(2781)] = 145698, + [SMALL_STATE(2782)] = 145748, + [SMALL_STATE(2783)] = 145830, + [SMALL_STATE(2784)] = 145912, + [SMALL_STATE(2785)] = 145958, + [SMALL_STATE(2786)] = 146040, + [SMALL_STATE(2787)] = 146122, + [SMALL_STATE(2788)] = 146196, + [SMALL_STATE(2789)] = 146242, + [SMALL_STATE(2790)] = 146288, + [SMALL_STATE(2791)] = 146370, + [SMALL_STATE(2792)] = 146424, + [SMALL_STATE(2793)] = 146470, + [SMALL_STATE(2794)] = 146552, + [SMALL_STATE(2795)] = 146598, + [SMALL_STATE(2796)] = 146680, + [SMALL_STATE(2797)] = 146726, + [SMALL_STATE(2798)] = 146772, + [SMALL_STATE(2799)] = 146818, + [SMALL_STATE(2800)] = 146864, + [SMALL_STATE(2801)] = 146910, + [SMALL_STATE(2802)] = 146992, + [SMALL_STATE(2803)] = 147046, + [SMALL_STATE(2804)] = 147092, + [SMALL_STATE(2805)] = 147174, + [SMALL_STATE(2806)] = 147256, + [SMALL_STATE(2807)] = 147338, + [SMALL_STATE(2808)] = 147384, + [SMALL_STATE(2809)] = 147442, + [SMALL_STATE(2810)] = 147498, + [SMALL_STATE(2811)] = 147580, + [SMALL_STATE(2812)] = 147626, + [SMALL_STATE(2813)] = 147674, + [SMALL_STATE(2814)] = 147730, + [SMALL_STATE(2815)] = 147812, + [SMALL_STATE(2816)] = 147868, + [SMALL_STATE(2817)] = 147950, + [SMALL_STATE(2818)] = 148032, + [SMALL_STATE(2819)] = 148082, + [SMALL_STATE(2820)] = 148130, + [SMALL_STATE(2821)] = 148194, + [SMALL_STATE(2822)] = 148276, + [SMALL_STATE(2823)] = 148350, + [SMALL_STATE(2824)] = 148396, + [SMALL_STATE(2825)] = 148478, + [SMALL_STATE(2826)] = 148524, + [SMALL_STATE(2827)] = 148606, + [SMALL_STATE(2828)] = 148652, + [SMALL_STATE(2829)] = 148698, + [SMALL_STATE(2830)] = 148780, + [SMALL_STATE(2831)] = 148862, + [SMALL_STATE(2832)] = 148944, + [SMALL_STATE(2833)] = 148990, + [SMALL_STATE(2834)] = 149036, + [SMALL_STATE(2835)] = 149082, + [SMALL_STATE(2836)] = 149128, + [SMALL_STATE(2837)] = 149204, + [SMALL_STATE(2838)] = 149250, + [SMALL_STATE(2839)] = 149296, + [SMALL_STATE(2840)] = 149378, + [SMALL_STATE(2841)] = 149460, + [SMALL_STATE(2842)] = 149506, + [SMALL_STATE(2843)] = 149552, + [SMALL_STATE(2844)] = 149598, + [SMALL_STATE(2845)] = 149646, + [SMALL_STATE(2846)] = 149692, + [SMALL_STATE(2847)] = 149774, + [SMALL_STATE(2848)] = 149820, + [SMALL_STATE(2849)] = 149866, + [SMALL_STATE(2850)] = 149930, + [SMALL_STATE(2851)] = 150012, + [SMALL_STATE(2852)] = 150068, + [SMALL_STATE(2853)] = 150118, + [SMALL_STATE(2854)] = 150200, + [SMALL_STATE(2855)] = 150248, + [SMALL_STATE(2856)] = 150330, + [SMALL_STATE(2857)] = 150376, + [SMALL_STATE(2858)] = 150422, + [SMALL_STATE(2859)] = 150472, + [SMALL_STATE(2860)] = 150518, + [SMALL_STATE(2861)] = 150564, + [SMALL_STATE(2862)] = 150610, + [SMALL_STATE(2863)] = 150656, + [SMALL_STATE(2864)] = 150702, + [SMALL_STATE(2865)] = 150748, + [SMALL_STATE(2866)] = 150794, + [SMALL_STATE(2867)] = 150876, + [SMALL_STATE(2868)] = 150932, + [SMALL_STATE(2869)] = 150988, + [SMALL_STATE(2870)] = 151034, + [SMALL_STATE(2871)] = 151116, + [SMALL_STATE(2872)] = 151172, + [SMALL_STATE(2873)] = 151254, + [SMALL_STATE(2874)] = 151336, + [SMALL_STATE(2875)] = 151382, + [SMALL_STATE(2876)] = 151464, + [SMALL_STATE(2877)] = 151546, + [SMALL_STATE(2878)] = 151608, + [SMALL_STATE(2879)] = 151690, + [SMALL_STATE(2880)] = 151736, + [SMALL_STATE(2881)] = 151806, + [SMALL_STATE(2882)] = 151888, + [SMALL_STATE(2883)] = 151956, + [SMALL_STATE(2884)] = 152038, + [SMALL_STATE(2885)] = 152084, + [SMALL_STATE(2886)] = 152142, + [SMALL_STATE(2887)] = 152224, + [SMALL_STATE(2888)] = 152270, + [SMALL_STATE(2889)] = 152316, + [SMALL_STATE(2890)] = 152366, + [SMALL_STATE(2891)] = 152412, + [SMALL_STATE(2892)] = 152462, + [SMALL_STATE(2893)] = 152508, + [SMALL_STATE(2894)] = 152554, + [SMALL_STATE(2895)] = 152600, + [SMALL_STATE(2896)] = 152682, + [SMALL_STATE(2897)] = 152736, + [SMALL_STATE(2898)] = 152818, + [SMALL_STATE(2899)] = 152864, + [SMALL_STATE(2900)] = 152916, + [SMALL_STATE(2901)] = 152998, + [SMALL_STATE(2902)] = 153054, + [SMALL_STATE(2903)] = 153104, + [SMALL_STATE(2904)] = 153160, + [SMALL_STATE(2905)] = 153206, + [SMALL_STATE(2906)] = 153288, + [SMALL_STATE(2907)] = 153344, + [SMALL_STATE(2908)] = 153390, + [SMALL_STATE(2909)] = 153462, + [SMALL_STATE(2910)] = 153544, + [SMALL_STATE(2911)] = 153590, + [SMALL_STATE(2912)] = 153672, + [SMALL_STATE(2913)] = 153748, + [SMALL_STATE(2914)] = 153794, + [SMALL_STATE(2915)] = 153840, + [SMALL_STATE(2916)] = 153886, + [SMALL_STATE(2917)] = 153936, + [SMALL_STATE(2918)] = 153986, + [SMALL_STATE(2919)] = 154032, + [SMALL_STATE(2920)] = 154114, + [SMALL_STATE(2921)] = 154164, + [SMALL_STATE(2922)] = 154246, + [SMALL_STATE(2923)] = 154296, + [SMALL_STATE(2924)] = 154342, + [SMALL_STATE(2925)] = 154420, + [SMALL_STATE(2926)] = 154502, + [SMALL_STATE(2927)] = 154548, + [SMALL_STATE(2928)] = 154630, + [SMALL_STATE(2929)] = 154676, + [SMALL_STATE(2930)] = 154726, + [SMALL_STATE(2931)] = 154796, + [SMALL_STATE(2932)] = 154878, + [SMALL_STATE(2933)] = 154960, + [SMALL_STATE(2934)] = 155010, + [SMALL_STATE(2935)] = 155056, + [SMALL_STATE(2936)] = 155102, + [SMALL_STATE(2937)] = 155184, + [SMALL_STATE(2938)] = 155250, + [SMALL_STATE(2939)] = 155298, + [SMALL_STATE(2940)] = 155344, + [SMALL_STATE(2941)] = 155426, [SMALL_STATE(2942)] = 155472, - [SMALL_STATE(2943)] = 155551, - [SMALL_STATE(2944)] = 155614, - [SMALL_STATE(2945)] = 155703, - [SMALL_STATE(2946)] = 155750, - [SMALL_STATE(2947)] = 155795, - [SMALL_STATE(2948)] = 155864, - [SMALL_STATE(2949)] = 155929, - [SMALL_STATE(2950)] = 155976, - [SMALL_STATE(2951)] = 156021, - [SMALL_STATE(2952)] = 156094, - [SMALL_STATE(2953)] = 156157, - [SMALL_STATE(2954)] = 156202, - [SMALL_STATE(2955)] = 156247, - [SMALL_STATE(2956)] = 156320, - [SMALL_STATE(2957)] = 156381, - [SMALL_STATE(2958)] = 156430, - [SMALL_STATE(2959)] = 156479, - [SMALL_STATE(2960)] = 156530, - [SMALL_STATE(2961)] = 156583, - [SMALL_STATE(2962)] = 156640, - [SMALL_STATE(2963)] = 156695, - [SMALL_STATE(2964)] = 156756, - [SMALL_STATE(2965)] = 156819, - [SMALL_STATE(2966)] = 156878, - [SMALL_STATE(2967)] = 156943, - [SMALL_STATE(2968)] = 156992, - [SMALL_STATE(2969)] = 157041, - [SMALL_STATE(2970)] = 157092, - [SMALL_STATE(2971)] = 157145, - [SMALL_STATE(2972)] = 157202, - [SMALL_STATE(2973)] = 157263, - [SMALL_STATE(2974)] = 157326, - [SMALL_STATE(2975)] = 157391, - [SMALL_STATE(2976)] = 157458, - [SMALL_STATE(2977)] = 157527, - [SMALL_STATE(2978)] = 157598, - [SMALL_STATE(2979)] = 157675, - [SMALL_STATE(2980)] = 157750, - [SMALL_STATE(2981)] = 157795, - [SMALL_STATE(2982)] = 157862, - [SMALL_STATE(2983)] = 157951, - [SMALL_STATE(2984)] = 157998, - [SMALL_STATE(2985)] = 158045, - [SMALL_STATE(2986)] = 158114, - [SMALL_STATE(2987)] = 158185, - [SMALL_STATE(2988)] = 158236, - [SMALL_STATE(2989)] = 158313, - [SMALL_STATE(2990)] = 158388, - [SMALL_STATE(2991)] = 158433, - [SMALL_STATE(2992)] = 158488, - [SMALL_STATE(2993)] = 158541, - [SMALL_STATE(2994)] = 158592, - [SMALL_STATE(2995)] = 158647, - [SMALL_STATE(2996)] = 158722, - [SMALL_STATE(2997)] = 158799, - [SMALL_STATE(2998)] = 158844, - [SMALL_STATE(2999)] = 158889, - [SMALL_STATE(3000)] = 158938, - [SMALL_STATE(3001)] = 159007, - [SMALL_STATE(3002)] = 159074, - [SMALL_STATE(3003)] = 159139, - [SMALL_STATE(3004)] = 159202, - [SMALL_STATE(3005)] = 159263, - [SMALL_STATE(3006)] = 159312, - [SMALL_STATE(3007)] = 159367, - [SMALL_STATE(3008)] = 159424, - [SMALL_STATE(3009)] = 159477, - [SMALL_STATE(3010)] = 159524, - [SMALL_STATE(3011)] = 159575, - [SMALL_STATE(3012)] = 159630, - [SMALL_STATE(3013)] = 159687, - [SMALL_STATE(3014)] = 159736, - [SMALL_STATE(3015)] = 159785, - [SMALL_STATE(3016)] = 159840, - [SMALL_STATE(3017)] = 159895, - [SMALL_STATE(3018)] = 159972, - [SMALL_STATE(3019)] = 160027, - [SMALL_STATE(3020)] = 160084, - [SMALL_STATE(3021)] = 160129, - [SMALL_STATE(3022)] = 160174, - [SMALL_STATE(3023)] = 160253, - [SMALL_STATE(3024)] = 160302, - [SMALL_STATE(3025)] = 160347, - [SMALL_STATE(3026)] = 160392, - [SMALL_STATE(3027)] = 160437, - [SMALL_STATE(3028)] = 160492, - [SMALL_STATE(3029)] = 160539, - [SMALL_STATE(3030)] = 160586, - [SMALL_STATE(3031)] = 160635, - [SMALL_STATE(3032)] = 160682, - [SMALL_STATE(3033)] = 160771, - [SMALL_STATE(3034)] = 160850, - [SMALL_STATE(3035)] = 160921, - [SMALL_STATE(3036)] = 160968, - [SMALL_STATE(3037)] = 161035, - [SMALL_STATE(3038)] = 161114, - [SMALL_STATE(3039)] = 161203, - [SMALL_STATE(3040)] = 161256, - [SMALL_STATE(3041)] = 161335, - [SMALL_STATE(3042)] = 161392, - [SMALL_STATE(3043)] = 161471, - [SMALL_STATE(3044)] = 161526, - [SMALL_STATE(3045)] = 161581, - [SMALL_STATE(3046)] = 161626, - [SMALL_STATE(3047)] = 161683, - [SMALL_STATE(3048)] = 161738, - [SMALL_STATE(3049)] = 161793, - [SMALL_STATE(3050)] = 161838, - [SMALL_STATE(3051)] = 161911, - [SMALL_STATE(3052)] = 161972, - [SMALL_STATE(3053)] = 162051, - [SMALL_STATE(3054)] = 162096, - [SMALL_STATE(3055)] = 162151, - [SMALL_STATE(3056)] = 162196, - [SMALL_STATE(3057)] = 162241, - [SMALL_STATE(3058)] = 162330, - [SMALL_STATE(3059)] = 162375, - [SMALL_STATE(3060)] = 162440, - [SMALL_STATE(3061)] = 162513, - [SMALL_STATE(3062)] = 162580, - [SMALL_STATE(3063)] = 162649, - [SMALL_STATE(3064)] = 162720, - [SMALL_STATE(3065)] = 162797, - [SMALL_STATE(3066)] = 162846, - [SMALL_STATE(3067)] = 162935, - [SMALL_STATE(3068)] = 163010, - [SMALL_STATE(3069)] = 163065, - [SMALL_STATE(3070)] = 163112, - [SMALL_STATE(3071)] = 163201, - [SMALL_STATE(3072)] = 163246, - [SMALL_STATE(3073)] = 163293, - [SMALL_STATE(3074)] = 163372, - [SMALL_STATE(3075)] = 163417, - [SMALL_STATE(3076)] = 163464, - [SMALL_STATE(3077)] = 163509, - [SMALL_STATE(3078)] = 163558, - [SMALL_STATE(3079)] = 163607, - [SMALL_STATE(3080)] = 163658, - [SMALL_STATE(3081)] = 163711, - [SMALL_STATE(3082)] = 163768, - [SMALL_STATE(3083)] = 163829, - [SMALL_STATE(3084)] = 163892, - [SMALL_STATE(3085)] = 163957, - [SMALL_STATE(3086)] = 164036, - [SMALL_STATE(3087)] = 164103, - [SMALL_STATE(3088)] = 164182, - [SMALL_STATE(3089)] = 164251, - [SMALL_STATE(3090)] = 164308, - [SMALL_STATE(3091)] = 164379, - [SMALL_STATE(3092)] = 164458, - [SMALL_STATE(3093)] = 164509, - [SMALL_STATE(3094)] = 164560, - [SMALL_STATE(3095)] = 164637, - [SMALL_STATE(3096)] = 164712, - [SMALL_STATE(3097)] = 164767, - [SMALL_STATE(3098)] = 164822, - [SMALL_STATE(3099)] = 164879, - [SMALL_STATE(3100)] = 164926, - [SMALL_STATE(3101)] = 164981, - [SMALL_STATE(3102)] = 165036, - [SMALL_STATE(3103)] = 165091, - [SMALL_STATE(3104)] = 165138, - [SMALL_STATE(3105)] = 165217, - [SMALL_STATE(3106)] = 165306, - [SMALL_STATE(3107)] = 165395, - [SMALL_STATE(3108)] = 165450, - [SMALL_STATE(3109)] = 165505, - [SMALL_STATE(3110)] = 165594, - [SMALL_STATE(3111)] = 165645, - [SMALL_STATE(3112)] = 165724, - [SMALL_STATE(3113)] = 165781, - [SMALL_STATE(3114)] = 165826, - [SMALL_STATE(3115)] = 165875, - [SMALL_STATE(3116)] = 165926, - [SMALL_STATE(3117)] = 165971, - [SMALL_STATE(3118)] = 166022, - [SMALL_STATE(3119)] = 166067, - [SMALL_STATE(3120)] = 166138, - [SMALL_STATE(3121)] = 166189, - [SMALL_STATE(3122)] = 166234, - [SMALL_STATE(3123)] = 166323, - [SMALL_STATE(3124)] = 166402, - [SMALL_STATE(3125)] = 166481, - [SMALL_STATE(3126)] = 166560, - [SMALL_STATE(3127)] = 166639, - [SMALL_STATE(3128)] = 166702, - [SMALL_STATE(3129)] = 166781, - [SMALL_STATE(3130)] = 166860, - [SMALL_STATE(3131)] = 166907, - [SMALL_STATE(3132)] = 166986, - [SMALL_STATE(3133)] = 167041, - [SMALL_STATE(3134)] = 167130, - [SMALL_STATE(3135)] = 167185, - [SMALL_STATE(3136)] = 167274, - [SMALL_STATE(3137)] = 167363, - [SMALL_STATE(3138)] = 167452, - [SMALL_STATE(3139)] = 167497, - [SMALL_STATE(3140)] = 167576, - [SMALL_STATE(3141)] = 167655, - [SMALL_STATE(3142)] = 167734, - [SMALL_STATE(3143)] = 167813, - [SMALL_STATE(3144)] = 167892, - [SMALL_STATE(3145)] = 167971, - [SMALL_STATE(3146)] = 168050, - [SMALL_STATE(3147)] = 168095, - [SMALL_STATE(3148)] = 168174, - [SMALL_STATE(3149)] = 168253, - [SMALL_STATE(3150)] = 168298, - [SMALL_STATE(3151)] = 168377, - [SMALL_STATE(3152)] = 168450, - [SMALL_STATE(3153)] = 168529, - [SMALL_STATE(3154)] = 168608, - [SMALL_STATE(3155)] = 168687, - [SMALL_STATE(3156)] = 168766, - [SMALL_STATE(3157)] = 168845, - [SMALL_STATE(3158)] = 168890, - [SMALL_STATE(3159)] = 168969, - [SMALL_STATE(3160)] = 169014, - [SMALL_STATE(3161)] = 169059, - [SMALL_STATE(3162)] = 169104, - [SMALL_STATE(3163)] = 169159, - [SMALL_STATE(3164)] = 169214, + [SMALL_STATE(2943)] = 155537, + [SMALL_STATE(2944)] = 155592, + [SMALL_STATE(2945)] = 155681, + [SMALL_STATE(2946)] = 155736, + [SMALL_STATE(2947)] = 155825, + [SMALL_STATE(2948)] = 155880, + [SMALL_STATE(2949)] = 155949, + [SMALL_STATE(2950)] = 156004, + [SMALL_STATE(2951)] = 156061, + [SMALL_STATE(2952)] = 156134, + [SMALL_STATE(2953)] = 156179, + [SMALL_STATE(2954)] = 156246, + [SMALL_STATE(2955)] = 156301, + [SMALL_STATE(2956)] = 156358, + [SMALL_STATE(2957)] = 156423, + [SMALL_STATE(2958)] = 156486, + [SMALL_STATE(2959)] = 156565, + [SMALL_STATE(2960)] = 156610, + [SMALL_STATE(2961)] = 156689, + [SMALL_STATE(2962)] = 156768, + [SMALL_STATE(2963)] = 156829, + [SMALL_STATE(2964)] = 156886, + [SMALL_STATE(2965)] = 156965, + [SMALL_STATE(2966)] = 157020, + [SMALL_STATE(2967)] = 157075, + [SMALL_STATE(2968)] = 157120, + [SMALL_STATE(2969)] = 157199, + [SMALL_STATE(2970)] = 157272, + [SMALL_STATE(2971)] = 157361, + [SMALL_STATE(2972)] = 157408, + [SMALL_STATE(2973)] = 157497, + [SMALL_STATE(2974)] = 157586, + [SMALL_STATE(2975)] = 157675, + [SMALL_STATE(2976)] = 157732, + [SMALL_STATE(2977)] = 157777, + [SMALL_STATE(2978)] = 157830, + [SMALL_STATE(2979)] = 157881, + [SMALL_STATE(2980)] = 157934, + [SMALL_STATE(2981)] = 158013, + [SMALL_STATE(2982)] = 158092, + [SMALL_STATE(2983)] = 158171, + [SMALL_STATE(2984)] = 158250, + [SMALL_STATE(2985)] = 158301, + [SMALL_STATE(2986)] = 158346, + [SMALL_STATE(2987)] = 158421, + [SMALL_STATE(2988)] = 158466, + [SMALL_STATE(2989)] = 158545, + [SMALL_STATE(2990)] = 158594, + [SMALL_STATE(2991)] = 158665, + [SMALL_STATE(2992)] = 158754, + [SMALL_STATE(2993)] = 158843, + [SMALL_STATE(2994)] = 158932, + [SMALL_STATE(2995)] = 159021, + [SMALL_STATE(2996)] = 159076, + [SMALL_STATE(2997)] = 159121, + [SMALL_STATE(2998)] = 159200, + [SMALL_STATE(2999)] = 159245, + [SMALL_STATE(3000)] = 159324, + [SMALL_STATE(3001)] = 159403, + [SMALL_STATE(3002)] = 159480, + [SMALL_STATE(3003)] = 159529, + [SMALL_STATE(3004)] = 159608, + [SMALL_STATE(3005)] = 159657, + [SMALL_STATE(3006)] = 159720, + [SMALL_STATE(3007)] = 159765, + [SMALL_STATE(3008)] = 159844, + [SMALL_STATE(3009)] = 159923, + [SMALL_STATE(3010)] = 159978, + [SMALL_STATE(3011)] = 160033, + [SMALL_STATE(3012)] = 160078, + [SMALL_STATE(3013)] = 160123, + [SMALL_STATE(3014)] = 160212, + [SMALL_STATE(3015)] = 160291, + [SMALL_STATE(3016)] = 160370, + [SMALL_STATE(3017)] = 160421, + [SMALL_STATE(3018)] = 160472, + [SMALL_STATE(3019)] = 160551, + [SMALL_STATE(3020)] = 160596, + [SMALL_STATE(3021)] = 160641, + [SMALL_STATE(3022)] = 160720, + [SMALL_STATE(3023)] = 160765, + [SMALL_STATE(3024)] = 160816, + [SMALL_STATE(3025)] = 160861, + [SMALL_STATE(3026)] = 160932, + [SMALL_STATE(3027)] = 160987, + [SMALL_STATE(3028)] = 161042, + [SMALL_STATE(3029)] = 161087, + [SMALL_STATE(3030)] = 161166, + [SMALL_STATE(3031)] = 161243, + [SMALL_STATE(3032)] = 161290, + [SMALL_STATE(3033)] = 161337, + [SMALL_STATE(3034)] = 161384, + [SMALL_STATE(3035)] = 161463, + [SMALL_STATE(3036)] = 161512, + [SMALL_STATE(3037)] = 161591, + [SMALL_STATE(3038)] = 161670, + [SMALL_STATE(3039)] = 161749, + [SMALL_STATE(3040)] = 161828, + [SMALL_STATE(3041)] = 161883, + [SMALL_STATE(3042)] = 161958, + [SMALL_STATE(3043)] = 162003, + [SMALL_STATE(3044)] = 162048, + [SMALL_STATE(3045)] = 162093, + [SMALL_STATE(3046)] = 162170, + [SMALL_STATE(3047)] = 162241, + [SMALL_STATE(3048)] = 162286, + [SMALL_STATE(3049)] = 162355, + [SMALL_STATE(3050)] = 162422, + [SMALL_STATE(3051)] = 162487, + [SMALL_STATE(3052)] = 162550, + [SMALL_STATE(3053)] = 162611, + [SMALL_STATE(3054)] = 162668, + [SMALL_STATE(3055)] = 162721, + [SMALL_STATE(3056)] = 162810, + [SMALL_STATE(3057)] = 162861, + [SMALL_STATE(3058)] = 162910, + [SMALL_STATE(3059)] = 162959, + [SMALL_STATE(3060)] = 163014, + [SMALL_STATE(3061)] = 163061, + [SMALL_STATE(3062)] = 163108, + [SMALL_STATE(3063)] = 163197, + [SMALL_STATE(3064)] = 163276, + [SMALL_STATE(3065)] = 163355, + [SMALL_STATE(3066)] = 163434, + [SMALL_STATE(3067)] = 163483, + [SMALL_STATE(3068)] = 163562, + [SMALL_STATE(3069)] = 163607, + [SMALL_STATE(3070)] = 163676, + [SMALL_STATE(3071)] = 163723, + [SMALL_STATE(3072)] = 163770, + [SMALL_STATE(3073)] = 163837, + [SMALL_STATE(3074)] = 163882, + [SMALL_STATE(3075)] = 163937, + [SMALL_STATE(3076)] = 164012, + [SMALL_STATE(3077)] = 164059, + [SMALL_STATE(3078)] = 164138, + [SMALL_STATE(3079)] = 164217, + [SMALL_STATE(3080)] = 164294, + [SMALL_STATE(3081)] = 164365, + [SMALL_STATE(3082)] = 164434, + [SMALL_STATE(3083)] = 164501, + [SMALL_STATE(3084)] = 164566, + [SMALL_STATE(3085)] = 164629, + [SMALL_STATE(3086)] = 164694, + [SMALL_STATE(3087)] = 164755, + [SMALL_STATE(3088)] = 164800, + [SMALL_STATE(3089)] = 164857, + [SMALL_STATE(3090)] = 164910, + [SMALL_STATE(3091)] = 164961, + [SMALL_STATE(3092)] = 165010, + [SMALL_STATE(3093)] = 165059, + [SMALL_STATE(3094)] = 165122, + [SMALL_STATE(3095)] = 165183, + [SMALL_STATE(3096)] = 165242, + [SMALL_STATE(3097)] = 165297, + [SMALL_STATE(3098)] = 165344, + [SMALL_STATE(3099)] = 165391, + [SMALL_STATE(3100)] = 165448, + [SMALL_STATE(3101)] = 165495, + [SMALL_STATE(3102)] = 165542, + [SMALL_STATE(3103)] = 165599, + [SMALL_STATE(3104)] = 165646, + [SMALL_STATE(3105)] = 165691, + [SMALL_STATE(3106)] = 165764, + [SMALL_STATE(3107)] = 165819, + [SMALL_STATE(3108)] = 165872, + [SMALL_STATE(3109)] = 165923, + [SMALL_STATE(3110)] = 165972, + [SMALL_STATE(3111)] = 166021, + [SMALL_STATE(3112)] = 166078, + [SMALL_STATE(3113)] = 166133, + [SMALL_STATE(3114)] = 166212, + [SMALL_STATE(3115)] = 166301, + [SMALL_STATE(3116)] = 166348, + [SMALL_STATE(3117)] = 166403, + [SMALL_STATE(3118)] = 166448, + [SMALL_STATE(3119)] = 166493, + [SMALL_STATE(3120)] = 166582, + [SMALL_STATE(3121)] = 166637, + [SMALL_STATE(3122)] = 166682, + [SMALL_STATE(3123)] = 166737, + [SMALL_STATE(3124)] = 166794, + [SMALL_STATE(3125)] = 166873, + [SMALL_STATE(3126)] = 166918, + [SMALL_STATE(3127)] = 166973, + [SMALL_STATE(3128)] = 167028, + [SMALL_STATE(3129)] = 167083, + [SMALL_STATE(3130)] = 167158, + [SMALL_STATE(3131)] = 167235, + [SMALL_STATE(3132)] = 167306, + [SMALL_STATE(3133)] = 167375, + [SMALL_STATE(3134)] = 167442, + [SMALL_STATE(3135)] = 167493, + [SMALL_STATE(3136)] = 167538, + [SMALL_STATE(3137)] = 167601, + [SMALL_STATE(3138)] = 167662, + [SMALL_STATE(3139)] = 167719, + [SMALL_STATE(3140)] = 167774, + [SMALL_STATE(3141)] = 167827, + [SMALL_STATE(3142)] = 167878, + [SMALL_STATE(3143)] = 167923, + [SMALL_STATE(3144)] = 167972, + [SMALL_STATE(3145)] = 168045, + [SMALL_STATE(3146)] = 168094, + [SMALL_STATE(3147)] = 168145, + [SMALL_STATE(3148)] = 168194, + [SMALL_STATE(3149)] = 168267, + [SMALL_STATE(3150)] = 168318, + [SMALL_STATE(3151)] = 168363, + [SMALL_STATE(3152)] = 168418, + [SMALL_STATE(3153)] = 168493, + [SMALL_STATE(3154)] = 168572, + [SMALL_STATE(3155)] = 168649, + [SMALL_STATE(3156)] = 168720, + [SMALL_STATE(3157)] = 168765, + [SMALL_STATE(3158)] = 168834, + [SMALL_STATE(3159)] = 168901, + [SMALL_STATE(3160)] = 168966, + [SMALL_STATE(3161)] = 169029, + [SMALL_STATE(3162)] = 169090, + [SMALL_STATE(3163)] = 169179, + [SMALL_STATE(3164)] = 169258, [SMALL_STATE(3165)] = 169303, - [SMALL_STATE(3166)] = 169379, - [SMALL_STATE(3167)] = 169455, - [SMALL_STATE(3168)] = 169499, - [SMALL_STATE(3169)] = 169543, - [SMALL_STATE(3170)] = 169587, - [SMALL_STATE(3171)] = 169631, - [SMALL_STATE(3172)] = 169675, - [SMALL_STATE(3173)] = 169719, - [SMALL_STATE(3174)] = 169763, - [SMALL_STATE(3175)] = 169807, - [SMALL_STATE(3176)] = 169851, - [SMALL_STATE(3177)] = 169895, - [SMALL_STATE(3178)] = 169939, - [SMALL_STATE(3179)] = 169983, - [SMALL_STATE(3180)] = 170027, - [SMALL_STATE(3181)] = 170071, - [SMALL_STATE(3182)] = 170115, - [SMALL_STATE(3183)] = 170191, - [SMALL_STATE(3184)] = 170245, - [SMALL_STATE(3185)] = 170289, - [SMALL_STATE(3186)] = 170365, - [SMALL_STATE(3187)] = 170419, - [SMALL_STATE(3188)] = 170473, - [SMALL_STATE(3189)] = 170543, - [SMALL_STATE(3190)] = 170587, - [SMALL_STATE(3191)] = 170631, - [SMALL_STATE(3192)] = 170675, - [SMALL_STATE(3193)] = 170751, - [SMALL_STATE(3194)] = 170805, - [SMALL_STATE(3195)] = 170849, - [SMALL_STATE(3196)] = 170925, - [SMALL_STATE(3197)] = 170973, - [SMALL_STATE(3198)] = 171029, - [SMALL_STATE(3199)] = 171077, - [SMALL_STATE(3200)] = 171127, - [SMALL_STATE(3201)] = 171179, - [SMALL_STATE(3202)] = 171233, - [SMALL_STATE(3203)] = 171291, - [SMALL_STATE(3204)] = 171335, - [SMALL_STATE(3205)] = 171411, - [SMALL_STATE(3206)] = 171471, - [SMALL_STATE(3207)] = 171515, - [SMALL_STATE(3208)] = 171577, - [SMALL_STATE(3209)] = 171621, - [SMALL_STATE(3210)] = 171697, - [SMALL_STATE(3211)] = 171741, - [SMALL_STATE(3212)] = 171785, - [SMALL_STATE(3213)] = 171861, - [SMALL_STATE(3214)] = 171905, - [SMALL_STATE(3215)] = 171969, - [SMALL_STATE(3216)] = 172013, - [SMALL_STATE(3217)] = 172077, - [SMALL_STATE(3218)] = 172143, - [SMALL_STATE(3219)] = 172211, - [SMALL_STATE(3220)] = 172255, - [SMALL_STATE(3221)] = 172299, - [SMALL_STATE(3222)] = 172343, - [SMALL_STATE(3223)] = 172387, - [SMALL_STATE(3224)] = 172431, - [SMALL_STATE(3225)] = 172507, - [SMALL_STATE(3226)] = 172551, - [SMALL_STATE(3227)] = 172595, - [SMALL_STATE(3228)] = 172649, - [SMALL_STATE(3229)] = 172693, - [SMALL_STATE(3230)] = 172737, - [SMALL_STATE(3231)] = 172791, - [SMALL_STATE(3232)] = 172835, - [SMALL_STATE(3233)] = 172879, - [SMALL_STATE(3234)] = 172965, - [SMALL_STATE(3235)] = 173009, - [SMALL_STATE(3236)] = 173085, - [SMALL_STATE(3237)] = 173171, - [SMALL_STATE(3238)] = 173225, - [SMALL_STATE(3239)] = 173279, - [SMALL_STATE(3240)] = 173355, - [SMALL_STATE(3241)] = 173409, - [SMALL_STATE(3242)] = 173453, - [SMALL_STATE(3243)] = 173499, - [SMALL_STATE(3244)] = 173553, - [SMALL_STATE(3245)] = 173629, - [SMALL_STATE(3246)] = 173673, - [SMALL_STATE(3247)] = 173721, - [SMALL_STATE(3248)] = 173771, - [SMALL_STATE(3249)] = 173823, - [SMALL_STATE(3250)] = 173877, - [SMALL_STATE(3251)] = 173921, - [SMALL_STATE(3252)] = 173965, - [SMALL_STATE(3253)] = 174041, - [SMALL_STATE(3254)] = 174085, - [SMALL_STATE(3255)] = 174129, - [SMALL_STATE(3256)] = 174173, - [SMALL_STATE(3257)] = 174217, - [SMALL_STATE(3258)] = 174293, - [SMALL_STATE(3259)] = 174351, - [SMALL_STATE(3260)] = 174411, - [SMALL_STATE(3261)] = 174487, - [SMALL_STATE(3262)] = 174549, - [SMALL_STATE(3263)] = 174613, - [SMALL_STATE(3264)] = 174679, - [SMALL_STATE(3265)] = 174747, - [SMALL_STATE(3266)] = 174821, - [SMALL_STATE(3267)] = 174893, - [SMALL_STATE(3268)] = 174937, - [SMALL_STATE(3269)] = 175013, - [SMALL_STATE(3270)] = 175067, - [SMALL_STATE(3271)] = 175121, - [SMALL_STATE(3272)] = 175165, - [SMALL_STATE(3273)] = 175209, - [SMALL_STATE(3274)] = 175285, - [SMALL_STATE(3275)] = 175361, - [SMALL_STATE(3276)] = 175405, - [SMALL_STATE(3277)] = 175451, - [SMALL_STATE(3278)] = 175495, - [SMALL_STATE(3279)] = 175549, - [SMALL_STATE(3280)] = 175593, - [SMALL_STATE(3281)] = 175637, - [SMALL_STATE(3282)] = 175683, - [SMALL_STATE(3283)] = 175727, - [SMALL_STATE(3284)] = 175781, - [SMALL_STATE(3285)] = 175857, - [SMALL_STATE(3286)] = 175901, - [SMALL_STATE(3287)] = 175945, - [SMALL_STATE(3288)] = 175989, - [SMALL_STATE(3289)] = 176033, - [SMALL_STATE(3290)] = 176109, - [SMALL_STATE(3291)] = 176153, - [SMALL_STATE(3292)] = 176197, - [SMALL_STATE(3293)] = 176267, - [SMALL_STATE(3294)] = 176343, - [SMALL_STATE(3295)] = 176387, - [SMALL_STATE(3296)] = 176431, - [SMALL_STATE(3297)] = 176507, - [SMALL_STATE(3298)] = 176551, - [SMALL_STATE(3299)] = 176605, - [SMALL_STATE(3300)] = 176681, - [SMALL_STATE(3301)] = 176725, - [SMALL_STATE(3302)] = 176801, - [SMALL_STATE(3303)] = 176877, - [SMALL_STATE(3304)] = 176953, - [SMALL_STATE(3305)] = 177029, - [SMALL_STATE(3306)] = 177083, - [SMALL_STATE(3307)] = 177127, - [SMALL_STATE(3308)] = 177171, - [SMALL_STATE(3309)] = 177247, - [SMALL_STATE(3310)] = 177323, - [SMALL_STATE(3311)] = 177409, - [SMALL_STATE(3312)] = 177453, - [SMALL_STATE(3313)] = 177497, - [SMALL_STATE(3314)] = 177551, - [SMALL_STATE(3315)] = 177625, - [SMALL_STATE(3316)] = 177701, - [SMALL_STATE(3317)] = 177777, - [SMALL_STATE(3318)] = 177853, - [SMALL_STATE(3319)] = 177929, - [SMALL_STATE(3320)] = 177999, - [SMALL_STATE(3321)] = 178075, - [SMALL_STATE(3322)] = 178151, - [SMALL_STATE(3323)] = 178195, - [SMALL_STATE(3324)] = 178263, - [SMALL_STATE(3325)] = 178339, - [SMALL_STATE(3326)] = 178415, - [SMALL_STATE(3327)] = 178491, - [SMALL_STATE(3328)] = 178557, - [SMALL_STATE(3329)] = 178633, - [SMALL_STATE(3330)] = 178709, - [SMALL_STATE(3331)] = 178773, - [SMALL_STATE(3332)] = 178817, - [SMALL_STATE(3333)] = 178879, - [SMALL_STATE(3334)] = 178939, - [SMALL_STATE(3335)] = 179015, - [SMALL_STATE(3336)] = 179071, - [SMALL_STATE(3337)] = 179147, - [SMALL_STATE(3338)] = 179223, - [SMALL_STATE(3339)] = 179299, - [SMALL_STATE(3340)] = 179375, - [SMALL_STATE(3341)] = 179451, - [SMALL_STATE(3342)] = 179527, - [SMALL_STATE(3343)] = 179603, - [SMALL_STATE(3344)] = 179679, - [SMALL_STATE(3345)] = 179755, - [SMALL_STATE(3346)] = 179807, - [SMALL_STATE(3347)] = 179883, - [SMALL_STATE(3348)] = 179933, - [SMALL_STATE(3349)] = 180009, - [SMALL_STATE(3350)] = 180085, - [SMALL_STATE(3351)] = 180161, - [SMALL_STATE(3352)] = 180209, - [SMALL_STATE(3353)] = 180253, - [SMALL_STATE(3354)] = 180297, - [SMALL_STATE(3355)] = 180341, - [SMALL_STATE(3356)] = 180417, - [SMALL_STATE(3357)] = 180465, - [SMALL_STATE(3358)] = 180541, - [SMALL_STATE(3359)] = 180613, - [SMALL_STATE(3360)] = 180657, - [SMALL_STATE(3361)] = 180701, - [SMALL_STATE(3362)] = 180745, - [SMALL_STATE(3363)] = 180821, - [SMALL_STATE(3364)] = 180897, - [SMALL_STATE(3365)] = 180973, - [SMALL_STATE(3366)] = 181049, - [SMALL_STATE(3367)] = 181125, - [SMALL_STATE(3368)] = 181169, - [SMALL_STATE(3369)] = 181245, - [SMALL_STATE(3370)] = 181321, - [SMALL_STATE(3371)] = 181397, - [SMALL_STATE(3372)] = 181473, - [SMALL_STATE(3373)] = 181549, - [SMALL_STATE(3374)] = 181625, - [SMALL_STATE(3375)] = 181701, - [SMALL_STATE(3376)] = 181745, - [SMALL_STATE(3377)] = 181789, - [SMALL_STATE(3378)] = 181875, - [SMALL_STATE(3379)] = 181961, - [SMALL_STATE(3380)] = 182031, - [SMALL_STATE(3381)] = 182075, - [SMALL_STATE(3382)] = 182123, - [SMALL_STATE(3383)] = 182209, - [SMALL_STATE(3384)] = 182295, - [SMALL_STATE(3385)] = 182343, - [SMALL_STATE(3386)] = 182429, - [SMALL_STATE(3387)] = 182515, - [SMALL_STATE(3388)] = 182565, - [SMALL_STATE(3389)] = 182651, - [SMALL_STATE(3390)] = 182737, - [SMALL_STATE(3391)] = 182789, - [SMALL_STATE(3392)] = 182833, - [SMALL_STATE(3393)] = 182887, - [SMALL_STATE(3394)] = 182931, - [SMALL_STATE(3395)] = 182989, - [SMALL_STATE(3396)] = 183049, - [SMALL_STATE(3397)] = 183093, - [SMALL_STATE(3398)] = 183169, - [SMALL_STATE(3399)] = 183213, - [SMALL_STATE(3400)] = 183275, - [SMALL_STATE(3401)] = 183319, - [SMALL_STATE(3402)] = 183395, - [SMALL_STATE(3403)] = 183459, - [SMALL_STATE(3404)] = 183523, - [SMALL_STATE(3405)] = 183589, - [SMALL_STATE(3406)] = 183657, - [SMALL_STATE(3407)] = 183701, - [SMALL_STATE(3408)] = 183787, - [SMALL_STATE(3409)] = 183863, - [SMALL_STATE(3410)] = 183909, - [SMALL_STATE(3411)] = 183957, - [SMALL_STATE(3412)] = 184043, - [SMALL_STATE(3413)] = 184093, - [SMALL_STATE(3414)] = 184145, - [SMALL_STATE(3415)] = 184199, - [SMALL_STATE(3416)] = 184243, - [SMALL_STATE(3417)] = 184329, - [SMALL_STATE(3418)] = 184383, - [SMALL_STATE(3419)] = 184427, - [SMALL_STATE(3420)] = 184513, - [SMALL_STATE(3421)] = 184599, - [SMALL_STATE(3422)] = 184653, - [SMALL_STATE(3423)] = 184739, - [SMALL_STATE(3424)] = 184825, - [SMALL_STATE(3425)] = 184911, - [SMALL_STATE(3426)] = 184969, - [SMALL_STATE(3427)] = 185045, - [SMALL_STATE(3428)] = 185089, - [SMALL_STATE(3429)] = 185149, - [SMALL_STATE(3430)] = 185211, - [SMALL_STATE(3431)] = 185275, - [SMALL_STATE(3432)] = 185341, - [SMALL_STATE(3433)] = 185409, - [SMALL_STATE(3434)] = 185483, - [SMALL_STATE(3435)] = 185555, - [SMALL_STATE(3436)] = 185631, - [SMALL_STATE(3437)] = 185675, - [SMALL_STATE(3438)] = 185761, - [SMALL_STATE(3439)] = 185847, - [SMALL_STATE(3440)] = 185891, - [SMALL_STATE(3441)] = 185977, - [SMALL_STATE(3442)] = 186047, - [SMALL_STATE(3443)] = 186091, - [SMALL_STATE(3444)] = 186135, - [SMALL_STATE(3445)] = 186179, - [SMALL_STATE(3446)] = 186223, - [SMALL_STATE(3447)] = 186277, - [SMALL_STATE(3448)] = 186323, - [SMALL_STATE(3449)] = 186367, - [SMALL_STATE(3450)] = 186421, - [SMALL_STATE(3451)] = 186465, - [SMALL_STATE(3452)] = 186551, - [SMALL_STATE(3453)] = 186637, - [SMALL_STATE(3454)] = 186681, - [SMALL_STATE(3455)] = 186727, + [SMALL_STATE(3166)] = 169347, + [SMALL_STATE(3167)] = 169391, + [SMALL_STATE(3168)] = 169435, + [SMALL_STATE(3169)] = 169511, + [SMALL_STATE(3170)] = 169555, + [SMALL_STATE(3171)] = 169605, + [SMALL_STATE(3172)] = 169681, + [SMALL_STATE(3173)] = 169735, + [SMALL_STATE(3174)] = 169779, + [SMALL_STATE(3175)] = 169823, + [SMALL_STATE(3176)] = 169867, + [SMALL_STATE(3177)] = 169943, + [SMALL_STATE(3178)] = 169987, + [SMALL_STATE(3179)] = 170039, + [SMALL_STATE(3180)] = 170083, + [SMALL_STATE(3181)] = 170127, + [SMALL_STATE(3182)] = 170171, + [SMALL_STATE(3183)] = 170225, + [SMALL_STATE(3184)] = 170301, + [SMALL_STATE(3185)] = 170365, + [SMALL_STATE(3186)] = 170409, + [SMALL_STATE(3187)] = 170485, + [SMALL_STATE(3188)] = 170533, + [SMALL_STATE(3189)] = 170619, + [SMALL_STATE(3190)] = 170705, + [SMALL_STATE(3191)] = 170791, + [SMALL_STATE(3192)] = 170877, + [SMALL_STATE(3193)] = 170963, + [SMALL_STATE(3194)] = 171049, + [SMALL_STATE(3195)] = 171125, + [SMALL_STATE(3196)] = 171189, + [SMALL_STATE(3197)] = 171233, + [SMALL_STATE(3198)] = 171295, + [SMALL_STATE(3199)] = 171339, + [SMALL_STATE(3200)] = 171415, + [SMALL_STATE(3201)] = 171491, + [SMALL_STATE(3202)] = 171535, + [SMALL_STATE(3203)] = 171585, + [SMALL_STATE(3204)] = 171629, + [SMALL_STATE(3205)] = 171673, + [SMALL_STATE(3206)] = 171727, + [SMALL_STATE(3207)] = 171803, + [SMALL_STATE(3208)] = 171847, + [SMALL_STATE(3209)] = 171901, + [SMALL_STATE(3210)] = 171977, + [SMALL_STATE(3211)] = 172021, + [SMALL_STATE(3212)] = 172097, + [SMALL_STATE(3213)] = 172163, + [SMALL_STATE(3214)] = 172239, + [SMALL_STATE(3215)] = 172283, + [SMALL_STATE(3216)] = 172327, + [SMALL_STATE(3217)] = 172403, + [SMALL_STATE(3218)] = 172447, + [SMALL_STATE(3219)] = 172523, + [SMALL_STATE(3220)] = 172567, + [SMALL_STATE(3221)] = 172611, + [SMALL_STATE(3222)] = 172687, + [SMALL_STATE(3223)] = 172763, + [SMALL_STATE(3224)] = 172839, + [SMALL_STATE(3225)] = 172915, + [SMALL_STATE(3226)] = 172959, + [SMALL_STATE(3227)] = 173035, + [SMALL_STATE(3228)] = 173111, + [SMALL_STATE(3229)] = 173155, + [SMALL_STATE(3230)] = 173231, + [SMALL_STATE(3231)] = 173275, + [SMALL_STATE(3232)] = 173319, + [SMALL_STATE(3233)] = 173395, + [SMALL_STATE(3234)] = 173439, + [SMALL_STATE(3235)] = 173483, + [SMALL_STATE(3236)] = 173559, + [SMALL_STATE(3237)] = 173603, + [SMALL_STATE(3238)] = 173679, + [SMALL_STATE(3239)] = 173723, + [SMALL_STATE(3240)] = 173809, + [SMALL_STATE(3241)] = 173885, + [SMALL_STATE(3242)] = 173955, + [SMALL_STATE(3243)] = 173999, + [SMALL_STATE(3244)] = 174043, + [SMALL_STATE(3245)] = 174119, + [SMALL_STATE(3246)] = 174163, + [SMALL_STATE(3247)] = 174207, + [SMALL_STATE(3248)] = 174251, + [SMALL_STATE(3249)] = 174327, + [SMALL_STATE(3250)] = 174403, + [SMALL_STATE(3251)] = 174479, + [SMALL_STATE(3252)] = 174533, + [SMALL_STATE(3253)] = 174579, + [SMALL_STATE(3254)] = 174655, + [SMALL_STATE(3255)] = 174709, + [SMALL_STATE(3256)] = 174785, + [SMALL_STATE(3257)] = 174829, + [SMALL_STATE(3258)] = 174883, + [SMALL_STATE(3259)] = 174959, + [SMALL_STATE(3260)] = 175003, + [SMALL_STATE(3261)] = 175047, + [SMALL_STATE(3262)] = 175123, + [SMALL_STATE(3263)] = 175177, + [SMALL_STATE(3264)] = 175221, + [SMALL_STATE(3265)] = 175297, + [SMALL_STATE(3266)] = 175345, + [SMALL_STATE(3267)] = 175389, + [SMALL_STATE(3268)] = 175465, + [SMALL_STATE(3269)] = 175541, + [SMALL_STATE(3270)] = 175617, + [SMALL_STATE(3271)] = 175661, + [SMALL_STATE(3272)] = 175737, + [SMALL_STATE(3273)] = 175797, + [SMALL_STATE(3274)] = 175873, + [SMALL_STATE(3275)] = 175917, + [SMALL_STATE(3276)] = 175993, + [SMALL_STATE(3277)] = 176037, + [SMALL_STATE(3278)] = 176081, + [SMALL_STATE(3279)] = 176167, + [SMALL_STATE(3280)] = 176211, + [SMALL_STATE(3281)] = 176255, + [SMALL_STATE(3282)] = 176299, + [SMALL_STATE(3283)] = 176343, + [SMALL_STATE(3284)] = 176387, + [SMALL_STATE(3285)] = 176441, + [SMALL_STATE(3286)] = 176517, + [SMALL_STATE(3287)] = 176575, + [SMALL_STATE(3288)] = 176629, + [SMALL_STATE(3289)] = 176673, + [SMALL_STATE(3290)] = 176717, + [SMALL_STATE(3291)] = 176793, + [SMALL_STATE(3292)] = 176837, + [SMALL_STATE(3293)] = 176883, + [SMALL_STATE(3294)] = 176927, + [SMALL_STATE(3295)] = 177003, + [SMALL_STATE(3296)] = 177057, + [SMALL_STATE(3297)] = 177101, + [SMALL_STATE(3298)] = 177147, + [SMALL_STATE(3299)] = 177191, + [SMALL_STATE(3300)] = 177245, + [SMALL_STATE(3301)] = 177321, + [SMALL_STATE(3302)] = 177365, + [SMALL_STATE(3303)] = 177441, + [SMALL_STATE(3304)] = 177517, + [SMALL_STATE(3305)] = 177561, + [SMALL_STATE(3306)] = 177605, + [SMALL_STATE(3307)] = 177681, + [SMALL_STATE(3308)] = 177745, + [SMALL_STATE(3309)] = 177789, + [SMALL_STATE(3310)] = 177833, + [SMALL_STATE(3311)] = 177887, + [SMALL_STATE(3312)] = 177931, + [SMALL_STATE(3313)] = 177975, + [SMALL_STATE(3314)] = 178029, + [SMALL_STATE(3315)] = 178105, + [SMALL_STATE(3316)] = 178177, + [SMALL_STATE(3317)] = 178253, + [SMALL_STATE(3318)] = 178327, + [SMALL_STATE(3319)] = 178395, + [SMALL_STATE(3320)] = 178461, + [SMALL_STATE(3321)] = 178525, + [SMALL_STATE(3322)] = 178597, + [SMALL_STATE(3323)] = 178659, + [SMALL_STATE(3324)] = 178719, + [SMALL_STATE(3325)] = 178777, + [SMALL_STATE(3326)] = 178831, + [SMALL_STATE(3327)] = 178883, + [SMALL_STATE(3328)] = 178933, + [SMALL_STATE(3329)] = 178981, + [SMALL_STATE(3330)] = 179027, + [SMALL_STATE(3331)] = 179103, + [SMALL_STATE(3332)] = 179179, + [SMALL_STATE(3333)] = 179265, + [SMALL_STATE(3334)] = 179351, + [SMALL_STATE(3335)] = 179395, + [SMALL_STATE(3336)] = 179439, + [SMALL_STATE(3337)] = 179483, + [SMALL_STATE(3338)] = 179551, + [SMALL_STATE(3339)] = 179617, + [SMALL_STATE(3340)] = 179681, + [SMALL_STATE(3341)] = 179745, + [SMALL_STATE(3342)] = 179807, + [SMALL_STATE(3343)] = 179861, + [SMALL_STATE(3344)] = 179921, + [SMALL_STATE(3345)] = 180007, + [SMALL_STATE(3346)] = 180065, + [SMALL_STATE(3347)] = 180119, + [SMALL_STATE(3348)] = 180171, + [SMALL_STATE(3349)] = 180221, + [SMALL_STATE(3350)] = 180269, + [SMALL_STATE(3351)] = 180317, + [SMALL_STATE(3352)] = 180393, + [SMALL_STATE(3353)] = 180479, + [SMALL_STATE(3354)] = 180533, + [SMALL_STATE(3355)] = 180577, + [SMALL_STATE(3356)] = 180621, + [SMALL_STATE(3357)] = 180665, + [SMALL_STATE(3358)] = 180751, + [SMALL_STATE(3359)] = 180821, + [SMALL_STATE(3360)] = 180897, + [SMALL_STATE(3361)] = 180983, + [SMALL_STATE(3362)] = 181053, + [SMALL_STATE(3363)] = 181123, + [SMALL_STATE(3364)] = 181177, + [SMALL_STATE(3365)] = 181225, + [SMALL_STATE(3366)] = 181287, + [SMALL_STATE(3367)] = 181331, + [SMALL_STATE(3368)] = 181375, + [SMALL_STATE(3369)] = 181419, + [SMALL_STATE(3370)] = 181495, + [SMALL_STATE(3371)] = 181539, + [SMALL_STATE(3372)] = 181583, + [SMALL_STATE(3373)] = 181627, + [SMALL_STATE(3374)] = 181703, + [SMALL_STATE(3375)] = 181747, + [SMALL_STATE(3376)] = 181791, + [SMALL_STATE(3377)] = 181835, + [SMALL_STATE(3378)] = 181921, + [SMALL_STATE(3379)] = 181965, + [SMALL_STATE(3380)] = 182009, + [SMALL_STATE(3381)] = 182085, + [SMALL_STATE(3382)] = 182139, + [SMALL_STATE(3383)] = 182193, + [SMALL_STATE(3384)] = 182237, + [SMALL_STATE(3385)] = 182283, + [SMALL_STATE(3386)] = 182337, + [SMALL_STATE(3387)] = 182381, + [SMALL_STATE(3388)] = 182435, + [SMALL_STATE(3389)] = 182509, + [SMALL_STATE(3390)] = 182585, + [SMALL_STATE(3391)] = 182655, + [SMALL_STATE(3392)] = 182723, + [SMALL_STATE(3393)] = 182789, + [SMALL_STATE(3394)] = 182853, + [SMALL_STATE(3395)] = 182915, + [SMALL_STATE(3396)] = 182975, + [SMALL_STATE(3397)] = 183031, + [SMALL_STATE(3398)] = 183083, + [SMALL_STATE(3399)] = 183133, + [SMALL_STATE(3400)] = 183181, + [SMALL_STATE(3401)] = 183229, + [SMALL_STATE(3402)] = 183301, + [SMALL_STATE(3403)] = 183387, + [SMALL_STATE(3404)] = 183473, + [SMALL_STATE(3405)] = 183547, + [SMALL_STATE(3406)] = 183623, + [SMALL_STATE(3407)] = 183699, + [SMALL_STATE(3408)] = 183743, + [SMALL_STATE(3409)] = 183819, + [SMALL_STATE(3410)] = 183863, + [SMALL_STATE(3411)] = 183907, + [SMALL_STATE(3412)] = 183951, + [SMALL_STATE(3413)] = 184027, + [SMALL_STATE(3414)] = 184103, + [SMALL_STATE(3415)] = 184171, + [SMALL_STATE(3416)] = 184231, + [SMALL_STATE(3417)] = 184275, + [SMALL_STATE(3418)] = 184319, + [SMALL_STATE(3419)] = 184395, + [SMALL_STATE(3420)] = 184471, + [SMALL_STATE(3421)] = 184547, + [SMALL_STATE(3422)] = 184591, + [SMALL_STATE(3423)] = 184635, + [SMALL_STATE(3424)] = 184679, + [SMALL_STATE(3425)] = 184755, + [SMALL_STATE(3426)] = 184823, + [SMALL_STATE(3427)] = 184899, + [SMALL_STATE(3428)] = 184943, + [SMALL_STATE(3429)] = 185019, + [SMALL_STATE(3430)] = 185063, + [SMALL_STATE(3431)] = 185107, + [SMALL_STATE(3432)] = 185151, + [SMALL_STATE(3433)] = 185209, + [SMALL_STATE(3434)] = 185285, + [SMALL_STATE(3435)] = 185329, + [SMALL_STATE(3436)] = 185395, + [SMALL_STATE(3437)] = 185471, + [SMALL_STATE(3438)] = 185547, + [SMALL_STATE(3439)] = 185591, + [SMALL_STATE(3440)] = 185667, + [SMALL_STATE(3441)] = 185753, + [SMALL_STATE(3442)] = 185839, + [SMALL_STATE(3443)] = 185883, + [SMALL_STATE(3444)] = 185969, + [SMALL_STATE(3445)] = 186045, + [SMALL_STATE(3446)] = 186097, + [SMALL_STATE(3447)] = 186183, + [SMALL_STATE(3448)] = 186259, + [SMALL_STATE(3449)] = 186315, + [SMALL_STATE(3450)] = 186369, + [SMALL_STATE(3451)] = 186423, + [SMALL_STATE(3452)] = 186509, + [SMALL_STATE(3453)] = 186595, + [SMALL_STATE(3454)] = 186641, + [SMALL_STATE(3455)] = 186685, [SMALL_STATE(3456)] = 186771, - [SMALL_STATE(3457)] = 186818, - [SMALL_STATE(3458)] = 186871, + [SMALL_STATE(3457)] = 186850, + [SMALL_STATE(3458)] = 186897, [SMALL_STATE(3459)] = 186950, [SMALL_STATE(3460)] = 186999, - [SMALL_STATE(3461)] = 187078, - [SMALL_STATE(3462)] = 187127, - [SMALL_STATE(3463)] = 187214, - [SMALL_STATE(3464)] = 187267, - [SMALL_STATE(3465)] = 187320, - [SMALL_STATE(3466)] = 187367, - [SMALL_STATE(3467)] = 187414, - [SMALL_STATE(3468)] = 187461, - [SMALL_STATE(3469)] = 187508, - [SMALL_STATE(3470)] = 187555, - [SMALL_STATE(3471)] = 187642, - [SMALL_STATE(3472)] = 187689, - [SMALL_STATE(3473)] = 187736, - [SMALL_STATE(3474)] = 187783, - [SMALL_STATE(3475)] = 187836, - [SMALL_STATE(3476)] = 187915, - [SMALL_STATE(3477)] = 187962, - [SMALL_STATE(3478)] = 188045, - [SMALL_STATE(3479)] = 188124, - [SMALL_STATE(3480)] = 188171, - [SMALL_STATE(3481)] = 188218, - [SMALL_STATE(3482)] = 188265, - [SMALL_STATE(3483)] = 188318, - [SMALL_STATE(3484)] = 188365, - [SMALL_STATE(3485)] = 188444, - [SMALL_STATE(3486)] = 188497, + [SMALL_STATE(3461)] = 187046, + [SMALL_STATE(3462)] = 187093, + [SMALL_STATE(3463)] = 187142, + [SMALL_STATE(3464)] = 187229, + [SMALL_STATE(3465)] = 187276, + [SMALL_STATE(3466)] = 187323, + [SMALL_STATE(3467)] = 187370, + [SMALL_STATE(3468)] = 187417, + [SMALL_STATE(3469)] = 187500, + [SMALL_STATE(3470)] = 187587, + [SMALL_STATE(3471)] = 187634, + [SMALL_STATE(3472)] = 187681, + [SMALL_STATE(3473)] = 187728, + [SMALL_STATE(3474)] = 187775, + [SMALL_STATE(3475)] = 187862, + [SMALL_STATE(3476)] = 187909, + [SMALL_STATE(3477)] = 187956, + [SMALL_STATE(3478)] = 188003, + [SMALL_STATE(3479)] = 188056, + [SMALL_STATE(3480)] = 188135, + [SMALL_STATE(3481)] = 188188, + [SMALL_STATE(3482)] = 188241, + [SMALL_STATE(3483)] = 188294, + [SMALL_STATE(3484)] = 188347, + [SMALL_STATE(3485)] = 188426, + [SMALL_STATE(3486)] = 188505, [SMALL_STATE(3487)] = 188584, - [SMALL_STATE(3488)] = 188666, - [SMALL_STATE(3489)] = 188708, - [SMALL_STATE(3490)] = 188790, - [SMALL_STATE(3491)] = 188832, - [SMALL_STATE(3492)] = 188908, - [SMALL_STATE(3493)] = 188950, - [SMALL_STATE(3494)] = 189032, - [SMALL_STATE(3495)] = 189074, - [SMALL_STATE(3496)] = 189156, - [SMALL_STATE(3497)] = 189238, - [SMALL_STATE(3498)] = 189320, - [SMALL_STATE(3499)] = 189362, - [SMALL_STATE(3500)] = 189444, - [SMALL_STATE(3501)] = 189526, - [SMALL_STATE(3502)] = 189568, - [SMALL_STATE(3503)] = 189650, - [SMALL_STATE(3504)] = 189732, - [SMALL_STATE(3505)] = 189774, - [SMALL_STATE(3506)] = 189816, - [SMALL_STATE(3507)] = 189858, - [SMALL_STATE(3508)] = 189940, - [SMALL_STATE(3509)] = 189982, - [SMALL_STATE(3510)] = 190064, - [SMALL_STATE(3511)] = 190106, - [SMALL_STATE(3512)] = 190148, - [SMALL_STATE(3513)] = 190190, - [SMALL_STATE(3514)] = 190232, - [SMALL_STATE(3515)] = 190314, - [SMALL_STATE(3516)] = 190356, - [SMALL_STATE(3517)] = 190398, - [SMALL_STATE(3518)] = 190480, - [SMALL_STATE(3519)] = 190562, - [SMALL_STATE(3520)] = 190644, - [SMALL_STATE(3521)] = 190726, - [SMALL_STATE(3522)] = 190808, - [SMALL_STATE(3523)] = 190850, - [SMALL_STATE(3524)] = 190932, - [SMALL_STATE(3525)] = 191014, - [SMALL_STATE(3526)] = 191056, - [SMALL_STATE(3527)] = 191138, - [SMALL_STATE(3528)] = 191220, - [SMALL_STATE(3529)] = 191262, - [SMALL_STATE(3530)] = 191304, + [SMALL_STATE(3488)] = 188626, + [SMALL_STATE(3489)] = 188668, + [SMALL_STATE(3490)] = 188710, + [SMALL_STATE(3491)] = 188792, + [SMALL_STATE(3492)] = 188834, + [SMALL_STATE(3493)] = 188916, + [SMALL_STATE(3494)] = 188998, + [SMALL_STATE(3495)] = 189080, + [SMALL_STATE(3496)] = 189122, + [SMALL_STATE(3497)] = 189164, + [SMALL_STATE(3498)] = 189206, + [SMALL_STATE(3499)] = 189248, + [SMALL_STATE(3500)] = 189330, + [SMALL_STATE(3501)] = 189412, + [SMALL_STATE(3502)] = 189494, + [SMALL_STATE(3503)] = 189576, + [SMALL_STATE(3504)] = 189658, + [SMALL_STATE(3505)] = 189700, + [SMALL_STATE(3506)] = 189742, + [SMALL_STATE(3507)] = 189824, + [SMALL_STATE(3508)] = 189866, + [SMALL_STATE(3509)] = 189908, + [SMALL_STATE(3510)] = 189950, + [SMALL_STATE(3511)] = 190032, + [SMALL_STATE(3512)] = 190114, + [SMALL_STATE(3513)] = 190196, + [SMALL_STATE(3514)] = 190238, + [SMALL_STATE(3515)] = 190320, + [SMALL_STATE(3516)] = 190402, + [SMALL_STATE(3517)] = 190484, + [SMALL_STATE(3518)] = 190566, + [SMALL_STATE(3519)] = 190608, + [SMALL_STATE(3520)] = 190690, + [SMALL_STATE(3521)] = 190772, + [SMALL_STATE(3522)] = 190854, + [SMALL_STATE(3523)] = 190936, + [SMALL_STATE(3524)] = 190978, + [SMALL_STATE(3525)] = 191020, + [SMALL_STATE(3526)] = 191102, + [SMALL_STATE(3527)] = 191184, + [SMALL_STATE(3528)] = 191260, + [SMALL_STATE(3529)] = 191302, + [SMALL_STATE(3530)] = 191344, [SMALL_STATE(3531)] = 191386, - [SMALL_STATE(3532)] = 191459, - [SMALL_STATE(3533)] = 191532, - [SMALL_STATE(3534)] = 191605, - [SMALL_STATE(3535)] = 191678, - [SMALL_STATE(3536)] = 191729, - [SMALL_STATE(3537)] = 191774, - [SMALL_STATE(3538)] = 191825, - [SMALL_STATE(3539)] = 191876, - [SMALL_STATE(3540)] = 191921, - [SMALL_STATE(3541)] = 191972, - [SMALL_STATE(3542)] = 192017, - [SMALL_STATE(3543)] = 192062, - [SMALL_STATE(3544)] = 192107, - [SMALL_STATE(3545)] = 192152, + [SMALL_STATE(3532)] = 191431, + [SMALL_STATE(3533)] = 191476, + [SMALL_STATE(3534)] = 191521, + [SMALL_STATE(3535)] = 191566, + [SMALL_STATE(3536)] = 191611, + [SMALL_STATE(3537)] = 191684, + [SMALL_STATE(3538)] = 191735, + [SMALL_STATE(3539)] = 191786, + [SMALL_STATE(3540)] = 191837, + [SMALL_STATE(3541)] = 191882, + [SMALL_STATE(3542)] = 191933, + [SMALL_STATE(3543)] = 191978, + [SMALL_STATE(3544)] = 192051, + [SMALL_STATE(3545)] = 192124, [SMALL_STATE(3546)] = 192197, - [SMALL_STATE(3547)] = 192273, - [SMALL_STATE(3548)] = 192313, - [SMALL_STATE(3549)] = 192389, - [SMALL_STATE(3550)] = 192465, - [SMALL_STATE(3551)] = 192541, - [SMALL_STATE(3552)] = 192617, - [SMALL_STATE(3553)] = 192657, - [SMALL_STATE(3554)] = 192733, - [SMALL_STATE(3555)] = 192809, - [SMALL_STATE(3556)] = 192885, - [SMALL_STATE(3557)] = 192925, - [SMALL_STATE(3558)] = 193001, - [SMALL_STATE(3559)] = 193077, - [SMALL_STATE(3560)] = 193127, - [SMALL_STATE(3561)] = 193177, - [SMALL_STATE(3562)] = 193253, - [SMALL_STATE(3563)] = 193303, - [SMALL_STATE(3564)] = 193379, - [SMALL_STATE(3565)] = 193455, - [SMALL_STATE(3566)] = 193531, - [SMALL_STATE(3567)] = 193607, - [SMALL_STATE(3568)] = 193683, - [SMALL_STATE(3569)] = 193759, - [SMALL_STATE(3570)] = 193799, - [SMALL_STATE(3571)] = 193875, - [SMALL_STATE(3572)] = 193951, - [SMALL_STATE(3573)] = 194001, - [SMALL_STATE(3574)] = 194041, - [SMALL_STATE(3575)] = 194117, - [SMALL_STATE(3576)] = 194193, - [SMALL_STATE(3577)] = 194269, - [SMALL_STATE(3578)] = 194345, - [SMALL_STATE(3579)] = 194385, - [SMALL_STATE(3580)] = 194435, - [SMALL_STATE(3581)] = 194485, - [SMALL_STATE(3582)] = 194525, - [SMALL_STATE(3583)] = 194575, - [SMALL_STATE(3584)] = 194651, - [SMALL_STATE(3585)] = 194701, - [SMALL_STATE(3586)] = 194777, - [SMALL_STATE(3587)] = 194853, - [SMALL_STATE(3588)] = 194929, - [SMALL_STATE(3589)] = 195005, - [SMALL_STATE(3590)] = 195081, - [SMALL_STATE(3591)] = 195157, - [SMALL_STATE(3592)] = 195233, - [SMALL_STATE(3593)] = 195309, - [SMALL_STATE(3594)] = 195385, - [SMALL_STATE(3595)] = 195461, - [SMALL_STATE(3596)] = 195537, - [SMALL_STATE(3597)] = 195613, - [SMALL_STATE(3598)] = 195653, - [SMALL_STATE(3599)] = 195703, - [SMALL_STATE(3600)] = 195779, - [SMALL_STATE(3601)] = 195829, - [SMALL_STATE(3602)] = 195869, - [SMALL_STATE(3603)] = 195945, - [SMALL_STATE(3604)] = 196021, + [SMALL_STATE(3547)] = 192237, + [SMALL_STATE(3548)] = 192277, + [SMALL_STATE(3549)] = 192353, + [SMALL_STATE(3550)] = 192429, + [SMALL_STATE(3551)] = 192505, + [SMALL_STATE(3552)] = 192581, + [SMALL_STATE(3553)] = 192621, + [SMALL_STATE(3554)] = 192697, + [SMALL_STATE(3555)] = 192737, + [SMALL_STATE(3556)] = 192813, + [SMALL_STATE(3557)] = 192889, + [SMALL_STATE(3558)] = 192965, + [SMALL_STATE(3559)] = 193015, + [SMALL_STATE(3560)] = 193055, + [SMALL_STATE(3561)] = 193131, + [SMALL_STATE(3562)] = 193207, + [SMALL_STATE(3563)] = 193283, + [SMALL_STATE(3564)] = 193359, + [SMALL_STATE(3565)] = 193435, + [SMALL_STATE(3566)] = 193511, + [SMALL_STATE(3567)] = 193587, + [SMALL_STATE(3568)] = 193663, + [SMALL_STATE(3569)] = 193739, + [SMALL_STATE(3570)] = 193815, + [SMALL_STATE(3571)] = 193865, + [SMALL_STATE(3572)] = 193941, + [SMALL_STATE(3573)] = 194017, + [SMALL_STATE(3574)] = 194093, + [SMALL_STATE(3575)] = 194169, + [SMALL_STATE(3576)] = 194245, + [SMALL_STATE(3577)] = 194295, + [SMALL_STATE(3578)] = 194371, + [SMALL_STATE(3579)] = 194447, + [SMALL_STATE(3580)] = 194487, + [SMALL_STATE(3581)] = 194537, + [SMALL_STATE(3582)] = 194587, + [SMALL_STATE(3583)] = 194663, + [SMALL_STATE(3584)] = 194703, + [SMALL_STATE(3585)] = 194779, + [SMALL_STATE(3586)] = 194855, + [SMALL_STATE(3587)] = 194931, + [SMALL_STATE(3588)] = 195007, + [SMALL_STATE(3589)] = 195057, + [SMALL_STATE(3590)] = 195107, + [SMALL_STATE(3591)] = 195183, + [SMALL_STATE(3592)] = 195223, + [SMALL_STATE(3593)] = 195263, + [SMALL_STATE(3594)] = 195339, + [SMALL_STATE(3595)] = 195415, + [SMALL_STATE(3596)] = 195491, + [SMALL_STATE(3597)] = 195541, + [SMALL_STATE(3598)] = 195617, + [SMALL_STATE(3599)] = 195693, + [SMALL_STATE(3600)] = 195769, + [SMALL_STATE(3601)] = 195819, + [SMALL_STATE(3602)] = 195895, + [SMALL_STATE(3603)] = 195971, + [SMALL_STATE(3604)] = 196047, [SMALL_STATE(3605)] = 196097, [SMALL_STATE(3606)] = 196173, [SMALL_STATE(3607)] = 196249, - [SMALL_STATE(3608)] = 196299, - [SMALL_STATE(3609)] = 196375, - [SMALL_STATE(3610)] = 196451, + [SMALL_STATE(3608)] = 196325, + [SMALL_STATE(3609)] = 196401, + [SMALL_STATE(3610)] = 196477, [SMALL_STATE(3611)] = 196527, [SMALL_STATE(3612)] = 196603, [SMALL_STATE(3613)] = 196653, [SMALL_STATE(3614)] = 196729, [SMALL_STATE(3615)] = 196802, - [SMALL_STATE(3616)] = 196873, - [SMALL_STATE(3617)] = 196944, - [SMALL_STATE(3618)] = 197017, - [SMALL_STATE(3619)] = 197090, - [SMALL_STATE(3620)] = 197139, - [SMALL_STATE(3621)] = 197214, - [SMALL_STATE(3622)] = 197287, + [SMALL_STATE(3616)] = 196875, + [SMALL_STATE(3617)] = 196946, + [SMALL_STATE(3618)] = 197021, + [SMALL_STATE(3619)] = 197094, + [SMALL_STATE(3620)] = 197167, + [SMALL_STATE(3621)] = 197238, + [SMALL_STATE(3622)] = 197311, [SMALL_STATE(3623)] = 197360, - [SMALL_STATE(3624)] = 197433, - [SMALL_STATE(3625)] = 197506, + [SMALL_STATE(3624)] = 197435, + [SMALL_STATE(3625)] = 197508, [SMALL_STATE(3626)] = 197579, [SMALL_STATE(3627)] = 197652, [SMALL_STATE(3628)] = 197725, - [SMALL_STATE(3629)] = 197796, - [SMALL_STATE(3630)] = 197869, - [SMALL_STATE(3631)] = 197942, - [SMALL_STATE(3632)] = 198015, - [SMALL_STATE(3633)] = 198088, - [SMALL_STATE(3634)] = 198161, - [SMALL_STATE(3635)] = 198234, - [SMALL_STATE(3636)] = 198307, - [SMALL_STATE(3637)] = 198356, - [SMALL_STATE(3638)] = 198429, - [SMALL_STATE(3639)] = 198502, - [SMALL_STATE(3640)] = 198575, - [SMALL_STATE(3641)] = 198648, - [SMALL_STATE(3642)] = 198721, - [SMALL_STATE(3643)] = 198794, - [SMALL_STATE(3644)] = 198865, - [SMALL_STATE(3645)] = 198936, - [SMALL_STATE(3646)] = 199009, - [SMALL_STATE(3647)] = 199082, - [SMALL_STATE(3648)] = 199155, - [SMALL_STATE(3649)] = 199228, - [SMALL_STATE(3650)] = 199301, - [SMALL_STATE(3651)] = 199374, - [SMALL_STATE(3652)] = 199447, - [SMALL_STATE(3653)] = 199520, - [SMALL_STATE(3654)] = 199593, - [SMALL_STATE(3655)] = 199666, - [SMALL_STATE(3656)] = 199739, - [SMALL_STATE(3657)] = 199810, - [SMALL_STATE(3658)] = 199881, - [SMALL_STATE(3659)] = 199952, - [SMALL_STATE(3660)] = 200025, - [SMALL_STATE(3661)] = 200100, - [SMALL_STATE(3662)] = 200173, - [SMALL_STATE(3663)] = 200246, - [SMALL_STATE(3664)] = 200317, + [SMALL_STATE(3629)] = 197798, + [SMALL_STATE(3630)] = 197871, + [SMALL_STATE(3631)] = 197944, + [SMALL_STATE(3632)] = 198017, + [SMALL_STATE(3633)] = 198066, + [SMALL_STATE(3634)] = 198137, + [SMALL_STATE(3635)] = 198186, + [SMALL_STATE(3636)] = 198259, + [SMALL_STATE(3637)] = 198332, + [SMALL_STATE(3638)] = 198405, + [SMALL_STATE(3639)] = 198478, + [SMALL_STATE(3640)] = 198551, + [SMALL_STATE(3641)] = 198624, + [SMALL_STATE(3642)] = 198697, + [SMALL_STATE(3643)] = 198768, + [SMALL_STATE(3644)] = 198841, + [SMALL_STATE(3645)] = 198912, + [SMALL_STATE(3646)] = 198985, + [SMALL_STATE(3647)] = 199060, + [SMALL_STATE(3648)] = 199131, + [SMALL_STATE(3649)] = 199204, + [SMALL_STATE(3650)] = 199277, + [SMALL_STATE(3651)] = 199348, + [SMALL_STATE(3652)] = 199421, + [SMALL_STATE(3653)] = 199494, + [SMALL_STATE(3654)] = 199567, + [SMALL_STATE(3655)] = 199640, + [SMALL_STATE(3656)] = 199713, + [SMALL_STATE(3657)] = 199784, + [SMALL_STATE(3658)] = 199857, + [SMALL_STATE(3659)] = 199930, + [SMALL_STATE(3660)] = 200003, + [SMALL_STATE(3661)] = 200076, + [SMALL_STATE(3662)] = 200149, + [SMALL_STATE(3663)] = 200220, + [SMALL_STATE(3664)] = 200293, [SMALL_STATE(3665)] = 200366, [SMALL_STATE(3666)] = 200439, - [SMALL_STATE(3667)] = 200488, - [SMALL_STATE(3668)] = 200561, - [SMALL_STATE(3669)] = 200632, - [SMALL_STATE(3670)] = 200705, - [SMALL_STATE(3671)] = 200778, - [SMALL_STATE(3672)] = 200849, - [SMALL_STATE(3673)] = 200924, - [SMALL_STATE(3674)] = 200997, - [SMALL_STATE(3675)] = 201070, - [SMALL_STATE(3676)] = 201143, - [SMALL_STATE(3677)] = 201216, - [SMALL_STATE(3678)] = 201289, - [SMALL_STATE(3679)] = 201362, - [SMALL_STATE(3680)] = 201435, - [SMALL_STATE(3681)] = 201508, - [SMALL_STATE(3682)] = 201581, + [SMALL_STATE(3667)] = 200514, + [SMALL_STATE(3668)] = 200587, + [SMALL_STATE(3669)] = 200662, + [SMALL_STATE(3670)] = 200735, + [SMALL_STATE(3671)] = 200808, + [SMALL_STATE(3672)] = 200881, + [SMALL_STATE(3673)] = 200954, + [SMALL_STATE(3674)] = 201027, + [SMALL_STATE(3675)] = 201100, + [SMALL_STATE(3676)] = 201149, + [SMALL_STATE(3677)] = 201222, + [SMALL_STATE(3678)] = 201295, + [SMALL_STATE(3679)] = 201366, + [SMALL_STATE(3680)] = 201437, + [SMALL_STATE(3681)] = 201510, + [SMALL_STATE(3682)] = 201583, [SMALL_STATE(3683)] = 201656, - [SMALL_STATE(3684)] = 201727, - [SMALL_STATE(3685)] = 201800, - [SMALL_STATE(3686)] = 201871, - [SMALL_STATE(3687)] = 201946, + [SMALL_STATE(3684)] = 201729, + [SMALL_STATE(3685)] = 201802, + [SMALL_STATE(3686)] = 201875, + [SMALL_STATE(3687)] = 201948, [SMALL_STATE(3688)] = 202019, - [SMALL_STATE(3689)] = 202092, - [SMALL_STATE(3690)] = 202165, - [SMALL_STATE(3691)] = 202238, - [SMALL_STATE(3692)] = 202311, - [SMALL_STATE(3693)] = 202384, - [SMALL_STATE(3694)] = 202457, - [SMALL_STATE(3695)] = 202530, + [SMALL_STATE(3689)] = 202094, + [SMALL_STATE(3690)] = 202167, + [SMALL_STATE(3691)] = 202240, + [SMALL_STATE(3692)] = 202313, + [SMALL_STATE(3693)] = 202386, + [SMALL_STATE(3694)] = 202459, + [SMALL_STATE(3695)] = 202532, [SMALL_STATE(3696)] = 202605, - [SMALL_STATE(3697)] = 202678, + [SMALL_STATE(3697)] = 202680, [SMALL_STATE(3698)] = 202753, [SMALL_STATE(3699)] = 202821, - [SMALL_STATE(3700)] = 202895, - [SMALL_STATE(3701)] = 202963, - [SMALL_STATE(3702)] = 203031, - [SMALL_STATE(3703)] = 203099, - [SMALL_STATE(3704)] = 203171, - [SMALL_STATE(3705)] = 203239, - [SMALL_STATE(3706)] = 203313, - [SMALL_STATE(3707)] = 203385, - [SMALL_STATE(3708)] = 203453, - [SMALL_STATE(3709)] = 203527, - [SMALL_STATE(3710)] = 203601, - [SMALL_STATE(3711)] = 203675, - [SMALL_STATE(3712)] = 203743, - [SMALL_STATE(3713)] = 203811, - [SMALL_STATE(3714)] = 203885, - [SMALL_STATE(3715)] = 203959, - [SMALL_STATE(3716)] = 204031, - [SMALL_STATE(3717)] = 204103, + [SMALL_STATE(3700)] = 202889, + [SMALL_STATE(3701)] = 202957, + [SMALL_STATE(3702)] = 203025, + [SMALL_STATE(3703)] = 203093, + [SMALL_STATE(3704)] = 203161, + [SMALL_STATE(3705)] = 203229, + [SMALL_STATE(3706)] = 203301, + [SMALL_STATE(3707)] = 203369, + [SMALL_STATE(3708)] = 203437, + [SMALL_STATE(3709)] = 203511, + [SMALL_STATE(3710)] = 203585, + [SMALL_STATE(3711)] = 203659, + [SMALL_STATE(3712)] = 203733, + [SMALL_STATE(3713)] = 203807, + [SMALL_STATE(3714)] = 203881, + [SMALL_STATE(3715)] = 203955, + [SMALL_STATE(3716)] = 204023, + [SMALL_STATE(3717)] = 204097, [SMALL_STATE(3718)] = 204171, - [SMALL_STATE(3719)] = 204243, - [SMALL_STATE(3720)] = 204311, - [SMALL_STATE(3721)] = 204383, + [SMALL_STATE(3719)] = 204245, + [SMALL_STATE(3720)] = 204313, + [SMALL_STATE(3721)] = 204381, [SMALL_STATE(3722)] = 204455, [SMALL_STATE(3723)] = 204529, - [SMALL_STATE(3724)] = 204597, + [SMALL_STATE(3724)] = 204603, [SMALL_STATE(3725)] = 204671, - [SMALL_STATE(3726)] = 204743, - [SMALL_STATE(3727)] = 204817, - [SMALL_STATE(3728)] = 204885, - [SMALL_STATE(3729)] = 204959, - [SMALL_STATE(3730)] = 205033, - [SMALL_STATE(3731)] = 205107, - [SMALL_STATE(3732)] = 205181, - [SMALL_STATE(3733)] = 205249, - [SMALL_STATE(3734)] = 205317, - [SMALL_STATE(3735)] = 205389, - [SMALL_STATE(3736)] = 205457, - [SMALL_STATE(3737)] = 205529, - [SMALL_STATE(3738)] = 205597, - [SMALL_STATE(3739)] = 205665, - [SMALL_STATE(3740)] = 205737, - [SMALL_STATE(3741)] = 205809, - [SMALL_STATE(3742)] = 205883, - [SMALL_STATE(3743)] = 205957, - [SMALL_STATE(3744)] = 206031, - [SMALL_STATE(3745)] = 206105, - [SMALL_STATE(3746)] = 206173, - [SMALL_STATE(3747)] = 206241, - [SMALL_STATE(3748)] = 206309, - [SMALL_STATE(3749)] = 206383, - [SMALL_STATE(3750)] = 206457, - [SMALL_STATE(3751)] = 206525, - [SMALL_STATE(3752)] = 206599, - [SMALL_STATE(3753)] = 206667, - [SMALL_STATE(3754)] = 206741, - [SMALL_STATE(3755)] = 206815, - [SMALL_STATE(3756)] = 206889, - [SMALL_STATE(3757)] = 206957, - [SMALL_STATE(3758)] = 207025, - [SMALL_STATE(3759)] = 207093, - [SMALL_STATE(3760)] = 207167, - [SMALL_STATE(3761)] = 207235, - [SMALL_STATE(3762)] = 207307, - [SMALL_STATE(3763)] = 207379, - [SMALL_STATE(3764)] = 207451, - [SMALL_STATE(3765)] = 207525, - [SMALL_STATE(3766)] = 207597, - [SMALL_STATE(3767)] = 207665, - [SMALL_STATE(3768)] = 207733, - [SMALL_STATE(3769)] = 207801, - [SMALL_STATE(3770)] = 207873, - [SMALL_STATE(3771)] = 207941, - [SMALL_STATE(3772)] = 208009, - [SMALL_STATE(3773)] = 208081, - [SMALL_STATE(3774)] = 208149, - [SMALL_STATE(3775)] = 208217, - [SMALL_STATE(3776)] = 208289, - [SMALL_STATE(3777)] = 208357, - [SMALL_STATE(3778)] = 208429, - [SMALL_STATE(3779)] = 208497, - [SMALL_STATE(3780)] = 208569, - [SMALL_STATE(3781)] = 208641, - [SMALL_STATE(3782)] = 208709, - [SMALL_STATE(3783)] = 208781, - [SMALL_STATE(3784)] = 208855, - [SMALL_STATE(3785)] = 208929, - [SMALL_STATE(3786)] = 208997, - [SMALL_STATE(3787)] = 209071, - [SMALL_STATE(3788)] = 209143, - [SMALL_STATE(3789)] = 209211, - [SMALL_STATE(3790)] = 209285, - [SMALL_STATE(3791)] = 209353, - [SMALL_STATE(3792)] = 209421, - [SMALL_STATE(3793)] = 209489, - [SMALL_STATE(3794)] = 209563, - [SMALL_STATE(3795)] = 209631, - [SMALL_STATE(3796)] = 209699, - [SMALL_STATE(3797)] = 209767, - [SMALL_STATE(3798)] = 209841, - [SMALL_STATE(3799)] = 209909, - [SMALL_STATE(3800)] = 209981, - [SMALL_STATE(3801)] = 210055, - [SMALL_STATE(3802)] = 210127, - [SMALL_STATE(3803)] = 210195, - [SMALL_STATE(3804)] = 210263, - [SMALL_STATE(3805)] = 210337, - [SMALL_STATE(3806)] = 210409, - [SMALL_STATE(3807)] = 210477, - [SMALL_STATE(3808)] = 210549, - [SMALL_STATE(3809)] = 210621, - [SMALL_STATE(3810)] = 210695, - [SMALL_STATE(3811)] = 210763, - [SMALL_STATE(3812)] = 210831, - [SMALL_STATE(3813)] = 210905, - [SMALL_STATE(3814)] = 210973, - [SMALL_STATE(3815)] = 211041, - [SMALL_STATE(3816)] = 211109, - [SMALL_STATE(3817)] = 211183, - [SMALL_STATE(3818)] = 211257, - [SMALL_STATE(3819)] = 211331, - [SMALL_STATE(3820)] = 211399, - [SMALL_STATE(3821)] = 211473, - [SMALL_STATE(3822)] = 211545, - [SMALL_STATE(3823)] = 211617, - [SMALL_STATE(3824)] = 211685, - [SMALL_STATE(3825)] = 211759, - [SMALL_STATE(3826)] = 211833, - [SMALL_STATE(3827)] = 211901, - [SMALL_STATE(3828)] = 211973, - [SMALL_STATE(3829)] = 212045, - [SMALL_STATE(3830)] = 212113, - [SMALL_STATE(3831)] = 212187, - [SMALL_STATE(3832)] = 212261, - [SMALL_STATE(3833)] = 212333, - [SMALL_STATE(3834)] = 212405, - [SMALL_STATE(3835)] = 212473, - [SMALL_STATE(3836)] = 212547, - [SMALL_STATE(3837)] = 212619, - [SMALL_STATE(3838)] = 212687, - [SMALL_STATE(3839)] = 212759, - [SMALL_STATE(3840)] = 212827, - [SMALL_STATE(3841)] = 212899, - [SMALL_STATE(3842)] = 212967, - [SMALL_STATE(3843)] = 213041, - [SMALL_STATE(3844)] = 213109, - [SMALL_STATE(3845)] = 213177, - [SMALL_STATE(3846)] = 213245, - [SMALL_STATE(3847)] = 213313, - [SMALL_STATE(3848)] = 213381, - [SMALL_STATE(3849)] = 213449, - [SMALL_STATE(3850)] = 213523, - [SMALL_STATE(3851)] = 213597, - [SMALL_STATE(3852)] = 213665, - [SMALL_STATE(3853)] = 213733, - [SMALL_STATE(3854)] = 213801, - [SMALL_STATE(3855)] = 213869, - [SMALL_STATE(3856)] = 213943, - [SMALL_STATE(3857)] = 214011, - [SMALL_STATE(3858)] = 214085, - [SMALL_STATE(3859)] = 214153, - [SMALL_STATE(3860)] = 214225, - [SMALL_STATE(3861)] = 214293, - [SMALL_STATE(3862)] = 214361, - [SMALL_STATE(3863)] = 214435, - [SMALL_STATE(3864)] = 214509, - [SMALL_STATE(3865)] = 214577, - [SMALL_STATE(3866)] = 214645, - [SMALL_STATE(3867)] = 214713, - [SMALL_STATE(3868)] = 214781, - [SMALL_STATE(3869)] = 214849, - [SMALL_STATE(3870)] = 214917, - [SMALL_STATE(3871)] = 214985, - [SMALL_STATE(3872)] = 215053, - [SMALL_STATE(3873)] = 215121, - [SMALL_STATE(3874)] = 215189, - [SMALL_STATE(3875)] = 215263, - [SMALL_STATE(3876)] = 215337, - [SMALL_STATE(3877)] = 215411, - [SMALL_STATE(3878)] = 215479, - [SMALL_STATE(3879)] = 215547, - [SMALL_STATE(3880)] = 215621, - [SMALL_STATE(3881)] = 215689, - [SMALL_STATE(3882)] = 215757, - [SMALL_STATE(3883)] = 215825, - [SMALL_STATE(3884)] = 215893, - [SMALL_STATE(3885)] = 215961, - [SMALL_STATE(3886)] = 216029, - [SMALL_STATE(3887)] = 216097, - [SMALL_STATE(3888)] = 216165, - [SMALL_STATE(3889)] = 216239, - [SMALL_STATE(3890)] = 216307, - [SMALL_STATE(3891)] = 216375, - [SMALL_STATE(3892)] = 216443, - [SMALL_STATE(3893)] = 216517, - [SMALL_STATE(3894)] = 216591, - [SMALL_STATE(3895)] = 216659, - [SMALL_STATE(3896)] = 216727, - [SMALL_STATE(3897)] = 216795, - [SMALL_STATE(3898)] = 216863, - [SMALL_STATE(3899)] = 216935, - [SMALL_STATE(3900)] = 217003, - [SMALL_STATE(3901)] = 217071, - [SMALL_STATE(3902)] = 217139, - [SMALL_STATE(3903)] = 217211, - [SMALL_STATE(3904)] = 217279, - [SMALL_STATE(3905)] = 217347, - [SMALL_STATE(3906)] = 217415, - [SMALL_STATE(3907)] = 217483, - [SMALL_STATE(3908)] = 217555, - [SMALL_STATE(3909)] = 217623, - [SMALL_STATE(3910)] = 217691, - [SMALL_STATE(3911)] = 217759, - [SMALL_STATE(3912)] = 217827, - [SMALL_STATE(3913)] = 217895, - [SMALL_STATE(3914)] = 217963, - [SMALL_STATE(3915)] = 218031, - [SMALL_STATE(3916)] = 218105, - [SMALL_STATE(3917)] = 218179, - [SMALL_STATE(3918)] = 218247, - [SMALL_STATE(3919)] = 218315, - [SMALL_STATE(3920)] = 218389, - [SMALL_STATE(3921)] = 218463, - [SMALL_STATE(3922)] = 218531, - [SMALL_STATE(3923)] = 218599, - [SMALL_STATE(3924)] = 218667, - [SMALL_STATE(3925)] = 218735, - [SMALL_STATE(3926)] = 218803, - [SMALL_STATE(3927)] = 218871, - [SMALL_STATE(3928)] = 218939, - [SMALL_STATE(3929)] = 219007, - [SMALL_STATE(3930)] = 219075, - [SMALL_STATE(3931)] = 219143, - [SMALL_STATE(3932)] = 219211, - [SMALL_STATE(3933)] = 219285, - [SMALL_STATE(3934)] = 219359, - [SMALL_STATE(3935)] = 219433, - [SMALL_STATE(3936)] = 219501, - [SMALL_STATE(3937)] = 219569, - [SMALL_STATE(3938)] = 219637, - [SMALL_STATE(3939)] = 219705, - [SMALL_STATE(3940)] = 219773, - [SMALL_STATE(3941)] = 219841, - [SMALL_STATE(3942)] = 219909, - [SMALL_STATE(3943)] = 219977, - [SMALL_STATE(3944)] = 220045, - [SMALL_STATE(3945)] = 220119, - [SMALL_STATE(3946)] = 220193, - [SMALL_STATE(3947)] = 220261, - [SMALL_STATE(3948)] = 220329, - [SMALL_STATE(3949)] = 220397, - [SMALL_STATE(3950)] = 220465, - [SMALL_STATE(3951)] = 220533, - [SMALL_STATE(3952)] = 220601, - [SMALL_STATE(3953)] = 220669, - [SMALL_STATE(3954)] = 220737, - [SMALL_STATE(3955)] = 220805, - [SMALL_STATE(3956)] = 220873, - [SMALL_STATE(3957)] = 220941, - [SMALL_STATE(3958)] = 221009, - [SMALL_STATE(3959)] = 221077, - [SMALL_STATE(3960)] = 221145, - [SMALL_STATE(3961)] = 221219, - [SMALL_STATE(3962)] = 221287, - [SMALL_STATE(3963)] = 221355, - [SMALL_STATE(3964)] = 221427, - [SMALL_STATE(3965)] = 221495, - [SMALL_STATE(3966)] = 221567, - [SMALL_STATE(3967)] = 221641, - [SMALL_STATE(3968)] = 221715, - [SMALL_STATE(3969)] = 221783, - [SMALL_STATE(3970)] = 221851, - [SMALL_STATE(3971)] = 221925, - [SMALL_STATE(3972)] = 221993, - [SMALL_STATE(3973)] = 222061, - [SMALL_STATE(3974)] = 222135, - [SMALL_STATE(3975)] = 222209, - [SMALL_STATE(3976)] = 222277, - [SMALL_STATE(3977)] = 222345, - [SMALL_STATE(3978)] = 222419, - [SMALL_STATE(3979)] = 222493, - [SMALL_STATE(3980)] = 222561, - [SMALL_STATE(3981)] = 222629, - [SMALL_STATE(3982)] = 222703, - [SMALL_STATE(3983)] = 222777, - [SMALL_STATE(3984)] = 222851, - [SMALL_STATE(3985)] = 222919, - [SMALL_STATE(3986)] = 222993, - [SMALL_STATE(3987)] = 223067, - [SMALL_STATE(3988)] = 223141, - [SMALL_STATE(3989)] = 223209, - [SMALL_STATE(3990)] = 223277, - [SMALL_STATE(3991)] = 223345, - [SMALL_STATE(3992)] = 223413, - [SMALL_STATE(3993)] = 223481, - [SMALL_STATE(3994)] = 223549, - [SMALL_STATE(3995)] = 223623, - [SMALL_STATE(3996)] = 223697, - [SMALL_STATE(3997)] = 223765, - [SMALL_STATE(3998)] = 223839, - [SMALL_STATE(3999)] = 223907, - [SMALL_STATE(4000)] = 223975, - [SMALL_STATE(4001)] = 224049, - [SMALL_STATE(4002)] = 224123, - [SMALL_STATE(4003)] = 224191, - [SMALL_STATE(4004)] = 224259, - [SMALL_STATE(4005)] = 224327, - [SMALL_STATE(4006)] = 224401, - [SMALL_STATE(4007)] = 224475, - [SMALL_STATE(4008)] = 224543, - [SMALL_STATE(4009)] = 224617, - [SMALL_STATE(4010)] = 224685, - [SMALL_STATE(4011)] = 224753, - [SMALL_STATE(4012)] = 224821, - [SMALL_STATE(4013)] = 224895, - [SMALL_STATE(4014)] = 224963, - [SMALL_STATE(4015)] = 225031, - [SMALL_STATE(4016)] = 225099, - [SMALL_STATE(4017)] = 225167, - [SMALL_STATE(4018)] = 225235, - [SMALL_STATE(4019)] = 225307, - [SMALL_STATE(4020)] = 225375, - [SMALL_STATE(4021)] = 225443, - [SMALL_STATE(4022)] = 225517, - [SMALL_STATE(4023)] = 225585, - [SMALL_STATE(4024)] = 225653, - [SMALL_STATE(4025)] = 225725, - [SMALL_STATE(4026)] = 225799, - [SMALL_STATE(4027)] = 225867, - [SMALL_STATE(4028)] = 225935, - [SMALL_STATE(4029)] = 226003, - [SMALL_STATE(4030)] = 226071, - [SMALL_STATE(4031)] = 226143, - [SMALL_STATE(4032)] = 226215, - [SMALL_STATE(4033)] = 226289, - [SMALL_STATE(4034)] = 226363, - [SMALL_STATE(4035)] = 226431, - [SMALL_STATE(4036)] = 226505, - [SMALL_STATE(4037)] = 226577, - [SMALL_STATE(4038)] = 226651, - [SMALL_STATE(4039)] = 226719, - [SMALL_STATE(4040)] = 226791, - [SMALL_STATE(4041)] = 226865, - [SMALL_STATE(4042)] = 226939, - [SMALL_STATE(4043)] = 227007, - [SMALL_STATE(4044)] = 227081, - [SMALL_STATE(4045)] = 227155, - [SMALL_STATE(4046)] = 227227, - [SMALL_STATE(4047)] = 227295, - [SMALL_STATE(4048)] = 227369, - [SMALL_STATE(4049)] = 227443, - [SMALL_STATE(4050)] = 227517, - [SMALL_STATE(4051)] = 227589, - [SMALL_STATE(4052)] = 227663, - [SMALL_STATE(4053)] = 227735, - [SMALL_STATE(4054)] = 227807, - [SMALL_STATE(4055)] = 227881, - [SMALL_STATE(4056)] = 227949, - [SMALL_STATE(4057)] = 228023, - [SMALL_STATE(4058)] = 228097, - [SMALL_STATE(4059)] = 228171, - [SMALL_STATE(4060)] = 228239, - [SMALL_STATE(4061)] = 228313, - [SMALL_STATE(4062)] = 228387, - [SMALL_STATE(4063)] = 228461, - [SMALL_STATE(4064)] = 228535, - [SMALL_STATE(4065)] = 228609, - [SMALL_STATE(4066)] = 228677, - [SMALL_STATE(4067)] = 228751, - [SMALL_STATE(4068)] = 228825, - [SMALL_STATE(4069)] = 228899, - [SMALL_STATE(4070)] = 228973, - [SMALL_STATE(4071)] = 229047, - [SMALL_STATE(4072)] = 229115, - [SMALL_STATE(4073)] = 229189, - [SMALL_STATE(4074)] = 229263, - [SMALL_STATE(4075)] = 229337, - [SMALL_STATE(4076)] = 229405, - [SMALL_STATE(4077)] = 229479, - [SMALL_STATE(4078)] = 229547, - [SMALL_STATE(4079)] = 229619, - [SMALL_STATE(4080)] = 229693, - [SMALL_STATE(4081)] = 229761, - [SMALL_STATE(4082)] = 229829, - [SMALL_STATE(4083)] = 229903, - [SMALL_STATE(4084)] = 229977, - [SMALL_STATE(4085)] = 230051, - [SMALL_STATE(4086)] = 230125, - [SMALL_STATE(4087)] = 230193, - [SMALL_STATE(4088)] = 230261, - [SMALL_STATE(4089)] = 230329, - [SMALL_STATE(4090)] = 230397, - [SMALL_STATE(4091)] = 230471, - [SMALL_STATE(4092)] = 230545, - [SMALL_STATE(4093)] = 230613, - [SMALL_STATE(4094)] = 230687, - [SMALL_STATE(4095)] = 230755, - [SMALL_STATE(4096)] = 230823, - [SMALL_STATE(4097)] = 230897, - [SMALL_STATE(4098)] = 230965, - [SMALL_STATE(4099)] = 231039, - [SMALL_STATE(4100)] = 231107, - [SMALL_STATE(4101)] = 231175, - [SMALL_STATE(4102)] = 231249, - [SMALL_STATE(4103)] = 231323, - [SMALL_STATE(4104)] = 231397, - [SMALL_STATE(4105)] = 231465, - [SMALL_STATE(4106)] = 231533, - [SMALL_STATE(4107)] = 231601, - [SMALL_STATE(4108)] = 231673, - [SMALL_STATE(4109)] = 231747, - [SMALL_STATE(4110)] = 231819, - [SMALL_STATE(4111)] = 231893, - [SMALL_STATE(4112)] = 231965, - [SMALL_STATE(4113)] = 232039, - [SMALL_STATE(4114)] = 232107, - [SMALL_STATE(4115)] = 232181, - [SMALL_STATE(4116)] = 232253, - [SMALL_STATE(4117)] = 232321, - [SMALL_STATE(4118)] = 232389, - [SMALL_STATE(4119)] = 232461, - [SMALL_STATE(4120)] = 232533, - [SMALL_STATE(4121)] = 232607, - [SMALL_STATE(4122)] = 232681, - [SMALL_STATE(4123)] = 232753, - [SMALL_STATE(4124)] = 232827, - [SMALL_STATE(4125)] = 232901, - [SMALL_STATE(4126)] = 232973, - [SMALL_STATE(4127)] = 233045, - [SMALL_STATE(4128)] = 233113, - [SMALL_STATE(4129)] = 233181, - [SMALL_STATE(4130)] = 233249, - [SMALL_STATE(4131)] = 233323, - [SMALL_STATE(4132)] = 233397, - [SMALL_STATE(4133)] = 233471, - [SMALL_STATE(4134)] = 233539, - [SMALL_STATE(4135)] = 233613, - [SMALL_STATE(4136)] = 233687, - [SMALL_STATE(4137)] = 233761, - [SMALL_STATE(4138)] = 233835, - [SMALL_STATE(4139)] = 233907, - [SMALL_STATE(4140)] = 233975, - [SMALL_STATE(4141)] = 234043, - [SMALL_STATE(4142)] = 234111, - [SMALL_STATE(4143)] = 234185, - [SMALL_STATE(4144)] = 234259, - [SMALL_STATE(4145)] = 234333, - [SMALL_STATE(4146)] = 234407, - [SMALL_STATE(4147)] = 234481, - [SMALL_STATE(4148)] = 234555, - [SMALL_STATE(4149)] = 234629, - [SMALL_STATE(4150)] = 234703, - [SMALL_STATE(4151)] = 234777, - [SMALL_STATE(4152)] = 234851, - [SMALL_STATE(4153)] = 234923, - [SMALL_STATE(4154)] = 234991, - [SMALL_STATE(4155)] = 235065, - [SMALL_STATE(4156)] = 235139, - [SMALL_STATE(4157)] = 235207, - [SMALL_STATE(4158)] = 235275, - [SMALL_STATE(4159)] = 235343, - [SMALL_STATE(4160)] = 235411, - [SMALL_STATE(4161)] = 235479, - [SMALL_STATE(4162)] = 235547, - [SMALL_STATE(4163)] = 235615, - [SMALL_STATE(4164)] = 235683, - [SMALL_STATE(4165)] = 235757, - [SMALL_STATE(4166)] = 235829, - [SMALL_STATE(4167)] = 235903, - [SMALL_STATE(4168)] = 235975, - [SMALL_STATE(4169)] = 236043, - [SMALL_STATE(4170)] = 236117, - [SMALL_STATE(4171)] = 236189, - [SMALL_STATE(4172)] = 236257, - [SMALL_STATE(4173)] = 236325, - [SMALL_STATE(4174)] = 236393, - [SMALL_STATE(4175)] = 236465, - [SMALL_STATE(4176)] = 236539, - [SMALL_STATE(4177)] = 236613, - [SMALL_STATE(4178)] = 236681, - [SMALL_STATE(4179)] = 236749, - [SMALL_STATE(4180)] = 236817, - [SMALL_STATE(4181)] = 236885, - [SMALL_STATE(4182)] = 236953, - [SMALL_STATE(4183)] = 237025, - [SMALL_STATE(4184)] = 237099, - [SMALL_STATE(4185)] = 237173, - [SMALL_STATE(4186)] = 237247, - [SMALL_STATE(4187)] = 237319, - [SMALL_STATE(4188)] = 237387, - [SMALL_STATE(4189)] = 237459, - [SMALL_STATE(4190)] = 237531, - [SMALL_STATE(4191)] = 237605, - [SMALL_STATE(4192)] = 237673, - [SMALL_STATE(4193)] = 237747, - [SMALL_STATE(4194)] = 237821, - [SMALL_STATE(4195)] = 237895, - [SMALL_STATE(4196)] = 237969, - [SMALL_STATE(4197)] = 238043, - [SMALL_STATE(4198)] = 238111, - [SMALL_STATE(4199)] = 238179, - [SMALL_STATE(4200)] = 238247, - [SMALL_STATE(4201)] = 238321, - [SMALL_STATE(4202)] = 238395, - [SMALL_STATE(4203)] = 238469, - [SMALL_STATE(4204)] = 238537, - [SMALL_STATE(4205)] = 238611, - [SMALL_STATE(4206)] = 238685, - [SMALL_STATE(4207)] = 238759, - [SMALL_STATE(4208)] = 238833, - [SMALL_STATE(4209)] = 238907, - [SMALL_STATE(4210)] = 238981, - [SMALL_STATE(4211)] = 239055, - [SMALL_STATE(4212)] = 239129, - [SMALL_STATE(4213)] = 239203, - [SMALL_STATE(4214)] = 239271, - [SMALL_STATE(4215)] = 239339, + [SMALL_STATE(3726)] = 204739, + [SMALL_STATE(3727)] = 204813, + [SMALL_STATE(3728)] = 204881, + [SMALL_STATE(3729)] = 204955, + [SMALL_STATE(3730)] = 205023, + [SMALL_STATE(3731)] = 205091, + [SMALL_STATE(3732)] = 205159, + [SMALL_STATE(3733)] = 205227, + [SMALL_STATE(3734)] = 205295, + [SMALL_STATE(3735)] = 205363, + [SMALL_STATE(3736)] = 205431, + [SMALL_STATE(3737)] = 205499, + [SMALL_STATE(3738)] = 205567, + [SMALL_STATE(3739)] = 205635, + [SMALL_STATE(3740)] = 205703, + [SMALL_STATE(3741)] = 205771, + [SMALL_STATE(3742)] = 205839, + [SMALL_STATE(3743)] = 205907, + [SMALL_STATE(3744)] = 205981, + [SMALL_STATE(3745)] = 206049, + [SMALL_STATE(3746)] = 206117, + [SMALL_STATE(3747)] = 206191, + [SMALL_STATE(3748)] = 206259, + [SMALL_STATE(3749)] = 206333, + [SMALL_STATE(3750)] = 206401, + [SMALL_STATE(3751)] = 206469, + [SMALL_STATE(3752)] = 206543, + [SMALL_STATE(3753)] = 206611, + [SMALL_STATE(3754)] = 206685, + [SMALL_STATE(3755)] = 206759, + [SMALL_STATE(3756)] = 206833, + [SMALL_STATE(3757)] = 206907, + [SMALL_STATE(3758)] = 206975, + [SMALL_STATE(3759)] = 207043, + [SMALL_STATE(3760)] = 207117, + [SMALL_STATE(3761)] = 207185, + [SMALL_STATE(3762)] = 207253, + [SMALL_STATE(3763)] = 207321, + [SMALL_STATE(3764)] = 207389, + [SMALL_STATE(3765)] = 207463, + [SMALL_STATE(3766)] = 207531, + [SMALL_STATE(3767)] = 207599, + [SMALL_STATE(3768)] = 207667, + [SMALL_STATE(3769)] = 207735, + [SMALL_STATE(3770)] = 207803, + [SMALL_STATE(3771)] = 207871, + [SMALL_STATE(3772)] = 207945, + [SMALL_STATE(3773)] = 208019, + [SMALL_STATE(3774)] = 208093, + [SMALL_STATE(3775)] = 208161, + [SMALL_STATE(3776)] = 208235, + [SMALL_STATE(3777)] = 208303, + [SMALL_STATE(3778)] = 208371, + [SMALL_STATE(3779)] = 208439, + [SMALL_STATE(3780)] = 208507, + [SMALL_STATE(3781)] = 208575, + [SMALL_STATE(3782)] = 208649, + [SMALL_STATE(3783)] = 208717, + [SMALL_STATE(3784)] = 208785, + [SMALL_STATE(3785)] = 208853, + [SMALL_STATE(3786)] = 208921, + [SMALL_STATE(3787)] = 208989, + [SMALL_STATE(3788)] = 209063, + [SMALL_STATE(3789)] = 209137, + [SMALL_STATE(3790)] = 209211, + [SMALL_STATE(3791)] = 209279, + [SMALL_STATE(3792)] = 209347, + [SMALL_STATE(3793)] = 209415, + [SMALL_STATE(3794)] = 209483, + [SMALL_STATE(3795)] = 209555, + [SMALL_STATE(3796)] = 209627, + [SMALL_STATE(3797)] = 209695, + [SMALL_STATE(3798)] = 209763, + [SMALL_STATE(3799)] = 209837, + [SMALL_STATE(3800)] = 209911, + [SMALL_STATE(3801)] = 209985, + [SMALL_STATE(3802)] = 210059, + [SMALL_STATE(3803)] = 210133, + [SMALL_STATE(3804)] = 210207, + [SMALL_STATE(3805)] = 210281, + [SMALL_STATE(3806)] = 210355, + [SMALL_STATE(3807)] = 210429, + [SMALL_STATE(3808)] = 210503, + [SMALL_STATE(3809)] = 210577, + [SMALL_STATE(3810)] = 210651, + [SMALL_STATE(3811)] = 210725, + [SMALL_STATE(3812)] = 210793, + [SMALL_STATE(3813)] = 210861, + [SMALL_STATE(3814)] = 210929, + [SMALL_STATE(3815)] = 210997, + [SMALL_STATE(3816)] = 211065, + [SMALL_STATE(3817)] = 211133, + [SMALL_STATE(3818)] = 211201, + [SMALL_STATE(3819)] = 211269, + [SMALL_STATE(3820)] = 211337, + [SMALL_STATE(3821)] = 211405, + [SMALL_STATE(3822)] = 211473, + [SMALL_STATE(3823)] = 211541, + [SMALL_STATE(3824)] = 211609, + [SMALL_STATE(3825)] = 211677, + [SMALL_STATE(3826)] = 211745, + [SMALL_STATE(3827)] = 211813, + [SMALL_STATE(3828)] = 211881, + [SMALL_STATE(3829)] = 211949, + [SMALL_STATE(3830)] = 212017, + [SMALL_STATE(3831)] = 212085, + [SMALL_STATE(3832)] = 212153, + [SMALL_STATE(3833)] = 212221, + [SMALL_STATE(3834)] = 212289, + [SMALL_STATE(3835)] = 212357, + [SMALL_STATE(3836)] = 212425, + [SMALL_STATE(3837)] = 212493, + [SMALL_STATE(3838)] = 212561, + [SMALL_STATE(3839)] = 212629, + [SMALL_STATE(3840)] = 212697, + [SMALL_STATE(3841)] = 212765, + [SMALL_STATE(3842)] = 212837, + [SMALL_STATE(3843)] = 212909, + [SMALL_STATE(3844)] = 212977, + [SMALL_STATE(3845)] = 213045, + [SMALL_STATE(3846)] = 213113, + [SMALL_STATE(3847)] = 213181, + [SMALL_STATE(3848)] = 213249, + [SMALL_STATE(3849)] = 213317, + [SMALL_STATE(3850)] = 213385, + [SMALL_STATE(3851)] = 213453, + [SMALL_STATE(3852)] = 213521, + [SMALL_STATE(3853)] = 213589, + [SMALL_STATE(3854)] = 213657, + [SMALL_STATE(3855)] = 213725, + [SMALL_STATE(3856)] = 213793, + [SMALL_STATE(3857)] = 213861, + [SMALL_STATE(3858)] = 213929, + [SMALL_STATE(3859)] = 213997, + [SMALL_STATE(3860)] = 214065, + [SMALL_STATE(3861)] = 214133, + [SMALL_STATE(3862)] = 214201, + [SMALL_STATE(3863)] = 214269, + [SMALL_STATE(3864)] = 214337, + [SMALL_STATE(3865)] = 214409, + [SMALL_STATE(3866)] = 214481, + [SMALL_STATE(3867)] = 214549, + [SMALL_STATE(3868)] = 214617, + [SMALL_STATE(3869)] = 214685, + [SMALL_STATE(3870)] = 214753, + [SMALL_STATE(3871)] = 214821, + [SMALL_STATE(3872)] = 214889, + [SMALL_STATE(3873)] = 214957, + [SMALL_STATE(3874)] = 215025, + [SMALL_STATE(3875)] = 215093, + [SMALL_STATE(3876)] = 215161, + [SMALL_STATE(3877)] = 215233, + [SMALL_STATE(3878)] = 215305, + [SMALL_STATE(3879)] = 215373, + [SMALL_STATE(3880)] = 215441, + [SMALL_STATE(3881)] = 215509, + [SMALL_STATE(3882)] = 215577, + [SMALL_STATE(3883)] = 215645, + [SMALL_STATE(3884)] = 215713, + [SMALL_STATE(3885)] = 215781, + [SMALL_STATE(3886)] = 215849, + [SMALL_STATE(3887)] = 215921, + [SMALL_STATE(3888)] = 215993, + [SMALL_STATE(3889)] = 216067, + [SMALL_STATE(3890)] = 216135, + [SMALL_STATE(3891)] = 216207, + [SMALL_STATE(3892)] = 216279, + [SMALL_STATE(3893)] = 216347, + [SMALL_STATE(3894)] = 216415, + [SMALL_STATE(3895)] = 216483, + [SMALL_STATE(3896)] = 216555, + [SMALL_STATE(3897)] = 216627, + [SMALL_STATE(3898)] = 216695, + [SMALL_STATE(3899)] = 216767, + [SMALL_STATE(3900)] = 216839, + [SMALL_STATE(3901)] = 216907, + [SMALL_STATE(3902)] = 216979, + [SMALL_STATE(3903)] = 217051, + [SMALL_STATE(3904)] = 217119, + [SMALL_STATE(3905)] = 217191, + [SMALL_STATE(3906)] = 217263, + [SMALL_STATE(3907)] = 217331, + [SMALL_STATE(3908)] = 217399, + [SMALL_STATE(3909)] = 217467, + [SMALL_STATE(3910)] = 217539, + [SMALL_STATE(3911)] = 217611, + [SMALL_STATE(3912)] = 217679, + [SMALL_STATE(3913)] = 217751, + [SMALL_STATE(3914)] = 217819, + [SMALL_STATE(3915)] = 217891, + [SMALL_STATE(3916)] = 217959, + [SMALL_STATE(3917)] = 218031, + [SMALL_STATE(3918)] = 218103, + [SMALL_STATE(3919)] = 218171, + [SMALL_STATE(3920)] = 218243, + [SMALL_STATE(3921)] = 218315, + [SMALL_STATE(3922)] = 218383, + [SMALL_STATE(3923)] = 218455, + [SMALL_STATE(3924)] = 218527, + [SMALL_STATE(3925)] = 218595, + [SMALL_STATE(3926)] = 218667, + [SMALL_STATE(3927)] = 218735, + [SMALL_STATE(3928)] = 218807, + [SMALL_STATE(3929)] = 218875, + [SMALL_STATE(3930)] = 218947, + [SMALL_STATE(3931)] = 219015, + [SMALL_STATE(3932)] = 219087, + [SMALL_STATE(3933)] = 219155, + [SMALL_STATE(3934)] = 219227, + [SMALL_STATE(3935)] = 219299, + [SMALL_STATE(3936)] = 219367, + [SMALL_STATE(3937)] = 219439, + [SMALL_STATE(3938)] = 219511, + [SMALL_STATE(3939)] = 219579, + [SMALL_STATE(3940)] = 219651, + [SMALL_STATE(3941)] = 219719, + [SMALL_STATE(3942)] = 219791, + [SMALL_STATE(3943)] = 219863, + [SMALL_STATE(3944)] = 219931, + [SMALL_STATE(3945)] = 220003, + [SMALL_STATE(3946)] = 220075, + [SMALL_STATE(3947)] = 220143, + [SMALL_STATE(3948)] = 220211, + [SMALL_STATE(3949)] = 220279, + [SMALL_STATE(3950)] = 220347, + [SMALL_STATE(3951)] = 220415, + [SMALL_STATE(3952)] = 220483, + [SMALL_STATE(3953)] = 220551, + [SMALL_STATE(3954)] = 220619, + [SMALL_STATE(3955)] = 220687, + [SMALL_STATE(3956)] = 220755, + [SMALL_STATE(3957)] = 220823, + [SMALL_STATE(3958)] = 220891, + [SMALL_STATE(3959)] = 220959, + [SMALL_STATE(3960)] = 221027, + [SMALL_STATE(3961)] = 221095, + [SMALL_STATE(3962)] = 221163, + [SMALL_STATE(3963)] = 221231, + [SMALL_STATE(3964)] = 221299, + [SMALL_STATE(3965)] = 221367, + [SMALL_STATE(3966)] = 221435, + [SMALL_STATE(3967)] = 221503, + [SMALL_STATE(3968)] = 221571, + [SMALL_STATE(3969)] = 221639, + [SMALL_STATE(3970)] = 221707, + [SMALL_STATE(3971)] = 221775, + [SMALL_STATE(3972)] = 221843, + [SMALL_STATE(3973)] = 221911, + [SMALL_STATE(3974)] = 221979, + [SMALL_STATE(3975)] = 222047, + [SMALL_STATE(3976)] = 222115, + [SMALL_STATE(3977)] = 222183, + [SMALL_STATE(3978)] = 222251, + [SMALL_STATE(3979)] = 222319, + [SMALL_STATE(3980)] = 222387, + [SMALL_STATE(3981)] = 222455, + [SMALL_STATE(3982)] = 222523, + [SMALL_STATE(3983)] = 222591, + [SMALL_STATE(3984)] = 222659, + [SMALL_STATE(3985)] = 222727, + [SMALL_STATE(3986)] = 222795, + [SMALL_STATE(3987)] = 222863, + [SMALL_STATE(3988)] = 222931, + [SMALL_STATE(3989)] = 222999, + [SMALL_STATE(3990)] = 223067, + [SMALL_STATE(3991)] = 223135, + [SMALL_STATE(3992)] = 223209, + [SMALL_STATE(3993)] = 223283, + [SMALL_STATE(3994)] = 223351, + [SMALL_STATE(3995)] = 223425, + [SMALL_STATE(3996)] = 223499, + [SMALL_STATE(3997)] = 223567, + [SMALL_STATE(3998)] = 223635, + [SMALL_STATE(3999)] = 223707, + [SMALL_STATE(4000)] = 223779, + [SMALL_STATE(4001)] = 223851, + [SMALL_STATE(4002)] = 223923, + [SMALL_STATE(4003)] = 223995, + [SMALL_STATE(4004)] = 224067, + [SMALL_STATE(4005)] = 224135, + [SMALL_STATE(4006)] = 224207, + [SMALL_STATE(4007)] = 224279, + [SMALL_STATE(4008)] = 224347, + [SMALL_STATE(4009)] = 224421, + [SMALL_STATE(4010)] = 224495, + [SMALL_STATE(4011)] = 224569, + [SMALL_STATE(4012)] = 224643, + [SMALL_STATE(4013)] = 224711, + [SMALL_STATE(4014)] = 224779, + [SMALL_STATE(4015)] = 224847, + [SMALL_STATE(4016)] = 224919, + [SMALL_STATE(4017)] = 224991, + [SMALL_STATE(4018)] = 225063, + [SMALL_STATE(4019)] = 225135, + [SMALL_STATE(4020)] = 225207, + [SMALL_STATE(4021)] = 225279, + [SMALL_STATE(4022)] = 225351, + [SMALL_STATE(4023)] = 225423, + [SMALL_STATE(4024)] = 225491, + [SMALL_STATE(4025)] = 225565, + [SMALL_STATE(4026)] = 225639, + [SMALL_STATE(4027)] = 225707, + [SMALL_STATE(4028)] = 225779, + [SMALL_STATE(4029)] = 225851, + [SMALL_STATE(4030)] = 225923, + [SMALL_STATE(4031)] = 225995, + [SMALL_STATE(4032)] = 226069, + [SMALL_STATE(4033)] = 226143, + [SMALL_STATE(4034)] = 226211, + [SMALL_STATE(4035)] = 226279, + [SMALL_STATE(4036)] = 226351, + [SMALL_STATE(4037)] = 226423, + [SMALL_STATE(4038)] = 226495, + [SMALL_STATE(4039)] = 226567, + [SMALL_STATE(4040)] = 226641, + [SMALL_STATE(4041)] = 226715, + [SMALL_STATE(4042)] = 226789, + [SMALL_STATE(4043)] = 226863, + [SMALL_STATE(4044)] = 226937, + [SMALL_STATE(4045)] = 227011, + [SMALL_STATE(4046)] = 227079, + [SMALL_STATE(4047)] = 227153, + [SMALL_STATE(4048)] = 227227, + [SMALL_STATE(4049)] = 227295, + [SMALL_STATE(4050)] = 227369, + [SMALL_STATE(4051)] = 227443, + [SMALL_STATE(4052)] = 227517, + [SMALL_STATE(4053)] = 227591, + [SMALL_STATE(4054)] = 227665, + [SMALL_STATE(4055)] = 227739, + [SMALL_STATE(4056)] = 227813, + [SMALL_STATE(4057)] = 227887, + [SMALL_STATE(4058)] = 227961, + [SMALL_STATE(4059)] = 228035, + [SMALL_STATE(4060)] = 228109, + [SMALL_STATE(4061)] = 228183, + [SMALL_STATE(4062)] = 228257, + [SMALL_STATE(4063)] = 228331, + [SMALL_STATE(4064)] = 228405, + [SMALL_STATE(4065)] = 228473, + [SMALL_STATE(4066)] = 228547, + [SMALL_STATE(4067)] = 228621, + [SMALL_STATE(4068)] = 228695, + [SMALL_STATE(4069)] = 228763, + [SMALL_STATE(4070)] = 228837, + [SMALL_STATE(4071)] = 228911, + [SMALL_STATE(4072)] = 228985, + [SMALL_STATE(4073)] = 229059, + [SMALL_STATE(4074)] = 229133, + [SMALL_STATE(4075)] = 229207, + [SMALL_STATE(4076)] = 229281, + [SMALL_STATE(4077)] = 229355, + [SMALL_STATE(4078)] = 229429, + [SMALL_STATE(4079)] = 229503, + [SMALL_STATE(4080)] = 229577, + [SMALL_STATE(4081)] = 229651, + [SMALL_STATE(4082)] = 229719, + [SMALL_STATE(4083)] = 229787, + [SMALL_STATE(4084)] = 229861, + [SMALL_STATE(4085)] = 229935, + [SMALL_STATE(4086)] = 230003, + [SMALL_STATE(4087)] = 230077, + [SMALL_STATE(4088)] = 230151, + [SMALL_STATE(4089)] = 230225, + [SMALL_STATE(4090)] = 230299, + [SMALL_STATE(4091)] = 230373, + [SMALL_STATE(4092)] = 230447, + [SMALL_STATE(4093)] = 230521, + [SMALL_STATE(4094)] = 230595, + [SMALL_STATE(4095)] = 230669, + [SMALL_STATE(4096)] = 230743, + [SMALL_STATE(4097)] = 230817, + [SMALL_STATE(4098)] = 230891, + [SMALL_STATE(4099)] = 230959, + [SMALL_STATE(4100)] = 231033, + [SMALL_STATE(4101)] = 231107, + [SMALL_STATE(4102)] = 231175, + [SMALL_STATE(4103)] = 231249, + [SMALL_STATE(4104)] = 231323, + [SMALL_STATE(4105)] = 231391, + [SMALL_STATE(4106)] = 231465, + [SMALL_STATE(4107)] = 231539, + [SMALL_STATE(4108)] = 231613, + [SMALL_STATE(4109)] = 231687, + [SMALL_STATE(4110)] = 231761, + [SMALL_STATE(4111)] = 231835, + [SMALL_STATE(4112)] = 231903, + [SMALL_STATE(4113)] = 231977, + [SMALL_STATE(4114)] = 232051, + [SMALL_STATE(4115)] = 232125, + [SMALL_STATE(4116)] = 232199, + [SMALL_STATE(4117)] = 232267, + [SMALL_STATE(4118)] = 232341, + [SMALL_STATE(4119)] = 232415, + [SMALL_STATE(4120)] = 232483, + [SMALL_STATE(4121)] = 232557, + [SMALL_STATE(4122)] = 232631, + [SMALL_STATE(4123)] = 232705, + [SMALL_STATE(4124)] = 232779, + [SMALL_STATE(4125)] = 232853, + [SMALL_STATE(4126)] = 232927, + [SMALL_STATE(4127)] = 233001, + [SMALL_STATE(4128)] = 233075, + [SMALL_STATE(4129)] = 233149, + [SMALL_STATE(4130)] = 233223, + [SMALL_STATE(4131)] = 233297, + [SMALL_STATE(4132)] = 233371, + [SMALL_STATE(4133)] = 233445, + [SMALL_STATE(4134)] = 233519, + [SMALL_STATE(4135)] = 233587, + [SMALL_STATE(4136)] = 233659, + [SMALL_STATE(4137)] = 233733, + [SMALL_STATE(4138)] = 233807, + [SMALL_STATE(4139)] = 233875, + [SMALL_STATE(4140)] = 233949, + [SMALL_STATE(4141)] = 234023, + [SMALL_STATE(4142)] = 234097, + [SMALL_STATE(4143)] = 234171, + [SMALL_STATE(4144)] = 234243, + [SMALL_STATE(4145)] = 234317, + [SMALL_STATE(4146)] = 234391, + [SMALL_STATE(4147)] = 234465, + [SMALL_STATE(4148)] = 234539, + [SMALL_STATE(4149)] = 234613, + [SMALL_STATE(4150)] = 234687, + [SMALL_STATE(4151)] = 234761, + [SMALL_STATE(4152)] = 234835, + [SMALL_STATE(4153)] = 234903, + [SMALL_STATE(4154)] = 234977, + [SMALL_STATE(4155)] = 235051, + [SMALL_STATE(4156)] = 235119, + [SMALL_STATE(4157)] = 235193, + [SMALL_STATE(4158)] = 235267, + [SMALL_STATE(4159)] = 235341, + [SMALL_STATE(4160)] = 235415, + [SMALL_STATE(4161)] = 235489, + [SMALL_STATE(4162)] = 235563, + [SMALL_STATE(4163)] = 235637, + [SMALL_STATE(4164)] = 235711, + [SMALL_STATE(4165)] = 235785, + [SMALL_STATE(4166)] = 235859, + [SMALL_STATE(4167)] = 235933, + [SMALL_STATE(4168)] = 236007, + [SMALL_STATE(4169)] = 236075, + [SMALL_STATE(4170)] = 236149, + [SMALL_STATE(4171)] = 236223, + [SMALL_STATE(4172)] = 236291, + [SMALL_STATE(4173)] = 236365, + [SMALL_STATE(4174)] = 236439, + [SMALL_STATE(4175)] = 236513, + [SMALL_STATE(4176)] = 236587, + [SMALL_STATE(4177)] = 236661, + [SMALL_STATE(4178)] = 236735, + [SMALL_STATE(4179)] = 236809, + [SMALL_STATE(4180)] = 236883, + [SMALL_STATE(4181)] = 236957, + [SMALL_STATE(4182)] = 237031, + [SMALL_STATE(4183)] = 237105, + [SMALL_STATE(4184)] = 237179, + [SMALL_STATE(4185)] = 237247, + [SMALL_STATE(4186)] = 237315, + [SMALL_STATE(4187)] = 237383, + [SMALL_STATE(4188)] = 237451, + [SMALL_STATE(4189)] = 237519, + [SMALL_STATE(4190)] = 237591, + [SMALL_STATE(4191)] = 237665, + [SMALL_STATE(4192)] = 237739, + [SMALL_STATE(4193)] = 237813, + [SMALL_STATE(4194)] = 237881, + [SMALL_STATE(4195)] = 237949, + [SMALL_STATE(4196)] = 238017, + [SMALL_STATE(4197)] = 238091, + [SMALL_STATE(4198)] = 238165, + [SMALL_STATE(4199)] = 238233, + [SMALL_STATE(4200)] = 238307, + [SMALL_STATE(4201)] = 238375, + [SMALL_STATE(4202)] = 238443, + [SMALL_STATE(4203)] = 238517, + [SMALL_STATE(4204)] = 238585, + [SMALL_STATE(4205)] = 238653, + [SMALL_STATE(4206)] = 238725, + [SMALL_STATE(4207)] = 238793, + [SMALL_STATE(4208)] = 238861, + [SMALL_STATE(4209)] = 238929, + [SMALL_STATE(4210)] = 238997, + [SMALL_STATE(4211)] = 239065, + [SMALL_STATE(4212)] = 239133, + [SMALL_STATE(4213)] = 239205, + [SMALL_STATE(4214)] = 239273, + [SMALL_STATE(4215)] = 239341, [SMALL_STATE(4216)] = 239413, [SMALL_STATE(4217)] = 239460, - [SMALL_STATE(4218)] = 239535, - [SMALL_STATE(4219)] = 239578, - [SMALL_STATE(4220)] = 239653, - [SMALL_STATE(4221)] = 239728, - [SMALL_STATE(4222)] = 239793, - [SMALL_STATE(4223)] = 239836, - [SMALL_STATE(4224)] = 239893, - [SMALL_STATE(4225)] = 239938, - [SMALL_STATE(4226)] = 239995, - [SMALL_STATE(4227)] = 240070, - [SMALL_STATE(4228)] = 240113, + [SMALL_STATE(4218)] = 239517, + [SMALL_STATE(4219)] = 239592, + [SMALL_STATE(4220)] = 239649, + [SMALL_STATE(4221)] = 239692, + [SMALL_STATE(4222)] = 239735, + [SMALL_STATE(4223)] = 239778, + [SMALL_STATE(4224)] = 239853, + [SMALL_STATE(4225)] = 239898, + [SMALL_STATE(4226)] = 239945, + [SMALL_STATE(4227)] = 240020, + [SMALL_STATE(4228)] = 240095, [SMALL_STATE(4229)] = 240160, [SMALL_STATE(4230)] = 240202, [SMALL_STATE(4231)] = 240244, - [SMALL_STATE(4232)] = 240286, - [SMALL_STATE(4233)] = 240328, - [SMALL_STATE(4234)] = 240370, - [SMALL_STATE(4235)] = 240412, - [SMALL_STATE(4236)] = 240458, - [SMALL_STATE(4237)] = 240530, - [SMALL_STATE(4238)] = 240572, - [SMALL_STATE(4239)] = 240614, - [SMALL_STATE(4240)] = 240670, - [SMALL_STATE(4241)] = 240712, - [SMALL_STATE(4242)] = 240784, - [SMALL_STATE(4243)] = 240826, - [SMALL_STATE(4244)] = 240898, - [SMALL_STATE(4245)] = 240940, - [SMALL_STATE(4246)] = 240982, - [SMALL_STATE(4247)] = 241024, - [SMALL_STATE(4248)] = 241066, - [SMALL_STATE(4249)] = 241108, - [SMALL_STATE(4250)] = 241164, - [SMALL_STATE(4251)] = 241210, - [SMALL_STATE(4252)] = 241252, - [SMALL_STATE(4253)] = 241294, - [SMALL_STATE(4254)] = 241336, - [SMALL_STATE(4255)] = 241380, - [SMALL_STATE(4256)] = 241422, - [SMALL_STATE(4257)] = 241464, - [SMALL_STATE(4258)] = 241506, - [SMALL_STATE(4259)] = 241548, - [SMALL_STATE(4260)] = 241590, + [SMALL_STATE(4232)] = 240300, + [SMALL_STATE(4233)] = 240342, + [SMALL_STATE(4234)] = 240384, + [SMALL_STATE(4235)] = 240426, + [SMALL_STATE(4236)] = 240470, + [SMALL_STATE(4237)] = 240542, + [SMALL_STATE(4238)] = 240584, + [SMALL_STATE(4239)] = 240626, + [SMALL_STATE(4240)] = 240668, + [SMALL_STATE(4241)] = 240710, + [SMALL_STATE(4242)] = 240752, + [SMALL_STATE(4243)] = 240794, + [SMALL_STATE(4244)] = 240836, + [SMALL_STATE(4245)] = 240878, + [SMALL_STATE(4246)] = 240920, + [SMALL_STATE(4247)] = 240962, + [SMALL_STATE(4248)] = 241004, + [SMALL_STATE(4249)] = 241046, + [SMALL_STATE(4250)] = 241118, + [SMALL_STATE(4251)] = 241164, + [SMALL_STATE(4252)] = 241206, + [SMALL_STATE(4253)] = 241262, + [SMALL_STATE(4254)] = 241304, + [SMALL_STATE(4255)] = 241350, + [SMALL_STATE(4256)] = 241392, + [SMALL_STATE(4257)] = 241434, + [SMALL_STATE(4258)] = 241476, + [SMALL_STATE(4259)] = 241518, + [SMALL_STATE(4260)] = 241560, [SMALL_STATE(4261)] = 241632, [SMALL_STATE(4262)] = 241671, - [SMALL_STATE(4263)] = 241710, - [SMALL_STATE(4264)] = 241745, - [SMALL_STATE(4265)] = 241780, - [SMALL_STATE(4266)] = 241815, - [SMALL_STATE(4267)] = 241856, - [SMALL_STATE(4268)] = 241891, - [SMALL_STATE(4269)] = 241932, - [SMALL_STATE(4270)] = 241973, - [SMALL_STATE(4271)] = 242014, - [SMALL_STATE(4272)] = 242055, - [SMALL_STATE(4273)] = 242096, + [SMALL_STATE(4263)] = 241706, + [SMALL_STATE(4264)] = 241749, + [SMALL_STATE(4265)] = 241784, + [SMALL_STATE(4266)] = 241829, + [SMALL_STATE(4267)] = 241874, + [SMALL_STATE(4268)] = 241915, + [SMALL_STATE(4269)] = 241956, + [SMALL_STATE(4270)] = 241991, + [SMALL_STATE(4271)] = 242026, + [SMALL_STATE(4272)] = 242067, + [SMALL_STATE(4273)] = 242106, [SMALL_STATE(4274)] = 242141, - [SMALL_STATE(4275)] = 242182, - [SMALL_STATE(4276)] = 242217, - [SMALL_STATE(4277)] = 242258, - [SMALL_STATE(4278)] = 242297, - [SMALL_STATE(4279)] = 242342, - [SMALL_STATE(4280)] = 242387, - [SMALL_STATE(4281)] = 242422, - [SMALL_STATE(4282)] = 242465, - [SMALL_STATE(4283)] = 242506, - [SMALL_STATE(4284)] = 242551, - [SMALL_STATE(4285)] = 242592, - [SMALL_STATE(4286)] = 242627, - [SMALL_STATE(4287)] = 242668, - [SMALL_STATE(4288)] = 242707, - [SMALL_STATE(4289)] = 242742, - [SMALL_STATE(4290)] = 242785, - [SMALL_STATE(4291)] = 242824, - [SMALL_STATE(4292)] = 242861, - [SMALL_STATE(4293)] = 242902, - [SMALL_STATE(4294)] = 242939, - [SMALL_STATE(4295)] = 242978, - [SMALL_STATE(4296)] = 243013, - [SMALL_STATE(4297)] = 243054, - [SMALL_STATE(4298)] = 243095, - [SMALL_STATE(4299)] = 243130, - [SMALL_STATE(4300)] = 243171, - [SMALL_STATE(4301)] = 243206, - [SMALL_STATE(4302)] = 243241, - [SMALL_STATE(4303)] = 243276, - [SMALL_STATE(4304)] = 243311, - [SMALL_STATE(4305)] = 243352, - [SMALL_STATE(4306)] = 243391, - [SMALL_STATE(4307)] = 243426, - [SMALL_STATE(4308)] = 243461, - [SMALL_STATE(4309)] = 243496, - [SMALL_STATE(4310)] = 243537, - [SMALL_STATE(4311)] = 243578, - [SMALL_STATE(4312)] = 243613, - [SMALL_STATE(4313)] = 243668, - [SMALL_STATE(4314)] = 243703, - [SMALL_STATE(4315)] = 243758, - [SMALL_STATE(4316)] = 243799, - [SMALL_STATE(4317)] = 243834, - [SMALL_STATE(4318)] = 243869, - [SMALL_STATE(4319)] = 243904, - [SMALL_STATE(4320)] = 243945, - [SMALL_STATE(4321)] = 243980, - [SMALL_STATE(4322)] = 244035, - [SMALL_STATE(4323)] = 244070, - [SMALL_STATE(4324)] = 244105, - [SMALL_STATE(4325)] = 244144, - [SMALL_STATE(4326)] = 244179, - [SMALL_STATE(4327)] = 244214, - [SMALL_STATE(4328)] = 244249, - [SMALL_STATE(4329)] = 244284, - [SMALL_STATE(4330)] = 244319, - [SMALL_STATE(4331)] = 244354, - [SMALL_STATE(4332)] = 244395, - [SMALL_STATE(4333)] = 244430, - [SMALL_STATE(4334)] = 244465, - [SMALL_STATE(4335)] = 244500, - [SMALL_STATE(4336)] = 244535, - [SMALL_STATE(4337)] = 244570, - [SMALL_STATE(4338)] = 244605, - [SMALL_STATE(4339)] = 244640, - [SMALL_STATE(4340)] = 244677, - [SMALL_STATE(4341)] = 244712, - [SMALL_STATE(4342)] = 244763, - [SMALL_STATE(4343)] = 244802, - [SMALL_STATE(4344)] = 244837, - [SMALL_STATE(4345)] = 244874, - [SMALL_STATE(4346)] = 244915, - [SMALL_STATE(4347)] = 244960, - [SMALL_STATE(4348)] = 244999, - [SMALL_STATE(4349)] = 245034, - [SMALL_STATE(4350)] = 245085, - [SMALL_STATE(4351)] = 245126, - [SMALL_STATE(4352)] = 245165, - [SMALL_STATE(4353)] = 245206, - [SMALL_STATE(4354)] = 245247, - [SMALL_STATE(4355)] = 245282, - [SMALL_STATE(4356)] = 245317, - [SMALL_STATE(4357)] = 245352, - [SMALL_STATE(4358)] = 245387, - [SMALL_STATE(4359)] = 245428, - [SMALL_STATE(4360)] = 245469, - [SMALL_STATE(4361)] = 245504, - [SMALL_STATE(4362)] = 245545, - [SMALL_STATE(4363)] = 245586, - [SMALL_STATE(4364)] = 245623, - [SMALL_STATE(4365)] = 245664, - [SMALL_STATE(4366)] = 245699, - [SMALL_STATE(4367)] = 245734, - [SMALL_STATE(4368)] = 245769, - [SMALL_STATE(4369)] = 245808, - [SMALL_STATE(4370)] = 245843, - [SMALL_STATE(4371)] = 245884, - [SMALL_STATE(4372)] = 245929, - [SMALL_STATE(4373)] = 245964, - [SMALL_STATE(4374)] = 245999, - [SMALL_STATE(4375)] = 246034, - [SMALL_STATE(4376)] = 246075, - [SMALL_STATE(4377)] = 246118, - [SMALL_STATE(4378)] = 246153, + [SMALL_STATE(4275)] = 242178, + [SMALL_STATE(4276)] = 242219, + [SMALL_STATE(4277)] = 242260, + [SMALL_STATE(4278)] = 242295, + [SMALL_STATE(4279)] = 242332, + [SMALL_STATE(4280)] = 242367, + [SMALL_STATE(4281)] = 242402, + [SMALL_STATE(4282)] = 242437, + [SMALL_STATE(4283)] = 242472, + [SMALL_STATE(4284)] = 242513, + [SMALL_STATE(4285)] = 242554, + [SMALL_STATE(4286)] = 242595, + [SMALL_STATE(4287)] = 242636, + [SMALL_STATE(4288)] = 242677, + [SMALL_STATE(4289)] = 242712, + [SMALL_STATE(4290)] = 242749, + [SMALL_STATE(4291)] = 242786, + [SMALL_STATE(4292)] = 242821, + [SMALL_STATE(4293)] = 242860, + [SMALL_STATE(4294)] = 242905, + [SMALL_STATE(4295)] = 242946, + [SMALL_STATE(4296)] = 242987, + [SMALL_STATE(4297)] = 243030, + [SMALL_STATE(4298)] = 243065, + [SMALL_STATE(4299)] = 243100, + [SMALL_STATE(4300)] = 243135, + [SMALL_STATE(4301)] = 243170, + [SMALL_STATE(4302)] = 243205, + [SMALL_STATE(4303)] = 243240, + [SMALL_STATE(4304)] = 243275, + [SMALL_STATE(4305)] = 243310, + [SMALL_STATE(4306)] = 243345, + [SMALL_STATE(4307)] = 243386, + [SMALL_STATE(4308)] = 243427, + [SMALL_STATE(4309)] = 243468, + [SMALL_STATE(4310)] = 243513, + [SMALL_STATE(4311)] = 243548, + [SMALL_STATE(4312)] = 243603, + [SMALL_STATE(4313)] = 243644, + [SMALL_STATE(4314)] = 243683, + [SMALL_STATE(4315)] = 243718, + [SMALL_STATE(4316)] = 243753, + [SMALL_STATE(4317)] = 243788, + [SMALL_STATE(4318)] = 243827, + [SMALL_STATE(4319)] = 243862, + [SMALL_STATE(4320)] = 243897, + [SMALL_STATE(4321)] = 243938, + [SMALL_STATE(4322)] = 243977, + [SMALL_STATE(4323)] = 244012, + [SMALL_STATE(4324)] = 244053, + [SMALL_STATE(4325)] = 244088, + [SMALL_STATE(4326)] = 244123, + [SMALL_STATE(4327)] = 244164, + [SMALL_STATE(4328)] = 244205, + [SMALL_STATE(4329)] = 244246, + [SMALL_STATE(4330)] = 244281, + [SMALL_STATE(4331)] = 244316, + [SMALL_STATE(4332)] = 244357, + [SMALL_STATE(4333)] = 244392, + [SMALL_STATE(4334)] = 244433, + [SMALL_STATE(4335)] = 244468, + [SMALL_STATE(4336)] = 244513, + [SMALL_STATE(4337)] = 244554, + [SMALL_STATE(4338)] = 244593, + [SMALL_STATE(4339)] = 244628, + [SMALL_STATE(4340)] = 244669, + [SMALL_STATE(4341)] = 244708, + [SMALL_STATE(4342)] = 244743, + [SMALL_STATE(4343)] = 244784, + [SMALL_STATE(4344)] = 244825, + [SMALL_STATE(4345)] = 244866, + [SMALL_STATE(4346)] = 244901, + [SMALL_STATE(4347)] = 244942, + [SMALL_STATE(4348)] = 244977, + [SMALL_STATE(4349)] = 245018, + [SMALL_STATE(4350)] = 245053, + [SMALL_STATE(4351)] = 245104, + [SMALL_STATE(4352)] = 245139, + [SMALL_STATE(4353)] = 245174, + [SMALL_STATE(4354)] = 245209, + [SMALL_STATE(4355)] = 245250, + [SMALL_STATE(4356)] = 245291, + [SMALL_STATE(4357)] = 245332, + [SMALL_STATE(4358)] = 245373, + [SMALL_STATE(4359)] = 245414, + [SMALL_STATE(4360)] = 245449, + [SMALL_STATE(4361)] = 245484, + [SMALL_STATE(4362)] = 245523, + [SMALL_STATE(4363)] = 245562, + [SMALL_STATE(4364)] = 245597, + [SMALL_STATE(4365)] = 245636, + [SMALL_STATE(4366)] = 245671, + [SMALL_STATE(4367)] = 245706, + [SMALL_STATE(4368)] = 245741, + [SMALL_STATE(4369)] = 245776, + [SMALL_STATE(4370)] = 245817, + [SMALL_STATE(4371)] = 245852, + [SMALL_STATE(4372)] = 245893, + [SMALL_STATE(4373)] = 245934, + [SMALL_STATE(4374)] = 245973, + [SMALL_STATE(4375)] = 246024, + [SMALL_STATE(4376)] = 246079, + [SMALL_STATE(4377)] = 246114, + [SMALL_STATE(4378)] = 246149, [SMALL_STATE(4379)] = 246188, [SMALL_STATE(4380)] = 246223, - [SMALL_STATE(4381)] = 246264, - [SMALL_STATE(4382)] = 246305, - [SMALL_STATE(4383)] = 246344, - [SMALL_STATE(4384)] = 246383, - [SMALL_STATE(4385)] = 246418, - [SMALL_STATE(4386)] = 246453, - [SMALL_STATE(4387)] = 246488, - [SMALL_STATE(4388)] = 246533, - [SMALL_STATE(4389)] = 246568, - [SMALL_STATE(4390)] = 246603, - [SMALL_STATE(4391)] = 246644, - [SMALL_STATE(4392)] = 246679, - [SMALL_STATE(4393)] = 246714, - [SMALL_STATE(4394)] = 246749, - [SMALL_STATE(4395)] = 246788, - [SMALL_STATE(4396)] = 246823, - [SMALL_STATE(4397)] = 246878, - [SMALL_STATE(4398)] = 246933, - [SMALL_STATE(4399)] = 246968, - [SMALL_STATE(4400)] = 247003, - [SMALL_STATE(4401)] = 247058, - [SMALL_STATE(4402)] = 247099, - [SMALL_STATE(4403)] = 247134, - [SMALL_STATE(4404)] = 247169, - [SMALL_STATE(4405)] = 247204, - [SMALL_STATE(4406)] = 247239, - [SMALL_STATE(4407)] = 247280, - [SMALL_STATE(4408)] = 247315, - [SMALL_STATE(4409)] = 247350, - [SMALL_STATE(4410)] = 247385, - [SMALL_STATE(4411)] = 247426, - [SMALL_STATE(4412)] = 247461, + [SMALL_STATE(4381)] = 246278, + [SMALL_STATE(4382)] = 246315, + [SMALL_STATE(4383)] = 246350, + [SMALL_STATE(4384)] = 246385, + [SMALL_STATE(4385)] = 246420, + [SMALL_STATE(4386)] = 246455, + [SMALL_STATE(4387)] = 246490, + [SMALL_STATE(4388)] = 246525, + [SMALL_STATE(4389)] = 246560, + [SMALL_STATE(4390)] = 246605, + [SMALL_STATE(4391)] = 246660, + [SMALL_STATE(4392)] = 246695, + [SMALL_STATE(4393)] = 246730, + [SMALL_STATE(4394)] = 246765, + [SMALL_STATE(4395)] = 246800, + [SMALL_STATE(4396)] = 246839, + [SMALL_STATE(4397)] = 246894, + [SMALL_STATE(4398)] = 246929, + [SMALL_STATE(4399)] = 246984, + [SMALL_STATE(4400)] = 247019, + [SMALL_STATE(4401)] = 247054, + [SMALL_STATE(4402)] = 247089, + [SMALL_STATE(4403)] = 247124, + [SMALL_STATE(4404)] = 247159, + [SMALL_STATE(4405)] = 247202, + [SMALL_STATE(4406)] = 247237, + [SMALL_STATE(4407)] = 247272, + [SMALL_STATE(4408)] = 247317, + [SMALL_STATE(4409)] = 247352, + [SMALL_STATE(4410)] = 247387, + [SMALL_STATE(4411)] = 247422, + [SMALL_STATE(4412)] = 247457, [SMALL_STATE(4413)] = 247496, [SMALL_STATE(4414)] = 247537, [SMALL_STATE(4415)] = 247578, - [SMALL_STATE(4416)] = 247630, - [SMALL_STATE(4417)] = 247680, - [SMALL_STATE(4418)] = 247714, - [SMALL_STATE(4419)] = 247754, - [SMALL_STATE(4420)] = 247788, - [SMALL_STATE(4421)] = 247832, - [SMALL_STATE(4422)] = 247870, - [SMALL_STATE(4423)] = 247910, - [SMALL_STATE(4424)] = 247944, - [SMALL_STATE(4425)] = 247978, - [SMALL_STATE(4426)] = 248012, - [SMALL_STATE(4427)] = 248046, - [SMALL_STATE(4428)] = 248080, - [SMALL_STATE(4429)] = 248116, - [SMALL_STATE(4430)] = 248150, - [SMALL_STATE(4431)] = 248190, - [SMALL_STATE(4432)] = 248228, - [SMALL_STATE(4433)] = 248262, - [SMALL_STATE(4434)] = 248312, + [SMALL_STATE(4416)] = 247616, + [SMALL_STATE(4417)] = 247650, + [SMALL_STATE(4418)] = 247690, + [SMALL_STATE(4419)] = 247730, + [SMALL_STATE(4420)] = 247764, + [SMALL_STATE(4421)] = 247798, + [SMALL_STATE(4422)] = 247832, + [SMALL_STATE(4423)] = 247870, + [SMALL_STATE(4424)] = 247904, + [SMALL_STATE(4425)] = 247938, + [SMALL_STATE(4426)] = 247972, + [SMALL_STATE(4427)] = 248012, + [SMALL_STATE(4428)] = 248052, + [SMALL_STATE(4429)] = 248086, + [SMALL_STATE(4430)] = 248124, + [SMALL_STATE(4431)] = 248168, + [SMALL_STATE(4432)] = 248212, + [SMALL_STATE(4433)] = 248264, + [SMALL_STATE(4434)] = 248302, [SMALL_STATE(4435)] = 248346, - [SMALL_STATE(4436)] = 248380, - [SMALL_STATE(4437)] = 248414, - [SMALL_STATE(4438)] = 248448, - [SMALL_STATE(4439)] = 248482, - [SMALL_STATE(4440)] = 248522, - [SMALL_STATE(4441)] = 248562, - [SMALL_STATE(4442)] = 248596, - [SMALL_STATE(4443)] = 248630, - [SMALL_STATE(4444)] = 248664, - [SMALL_STATE(4445)] = 248698, - [SMALL_STATE(4446)] = 248732, - [SMALL_STATE(4447)] = 248766, - [SMALL_STATE(4448)] = 248800, - [SMALL_STATE(4449)] = 248834, - [SMALL_STATE(4450)] = 248868, - [SMALL_STATE(4451)] = 248908, - [SMALL_STATE(4452)] = 248942, - [SMALL_STATE(4453)] = 248982, - [SMALL_STATE(4454)] = 249022, - [SMALL_STATE(4455)] = 249056, - [SMALL_STATE(4456)] = 249100, - [SMALL_STATE(4457)] = 249134, - [SMALL_STATE(4458)] = 249168, - [SMALL_STATE(4459)] = 249208, - [SMALL_STATE(4460)] = 249248, - [SMALL_STATE(4461)] = 249288, - [SMALL_STATE(4462)] = 249322, - [SMALL_STATE(4463)] = 249360, - [SMALL_STATE(4464)] = 249400, - [SMALL_STATE(4465)] = 249434, - [SMALL_STATE(4466)] = 249478, - [SMALL_STATE(4467)] = 249518, - [SMALL_STATE(4468)] = 249558, - [SMALL_STATE(4469)] = 249598, - [SMALL_STATE(4470)] = 249632, - [SMALL_STATE(4471)] = 249666, - [SMALL_STATE(4472)] = 249706, - [SMALL_STATE(4473)] = 249746, - [SMALL_STATE(4474)] = 249780, - [SMALL_STATE(4475)] = 249814, - [SMALL_STATE(4476)] = 249848, - [SMALL_STATE(4477)] = 249888, - [SMALL_STATE(4478)] = 249928, - [SMALL_STATE(4479)] = 249962, - [SMALL_STATE(4480)] = 250002, + [SMALL_STATE(4436)] = 248384, + [SMALL_STATE(4437)] = 248420, + [SMALL_STATE(4438)] = 248460, + [SMALL_STATE(4439)] = 248494, + [SMALL_STATE(4440)] = 248528, + [SMALL_STATE(4441)] = 248566, + [SMALL_STATE(4442)] = 248606, + [SMALL_STATE(4443)] = 248646, + [SMALL_STATE(4444)] = 248684, + [SMALL_STATE(4445)] = 248718, + [SMALL_STATE(4446)] = 248752, + [SMALL_STATE(4447)] = 248786, + [SMALL_STATE(4448)] = 248830, + [SMALL_STATE(4449)] = 248864, + [SMALL_STATE(4450)] = 248898, + [SMALL_STATE(4451)] = 248932, + [SMALL_STATE(4452)] = 248966, + [SMALL_STATE(4453)] = 249010, + [SMALL_STATE(4454)] = 249044, + [SMALL_STATE(4455)] = 249078, + [SMALL_STATE(4456)] = 249112, + [SMALL_STATE(4457)] = 249146, + [SMALL_STATE(4458)] = 249186, + [SMALL_STATE(4459)] = 249226, + [SMALL_STATE(4460)] = 249266, + [SMALL_STATE(4461)] = 249304, + [SMALL_STATE(4462)] = 249344, + [SMALL_STATE(4463)] = 249384, + [SMALL_STATE(4464)] = 249424, + [SMALL_STATE(4465)] = 249458, + [SMALL_STATE(4466)] = 249498, + [SMALL_STATE(4467)] = 249538, + [SMALL_STATE(4468)] = 249572, + [SMALL_STATE(4469)] = 249614, + [SMALL_STATE(4470)] = 249654, + [SMALL_STATE(4471)] = 249688, + [SMALL_STATE(4472)] = 249722, + [SMALL_STATE(4473)] = 249756, + [SMALL_STATE(4474)] = 249796, + [SMALL_STATE(4475)] = 249830, + [SMALL_STATE(4476)] = 249870, + [SMALL_STATE(4477)] = 249904, + [SMALL_STATE(4478)] = 249938, + [SMALL_STATE(4479)] = 249972, + [SMALL_STATE(4480)] = 250012, [SMALL_STATE(4481)] = 250046, - [SMALL_STATE(4482)] = 250086, - [SMALL_STATE(4483)] = 250120, - [SMALL_STATE(4484)] = 250158, - [SMALL_STATE(4485)] = 250198, - [SMALL_STATE(4486)] = 250236, - [SMALL_STATE(4487)] = 250276, - [SMALL_STATE(4488)] = 250316, - [SMALL_STATE(4489)] = 250356, - [SMALL_STATE(4490)] = 250408, - [SMALL_STATE(4491)] = 250442, - [SMALL_STATE(4492)] = 250482, - [SMALL_STATE(4493)] = 250520, - [SMALL_STATE(4494)] = 250554, - [SMALL_STATE(4495)] = 250588, - [SMALL_STATE(4496)] = 250628, - [SMALL_STATE(4497)] = 250662, - [SMALL_STATE(4498)] = 250696, - [SMALL_STATE(4499)] = 250734, - [SMALL_STATE(4500)] = 250768, + [SMALL_STATE(4482)] = 250080, + [SMALL_STATE(4483)] = 250114, + [SMALL_STATE(4484)] = 250148, + [SMALL_STATE(4485)] = 250188, + [SMALL_STATE(4486)] = 250228, + [SMALL_STATE(4487)] = 250262, + [SMALL_STATE(4488)] = 250296, + [SMALL_STATE(4489)] = 250330, + [SMALL_STATE(4490)] = 250370, + [SMALL_STATE(4491)] = 250410, + [SMALL_STATE(4492)] = 250444, + [SMALL_STATE(4493)] = 250494, + [SMALL_STATE(4494)] = 250528, + [SMALL_STATE(4495)] = 250568, + [SMALL_STATE(4496)] = 250612, + [SMALL_STATE(4497)] = 250646, + [SMALL_STATE(4498)] = 250686, + [SMALL_STATE(4499)] = 250726, + [SMALL_STATE(4500)] = 250766, [SMALL_STATE(4501)] = 250806, - [SMALL_STATE(4502)] = 250840, - [SMALL_STATE(4503)] = 250874, - [SMALL_STATE(4504)] = 250908, - [SMALL_STATE(4505)] = 250948, - [SMALL_STATE(4506)] = 250988, - [SMALL_STATE(4507)] = 251028, - [SMALL_STATE(4508)] = 251066, - [SMALL_STATE(4509)] = 251100, - [SMALL_STATE(4510)] = 251134, - [SMALL_STATE(4511)] = 251174, - [SMALL_STATE(4512)] = 251214, - [SMALL_STATE(4513)] = 251248, - [SMALL_STATE(4514)] = 251288, - [SMALL_STATE(4515)] = 251328, - [SMALL_STATE(4516)] = 251362, - [SMALL_STATE(4517)] = 251396, - [SMALL_STATE(4518)] = 251440, - [SMALL_STATE(4519)] = 251480, - [SMALL_STATE(4520)] = 251520, - [SMALL_STATE(4521)] = 251560, - [SMALL_STATE(4522)] = 251598, - [SMALL_STATE(4523)] = 251638, - [SMALL_STATE(4524)] = 251678, - [SMALL_STATE(4525)] = 251718, - [SMALL_STATE(4526)] = 251758, - [SMALL_STATE(4527)] = 251792, - [SMALL_STATE(4528)] = 251830, - [SMALL_STATE(4529)] = 251868, - [SMALL_STATE(4530)] = 251908, - [SMALL_STATE(4531)] = 251952, - [SMALL_STATE(4532)] = 251992, - [SMALL_STATE(4533)] = 252026, - [SMALL_STATE(4534)] = 252064, - [SMALL_STATE(4535)] = 252104, - [SMALL_STATE(4536)] = 252144, - [SMALL_STATE(4537)] = 252178, - [SMALL_STATE(4538)] = 252212, - [SMALL_STATE(4539)] = 252250, - [SMALL_STATE(4540)] = 252284, - [SMALL_STATE(4541)] = 252318, - [SMALL_STATE(4542)] = 252352, - [SMALL_STATE(4543)] = 252386, - [SMALL_STATE(4544)] = 252420, - [SMALL_STATE(4545)] = 252454, - [SMALL_STATE(4546)] = 252488, - [SMALL_STATE(4547)] = 252526, - [SMALL_STATE(4548)] = 252570, - [SMALL_STATE(4549)] = 252604, - [SMALL_STATE(4550)] = 252648, - [SMALL_STATE(4551)] = 252688, - [SMALL_STATE(4552)] = 252740, - [SMALL_STATE(4553)] = 252774, - [SMALL_STATE(4554)] = 252808, - [SMALL_STATE(4555)] = 252846, - [SMALL_STATE(4556)] = 252886, - [SMALL_STATE(4557)] = 252920, - [SMALL_STATE(4558)] = 252954, - [SMALL_STATE(4559)] = 252994, - [SMALL_STATE(4560)] = 253034, - [SMALL_STATE(4561)] = 253068, - [SMALL_STATE(4562)] = 253102, - [SMALL_STATE(4563)] = 253142, - [SMALL_STATE(4564)] = 253176, - [SMALL_STATE(4565)] = 253210, - [SMALL_STATE(4566)] = 253250, - [SMALL_STATE(4567)] = 253284, - [SMALL_STATE(4568)] = 253336, - [SMALL_STATE(4569)] = 253376, - [SMALL_STATE(4570)] = 253410, - [SMALL_STATE(4571)] = 253452, - [SMALL_STATE(4572)] = 253496, - [SMALL_STATE(4573)] = 253530, - [SMALL_STATE(4574)] = 253574, - [SMALL_STATE(4575)] = 253614, - [SMALL_STATE(4576)] = 253648, + [SMALL_STATE(4502)] = 250846, + [SMALL_STATE(4503)] = 250898, + [SMALL_STATE(4504)] = 250936, + [SMALL_STATE(4505)] = 250980, + [SMALL_STATE(4506)] = 251018, + [SMALL_STATE(4507)] = 251052, + [SMALL_STATE(4508)] = 251086, + [SMALL_STATE(4509)] = 251120, + [SMALL_STATE(4510)] = 251164, + [SMALL_STATE(4511)] = 251198, + [SMALL_STATE(4512)] = 251232, + [SMALL_STATE(4513)] = 251282, + [SMALL_STATE(4514)] = 251316, + [SMALL_STATE(4515)] = 251360, + [SMALL_STATE(4516)] = 251394, + [SMALL_STATE(4517)] = 251428, + [SMALL_STATE(4518)] = 251462, + [SMALL_STATE(4519)] = 251496, + [SMALL_STATE(4520)] = 251530, + [SMALL_STATE(4521)] = 251568, + [SMALL_STATE(4522)] = 251602, + [SMALL_STATE(4523)] = 251636, + [SMALL_STATE(4524)] = 251670, + [SMALL_STATE(4525)] = 251710, + [SMALL_STATE(4526)] = 251748, + [SMALL_STATE(4527)] = 251788, + [SMALL_STATE(4528)] = 251826, + [SMALL_STATE(4529)] = 251860, + [SMALL_STATE(4530)] = 251900, + [SMALL_STATE(4531)] = 251940, + [SMALL_STATE(4532)] = 251978, + [SMALL_STATE(4533)] = 252018, + [SMALL_STATE(4534)] = 252058, + [SMALL_STATE(4535)] = 252092, + [SMALL_STATE(4536)] = 252126, + [SMALL_STATE(4537)] = 252164, + [SMALL_STATE(4538)] = 252204, + [SMALL_STATE(4539)] = 252242, + [SMALL_STATE(4540)] = 252282, + [SMALL_STATE(4541)] = 252326, + [SMALL_STATE(4542)] = 252370, + [SMALL_STATE(4543)] = 252404, + [SMALL_STATE(4544)] = 252444, + [SMALL_STATE(4545)] = 252478, + [SMALL_STATE(4546)] = 252512, + [SMALL_STATE(4547)] = 252564, + [SMALL_STATE(4548)] = 252602, + [SMALL_STATE(4549)] = 252636, + [SMALL_STATE(4550)] = 252674, + [SMALL_STATE(4551)] = 252714, + [SMALL_STATE(4552)] = 252748, + [SMALL_STATE(4553)] = 252788, + [SMALL_STATE(4554)] = 252822, + [SMALL_STATE(4555)] = 252856, + [SMALL_STATE(4556)] = 252890, + [SMALL_STATE(4557)] = 252930, + [SMALL_STATE(4558)] = 252982, + [SMALL_STATE(4559)] = 253016, + [SMALL_STATE(4560)] = 253050, + [SMALL_STATE(4561)] = 253084, + [SMALL_STATE(4562)] = 253118, + [SMALL_STATE(4563)] = 253158, + [SMALL_STATE(4564)] = 253192, + [SMALL_STATE(4565)] = 253226, + [SMALL_STATE(4566)] = 253260, + [SMALL_STATE(4567)] = 253294, + [SMALL_STATE(4568)] = 253328, + [SMALL_STATE(4569)] = 253362, + [SMALL_STATE(4570)] = 253402, + [SMALL_STATE(4571)] = 253442, + [SMALL_STATE(4572)] = 253482, + [SMALL_STATE(4573)] = 253522, + [SMALL_STATE(4574)] = 253562, + [SMALL_STATE(4575)] = 253602, + [SMALL_STATE(4576)] = 253642, [SMALL_STATE(4577)] = 253682, - [SMALL_STATE(4578)] = 253716, - [SMALL_STATE(4579)] = 253756, - [SMALL_STATE(4580)] = 253796, - [SMALL_STATE(4581)] = 253840, - [SMALL_STATE(4582)] = 253880, - [SMALL_STATE(4583)] = 253920, - [SMALL_STATE(4584)] = 253960, - [SMALL_STATE(4585)] = 254000, - [SMALL_STATE(4586)] = 254040, - [SMALL_STATE(4587)] = 254080, - [SMALL_STATE(4588)] = 254114, - [SMALL_STATE(4589)] = 254148, - [SMALL_STATE(4590)] = 254188, - [SMALL_STATE(4591)] = 254222, - [SMALL_STATE(4592)] = 254262, - [SMALL_STATE(4593)] = 254302, - [SMALL_STATE(4594)] = 254342, - [SMALL_STATE(4595)] = 254382, - [SMALL_STATE(4596)] = 254416, - [SMALL_STATE(4597)] = 254454, - [SMALL_STATE(4598)] = 254492, - [SMALL_STATE(4599)] = 254526, - [SMALL_STATE(4600)] = 254566, - [SMALL_STATE(4601)] = 254600, - [SMALL_STATE(4602)] = 254640, - [SMALL_STATE(4603)] = 254680, - [SMALL_STATE(4604)] = 254720, - [SMALL_STATE(4605)] = 254760, + [SMALL_STATE(4578)] = 253722, + [SMALL_STATE(4579)] = 253762, + [SMALL_STATE(4580)] = 253802, + [SMALL_STATE(4581)] = 253842, + [SMALL_STATE(4582)] = 253882, + [SMALL_STATE(4583)] = 253922, + [SMALL_STATE(4584)] = 253962, + [SMALL_STATE(4585)] = 254002, + [SMALL_STATE(4586)] = 254036, + [SMALL_STATE(4587)] = 254076, + [SMALL_STATE(4588)] = 254110, + [SMALL_STATE(4589)] = 254144, + [SMALL_STATE(4590)] = 254178, + [SMALL_STATE(4591)] = 254212, + [SMALL_STATE(4592)] = 254246, + [SMALL_STATE(4593)] = 254280, + [SMALL_STATE(4594)] = 254320, + [SMALL_STATE(4595)] = 254354, + [SMALL_STATE(4596)] = 254394, + [SMALL_STATE(4597)] = 254434, + [SMALL_STATE(4598)] = 254474, + [SMALL_STATE(4599)] = 254514, + [SMALL_STATE(4600)] = 254554, + [SMALL_STATE(4601)] = 254594, + [SMALL_STATE(4602)] = 254634, + [SMALL_STATE(4603)] = 254674, + [SMALL_STATE(4604)] = 254714, + [SMALL_STATE(4605)] = 254754, [SMALL_STATE(4606)] = 254794, [SMALL_STATE(4607)] = 254828, - [SMALL_STATE(4608)] = 254861, - [SMALL_STATE(4609)] = 254896, - [SMALL_STATE(4610)] = 254929, - [SMALL_STATE(4611)] = 254962, - [SMALL_STATE(4612)] = 255001, - [SMALL_STATE(4613)] = 255034, - [SMALL_STATE(4614)] = 255067, - [SMALL_STATE(4615)] = 255106, - [SMALL_STATE(4616)] = 255139, - [SMALL_STATE(4617)] = 255176, - [SMALL_STATE(4618)] = 255209, - [SMALL_STATE(4619)] = 255242, - [SMALL_STATE(4620)] = 255281, - [SMALL_STATE(4621)] = 255328, - [SMALL_STATE(4622)] = 255367, - [SMALL_STATE(4623)] = 255406, - [SMALL_STATE(4624)] = 255439, - [SMALL_STATE(4625)] = 255498, - [SMALL_STATE(4626)] = 255541, - [SMALL_STATE(4627)] = 255580, - [SMALL_STATE(4628)] = 255619, - [SMALL_STATE(4629)] = 255652, - [SMALL_STATE(4630)] = 255711, - [SMALL_STATE(4631)] = 255750, - [SMALL_STATE(4632)] = 255783, - [SMALL_STATE(4633)] = 255816, - [SMALL_STATE(4634)] = 255855, - [SMALL_STATE(4635)] = 255894, - [SMALL_STATE(4636)] = 255933, - [SMALL_STATE(4637)] = 255966, - [SMALL_STATE(4638)] = 255999, - [SMALL_STATE(4639)] = 256032, - [SMALL_STATE(4640)] = 256065, - [SMALL_STATE(4641)] = 256104, - [SMALL_STATE(4642)] = 256163, - [SMALL_STATE(4643)] = 256196, - [SMALL_STATE(4644)] = 256229, - [SMALL_STATE(4645)] = 256272, - [SMALL_STATE(4646)] = 256309, - [SMALL_STATE(4647)] = 256374, - [SMALL_STATE(4648)] = 256407, - [SMALL_STATE(4649)] = 256440, - [SMALL_STATE(4650)] = 256499, - [SMALL_STATE(4651)] = 256542, - [SMALL_STATE(4652)] = 256607, - [SMALL_STATE(4653)] = 256666, - [SMALL_STATE(4654)] = 256699, - [SMALL_STATE(4655)] = 256758, - [SMALL_STATE(4656)] = 256791, - [SMALL_STATE(4657)] = 256824, - [SMALL_STATE(4658)] = 256883, - [SMALL_STATE(4659)] = 256942, - [SMALL_STATE(4660)] = 256985, - [SMALL_STATE(4661)] = 257044, - [SMALL_STATE(4662)] = 257103, - [SMALL_STATE(4663)] = 257152, - [SMALL_STATE(4664)] = 257201, - [SMALL_STATE(4665)] = 257238, - [SMALL_STATE(4666)] = 257281, - [SMALL_STATE(4667)] = 257314, - [SMALL_STATE(4668)] = 257357, - [SMALL_STATE(4669)] = 257416, - [SMALL_STATE(4670)] = 257455, - [SMALL_STATE(4671)] = 257488, - [SMALL_STATE(4672)] = 257547, - [SMALL_STATE(4673)] = 257606, - [SMALL_STATE(4674)] = 257645, - [SMALL_STATE(4675)] = 257684, - [SMALL_STATE(4676)] = 257743, - [SMALL_STATE(4677)] = 257802, - [SMALL_STATE(4678)] = 257861, - [SMALL_STATE(4679)] = 257920, - [SMALL_STATE(4680)] = 257979, - [SMALL_STATE(4681)] = 258038, - [SMALL_STATE(4682)] = 258097, - [SMALL_STATE(4683)] = 258156, - [SMALL_STATE(4684)] = 258195, - [SMALL_STATE(4685)] = 258234, - [SMALL_STATE(4686)] = 258277, - [SMALL_STATE(4687)] = 258336, - [SMALL_STATE(4688)] = 258375, - [SMALL_STATE(4689)] = 258408, - [SMALL_STATE(4690)] = 258447, - [SMALL_STATE(4691)] = 258506, - [SMALL_STATE(4692)] = 258565, - [SMALL_STATE(4693)] = 258604, - [SMALL_STATE(4694)] = 258663, - [SMALL_STATE(4695)] = 258722, - [SMALL_STATE(4696)] = 258759, - [SMALL_STATE(4697)] = 258818, - [SMALL_STATE(4698)] = 258861, - [SMALL_STATE(4699)] = 258900, - [SMALL_STATE(4700)] = 258939, - [SMALL_STATE(4701)] = 259004, - [SMALL_STATE(4702)] = 259037, - [SMALL_STATE(4703)] = 259070, - [SMALL_STATE(4704)] = 259129, - [SMALL_STATE(4705)] = 259166, - [SMALL_STATE(4706)] = 259205, - [SMALL_STATE(4707)] = 259238, - [SMALL_STATE(4708)] = 259297, - [SMALL_STATE(4709)] = 259330, - [SMALL_STATE(4710)] = 259363, - [SMALL_STATE(4711)] = 259406, - [SMALL_STATE(4712)] = 259445, - [SMALL_STATE(4713)] = 259478, - [SMALL_STATE(4714)] = 259537, - [SMALL_STATE(4715)] = 259596, - [SMALL_STATE(4716)] = 259655, - [SMALL_STATE(4717)] = 259690, - [SMALL_STATE(4718)] = 259727, - [SMALL_STATE(4719)] = 259786, - [SMALL_STATE(4720)] = 259829, - [SMALL_STATE(4721)] = 259888, - [SMALL_STATE(4722)] = 259953, - [SMALL_STATE(4723)] = 259990, - [SMALL_STATE(4724)] = 260033, - [SMALL_STATE(4725)] = 260068, - [SMALL_STATE(4726)] = 260111, - [SMALL_STATE(4727)] = 260144, - [SMALL_STATE(4728)] = 260177, - [SMALL_STATE(4729)] = 260236, - [SMALL_STATE(4730)] = 260295, - [SMALL_STATE(4731)] = 260354, - [SMALL_STATE(4732)] = 260413, - [SMALL_STATE(4733)] = 260472, - [SMALL_STATE(4734)] = 260511, - [SMALL_STATE(4735)] = 260554, - [SMALL_STATE(4736)] = 260587, - [SMALL_STATE(4737)] = 260620, - [SMALL_STATE(4738)] = 260679, - [SMALL_STATE(4739)] = 260738, - [SMALL_STATE(4740)] = 260771, - [SMALL_STATE(4741)] = 260830, - [SMALL_STATE(4742)] = 260895, - [SMALL_STATE(4743)] = 260960, - [SMALL_STATE(4744)] = 261025, - [SMALL_STATE(4745)] = 261084, - [SMALL_STATE(4746)] = 261121, - [SMALL_STATE(4747)] = 261164, - [SMALL_STATE(4748)] = 261207, - [SMALL_STATE(4749)] = 261246, - [SMALL_STATE(4750)] = 261305, - [SMALL_STATE(4751)] = 261344, - [SMALL_STATE(4752)] = 261403, - [SMALL_STATE(4753)] = 261462, - [SMALL_STATE(4754)] = 261495, - [SMALL_STATE(4755)] = 261534, - [SMALL_STATE(4756)] = 261567, - [SMALL_STATE(4757)] = 261626, - [SMALL_STATE(4758)] = 261691, - [SMALL_STATE(4759)] = 261734, - [SMALL_STATE(4760)] = 261767, - [SMALL_STATE(4761)] = 261806, - [SMALL_STATE(4762)] = 261865, - [SMALL_STATE(4763)] = 261898, - [SMALL_STATE(4764)] = 261957, - [SMALL_STATE(4765)] = 262016, - [SMALL_STATE(4766)] = 262075, - [SMALL_STATE(4767)] = 262108, - [SMALL_STATE(4768)] = 262145, - [SMALL_STATE(4769)] = 262204, - [SMALL_STATE(4770)] = 262237, - [SMALL_STATE(4771)] = 262270, - [SMALL_STATE(4772)] = 262309, - [SMALL_STATE(4773)] = 262342, - [SMALL_STATE(4774)] = 262401, - [SMALL_STATE(4775)] = 262440, - [SMALL_STATE(4776)] = 262479, - [SMALL_STATE(4777)] = 262518, - [SMALL_STATE(4778)] = 262557, - [SMALL_STATE(4779)] = 262606, - [SMALL_STATE(4780)] = 262665, - [SMALL_STATE(4781)] = 262698, - [SMALL_STATE(4782)] = 262737, - [SMALL_STATE(4783)] = 262770, - [SMALL_STATE(4784)] = 262809, - [SMALL_STATE(4785)] = 262848, - [SMALL_STATE(4786)] = 262881, - [SMALL_STATE(4787)] = 262914, - [SMALL_STATE(4788)] = 262953, - [SMALL_STATE(4789)] = 262986, - [SMALL_STATE(4790)] = 263019, - [SMALL_STATE(4791)] = 263052, - [SMALL_STATE(4792)] = 263111, - [SMALL_STATE(4793)] = 263158, - [SMALL_STATE(4794)] = 263207, - [SMALL_STATE(4795)] = 263244, - [SMALL_STATE(4796)] = 263283, - [SMALL_STATE(4797)] = 263316, - [SMALL_STATE(4798)] = 263365, - [SMALL_STATE(4799)] = 263424, - [SMALL_STATE(4800)] = 263483, - [SMALL_STATE(4801)] = 263542, - [SMALL_STATE(4802)] = 263575, - [SMALL_STATE(4803)] = 263614, - [SMALL_STATE(4804)] = 263679, - [SMALL_STATE(4805)] = 263712, - [SMALL_STATE(4806)] = 263745, - [SMALL_STATE(4807)] = 263784, - [SMALL_STATE(4808)] = 263817, - [SMALL_STATE(4809)] = 263850, - [SMALL_STATE(4810)] = 263909, - [SMALL_STATE(4811)] = 263942, - [SMALL_STATE(4812)] = 263975, - [SMALL_STATE(4813)] = 264008, - [SMALL_STATE(4814)] = 264067, - [SMALL_STATE(4815)] = 264126, - [SMALL_STATE(4816)] = 264185, - [SMALL_STATE(4817)] = 264224, - [SMALL_STATE(4818)] = 264283, - [SMALL_STATE(4819)] = 264316, - [SMALL_STATE(4820)] = 264375, - [SMALL_STATE(4821)] = 264408, - [SMALL_STATE(4822)] = 264441, - [SMALL_STATE(4823)] = 264480, - [SMALL_STATE(4824)] = 264539, - [SMALL_STATE(4825)] = 264576, - [SMALL_STATE(4826)] = 264609, - [SMALL_STATE(4827)] = 264668, - [SMALL_STATE(4828)] = 264701, - [SMALL_STATE(4829)] = 264740, - [SMALL_STATE(4830)] = 264783, - [SMALL_STATE(4831)] = 264842, - [SMALL_STATE(4832)] = 264875, - [SMALL_STATE(4833)] = 264934, - [SMALL_STATE(4834)] = 264967, - [SMALL_STATE(4835)] = 265006, - [SMALL_STATE(4836)] = 265045, - [SMALL_STATE(4837)] = 265104, - [SMALL_STATE(4838)] = 265137, - [SMALL_STATE(4839)] = 265176, - [SMALL_STATE(4840)] = 265235, - [SMALL_STATE(4841)] = 265268, - [SMALL_STATE(4842)] = 265327, - [SMALL_STATE(4843)] = 265360, - [SMALL_STATE(4844)] = 265419, - [SMALL_STATE(4845)] = 265452, - [SMALL_STATE(4846)] = 265511, - [SMALL_STATE(4847)] = 265544, - [SMALL_STATE(4848)] = 265577, - [SMALL_STATE(4849)] = 265636, - [SMALL_STATE(4850)] = 265669, - [SMALL_STATE(4851)] = 265728, - [SMALL_STATE(4852)] = 265787, - [SMALL_STATE(4853)] = 265820, - [SMALL_STATE(4854)] = 265853, - [SMALL_STATE(4855)] = 265912, - [SMALL_STATE(4856)] = 265949, - [SMALL_STATE(4857)] = 265982, - [SMALL_STATE(4858)] = 266041, - [SMALL_STATE(4859)] = 266074, - [SMALL_STATE(4860)] = 266107, - [SMALL_STATE(4861)] = 266156, + [SMALL_STATE(4608)] = 254867, + [SMALL_STATE(4609)] = 254926, + [SMALL_STATE(4610)] = 254991, + [SMALL_STATE(4611)] = 255034, + [SMALL_STATE(4612)] = 255093, + [SMALL_STATE(4613)] = 255126, + [SMALL_STATE(4614)] = 255159, + [SMALL_STATE(4615)] = 255192, + [SMALL_STATE(4616)] = 255251, + [SMALL_STATE(4617)] = 255284, + [SMALL_STATE(4618)] = 255349, + [SMALL_STATE(4619)] = 255382, + [SMALL_STATE(4620)] = 255421, + [SMALL_STATE(4621)] = 255460, + [SMALL_STATE(4622)] = 255519, + [SMALL_STATE(4623)] = 255552, + [SMALL_STATE(4624)] = 255617, + [SMALL_STATE(4625)] = 255676, + [SMALL_STATE(4626)] = 255709, + [SMALL_STATE(4627)] = 255752, + [SMALL_STATE(4628)] = 255795, + [SMALL_STATE(4629)] = 255854, + [SMALL_STATE(4630)] = 255887, + [SMALL_STATE(4631)] = 255920, + [SMALL_STATE(4632)] = 255953, + [SMALL_STATE(4633)] = 256012, + [SMALL_STATE(4634)] = 256071, + [SMALL_STATE(4635)] = 256114, + [SMALL_STATE(4636)] = 256163, + [SMALL_STATE(4637)] = 256196, + [SMALL_STATE(4638)] = 256255, + [SMALL_STATE(4639)] = 256314, + [SMALL_STATE(4640)] = 256347, + [SMALL_STATE(4641)] = 256380, + [SMALL_STATE(4642)] = 256439, + [SMALL_STATE(4643)] = 256476, + [SMALL_STATE(4644)] = 256509, + [SMALL_STATE(4645)] = 256542, + [SMALL_STATE(4646)] = 256579, + [SMALL_STATE(4647)] = 256638, + [SMALL_STATE(4648)] = 256677, + [SMALL_STATE(4649)] = 256716, + [SMALL_STATE(4650)] = 256755, + [SMALL_STATE(4651)] = 256794, + [SMALL_STATE(4652)] = 256833, + [SMALL_STATE(4653)] = 256892, + [SMALL_STATE(4654)] = 256951, + [SMALL_STATE(4655)] = 257010, + [SMALL_STATE(4656)] = 257069, + [SMALL_STATE(4657)] = 257118, + [SMALL_STATE(4658)] = 257151, + [SMALL_STATE(4659)] = 257216, + [SMALL_STATE(4660)] = 257249, + [SMALL_STATE(4661)] = 257308, + [SMALL_STATE(4662)] = 257347, + [SMALL_STATE(4663)] = 257380, + [SMALL_STATE(4664)] = 257419, + [SMALL_STATE(4665)] = 257456, + [SMALL_STATE(4666)] = 257495, + [SMALL_STATE(4667)] = 257534, + [SMALL_STATE(4668)] = 257593, + [SMALL_STATE(4669)] = 257626, + [SMALL_STATE(4670)] = 257669, + [SMALL_STATE(4671)] = 257712, + [SMALL_STATE(4672)] = 257771, + [SMALL_STATE(4673)] = 257810, + [SMALL_STATE(4674)] = 257843, + [SMALL_STATE(4675)] = 257882, + [SMALL_STATE(4676)] = 257941, + [SMALL_STATE(4677)] = 257988, + [SMALL_STATE(4678)] = 258031, + [SMALL_STATE(4679)] = 258068, + [SMALL_STATE(4680)] = 258101, + [SMALL_STATE(4681)] = 258136, + [SMALL_STATE(4682)] = 258173, + [SMALL_STATE(4683)] = 258216, + [SMALL_STATE(4684)] = 258259, + [SMALL_STATE(4685)] = 258318, + [SMALL_STATE(4686)] = 258361, + [SMALL_STATE(4687)] = 258420, + [SMALL_STATE(4688)] = 258485, + [SMALL_STATE(4689)] = 258544, + [SMALL_STATE(4690)] = 258577, + [SMALL_STATE(4691)] = 258636, + [SMALL_STATE(4692)] = 258695, + [SMALL_STATE(4693)] = 258744, + [SMALL_STATE(4694)] = 258777, + [SMALL_STATE(4695)] = 258816, + [SMALL_STATE(4696)] = 258849, + [SMALL_STATE(4697)] = 258908, + [SMALL_STATE(4698)] = 258967, + [SMALL_STATE(4699)] = 259006, + [SMALL_STATE(4700)] = 259065, + [SMALL_STATE(4701)] = 259124, + [SMALL_STATE(4702)] = 259163, + [SMALL_STATE(4703)] = 259196, + [SMALL_STATE(4704)] = 259229, + [SMALL_STATE(4705)] = 259262, + [SMALL_STATE(4706)] = 259295, + [SMALL_STATE(4707)] = 259332, + [SMALL_STATE(4708)] = 259391, + [SMALL_STATE(4709)] = 259424, + [SMALL_STATE(4710)] = 259457, + [SMALL_STATE(4711)] = 259490, + [SMALL_STATE(4712)] = 259523, + [SMALL_STATE(4713)] = 259582, + [SMALL_STATE(4714)] = 259615, + [SMALL_STATE(4715)] = 259652, + [SMALL_STATE(4716)] = 259685, + [SMALL_STATE(4717)] = 259728, + [SMALL_STATE(4718)] = 259775, + [SMALL_STATE(4719)] = 259808, + [SMALL_STATE(4720)] = 259867, + [SMALL_STATE(4721)] = 259904, + [SMALL_STATE(4722)] = 259937, + [SMALL_STATE(4723)] = 259970, + [SMALL_STATE(4724)] = 260003, + [SMALL_STATE(4725)] = 260036, + [SMALL_STATE(4726)] = 260073, + [SMALL_STATE(4727)] = 260106, + [SMALL_STATE(4728)] = 260139, + [SMALL_STATE(4729)] = 260172, + [SMALL_STATE(4730)] = 260207, + [SMALL_STATE(4731)] = 260266, + [SMALL_STATE(4732)] = 260299, + [SMALL_STATE(4733)] = 260332, + [SMALL_STATE(4734)] = 260375, + [SMALL_STATE(4735)] = 260418, + [SMALL_STATE(4736)] = 260455, + [SMALL_STATE(4737)] = 260520, + [SMALL_STATE(4738)] = 260585, + [SMALL_STATE(4739)] = 260622, + [SMALL_STATE(4740)] = 260681, + [SMALL_STATE(4741)] = 260716, + [SMALL_STATE(4742)] = 260759, + [SMALL_STATE(4743)] = 260792, + [SMALL_STATE(4744)] = 260825, + [SMALL_STATE(4745)] = 260858, + [SMALL_STATE(4746)] = 260917, + [SMALL_STATE(4747)] = 260976, + [SMALL_STATE(4748)] = 261035, + [SMALL_STATE(4749)] = 261078, + [SMALL_STATE(4750)] = 261111, + [SMALL_STATE(4751)] = 261144, + [SMALL_STATE(4752)] = 261177, + [SMALL_STATE(4753)] = 261236, + [SMALL_STATE(4754)] = 261295, + [SMALL_STATE(4755)] = 261354, + [SMALL_STATE(4756)] = 261387, + [SMALL_STATE(4757)] = 261420, + [SMALL_STATE(4758)] = 261479, + [SMALL_STATE(4759)] = 261512, + [SMALL_STATE(4760)] = 261545, + [SMALL_STATE(4761)] = 261604, + [SMALL_STATE(4762)] = 261663, + [SMALL_STATE(4763)] = 261722, + [SMALL_STATE(4764)] = 261755, + [SMALL_STATE(4765)] = 261814, + [SMALL_STATE(4766)] = 261847, + [SMALL_STATE(4767)] = 261880, + [SMALL_STATE(4768)] = 261923, + [SMALL_STATE(4769)] = 261962, + [SMALL_STATE(4770)] = 261995, + [SMALL_STATE(4771)] = 262054, + [SMALL_STATE(4772)] = 262087, + [SMALL_STATE(4773)] = 262120, + [SMALL_STATE(4774)] = 262153, + [SMALL_STATE(4775)] = 262212, + [SMALL_STATE(4776)] = 262271, + [SMALL_STATE(4777)] = 262308, + [SMALL_STATE(4778)] = 262347, + [SMALL_STATE(4779)] = 262406, + [SMALL_STATE(4780)] = 262465, + [SMALL_STATE(4781)] = 262524, + [SMALL_STATE(4782)] = 262573, + [SMALL_STATE(4783)] = 262632, + [SMALL_STATE(4784)] = 262665, + [SMALL_STATE(4785)] = 262724, + [SMALL_STATE(4786)] = 262789, + [SMALL_STATE(4787)] = 262822, + [SMALL_STATE(4788)] = 262881, + [SMALL_STATE(4789)] = 262914, + [SMALL_STATE(4790)] = 262963, + [SMALL_STATE(4791)] = 262996, + [SMALL_STATE(4792)] = 263055, + [SMALL_STATE(4793)] = 263088, + [SMALL_STATE(4794)] = 263121, + [SMALL_STATE(4795)] = 263154, + [SMALL_STATE(4796)] = 263213, + [SMALL_STATE(4797)] = 263246, + [SMALL_STATE(4798)] = 263285, + [SMALL_STATE(4799)] = 263324, + [SMALL_STATE(4800)] = 263363, + [SMALL_STATE(4801)] = 263402, + [SMALL_STATE(4802)] = 263441, + [SMALL_STATE(4803)] = 263480, + [SMALL_STATE(4804)] = 263519, + [SMALL_STATE(4805)] = 263558, + [SMALL_STATE(4806)] = 263591, + [SMALL_STATE(4807)] = 263650, + [SMALL_STATE(4808)] = 263693, + [SMALL_STATE(4809)] = 263726, + [SMALL_STATE(4810)] = 263785, + [SMALL_STATE(4811)] = 263844, + [SMALL_STATE(4812)] = 263903, + [SMALL_STATE(4813)] = 263952, + [SMALL_STATE(4814)] = 264017, + [SMALL_STATE(4815)] = 264076, + [SMALL_STATE(4816)] = 264109, + [SMALL_STATE(4817)] = 264148, + [SMALL_STATE(4818)] = 264207, + [SMALL_STATE(4819)] = 264240, + [SMALL_STATE(4820)] = 264279, + [SMALL_STATE(4821)] = 264338, + [SMALL_STATE(4822)] = 264397, + [SMALL_STATE(4823)] = 264430, + [SMALL_STATE(4824)] = 264463, + [SMALL_STATE(4825)] = 264496, + [SMALL_STATE(4826)] = 264555, + [SMALL_STATE(4827)] = 264588, + [SMALL_STATE(4828)] = 264621, + [SMALL_STATE(4829)] = 264680, + [SMALL_STATE(4830)] = 264719, + [SMALL_STATE(4831)] = 264758, + [SMALL_STATE(4832)] = 264797, + [SMALL_STATE(4833)] = 264836, + [SMALL_STATE(4834)] = 264875, + [SMALL_STATE(4835)] = 264914, + [SMALL_STATE(4836)] = 264953, + [SMALL_STATE(4837)] = 264992, + [SMALL_STATE(4838)] = 265031, + [SMALL_STATE(4839)] = 265070, + [SMALL_STATE(4840)] = 265129, + [SMALL_STATE(4841)] = 265162, + [SMALL_STATE(4842)] = 265195, + [SMALL_STATE(4843)] = 265228, + [SMALL_STATE(4844)] = 265287, + [SMALL_STATE(4845)] = 265346, + [SMALL_STATE(4846)] = 265405, + [SMALL_STATE(4847)] = 265464, + [SMALL_STATE(4848)] = 265503, + [SMALL_STATE(4849)] = 265542, + [SMALL_STATE(4850)] = 265581, + [SMALL_STATE(4851)] = 265620, + [SMALL_STATE(4852)] = 265659, + [SMALL_STATE(4853)] = 265698, + [SMALL_STATE(4854)] = 265737, + [SMALL_STATE(4855)] = 265776, + [SMALL_STATE(4856)] = 265835, + [SMALL_STATE(4857)] = 265894, + [SMALL_STATE(4858)] = 265953, + [SMALL_STATE(4859)] = 266012, + [SMALL_STATE(4860)] = 266071, + [SMALL_STATE(4861)] = 266130, [SMALL_STATE(4862)] = 266189, - [SMALL_STATE(4863)] = 266222, + [SMALL_STATE(4863)] = 266248, [SMALL_STATE(4864)] = 266281, [SMALL_STATE(4865)] = 266313, [SMALL_STATE(4866)] = 266345, @@ -347986,782 +348287,782 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(4879)] = 266761, [SMALL_STATE(4880)] = 266793, [SMALL_STATE(4881)] = 266825, - [SMALL_STATE(4882)] = 266857, - [SMALL_STATE(4883)] = 266889, - [SMALL_STATE(4884)] = 266921, - [SMALL_STATE(4885)] = 266953, - [SMALL_STATE(4886)] = 266985, - [SMALL_STATE(4887)] = 267017, - [SMALL_STATE(4888)] = 267049, - [SMALL_STATE(4889)] = 267081, - [SMALL_STATE(4890)] = 267113, - [SMALL_STATE(4891)] = 267145, - [SMALL_STATE(4892)] = 267207, - [SMALL_STATE(4893)] = 267239, - [SMALL_STATE(4894)] = 267271, - [SMALL_STATE(4895)] = 267303, - [SMALL_STATE(4896)] = 267335, - [SMALL_STATE(4897)] = 267373, - [SMALL_STATE(4898)] = 267411, - [SMALL_STATE(4899)] = 267443, - [SMALL_STATE(4900)] = 267475, - [SMALL_STATE(4901)] = 267507, - [SMALL_STATE(4902)] = 267545, - [SMALL_STATE(4903)] = 267577, - [SMALL_STATE(4904)] = 267609, - [SMALL_STATE(4905)] = 267645, - [SMALL_STATE(4906)] = 267677, - [SMALL_STATE(4907)] = 267715, - [SMALL_STATE(4908)] = 267747, - [SMALL_STATE(4909)] = 267779, - [SMALL_STATE(4910)] = 267811, - [SMALL_STATE(4911)] = 267857, - [SMALL_STATE(4912)] = 267889, - [SMALL_STATE(4913)] = 267921, - [SMALL_STATE(4914)] = 267953, - [SMALL_STATE(4915)] = 267985, - [SMALL_STATE(4916)] = 268017, - [SMALL_STATE(4917)] = 268049, - [SMALL_STATE(4918)] = 268081, - [SMALL_STATE(4919)] = 268143, - [SMALL_STATE(4920)] = 268181, - [SMALL_STATE(4921)] = 268213, - [SMALL_STATE(4922)] = 268251, - [SMALL_STATE(4923)] = 268283, - [SMALL_STATE(4924)] = 268315, - [SMALL_STATE(4925)] = 268377, - [SMALL_STATE(4926)] = 268409, - [SMALL_STATE(4927)] = 268441, - [SMALL_STATE(4928)] = 268473, - [SMALL_STATE(4929)] = 268519, - [SMALL_STATE(4930)] = 268551, - [SMALL_STATE(4931)] = 268583, - [SMALL_STATE(4932)] = 268615, - [SMALL_STATE(4933)] = 268647, - [SMALL_STATE(4934)] = 268679, - [SMALL_STATE(4935)] = 268741, - [SMALL_STATE(4936)] = 268773, - [SMALL_STATE(4937)] = 268805, - [SMALL_STATE(4938)] = 268837, - [SMALL_STATE(4939)] = 268869, - [SMALL_STATE(4940)] = 268915, - [SMALL_STATE(4941)] = 268947, - [SMALL_STATE(4942)] = 268985, - [SMALL_STATE(4943)] = 269021, - [SMALL_STATE(4944)] = 269053, - [SMALL_STATE(4945)] = 269085, - [SMALL_STATE(4946)] = 269117, - [SMALL_STATE(4947)] = 269149, - [SMALL_STATE(4948)] = 269181, - [SMALL_STATE(4949)] = 269213, - [SMALL_STATE(4950)] = 269245, - [SMALL_STATE(4951)] = 269277, - [SMALL_STATE(4952)] = 269323, - [SMALL_STATE(4953)] = 269355, - [SMALL_STATE(4954)] = 269387, - [SMALL_STATE(4955)] = 269419, - [SMALL_STATE(4956)] = 269451, - [SMALL_STATE(4957)] = 269483, - [SMALL_STATE(4958)] = 269515, - [SMALL_STATE(4959)] = 269547, - [SMALL_STATE(4960)] = 269579, - [SMALL_STATE(4961)] = 269611, - [SMALL_STATE(4962)] = 269643, - [SMALL_STATE(4963)] = 269675, - [SMALL_STATE(4964)] = 269707, - [SMALL_STATE(4965)] = 269739, - [SMALL_STATE(4966)] = 269771, - [SMALL_STATE(4967)] = 269803, - [SMALL_STATE(4968)] = 269865, - [SMALL_STATE(4969)] = 269897, - [SMALL_STATE(4970)] = 269929, - [SMALL_STATE(4971)] = 269961, - [SMALL_STATE(4972)] = 269997, - [SMALL_STATE(4973)] = 270059, - [SMALL_STATE(4974)] = 270091, - [SMALL_STATE(4975)] = 270153, - [SMALL_STATE(4976)] = 270189, - [SMALL_STATE(4977)] = 270221, - [SMALL_STATE(4978)] = 270253, - [SMALL_STATE(4979)] = 270285, - [SMALL_STATE(4980)] = 270317, - [SMALL_STATE(4981)] = 270349, - [SMALL_STATE(4982)] = 270381, - [SMALL_STATE(4983)] = 270413, - [SMALL_STATE(4984)] = 270445, - [SMALL_STATE(4985)] = 270477, - [SMALL_STATE(4986)] = 270509, - [SMALL_STATE(4987)] = 270551, - [SMALL_STATE(4988)] = 270583, - [SMALL_STATE(4989)] = 270615, - [SMALL_STATE(4990)] = 270647, - [SMALL_STATE(4991)] = 270679, - [SMALL_STATE(4992)] = 270711, - [SMALL_STATE(4993)] = 270749, - [SMALL_STATE(4994)] = 270795, - [SMALL_STATE(4995)] = 270827, - [SMALL_STATE(4996)] = 270869, - [SMALL_STATE(4997)] = 270905, - [SMALL_STATE(4998)] = 270939, - [SMALL_STATE(4999)] = 270981, - [SMALL_STATE(5000)] = 271043, - [SMALL_STATE(5001)] = 271085, - [SMALL_STATE(5002)] = 271127, - [SMALL_STATE(5003)] = 271159, - [SMALL_STATE(5004)] = 271191, - [SMALL_STATE(5005)] = 271223, - [SMALL_STATE(5006)] = 271255, - [SMALL_STATE(5007)] = 271287, - [SMALL_STATE(5008)] = 271333, - [SMALL_STATE(5009)] = 271365, - [SMALL_STATE(5010)] = 271397, - [SMALL_STATE(5011)] = 271429, - [SMALL_STATE(5012)] = 271461, - [SMALL_STATE(5013)] = 271493, - [SMALL_STATE(5014)] = 271525, - [SMALL_STATE(5015)] = 271557, - [SMALL_STATE(5016)] = 271619, - [SMALL_STATE(5017)] = 271651, - [SMALL_STATE(5018)] = 271683, - [SMALL_STATE(5019)] = 271715, - [SMALL_STATE(5020)] = 271747, - [SMALL_STATE(5021)] = 271779, - [SMALL_STATE(5022)] = 271815, - [SMALL_STATE(5023)] = 271847, - [SMALL_STATE(5024)] = 271879, - [SMALL_STATE(5025)] = 271911, - [SMALL_STATE(5026)] = 271943, - [SMALL_STATE(5027)] = 271975, - [SMALL_STATE(5028)] = 272007, - [SMALL_STATE(5029)] = 272039, - [SMALL_STATE(5030)] = 272071, - [SMALL_STATE(5031)] = 272103, - [SMALL_STATE(5032)] = 272141, - [SMALL_STATE(5033)] = 272173, + [SMALL_STATE(4882)] = 266887, + [SMALL_STATE(4883)] = 266919, + [SMALL_STATE(4884)] = 266951, + [SMALL_STATE(4885)] = 266983, + [SMALL_STATE(4886)] = 267015, + [SMALL_STATE(4887)] = 267047, + [SMALL_STATE(4888)] = 267079, + [SMALL_STATE(4889)] = 267111, + [SMALL_STATE(4890)] = 267143, + [SMALL_STATE(4891)] = 267175, + [SMALL_STATE(4892)] = 267237, + [SMALL_STATE(4893)] = 267269, + [SMALL_STATE(4894)] = 267301, + [SMALL_STATE(4895)] = 267333, + [SMALL_STATE(4896)] = 267365, + [SMALL_STATE(4897)] = 267397, + [SMALL_STATE(4898)] = 267429, + [SMALL_STATE(4899)] = 267461, + [SMALL_STATE(4900)] = 267493, + [SMALL_STATE(4901)] = 267525, + [SMALL_STATE(4902)] = 267557, + [SMALL_STATE(4903)] = 267589, + [SMALL_STATE(4904)] = 267621, + [SMALL_STATE(4905)] = 267653, + [SMALL_STATE(4906)] = 267685, + [SMALL_STATE(4907)] = 267717, + [SMALL_STATE(4908)] = 267749, + [SMALL_STATE(4909)] = 267781, + [SMALL_STATE(4910)] = 267813, + [SMALL_STATE(4911)] = 267845, + [SMALL_STATE(4912)] = 267877, + [SMALL_STATE(4913)] = 267909, + [SMALL_STATE(4914)] = 267941, + [SMALL_STATE(4915)] = 267973, + [SMALL_STATE(4916)] = 268005, + [SMALL_STATE(4917)] = 268037, + [SMALL_STATE(4918)] = 268069, + [SMALL_STATE(4919)] = 268101, + [SMALL_STATE(4920)] = 268133, + [SMALL_STATE(4921)] = 268169, + [SMALL_STATE(4922)] = 268201, + [SMALL_STATE(4923)] = 268233, + [SMALL_STATE(4924)] = 268271, + [SMALL_STATE(4925)] = 268309, + [SMALL_STATE(4926)] = 268341, + [SMALL_STATE(4927)] = 268373, + [SMALL_STATE(4928)] = 268419, + [SMALL_STATE(4929)] = 268451, + [SMALL_STATE(4930)] = 268483, + [SMALL_STATE(4931)] = 268515, + [SMALL_STATE(4932)] = 268547, + [SMALL_STATE(4933)] = 268579, + [SMALL_STATE(4934)] = 268611, + [SMALL_STATE(4935)] = 268643, + [SMALL_STATE(4936)] = 268675, + [SMALL_STATE(4937)] = 268707, + [SMALL_STATE(4938)] = 268739, + [SMALL_STATE(4939)] = 268771, + [SMALL_STATE(4940)] = 268803, + [SMALL_STATE(4941)] = 268865, + [SMALL_STATE(4942)] = 268897, + [SMALL_STATE(4943)] = 268929, + [SMALL_STATE(4944)] = 268961, + [SMALL_STATE(4945)] = 268993, + [SMALL_STATE(4946)] = 269039, + [SMALL_STATE(4947)] = 269071, + [SMALL_STATE(4948)] = 269103, + [SMALL_STATE(4949)] = 269135, + [SMALL_STATE(4950)] = 269167, + [SMALL_STATE(4951)] = 269199, + [SMALL_STATE(4952)] = 269231, + [SMALL_STATE(4953)] = 269263, + [SMALL_STATE(4954)] = 269295, + [SMALL_STATE(4955)] = 269327, + [SMALL_STATE(4956)] = 269359, + [SMALL_STATE(4957)] = 269401, + [SMALL_STATE(4958)] = 269433, + [SMALL_STATE(4959)] = 269465, + [SMALL_STATE(4960)] = 269527, + [SMALL_STATE(4961)] = 269559, + [SMALL_STATE(4962)] = 269591, + [SMALL_STATE(4963)] = 269623, + [SMALL_STATE(4964)] = 269655, + [SMALL_STATE(4965)] = 269701, + [SMALL_STATE(4966)] = 269763, + [SMALL_STATE(4967)] = 269795, + [SMALL_STATE(4968)] = 269827, + [SMALL_STATE(4969)] = 269859, + [SMALL_STATE(4970)] = 269891, + [SMALL_STATE(4971)] = 269923, + [SMALL_STATE(4972)] = 269969, + [SMALL_STATE(4973)] = 270001, + [SMALL_STATE(4974)] = 270033, + [SMALL_STATE(4975)] = 270065, + [SMALL_STATE(4976)] = 270097, + [SMALL_STATE(4977)] = 270129, + [SMALL_STATE(4978)] = 270161, + [SMALL_STATE(4979)] = 270207, + [SMALL_STATE(4980)] = 270239, + [SMALL_STATE(4981)] = 270271, + [SMALL_STATE(4982)] = 270303, + [SMALL_STATE(4983)] = 270335, + [SMALL_STATE(4984)] = 270367, + [SMALL_STATE(4985)] = 270399, + [SMALL_STATE(4986)] = 270431, + [SMALL_STATE(4987)] = 270463, + [SMALL_STATE(4988)] = 270495, + [SMALL_STATE(4989)] = 270527, + [SMALL_STATE(4990)] = 270589, + [SMALL_STATE(4991)] = 270625, + [SMALL_STATE(4992)] = 270657, + [SMALL_STATE(4993)] = 270719, + [SMALL_STATE(4994)] = 270781, + [SMALL_STATE(4995)] = 270843, + [SMALL_STATE(4996)] = 270879, + [SMALL_STATE(4997)] = 270911, + [SMALL_STATE(4998)] = 270943, + [SMALL_STATE(4999)] = 270975, + [SMALL_STATE(5000)] = 271011, + [SMALL_STATE(5001)] = 271043, + [SMALL_STATE(5002)] = 271075, + [SMALL_STATE(5003)] = 271107, + [SMALL_STATE(5004)] = 271139, + [SMALL_STATE(5005)] = 271177, + [SMALL_STATE(5006)] = 271215, + [SMALL_STATE(5007)] = 271253, + [SMALL_STATE(5008)] = 271291, + [SMALL_STATE(5009)] = 271329, + [SMALL_STATE(5010)] = 271367, + [SMALL_STATE(5011)] = 271405, + [SMALL_STATE(5012)] = 271443, + [SMALL_STATE(5013)] = 271475, + [SMALL_STATE(5014)] = 271507, + [SMALL_STATE(5015)] = 271539, + [SMALL_STATE(5016)] = 271571, + [SMALL_STATE(5017)] = 271613, + [SMALL_STATE(5018)] = 271645, + [SMALL_STATE(5019)] = 271677, + [SMALL_STATE(5020)] = 271719, + [SMALL_STATE(5021)] = 271751, + [SMALL_STATE(5022)] = 271787, + [SMALL_STATE(5023)] = 271819, + [SMALL_STATE(5024)] = 271865, + [SMALL_STATE(5025)] = 271899, + [SMALL_STATE(5026)] = 271931, + [SMALL_STATE(5027)] = 271963, + [SMALL_STATE(5028)] = 272005, + [SMALL_STATE(5029)] = 272037, + [SMALL_STATE(5030)] = 272069, + [SMALL_STATE(5031)] = 272101, + [SMALL_STATE(5032)] = 272137, + [SMALL_STATE(5033)] = 272179, [SMALL_STATE(5034)] = 272211, - [SMALL_STATE(5035)] = 272248, - [SMALL_STATE(5036)] = 272279, - [SMALL_STATE(5037)] = 272314, - [SMALL_STATE(5038)] = 272345, + [SMALL_STATE(5035)] = 272242, + [SMALL_STATE(5036)] = 272273, + [SMALL_STATE(5037)] = 272304, + [SMALL_STATE(5038)] = 272349, [SMALL_STATE(5039)] = 272380, - [SMALL_STATE(5040)] = 272411, - [SMALL_STATE(5041)] = 272456, - [SMALL_STATE(5042)] = 272491, - [SMALL_STATE(5043)] = 272522, - [SMALL_STATE(5044)] = 272553, - [SMALL_STATE(5045)] = 272584, - [SMALL_STATE(5046)] = 272619, - [SMALL_STATE(5047)] = 272650, - [SMALL_STATE(5048)] = 272681, - [SMALL_STATE(5049)] = 272718, - [SMALL_STATE(5050)] = 272749, - [SMALL_STATE(5051)] = 272780, - [SMALL_STATE(5052)] = 272825, - [SMALL_STATE(5053)] = 272856, - [SMALL_STATE(5054)] = 272887, - [SMALL_STATE(5055)] = 272932, - [SMALL_STATE(5056)] = 272969, - [SMALL_STATE(5057)] = 273008, - [SMALL_STATE(5058)] = 273045, - [SMALL_STATE(5059)] = 273082, - [SMALL_STATE(5060)] = 273119, - [SMALL_STATE(5061)] = 273150, - [SMALL_STATE(5062)] = 273181, - [SMALL_STATE(5063)] = 273218, - [SMALL_STATE(5064)] = 273249, - [SMALL_STATE(5065)] = 273284, - [SMALL_STATE(5066)] = 273321, - [SMALL_STATE(5067)] = 273352, - [SMALL_STATE(5068)] = 273383, - [SMALL_STATE(5069)] = 273414, - [SMALL_STATE(5070)] = 273445, - [SMALL_STATE(5071)] = 273490, - [SMALL_STATE(5072)] = 273521, - [SMALL_STATE(5073)] = 273552, - [SMALL_STATE(5074)] = 273583, - [SMALL_STATE(5075)] = 273614, - [SMALL_STATE(5076)] = 273645, - [SMALL_STATE(5077)] = 273676, - [SMALL_STATE(5078)] = 273707, - [SMALL_STATE(5079)] = 273738, - [SMALL_STATE(5080)] = 273783, - [SMALL_STATE(5081)] = 273814, - [SMALL_STATE(5082)] = 273849, - [SMALL_STATE(5083)] = 273884, - [SMALL_STATE(5084)] = 273915, - [SMALL_STATE(5085)] = 273946, - [SMALL_STATE(5086)] = 273977, - [SMALL_STATE(5087)] = 274008, - [SMALL_STATE(5088)] = 274039, - [SMALL_STATE(5089)] = 274070, - [SMALL_STATE(5090)] = 274101, - [SMALL_STATE(5091)] = 274132, - [SMALL_STATE(5092)] = 274163, - [SMALL_STATE(5093)] = 274194, - [SMALL_STATE(5094)] = 274225, - [SMALL_STATE(5095)] = 274256, - [SMALL_STATE(5096)] = 274291, - [SMALL_STATE(5097)] = 274322, - [SMALL_STATE(5098)] = 274357, - [SMALL_STATE(5099)] = 274388, - [SMALL_STATE(5100)] = 274419, - [SMALL_STATE(5101)] = 274450, - [SMALL_STATE(5102)] = 274481, - [SMALL_STATE(5103)] = 274516, - [SMALL_STATE(5104)] = 274547, - [SMALL_STATE(5105)] = 274578, - [SMALL_STATE(5106)] = 274609, - [SMALL_STATE(5107)] = 274640, - [SMALL_STATE(5108)] = 274671, - [SMALL_STATE(5109)] = 274716, - [SMALL_STATE(5110)] = 274753, - [SMALL_STATE(5111)] = 274790, - [SMALL_STATE(5112)] = 274821, - [SMALL_STATE(5113)] = 274852, - [SMALL_STATE(5114)] = 274883, - [SMALL_STATE(5115)] = 274914, - [SMALL_STATE(5116)] = 274949, - [SMALL_STATE(5117)] = 274980, - [SMALL_STATE(5118)] = 275027, - [SMALL_STATE(5119)] = 275074, + [SMALL_STATE(5040)] = 272417, + [SMALL_STATE(5041)] = 272448, + [SMALL_STATE(5042)] = 272485, + [SMALL_STATE(5043)] = 272516, + [SMALL_STATE(5044)] = 272547, + [SMALL_STATE(5045)] = 272578, + [SMALL_STATE(5046)] = 272609, + [SMALL_STATE(5047)] = 272640, + [SMALL_STATE(5048)] = 272671, + [SMALL_STATE(5049)] = 272702, + [SMALL_STATE(5050)] = 272733, + [SMALL_STATE(5051)] = 272770, + [SMALL_STATE(5052)] = 272801, + [SMALL_STATE(5053)] = 272832, + [SMALL_STATE(5054)] = 272863, + [SMALL_STATE(5055)] = 272894, + [SMALL_STATE(5056)] = 272925, + [SMALL_STATE(5057)] = 272956, + [SMALL_STATE(5058)] = 272987, + [SMALL_STATE(5059)] = 273018, + [SMALL_STATE(5060)] = 273049, + [SMALL_STATE(5061)] = 273080, + [SMALL_STATE(5062)] = 273111, + [SMALL_STATE(5063)] = 273142, + [SMALL_STATE(5064)] = 273173, + [SMALL_STATE(5065)] = 273204, + [SMALL_STATE(5066)] = 273235, + [SMALL_STATE(5067)] = 273266, + [SMALL_STATE(5068)] = 273297, + [SMALL_STATE(5069)] = 273342, + [SMALL_STATE(5070)] = 273387, + [SMALL_STATE(5071)] = 273418, + [SMALL_STATE(5072)] = 273463, + [SMALL_STATE(5073)] = 273494, + [SMALL_STATE(5074)] = 273525, + [SMALL_STATE(5075)] = 273556, + [SMALL_STATE(5076)] = 273591, + [SMALL_STATE(5077)] = 273622, + [SMALL_STATE(5078)] = 273657, + [SMALL_STATE(5079)] = 273692, + [SMALL_STATE(5080)] = 273727, + [SMALL_STATE(5081)] = 273774, + [SMALL_STATE(5082)] = 273805, + [SMALL_STATE(5083)] = 273842, + [SMALL_STATE(5084)] = 273879, + [SMALL_STATE(5085)] = 273910, + [SMALL_STATE(5086)] = 273947, + [SMALL_STATE(5087)] = 273982, + [SMALL_STATE(5088)] = 274017, + [SMALL_STATE(5089)] = 274048, + [SMALL_STATE(5090)] = 274079, + [SMALL_STATE(5091)] = 274110, + [SMALL_STATE(5092)] = 274147, + [SMALL_STATE(5093)] = 274184, + [SMALL_STATE(5094)] = 274231, + [SMALL_STATE(5095)] = 274276, + [SMALL_STATE(5096)] = 274307, + [SMALL_STATE(5097)] = 274342, + [SMALL_STATE(5098)] = 274373, + [SMALL_STATE(5099)] = 274412, + [SMALL_STATE(5100)] = 274443, + [SMALL_STATE(5101)] = 274480, + [SMALL_STATE(5102)] = 274511, + [SMALL_STATE(5103)] = 274542, + [SMALL_STATE(5104)] = 274573, + [SMALL_STATE(5105)] = 274604, + [SMALL_STATE(5106)] = 274635, + [SMALL_STATE(5107)] = 274680, + [SMALL_STATE(5108)] = 274711, + [SMALL_STATE(5109)] = 274746, + [SMALL_STATE(5110)] = 274783, + [SMALL_STATE(5111)] = 274814, + [SMALL_STATE(5112)] = 274845, + [SMALL_STATE(5113)] = 274876, + [SMALL_STATE(5114)] = 274907, + [SMALL_STATE(5115)] = 274938, + [SMALL_STATE(5116)] = 274973, + [SMALL_STATE(5117)] = 275004, + [SMALL_STATE(5118)] = 275039, + [SMALL_STATE(5119)] = 275070, [SMALL_STATE(5120)] = 275105, [SMALL_STATE(5121)] = 275136, - [SMALL_STATE(5122)] = 275168, - [SMALL_STATE(5123)] = 275210, - [SMALL_STATE(5124)] = 275240, - [SMALL_STATE(5125)] = 275274, - [SMALL_STATE(5126)] = 275306, - [SMALL_STATE(5127)] = 275338, - [SMALL_STATE(5128)] = 275372, - [SMALL_STATE(5129)] = 275408, - [SMALL_STATE(5130)] = 275444, - [SMALL_STATE(5131)] = 275480, - [SMALL_STATE(5132)] = 275516, - [SMALL_STATE(5133)] = 275548, - [SMALL_STATE(5134)] = 275584, - [SMALL_STATE(5135)] = 275620, - [SMALL_STATE(5136)] = 275656, - [SMALL_STATE(5137)] = 275692, - [SMALL_STATE(5138)] = 275728, - [SMALL_STATE(5139)] = 275764, - [SMALL_STATE(5140)] = 275796, - [SMALL_STATE(5141)] = 275830, - [SMALL_STATE(5142)] = 275862, - [SMALL_STATE(5143)] = 275918, - [SMALL_STATE(5144)] = 275950, - [SMALL_STATE(5145)] = 275982, - [SMALL_STATE(5146)] = 276014, - [SMALL_STATE(5147)] = 276046, - [SMALL_STATE(5148)] = 276082, - [SMALL_STATE(5149)] = 276118, - [SMALL_STATE(5150)] = 276148, - [SMALL_STATE(5151)] = 276178, - [SMALL_STATE(5152)] = 276208, - [SMALL_STATE(5153)] = 276238, - [SMALL_STATE(5154)] = 276268, - [SMALL_STATE(5155)] = 276298, - [SMALL_STATE(5156)] = 276328, - [SMALL_STATE(5157)] = 276358, - [SMALL_STATE(5158)] = 276388, - [SMALL_STATE(5159)] = 276418, - [SMALL_STATE(5160)] = 276448, - [SMALL_STATE(5161)] = 276478, - [SMALL_STATE(5162)] = 276508, - [SMALL_STATE(5163)] = 276540, - [SMALL_STATE(5164)] = 276582, - [SMALL_STATE(5165)] = 276614, - [SMALL_STATE(5166)] = 276644, - [SMALL_STATE(5167)] = 276676, - [SMALL_STATE(5168)] = 276718, - [SMALL_STATE(5169)] = 276774, - [SMALL_STATE(5170)] = 276806, - [SMALL_STATE(5171)] = 276840, - [SMALL_STATE(5172)] = 276870, - [SMALL_STATE(5173)] = 276902, - [SMALL_STATE(5174)] = 276936, - [SMALL_STATE(5175)] = 276970, - [SMALL_STATE(5176)] = 277006, - [SMALL_STATE(5177)] = 277046, - [SMALL_STATE(5178)] = 277078, - [SMALL_STATE(5179)] = 277112, - [SMALL_STATE(5180)] = 277146, - [SMALL_STATE(5181)] = 277182, - [SMALL_STATE(5182)] = 277222, - [SMALL_STATE(5183)] = 277256, - [SMALL_STATE(5184)] = 277288, - [SMALL_STATE(5185)] = 277328, - [SMALL_STATE(5186)] = 277384, - [SMALL_STATE(5187)] = 277440, - [SMALL_STATE(5188)] = 277496, - [SMALL_STATE(5189)] = 277530, - [SMALL_STATE(5190)] = 277572, - [SMALL_STATE(5191)] = 277628, - [SMALL_STATE(5192)] = 277684, - [SMALL_STATE(5193)] = 277740, - [SMALL_STATE(5194)] = 277772, - [SMALL_STATE(5195)] = 277828, - [SMALL_STATE(5196)] = 277878, - [SMALL_STATE(5197)] = 277934, - [SMALL_STATE(5198)] = 277990, - [SMALL_STATE(5199)] = 278046, - [SMALL_STATE(5200)] = 278076, - [SMALL_STATE(5201)] = 278106, - [SMALL_STATE(5202)] = 278138, - [SMALL_STATE(5203)] = 278194, - [SMALL_STATE(5204)] = 278250, - [SMALL_STATE(5205)] = 278280, - [SMALL_STATE(5206)] = 278322, - [SMALL_STATE(5207)] = 278358, - [SMALL_STATE(5208)] = 278394, - [SMALL_STATE(5209)] = 278430, - [SMALL_STATE(5210)] = 278466, - [SMALL_STATE(5211)] = 278502, - [SMALL_STATE(5212)] = 278570, - [SMALL_STATE(5213)] = 278632, - [SMALL_STATE(5214)] = 278668, - [SMALL_STATE(5215)] = 278724, - [SMALL_STATE(5216)] = 278756, - [SMALL_STATE(5217)] = 278790, - [SMALL_STATE(5218)] = 278846, - [SMALL_STATE(5219)] = 278902, - [SMALL_STATE(5220)] = 278958, - [SMALL_STATE(5221)] = 279014, - [SMALL_STATE(5222)] = 279048, - [SMALL_STATE(5223)] = 279104, - [SMALL_STATE(5224)] = 279160, - [SMALL_STATE(5225)] = 279194, - [SMALL_STATE(5226)] = 279250, - [SMALL_STATE(5227)] = 279306, - [SMALL_STATE(5228)] = 279338, - [SMALL_STATE(5229)] = 279394, - [SMALL_STATE(5230)] = 279450, - [SMALL_STATE(5231)] = 279506, - [SMALL_STATE(5232)] = 279562, - [SMALL_STATE(5233)] = 279624, - [SMALL_STATE(5234)] = 279680, - [SMALL_STATE(5235)] = 279736, - [SMALL_STATE(5236)] = 279792, - [SMALL_STATE(5237)] = 279848, - [SMALL_STATE(5238)] = 279904, - [SMALL_STATE(5239)] = 279960, - [SMALL_STATE(5240)] = 280016, - [SMALL_STATE(5241)] = 280050, - [SMALL_STATE(5242)] = 280106, - [SMALL_STATE(5243)] = 280162, - [SMALL_STATE(5244)] = 280218, - [SMALL_STATE(5245)] = 280274, - [SMALL_STATE(5246)] = 280306, - [SMALL_STATE(5247)] = 280362, - [SMALL_STATE(5248)] = 280394, - [SMALL_STATE(5249)] = 280436, - [SMALL_STATE(5250)] = 280490, + [SMALL_STATE(5122)] = 275172, + [SMALL_STATE(5123)] = 275204, + [SMALL_STATE(5124)] = 275234, + [SMALL_STATE(5125)] = 275268, + [SMALL_STATE(5126)] = 275324, + [SMALL_STATE(5127)] = 275354, + [SMALL_STATE(5128)] = 275386, + [SMALL_STATE(5129)] = 275418, + [SMALL_STATE(5130)] = 275474, + [SMALL_STATE(5131)] = 275508, + [SMALL_STATE(5132)] = 275540, + [SMALL_STATE(5133)] = 275574, + [SMALL_STATE(5134)] = 275624, + [SMALL_STATE(5135)] = 275664, + [SMALL_STATE(5136)] = 275698, + [SMALL_STATE(5137)] = 275730, + [SMALL_STATE(5138)] = 275762, + [SMALL_STATE(5139)] = 275794, + [SMALL_STATE(5140)] = 275830, + [SMALL_STATE(5141)] = 275886, + [SMALL_STATE(5142)] = 275942, + [SMALL_STATE(5143)] = 275976, + [SMALL_STATE(5144)] = 276032, + [SMALL_STATE(5145)] = 276064, + [SMALL_STATE(5146)] = 276094, + [SMALL_STATE(5147)] = 276128, + [SMALL_STATE(5148)] = 276168, + [SMALL_STATE(5149)] = 276200, + [SMALL_STATE(5150)] = 276236, + [SMALL_STATE(5151)] = 276268, + [SMALL_STATE(5152)] = 276304, + [SMALL_STATE(5153)] = 276346, + [SMALL_STATE(5154)] = 276382, + [SMALL_STATE(5155)] = 276438, + [SMALL_STATE(5156)] = 276470, + [SMALL_STATE(5157)] = 276506, + [SMALL_STATE(5158)] = 276542, + [SMALL_STATE(5159)] = 276572, + [SMALL_STATE(5160)] = 276628, + [SMALL_STATE(5161)] = 276684, + [SMALL_STATE(5162)] = 276740, + [SMALL_STATE(5163)] = 276796, + [SMALL_STATE(5164)] = 276852, + [SMALL_STATE(5165)] = 276882, + [SMALL_STATE(5166)] = 276916, + [SMALL_STATE(5167)] = 276972, + [SMALL_STATE(5168)] = 277028, + [SMALL_STATE(5169)] = 277084, + [SMALL_STATE(5170)] = 277140, + [SMALL_STATE(5171)] = 277174, + [SMALL_STATE(5172)] = 277216, + [SMALL_STATE(5173)] = 277246, + [SMALL_STATE(5174)] = 277302, + [SMALL_STATE(5175)] = 277358, + [SMALL_STATE(5176)] = 277414, + [SMALL_STATE(5177)] = 277470, + [SMALL_STATE(5178)] = 277500, + [SMALL_STATE(5179)] = 277530, + [SMALL_STATE(5180)] = 277586, + [SMALL_STATE(5181)] = 277642, + [SMALL_STATE(5182)] = 277698, + [SMALL_STATE(5183)] = 277732, + [SMALL_STATE(5184)] = 277788, + [SMALL_STATE(5185)] = 277842, + [SMALL_STATE(5186)] = 277882, + [SMALL_STATE(5187)] = 277914, + [SMALL_STATE(5188)] = 277948, + [SMALL_STATE(5189)] = 278004, + [SMALL_STATE(5190)] = 278060, + [SMALL_STATE(5191)] = 278090, + [SMALL_STATE(5192)] = 278146, + [SMALL_STATE(5193)] = 278202, + [SMALL_STATE(5194)] = 278232, + [SMALL_STATE(5195)] = 278264, + [SMALL_STATE(5196)] = 278320, + [SMALL_STATE(5197)] = 278350, + [SMALL_STATE(5198)] = 278380, + [SMALL_STATE(5199)] = 278412, + [SMALL_STATE(5200)] = 278480, + [SMALL_STATE(5201)] = 278512, + [SMALL_STATE(5202)] = 278546, + [SMALL_STATE(5203)] = 278576, + [SMALL_STATE(5204)] = 278608, + [SMALL_STATE(5205)] = 278638, + [SMALL_STATE(5206)] = 278694, + [SMALL_STATE(5207)] = 278750, + [SMALL_STATE(5208)] = 278780, + [SMALL_STATE(5209)] = 278836, + [SMALL_STATE(5210)] = 278866, + [SMALL_STATE(5211)] = 278908, + [SMALL_STATE(5212)] = 278942, + [SMALL_STATE(5213)] = 278974, + [SMALL_STATE(5214)] = 279008, + [SMALL_STATE(5215)] = 279038, + [SMALL_STATE(5216)] = 279068, + [SMALL_STATE(5217)] = 279100, + [SMALL_STATE(5218)] = 279142, + [SMALL_STATE(5219)] = 279198, + [SMALL_STATE(5220)] = 279260, + [SMALL_STATE(5221)] = 279302, + [SMALL_STATE(5222)] = 279358, + [SMALL_STATE(5223)] = 279420, + [SMALL_STATE(5224)] = 279476, + [SMALL_STATE(5225)] = 279506, + [SMALL_STATE(5226)] = 279538, + [SMALL_STATE(5227)] = 279574, + [SMALL_STATE(5228)] = 279606, + [SMALL_STATE(5229)] = 279638, + [SMALL_STATE(5230)] = 279680, + [SMALL_STATE(5231)] = 279716, + [SMALL_STATE(5232)] = 279748, + [SMALL_STATE(5233)] = 279784, + [SMALL_STATE(5234)] = 279820, + [SMALL_STATE(5235)] = 279856, + [SMALL_STATE(5236)] = 279912, + [SMALL_STATE(5237)] = 279948, + [SMALL_STATE(5238)] = 279984, + [SMALL_STATE(5239)] = 280020, + [SMALL_STATE(5240)] = 280056, + [SMALL_STATE(5241)] = 280092, + [SMALL_STATE(5242)] = 280128, + [SMALL_STATE(5243)] = 280164, + [SMALL_STATE(5244)] = 280196, + [SMALL_STATE(5245)] = 280252, + [SMALL_STATE(5246)] = 280308, + [SMALL_STATE(5247)] = 280344, + [SMALL_STATE(5248)] = 280376, + [SMALL_STATE(5249)] = 280432, + [SMALL_STATE(5250)] = 280466, [SMALL_STATE(5251)] = 280522, [SMALL_STATE(5252)] = 280551, [SMALL_STATE(5253)] = 280580, - [SMALL_STATE(5254)] = 280613, - [SMALL_STATE(5255)] = 280642, - [SMALL_STATE(5256)] = 280671, - [SMALL_STATE(5257)] = 280704, - [SMALL_STATE(5258)] = 280733, - [SMALL_STATE(5259)] = 280766, - [SMALL_STATE(5260)] = 280795, - [SMALL_STATE(5261)] = 280854, - [SMALL_STATE(5262)] = 280883, - [SMALL_STATE(5263)] = 280912, - [SMALL_STATE(5264)] = 280941, - [SMALL_STATE(5265)] = 280970, - [SMALL_STATE(5266)] = 280999, - [SMALL_STATE(5267)] = 281046, - [SMALL_STATE(5268)] = 281079, - [SMALL_STATE(5269)] = 281108, - [SMALL_STATE(5270)] = 281137, - [SMALL_STATE(5271)] = 281172, - [SMALL_STATE(5272)] = 281207, - [SMALL_STATE(5273)] = 281236, - [SMALL_STATE(5274)] = 281265, - [SMALL_STATE(5275)] = 281298, - [SMALL_STATE(5276)] = 281327, - [SMALL_STATE(5277)] = 281360, - [SMALL_STATE(5278)] = 281389, - [SMALL_STATE(5279)] = 281422, + [SMALL_STATE(5254)] = 280609, + [SMALL_STATE(5255)] = 280638, + [SMALL_STATE(5256)] = 280679, + [SMALL_STATE(5257)] = 280712, + [SMALL_STATE(5258)] = 280745, + [SMALL_STATE(5259)] = 280778, + [SMALL_STATE(5260)] = 280811, + [SMALL_STATE(5261)] = 280840, + [SMALL_STATE(5262)] = 280873, + [SMALL_STATE(5263)] = 280906, + [SMALL_STATE(5264)] = 280939, + [SMALL_STATE(5265)] = 280972, + [SMALL_STATE(5266)] = 281019, + [SMALL_STATE(5267)] = 281048, + [SMALL_STATE(5268)] = 281077, + [SMALL_STATE(5269)] = 281110, + [SMALL_STATE(5270)] = 281143, + [SMALL_STATE(5271)] = 281176, + [SMALL_STATE(5272)] = 281205, + [SMALL_STATE(5273)] = 281234, + [SMALL_STATE(5274)] = 281263, + [SMALL_STATE(5275)] = 281292, + [SMALL_STATE(5276)] = 281321, + [SMALL_STATE(5277)] = 281350, + [SMALL_STATE(5278)] = 281379, + [SMALL_STATE(5279)] = 281408, [SMALL_STATE(5280)] = 281451, - [SMALL_STATE(5281)] = 281480, - [SMALL_STATE(5282)] = 281509, - [SMALL_STATE(5283)] = 281538, - [SMALL_STATE(5284)] = 281567, - [SMALL_STATE(5285)] = 281596, - [SMALL_STATE(5286)] = 281625, - [SMALL_STATE(5287)] = 281660, - [SMALL_STATE(5288)] = 281695, - [SMALL_STATE(5289)] = 281724, - [SMALL_STATE(5290)] = 281771, - [SMALL_STATE(5291)] = 281804, - [SMALL_STATE(5292)] = 281833, - [SMALL_STATE(5293)] = 281866, - [SMALL_STATE(5294)] = 281901, - [SMALL_STATE(5295)] = 281930, - [SMALL_STATE(5296)] = 281959, - [SMALL_STATE(5297)] = 281988, - [SMALL_STATE(5298)] = 282023, - [SMALL_STATE(5299)] = 282052, - [SMALL_STATE(5300)] = 282081, - [SMALL_STATE(5301)] = 282114, - [SMALL_STATE(5302)] = 282147, - [SMALL_STATE(5303)] = 282176, - [SMALL_STATE(5304)] = 282209, - [SMALL_STATE(5305)] = 282238, - [SMALL_STATE(5306)] = 282273, - [SMALL_STATE(5307)] = 282308, - [SMALL_STATE(5308)] = 282337, - [SMALL_STATE(5309)] = 282366, - [SMALL_STATE(5310)] = 282395, - [SMALL_STATE(5311)] = 282424, - [SMALL_STATE(5312)] = 282453, - [SMALL_STATE(5313)] = 282488, - [SMALL_STATE(5314)] = 282517, - [SMALL_STATE(5315)] = 282546, - [SMALL_STATE(5316)] = 282593, - [SMALL_STATE(5317)] = 282622, - [SMALL_STATE(5318)] = 282669, - [SMALL_STATE(5319)] = 282704, - [SMALL_STATE(5320)] = 282733, - [SMALL_STATE(5321)] = 282762, - [SMALL_STATE(5322)] = 282791, - [SMALL_STATE(5323)] = 282826, - [SMALL_STATE(5324)] = 282859, - [SMALL_STATE(5325)] = 282888, - [SMALL_STATE(5326)] = 282917, - [SMALL_STATE(5327)] = 282946, - [SMALL_STATE(5328)] = 282975, - [SMALL_STATE(5329)] = 283010, - [SMALL_STATE(5330)] = 283039, - [SMALL_STATE(5331)] = 283068, - [SMALL_STATE(5332)] = 283101, - [SMALL_STATE(5333)] = 283130, - [SMALL_STATE(5334)] = 283159, - [SMALL_STATE(5335)] = 283188, - [SMALL_STATE(5336)] = 283217, - [SMALL_STATE(5337)] = 283246, - [SMALL_STATE(5338)] = 283275, - [SMALL_STATE(5339)] = 283304, - [SMALL_STATE(5340)] = 283333, - [SMALL_STATE(5341)] = 283362, - [SMALL_STATE(5342)] = 283391, - [SMALL_STATE(5343)] = 283420, - [SMALL_STATE(5344)] = 283449, - [SMALL_STATE(5345)] = 283478, - [SMALL_STATE(5346)] = 283507, - [SMALL_STATE(5347)] = 283536, - [SMALL_STATE(5348)] = 283569, - [SMALL_STATE(5349)] = 283602, - [SMALL_STATE(5350)] = 283635, - [SMALL_STATE(5351)] = 283678, - [SMALL_STATE(5352)] = 283711, - [SMALL_STATE(5353)] = 283744, - [SMALL_STATE(5354)] = 283773, - [SMALL_STATE(5355)] = 283802, - [SMALL_STATE(5356)] = 283831, - [SMALL_STATE(5357)] = 283878, - [SMALL_STATE(5358)] = 283911, - [SMALL_STATE(5359)] = 283958, - [SMALL_STATE(5360)] = 283991, - [SMALL_STATE(5361)] = 284026, - [SMALL_STATE(5362)] = 284073, - [SMALL_STATE(5363)] = 284114, - [SMALL_STATE(5364)] = 284155, - [SMALL_STATE(5365)] = 284184, - [SMALL_STATE(5366)] = 284217, - [SMALL_STATE(5367)] = 284256, - [SMALL_STATE(5368)] = 284295, - [SMALL_STATE(5369)] = 284328, - [SMALL_STATE(5370)] = 284359, - [SMALL_STATE(5371)] = 284398, - [SMALL_STATE(5372)] = 284431, - [SMALL_STATE(5373)] = 284470, - [SMALL_STATE(5374)] = 284503, - [SMALL_STATE(5375)] = 284536, - [SMALL_STATE(5376)] = 284575, - [SMALL_STATE(5377)] = 284608, - [SMALL_STATE(5378)] = 284641, - [SMALL_STATE(5379)] = 284674, - [SMALL_STATE(5380)] = 284707, - [SMALL_STATE(5381)] = 284736, - [SMALL_STATE(5382)] = 284777, - [SMALL_STATE(5383)] = 284820, - [SMALL_STATE(5384)] = 284861, - [SMALL_STATE(5385)] = 284890, - [SMALL_STATE(5386)] = 284925, - [SMALL_STATE(5387)] = 284954, - [SMALL_STATE(5388)] = 284983, - [SMALL_STATE(5389)] = 285016, - [SMALL_STATE(5390)] = 285045, - [SMALL_STATE(5391)] = 285080, - [SMALL_STATE(5392)] = 285109, - [SMALL_STATE(5393)] = 285144, - [SMALL_STATE(5394)] = 285179, - [SMALL_STATE(5395)] = 285226, - [SMALL_STATE(5396)] = 285255, - [SMALL_STATE(5397)] = 285284, - [SMALL_STATE(5398)] = 285313, - [SMALL_STATE(5399)] = 285348, - [SMALL_STATE(5400)] = 285377, - [SMALL_STATE(5401)] = 285406, - [SMALL_STATE(5402)] = 285435, - [SMALL_STATE(5403)] = 285464, + [SMALL_STATE(5281)] = 281484, + [SMALL_STATE(5282)] = 281513, + [SMALL_STATE(5283)] = 281542, + [SMALL_STATE(5284)] = 281571, + [SMALL_STATE(5285)] = 281618, + [SMALL_STATE(5286)] = 281665, + [SMALL_STATE(5287)] = 281700, + [SMALL_STATE(5288)] = 281729, + [SMALL_STATE(5289)] = 281776, + [SMALL_STATE(5290)] = 281805, + [SMALL_STATE(5291)] = 281834, + [SMALL_STATE(5292)] = 281863, + [SMALL_STATE(5293)] = 281892, + [SMALL_STATE(5294)] = 281921, + [SMALL_STATE(5295)] = 281950, + [SMALL_STATE(5296)] = 281991, + [SMALL_STATE(5297)] = 282020, + [SMALL_STATE(5298)] = 282059, + [SMALL_STATE(5299)] = 282098, + [SMALL_STATE(5300)] = 282131, + [SMALL_STATE(5301)] = 282162, + [SMALL_STATE(5302)] = 282201, + [SMALL_STATE(5303)] = 282240, + [SMALL_STATE(5304)] = 282279, + [SMALL_STATE(5305)] = 282320, + [SMALL_STATE(5306)] = 282367, + [SMALL_STATE(5307)] = 282400, + [SMALL_STATE(5308)] = 282429, + [SMALL_STATE(5309)] = 282458, + [SMALL_STATE(5310)] = 282491, + [SMALL_STATE(5311)] = 282520, + [SMALL_STATE(5312)] = 282549, + [SMALL_STATE(5313)] = 282578, + [SMALL_STATE(5314)] = 282607, + [SMALL_STATE(5315)] = 282636, + [SMALL_STATE(5316)] = 282665, + [SMALL_STATE(5317)] = 282694, + [SMALL_STATE(5318)] = 282723, + [SMALL_STATE(5319)] = 282764, + [SMALL_STATE(5320)] = 282793, + [SMALL_STATE(5321)] = 282822, + [SMALL_STATE(5322)] = 282869, + [SMALL_STATE(5323)] = 282904, + [SMALL_STATE(5324)] = 282939, + [SMALL_STATE(5325)] = 282972, + [SMALL_STATE(5326)] = 283019, + [SMALL_STATE(5327)] = 283048, + [SMALL_STATE(5328)] = 283077, + [SMALL_STATE(5329)] = 283110, + [SMALL_STATE(5330)] = 283143, + [SMALL_STATE(5331)] = 283172, + [SMALL_STATE(5332)] = 283201, + [SMALL_STATE(5333)] = 283230, + [SMALL_STATE(5334)] = 283259, + [SMALL_STATE(5335)] = 283288, + [SMALL_STATE(5336)] = 283321, + [SMALL_STATE(5337)] = 283350, + [SMALL_STATE(5338)] = 283385, + [SMALL_STATE(5339)] = 283414, + [SMALL_STATE(5340)] = 283447, + [SMALL_STATE(5341)] = 283480, + [SMALL_STATE(5342)] = 283509, + [SMALL_STATE(5343)] = 283538, + [SMALL_STATE(5344)] = 283585, + [SMALL_STATE(5345)] = 283614, + [SMALL_STATE(5346)] = 283643, + [SMALL_STATE(5347)] = 283672, + [SMALL_STATE(5348)] = 283701, + [SMALL_STATE(5349)] = 283730, + [SMALL_STATE(5350)] = 283759, + [SMALL_STATE(5351)] = 283818, + [SMALL_STATE(5352)] = 283847, + [SMALL_STATE(5353)] = 283876, + [SMALL_STATE(5354)] = 283911, + [SMALL_STATE(5355)] = 283946, + [SMALL_STATE(5356)] = 283979, + [SMALL_STATE(5357)] = 284012, + [SMALL_STATE(5358)] = 284045, + [SMALL_STATE(5359)] = 284078, + [SMALL_STATE(5360)] = 284111, + [SMALL_STATE(5361)] = 284140, + [SMALL_STATE(5362)] = 284169, + [SMALL_STATE(5363)] = 284198, + [SMALL_STATE(5364)] = 284227, + [SMALL_STATE(5365)] = 284256, + [SMALL_STATE(5366)] = 284285, + [SMALL_STATE(5367)] = 284314, + [SMALL_STATE(5368)] = 284343, + [SMALL_STATE(5369)] = 284372, + [SMALL_STATE(5370)] = 284415, + [SMALL_STATE(5371)] = 284444, + [SMALL_STATE(5372)] = 284473, + [SMALL_STATE(5373)] = 284502, + [SMALL_STATE(5374)] = 284531, + [SMALL_STATE(5375)] = 284560, + [SMALL_STATE(5376)] = 284593, + [SMALL_STATE(5377)] = 284626, + [SMALL_STATE(5378)] = 284661, + [SMALL_STATE(5379)] = 284690, + [SMALL_STATE(5380)] = 284719, + [SMALL_STATE(5381)] = 284752, + [SMALL_STATE(5382)] = 284787, + [SMALL_STATE(5383)] = 284822, + [SMALL_STATE(5384)] = 284851, + [SMALL_STATE(5385)] = 284884, + [SMALL_STATE(5386)] = 284913, + [SMALL_STATE(5387)] = 284942, + [SMALL_STATE(5388)] = 284971, + [SMALL_STATE(5389)] = 285000, + [SMALL_STATE(5390)] = 285029, + [SMALL_STATE(5391)] = 285058, + [SMALL_STATE(5392)] = 285093, + [SMALL_STATE(5393)] = 285128, + [SMALL_STATE(5394)] = 285163, + [SMALL_STATE(5395)] = 285198, + [SMALL_STATE(5396)] = 285233, + [SMALL_STATE(5397)] = 285268, + [SMALL_STATE(5398)] = 285303, + [SMALL_STATE(5399)] = 285338, + [SMALL_STATE(5400)] = 285367, + [SMALL_STATE(5401)] = 285396, + [SMALL_STATE(5402)] = 285429, + [SMALL_STATE(5403)] = 285458, [SMALL_STATE(5404)] = 285493, [SMALL_STATE(5405)] = 285521, - [SMALL_STATE(5406)] = 285561, - [SMALL_STATE(5407)] = 285605, - [SMALL_STATE(5408)] = 285639, - [SMALL_STATE(5409)] = 285671, - [SMALL_STATE(5410)] = 285699, - [SMALL_STATE(5411)] = 285727, - [SMALL_STATE(5412)] = 285759, - [SMALL_STATE(5413)] = 285791, - [SMALL_STATE(5414)] = 285819, - [SMALL_STATE(5415)] = 285847, - [SMALL_STATE(5416)] = 285879, - [SMALL_STATE(5417)] = 285907, - [SMALL_STATE(5418)] = 285939, - [SMALL_STATE(5419)] = 285971, + [SMALL_STATE(5406)] = 285549, + [SMALL_STATE(5407)] = 285583, + [SMALL_STATE(5408)] = 285615, + [SMALL_STATE(5409)] = 285647, + [SMALL_STATE(5410)] = 285687, + [SMALL_STATE(5411)] = 285717, + [SMALL_STATE(5412)] = 285745, + [SMALL_STATE(5413)] = 285773, + [SMALL_STATE(5414)] = 285801, + [SMALL_STATE(5415)] = 285829, + [SMALL_STATE(5416)] = 285857, + [SMALL_STATE(5417)] = 285885, + [SMALL_STATE(5418)] = 285917, + [SMALL_STATE(5419)] = 285945, [SMALL_STATE(5420)] = 286001, - [SMALL_STATE(5421)] = 286033, - [SMALL_STATE(5422)] = 286067, - [SMALL_STATE(5423)] = 286095, - [SMALL_STATE(5424)] = 286135, - [SMALL_STATE(5425)] = 286167, - [SMALL_STATE(5426)] = 286211, - [SMALL_STATE(5427)] = 286243, - [SMALL_STATE(5428)] = 286275, - [SMALL_STATE(5429)] = 286303, - [SMALL_STATE(5430)] = 286359, - [SMALL_STATE(5431)] = 286387, - [SMALL_STATE(5432)] = 286415, - [SMALL_STATE(5433)] = 286443, - [SMALL_STATE(5434)] = 286471, - [SMALL_STATE(5435)] = 286499, - [SMALL_STATE(5436)] = 286527, - [SMALL_STATE(5437)] = 286569, - [SMALL_STATE(5438)] = 286601, - [SMALL_STATE(5439)] = 286629, - [SMALL_STATE(5440)] = 286657, - [SMALL_STATE(5441)] = 286685, - [SMALL_STATE(5442)] = 286713, - [SMALL_STATE(5443)] = 286741, - [SMALL_STATE(5444)] = 286769, - [SMALL_STATE(5445)] = 286797, - [SMALL_STATE(5446)] = 286825, - [SMALL_STATE(5447)] = 286853, - [SMALL_STATE(5448)] = 286885, - [SMALL_STATE(5449)] = 286913, - [SMALL_STATE(5450)] = 286941, - [SMALL_STATE(5451)] = 286969, - [SMALL_STATE(5452)] = 286997, - [SMALL_STATE(5453)] = 287025, - [SMALL_STATE(5454)] = 287053, - [SMALL_STATE(5455)] = 287081, - [SMALL_STATE(5456)] = 287109, - [SMALL_STATE(5457)] = 287137, - [SMALL_STATE(5458)] = 287165, - [SMALL_STATE(5459)] = 287221, - [SMALL_STATE(5460)] = 287249, - [SMALL_STATE(5461)] = 287311, - [SMALL_STATE(5462)] = 287339, - [SMALL_STATE(5463)] = 287371, - [SMALL_STATE(5464)] = 287399, - [SMALL_STATE(5465)] = 287427, - [SMALL_STATE(5466)] = 287469, - [SMALL_STATE(5467)] = 287501, - [SMALL_STATE(5468)] = 287529, - [SMALL_STATE(5469)] = 287557, - [SMALL_STATE(5470)] = 287589, - [SMALL_STATE(5471)] = 287617, - [SMALL_STATE(5472)] = 287651, - [SMALL_STATE(5473)] = 287679, - [SMALL_STATE(5474)] = 287707, - [SMALL_STATE(5475)] = 287739, - [SMALL_STATE(5476)] = 287779, - [SMALL_STATE(5477)] = 287811, - [SMALL_STATE(5478)] = 287839, - [SMALL_STATE(5479)] = 287867, - [SMALL_STATE(5480)] = 287899, - [SMALL_STATE(5481)] = 287927, - [SMALL_STATE(5482)] = 287955, - [SMALL_STATE(5483)] = 287983, - [SMALL_STATE(5484)] = 288011, - [SMALL_STATE(5485)] = 288039, - [SMALL_STATE(5486)] = 288067, - [SMALL_STATE(5487)] = 288095, - [SMALL_STATE(5488)] = 288123, - [SMALL_STATE(5489)] = 288151, - [SMALL_STATE(5490)] = 288179, - [SMALL_STATE(5491)] = 288207, - [SMALL_STATE(5492)] = 288235, - [SMALL_STATE(5493)] = 288263, - [SMALL_STATE(5494)] = 288291, - [SMALL_STATE(5495)] = 288323, - [SMALL_STATE(5496)] = 288351, - [SMALL_STATE(5497)] = 288383, + [SMALL_STATE(5421)] = 286029, + [SMALL_STATE(5422)] = 286061, + [SMALL_STATE(5423)] = 286089, + [SMALL_STATE(5424)] = 286121, + [SMALL_STATE(5425)] = 286153, + [SMALL_STATE(5426)] = 286185, + [SMALL_STATE(5427)] = 286213, + [SMALL_STATE(5428)] = 286241, + [SMALL_STATE(5429)] = 286273, + [SMALL_STATE(5430)] = 286335, + [SMALL_STATE(5431)] = 286363, + [SMALL_STATE(5432)] = 286395, + [SMALL_STATE(5433)] = 286423, + [SMALL_STATE(5434)] = 286451, + [SMALL_STATE(5435)] = 286479, + [SMALL_STATE(5436)] = 286511, + [SMALL_STATE(5437)] = 286539, + [SMALL_STATE(5438)] = 286567, + [SMALL_STATE(5439)] = 286595, + [SMALL_STATE(5440)] = 286639, + [SMALL_STATE(5441)] = 286667, + [SMALL_STATE(5442)] = 286695, + [SMALL_STATE(5443)] = 286723, + [SMALL_STATE(5444)] = 286755, + [SMALL_STATE(5445)] = 286783, + [SMALL_STATE(5446)] = 286811, + [SMALL_STATE(5447)] = 286851, + [SMALL_STATE(5448)] = 286879, + [SMALL_STATE(5449)] = 286907, + [SMALL_STATE(5450)] = 286935, + [SMALL_STATE(5451)] = 286963, + [SMALL_STATE(5452)] = 286991, + [SMALL_STATE(5453)] = 287019, + [SMALL_STATE(5454)] = 287051, + [SMALL_STATE(5455)] = 287079, + [SMALL_STATE(5456)] = 287107, + [SMALL_STATE(5457)] = 287135, + [SMALL_STATE(5458)] = 287163, + [SMALL_STATE(5459)] = 287191, + [SMALL_STATE(5460)] = 287223, + [SMALL_STATE(5461)] = 287251, + [SMALL_STATE(5462)] = 287279, + [SMALL_STATE(5463)] = 287307, + [SMALL_STATE(5464)] = 287335, + [SMALL_STATE(5465)] = 287363, + [SMALL_STATE(5466)] = 287395, + [SMALL_STATE(5467)] = 287423, + [SMALL_STATE(5468)] = 287451, + [SMALL_STATE(5469)] = 287479, + [SMALL_STATE(5470)] = 287535, + [SMALL_STATE(5471)] = 287563, + [SMALL_STATE(5472)] = 287591, + [SMALL_STATE(5473)] = 287619, + [SMALL_STATE(5474)] = 287661, + [SMALL_STATE(5475)] = 287693, + [SMALL_STATE(5476)] = 287727, + [SMALL_STATE(5477)] = 287761, + [SMALL_STATE(5478)] = 287793, + [SMALL_STATE(5479)] = 287837, + [SMALL_STATE(5480)] = 287865, + [SMALL_STATE(5481)] = 287893, + [SMALL_STATE(5482)] = 287925, + [SMALL_STATE(5483)] = 287957, + [SMALL_STATE(5484)] = 287985, + [SMALL_STATE(5485)] = 288013, + [SMALL_STATE(5486)] = 288041, + [SMALL_STATE(5487)] = 288069, + [SMALL_STATE(5488)] = 288097, + [SMALL_STATE(5489)] = 288137, + [SMALL_STATE(5490)] = 288165, + [SMALL_STATE(5491)] = 288193, + [SMALL_STATE(5492)] = 288221, + [SMALL_STATE(5493)] = 288249, + [SMALL_STATE(5494)] = 288277, + [SMALL_STATE(5495)] = 288319, + [SMALL_STATE(5496)] = 288347, + [SMALL_STATE(5497)] = 288379, [SMALL_STATE(5498)] = 288411, [SMALL_STATE(5499)] = 288443, - [SMALL_STATE(5500)] = 288474, - [SMALL_STATE(5501)] = 288505, - [SMALL_STATE(5502)] = 288532, - [SMALL_STATE(5503)] = 288559, - [SMALL_STATE(5504)] = 288594, - [SMALL_STATE(5505)] = 288633, - [SMALL_STATE(5506)] = 288672, - [SMALL_STATE(5507)] = 288699, - [SMALL_STATE(5508)] = 288726, - [SMALL_STATE(5509)] = 288753, - [SMALL_STATE(5510)] = 288780, - [SMALL_STATE(5511)] = 288807, - [SMALL_STATE(5512)] = 288834, - [SMALL_STATE(5513)] = 288861, - [SMALL_STATE(5514)] = 288888, - [SMALL_STATE(5515)] = 288923, - [SMALL_STATE(5516)] = 288962, - [SMALL_STATE(5517)] = 289001, - [SMALL_STATE(5518)] = 289040, - [SMALL_STATE(5519)] = 289073, - [SMALL_STATE(5520)] = 289104, + [SMALL_STATE(5500)] = 288470, + [SMALL_STATE(5501)] = 288507, + [SMALL_STATE(5502)] = 288534, + [SMALL_STATE(5503)] = 288573, + [SMALL_STATE(5504)] = 288612, + [SMALL_STATE(5505)] = 288639, + [SMALL_STATE(5506)] = 288670, + [SMALL_STATE(5507)] = 288697, + [SMALL_STATE(5508)] = 288736, + [SMALL_STATE(5509)] = 288775, + [SMALL_STATE(5510)] = 288814, + [SMALL_STATE(5511)] = 288841, + [SMALL_STATE(5512)] = 288868, + [SMALL_STATE(5513)] = 288895, + [SMALL_STATE(5514)] = 288922, + [SMALL_STATE(5515)] = 288949, + [SMALL_STATE(5516)] = 288976, + [SMALL_STATE(5517)] = 289011, + [SMALL_STATE(5518)] = 289046, + [SMALL_STATE(5519)] = 289077, + [SMALL_STATE(5520)] = 289108, [SMALL_STATE(5521)] = 289135, [SMALL_STATE(5522)] = 289162, [SMALL_STATE(5523)] = 289189, - [SMALL_STATE(5524)] = 289216, - [SMALL_STATE(5525)] = 289243, - [SMALL_STATE(5526)] = 289270, - [SMALL_STATE(5527)] = 289297, - [SMALL_STATE(5528)] = 289324, - [SMALL_STATE(5529)] = 289355, - [SMALL_STATE(5530)] = 289382, - [SMALL_STATE(5531)] = 289409, - [SMALL_STATE(5532)] = 289448, - [SMALL_STATE(5533)] = 289479, - [SMALL_STATE(5534)] = 289516, - [SMALL_STATE(5535)] = 289543, - [SMALL_STATE(5536)] = 289580, - [SMALL_STATE(5537)] = 289607, - [SMALL_STATE(5538)] = 289634, - [SMALL_STATE(5539)] = 289673, - [SMALL_STATE(5540)] = 289700, - [SMALL_STATE(5541)] = 289739, - [SMALL_STATE(5542)] = 289766, - [SMALL_STATE(5543)] = 289793, - [SMALL_STATE(5544)] = 289820, - [SMALL_STATE(5545)] = 289851, + [SMALL_STATE(5524)] = 289222, + [SMALL_STATE(5525)] = 289261, + [SMALL_STATE(5526)] = 289288, + [SMALL_STATE(5527)] = 289315, + [SMALL_STATE(5528)] = 289354, + [SMALL_STATE(5529)] = 289393, + [SMALL_STATE(5530)] = 289420, + [SMALL_STATE(5531)] = 289447, + [SMALL_STATE(5532)] = 289474, + [SMALL_STATE(5533)] = 289501, + [SMALL_STATE(5534)] = 289532, + [SMALL_STATE(5535)] = 289563, + [SMALL_STATE(5536)] = 289594, + [SMALL_STATE(5537)] = 289621, + [SMALL_STATE(5538)] = 289648, + [SMALL_STATE(5539)] = 289675, + [SMALL_STATE(5540)] = 289702, + [SMALL_STATE(5541)] = 289729, + [SMALL_STATE(5542)] = 289756, + [SMALL_STATE(5543)] = 289787, + [SMALL_STATE(5544)] = 289814, + [SMALL_STATE(5545)] = 289853, [SMALL_STATE(5546)] = 289890, [SMALL_STATE(5547)] = 289929, [SMALL_STATE(5548)] = 289955, - [SMALL_STATE(5549)] = 289987, - [SMALL_STATE(5550)] = 290013, - [SMALL_STATE(5551)] = 290051, - [SMALL_STATE(5552)] = 290089, - [SMALL_STATE(5553)] = 290115, - [SMALL_STATE(5554)] = 290147, - [SMALL_STATE(5555)] = 290185, - [SMALL_STATE(5556)] = 290211, - [SMALL_STATE(5557)] = 290237, - [SMALL_STATE(5558)] = 290275, - [SMALL_STATE(5559)] = 290313, - [SMALL_STATE(5560)] = 290351, - [SMALL_STATE(5561)] = 290377, - [SMALL_STATE(5562)] = 290409, - [SMALL_STATE(5563)] = 290441, - [SMALL_STATE(5564)] = 290467, - [SMALL_STATE(5565)] = 290493, - [SMALL_STATE(5566)] = 290519, - [SMALL_STATE(5567)] = 290545, - [SMALL_STATE(5568)] = 290571, - [SMALL_STATE(5569)] = 290597, - [SMALL_STATE(5570)] = 290635, - [SMALL_STATE(5571)] = 290661, - [SMALL_STATE(5572)] = 290687, - [SMALL_STATE(5573)] = 290713, - [SMALL_STATE(5574)] = 290739, - [SMALL_STATE(5575)] = 290765, - [SMALL_STATE(5576)] = 290791, - [SMALL_STATE(5577)] = 290817, - [SMALL_STATE(5578)] = 290849, - [SMALL_STATE(5579)] = 290875, - [SMALL_STATE(5580)] = 290901, - [SMALL_STATE(5581)] = 290933, - [SMALL_STATE(5582)] = 290959, - [SMALL_STATE(5583)] = 290985, - [SMALL_STATE(5584)] = 291017, - [SMALL_STATE(5585)] = 291049, - [SMALL_STATE(5586)] = 291075, - [SMALL_STATE(5587)] = 291101, - [SMALL_STATE(5588)] = 291127, - [SMALL_STATE(5589)] = 291153, - [SMALL_STATE(5590)] = 291179, - [SMALL_STATE(5591)] = 291205, - [SMALL_STATE(5592)] = 291231, - [SMALL_STATE(5593)] = 291257, - [SMALL_STATE(5594)] = 291295, - [SMALL_STATE(5595)] = 291321, - [SMALL_STATE(5596)] = 291347, - [SMALL_STATE(5597)] = 291373, - [SMALL_STATE(5598)] = 291399, - [SMALL_STATE(5599)] = 291425, - [SMALL_STATE(5600)] = 291451, - [SMALL_STATE(5601)] = 291477, - [SMALL_STATE(5602)] = 291503, - [SMALL_STATE(5603)] = 291535, - [SMALL_STATE(5604)] = 291561, - [SMALL_STATE(5605)] = 291587, - [SMALL_STATE(5606)] = 291619, - [SMALL_STATE(5607)] = 291651, - [SMALL_STATE(5608)] = 291677, - [SMALL_STATE(5609)] = 291709, - [SMALL_STATE(5610)] = 291745, - [SMALL_STATE(5611)] = 291771, - [SMALL_STATE(5612)] = 291803, - [SMALL_STATE(5613)] = 291829, - [SMALL_STATE(5614)] = 291855, - [SMALL_STATE(5615)] = 291893, - [SMALL_STATE(5616)] = 291919, + [SMALL_STATE(5549)] = 289981, + [SMALL_STATE(5550)] = 290007, + [SMALL_STATE(5551)] = 290033, + [SMALL_STATE(5552)] = 290065, + [SMALL_STATE(5553)] = 290097, + [SMALL_STATE(5554)] = 290123, + [SMALL_STATE(5555)] = 290149, + [SMALL_STATE(5556)] = 290175, + [SMALL_STATE(5557)] = 290201, + [SMALL_STATE(5558)] = 290239, + [SMALL_STATE(5559)] = 290277, + [SMALL_STATE(5560)] = 290303, + [SMALL_STATE(5561)] = 290329, + [SMALL_STATE(5562)] = 290355, + [SMALL_STATE(5563)] = 290387, + [SMALL_STATE(5564)] = 290419, + [SMALL_STATE(5565)] = 290455, + [SMALL_STATE(5566)] = 290481, + [SMALL_STATE(5567)] = 290513, + [SMALL_STATE(5568)] = 290551, + [SMALL_STATE(5569)] = 290577, + [SMALL_STATE(5570)] = 290609, + [SMALL_STATE(5571)] = 290641, + [SMALL_STATE(5572)] = 290667, + [SMALL_STATE(5573)] = 290693, + [SMALL_STATE(5574)] = 290725, + [SMALL_STATE(5575)] = 290751, + [SMALL_STATE(5576)] = 290777, + [SMALL_STATE(5577)] = 290803, + [SMALL_STATE(5578)] = 290829, + [SMALL_STATE(5579)] = 290867, + [SMALL_STATE(5580)] = 290893, + [SMALL_STATE(5581)] = 290919, + [SMALL_STATE(5582)] = 290945, + [SMALL_STATE(5583)] = 290971, + [SMALL_STATE(5584)] = 291003, + [SMALL_STATE(5585)] = 291029, + [SMALL_STATE(5586)] = 291055, + [SMALL_STATE(5587)] = 291093, + [SMALL_STATE(5588)] = 291119, + [SMALL_STATE(5589)] = 291145, + [SMALL_STATE(5590)] = 291177, + [SMALL_STATE(5591)] = 291203, + [SMALL_STATE(5592)] = 291235, + [SMALL_STATE(5593)] = 291261, + [SMALL_STATE(5594)] = 291299, + [SMALL_STATE(5595)] = 291337, + [SMALL_STATE(5596)] = 291363, + [SMALL_STATE(5597)] = 291395, + [SMALL_STATE(5598)] = 291421, + [SMALL_STATE(5599)] = 291453, + [SMALL_STATE(5600)] = 291479, + [SMALL_STATE(5601)] = 291505, + [SMALL_STATE(5602)] = 291531, + [SMALL_STATE(5603)] = 291557, + [SMALL_STATE(5604)] = 291583, + [SMALL_STATE(5605)] = 291609, + [SMALL_STATE(5606)] = 291635, + [SMALL_STATE(5607)] = 291673, + [SMALL_STATE(5608)] = 291699, + [SMALL_STATE(5609)] = 291725, + [SMALL_STATE(5610)] = 291757, + [SMALL_STATE(5611)] = 291783, + [SMALL_STATE(5612)] = 291809, + [SMALL_STATE(5613)] = 291835, + [SMALL_STATE(5614)] = 291873, + [SMALL_STATE(5615)] = 291899, + [SMALL_STATE(5616)] = 291925, [SMALL_STATE(5617)] = 291951, - [SMALL_STATE(5618)] = 291976, - [SMALL_STATE(5619)] = 292001, - [SMALL_STATE(5620)] = 292026, - [SMALL_STATE(5621)] = 292051, - [SMALL_STATE(5622)] = 292076, - [SMALL_STATE(5623)] = 292101, - [SMALL_STATE(5624)] = 292126, - [SMALL_STATE(5625)] = 292151, - [SMALL_STATE(5626)] = 292176, - [SMALL_STATE(5627)] = 292201, - [SMALL_STATE(5628)] = 292226, - [SMALL_STATE(5629)] = 292251, - [SMALL_STATE(5630)] = 292276, - [SMALL_STATE(5631)] = 292301, - [SMALL_STATE(5632)] = 292326, - [SMALL_STATE(5633)] = 292355, - [SMALL_STATE(5634)] = 292380, - [SMALL_STATE(5635)] = 292405, - [SMALL_STATE(5636)] = 292430, - [SMALL_STATE(5637)] = 292455, - [SMALL_STATE(5638)] = 292480, - [SMALL_STATE(5639)] = 292505, - [SMALL_STATE(5640)] = 292530, - [SMALL_STATE(5641)] = 292555, - [SMALL_STATE(5642)] = 292580, - [SMALL_STATE(5643)] = 292605, - [SMALL_STATE(5644)] = 292634, - [SMALL_STATE(5645)] = 292659, - [SMALL_STATE(5646)] = 292684, - [SMALL_STATE(5647)] = 292709, - [SMALL_STATE(5648)] = 292734, - [SMALL_STATE(5649)] = 292759, - [SMALL_STATE(5650)] = 292784, - [SMALL_STATE(5651)] = 292809, + [SMALL_STATE(5618)] = 291980, + [SMALL_STATE(5619)] = 292005, + [SMALL_STATE(5620)] = 292030, + [SMALL_STATE(5621)] = 292055, + [SMALL_STATE(5622)] = 292080, + [SMALL_STATE(5623)] = 292105, + [SMALL_STATE(5624)] = 292130, + [SMALL_STATE(5625)] = 292155, + [SMALL_STATE(5626)] = 292180, + [SMALL_STATE(5627)] = 292205, + [SMALL_STATE(5628)] = 292230, + [SMALL_STATE(5629)] = 292255, + [SMALL_STATE(5630)] = 292280, + [SMALL_STATE(5631)] = 292305, + [SMALL_STATE(5632)] = 292334, + [SMALL_STATE(5633)] = 292359, + [SMALL_STATE(5634)] = 292384, + [SMALL_STATE(5635)] = 292409, + [SMALL_STATE(5636)] = 292434, + [SMALL_STATE(5637)] = 292459, + [SMALL_STATE(5638)] = 292484, + [SMALL_STATE(5639)] = 292513, + [SMALL_STATE(5640)] = 292538, + [SMALL_STATE(5641)] = 292563, + [SMALL_STATE(5642)] = 292588, + [SMALL_STATE(5643)] = 292613, + [SMALL_STATE(5644)] = 292638, + [SMALL_STATE(5645)] = 292663, + [SMALL_STATE(5646)] = 292688, + [SMALL_STATE(5647)] = 292713, + [SMALL_STATE(5648)] = 292738, + [SMALL_STATE(5649)] = 292763, + [SMALL_STATE(5650)] = 292788, + [SMALL_STATE(5651)] = 292813, [SMALL_STATE(5652)] = 292838, [SMALL_STATE(5653)] = 292863, - [SMALL_STATE(5654)] = 292888, - [SMALL_STATE(5655)] = 292913, - [SMALL_STATE(5656)] = 292938, - [SMALL_STATE(5657)] = 292963, + [SMALL_STATE(5654)] = 292892, + [SMALL_STATE(5655)] = 292917, + [SMALL_STATE(5656)] = 292942, + [SMALL_STATE(5657)] = 292967, [SMALL_STATE(5658)] = 292992, [SMALL_STATE(5659)] = 293017, [SMALL_STATE(5660)] = 293042, @@ -348775,10 +349076,10 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(5668)] = 293242, [SMALL_STATE(5669)] = 293267, [SMALL_STATE(5670)] = 293292, - [SMALL_STATE(5671)] = 293317, - [SMALL_STATE(5672)] = 293342, - [SMALL_STATE(5673)] = 293367, - [SMALL_STATE(5674)] = 293392, + [SMALL_STATE(5671)] = 293321, + [SMALL_STATE(5672)] = 293346, + [SMALL_STATE(5673)] = 293371, + [SMALL_STATE(5674)] = 293396, [SMALL_STATE(5675)] = 293421, [SMALL_STATE(5676)] = 293446, [SMALL_STATE(5677)] = 293471, @@ -348804,54 +349105,54 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(5697)] = 293971, [SMALL_STATE(5698)] = 294009, [SMALL_STATE(5699)] = 294041, - [SMALL_STATE(5700)] = 294073, - [SMALL_STATE(5701)] = 294109, + [SMALL_STATE(5700)] = 294065, + [SMALL_STATE(5701)] = 294097, [SMALL_STATE(5702)] = 294133, [SMALL_STATE(5703)] = 294174, [SMALL_STATE(5704)] = 294215, - [SMALL_STATE(5705)] = 294256, - [SMALL_STATE(5706)] = 294297, - [SMALL_STATE(5707)] = 294338, - [SMALL_STATE(5708)] = 294379, - [SMALL_STATE(5709)] = 294420, - [SMALL_STATE(5710)] = 294461, - [SMALL_STATE(5711)] = 294502, - [SMALL_STATE(5712)] = 294543, - [SMALL_STATE(5713)] = 294584, - [SMALL_STATE(5714)] = 294625, - [SMALL_STATE(5715)] = 294666, - [SMALL_STATE(5716)] = 294707, - [SMALL_STATE(5717)] = 294748, - [SMALL_STATE(5718)] = 294789, - [SMALL_STATE(5719)] = 294830, - [SMALL_STATE(5720)] = 294871, - [SMALL_STATE(5721)] = 294912, - [SMALL_STATE(5722)] = 294953, - [SMALL_STATE(5723)] = 294994, - [SMALL_STATE(5724)] = 295035, - [SMALL_STATE(5725)] = 295076, - [SMALL_STATE(5726)] = 295117, - [SMALL_STATE(5727)] = 295158, - [SMALL_STATE(5728)] = 295199, - [SMALL_STATE(5729)] = 295240, - [SMALL_STATE(5730)] = 295281, - [SMALL_STATE(5731)] = 295322, - [SMALL_STATE(5732)] = 295363, - [SMALL_STATE(5733)] = 295404, - [SMALL_STATE(5734)] = 295445, - [SMALL_STATE(5735)] = 295486, - [SMALL_STATE(5736)] = 295527, - [SMALL_STATE(5737)] = 295568, - [SMALL_STATE(5738)] = 295609, - [SMALL_STATE(5739)] = 295632, - [SMALL_STATE(5740)] = 295673, - [SMALL_STATE(5741)] = 295714, - [SMALL_STATE(5742)] = 295755, - [SMALL_STATE(5743)] = 295796, - [SMALL_STATE(5744)] = 295837, - [SMALL_STATE(5745)] = 295860, - [SMALL_STATE(5746)] = 295901, - [SMALL_STATE(5747)] = 295942, + [SMALL_STATE(5705)] = 294238, + [SMALL_STATE(5706)] = 294279, + [SMALL_STATE(5707)] = 294320, + [SMALL_STATE(5708)] = 294361, + [SMALL_STATE(5709)] = 294402, + [SMALL_STATE(5710)] = 294425, + [SMALL_STATE(5711)] = 294466, + [SMALL_STATE(5712)] = 294507, + [SMALL_STATE(5713)] = 294548, + [SMALL_STATE(5714)] = 294571, + [SMALL_STATE(5715)] = 294612, + [SMALL_STATE(5716)] = 294653, + [SMALL_STATE(5717)] = 294694, + [SMALL_STATE(5718)] = 294735, + [SMALL_STATE(5719)] = 294776, + [SMALL_STATE(5720)] = 294817, + [SMALL_STATE(5721)] = 294858, + [SMALL_STATE(5722)] = 294899, + [SMALL_STATE(5723)] = 294940, + [SMALL_STATE(5724)] = 294981, + [SMALL_STATE(5725)] = 295022, + [SMALL_STATE(5726)] = 295063, + [SMALL_STATE(5727)] = 295104, + [SMALL_STATE(5728)] = 295145, + [SMALL_STATE(5729)] = 295186, + [SMALL_STATE(5730)] = 295227, + [SMALL_STATE(5731)] = 295268, + [SMALL_STATE(5732)] = 295309, + [SMALL_STATE(5733)] = 295350, + [SMALL_STATE(5734)] = 295391, + [SMALL_STATE(5735)] = 295432, + [SMALL_STATE(5736)] = 295473, + [SMALL_STATE(5737)] = 295514, + [SMALL_STATE(5738)] = 295555, + [SMALL_STATE(5739)] = 295596, + [SMALL_STATE(5740)] = 295637, + [SMALL_STATE(5741)] = 295678, + [SMALL_STATE(5742)] = 295719, + [SMALL_STATE(5743)] = 295760, + [SMALL_STATE(5744)] = 295801, + [SMALL_STATE(5745)] = 295842, + [SMALL_STATE(5746)] = 295883, + [SMALL_STATE(5747)] = 295924, [SMALL_STATE(5748)] = 295965, [SMALL_STATE(5749)] = 296006, [SMALL_STATE(5750)] = 296047, @@ -348894,53 +349195,53 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(5787)] = 297564, [SMALL_STATE(5788)] = 297605, [SMALL_STATE(5789)] = 297646, - [SMALL_STATE(5790)] = 297669, - [SMALL_STATE(5791)] = 297710, - [SMALL_STATE(5792)] = 297751, - [SMALL_STATE(5793)] = 297792, - [SMALL_STATE(5794)] = 297833, - [SMALL_STATE(5795)] = 297874, - [SMALL_STATE(5796)] = 297915, - [SMALL_STATE(5797)] = 297956, - [SMALL_STATE(5798)] = 297997, - [SMALL_STATE(5799)] = 298038, - [SMALL_STATE(5800)] = 298079, - [SMALL_STATE(5801)] = 298120, - [SMALL_STATE(5802)] = 298161, - [SMALL_STATE(5803)] = 298202, - [SMALL_STATE(5804)] = 298243, - [SMALL_STATE(5805)] = 298284, - [SMALL_STATE(5806)] = 298325, - [SMALL_STATE(5807)] = 298366, - [SMALL_STATE(5808)] = 298407, - [SMALL_STATE(5809)] = 298448, - [SMALL_STATE(5810)] = 298489, - [SMALL_STATE(5811)] = 298530, - [SMALL_STATE(5812)] = 298571, - [SMALL_STATE(5813)] = 298612, - [SMALL_STATE(5814)] = 298653, - [SMALL_STATE(5815)] = 298694, - [SMALL_STATE(5816)] = 298735, - [SMALL_STATE(5817)] = 298776, - [SMALL_STATE(5818)] = 298817, - [SMALL_STATE(5819)] = 298858, - [SMALL_STATE(5820)] = 298899, - [SMALL_STATE(5821)] = 298940, - [SMALL_STATE(5822)] = 298981, - [SMALL_STATE(5823)] = 299022, - [SMALL_STATE(5824)] = 299063, - [SMALL_STATE(5825)] = 299104, - [SMALL_STATE(5826)] = 299145, - [SMALL_STATE(5827)] = 299186, - [SMALL_STATE(5828)] = 299227, - [SMALL_STATE(5829)] = 299268, - [SMALL_STATE(5830)] = 299309, - [SMALL_STATE(5831)] = 299350, - [SMALL_STATE(5832)] = 299391, - [SMALL_STATE(5833)] = 299432, - [SMALL_STATE(5834)] = 299473, - [SMALL_STATE(5835)] = 299514, - [SMALL_STATE(5836)] = 299555, + [SMALL_STATE(5790)] = 297687, + [SMALL_STATE(5791)] = 297728, + [SMALL_STATE(5792)] = 297769, + [SMALL_STATE(5793)] = 297810, + [SMALL_STATE(5794)] = 297851, + [SMALL_STATE(5795)] = 297892, + [SMALL_STATE(5796)] = 297933, + [SMALL_STATE(5797)] = 297974, + [SMALL_STATE(5798)] = 298015, + [SMALL_STATE(5799)] = 298056, + [SMALL_STATE(5800)] = 298097, + [SMALL_STATE(5801)] = 298138, + [SMALL_STATE(5802)] = 298179, + [SMALL_STATE(5803)] = 298220, + [SMALL_STATE(5804)] = 298261, + [SMALL_STATE(5805)] = 298302, + [SMALL_STATE(5806)] = 298343, + [SMALL_STATE(5807)] = 298384, + [SMALL_STATE(5808)] = 298425, + [SMALL_STATE(5809)] = 298466, + [SMALL_STATE(5810)] = 298507, + [SMALL_STATE(5811)] = 298548, + [SMALL_STATE(5812)] = 298589, + [SMALL_STATE(5813)] = 298630, + [SMALL_STATE(5814)] = 298671, + [SMALL_STATE(5815)] = 298712, + [SMALL_STATE(5816)] = 298753, + [SMALL_STATE(5817)] = 298794, + [SMALL_STATE(5818)] = 298835, + [SMALL_STATE(5819)] = 298876, + [SMALL_STATE(5820)] = 298917, + [SMALL_STATE(5821)] = 298958, + [SMALL_STATE(5822)] = 298999, + [SMALL_STATE(5823)] = 299040, + [SMALL_STATE(5824)] = 299081, + [SMALL_STATE(5825)] = 299122, + [SMALL_STATE(5826)] = 299163, + [SMALL_STATE(5827)] = 299204, + [SMALL_STATE(5828)] = 299245, + [SMALL_STATE(5829)] = 299286, + [SMALL_STATE(5830)] = 299327, + [SMALL_STATE(5831)] = 299368, + [SMALL_STATE(5832)] = 299409, + [SMALL_STATE(5833)] = 299450, + [SMALL_STATE(5834)] = 299491, + [SMALL_STATE(5835)] = 299532, + [SMALL_STATE(5836)] = 299573, [SMALL_STATE(5837)] = 299596, [SMALL_STATE(5838)] = 299637, [SMALL_STATE(5839)] = 299678, @@ -349194,708 +349495,708 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(6087)] = 306960, [SMALL_STATE(6088)] = 306988, [SMALL_STATE(6089)] = 307017, - [SMALL_STATE(6090)] = 307046, - [SMALL_STATE(6091)] = 307075, - [SMALL_STATE(6092)] = 307104, - [SMALL_STATE(6093)] = 307133, - [SMALL_STATE(6094)] = 307162, - [SMALL_STATE(6095)] = 307191, + [SMALL_STATE(6090)] = 307038, + [SMALL_STATE(6091)] = 307067, + [SMALL_STATE(6092)] = 307096, + [SMALL_STATE(6093)] = 307125, + [SMALL_STATE(6094)] = 307154, + [SMALL_STATE(6095)] = 307183, [SMALL_STATE(6096)] = 307212, [SMALL_STATE(6097)] = 307233, [SMALL_STATE(6098)] = 307262, [SMALL_STATE(6099)] = 307287, - [SMALL_STATE(6100)] = 307309, + [SMALL_STATE(6100)] = 307313, [SMALL_STATE(6101)] = 307335, - [SMALL_STATE(6102)] = 307357, - [SMALL_STATE(6103)] = 307379, - [SMALL_STATE(6104)] = 307401, - [SMALL_STATE(6105)] = 307427, - [SMALL_STATE(6106)] = 307453, - [SMALL_STATE(6107)] = 307479, + [SMALL_STATE(6102)] = 307361, + [SMALL_STATE(6103)] = 307383, + [SMALL_STATE(6104)] = 307405, + [SMALL_STATE(6105)] = 307431, + [SMALL_STATE(6106)] = 307457, + [SMALL_STATE(6107)] = 307483, [SMALL_STATE(6108)] = 307505, [SMALL_STATE(6109)] = 307527, - [SMALL_STATE(6110)] = 307553, + [SMALL_STATE(6110)] = 307549, [SMALL_STATE(6111)] = 307575, [SMALL_STATE(6112)] = 307597, - [SMALL_STATE(6113)] = 307619, - [SMALL_STATE(6114)] = 307645, - [SMALL_STATE(6115)] = 307667, - [SMALL_STATE(6116)] = 307693, + [SMALL_STATE(6113)] = 307623, + [SMALL_STATE(6114)] = 307649, + [SMALL_STATE(6115)] = 307675, + [SMALL_STATE(6116)] = 307697, [SMALL_STATE(6117)] = 307719, - [SMALL_STATE(6118)] = 307742, - [SMALL_STATE(6119)] = 307765, - [SMALL_STATE(6120)] = 307788, - [SMALL_STATE(6121)] = 307811, - [SMALL_STATE(6122)] = 307830, - [SMALL_STATE(6123)] = 307849, - [SMALL_STATE(6124)] = 307868, - [SMALL_STATE(6125)] = 307887, - [SMALL_STATE(6126)] = 307906, - [SMALL_STATE(6127)] = 307929, - [SMALL_STATE(6128)] = 307948, - [SMALL_STATE(6129)] = 307979, - [SMALL_STATE(6130)] = 308002, - [SMALL_STATE(6131)] = 308025, - [SMALL_STATE(6132)] = 308056, - [SMALL_STATE(6133)] = 308079, - [SMALL_STATE(6134)] = 308102, - [SMALL_STATE(6135)] = 308125, - [SMALL_STATE(6136)] = 308148, - [SMALL_STATE(6137)] = 308171, - [SMALL_STATE(6138)] = 308202, - [SMALL_STATE(6139)] = 308221, - [SMALL_STATE(6140)] = 308244, - [SMALL_STATE(6141)] = 308263, - [SMALL_STATE(6142)] = 308282, - [SMALL_STATE(6143)] = 308305, - [SMALL_STATE(6144)] = 308324, - [SMALL_STATE(6145)] = 308347, - [SMALL_STATE(6146)] = 308370, - [SMALL_STATE(6147)] = 308393, - [SMALL_STATE(6148)] = 308412, - [SMALL_STATE(6149)] = 308435, - [SMALL_STATE(6150)] = 308458, - [SMALL_STATE(6151)] = 308481, - [SMALL_STATE(6152)] = 308504, - [SMALL_STATE(6153)] = 308527, - [SMALL_STATE(6154)] = 308550, - [SMALL_STATE(6155)] = 308569, - [SMALL_STATE(6156)] = 308592, - [SMALL_STATE(6157)] = 308615, - [SMALL_STATE(6158)] = 308638, + [SMALL_STATE(6118)] = 307750, + [SMALL_STATE(6119)] = 307773, + [SMALL_STATE(6120)] = 307796, + [SMALL_STATE(6121)] = 307819, + [SMALL_STATE(6122)] = 307842, + [SMALL_STATE(6123)] = 307873, + [SMALL_STATE(6124)] = 307892, + [SMALL_STATE(6125)] = 307915, + [SMALL_STATE(6126)] = 307938, + [SMALL_STATE(6127)] = 307957, + [SMALL_STATE(6128)] = 307980, + [SMALL_STATE(6129)] = 308003, + [SMALL_STATE(6130)] = 308026, + [SMALL_STATE(6131)] = 308049, + [SMALL_STATE(6132)] = 308072, + [SMALL_STATE(6133)] = 308095, + [SMALL_STATE(6134)] = 308118, + [SMALL_STATE(6135)] = 308141, + [SMALL_STATE(6136)] = 308164, + [SMALL_STATE(6137)] = 308187, + [SMALL_STATE(6138)] = 308210, + [SMALL_STATE(6139)] = 308233, + [SMALL_STATE(6140)] = 308252, + [SMALL_STATE(6141)] = 308275, + [SMALL_STATE(6142)] = 308298, + [SMALL_STATE(6143)] = 308321, + [SMALL_STATE(6144)] = 308344, + [SMALL_STATE(6145)] = 308367, + [SMALL_STATE(6146)] = 308390, + [SMALL_STATE(6147)] = 308421, + [SMALL_STATE(6148)] = 308440, + [SMALL_STATE(6149)] = 308463, + [SMALL_STATE(6150)] = 308482, + [SMALL_STATE(6151)] = 308505, + [SMALL_STATE(6152)] = 308528, + [SMALL_STATE(6153)] = 308547, + [SMALL_STATE(6154)] = 308566, + [SMALL_STATE(6155)] = 308585, + [SMALL_STATE(6156)] = 308604, + [SMALL_STATE(6157)] = 308623, + [SMALL_STATE(6158)] = 308642, [SMALL_STATE(6159)] = 308661, [SMALL_STATE(6160)] = 308689, [SMALL_STATE(6161)] = 308717, [SMALL_STATE(6162)] = 308745, - [SMALL_STATE(6163)] = 308773, - [SMALL_STATE(6164)] = 308801, - [SMALL_STATE(6165)] = 308829, - [SMALL_STATE(6166)] = 308857, - [SMALL_STATE(6167)] = 308885, - [SMALL_STATE(6168)] = 308913, - [SMALL_STATE(6169)] = 308941, - [SMALL_STATE(6170)] = 308969, - [SMALL_STATE(6171)] = 308997, - [SMALL_STATE(6172)] = 309025, - [SMALL_STATE(6173)] = 309053, - [SMALL_STATE(6174)] = 309081, - [SMALL_STATE(6175)] = 309109, - [SMALL_STATE(6176)] = 309137, - [SMALL_STATE(6177)] = 309153, - [SMALL_STATE(6178)] = 309181, - [SMALL_STATE(6179)] = 309209, + [SMALL_STATE(6163)] = 308761, + [SMALL_STATE(6164)] = 308789, + [SMALL_STATE(6165)] = 308817, + [SMALL_STATE(6166)] = 308845, + [SMALL_STATE(6167)] = 308873, + [SMALL_STATE(6168)] = 308901, + [SMALL_STATE(6169)] = 308929, + [SMALL_STATE(6170)] = 308957, + [SMALL_STATE(6171)] = 308985, + [SMALL_STATE(6172)] = 309013, + [SMALL_STATE(6173)] = 309041, + [SMALL_STATE(6174)] = 309069, + [SMALL_STATE(6175)] = 309097, + [SMALL_STATE(6176)] = 309125, + [SMALL_STATE(6177)] = 309141, + [SMALL_STATE(6178)] = 309169, + [SMALL_STATE(6179)] = 309197, [SMALL_STATE(6180)] = 309225, - [SMALL_STATE(6181)] = 309253, - [SMALL_STATE(6182)] = 309281, - [SMALL_STATE(6183)] = 309309, + [SMALL_STATE(6181)] = 309241, + [SMALL_STATE(6182)] = 309269, + [SMALL_STATE(6183)] = 309297, [SMALL_STATE(6184)] = 309325, [SMALL_STATE(6185)] = 309353, [SMALL_STATE(6186)] = 309381, [SMALL_STATE(6187)] = 309409, - [SMALL_STATE(6188)] = 309440, + [SMALL_STATE(6188)] = 309432, [SMALL_STATE(6189)] = 309463, - [SMALL_STATE(6190)] = 309487, + [SMALL_STATE(6190)] = 309489, [SMALL_STATE(6191)] = 309513, - [SMALL_STATE(6192)] = 309537, - [SMALL_STATE(6193)] = 309561, + [SMALL_STATE(6192)] = 309535, + [SMALL_STATE(6193)] = 309559, [SMALL_STATE(6194)] = 309583, - [SMALL_STATE(6195)] = 309609, - [SMALL_STATE(6196)] = 309633, - [SMALL_STATE(6197)] = 309657, - [SMALL_STATE(6198)] = 309683, - [SMALL_STATE(6199)] = 309707, - [SMALL_STATE(6200)] = 309731, - [SMALL_STATE(6201)] = 309755, - [SMALL_STATE(6202)] = 309777, - [SMALL_STATE(6203)] = 309801, - [SMALL_STATE(6204)] = 309825, + [SMALL_STATE(6195)] = 309607, + [SMALL_STATE(6196)] = 309629, + [SMALL_STATE(6197)] = 309653, + [SMALL_STATE(6198)] = 309679, + [SMALL_STATE(6199)] = 309703, + [SMALL_STATE(6200)] = 309727, + [SMALL_STATE(6201)] = 309751, + [SMALL_STATE(6202)] = 309773, + [SMALL_STATE(6203)] = 309797, + [SMALL_STATE(6204)] = 309823, [SMALL_STATE(6205)] = 309847, [SMALL_STATE(6206)] = 309862, - [SMALL_STATE(6207)] = 309877, - [SMALL_STATE(6208)] = 309892, - [SMALL_STATE(6209)] = 309909, + [SMALL_STATE(6207)] = 309875, + [SMALL_STATE(6208)] = 309890, + [SMALL_STATE(6209)] = 309911, [SMALL_STATE(6210)] = 309924, - [SMALL_STATE(6211)] = 309939, - [SMALL_STATE(6212)] = 309954, - [SMALL_STATE(6213)] = 309969, - [SMALL_STATE(6214)] = 309990, - [SMALL_STATE(6215)] = 310005, - [SMALL_STATE(6216)] = 310018, + [SMALL_STATE(6211)] = 309937, + [SMALL_STATE(6212)] = 309950, + [SMALL_STATE(6213)] = 309965, + [SMALL_STATE(6214)] = 309986, + [SMALL_STATE(6215)] = 310003, + [SMALL_STATE(6216)] = 310016, [SMALL_STATE(6217)] = 310031, [SMALL_STATE(6218)] = 310046, [SMALL_STATE(6219)] = 310063, - [SMALL_STATE(6220)] = 310084, - [SMALL_STATE(6221)] = 310105, - [SMALL_STATE(6222)] = 310120, - [SMALL_STATE(6223)] = 310135, - [SMALL_STATE(6224)] = 310156, - [SMALL_STATE(6225)] = 310171, - [SMALL_STATE(6226)] = 310186, - [SMALL_STATE(6227)] = 310201, - [SMALL_STATE(6228)] = 310214, - [SMALL_STATE(6229)] = 310227, - [SMALL_STATE(6230)] = 310240, - [SMALL_STATE(6231)] = 310255, - [SMALL_STATE(6232)] = 310270, - [SMALL_STATE(6233)] = 310285, - [SMALL_STATE(6234)] = 310300, - [SMALL_STATE(6235)] = 310313, - [SMALL_STATE(6236)] = 310328, - [SMALL_STATE(6237)] = 310343, - [SMALL_STATE(6238)] = 310358, - [SMALL_STATE(6239)] = 310373, - [SMALL_STATE(6240)] = 310388, - [SMALL_STATE(6241)] = 310407, - [SMALL_STATE(6242)] = 310422, - [SMALL_STATE(6243)] = 310437, - [SMALL_STATE(6244)] = 310452, - [SMALL_STATE(6245)] = 310467, - [SMALL_STATE(6246)] = 310480, + [SMALL_STATE(6220)] = 310078, + [SMALL_STATE(6221)] = 310099, + [SMALL_STATE(6222)] = 310114, + [SMALL_STATE(6223)] = 310127, + [SMALL_STATE(6224)] = 310142, + [SMALL_STATE(6225)] = 310157, + [SMALL_STATE(6226)] = 310172, + [SMALL_STATE(6227)] = 310193, + [SMALL_STATE(6228)] = 310208, + [SMALL_STATE(6229)] = 310223, + [SMALL_STATE(6230)] = 310238, + [SMALL_STATE(6231)] = 310253, + [SMALL_STATE(6232)] = 310268, + [SMALL_STATE(6233)] = 310283, + [SMALL_STATE(6234)] = 310298, + [SMALL_STATE(6235)] = 310311, + [SMALL_STATE(6236)] = 310326, + [SMALL_STATE(6237)] = 310341, + [SMALL_STATE(6238)] = 310356, + [SMALL_STATE(6239)] = 310371, + [SMALL_STATE(6240)] = 310386, + [SMALL_STATE(6241)] = 310401, + [SMALL_STATE(6242)] = 310420, + [SMALL_STATE(6243)] = 310435, + [SMALL_STATE(6244)] = 310450, + [SMALL_STATE(6245)] = 310465, + [SMALL_STATE(6246)] = 310478, [SMALL_STATE(6247)] = 310493, [SMALL_STATE(6248)] = 310506, [SMALL_STATE(6249)] = 310526, [SMALL_STATE(6250)] = 310546, [SMALL_STATE(6251)] = 310566, - [SMALL_STATE(6252)] = 310586, - [SMALL_STATE(6253)] = 310606, - [SMALL_STATE(6254)] = 310626, - [SMALL_STATE(6255)] = 310646, - [SMALL_STATE(6256)] = 310666, + [SMALL_STATE(6252)] = 310580, + [SMALL_STATE(6253)] = 310600, + [SMALL_STATE(6254)] = 310620, + [SMALL_STATE(6255)] = 310640, + [SMALL_STATE(6256)] = 310660, [SMALL_STATE(6257)] = 310680, [SMALL_STATE(6258)] = 310700, [SMALL_STATE(6259)] = 310714, - [SMALL_STATE(6260)] = 310728, - [SMALL_STATE(6261)] = 310742, - [SMALL_STATE(6262)] = 310756, - [SMALL_STATE(6263)] = 310770, - [SMALL_STATE(6264)] = 310790, - [SMALL_STATE(6265)] = 310804, - [SMALL_STATE(6266)] = 310824, - [SMALL_STATE(6267)] = 310838, - [SMALL_STATE(6268)] = 310852, - [SMALL_STATE(6269)] = 310866, - [SMALL_STATE(6270)] = 310886, - [SMALL_STATE(6271)] = 310906, - [SMALL_STATE(6272)] = 310926, - [SMALL_STATE(6273)] = 310946, - [SMALL_STATE(6274)] = 310966, - [SMALL_STATE(6275)] = 310986, - [SMALL_STATE(6276)] = 311000, - [SMALL_STATE(6277)] = 311020, - [SMALL_STATE(6278)] = 311040, - [SMALL_STATE(6279)] = 311060, - [SMALL_STATE(6280)] = 311074, - [SMALL_STATE(6281)] = 311094, - [SMALL_STATE(6282)] = 311114, - [SMALL_STATE(6283)] = 311134, - [SMALL_STATE(6284)] = 311154, - [SMALL_STATE(6285)] = 311174, - [SMALL_STATE(6286)] = 311194, - [SMALL_STATE(6287)] = 311214, - [SMALL_STATE(6288)] = 311228, - [SMALL_STATE(6289)] = 311248, - [SMALL_STATE(6290)] = 311268, - [SMALL_STATE(6291)] = 311288, - [SMALL_STATE(6292)] = 311308, - [SMALL_STATE(6293)] = 311328, - [SMALL_STATE(6294)] = 311342, - [SMALL_STATE(6295)] = 311362, - [SMALL_STATE(6296)] = 311382, - [SMALL_STATE(6297)] = 311402, - [SMALL_STATE(6298)] = 311422, - [SMALL_STATE(6299)] = 311442, - [SMALL_STATE(6300)] = 311456, - [SMALL_STATE(6301)] = 311476, - [SMALL_STATE(6302)] = 311490, - [SMALL_STATE(6303)] = 311510, - [SMALL_STATE(6304)] = 311530, - [SMALL_STATE(6305)] = 311544, - [SMALL_STATE(6306)] = 311564, - [SMALL_STATE(6307)] = 311578, - [SMALL_STATE(6308)] = 311598, - [SMALL_STATE(6309)] = 311618, - [SMALL_STATE(6310)] = 311638, - [SMALL_STATE(6311)] = 311658, - [SMALL_STATE(6312)] = 311678, - [SMALL_STATE(6313)] = 311698, - [SMALL_STATE(6314)] = 311718, - [SMALL_STATE(6315)] = 311738, - [SMALL_STATE(6316)] = 311758, - [SMALL_STATE(6317)] = 311778, - [SMALL_STATE(6318)] = 311792, - [SMALL_STATE(6319)] = 311812, - [SMALL_STATE(6320)] = 311832, - [SMALL_STATE(6321)] = 311852, - [SMALL_STATE(6322)] = 311872, - [SMALL_STATE(6323)] = 311892, - [SMALL_STATE(6324)] = 311912, - [SMALL_STATE(6325)] = 311932, - [SMALL_STATE(6326)] = 311952, - [SMALL_STATE(6327)] = 311968, - [SMALL_STATE(6328)] = 311988, - [SMALL_STATE(6329)] = 312008, - [SMALL_STATE(6330)] = 312028, - [SMALL_STATE(6331)] = 312048, - [SMALL_STATE(6332)] = 312068, - [SMALL_STATE(6333)] = 312088, - [SMALL_STATE(6334)] = 312108, - [SMALL_STATE(6335)] = 312128, - [SMALL_STATE(6336)] = 312148, - [SMALL_STATE(6337)] = 312168, - [SMALL_STATE(6338)] = 312188, - [SMALL_STATE(6339)] = 312208, - [SMALL_STATE(6340)] = 312228, - [SMALL_STATE(6341)] = 312248, - [SMALL_STATE(6342)] = 312268, - [SMALL_STATE(6343)] = 312288, - [SMALL_STATE(6344)] = 312308, - [SMALL_STATE(6345)] = 312322, - [SMALL_STATE(6346)] = 312342, - [SMALL_STATE(6347)] = 312362, - [SMALL_STATE(6348)] = 312382, - [SMALL_STATE(6349)] = 312402, - [SMALL_STATE(6350)] = 312422, - [SMALL_STATE(6351)] = 312442, - [SMALL_STATE(6352)] = 312462, - [SMALL_STATE(6353)] = 312482, - [SMALL_STATE(6354)] = 312502, - [SMALL_STATE(6355)] = 312522, - [SMALL_STATE(6356)] = 312542, - [SMALL_STATE(6357)] = 312562, - [SMALL_STATE(6358)] = 312582, - [SMALL_STATE(6359)] = 312602, - [SMALL_STATE(6360)] = 312622, - [SMALL_STATE(6361)] = 312642, - [SMALL_STATE(6362)] = 312656, - [SMALL_STATE(6363)] = 312676, - [SMALL_STATE(6364)] = 312696, - [SMALL_STATE(6365)] = 312716, + [SMALL_STATE(6260)] = 310734, + [SMALL_STATE(6261)] = 310754, + [SMALL_STATE(6262)] = 310768, + [SMALL_STATE(6263)] = 310788, + [SMALL_STATE(6264)] = 310808, + [SMALL_STATE(6265)] = 310828, + [SMALL_STATE(6266)] = 310848, + [SMALL_STATE(6267)] = 310868, + [SMALL_STATE(6268)] = 310888, + [SMALL_STATE(6269)] = 310908, + [SMALL_STATE(6270)] = 310928, + [SMALL_STATE(6271)] = 310948, + [SMALL_STATE(6272)] = 310968, + [SMALL_STATE(6273)] = 310988, + [SMALL_STATE(6274)] = 311002, + [SMALL_STATE(6275)] = 311022, + [SMALL_STATE(6276)] = 311042, + [SMALL_STATE(6277)] = 311062, + [SMALL_STATE(6278)] = 311082, + [SMALL_STATE(6279)] = 311102, + [SMALL_STATE(6280)] = 311122, + [SMALL_STATE(6281)] = 311142, + [SMALL_STATE(6282)] = 311156, + [SMALL_STATE(6283)] = 311176, + [SMALL_STATE(6284)] = 311196, + [SMALL_STATE(6285)] = 311210, + [SMALL_STATE(6286)] = 311230, + [SMALL_STATE(6287)] = 311250, + [SMALL_STATE(6288)] = 311264, + [SMALL_STATE(6289)] = 311284, + [SMALL_STATE(6290)] = 311304, + [SMALL_STATE(6291)] = 311318, + [SMALL_STATE(6292)] = 311338, + [SMALL_STATE(6293)] = 311358, + [SMALL_STATE(6294)] = 311378, + [SMALL_STATE(6295)] = 311392, + [SMALL_STATE(6296)] = 311406, + [SMALL_STATE(6297)] = 311426, + [SMALL_STATE(6298)] = 311446, + [SMALL_STATE(6299)] = 311466, + [SMALL_STATE(6300)] = 311486, + [SMALL_STATE(6301)] = 311500, + [SMALL_STATE(6302)] = 311520, + [SMALL_STATE(6303)] = 311540, + [SMALL_STATE(6304)] = 311554, + [SMALL_STATE(6305)] = 311574, + [SMALL_STATE(6306)] = 311594, + [SMALL_STATE(6307)] = 311614, + [SMALL_STATE(6308)] = 311634, + [SMALL_STATE(6309)] = 311654, + [SMALL_STATE(6310)] = 311668, + [SMALL_STATE(6311)] = 311688, + [SMALL_STATE(6312)] = 311708, + [SMALL_STATE(6313)] = 311728, + [SMALL_STATE(6314)] = 311748, + [SMALL_STATE(6315)] = 311768, + [SMALL_STATE(6316)] = 311788, + [SMALL_STATE(6317)] = 311808, + [SMALL_STATE(6318)] = 311828, + [SMALL_STATE(6319)] = 311848, + [SMALL_STATE(6320)] = 311868, + [SMALL_STATE(6321)] = 311888, + [SMALL_STATE(6322)] = 311908, + [SMALL_STATE(6323)] = 311922, + [SMALL_STATE(6324)] = 311942, + [SMALL_STATE(6325)] = 311962, + [SMALL_STATE(6326)] = 311982, + [SMALL_STATE(6327)] = 312002, + [SMALL_STATE(6328)] = 312022, + [SMALL_STATE(6329)] = 312042, + [SMALL_STATE(6330)] = 312062, + [SMALL_STATE(6331)] = 312082, + [SMALL_STATE(6332)] = 312102, + [SMALL_STATE(6333)] = 312122, + [SMALL_STATE(6334)] = 312142, + [SMALL_STATE(6335)] = 312162, + [SMALL_STATE(6336)] = 312182, + [SMALL_STATE(6337)] = 312202, + [SMALL_STATE(6338)] = 312218, + [SMALL_STATE(6339)] = 312232, + [SMALL_STATE(6340)] = 312252, + [SMALL_STATE(6341)] = 312272, + [SMALL_STATE(6342)] = 312292, + [SMALL_STATE(6343)] = 312312, + [SMALL_STATE(6344)] = 312332, + [SMALL_STATE(6345)] = 312352, + [SMALL_STATE(6346)] = 312372, + [SMALL_STATE(6347)] = 312392, + [SMALL_STATE(6348)] = 312406, + [SMALL_STATE(6349)] = 312426, + [SMALL_STATE(6350)] = 312446, + [SMALL_STATE(6351)] = 312466, + [SMALL_STATE(6352)] = 312486, + [SMALL_STATE(6353)] = 312500, + [SMALL_STATE(6354)] = 312520, + [SMALL_STATE(6355)] = 312534, + [SMALL_STATE(6356)] = 312554, + [SMALL_STATE(6357)] = 312574, + [SMALL_STATE(6358)] = 312594, + [SMALL_STATE(6359)] = 312614, + [SMALL_STATE(6360)] = 312634, + [SMALL_STATE(6361)] = 312648, + [SMALL_STATE(6362)] = 312662, + [SMALL_STATE(6363)] = 312682, + [SMALL_STATE(6364)] = 312702, + [SMALL_STATE(6365)] = 312722, [SMALL_STATE(6366)] = 312736, [SMALL_STATE(6367)] = 312756, [SMALL_STATE(6368)] = 312776, - [SMALL_STATE(6369)] = 312795, - [SMALL_STATE(6370)] = 312814, + [SMALL_STATE(6369)] = 312793, + [SMALL_STATE(6370)] = 312808, [SMALL_STATE(6371)] = 312827, - [SMALL_STATE(6372)] = 312846, - [SMALL_STATE(6373)] = 312863, - [SMALL_STATE(6374)] = 312880, - [SMALL_STATE(6375)] = 312895, - [SMALL_STATE(6376)] = 312912, - [SMALL_STATE(6377)] = 312927, - [SMALL_STATE(6378)] = 312946, - [SMALL_STATE(6379)] = 312965, - [SMALL_STATE(6380)] = 312982, - [SMALL_STATE(6381)] = 312999, - [SMALL_STATE(6382)] = 313014, - [SMALL_STATE(6383)] = 313031, - [SMALL_STATE(6384)] = 313050, - [SMALL_STATE(6385)] = 313067, - [SMALL_STATE(6386)] = 313086, - [SMALL_STATE(6387)] = 313105, - [SMALL_STATE(6388)] = 313124, - [SMALL_STATE(6389)] = 313137, - [SMALL_STATE(6390)] = 313152, - [SMALL_STATE(6391)] = 313167, - [SMALL_STATE(6392)] = 313184, - [SMALL_STATE(6393)] = 313203, - [SMALL_STATE(6394)] = 313218, - [SMALL_STATE(6395)] = 313233, - [SMALL_STATE(6396)] = 313250, - [SMALL_STATE(6397)] = 313269, - [SMALL_STATE(6398)] = 313286, - [SMALL_STATE(6399)] = 313305, - [SMALL_STATE(6400)] = 313322, - [SMALL_STATE(6401)] = 313337, - [SMALL_STATE(6402)] = 313356, - [SMALL_STATE(6403)] = 313371, - [SMALL_STATE(6404)] = 313384, - [SMALL_STATE(6405)] = 313401, - [SMALL_STATE(6406)] = 313420, - [SMALL_STATE(6407)] = 313437, - [SMALL_STATE(6408)] = 313450, - [SMALL_STATE(6409)] = 313465, - [SMALL_STATE(6410)] = 313484, - [SMALL_STATE(6411)] = 313501, - [SMALL_STATE(6412)] = 313518, - [SMALL_STATE(6413)] = 313537, - [SMALL_STATE(6414)] = 313552, - [SMALL_STATE(6415)] = 313569, - [SMALL_STATE(6416)] = 313588, - [SMALL_STATE(6417)] = 313605, - [SMALL_STATE(6418)] = 313624, - [SMALL_STATE(6419)] = 313641, - [SMALL_STATE(6420)] = 313656, - [SMALL_STATE(6421)] = 313671, - [SMALL_STATE(6422)] = 313690, - [SMALL_STATE(6423)] = 313709, - [SMALL_STATE(6424)] = 313726, - [SMALL_STATE(6425)] = 313741, - [SMALL_STATE(6426)] = 313758, - [SMALL_STATE(6427)] = 313777, - [SMALL_STATE(6428)] = 313794, - [SMALL_STATE(6429)] = 313809, - [SMALL_STATE(6430)] = 313826, - [SMALL_STATE(6431)] = 313845, - [SMALL_STATE(6432)] = 313864, - [SMALL_STATE(6433)] = 313883, - [SMALL_STATE(6434)] = 313902, - [SMALL_STATE(6435)] = 313919, - [SMALL_STATE(6436)] = 313930, - [SMALL_STATE(6437)] = 313941, - [SMALL_STATE(6438)] = 313960, - [SMALL_STATE(6439)] = 313971, - [SMALL_STATE(6440)] = 313988, - [SMALL_STATE(6441)] = 314007, - [SMALL_STATE(6442)] = 314026, - [SMALL_STATE(6443)] = 314043, - [SMALL_STATE(6444)] = 314058, - [SMALL_STATE(6445)] = 314077, - [SMALL_STATE(6446)] = 314094, - [SMALL_STATE(6447)] = 314113, - [SMALL_STATE(6448)] = 314130, - [SMALL_STATE(6449)] = 314145, - [SMALL_STATE(6450)] = 314162, - [SMALL_STATE(6451)] = 314179, - [SMALL_STATE(6452)] = 314196, - [SMALL_STATE(6453)] = 314213, - [SMALL_STATE(6454)] = 314230, - [SMALL_STATE(6455)] = 314247, - [SMALL_STATE(6456)] = 314264, - [SMALL_STATE(6457)] = 314283, - [SMALL_STATE(6458)] = 314302, - [SMALL_STATE(6459)] = 314319, - [SMALL_STATE(6460)] = 314338, - [SMALL_STATE(6461)] = 314353, - [SMALL_STATE(6462)] = 314372, - [SMALL_STATE(6463)] = 314391, - [SMALL_STATE(6464)] = 314408, - [SMALL_STATE(6465)] = 314427, - [SMALL_STATE(6466)] = 314442, - [SMALL_STATE(6467)] = 314459, - [SMALL_STATE(6468)] = 314476, - [SMALL_STATE(6469)] = 314495, - [SMALL_STATE(6470)] = 314510, - [SMALL_STATE(6471)] = 314523, - [SMALL_STATE(6472)] = 314538, - [SMALL_STATE(6473)] = 314553, - [SMALL_STATE(6474)] = 314570, - [SMALL_STATE(6475)] = 314585, - [SMALL_STATE(6476)] = 314600, - [SMALL_STATE(6477)] = 314615, - [SMALL_STATE(6478)] = 314630, + [SMALL_STATE(6372)] = 312840, + [SMALL_STATE(6373)] = 312859, + [SMALL_STATE(6374)] = 312874, + [SMALL_STATE(6375)] = 312889, + [SMALL_STATE(6376)] = 312906, + [SMALL_STATE(6377)] = 312923, + [SMALL_STATE(6378)] = 312940, + [SMALL_STATE(6379)] = 312959, + [SMALL_STATE(6380)] = 312978, + [SMALL_STATE(6381)] = 312993, + [SMALL_STATE(6382)] = 313006, + [SMALL_STATE(6383)] = 313025, + [SMALL_STATE(6384)] = 313040, + [SMALL_STATE(6385)] = 313059, + [SMALL_STATE(6386)] = 313076, + [SMALL_STATE(6387)] = 313091, + [SMALL_STATE(6388)] = 313108, + [SMALL_STATE(6389)] = 313125, + [SMALL_STATE(6390)] = 313144, + [SMALL_STATE(6391)] = 313159, + [SMALL_STATE(6392)] = 313178, + [SMALL_STATE(6393)] = 313195, + [SMALL_STATE(6394)] = 313212, + [SMALL_STATE(6395)] = 313229, + [SMALL_STATE(6396)] = 313248, + [SMALL_STATE(6397)] = 313265, + [SMALL_STATE(6398)] = 313280, + [SMALL_STATE(6399)] = 313297, + [SMALL_STATE(6400)] = 313308, + [SMALL_STATE(6401)] = 313323, + [SMALL_STATE(6402)] = 313338, + [SMALL_STATE(6403)] = 313355, + [SMALL_STATE(6404)] = 313372, + [SMALL_STATE(6405)] = 313389, + [SMALL_STATE(6406)] = 313404, + [SMALL_STATE(6407)] = 313421, + [SMALL_STATE(6408)] = 313438, + [SMALL_STATE(6409)] = 313457, + [SMALL_STATE(6410)] = 313474, + [SMALL_STATE(6411)] = 313493, + [SMALL_STATE(6412)] = 313508, + [SMALL_STATE(6413)] = 313527, + [SMALL_STATE(6414)] = 313546, + [SMALL_STATE(6415)] = 313561, + [SMALL_STATE(6416)] = 313578, + [SMALL_STATE(6417)] = 313597, + [SMALL_STATE(6418)] = 313614, + [SMALL_STATE(6419)] = 313631, + [SMALL_STATE(6420)] = 313648, + [SMALL_STATE(6421)] = 313663, + [SMALL_STATE(6422)] = 313678, + [SMALL_STATE(6423)] = 313693, + [SMALL_STATE(6424)] = 313710, + [SMALL_STATE(6425)] = 313723, + [SMALL_STATE(6426)] = 313738, + [SMALL_STATE(6427)] = 313749, + [SMALL_STATE(6428)] = 313768, + [SMALL_STATE(6429)] = 313783, + [SMALL_STATE(6430)] = 313802, + [SMALL_STATE(6431)] = 313819, + [SMALL_STATE(6432)] = 313834, + [SMALL_STATE(6433)] = 313849, + [SMALL_STATE(6434)] = 313866, + [SMALL_STATE(6435)] = 313885, + [SMALL_STATE(6436)] = 313904, + [SMALL_STATE(6437)] = 313915, + [SMALL_STATE(6438)] = 313934, + [SMALL_STATE(6439)] = 313953, + [SMALL_STATE(6440)] = 313972, + [SMALL_STATE(6441)] = 313991, + [SMALL_STATE(6442)] = 314010, + [SMALL_STATE(6443)] = 314027, + [SMALL_STATE(6444)] = 314046, + [SMALL_STATE(6445)] = 314061, + [SMALL_STATE(6446)] = 314080, + [SMALL_STATE(6447)] = 314097, + [SMALL_STATE(6448)] = 314116, + [SMALL_STATE(6449)] = 314135, + [SMALL_STATE(6450)] = 314154, + [SMALL_STATE(6451)] = 314171, + [SMALL_STATE(6452)] = 314190, + [SMALL_STATE(6453)] = 314203, + [SMALL_STATE(6454)] = 314218, + [SMALL_STATE(6455)] = 314237, + [SMALL_STATE(6456)] = 314256, + [SMALL_STATE(6457)] = 314273, + [SMALL_STATE(6458)] = 314288, + [SMALL_STATE(6459)] = 314305, + [SMALL_STATE(6460)] = 314324, + [SMALL_STATE(6461)] = 314339, + [SMALL_STATE(6462)] = 314358, + [SMALL_STATE(6463)] = 314375, + [SMALL_STATE(6464)] = 314392, + [SMALL_STATE(6465)] = 314411, + [SMALL_STATE(6466)] = 314426, + [SMALL_STATE(6467)] = 314443, + [SMALL_STATE(6468)] = 314460, + [SMALL_STATE(6469)] = 314475, + [SMALL_STATE(6470)] = 314492, + [SMALL_STATE(6471)] = 314509, + [SMALL_STATE(6472)] = 314528, + [SMALL_STATE(6473)] = 314547, + [SMALL_STATE(6474)] = 314564, + [SMALL_STATE(6475)] = 314581, + [SMALL_STATE(6476)] = 314596, + [SMALL_STATE(6477)] = 314613, + [SMALL_STATE(6478)] = 314632, [SMALL_STATE(6479)] = 314645, [SMALL_STATE(6480)] = 314664, [SMALL_STATE(6481)] = 314674, - [SMALL_STATE(6482)] = 314686, - [SMALL_STATE(6483)] = 314702, - [SMALL_STATE(6484)] = 314712, - [SMALL_STATE(6485)] = 314722, - [SMALL_STATE(6486)] = 314732, - [SMALL_STATE(6487)] = 314742, - [SMALL_STATE(6488)] = 314752, - [SMALL_STATE(6489)] = 314768, - [SMALL_STATE(6490)] = 314778, - [SMALL_STATE(6491)] = 314788, + [SMALL_STATE(6482)] = 314690, + [SMALL_STATE(6483)] = 314700, + [SMALL_STATE(6484)] = 314710, + [SMALL_STATE(6485)] = 314720, + [SMALL_STATE(6486)] = 314734, + [SMALL_STATE(6487)] = 314748, + [SMALL_STATE(6488)] = 314758, + [SMALL_STATE(6489)] = 314774, + [SMALL_STATE(6490)] = 314784, + [SMALL_STATE(6491)] = 314794, [SMALL_STATE(6492)] = 314804, - [SMALL_STATE(6493)] = 314820, - [SMALL_STATE(6494)] = 314832, - [SMALL_STATE(6495)] = 314842, - [SMALL_STATE(6496)] = 314858, - [SMALL_STATE(6497)] = 314874, - [SMALL_STATE(6498)] = 314884, - [SMALL_STATE(6499)] = 314898, + [SMALL_STATE(6493)] = 314814, + [SMALL_STATE(6494)] = 314824, + [SMALL_STATE(6495)] = 314840, + [SMALL_STATE(6496)] = 314850, + [SMALL_STATE(6497)] = 314866, + [SMALL_STATE(6498)] = 314882, + [SMALL_STATE(6499)] = 314892, [SMALL_STATE(6500)] = 314908, - [SMALL_STATE(6501)] = 314922, - [SMALL_STATE(6502)] = 314938, - [SMALL_STATE(6503)] = 314948, - [SMALL_STATE(6504)] = 314958, - [SMALL_STATE(6505)] = 314968, - [SMALL_STATE(6506)] = 314978, - [SMALL_STATE(6507)] = 314988, - [SMALL_STATE(6508)] = 314998, - [SMALL_STATE(6509)] = 315014, - [SMALL_STATE(6510)] = 315024, - [SMALL_STATE(6511)] = 315034, - [SMALL_STATE(6512)] = 315050, - [SMALL_STATE(6513)] = 315066, - [SMALL_STATE(6514)] = 315076, - [SMALL_STATE(6515)] = 315086, - [SMALL_STATE(6516)] = 315096, - [SMALL_STATE(6517)] = 315106, - [SMALL_STATE(6518)] = 315116, - [SMALL_STATE(6519)] = 315126, - [SMALL_STATE(6520)] = 315136, - [SMALL_STATE(6521)] = 315146, - [SMALL_STATE(6522)] = 315162, - [SMALL_STATE(6523)] = 315172, - [SMALL_STATE(6524)] = 315182, - [SMALL_STATE(6525)] = 315198, - [SMALL_STATE(6526)] = 315208, - [SMALL_STATE(6527)] = 315218, - [SMALL_STATE(6528)] = 315228, - [SMALL_STATE(6529)] = 315238, - [SMALL_STATE(6530)] = 315248, - [SMALL_STATE(6531)] = 315264, - [SMALL_STATE(6532)] = 315276, - [SMALL_STATE(6533)] = 315286, - [SMALL_STATE(6534)] = 315300, - [SMALL_STATE(6535)] = 315310, - [SMALL_STATE(6536)] = 315320, - [SMALL_STATE(6537)] = 315334, - [SMALL_STATE(6538)] = 315344, - [SMALL_STATE(6539)] = 315354, - [SMALL_STATE(6540)] = 315368, - [SMALL_STATE(6541)] = 315378, - [SMALL_STATE(6542)] = 315392, - [SMALL_STATE(6543)] = 315408, - [SMALL_STATE(6544)] = 315422, - [SMALL_STATE(6545)] = 315438, + [SMALL_STATE(6501)] = 314918, + [SMALL_STATE(6502)] = 314928, + [SMALL_STATE(6503)] = 314942, + [SMALL_STATE(6504)] = 314954, + [SMALL_STATE(6505)] = 314964, + [SMALL_STATE(6506)] = 314974, + [SMALL_STATE(6507)] = 314984, + [SMALL_STATE(6508)] = 314994, + [SMALL_STATE(6509)] = 315010, + [SMALL_STATE(6510)] = 315020, + [SMALL_STATE(6511)] = 315030, + [SMALL_STATE(6512)] = 315046, + [SMALL_STATE(6513)] = 315056, + [SMALL_STATE(6514)] = 315066, + [SMALL_STATE(6515)] = 315082, + [SMALL_STATE(6516)] = 315098, + [SMALL_STATE(6517)] = 315108, + [SMALL_STATE(6518)] = 315118, + [SMALL_STATE(6519)] = 315128, + [SMALL_STATE(6520)] = 315138, + [SMALL_STATE(6521)] = 315148, + [SMALL_STATE(6522)] = 315160, + [SMALL_STATE(6523)] = 315176, + [SMALL_STATE(6524)] = 315192, + [SMALL_STATE(6525)] = 315206, + [SMALL_STATE(6526)] = 315216, + [SMALL_STATE(6527)] = 315232, + [SMALL_STATE(6528)] = 315246, + [SMALL_STATE(6529)] = 315260, + [SMALL_STATE(6530)] = 315270, + [SMALL_STATE(6531)] = 315286, + [SMALL_STATE(6532)] = 315296, + [SMALL_STATE(6533)] = 315306, + [SMALL_STATE(6534)] = 315316, + [SMALL_STATE(6535)] = 315328, + [SMALL_STATE(6536)] = 315338, + [SMALL_STATE(6537)] = 315348, + [SMALL_STATE(6538)] = 315362, + [SMALL_STATE(6539)] = 315372, + [SMALL_STATE(6540)] = 315382, + [SMALL_STATE(6541)] = 315392, + [SMALL_STATE(6542)] = 315406, + [SMALL_STATE(6543)] = 315416, + [SMALL_STATE(6544)] = 315426, + [SMALL_STATE(6545)] = 315442, [SMALL_STATE(6546)] = 315452, [SMALL_STATE(6547)] = 315462, - [SMALL_STATE(6548)] = 315473, - [SMALL_STATE(6549)] = 315486, - [SMALL_STATE(6550)] = 315497, - [SMALL_STATE(6551)] = 315510, - [SMALL_STATE(6552)] = 315523, - [SMALL_STATE(6553)] = 315536, - [SMALL_STATE(6554)] = 315549, - [SMALL_STATE(6555)] = 315558, - [SMALL_STATE(6556)] = 315567, - [SMALL_STATE(6557)] = 315576, - [SMALL_STATE(6558)] = 315585, - [SMALL_STATE(6559)] = 315598, - [SMALL_STATE(6560)] = 315611, - [SMALL_STATE(6561)] = 315622, - [SMALL_STATE(6562)] = 315631, - [SMALL_STATE(6563)] = 315644, - [SMALL_STATE(6564)] = 315653, - [SMALL_STATE(6565)] = 315662, - [SMALL_STATE(6566)] = 315675, - [SMALL_STATE(6567)] = 315688, - [SMALL_STATE(6568)] = 315701, - [SMALL_STATE(6569)] = 315714, - [SMALL_STATE(6570)] = 315727, - [SMALL_STATE(6571)] = 315740, - [SMALL_STATE(6572)] = 315749, - [SMALL_STATE(6573)] = 315762, - [SMALL_STATE(6574)] = 315771, - [SMALL_STATE(6575)] = 315784, - [SMALL_STATE(6576)] = 315795, - [SMALL_STATE(6577)] = 315808, - [SMALL_STATE(6578)] = 315821, - [SMALL_STATE(6579)] = 315832, - [SMALL_STATE(6580)] = 315845, - [SMALL_STATE(6581)] = 315858, - [SMALL_STATE(6582)] = 315867, - [SMALL_STATE(6583)] = 315880, - [SMALL_STATE(6584)] = 315891, - [SMALL_STATE(6585)] = 315904, - [SMALL_STATE(6586)] = 315915, - [SMALL_STATE(6587)] = 315928, - [SMALL_STATE(6588)] = 315941, - [SMALL_STATE(6589)] = 315954, - [SMALL_STATE(6590)] = 315967, - [SMALL_STATE(6591)] = 315980, - [SMALL_STATE(6592)] = 315993, - [SMALL_STATE(6593)] = 316006, - [SMALL_STATE(6594)] = 316019, - [SMALL_STATE(6595)] = 316032, - [SMALL_STATE(6596)] = 316045, - [SMALL_STATE(6597)] = 316058, - [SMALL_STATE(6598)] = 316071, - [SMALL_STATE(6599)] = 316084, - [SMALL_STATE(6600)] = 316097, - [SMALL_STATE(6601)] = 316110, - [SMALL_STATE(6602)] = 316123, - [SMALL_STATE(6603)] = 316136, - [SMALL_STATE(6604)] = 316147, - [SMALL_STATE(6605)] = 316158, - [SMALL_STATE(6606)] = 316171, - [SMALL_STATE(6607)] = 316184, - [SMALL_STATE(6608)] = 316197, - [SMALL_STATE(6609)] = 316210, - [SMALL_STATE(6610)] = 316221, - [SMALL_STATE(6611)] = 316232, - [SMALL_STATE(6612)] = 316243, - [SMALL_STATE(6613)] = 316256, - [SMALL_STATE(6614)] = 316269, - [SMALL_STATE(6615)] = 316282, - [SMALL_STATE(6616)] = 316291, - [SMALL_STATE(6617)] = 316302, - [SMALL_STATE(6618)] = 316315, - [SMALL_STATE(6619)] = 316328, - [SMALL_STATE(6620)] = 316339, - [SMALL_STATE(6621)] = 316352, - [SMALL_STATE(6622)] = 316365, - [SMALL_STATE(6623)] = 316378, - [SMALL_STATE(6624)] = 316391, - [SMALL_STATE(6625)] = 316404, - [SMALL_STATE(6626)] = 316417, - [SMALL_STATE(6627)] = 316430, - [SMALL_STATE(6628)] = 316443, - [SMALL_STATE(6629)] = 316454, - [SMALL_STATE(6630)] = 316467, - [SMALL_STATE(6631)] = 316480, - [SMALL_STATE(6632)] = 316491, - [SMALL_STATE(6633)] = 316504, - [SMALL_STATE(6634)] = 316517, - [SMALL_STATE(6635)] = 316528, - [SMALL_STATE(6636)] = 316537, - [SMALL_STATE(6637)] = 316548, - [SMALL_STATE(6638)] = 316561, - [SMALL_STATE(6639)] = 316572, - [SMALL_STATE(6640)] = 316585, - [SMALL_STATE(6641)] = 316598, - [SMALL_STATE(6642)] = 316609, - [SMALL_STATE(6643)] = 316622, - [SMALL_STATE(6644)] = 316635, - [SMALL_STATE(6645)] = 316648, - [SMALL_STATE(6646)] = 316657, - [SMALL_STATE(6647)] = 316670, - [SMALL_STATE(6648)] = 316683, - [SMALL_STATE(6649)] = 316696, - [SMALL_STATE(6650)] = 316707, - [SMALL_STATE(6651)] = 316720, - [SMALL_STATE(6652)] = 316731, - [SMALL_STATE(6653)] = 316744, - [SMALL_STATE(6654)] = 316757, - [SMALL_STATE(6655)] = 316770, - [SMALL_STATE(6656)] = 316783, - [SMALL_STATE(6657)] = 316796, - [SMALL_STATE(6658)] = 316809, - [SMALL_STATE(6659)] = 316822, - [SMALL_STATE(6660)] = 316835, - [SMALL_STATE(6661)] = 316848, - [SMALL_STATE(6662)] = 316861, - [SMALL_STATE(6663)] = 316872, - [SMALL_STATE(6664)] = 316881, - [SMALL_STATE(6665)] = 316892, - [SMALL_STATE(6666)] = 316905, - [SMALL_STATE(6667)] = 316916, - [SMALL_STATE(6668)] = 316929, - [SMALL_STATE(6669)] = 316940, - [SMALL_STATE(6670)] = 316953, - [SMALL_STATE(6671)] = 316966, - [SMALL_STATE(6672)] = 316979, - [SMALL_STATE(6673)] = 316990, - [SMALL_STATE(6674)] = 317001, - [SMALL_STATE(6675)] = 317014, - [SMALL_STATE(6676)] = 317027, - [SMALL_STATE(6677)] = 317040, - [SMALL_STATE(6678)] = 317051, - [SMALL_STATE(6679)] = 317064, - [SMALL_STATE(6680)] = 317077, - [SMALL_STATE(6681)] = 317090, - [SMALL_STATE(6682)] = 317103, - [SMALL_STATE(6683)] = 317116, - [SMALL_STATE(6684)] = 317129, - [SMALL_STATE(6685)] = 317142, - [SMALL_STATE(6686)] = 317155, - [SMALL_STATE(6687)] = 317166, - [SMALL_STATE(6688)] = 317179, - [SMALL_STATE(6689)] = 317192, - [SMALL_STATE(6690)] = 317205, - [SMALL_STATE(6691)] = 317218, - [SMALL_STATE(6692)] = 317231, - [SMALL_STATE(6693)] = 317244, - [SMALL_STATE(6694)] = 317257, - [SMALL_STATE(6695)] = 317270, - [SMALL_STATE(6696)] = 317283, - [SMALL_STATE(6697)] = 317294, - [SMALL_STATE(6698)] = 317307, - [SMALL_STATE(6699)] = 317320, - [SMALL_STATE(6700)] = 317333, - [SMALL_STATE(6701)] = 317346, - [SMALL_STATE(6702)] = 317359, - [SMALL_STATE(6703)] = 317372, - [SMALL_STATE(6704)] = 317385, - [SMALL_STATE(6705)] = 317396, - [SMALL_STATE(6706)] = 317407, - [SMALL_STATE(6707)] = 317420, - [SMALL_STATE(6708)] = 317433, - [SMALL_STATE(6709)] = 317446, - [SMALL_STATE(6710)] = 317459, - [SMALL_STATE(6711)] = 317472, - [SMALL_STATE(6712)] = 317485, - [SMALL_STATE(6713)] = 317498, - [SMALL_STATE(6714)] = 317511, - [SMALL_STATE(6715)] = 317524, - [SMALL_STATE(6716)] = 317537, - [SMALL_STATE(6717)] = 317550, - [SMALL_STATE(6718)] = 317561, - [SMALL_STATE(6719)] = 317574, - [SMALL_STATE(6720)] = 317587, - [SMALL_STATE(6721)] = 317600, - [SMALL_STATE(6722)] = 317613, + [SMALL_STATE(6548)] = 315475, + [SMALL_STATE(6549)] = 315488, + [SMALL_STATE(6550)] = 315501, + [SMALL_STATE(6551)] = 315514, + [SMALL_STATE(6552)] = 315527, + [SMALL_STATE(6553)] = 315540, + [SMALL_STATE(6554)] = 315553, + [SMALL_STATE(6555)] = 315566, + [SMALL_STATE(6556)] = 315579, + [SMALL_STATE(6557)] = 315592, + [SMALL_STATE(6558)] = 315605, + [SMALL_STATE(6559)] = 315618, + [SMALL_STATE(6560)] = 315631, + [SMALL_STATE(6561)] = 315644, + [SMALL_STATE(6562)] = 315657, + [SMALL_STATE(6563)] = 315670, + [SMALL_STATE(6564)] = 315681, + [SMALL_STATE(6565)] = 315694, + [SMALL_STATE(6566)] = 315707, + [SMALL_STATE(6567)] = 315720, + [SMALL_STATE(6568)] = 315733, + [SMALL_STATE(6569)] = 315746, + [SMALL_STATE(6570)] = 315759, + [SMALL_STATE(6571)] = 315770, + [SMALL_STATE(6572)] = 315783, + [SMALL_STATE(6573)] = 315796, + [SMALL_STATE(6574)] = 315809, + [SMALL_STATE(6575)] = 315822, + [SMALL_STATE(6576)] = 315835, + [SMALL_STATE(6577)] = 315848, + [SMALL_STATE(6578)] = 315861, + [SMALL_STATE(6579)] = 315874, + [SMALL_STATE(6580)] = 315887, + [SMALL_STATE(6581)] = 315898, + [SMALL_STATE(6582)] = 315911, + [SMALL_STATE(6583)] = 315924, + [SMALL_STATE(6584)] = 315937, + [SMALL_STATE(6585)] = 315950, + [SMALL_STATE(6586)] = 315963, + [SMALL_STATE(6587)] = 315972, + [SMALL_STATE(6588)] = 315985, + [SMALL_STATE(6589)] = 315998, + [SMALL_STATE(6590)] = 316009, + [SMALL_STATE(6591)] = 316022, + [SMALL_STATE(6592)] = 316033, + [SMALL_STATE(6593)] = 316046, + [SMALL_STATE(6594)] = 316059, + [SMALL_STATE(6595)] = 316072, + [SMALL_STATE(6596)] = 316083, + [SMALL_STATE(6597)] = 316094, + [SMALL_STATE(6598)] = 316105, + [SMALL_STATE(6599)] = 316118, + [SMALL_STATE(6600)] = 316131, + [SMALL_STATE(6601)] = 316142, + [SMALL_STATE(6602)] = 316153, + [SMALL_STATE(6603)] = 316164, + [SMALL_STATE(6604)] = 316177, + [SMALL_STATE(6605)] = 316188, + [SMALL_STATE(6606)] = 316201, + [SMALL_STATE(6607)] = 316212, + [SMALL_STATE(6608)] = 316223, + [SMALL_STATE(6609)] = 316234, + [SMALL_STATE(6610)] = 316247, + [SMALL_STATE(6611)] = 316258, + [SMALL_STATE(6612)] = 316269, + [SMALL_STATE(6613)] = 316280, + [SMALL_STATE(6614)] = 316293, + [SMALL_STATE(6615)] = 316306, + [SMALL_STATE(6616)] = 316319, + [SMALL_STATE(6617)] = 316330, + [SMALL_STATE(6618)] = 316343, + [SMALL_STATE(6619)] = 316354, + [SMALL_STATE(6620)] = 316365, + [SMALL_STATE(6621)] = 316378, + [SMALL_STATE(6622)] = 316387, + [SMALL_STATE(6623)] = 316400, + [SMALL_STATE(6624)] = 316411, + [SMALL_STATE(6625)] = 316424, + [SMALL_STATE(6626)] = 316435, + [SMALL_STATE(6627)] = 316448, + [SMALL_STATE(6628)] = 316461, + [SMALL_STATE(6629)] = 316474, + [SMALL_STATE(6630)] = 316483, + [SMALL_STATE(6631)] = 316492, + [SMALL_STATE(6632)] = 316505, + [SMALL_STATE(6633)] = 316518, + [SMALL_STATE(6634)] = 316531, + [SMALL_STATE(6635)] = 316542, + [SMALL_STATE(6636)] = 316555, + [SMALL_STATE(6637)] = 316568, + [SMALL_STATE(6638)] = 316581, + [SMALL_STATE(6639)] = 316594, + [SMALL_STATE(6640)] = 316605, + [SMALL_STATE(6641)] = 316618, + [SMALL_STATE(6642)] = 316631, + [SMALL_STATE(6643)] = 316640, + [SMALL_STATE(6644)] = 316653, + [SMALL_STATE(6645)] = 316666, + [SMALL_STATE(6646)] = 316679, + [SMALL_STATE(6647)] = 316692, + [SMALL_STATE(6648)] = 316705, + [SMALL_STATE(6649)] = 316718, + [SMALL_STATE(6650)] = 316731, + [SMALL_STATE(6651)] = 316744, + [SMALL_STATE(6652)] = 316757, + [SMALL_STATE(6653)] = 316770, + [SMALL_STATE(6654)] = 316779, + [SMALL_STATE(6655)] = 316792, + [SMALL_STATE(6656)] = 316805, + [SMALL_STATE(6657)] = 316818, + [SMALL_STATE(6658)] = 316827, + [SMALL_STATE(6659)] = 316838, + [SMALL_STATE(6660)] = 316851, + [SMALL_STATE(6661)] = 316864, + [SMALL_STATE(6662)] = 316875, + [SMALL_STATE(6663)] = 316888, + [SMALL_STATE(6664)] = 316899, + [SMALL_STATE(6665)] = 316912, + [SMALL_STATE(6666)] = 316925, + [SMALL_STATE(6667)] = 316938, + [SMALL_STATE(6668)] = 316951, + [SMALL_STATE(6669)] = 316964, + [SMALL_STATE(6670)] = 316977, + [SMALL_STATE(6671)] = 316990, + [SMALL_STATE(6672)] = 317003, + [SMALL_STATE(6673)] = 317012, + [SMALL_STATE(6674)] = 317021, + [SMALL_STATE(6675)] = 317034, + [SMALL_STATE(6676)] = 317043, + [SMALL_STATE(6677)] = 317056, + [SMALL_STATE(6678)] = 317069, + [SMALL_STATE(6679)] = 317082, + [SMALL_STATE(6680)] = 317095, + [SMALL_STATE(6681)] = 317106, + [SMALL_STATE(6682)] = 317119, + [SMALL_STATE(6683)] = 317132, + [SMALL_STATE(6684)] = 317145, + [SMALL_STATE(6685)] = 317158, + [SMALL_STATE(6686)] = 317171, + [SMALL_STATE(6687)] = 317184, + [SMALL_STATE(6688)] = 317197, + [SMALL_STATE(6689)] = 317210, + [SMALL_STATE(6690)] = 317223, + [SMALL_STATE(6691)] = 317236, + [SMALL_STATE(6692)] = 317249, + [SMALL_STATE(6693)] = 317258, + [SMALL_STATE(6694)] = 317271, + [SMALL_STATE(6695)] = 317284, + [SMALL_STATE(6696)] = 317297, + [SMALL_STATE(6697)] = 317310, + [SMALL_STATE(6698)] = 317319, + [SMALL_STATE(6699)] = 317332, + [SMALL_STATE(6700)] = 317341, + [SMALL_STATE(6701)] = 317354, + [SMALL_STATE(6702)] = 317365, + [SMALL_STATE(6703)] = 317374, + [SMALL_STATE(6704)] = 317387, + [SMALL_STATE(6705)] = 317400, + [SMALL_STATE(6706)] = 317413, + [SMALL_STATE(6707)] = 317426, + [SMALL_STATE(6708)] = 317439, + [SMALL_STATE(6709)] = 317452, + [SMALL_STATE(6710)] = 317465, + [SMALL_STATE(6711)] = 317478, + [SMALL_STATE(6712)] = 317491, + [SMALL_STATE(6713)] = 317504, + [SMALL_STATE(6714)] = 317517, + [SMALL_STATE(6715)] = 317530, + [SMALL_STATE(6716)] = 317541, + [SMALL_STATE(6717)] = 317554, + [SMALL_STATE(6718)] = 317567, + [SMALL_STATE(6719)] = 317580, + [SMALL_STATE(6720)] = 317591, + [SMALL_STATE(6721)] = 317604, + [SMALL_STATE(6722)] = 317615, [SMALL_STATE(6723)] = 317626, [SMALL_STATE(6724)] = 317639, [SMALL_STATE(6725)] = 317652, [SMALL_STATE(6726)] = 317665, - [SMALL_STATE(6727)] = 317673, - [SMALL_STATE(6728)] = 317681, - [SMALL_STATE(6729)] = 317689, - [SMALL_STATE(6730)] = 317699, + [SMALL_STATE(6727)] = 317675, + [SMALL_STATE(6728)] = 317685, + [SMALL_STATE(6729)] = 317693, + [SMALL_STATE(6730)] = 317701, [SMALL_STATE(6731)] = 317709, [SMALL_STATE(6732)] = 317717, [SMALL_STATE(6733)] = 317727, [SMALL_STATE(6734)] = 317735, [SMALL_STATE(6735)] = 317743, - [SMALL_STATE(6736)] = 317751, - [SMALL_STATE(6737)] = 317759, - [SMALL_STATE(6738)] = 317767, - [SMALL_STATE(6739)] = 317775, - [SMALL_STATE(6740)] = 317783, - [SMALL_STATE(6741)] = 317791, - [SMALL_STATE(6742)] = 317799, - [SMALL_STATE(6743)] = 317807, - [SMALL_STATE(6744)] = 317817, - [SMALL_STATE(6745)] = 317827, - [SMALL_STATE(6746)] = 317837, - [SMALL_STATE(6747)] = 317845, - [SMALL_STATE(6748)] = 317855, - [SMALL_STATE(6749)] = 317865, - [SMALL_STATE(6750)] = 317875, - [SMALL_STATE(6751)] = 317883, - [SMALL_STATE(6752)] = 317891, - [SMALL_STATE(6753)] = 317901, - [SMALL_STATE(6754)] = 317909, - [SMALL_STATE(6755)] = 317917, - [SMALL_STATE(6756)] = 317927, - [SMALL_STATE(6757)] = 317935, - [SMALL_STATE(6758)] = 317943, - [SMALL_STATE(6759)] = 317951, - [SMALL_STATE(6760)] = 317959, - [SMALL_STATE(6761)] = 317967, - [SMALL_STATE(6762)] = 317975, - [SMALL_STATE(6763)] = 317983, - [SMALL_STATE(6764)] = 317993, - [SMALL_STATE(6765)] = 318003, - [SMALL_STATE(6766)] = 318011, - [SMALL_STATE(6767)] = 318019, - [SMALL_STATE(6768)] = 318027, - [SMALL_STATE(6769)] = 318035, - [SMALL_STATE(6770)] = 318043, - [SMALL_STATE(6771)] = 318053, - [SMALL_STATE(6772)] = 318061, - [SMALL_STATE(6773)] = 318069, - [SMALL_STATE(6774)] = 318077, - [SMALL_STATE(6775)] = 318085, - [SMALL_STATE(6776)] = 318093, - [SMALL_STATE(6777)] = 318101, - [SMALL_STATE(6778)] = 318111, - [SMALL_STATE(6779)] = 318119, - [SMALL_STATE(6780)] = 318129, - [SMALL_STATE(6781)] = 318139, - [SMALL_STATE(6782)] = 318147, - [SMALL_STATE(6783)] = 318157, - [SMALL_STATE(6784)] = 318167, - [SMALL_STATE(6785)] = 318177, - [SMALL_STATE(6786)] = 318187, - [SMALL_STATE(6787)] = 318195, - [SMALL_STATE(6788)] = 318205, - [SMALL_STATE(6789)] = 318215, + [SMALL_STATE(6736)] = 317753, + [SMALL_STATE(6737)] = 317761, + [SMALL_STATE(6738)] = 317769, + [SMALL_STATE(6739)] = 317779, + [SMALL_STATE(6740)] = 317789, + [SMALL_STATE(6741)] = 317797, + [SMALL_STATE(6742)] = 317807, + [SMALL_STATE(6743)] = 317817, + [SMALL_STATE(6744)] = 317825, + [SMALL_STATE(6745)] = 317833, + [SMALL_STATE(6746)] = 317841, + [SMALL_STATE(6747)] = 317849, + [SMALL_STATE(6748)] = 317859, + [SMALL_STATE(6749)] = 317867, + [SMALL_STATE(6750)] = 317877, + [SMALL_STATE(6751)] = 317885, + [SMALL_STATE(6752)] = 317895, + [SMALL_STATE(6753)] = 317903, + [SMALL_STATE(6754)] = 317913, + [SMALL_STATE(6755)] = 317923, + [SMALL_STATE(6756)] = 317933, + [SMALL_STATE(6757)] = 317941, + [SMALL_STATE(6758)] = 317949, + [SMALL_STATE(6759)] = 317957, + [SMALL_STATE(6760)] = 317965, + [SMALL_STATE(6761)] = 317973, + [SMALL_STATE(6762)] = 317981, + [SMALL_STATE(6763)] = 317989, + [SMALL_STATE(6764)] = 317997, + [SMALL_STATE(6765)] = 318007, + [SMALL_STATE(6766)] = 318015, + [SMALL_STATE(6767)] = 318023, + [SMALL_STATE(6768)] = 318031, + [SMALL_STATE(6769)] = 318041, + [SMALL_STATE(6770)] = 318049, + [SMALL_STATE(6771)] = 318057, + [SMALL_STATE(6772)] = 318065, + [SMALL_STATE(6773)] = 318075, + [SMALL_STATE(6774)] = 318083, + [SMALL_STATE(6775)] = 318091, + [SMALL_STATE(6776)] = 318101, + [SMALL_STATE(6777)] = 318111, + [SMALL_STATE(6778)] = 318121, + [SMALL_STATE(6779)] = 318129, + [SMALL_STATE(6780)] = 318137, + [SMALL_STATE(6781)] = 318147, + [SMALL_STATE(6782)] = 318155, + [SMALL_STATE(6783)] = 318165, + [SMALL_STATE(6784)] = 318173, + [SMALL_STATE(6785)] = 318181, + [SMALL_STATE(6786)] = 318189, + [SMALL_STATE(6787)] = 318199, + [SMALL_STATE(6788)] = 318207, + [SMALL_STATE(6789)] = 318217, [SMALL_STATE(6790)] = 318225, - [SMALL_STATE(6791)] = 318233, + [SMALL_STATE(6791)] = 318235, [SMALL_STATE(6792)] = 318243, [SMALL_STATE(6793)] = 318250, [SMALL_STATE(6794)] = 318257, @@ -350781,7728 +351082,7728 @@ static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6777), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7604), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7516), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0, 0, 0), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6751), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7076), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7297), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6358), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5870), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6297), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6575), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7607), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6639), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7019), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7268), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6290), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6549), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7267), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5902), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6343), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6142), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6701), [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7622), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6752), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7265), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7621), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6739), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7264), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7068), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5915), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6308), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6157), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7610), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), - [241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1, .production_id = 1), - [243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), - [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, .production_id = 1), REDUCE(sym__expression, 1, .production_id = 1), - [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4208), - [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), - [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5974), - [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5718), - [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6271), - [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4732), - [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1, .production_id = 1), - [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7615), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), - [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7392), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), - [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5968), - [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), - [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6359), - [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), - [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6616), - [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5567), - [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4950), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), - [356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_command_name, 1, .production_id = 1), REDUCE(sym__expression, 1, .production_id = 1), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6307), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7614), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5024), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5564), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6729), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7389), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), - [423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 112), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5247), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6970), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6024), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5840), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6269), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6156), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6547), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7646), - [483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 46), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), - [489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 83), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5144), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), - [503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 79), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5132), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), - [511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 109), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5145), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), - [531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, .production_id = 60), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), - [537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 45), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), - [543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, .production_id = 59), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), - [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(1080), - [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(6777), - [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(7604), - [564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(659), - [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(3678), - [570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(3678), - [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(240), - [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(432), - [579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), - [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(428), - [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(4078), - [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(7392), - [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(154), - [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(623), - [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(4), - [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(1730), - [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(602), - [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(718), - [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(759), - [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(4030), - [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(4154), - [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(4155), - [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(5968), - [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(1105), - [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(5849), - [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(1078), - [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(1085), - [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(6359), - [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(4814), - [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(148), - [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(150), - [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(151), - [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(152), - [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(6148), - [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(6616), - [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(1077), - [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), SHIFT_REPEAT(7608), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6785), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7479), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4189), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7372), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5918), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6262), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6570), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7609), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), + [241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 1), + [243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 1), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 1), REDUCE(sym__expression, 1, 0, 1), + [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), + [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), + [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6013), + [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5769), + [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6321), + [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4791), + [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1, 0, 1), + [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7614), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 1), + [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_command_name, 1, 0, 1), REDUCE(sym__expression, 1, 0, 1), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5986), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6254), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7613), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7391), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6017), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6271), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7607), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5608), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5026), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5585), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6726), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7388), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), + [423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, 0, 59), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5212), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7522), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5879), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6331), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7645), + [481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, 0, 60), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5127), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 79), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), + [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 45), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5148), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), + [501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 46), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5144), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 83), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5247), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), + [527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 109), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5136), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), + [535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 112), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5194), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5138), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), + [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1142), + [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(6751), + [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(7076), + [564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(702), + [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(3691), + [570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(3691), + [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(84), + [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(427), + [579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), + [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(425), + [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(4143), + [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(7391), + [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(70), + [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(649), + [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(4), + [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1783), + [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(601), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(749), + [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(775), + [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(3998), + [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(4024), + [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(4025), + [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(6017), + [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1151), + [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(5837), + [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1010), + [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1063), + [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(6271), + [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(4697), + [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(116), + [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(117), + [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(118), + [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(119), + [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(6145), + [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(6721), + [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1138), + [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(7607), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6772), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7478), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5261), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6894), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6355), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6142), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7659), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5326), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5335), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5340), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5320), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5332), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), - [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4), - [763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 3), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), - [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6162), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6163), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7482), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5547), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5615), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5676), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4844), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4712), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4976), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5008), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4953), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5042), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5049), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4875), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4905), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), - [873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 1), - [875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4856), - [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), - [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1080), - [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(6777), - [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(7604), - [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(659), - [901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3678), - [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3678), - [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(240), - [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(432), - [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(428), - [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4078), - [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(7392), - [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(154), - [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(623), - [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4), - [931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1730), - [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(602), - [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(718), - [940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(759), - [943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4030), - [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4154), - [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4155), - [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(5968), - [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1105), - [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(5849), - [961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1078), - [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1085), - [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(6359), - [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4814), - [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(148), - [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(150), - [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(151), - [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(152), - [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(6148), - [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(6616), - [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1077), - [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(7608), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7511), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6717), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5865), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5290), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6863), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6056), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6269), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7658), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5260), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5283), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5282), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5287), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5310), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5292), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), + [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 3, 0, 0), + [763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 0), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6160), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7481), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), + [819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4950), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5000), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4631), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5595), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5611), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5661), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5620), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4769), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4952), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4977), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4958), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5022), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5101), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5102), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 1, 0, 0), + [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1142), + [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(6751), + [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(7076), + [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(702), + [901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3691), + [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3691), + [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(84), + [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(427), + [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(425), + [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(4143), + [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(7391), + [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(70), + [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(649), + [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(4), + [931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1783), + [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(601), + [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(749), + [940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(775), + [943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3998), + [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(4024), + [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(4025), + [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(6017), + [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1151), + [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(5837), + [961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1010), + [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1063), + [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(6271), + [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(4697), + [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(116), + [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(117), + [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(118), + [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(119), + [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(6145), + [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(6721), + [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1138), + [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(7607), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7510), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5942), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6335), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7626), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5900), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6273), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7597), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7625), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6066), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6292), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7596), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6658), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5800), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4, .production_id = 1), - [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4, .production_id = 1), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5734), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3702), - [1258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3702), - [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 1), - [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 1), - [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2, .production_id = 1), - [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2, .production_id = 1), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1), - [1273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [1275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1), REDUCE(sym__expression, 1), - [1278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1), SHIFT(7273), - [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1), - [1283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_command_name, 1), REDUCE(sym__expression, 1), - [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2), - [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 4), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 4), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_process_substitution, 3), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_substitution, 3), - [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_expression, 5), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_expression, 5), - [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_substitution, 3, .production_id = 35), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_substitution, 3, .production_id = 35), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_substitution, 3), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_substitution, 3), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3, .production_id = 31), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3, .production_id = 31), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 1), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 1), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, .production_id = 10), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, .production_id = 10), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 2), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 2), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 3), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 3), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 2), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 2), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2, .production_id = 11), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2, .production_id = 11), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_translated_string, 2), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translated_string, 2), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 4), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 4), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2), - [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), - [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), - [1366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(495), - [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [1371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1), SHIFT(7064), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [1378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3921), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [1383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(525), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, .production_id = 2), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, .production_id = 2), - [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), - [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), - [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), - [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5817), - [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6354), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7654), - [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .production_id = 19), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .production_id = 19), - [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), - [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), - [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), - [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), - [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6254), - [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4675), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7664), - [1480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(874), - [1483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(3749), - [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), - [1488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(3660), - [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), - [1493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(3799), - [1496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(3748), - [1499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(5958), - [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(834), - [1505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(5817), - [1508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(987), - [1511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(6354), - [1514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(4693), - [1517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(335), - [1520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(334), - [1523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(333), - [1526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(414), - [1529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(6813), - [1532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(876), - [1535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1182), - [1538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(7654), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5997), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5729), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6350), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4641), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7619), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), - [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5884), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5746), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6309), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7613), - [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, .production_id = 39), - [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, .production_id = 39), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .production_id = 18), - [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .production_id = 18), - [1629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(985), - [1632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(3809), - [1635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(3620), - [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(3832), - [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(3812), - [1644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(6070), - [1647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(969), - [1650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(5788), - [1653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1155), - [1656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(6254), - [1659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(4675), - [1662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(305), - [1665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(304), - [1668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(303), - [1671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(372), - [1674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(6805), - [1677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1003), - [1680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1328), - [1683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(7664), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), - [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [1696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1067), - [1699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3755), - [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [1706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3754), - [1709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(5924), - [1712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1092), - [1715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(5823), - [1718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1235), - [1721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(6282), - [1724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4703), - [1727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(348), - [1730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(347), - [1733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(346), - [1736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(285), - [1739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(546), - [1742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(6673), - [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1068), - [1748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(7652), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), - [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 1), - [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 1), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6282), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4703), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6673), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7652), - [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5804), - [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 2), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 2), - [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5849), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5757), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6085), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5793), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6285), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6628), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7662), - [1859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1023), - [1862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(4184), - [1865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(3686), - [1868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(3725), - [1871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(4183), - [1874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(5997), - [1877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1091), - [1880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(5729), - [1883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1268), - [1886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(6350), - [1889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(4641), - [1892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(249), - [1895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(251), - [1898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(253), - [1901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(223), - [1904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(7063), - [1907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1021), - [1910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1716), - [1913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(7619), - [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [1918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1171), - [1921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3741), - [1924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3742), - [1927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(6085), - [1930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1266), - [1933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(5793), - [1936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1469), - [1939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(6285), - [1942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4677), - [1945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(311), - [1948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(310), - [1951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(309), - [1954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(381), - [1957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(565), - [1960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(6628), - [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1170), - [1966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(7662), - [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [1975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1093), - [1978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(4211), - [1981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(3695), - [1984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(3787), - [1987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(4212), - [1990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(5884), - [1993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1144), - [1996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(5746), - [1999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1272), - [2002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(6309), - [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(4841), - [2008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(205), - [2011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(206), - [2014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(207), - [2017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(189), - [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(7344), - [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1094), - [2026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1521), - [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(7613), - [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), - [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), - [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), - [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5722), - [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6321), - [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4765), - [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6704), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7611), - [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, .production_id = 21), - [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, .production_id = 21), - [2076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1219), - [2079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(3682), - [2082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(4052), - [2085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1174), - [2088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(6955), - [2091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1203), - [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, .production_id = 8), - [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, .production_id = 8), - [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [2100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1322), - [2103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4200), - [2106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4204), - [2109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(6034), - [2112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1460), - [2115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(5722), - [2118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1580), - [2121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(6321), - [2124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4765), - [2127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(174), - [2130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(175), - [2133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(176), - [2136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(177), - [2139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(577), - [2142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(6704), - [2145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1318), - [2148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(7611), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [2157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1360), - [2160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4196), - [2163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4195), - [2166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(6071), - [2169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1356), - [2172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(5758), - [2175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1571), - [2178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(6343), - [2181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4649), - [2184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(236), - [2187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(238), - [2190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(241), - [2193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(214), - [2196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(581), - [2199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(6603), - [2202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1362), - [2205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(7617), - [2208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1158), - [2211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3764), - [2214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), - [2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), - [2218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3759), - [2221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5908), - [2224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1089), - [2227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5825), - [2230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1232), - [2233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6255), - [2236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4707), - [2239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(360), - [2242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(358), - [2245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(352), - [2248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(273), - [2251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1163), - [2254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7651), - [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4196), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), - [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6071), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5758), - [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6343), - [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), - [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6603), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7617), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), - [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 1), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 1), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5940), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5819), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6324), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4696), - [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7653), - [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), - [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), - [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6012), - [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5809), - [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6305), - [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4682), - [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7657), - [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6560), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [2369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1290), - [2372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3724), - [2375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3722), - [2378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6012), - [2381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1234), - [2384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5809), - [2387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1406), - [2390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6305), - [2393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4682), - [2396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(326), - [2399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(325), - [2402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(324), - [2405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(401), - [2408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1291), - [2411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7657), - [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), - [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), - [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), - [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [2434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1190), - [2437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3753), - [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), - [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), - [2444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3751), - [2447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(5940), - [2450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1226), - [2453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(5819), - [2456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1478), - [2459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(6324), - [2462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4696), - [2465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(344), - [2468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(343), - [2471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(338), - [2474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(357), - [2477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(598), - [2480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1191), - [2483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(7653), - [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 1), - [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 1), - [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, .production_id = 4), - [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, .production_id = 4), - [2502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1269), - [2505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3729), - [2508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3730), - [2511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6084), - [2514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1264), - [2517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5796), - [2520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1393), - [2523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6311), - [2526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4678), - [2529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(314), - [2532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(313), - [2535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(312), - [2538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(385), - [2541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1270), - [2544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7661), - [2547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1602), - [2550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1665), - [2553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(612), - [2556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(6560), - [2559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(1481), - [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 2), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 2), - [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), - [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), - [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6044), - [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5777), - [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6274), - [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), - [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), - [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), - [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), - [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), - [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5814), - [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6272), - [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), - [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7655), - [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6014), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6342), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), - [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7625), - [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [2670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1394), - [2673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3849), - [2676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3850), - [2679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6044), - [2682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1468), - [2685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5777), - [2688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1616), - [2691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6274), - [2694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4661), - [2697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(292), - [2700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(291), - [2703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(288), - [2706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(349), - [2709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1307), - [2712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7667), - [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), - [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), - [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 2), - [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 2), - [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 3), - [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 3), - [2729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1370), - [2732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4202), - [2735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4201), - [2738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6038), - [2741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1445), - [2744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5764), - [2747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1702), - [2750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6292), - [2753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4694), - [2756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(229), - [2759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(230), - [2762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(231), - [2765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(204), - [2768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1372), - [2771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7616), - [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), - [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), - [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), - [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5791), - [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6251), - [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4676), - [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7663), - [2812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1381), - [2815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3744), - [2818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3743), - [2821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5976), - [2824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1308), - [2827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5814), - [2830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1515), - [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6272), - [2836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4690), - [2839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(332), - [2842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(331), - [2845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(330), - [2848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(409), - [2851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1388), - [2854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7655), - [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), - [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), - [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), - [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6030), - [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), - [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5807), - [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), - [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6341), - [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), - [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7658), - [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [2889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1326), - [2892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3786), - [2895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3789), - [2898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(6078), - [2901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1369), - [2904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(5791), - [2907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1496), - [2910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(6251), - [2913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4676), - [2916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(308), - [2919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(307), - [2922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(306), - [2925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(377), - [2928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(633), - [2931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1325), - [2934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(7663), - [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), - [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5796), - [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [2973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1399), - [2976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4062), - [2979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4063), - [2982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5930), - [2985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1405), - [2988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5772), - [2991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1605), - [2994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6367), - [2997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4660), - [3000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(128), - [3003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(129), - [3006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(130), - [3009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(132), - [3012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1407), - [3015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7605), - [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4310), - [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), - [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6035), - [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), - [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5775), - [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), - [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6248), - [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4658), - [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7668), - [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [3066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1526), - [3069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3817), - [3072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3820), - [3075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6061), - [3078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1725), - [3081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5784), - [3084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1782), - [3087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6252), - [3090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4672), - [3093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(302), - [3096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(301), - [3099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(300), - [3102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(368), - [3105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1524), - [3108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7665), - [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), - [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5720), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [3127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1681), - [3130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4205), - [3133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4206), - [3136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(6007), - [3139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1597), - [3142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(5735), - [3145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1726), - [3148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(6297), - [3151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4728), - [3154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(180), - [3157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(181), - [3160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(184), - [3163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(185), - [3166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(664), - [3169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1696), - [3172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(7612), - [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4331), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), - [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), - [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6047), - [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5736), - [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6257), - [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), - [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7618), - [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), - [3227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1711), - [3230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3995), - [3233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3994), - [3236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6039), - [3239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1710), - [3242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5720), - [3245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1790), - [3248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6357), - [3251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4851), - [3254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(124), - [3257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(126), - [3260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(127), - [3263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(375), - [3266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1708), - [3269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7634), - [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), - [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5764), - [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [3288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1630), - [3291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4047), - [3294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4037), - [3297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6051), - [3300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1675), - [3303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5783), - [3306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1896), - [3309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6351), - [3312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4843), - [3315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(69), - [3318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(73), - [3321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(75), - [3324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(339), - [3327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1632), - [3330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7629), - [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), - [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), - [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6061), - [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6252), - [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4672), - [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7665), - [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), - [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), - [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), - [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5994), - [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), - [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), - [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), - [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6284), - [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), - [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7656), - [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), - [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), - [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6039), - [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6357), - [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4851), - [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7634), - [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), - [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5772), - [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), - [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), - [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6007), - [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5735), - [3441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6297), - [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), - [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7612), - [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), - [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), - [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), - [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6051), - [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6351), - [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4843), - [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7629), - [3499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1794), - [3502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(3697), - [3505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(4138), - [3508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1823), - [3511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(6848), - [3514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(1795), - [3517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1688), - [3520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1662), - [3523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1575), - [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), - [3530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1650), - [3533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4193), - [3536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4192), - [3539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(6047), - [3542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1705), - [3545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(5736), - [3548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1788), - [3551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(6257), - [3554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4624), - [3557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(243), - [3560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(244), - [3563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(245), - [3566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(219), - [3569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(709), - [3572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1647), - [3575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(7618), - [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), - [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), - [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), - [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), - [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), - [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6060), - [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6333), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4854), - [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7633), - [3634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1918), - [3637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1786), - [3640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1922), - [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [3649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), - [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), - [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), - [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6053), - [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), - [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), - [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4706), - [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6263), - [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), - [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7666), - [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5721), - [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), - [3711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5062), - [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), - [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), - [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), - [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), - [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), - [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6005), - [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5034), - [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5741), - [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4837), - [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6352), - [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4857), - [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7632), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6406), - [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), - [3761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1902), - [3764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1915), - [3767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(731), - [3770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(1903), - [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5822), - [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), - [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), - [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), - [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5981), - [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), - [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5723), - [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4395), - [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6288), - [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4845), - [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7630), - [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), - [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4518), - [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), - [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), - [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [3831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1839), - [3834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4000), - [3837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3997), - [3840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6060), - [3843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1832), - [3846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5733), - [3849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2116), - [3852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6333), - [3855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4854), - [3858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(116), - [3861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(119), - [3864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(121), - [3867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(182), - [3870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1843), - [3873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7633), - [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), - [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), - [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5926), - [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6348), - [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4819), - [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7627), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6466), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6411), - [3908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2330), - [3911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2342), - [3914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(746), - [3917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(6696), - [3920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2331), - [3923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1846), - [3926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4061), - [3929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4054), - [3932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5926), - [3935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1916), - [3938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5721), - [3941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1946), - [3944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6348), - [3947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4819), - [3950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(374), - [3953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(410), - [3956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(247), - [3959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(272), - [3962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1845), - [3965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7627), - [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [3978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(2211), - [3981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(4082), - [3984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(3672), - [3987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(3715), - [3990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(4079), - [3993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(6014), - [3996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(2033), - [3999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(5780), - [4002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(2211), - [4005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(2268), - [4008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(6342), - [4011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(4779), - [4014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(340), - [4017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(341), - [4020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(342), - [4023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(258), - [4026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(6889), - [4029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(2203), - [4032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(2558), - [4035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 38), SHIFT_REPEAT(7625), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6452), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), - [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), - [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), - [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), - [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6397), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6447), - [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), - [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), - [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4828), - [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), - [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), - [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5956), - [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), - [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5727), - [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), - [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6276), - [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), - [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7628), - [4104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1968), - [4107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2074), - [4110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1972), - [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5780), - [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), - [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), - [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4479), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), - [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4834), - [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), - [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4838), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), - [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), - [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), - [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6298), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), - [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7623), - [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), - [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [4189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2419), - [4192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4114), - [4195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4112), - [4198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(5894), - [4201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2373), - [4204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(5754), - [4207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2419), - [4210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2469), - [4213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(6298), - [4216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(4730), - [4219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(278), - [4222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(136), - [4225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(289), - [4228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(248), - [4231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(803), - [4234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(6636), - [4237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2395), - [4240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(7623), - [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), - [4247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1), - [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [4253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_not_pipeline, 1), - [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7487), - [4257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 1), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), - [4263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(6662), - [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [4274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2337), - [4277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2302), - [4280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2340), - [4283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1), SHIFT(6956), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [4290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2271), - [4293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4164), - [4296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4144), - [4299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5923), - [4302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2298), - [4305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5730), - [4308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2271), - [4311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2420), - [4314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6316), - [4317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4691), - [4320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(261), - [4323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(262), - [4326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(263), - [4329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(235), - [4332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2309), - [4335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7621), - [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [4342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3881), - [4345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3881), - [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_not_pipeline, 1), - [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), - [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4774), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), - [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4901), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), - [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4640), - [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), - [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4627), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), - [4370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2), - [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2), - [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7514), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [4386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(6619), - [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), - [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), - [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [4403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3940), - [4406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3940), - [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [4415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2369), - [4418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3983), - [4421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3982), - [4424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5950), - [4427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2396), - [4430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5725), - [4433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2369), - [4436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2507), - [4439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6313), - [4442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4839), - [4445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(140), - [4448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(141), - [4451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(142), - [4454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(88), - [4457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2371), - [4460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7636), - [4463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), - [4465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 37), - [4467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2, .production_id = 10), - [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2, .production_id = 10), - [4471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2422), - [4474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2389), - [4477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2431), - [4480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 36), - [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 36), - [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), - [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5883), - [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), - [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6349), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), - [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7639), - [4530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 17), - [4532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 17), - [4534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2367), - [4537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2386), - [4540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(875), - [4543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2365), - [4546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 16), - [4548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 16), - [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [4552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, .production_id = 4), - [4554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, .production_id = 4), - [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5779), - [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [4564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, .production_id = 23), - [4566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, .production_id = 23), - [4568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1), SHIFT(6890), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [4575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3896), - [4578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3896), - [4581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2438), - [4584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3945), - [4587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3944), - [4590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5883), - [4593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2356), - [4596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5779), - [4599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2438), - [4602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2560), - [4605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6349), - [4608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4826), - [4611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(178), - [4614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(183), - [4617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(191), - [4620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(115), - [4623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2437), - [4626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7639), - [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5876), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6320), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), - [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7649), - [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), - [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5724), - [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [4669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1), SHIFT(7352), - [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5135), - [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), - [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5133), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), - [4686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 1), - [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7349), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [4696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(6668), - [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), - [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [4713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2487), - [4716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3797), - [4719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3793), - [4722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5876), - [4725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2458), - [4728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5832), - [4731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2487), - [4734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2651), - [4737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6320), - [4740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4729), - [4743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(376), - [4746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(61), - [4749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(373), - [4752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(250), - [4755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2493), - [4758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7649), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5870), - [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5064), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), - [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5327), - [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6295), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), - [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), - [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), - [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5743), - [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), - [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [4811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(6578), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [4822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5879), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), - [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6277), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), - [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7624), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [4852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1052), - [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), - [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5832), - [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [4865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5725), - [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), - [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [4879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3707), - [4882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3707), - [4885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2489), - [4888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3978), - [4891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3977), - [4894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5936), - [4897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2460), - [4900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5743), - [4903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2489), - [4906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2604), - [4909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6283), - [4912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4836), - [4915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(147), - [4918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(156), - [4921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(157), - [4924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(100), - [4927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2490), - [4930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7637), - [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [4937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3947), - [4940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3947), - [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5936), - [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [4957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), - [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6283), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), - [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7637), - [4975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [4977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), - [4983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2572), - [4986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2480), - [4989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2578), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [4994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2539), - [4997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4103), - [5000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4101), - [5003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(5879), - [5006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2453), - [5009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(5769), - [5012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2539), - [5015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2667), - [5018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(6277), - [5021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(4751), - [5024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(296), - [5027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(297), - [5030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(336), - [5033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(254), - [5036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(979), - [5039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2538), - [5042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(7624), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [5049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [5053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(4027), - [5056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(4027), - [5059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), - [5061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5769), - [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [5067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, .production_id = 25), - [5069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, .production_id = 25), + [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4, 0, 1), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5797), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4, 0, 1), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4, 0, 0), + [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4, 0, 0), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5718), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), + [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), REDUCE(sym__expression, 1, 0, 0), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1, 0, 0), + [1260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_command_name, 1, 0, 0), REDUCE(sym__expression, 1, 0, 0), + [1263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7272), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2, 0, 1), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2, 0, 1), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 1, 0, 0), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 1, 0, 0), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), + [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3903), + [1283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3903), + [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2, 0, 0), + [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2, 0, 0), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2, 0, 11), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2, 0, 11), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_translated_string, 2, 0, 0), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translated_string, 2, 0, 0), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 4, 0, 0), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 4, 0, 0), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 10), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 10), + [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_process_substitution, 3, 0, 0), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_substitution, 3, 0, 0), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_expression, 5, 0, 0), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_expression, 5, 0, 0), + [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 3, 0, 0), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 3, 0, 0), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 1, 0, 0), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 1, 0, 0), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 2, 0, 0), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 2, 0, 0), + [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 4, 0, 0), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 4, 0, 0), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2, 0, 0), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2, 0, 0), + [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_substitution, 3, 0, 35), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_substitution, 3, 0, 35), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 2, 0, 0), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 2, 0, 0), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3, 0, 31), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3, 0, 31), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_substitution, 3, 0, 0), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_substitution, 3, 0, 0), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), + [1364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [1373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4188), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [1378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7401), + [1381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(524), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6137), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 2), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 2), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), + [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), + [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5887), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5765), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6320), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), + [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7653), + [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 19), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 19), + [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), + [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), + [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), + [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5956), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5808), + [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6340), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4856), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7663), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 39), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 39), + [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), + [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), + [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), + [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5878), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6367), + [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4825), + [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7618), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5756), + [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6341), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4778), + [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7612), + [1556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(879), + [1559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4148), + [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), + [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3623), + [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), + [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3929), + [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4149), + [1575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5887), + [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(855), + [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5765), + [1584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(907), + [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6320), + [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4806), + [1593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(369), + [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(370), + [1599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(371), + [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(308), + [1605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7378), + [1608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(868), + [1611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1171), + [1614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7653), + [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 18), + [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 18), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5727), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [1629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1085), + [1632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4144), + [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), + [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), + [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4145), + [1642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6053), + [1645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1154), + [1648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5755), + [1651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1253), + [1654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6313), + [1657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4782), + [1660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(361), + [1663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(362), + [1666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(363), + [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(300), + [1672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(541), + [1675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6612), + [1678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1084), + [1681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7651), + [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), + [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 1, 0, 0), + [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 1, 0, 0), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6053), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), + [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6313), + [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4782), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6612), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7651), + [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 2, 0, 0), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 2, 0, 0), + [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), + [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [1752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(994), + [1755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4172), + [1758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3666), + [1761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3941), + [1764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4173), + [1767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5956), + [1770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(919), + [1773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5808), + [1776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1115), + [1779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6340), + [1782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4856), + [1785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(399), + [1788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(400), + [1791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(401), + [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(348), + [1797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7474), + [1800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(993), + [1803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1444), + [1806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7663), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [1815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1135), + [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4062), + [1821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3646), + [1824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3895), + [1827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4063), + [1830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5878), + [1833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1075), + [1836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5784), + [1839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1273), + [1842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6367), + [1845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4825), + [1848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(186), + [1851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(187), + [1854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(188), + [1857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(169), + [1860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7402), + [1863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1134), + [1866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1626), + [1869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7618), + [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), + [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5910), + [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), + [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6296), + [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4846), + [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7661), + [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5774), + [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5837), + [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [1924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1306), + [1927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4166), + [1930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4167), + [1933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5910), + [1936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1286), + [1939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5801), + [1942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1311), + [1945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6296), + [1948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4846), + [1951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(393), + [1954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(394), + [1957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(395), + [1960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(340), + [1963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(566), + [1966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6619), + [1969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1239), + [1972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7661), + [1975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1157), + [1978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4049), + [1981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3617), + [1984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3886), + [1987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4050), + [1990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5961), + [1993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1052), + [1996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5756), + [1999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1236), + [2002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6341), + [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4778), + [2008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(158), + [2011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(159), + [2014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(160), + [2017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(145), + [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7259), + [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1141), + [2026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1682), + [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7612), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), + [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), + [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6061), + [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), + [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6260), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4814), + [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6595), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7616), + [2066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1431), + [2069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4057), + [2072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4058), + [2075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6061), + [2078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1352), + [2081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5776), + [2084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1603), + [2087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6260), + [2090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4814), + [2093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(178), + [2096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(179), + [2099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(180), + [2102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(161), + [2105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(573), + [2108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6595), + [2111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1430), + [2114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7616), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5729), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6316), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4753), + [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6580), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7610), + [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, 0, 8), + [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, 0, 8), + [2171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, 0, 21), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, 0, 21), + [2175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1082), + [2178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4141), + [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), + [2185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4142), + [2188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6022), + [2191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1152), + [2194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5749), + [2197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1243), + [2200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6256), + [2203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4779), + [2206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(357), + [2209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(358), + [2212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(359), + [2215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(296), + [2218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1081), + [2221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7650), + [2224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1346), + [2227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4041), + [2230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4042), + [2233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5867), + [2236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1450), + [2239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5729), + [2242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1598), + [2245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6316), + [2248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4753), + [2251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(133), + [2254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(134), + [2257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(135), + [2260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(136), + [2263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(586), + [2266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6580), + [2269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1338), + [2272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7610), + [2275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1263), + [2278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3696), + [2281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4005), + [2284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1186), + [2287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7603), + [2290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1262), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5749), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 1, 0, 0), + [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 1, 0, 0), + [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, 0, 4), + [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, 0, 4), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5780), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), + [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6267), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4817), + [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7656), + [2345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1276), + [2348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4146), + [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), + [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), + [2355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4147), + [2358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5960), + [2361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1304), + [2364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5759), + [2367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1313), + [2370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6270), + [2373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4787), + [2376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(365), + [2379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(366), + [2382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(367), + [2385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(304), + [2388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(600), + [2391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1275), + [2394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7652), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [2407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1178), + [2410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4156), + [2413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4157), + [2416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5965), + [2419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1249), + [2422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5780), + [2425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1363), + [2428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6267), + [2431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4817), + [2434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(378), + [2437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(379), + [2440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(380), + [2443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(320), + [2446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1177), + [2449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7656), + [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), + [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 2, 0, 0), + [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 2, 0, 0), + [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), + [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), + [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5759), + [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6270), + [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4787), + [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7652), + [2490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1649), + [2493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1715), + [2496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(606), + [2499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6600), + [2502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1648), + [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 1, 0, 0), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 1, 0, 0), + [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), + [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [2523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1191), + [2526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4164), + [2529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4165), + [2532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5894), + [2535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1264), + [2538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5798), + [2541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1463), + [2544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6257), + [2547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4845), + [2550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(390), + [2553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(391), + [2556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(392), + [2559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(336), + [2562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1190), + [2565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7660), + [2568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1388), + [2571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4150), + [2574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4151), + [2577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6033), + [2580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1460), + [2583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5768), + [2586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1586), + [2589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6274), + [2592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4809), + [2595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(372), + [2598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(373), + [2601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(374), + [2604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(312), + [2607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1387), + [2610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7654), + [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), + [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), + [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5929), + [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5804), + [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6323), + [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4855), + [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7662), + [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5930), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6306), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), + [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7624), + [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), + [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), + [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6033), + [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5768), + [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6274), + [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), + [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7654), + [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), + [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), + [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6003), + [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), + [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5785), + [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), + [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6362), + [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4821), + [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7657), + [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), + [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), + [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 2, 0, 0), + [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 2, 0, 0), + [2759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1329), + [2762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4008), + [2765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4009), + [2768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5944), + [2771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1406), + [2774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5811), + [2777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1546), + [2780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6315), + [2783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4655), + [2786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(110), + [2789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(111), + [2792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(112), + [2795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(113), + [2798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1327), + [2801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7604), + [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), + [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), + [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6030), + [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5819), + [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6250), + [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4859), + [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7666), + [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 3, 0, 0), + [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 3, 0, 0), + [2840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1421), + [2843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4178), + [2846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4179), + [2849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6030), + [2852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1310), + [2855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5819), + [2858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1585), + [2861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6250), + [2864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4859), + [2867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(408), + [2870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(409), + [2873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(410), + [2876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(360), + [2879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1420), + [2882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7666), + [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [2903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1415), + [2906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4055), + [2909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4056), + [2912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6037), + [2915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1335), + [2918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5773), + [2921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1561), + [2924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6355), + [2927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4795), + [2930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(174), + [2933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(175), + [2936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(176), + [2939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(157), + [2942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1414), + [2945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7615), + [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5798), + [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [2964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1442), + [2967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4169), + [2970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4170), + [2973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5929), + [2976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1397), + [2979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5804), + [2982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1692), + [2985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6323), + [2988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4855), + [2991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(396), + [2994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(397), + [2997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(398), + [3000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(344), + [3003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(652), + [3006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1441), + [3009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7662), + [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5855), + [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), + [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6027), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6336), + [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4641), + [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7633), + [3056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1578), + [3059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4099), + [3062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4100), + [3065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6027), + [3068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1615), + [3071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5855), + [3074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1761), + [3077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6336), + [3080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4641), + [3083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(253), + [3086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(254), + [3089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(255), + [3092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(229), + [3095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1613), + [3098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7633), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), + [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), + [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), + [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5903), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5772), + [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), + [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6339), + [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4811), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7655), + [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), + [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), + [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5985), + [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5838), + [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6275), + [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4621), + [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7628), + [3189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1695), + [3192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4043), + [3195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4044), + [3198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5916), + [3201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1677), + [3204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5737), + [3207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1812), + [3210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6301), + [3213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4757), + [3216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(138), + [3219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(139), + [3222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(140), + [3225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(141), + [3228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(668), + [3231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1554), + [3234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7611), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), + [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5868), + [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5779), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6302), + [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4820), + [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7617), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), + [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5974), + [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5813), + [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6265), + [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4857), + [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7664), + [3299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1559), + [3302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4174), + [3305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4175), + [3308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5974), + [3311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1587), + [3314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5813), + [3317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1811), + [3320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6265), + [3323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4857), + [3326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(402), + [3329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(403), + [3332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(404), + [3335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(352), + [3338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1558), + [3341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7664), + [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), + [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), + [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), + [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), + [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), + [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4548), + [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6305), + [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4860), + [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), + [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), + [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), + [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), + [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), + [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5737), + [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6301), + [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), + [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7611), + [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), + [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), + [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [3428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1574), + [3431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4088), + [3434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4089), + [3437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5985), + [3440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1602), + [3443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5838), + [3446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1738), + [3449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6275), + [3452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4621), + [3455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(230), + [3458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(231), + [3461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(232), + [3464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(209), + [3467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1569), + [3470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7628), + [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [3493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1593), + [3496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4059), + [3499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4060), + [3502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5868), + [3505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1560), + [3508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5779), + [3511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1897), + [3514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6302), + [3517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4820), + [3520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(182), + [3523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(183), + [3526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(184), + [3529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(165), + [3532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(697), + [3535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1592), + [3538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7617), + [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), + [3543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1646), + [3546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1710), + [3549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1645), + [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), + [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [3560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1921), + [3563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3668), + [3566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4021), + [3569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1866), + [3572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7153), + [3575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1920), + [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5831), + [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), + [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5822), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), + [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), + [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6286), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), + [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7629), + [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), + [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), + [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), + [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6012), + [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5085), + [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5849), + [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4703), + [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6325), + [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), + [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6136), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), + [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6406), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), + [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5853), + [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), + [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4586), + [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4328), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), + [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), + [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5959), + [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6308), + [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7626), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6394), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), + [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), + [3782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2159), + [3785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4077), + [3788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3688), + [3791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3901), + [3794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4078), + [3797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5930), + [3800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2266), + [3803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5815), + [3806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2159), + [3809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2288), + [3812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6306), + [3815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4699), + [3818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(210), + [3821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(211), + [3824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(212), + [3827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(193), + [3830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6910), + [3833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2158), + [3836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2523), + [3839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7624), + [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), + [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), + [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), + [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6006), + [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4283), + [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5816), + [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4727), + [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6363), + [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4858), + [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7665), + [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [3880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1780), + [3883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4083), + [3886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4084), + [3889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5959), + [3892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1730), + [3895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5831), + [3898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2161), + [3901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6308), + [3904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4611), + [3907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(222), + [3910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(223), + [3913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(224), + [3916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(201), + [3919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1779), + [3922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7626), + [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4533), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6462), + [3931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1915), + [3934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1861), + [3937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(758), + [3940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1914), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6467), + [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), + [3947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1836), + [3950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4096), + [3953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4097), + [3956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6020), + [3959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1755), + [3962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5853), + [3965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1993), + [3968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6329), + [3971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4638), + [3974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(250), + [3977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(251), + [3980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(252), + [3983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(225), + [3986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1835), + [3989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7632), + [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), + [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), + [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6020), + [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6329), + [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4638), + [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7632), + [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [4036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1858), + [4039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1849), + [4042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1857), + [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), + [4049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2326), + [4052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2305), + [4055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(770), + [4058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6610), + [4061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2325), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), + [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4663), + [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), + [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5968), + [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4457), + [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5833), + [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), + [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6263), + [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), + [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7627), + [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5815), + [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [4112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2357), + [4115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4073), + [4118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4074), + [4121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5911), + [4124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2368), + [4127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5803), + [4130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2357), + [4133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2566), + [4136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6253), + [4139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4608), + [4142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(202), + [4145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(203), + [4148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(204), + [4151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(185), + [4154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(783), + [4157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6602), + [4160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2356), + [4163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7622), + [4166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2129), + [4169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2036), + [4172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2128), + [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4798), + [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), + [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4802), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), + [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4832), + [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4484), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), + [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4834), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), + [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4599), + [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4355), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), + [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5911), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6253), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7622), + [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [4247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2324), + [4250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2300), + [4253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2323), + [4256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2302), + [4259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4069), + [4262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4070), + [4265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5893), + [4268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2286), + [4271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5792), + [4274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2302), + [4277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2434), + [4280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6268), + [4283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4862), + [4286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(194), + [4289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(195), + [4292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(196), + [4295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(177), + [4298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2301), + [4301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7620), + [4304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [4310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_not_pipeline, 1, 0, 0), + [4312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7486), + [4314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 1, 0, 0), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [4320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6616), + [4323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_not_pipeline, 1, 0, 0), + [4325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), + [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), + [4329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4848), + [4331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4497), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), + [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [4339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7602), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [4350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3959), + [4353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3959), + [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4852), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), + [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), + [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), + [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5009), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), + [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [4378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2381), + [4381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4112), + [4384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4113), + [4387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6065), + [4390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2405), + [4393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5716), + [4396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2381), + [4399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2577), + [4402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6328), + [4405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4660), + [4408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(273), + [4411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(274), + [4414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(275), + [4417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(249), + [4420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2373), + [4423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7638), + [4426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2, 0, 10), + [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2, 0, 10), + [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), + [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [4448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2361), + [4451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2390), + [4454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2360), + [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [4459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5716), + [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [4465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [4469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7513), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [4473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6623), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [4480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3969), + [4483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3969), + [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [4492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3975), + [4495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3975), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [4500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 36), + [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 36), + [4504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, 0, 16), + [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, 0, 16), + [4508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(6908), + [4511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2, 0, 0), + [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2, 0, 0), + [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [4517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 37), + [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 37), + [4521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, 0, 17), + [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, 0, 17), + [4525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [4529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2362), + [4532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4105), + [4535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4106), + [4538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6039), + [4541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2432), + [4544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5860), + [4547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2362), + [4550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2543), + [4553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6353), + [4556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4652), + [4559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(261), + [4562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(262), + [4565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(263), + [4568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(237), + [4571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2346), + [4574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7635), + [4577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, 0, 23), + [4579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, 0, 23), + [4581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2409), + [4584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2380), + [4587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(885), + [4590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2408), + [4593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, 0, 4), + [4595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, 0, 4), + [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6065), + [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6328), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7638), + [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [4639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6597), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [4646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3980), + [4649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3980), + [4652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [4654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5736), + [4656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [4660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7089), + [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5865), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6277), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7623), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), + [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7068), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [4709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6589), + [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [4714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 1, 0, 0), + [4716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [4720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2517), + [4723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4075), + [4726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4076), + [4729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5865), + [4732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2565), + [4735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5809), + [4738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2517), + [4741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2669), + [4744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6277), + [4747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4688), + [4750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(206), + [4753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(207), + [4756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(208), + [4759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(189), + [4762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(957), + [4765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2514), + [4768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7623), + [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6051), + [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6364), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), + [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7636), + [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5124), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6071), + [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5117), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5834), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), + [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), + [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6293), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7639), + [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5249), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), + [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [4847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2516), + [4850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2478), + [4853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2515), + [4856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2482), + [4859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4107), + [4862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4108), + [4865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6051), + [4868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2518), + [4871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5863), + [4874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2482), + [4877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2706), + [4880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6364), + [4883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4653), + [4886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(265), + [4889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(266), + [4892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(267), + [4895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(241), + [4898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2481), + [4901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7636), + [4904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4194), + [4907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4194), + [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), + [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5883), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6279), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), + [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7648), + [4956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2532), + [4959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4136), + [4962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4137), + [4965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5883), + [4968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2465), + [4971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5736), + [4974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2532), + [4977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2594), + [4980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6279), + [4983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4761), + [4986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(345), + [4989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(346), + [4992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(347), + [4995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(288), + [4998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2531), + [5001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7648), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [5016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3913), + [5019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3913), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), + [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), + [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [5032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1137), + [5035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [5037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5863), + [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [5049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5236), + [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5091), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), + [5055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5238), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), + [5059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [5065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5764), + [5067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [5075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1), SHIFT(7486), - [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [5086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5753), - [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [5094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(6705), - [5097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [5099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [5103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(6604), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6082), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [5122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), - [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6366), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), - [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7647), - [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), - [5154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), - [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [5168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3733), - [5171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3733), - [5174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [5176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [5178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 1), - [5180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 1), - [5182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [5188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2613), - [5191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3835), - [5194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3818), - [5197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6082), - [5200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2632), - [5203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5837), - [5206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2613), - [5209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2869), - [5212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6366), - [5215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4737), - [5218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(384), - [5221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(383), - [5224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(382), - [5227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(210), - [5230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2612), - [5233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7647), - [5236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3891), - [5239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3891), - [5242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1), SHIFT(7396), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [5251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3894), - [5254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3894), - [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5892), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), - [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), - [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6294), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), - [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7650), - [5289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1229), - [5292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1260), - [5295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5352), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), - [5301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5293), - [5303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), - [5307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), - [5311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [5317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5919), - [5319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5174), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), - [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5463), - [5327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6322), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), - [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7638), - [5343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5331), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [5353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [5355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), - [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5837), - [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [5367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(4034), - [5370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(4034), - [5373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, .production_id = 24), - [5375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, .production_id = 24), - [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [5389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1), - [5391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1), - [5393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 1), - [5395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 1), - [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5418), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [5407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), - [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5509), - [5417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6345), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), - [5421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7648), - [5433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extglob_blob, 1), - [5435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__extglob_blob, 1), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [5447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [5451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5427), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), - [5457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1351), - [5460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 3), - [5462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 3), - [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [5468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1), - [5470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1), - [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [5476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 1), - [5478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 1), - [5480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1404), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [5491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3895), - [5494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3895), - [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [5503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3905), - [5506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3905), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [5515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3942), - [5518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3942), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [5525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3943), - [5528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3943), - [5531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [5533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1338), - [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [5540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [5556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1724), - [5559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3093), - [5562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3875), - [5565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3874), - [5568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5952), - [5571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3110), - [5574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5850), - [5577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3184), - [5580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6315), - [5583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4756), - [5586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(404), - [5589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(403), - [5592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(402), - [5595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(162), - [5598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3092), - [5601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7644), - [5604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), - [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), - [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), - [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5952), - [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), - [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5850), - [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), - [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6315), - [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4756), - [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7644), - [5634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [5648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [5656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3951), - [5659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3951), - [5662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), - [5670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1656), - [5673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3853), - [5676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3853), - [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [5681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [5683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3798), - [5686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3798), - [5689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(4168), - [5692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(4168), - [5695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, .production_id = 22), - [5697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, .production_id = 22), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [5703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3946), - [5706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3946), - [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [5715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), - [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [5721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, .production_id = 9), - [5723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, .production_id = 9), - [5725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1551), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [5736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1535), - [5739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3899), - [5742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3899), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), - [5747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(4065), - [5750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(4065), - [5753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [5755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1890), - [5758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [5762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [5766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), - [5768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), - [5770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), - [5772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), - [5776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(6686), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [5783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(4127), - [5786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(4127), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [5801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1885), - [5804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1844), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), - [5817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [5819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, .production_id = 3), - [5821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), - [5823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), REDUCE(aux_sym_command_repeat1, 1, .production_id = 3), - [5826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), - [5828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), REDUCE(aux_sym_command_repeat1, 1, .production_id = 3), - [5831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, .production_id = 3), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [5841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1835), - [5844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [5858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3788), - [5861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3788), - [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5608), - [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), - [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), - [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5992), - [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5518), - [5874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5846), - [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5625), - [5878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6362), - [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4752), - [5882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7645), - [5894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [5896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3948), - [5899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3948), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5553), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [5920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [5930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negated_command, 2), - [5932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negated_command, 2), - [5934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3837), - [5937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3837), - [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [5942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_expression, 2, .production_id = 66), - [5944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_pipeline, 2), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [5952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1), SHIFT(7513), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [5957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3766), - [5960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3766), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [5965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1951), - [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [5974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1994), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [5983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2094), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7274), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7274), - [5998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), SHIFT(6664), - [6001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2182), - [6004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), - [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [6010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2237), - [6013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [6017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [6023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [6027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3480), - [6030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4169), - [6033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4166), - [6036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5971), - [6039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3476), - [6042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5716), - [6045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3480), - [6048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3516), - [6051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6332), - [6054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4668), - [6057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(255), - [6060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(256), - [6063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(257), - [6066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(228), - [6069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3479), - [6072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7620), - [6075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2215), - [6078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3829), - [6081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3829), - [6084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2160), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [6097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3768), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [6104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3774), - [6107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3774), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7037), - [6114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(5495), - [6117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2597), - [6120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2317), - [6123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2310), - [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), - [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [6130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2306), - [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [6135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1550), - [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [6148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2882), - [6151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(4448), - [6154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(4444), - [6157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1592), - [6160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(4852), - [6163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1761), - [6166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1101), - [6169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1591), - [6172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1353), - [6175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [6181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1324), - [6184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(4355), - [6187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(928), - [6190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(4329), - [6193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1365), - [6196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(4553), - [6199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1579), - [6202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(900), - [6205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1438), - [6208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), - [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5716), - [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [6216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2305), - [6219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1018), - [6222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2338), - [6225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3758), - [6228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1241), - [6231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3505), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [6236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(6226), - [6239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(5433), - [6242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1255), - [6245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(5524), - [6248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2919), - [6251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(856), - [6254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2909), - [6257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [6259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2669), - [6262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(5669), - [6265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3253), - [6268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(6436), - [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), - [6273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2527), - [6276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(6555), - [6279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2530), - [6282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), - [6284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3172), - [6287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(6242), - [6290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(4402), - [6293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [6299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(6532), - [6302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(6246), - [6305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(5284), - [6308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2448), - [6311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(5455), - [6314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2616), - [6317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2542), - [6320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(6484), - [6323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1755), - [6326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2006), - [6329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(4631), - [6332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3353), - [6335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(5160), - [6338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(4411), - [6341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(518), - [6344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1818), - [6347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(4544), - [6350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2216), - [6353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [6355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1044), - [6358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3179), - [6361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2065), - [6364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2295), - [6367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2628), - [6370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1488), - [6373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(477), - [6376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2423), - [6379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2686), - [6382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1238), - [6385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1837), - [6388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1693), - [6391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1565), - [6394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2709), - [6397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1854), - [6400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(2822), - [6403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [6409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [6415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [6421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2280), - [6424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3025), - [6427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(1185), - [6430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(3191), - [6433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(6538), - [6436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1), SHIFT(6147), - [6439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [6451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3717), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [6456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2418), - [6459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(4028), - [6462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2381), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [6471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2351), - [6474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6303), - [6476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), - [6478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), - [6480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4903), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), - [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5969), - [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6326), - [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5708), - [6494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6523), - [6496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6291), - [6498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4848), - [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [6502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6164), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7635), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [6520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), - [6522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4909), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), - [6530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5677), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [6534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3864), - [6537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), - [6539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5037), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [6543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), - [6545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), - [6551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5678), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [6555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2492), - [6558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), - [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4876), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [6566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), - [6568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5665), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5078), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4874), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [6584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), - [6586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5667), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [6592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1), - [6594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [6598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_literal, 1), - [6600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_literal, 1), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [6608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), - [6610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4981), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [6614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), - [6616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4980), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [6620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), - [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4884), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), - [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4883), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [6634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3869), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), - [6641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5076), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [6647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3732), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), - [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7177), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [6662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7363), - [6676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3929), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [6687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2584), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [6692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3885), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [6697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3865), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7018), - [6714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(4016), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6833), - [6729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3738), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [6746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2713), - [6749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extglob_blob, 2), - [6751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__extglob_blob, 2), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6969), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [6763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2725), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [6772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2798), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [6777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2819), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [6786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3882), - [6789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 12), - [6791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 12), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [6795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2, .production_id = 27), - [6797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2, .production_id = 27), - [6799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [6801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), - [6805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 43), - [6807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 43), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [6815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2935), - [6818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 41), - [6820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 41), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [6824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2927), - [6827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 40), - [6829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 40), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [6833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2928), - [6836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 41), - [6838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 41), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [6842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 40), - [6844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 40), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4307), - [6850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), - [6854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), - [6856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [6862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extglob_blob, 3), - [6864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__extglob_blob, 3), - [6866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2796), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [6871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [6873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [6877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), - [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [6893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), - [6895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), - [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), - [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), - [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), - [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6561), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [6989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [7033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 5), - [7035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 5), - [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [7051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 6), - [7053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 6), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [7057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3149), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7193), - [7062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 7), - [7064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, .production_id = 7), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6834), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [7074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6990), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7181), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [7088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1), - [7090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4934), - [7092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1), - [7094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_unary_expression, 2, .production_id = 12), - [7096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_unary_expression, 2, .production_id = 12), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), - [7100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_ternary_expression, 5, .production_id = 76), - [7102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_ternary_expression, 5, .production_id = 76), - [7104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_postfix_expression, 2, .production_id = 27), - [7106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_postfix_expression, 2, .production_id = 27), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7362), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [7112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_parenthesized_expression, 3), - [7114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_parenthesized_expression, 3), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [7120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3055), - [7123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 76), - [7125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 76), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6962), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), - [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4590), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), - [7137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_binary_expression, 3, .production_id = 43), - [7139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_binary_expression, 3, .production_id = 43), - [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), - [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5799), - [7145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4469), - [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [7155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2980), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [7160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 40), - [7162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 40), - [7164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 41), - [7166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 41), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [7172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [7180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [7184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [7188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [7194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [7196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [7210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [7214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [7216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [7218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [7220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6326), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6303), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [7244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_parenthesized_expression, 3), - [7246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_parenthesized_expression, 3), - [7248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_binary_expression, 3, .production_id = 43), - [7250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), - [7252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5244), - [7254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5233), - [7256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5243), - [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5242), - [7260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5241), - [7262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5239), - [7264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5238), - [7266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5237), - [7268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5236), - [7270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5235), - [7272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5234), - [7274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_binary_expression, 3, .production_id = 43), - [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [7284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [7286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [7288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [7292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [7296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [7298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [7300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [7302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [7310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [7316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [7318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [7320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [7322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [7328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [7330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [7332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [7336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [7344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [7348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), - [7350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4638), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), - [7354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arithmetic_expansion_repeat1, 2), - [7356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), - [7358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), - [7360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [7370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4924), - [7372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), - [7376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [7384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [7386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [7388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [7398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [7402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [7412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [7414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [7420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [7426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [7428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [7430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [7440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), - [7442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [7448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_parenthesized_expression, 4), - [7450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_parenthesized_expression, 4), - [7452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3206), - [7455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5691), - [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [7459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5694), - [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), - [7465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_postfix_expression, 2, .production_id = 27), - [7467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_postfix_expression, 2, .production_id = 27), - [7469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_unary_expression, 2, .production_id = 12), - [7471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_unary_expression, 2, .production_id = 12), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [7475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), - [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [7485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5028), - [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [7489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1, .production_id = 7), - [7491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1, .production_id = 7), - [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [7495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3878), - [7498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3878), - [7501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1, .production_id = 5), - [7503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1, .production_id = 5), - [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [7507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression, 1), - [7509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5246), - [7511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression, 1), - [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [7515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5032), - [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [7521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 20), - [7523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 20), - [7525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 20), SHIFT_REPEAT(3677), - [7528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 20), SHIFT_REPEAT(3677), - [7531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 20), SHIFT_REPEAT(2138), - [7534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 20), SHIFT_REPEAT(3965), - [7537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 20), SHIFT_REPEAT(6132), - [7540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 20), SHIFT_REPEAT(6634), - [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [7547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), - [7549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5107), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), - [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), - [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), - [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), - [7565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5030), - [7567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), - [7577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), - [7579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), - [7581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [7585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), - [7589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), - [7591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), - [7593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), - [7595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [7601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [7603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [7605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [7609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4537), - [7611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4540), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [7621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), - [7623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), - [7625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), - [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [7629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), - [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [7633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), - [7635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), - [7637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), - [7639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [7645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [7649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5230), - [7651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5229), - [7653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), - [7655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), - [7661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), - [7663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5220), - [7665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5219), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), - [7671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), - [7673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5861), - [7675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4360), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [7679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [7691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [7693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [7695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [7699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [7705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [7719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), - [7721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), - [7723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), - [7725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), - [7727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [7735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [7739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), - [7741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [7753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4807), - [7755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4812), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [7759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460), - [7761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6744), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6744), - [7765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [7771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6743), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [7777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6427), - [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [7781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [7785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5920), - [7787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6651), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), - [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6427), - [7793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6229), - [7795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6250), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), - [7799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 2, .production_id = 49), - [7801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6764), - [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), - [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7643), - [7817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3704), - [7820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), - [7822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6379), - [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), - [7826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, .production_id = 51), - [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6784), - [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6372), - [7832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3511), - [7835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6763), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6763), - [7839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6328), - [7842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3986), - [7845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3609), - [7848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3985), - [7851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5969), - [7854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6326), - [7857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5708), - [7860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6328), - [7863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6523), - [7866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6291), - [7869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4848), - [7872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(134), - [7875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(135), - [7878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(138), - [7881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(77), - [7884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6318), - [7887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6164), - [7890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7635), - [7893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4460), - [7896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4006), - [7899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4005), - [7902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6005), - [7905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4491), - [7908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5741), - [7911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4837), - [7914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6352), - [7917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4857), - [7920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(110), - [7923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(111), - [7926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(113), - [7929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(366), - [7932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4458), - [7935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7632), - [7938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6770), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6770), - [7942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6449), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6449), - [7946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, .production_id = 89), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6748), - [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6410), - [7952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5137), - [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [7956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), - [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [7960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5875), - [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), - [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), - [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), - [7968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), - [7970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6281), - [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), - [7974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [7982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4759), - [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), - [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7641), - [7990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), - [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [7994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), - [7998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5971), - [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), - [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [8006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), - [8008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6332), - [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [8012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [8020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), - [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7620), - [8028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6755), - [8030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6187), - [8032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6197), - [8034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5260), - [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), - [8038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, .production_id = 12), - [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), - [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), - [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), - [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), - [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6755), - [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6489), - [8052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4802), - [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), - [8060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), - [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [8064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), - [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), - [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [8082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [8088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4550), - [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), - [8096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [8100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [8104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5908), - [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5825), - [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [8112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [8114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6255), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), - [8118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [8126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7651), - [8134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), - [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), - [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [8142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6028), - [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), - [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), - [8150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4587), - [8152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6296), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), - [8156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [8164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925), - [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), - [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), - [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7669), - [8172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [8176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), - [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), - [8180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6038), - [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), - [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [8188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [8190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6292), - [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), - [8194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [8202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7616), - [8210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), - [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), - [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), - [8218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [8226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [8230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [8248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [8254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [8262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [8266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), - [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [8270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6084), - [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), - [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [8278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [8280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6311), - [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), - [8284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [8292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7661), - [8300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [8304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), - [8308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), - [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), - [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), - [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), - [8316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5422), - [8318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6325), - [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), - [8322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [8330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5566), - [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), - [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), - [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7642), - [8338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [8342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), - [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), - [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), - [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [8360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [8366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), - [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [8370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [8374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6066), - [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), - [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [8382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4412), - [8384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6329), - [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), - [8388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [8396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), - [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7660), - [8404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [8412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4531), - [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), - [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), - [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), - [8420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [8424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [8442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [8448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [8456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), - [8458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [8462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [8468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [8472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), - [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [8476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5930), - [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), - [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [8484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [8486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6367), - [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), - [8490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [8498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7605), - [8506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), - [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [8510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [8514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5950), - [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [8522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), - [8524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6313), - [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), - [8528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [8536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), - [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7636), - [8544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1, .production_id = 13), - [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), - [8548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1), - [8550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, .production_id = 33), - [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [8554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5269), - [8556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5797), - [8558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5279), - [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), - [8562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3552), - [8565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5045), - [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [8573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5903), - [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), - [8581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), - [8583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6336), - [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), - [8587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), - [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [8611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6338), - [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), - [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), - [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [8621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), - [8623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), - [8625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5154), - [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), - [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), - [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), - [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), - [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), - [8645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 67), SHIFT_REPEAT(5062), - [8648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 67), SHIFT_REPEAT(4006), - [8651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 67), - [8653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 67), SHIFT_REPEAT(4005), - [8656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 67), SHIFT_REPEAT(6005), - [8659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 67), SHIFT_REPEAT(5034), - [8662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 67), SHIFT_REPEAT(5741), - [8665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 67), SHIFT_REPEAT(4837), - [8668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 67), SHIFT_REPEAT(6352), - [8671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 67), SHIFT_REPEAT(4857), - [8674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 67), SHIFT_REPEAT(110), - [8677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 67), SHIFT_REPEAT(111), - [8680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 67), SHIFT_REPEAT(113), - [8683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 67), SHIFT_REPEAT(366), - [8686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 67), SHIFT_REPEAT(5048), - [8689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 2, .production_id = 67), SHIFT_REPEAT(7632), - [8692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5477), - [8694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), - [8696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5483), - [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), - [8700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6420), - [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), - [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), - [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [8712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5485), - [8714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), - [8716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5486), - [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), - [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), - [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), - [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), - [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), - [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), - [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), - [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), - [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6378), - [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6505), - [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6456), - [8752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5045), - [8755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4012), - [8758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4008), - [8761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5903), - [8764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5097), - [8767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5762), - [8770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5045), - [8773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5149), - [8776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(6336), - [8779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4850), - [8782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(89), - [8785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(97), - [8788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(98), - [8791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(355), - [8794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(5041), - [8797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(7631), - [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6437), - [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6517), - [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6401), - [8806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6302), - [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6302), - [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), - [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), - [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), - [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), - [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), - [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), - [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [8836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), - [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [8840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), - [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), - [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [8866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5443), - [8868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5856), - [8870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5442), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), - [8874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), - [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), - [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [8898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5783), - [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), - [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), - [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), - [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), - [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [8978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [8984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), - [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), - [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), - [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [9038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), - [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), - [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), - [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), - [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6583), - [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [9090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), - [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), - [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [9114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [9120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5923), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), - [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [9128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [9130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6316), - [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), - [9134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7621), - [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6585), - [9148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5502), - [9150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5835), - [9152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5501), - [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5501), - [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [9166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [9174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [9180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), - [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [9186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [9194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), - [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), - [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), - [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [9222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [9230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [9236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), - [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [9260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [9268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [9270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [9276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [9284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), - [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), - [9288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6101), - [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), - [9292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), - [9294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6347), - [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), - [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [9304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), - [9306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), - [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), - [9312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), - [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [9328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4429), - [9330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [9332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [9338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), - [9340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [9346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [9348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5347), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), - [9356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [9362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), - [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [9370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), - [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [9374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6099), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), - [9378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), - [9380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6249), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [9390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), - [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [9394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [9400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [9406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [9408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [9410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), - [9412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4810), - [9414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), - [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), - [9420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4811), - [9422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), - [9424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), - [9426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [9428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [9434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5173), - [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), - [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), - [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), - [9442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [9448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), - [9450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), - [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), - [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), - [9456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [9458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), - [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), - [9464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [9470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [9472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5440), - [9474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), - [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), - [9480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5438), - [9482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), - [9484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [9490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), - [9492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), - [9494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), - [9496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [9498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), - [9500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), - [9502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [9508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [9510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [9516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [9518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [9524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [9526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), - [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [9532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [9534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [9540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), - [9542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5616), - [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), - [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), - [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), - [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), - [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), - [9564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5605), - [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), - [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), - [9570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), - [9572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), - [9574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), - [9576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), - [9578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [9580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [9582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [9588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [9590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [9592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), - [9594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [9596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [9598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), - [9600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [9602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [9608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [9610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), - [9612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), - [9614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [9616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [9618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [9620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [9626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), - [9628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), - [9630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [9632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), - [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), - [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), - [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), - [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), - [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [9654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5412), - [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), - [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), - [9660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4477), - [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [9666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [9668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), - [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), - [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), - [9674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), - [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [9694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [9696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [9698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [9704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [9706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [9712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [9714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), - [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), - [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), - [9720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [9722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [9728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [9730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [9732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), - [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), - [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), - [9738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [9740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [9746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [9748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [9754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6225), - [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), - [9760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5925), - [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), - [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), - [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), - [9768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6238), - [9770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6253), - [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), - [9774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [9782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6205), - [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7609), - [9786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [9792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [9798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), - [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), - [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), - [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [9820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [9822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [9828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [9830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), - [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), - [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), - [9836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), - [9838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [9840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [9842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [9844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [9850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [9856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [9858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), - [9860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), - [9862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), - [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), - [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), - [9868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), - [9870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [9872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4337), - [9874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), - [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [9880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4338), - [9882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), - [9884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [9886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), - [9888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), - [9890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), - [9892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [9904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), - [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [9908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6108), - [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), - [9912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), - [9914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6278), - [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), - [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [9924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), - [9926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [9932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [9934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), - [9936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), - [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), - [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), - [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), - [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), - [9958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5541), - [9960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), - [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), - [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), - [9966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5542), - [9968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), - [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), - [9974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [9980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), - [9982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [9988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), - [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), - [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [10004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [10006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), - [10008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), - [10010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [10012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [10014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), - [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), - [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), - [10020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), - [10022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [10024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), - [10026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), - [10028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [10030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), - [10032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [10038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [10044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), - [10046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), - [10048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [10050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6192), - [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), - [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), - [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6191), - [10058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4430), - [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), - [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), - [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), - [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), - [10080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [10082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [10088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [10094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [10096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [10102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [10104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [10106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4673), - [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), - [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), - [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), - [10114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4760), - [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), - [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), - [10120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [10122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [10128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [10130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), - [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), - [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), - [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), - [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), - [10152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [10154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), - [10156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [10158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), - [10160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), - [10162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), - [10164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), - [10166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), - [10168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [10170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), - [10172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), - [10174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [10176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [10182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), - [10184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [10186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), - [10188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [10190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [10196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [10198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [10200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), - [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), - [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), - [10206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6494), - [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6486), - [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6494), - [10212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6486), - [10214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [10216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), - [10218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), - [10220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), - [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [10226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [10228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [10230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [10232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [10234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [10236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), - [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), - [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), - [10242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5480), - [10244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [10246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [10248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [10254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [10256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), - [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [10262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), - [10264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), - [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), - [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), - [10270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5380), - [10272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [10274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [10276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), - [10278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), - [10280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), - [10282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5428), - [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), - [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), - [10288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5413), - [10290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [10296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), - [10298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), - [10300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5680), - [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), - [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), - [10306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5660), - [10308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [10314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [10316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5698), - [10318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [10320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [10322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [10324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5699), - [10326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), - [10328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), - [10330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), - [10332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), - [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), - [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [10338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), - [10340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), - [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [10346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), - [10348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [10354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), - [10356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), - [10358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [10364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [10366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [10368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), - [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), - [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), - [10374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), - [10376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), - [10378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), - [10380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), - [10382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), - [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), - [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), - [10388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4409), - [10390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [10392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [10394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [10396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), - [10398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [10400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [10402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), - [10404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), - [10406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [10412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [10414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [10416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [10418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [10420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [10422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [10424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [10426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [10428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [10434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [10436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [10438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [10440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), - [10442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), - [10444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), - [10446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [10448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [10450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [10456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [10458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [10460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [10462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [10464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [10466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [10468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [10470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [10472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), - [10474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), - [10478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), - [10480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [10482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [10486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [10488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [10492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [10494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [10496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), - [10498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [10500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [10502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [10504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [10506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [10508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), - [10510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [10512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), - [10514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [10516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [10518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [10520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [10522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [10524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [10526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [10528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [10530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [10532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [10534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [10536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [10538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [10540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4831), - [10542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), - [10544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), - [10546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4805), - [10548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [10550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [10554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [10556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4493), - [10558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [10560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [10562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), - [10564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), - [10566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), - [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [10570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), - [10572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [10574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [10576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [10578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [10580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [10582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [10584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [10586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [10588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [10590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), - [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [10596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), - [10598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [10604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), - [10606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), - [10608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), - [10610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [10612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), - [10614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [10616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [10618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), - [10620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [10622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [10624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [10626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), - [10628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [10630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [10632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [10634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), - [10636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [10638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), - [10640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [10642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), - [10644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), - [10646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), - [10648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [10650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), - [10652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [10654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [10656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), - [10658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), - [10660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), - [10662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), - [10664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), - [10666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), - [10668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), - [10670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), - [10672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [10674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [10676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [10678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [10680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [10682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), - [10684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [10686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [10688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), - [10690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [10692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [10694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [10696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [10698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [10700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [10702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [10704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), - [10706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6199), - [10708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), - [10710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), - [10712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [10714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [10716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), - [10718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [10720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [10722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [10724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [10726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [10728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [10730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [10732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [10734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [10736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [10738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [10740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [10742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [10744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [10748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [10752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [10754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), - [10756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), - [10758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), - [10760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4687), - [10762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), - [10764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), - [10766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), - [10768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), - [10770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [10772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4699), - [10774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), - [10776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), - [10778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), - [10780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [10782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [10784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), - [10786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), - [10788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4440), - [10790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [10792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), - [10794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), - [10796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [10798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [10800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), - [10802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), - [10804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4452), - [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [10808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [10810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), - [10812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [10814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [10816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [10818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [10822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [10824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [10826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [10828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), - [10830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), - [10832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), - [10834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), - [10836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [10838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [10840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), - [10842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), - [10844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), - [10846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [10852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [10854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), - [10856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), - [10858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [10860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), - [10862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [10864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), - [10866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), - [10868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), - [10870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [10872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), - [10874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6202), - [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), - [10878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6189), - [10880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), - [10882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [10884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [10886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), - [10888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), - [10890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), - [10892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), - [10894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [10896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5503), - [10898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), - [10900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [10902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), - [10904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), - [10906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [10908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), - [10910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [10912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), - [10914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [10916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), - [10918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), - [10920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [10922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), - [10924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [10926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [10928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [10930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [10932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), - [10934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [10936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [10938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [10940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), - [10942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [10944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), - [10946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [10948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [10950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [10952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [10954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [10958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [10960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), - [10962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [10964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [10966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [10968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [10974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [10976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [10978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), - [10980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [10982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [10986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [10988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [10990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4992), - [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), - [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), - [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), - [10998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4896), - [11000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), - [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), - [11004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6198), - [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), - [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), - [11010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), - [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [11014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), - [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), - [11018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4750), - [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), - [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), - [11024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [11026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [11028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), - [11030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [11032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), - [11034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [11036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), - [11038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), - [11040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), - [11042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [11048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [11050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [11052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [11054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), - [11056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), - [11058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), - [11060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [11062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), - [11064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), - [11066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), - [11068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), - [11070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), - [11072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), - [11074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [11080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [11082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [11084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [11086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [11088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [11090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), - [11092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5514), - [11094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [11096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [11098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [11100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [11102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), - [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), - [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), - [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), - [11110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), - [11112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), - [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), - [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), - [11118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [11120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), - [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), - [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [11128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), - [11130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), - [11132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), - [11134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), - [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), - [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), - [11140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [11142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [11144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [11146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [11148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [11150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), - [11152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), - [11154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5306), - [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), - [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), - [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), - [11162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [11164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), - [11166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), - [11168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5286), - [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), - [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), - [11174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), - [11176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5130), - [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), - [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), - [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), - [11184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), - [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), - [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), - [11190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), - [11192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), - [11194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), - [11196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), - [11198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), - [11200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), - [11202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), - [11204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), - [11206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [11208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), - [11210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [11212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), - [11214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), - [11216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [11218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), - [11220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), - [11222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), - [11224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), - [11226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [11228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [11230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), - [11232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [11234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [11236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [11238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), - [11240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5655), - [11242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5654), - [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), - [11246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), - [11248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5226), - [11250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4891), - [11252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), - [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), - [11256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6103), - [11258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), - [11260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), - [11262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6356), - [11264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4763), - [11266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [11268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [11270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [11272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), - [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [11276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), - [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [11280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), - [11282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [11284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), - [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), - [11288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), - [11290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), - [11292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(6662), - [11295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3912), - [11298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3912), - [11301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), - [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [11305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), - [11307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), - [11309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3642), - [11312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(631), - [11315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), - [11317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3805), - [11320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(6151), - [11323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), - [11325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), - [11327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignments, 2), - [11329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignments, 2), - [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6662), - [11333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), - [11335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), - [11339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), - [11341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), - [11343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), - [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), - [11347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3873), - [11350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3873), - [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [11357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 1, .dynamic_precedence = -1, .production_id = 3), - [11359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), - [11361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [11363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 1, .dynamic_precedence = -1, .production_id = 3), - [11365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), - [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), - [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [11371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3802), - [11374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3802), - [11377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), - [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [11381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3941), - [11384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3941), - [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [11389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), - [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [11393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(4503), - [11396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), - [11398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3952), - [11401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3952), - [11404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3778), - [11407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3778), - [11410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4165), - [11412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 54), - [11414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 54), - [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), - [11418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), - [11420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), - [11422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3635), - [11425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(7487), - [11428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(681), - [11431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), - [11433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(6100), - [11436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3654), - [11439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(658), - [11442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3840), - [11445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(6133), - [11448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), - [11450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(6619), - [11453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 2, .dynamic_precedence = -1, .production_id = 14), - [11455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 2, .dynamic_precedence = -1, .production_id = 14), - [11457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), - [11459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [11461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3900), - [11464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3900), - [11467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), - [11469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), - [11471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), - [11473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [11475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [11477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [11479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), - [11481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), - [11485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), - [11487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [11489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), - [11491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), - [11493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [11495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(4577), - [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), - [11500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), - [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [11504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 61), - [11506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 61), - [11508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), - [11510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), - [11512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), - [11514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [11518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(4563), - [11521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), - [11523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [11525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), - [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), - [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [11531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), - [11533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 29), - [11535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 29), - [11537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(4423), - [11540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), - [11542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6093), - [11546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3953), - [11549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3953), - [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [11554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), - [11556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [11558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), - [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), - [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), - [11566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4846), - [11568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), - [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [11572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4726), - [11574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(6578), - [11577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3950), - [11580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3950), - [11583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [11585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4788), - [11587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3653), - [11590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(7514), - [11593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(724), - [11596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(6116), - [11599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [11601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [11603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), - [11605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [11607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), - [11609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), - [11611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(4788), - [11614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(4846), - [11617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), - [11619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(4772), - [11622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [11626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [11628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3670), - [11631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(733), - [11634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(4045), - [11637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(6152), - [11640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(6668), - [11643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3823), - [11646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3823), - [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [11651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), - [11653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [11655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3625), - [11658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(739), - [11661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3763), - [11664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(6145), - [11667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(4726), - [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6578), - [11672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3649), - [11675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(785), - [11678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(4170), - [11681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(6135), - [11684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), - [11688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), - [11690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [11692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), - [11694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), - [11696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), - [11698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [11700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), - [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), - [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), - [11706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(6705), - [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [11719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [11721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [11723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [11725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 3, .production_id = 30), - [11727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 3, .production_id = 30), - [11729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [11731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [11733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 44), - [11735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 44), - [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [11739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 2), - [11741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 2), - [11743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), - [11745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT(439), - [11748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), - [11750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 44), - [11752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 44), - [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [11756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [11758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), - [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), - [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [11766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [11768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [11770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), - [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6158), - [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [11780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 28), - [11782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 28), - [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [11790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subshell, 3), - [11792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subshell, 3), - [11794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), - [11796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [11798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), - [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6136), - [11802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4913), - [11804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 97), - [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), - [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), - [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [11812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6114), - [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), - [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [11818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6323), - [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), - [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [11828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 3), - [11830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 3), - [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), - [11836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 99), - [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), - [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [11842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 44), - [11844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 44), - [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), - [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), - [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), - [11858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(438), - [11861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3684), - [11864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(790), - [11867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(4125), - [11870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(6136), - [11873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [11875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [11877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), - [11879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [11883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [11885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [11887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [11891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), - [11893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [11895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), - [11897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [11899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [11901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [11903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [11905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [11907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [11909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [11911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 73), - [11913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [11917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3647), - [11920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(7349), - [11923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(779), - [11926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(6107), - [11929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 3), - [11931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 3), - [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [11935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6239), - [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), - [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), - [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), - [11945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, .production_id = 57), - [11947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3661), - [11950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(829), - [11953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(6115), - [11956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 2), - [11958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 2), - [11960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), - [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [11970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3645), - [11973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(783), - [11976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(6106), - [11979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [11983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [11985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 131), - [11987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 69), - [11989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 71), - [11991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [11993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), - [11995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [11997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [11999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), - [12001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 44), - [12003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 44), - [12005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [12007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 2), - [12009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [12011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [12013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), - [12015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [12017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6571), - [12019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [12023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [12027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [12029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [12031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(6604), - [12034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [12036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), - [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), - [12048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, .production_id = 44), - [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), - [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), - [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), - [12064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 2), - [12066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [12068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2), - [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), - [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), - [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), - [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), - [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [12094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(4913), - [12097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), - [12099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [12101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 2, .dynamic_precedence = -1, .production_id = 15), - [12103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 2, .dynamic_precedence = -1, .production_id = 15), - [12105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 93), - [12107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 93), - [12109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 65), - [12111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 65), - [12113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, .production_id = 45), - [12115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, .production_id = 45), - [12117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 94), - [12119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 94), - [12121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, .production_id = 46), - [12123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, .production_id = 46), - [12125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, .production_id = 46), - [12127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, .production_id = 46), - [12129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, .production_id = 45), - [12131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, .production_id = 45), - [12133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 47), - [12135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 47), - [12137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__heredoc_body, 2), - [12139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_body, 2), - [12141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_heredoc_body, 2), - [12143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_heredoc_body, 2), - [12145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 4), - [12147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 4), - [12149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 45), - [12151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 45), - [12153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 46), - [12155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 46), - [12157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 7, .production_id = 149), - [12159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 7, .production_id = 149), - [12161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 95), - [12163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, .production_id = 95), - [12165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [12167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), - [12169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [12171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6111), - [12173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), - [12175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [12177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6360), - [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), - [12181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [12183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [12185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [12187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 4), - [12189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 4), - [12191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, .production_id = 46), - [12193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, .production_id = 46), - [12195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, .production_id = 42), - [12197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, .production_id = 42), - [12199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 124), - [12201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 124), - [12203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [12205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .production_id = 2), - [12207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .production_id = 2), - [12209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5), - [12211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5), - [12213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 5, .production_id = 56), - [12215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 5, .production_id = 56), - [12217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 4), - [12219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 4), - [12221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), - [12223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 125), - [12225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 125), - [12227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 6, .production_id = 68), - [12229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 6, .production_id = 68), - [12231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), - [12233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), - [12235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [12237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5705), - [12239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [12241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), - [12243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [12245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [12247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [12249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 126), - [12251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 126), - [12253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 75), - [12255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 75), - [12257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 127), - [12259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, .production_id = 127), - [12261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 84), - [12263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 84), - [12265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, .production_id = 19), - [12267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, .production_id = 19), - [12269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, .production_id = 45), - [12271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, .production_id = 45), - [12273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(435), - [12276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5044), - [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), - [12280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3696), - [12283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(825), - [12286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(6113), - [12289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(5044), - [12292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, .production_id = 46), - [12294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, .production_id = 46), - [12296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, .production_id = 45), - [12298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, .production_id = 45), - [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [12302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [12304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [12306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3815), - [12309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [12311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 1, .production_id = 16), - [12313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 1, .production_id = 16), - [12315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [12317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), - [12319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [12321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [12323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 1, .production_id = 17), - [12325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 1, .production_id = 17), - [12327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [12329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [12331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(437), - [12334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(442), - [12337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [12339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [12341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(448), - [12344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), - [12346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), - [12350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 153), - [12352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 153), - [12354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, .production_id = 109), - [12356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 134), - [12358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 134), - [12360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 79), - [12362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 155), - [12364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 155), - [12366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, .production_id = 112), - [12368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 105), - [12370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 105), - [12372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 79), - [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [12376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 115), - [12378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 115), - [12380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 83), - [12382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 113), - [12384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 113), - [12386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 60), - [12388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(6686), - [12391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), - [12393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 110), - [12395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 110), - [12397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 46), - [12399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 107), - [12401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 107), - [12403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 45), - [12405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 103), - [12407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 103), - [12409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 59), - [12411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), - [12413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [12415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [12417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [12419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), - [12421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [12423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 81), - [12425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 81), - [12427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 60), - [12429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 77), - [12431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 77), - [12433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 59), - [12435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [12437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [12439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), - [12441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [12443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), - [12445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), - [12447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 136), - [12449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 136), - [12451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 45), - [12453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), - [12455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3633), - [12458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(908), - [12461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(4188), - [12464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(6120), - [12467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 144), - [12469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 144), - [12471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 83), - [12473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [12475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [12477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [12479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [12481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3870), - [12484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [12486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [12488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [12490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 138), - [12492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 138), - [12494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 109), - [12496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [12498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), - [12500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [12502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [12504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [12506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), - [12508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [12510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [12512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [12514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [12516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [12518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3669), - [12521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3669), - [12524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(944), - [12527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3716), - [12530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(6118), - [12533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [12537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [12539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [12541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), - [12543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [12545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7023), - [12547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), - [12549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6102), - [12551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4813), - [12553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 3, .production_id = 64), - [12555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [12557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [12559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [12561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6262), - [12563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6977), - [12565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 3, .production_id = 51), - [12567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6344), - [12569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [12571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(443), - [12574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [12576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [12578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [12580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [12582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [12584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [12586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [12588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [12590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [12592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [12594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [12596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [12598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [12600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [12602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6798), - [12604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 2, .production_id = 49), - [12606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6260), - [12608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [12610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [12612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [12614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [12616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [12618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [12620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [12622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [12624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [12626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [12628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [12630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [12632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 140), - [12634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 140), - [12636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 46), - [12638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [12640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 142), - [12642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 142), - [12644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 112), - [12646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6498), - [12648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [12650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6112), - [12652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_expression, 1, .production_id = 12), - [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [12656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [12658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [12660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 141), - [12662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 141), - [12664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 143), - [12666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 143), - [12668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5410), - [12670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 139), - [12672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 139), - [12674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), - [12676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), - [12678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 1, .production_id = 12), - [12680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6208), - [12682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 135), - [12684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 135), - [12686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), - [12688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [12690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 154), - [12692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 154), - [12694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [12696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [12698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(5416), - [12701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, .production_id = 156), - [12703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, .production_id = 156), - [12705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3890), - [12708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 106), - [12710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 106), - [12712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), - [12714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 116), - [12716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 116), - [12718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 114), - [12720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 114), - [12722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 111), - [12724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 111), - [12726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [12728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 108), - [12730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 108), - [12732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [12734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 145), - [12736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 145), - [12738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3866), - [12741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 82), - [12743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 82), - [12745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 78), - [12747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 78), - [12749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6664), - [12751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), - [12753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [12755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [12757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [12759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), - [12761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3624), - [12764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3624), - [12767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(1090), - [12770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3769), - [12773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(6117), - [12776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), - [12778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6109), - [12780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), - [12782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3618), - [12785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1111), - [12788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(6109), - [12791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3877), - [12794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3689), - [12797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(7274), - [12800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3689), - [12803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1117), - [12806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(7274), - [12809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(6104), - [12812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2), SHIFT_REPEAT(6664), - [12815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(5410), - [12818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [12820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 137), - [12822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 137), - [12824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [12826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [12828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 104), - [12830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 104), - [12832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), - [12834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [12836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [12838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), - [12840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [12842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), - [12844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3884), - [12847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5529), - [12849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6487), - [12851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(5529), - [12854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7022), - [12856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 3, .production_id = 49), - [12858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6258), - [12860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7397), - [12862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7397), - [12864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), - [12866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), - [12868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6825), - [12870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 4, .production_id = 51), - [12872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6279), - [12874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7102), - [12876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 4, .production_id = 64), - [12878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6275), - [12880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3629), - [12883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(7397), - [12886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3629), - [12889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(1178), - [12892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(7397), - [12895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(6105), - [12898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(5506), - [12901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [12903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(5512), - [12906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [12908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5607), - [12910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6214), - [12912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5787), - [12914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6222), - [12916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), - [12918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), - [12920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6467), - [12922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6451), - [12924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), - [12926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), - [12928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), - [12930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [12932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(5607), - [12935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(446), - [12938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), - [12940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), - [12942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), - [12944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6404), - [12946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6445), - [12948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [12950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [12952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [12954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), - [12956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [12958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [12960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [12962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [12964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [12966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [12968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [12970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [12972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [12974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [12976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [12978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [12980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT(439), - [12983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [12985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [12987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3880), - [12990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3880), - [12993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [12995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [12997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [12999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7514), - [13001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [13003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [13005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3634), - [13008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(1654), - [13011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(3739), - [13014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2), SHIFT_REPEAT(6155), - [13017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(439), - [13020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(439), - [13023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [13025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [13027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [13029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7487), - [13031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5701), - [13033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(5701), - [13036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [13038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), - [13040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), - [13042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [13044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6503), - [13046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6504), - [13048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6504), - [13050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), - [13052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6478), - [13054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6448), - [13056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), - [13058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), - [13060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4209), - [13062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6002), - [13064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [13066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6127), - [13068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), - [13070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [13072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [13074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [13076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), - [13078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [13080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6049), - [13082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [13084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6057), - [13086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), - [13088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5962), - [13090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), - [13092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6042), - [13094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), - [13096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), - [13098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6520), - [13100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6065), - [13102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), - [13104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5978), - [13106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4379), - [13108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6052), - [13110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), - [13112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5872), - [13114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [13116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5871), - [13118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6510), - [13120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6040), - [13122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [13124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6022), - [13126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [13128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5869), - [13130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [13132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5948), - [13134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), - [13136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6025), - [13138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [13140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5877), - [13142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), - [13144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5878), - [13146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [13148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5886), - [13150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [13152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6064), - [13154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [13156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6026), - [13158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4391), - [13160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6079), - [13162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), - [13164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5882), - [13166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [13168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5885), - [13170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [13172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6075), - [13174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), - [13176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5896), - [13178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [13180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5902), - [13182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [13184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5891), - [13186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), - [13188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5888), - [13190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), - [13192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5910), - [13194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [13196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5866), - [13198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [13200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), - [13202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [13204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5938), - [13206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [13208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5914), - [13210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [13212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6013), - [13214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [13216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5922), - [13218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4842), - [13220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5893), - [13222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [13224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5932), - [13226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4847), - [13228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5928), - [13230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [13232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5898), - [13234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [13236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5911), - [13238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), - [13240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5993), - [13242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [13244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5887), - [13246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6243), - [13248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5904), - [13250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [13252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5944), - [13254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), - [13256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5901), - [13258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [13260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5970), - [13262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), - [13264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5917), - [13266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [13268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5906), - [13270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), - [13272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5913), - [13274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), - [13276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), - [13278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5152), - [13280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6059), - [13282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [13284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5934), - [13286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [13288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), - [13290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [13292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5909), - [13294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [13296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5912), - [13298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5468), - [13300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5963), - [13302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), - [13304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5977), - [13306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [13308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5984), - [13310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [13312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5918), - [13314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), - [13316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5988), - [13318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [13320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5942), - [13322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5482), - [13324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(4207), - [13327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(4209), - [13330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(6098), - [13333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [13335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(6127), - [13338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(4652), - [13341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(196), - [13344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(197), - [13347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(198), - [13350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5927), - [13352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), - [13354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5931), - [13356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), - [13358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), - [13360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4436), - [13362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6020), - [13364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [13366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5939), - [13368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4434), - [13370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5941), - [13372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4426), - [13374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5943), - [13376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4424), - [13378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), - [13380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [13382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5951), - [13384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [13386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), - [13388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), - [13390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), - [13392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [13394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5987), - [13396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [13398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6003), - [13400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [13402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), - [13404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4753), - [13406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6056), - [13408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [13410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5966), - [13412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [13414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5985), - [13416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [13418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5967), - [13420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [13422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5868), - [13424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6209), - [13426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5972), - [13428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [13430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5975), - [13432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [13434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), - [13436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [13438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5983), - [13440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [13442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5986), - [13444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [13446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5989), - [13448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [13450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6031), - [13452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [13454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5990), - [13456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [13458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5999), - [13460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), - [13462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), - [13464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4326), - [13466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5998), - [13468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4323), - [13470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5899), - [13472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [13474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6004), - [13476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), - [13478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6001), - [13480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [13482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6017), - [13484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5294), - [13486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6006), - [13488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [13490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), - [13492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), - [13494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5890), - [13496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), - [13498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6010), - [13500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), - [13502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6011), - [13504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [13506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6015), - [13508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [13510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6016), - [13512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), - [13514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6019), - [13516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4496), - [13518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6021), - [13520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [13522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6077), - [13524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [13526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6023), - [13528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [13530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6043), - [13532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6317), - [13534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6029), - [13536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [13538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6032), - [13540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [13542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6037), - [13544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [13546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6041), - [13548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [13550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6046), - [13552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [13554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6074), - [13556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6306), - [13558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6069), - [13560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [13562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6050), - [13564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [13566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6055), - [13568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [13570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6058), - [13572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [13574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6062), - [13576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6767), - [13578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6068), - [13580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6765), - [13582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6073), - [13584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5430), - [13586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6033), - [13588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [13590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6076), - [13592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5452), - [13594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6080), - [13596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), - [13598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6083), - [13600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), - [13602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), - [13604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6663), - [13606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), - [13608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5510), - [13610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6087), - [13612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5507), - [13614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6081), - [13616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), - [13618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6072), - [13620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), - [13622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6063), - [13624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [13626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), - [13628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6645), - [13630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6054), - [13632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [13634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6045), - [13636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), - [13638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6036), - [13640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), - [13642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6027), - [13644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), - [13646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6018), - [13648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [13650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6009), - [13652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5663), - [13654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6000), - [13656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5618), - [13658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5991), - [13660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), - [13662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5874), - [13664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [13666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5959), - [13668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [13670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5982), - [13672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), - [13674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5947), - [13676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6514), - [13678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5880), - [13680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), - [13682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), - [13684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [13686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5964), - [13688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), - [13690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), - [13692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), - [13694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5946), - [13696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5472), - [13698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), - [13700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6515), - [13702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5897), - [13704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), - [13706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5889), - [13708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4333), - [13710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5905), - [13712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), - [13714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5881), - [13716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), - [13718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5937), - [13720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6564), - [13722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5929), - [13724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6573), - [13726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5921), - [13728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), - [13730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6143), - [13732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6125), - [13734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6140), - [13736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), - [13738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6509), - [13740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [13742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6518), - [13744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [13746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), - [13748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [13750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6244), - [13752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), - [13754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), - [13756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [13758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [13760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [13762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), - [13764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), - [13766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [13768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [13770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), - [13772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), - [13774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), - [13776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6507), - [13778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5827), - [13780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6506), - [13782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), - [13784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [13786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4825), - [13788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [13790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), - [13792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), - [13794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6557), - [13796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4432), - [13798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5464), - [13800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [13802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [13804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4739), - [13806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), - [13808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5497), - [13810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [13812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [13814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [13816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), - [13818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [13820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [13822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), - [13824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [13826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [13828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [13830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [13832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), - [13834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6635), - [13836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), - [13838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [13840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [13842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [13844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [13846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), - [13848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5666), - [13850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [13852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [13854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4516), - [13856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5288), - [13858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [13860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [13862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), - [13864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [13866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [13868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [13870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [13872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [13874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), - [13876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), - [13878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [13880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [13882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), - [13884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [13886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6753), - [13888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [13890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4564), - [13892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5439), - [13894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6293), - [13896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [13898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [13900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), - [13902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5513), - [13904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), - [13906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7292), - [13908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [13910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [13912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7292), - [13914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [13916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [13918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7205), - [13920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [13922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [13924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7205), - [13926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [13928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), - [13930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [13932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [13934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [13936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [13938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [13940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [13942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), - [13944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), - [13946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7517), - [13948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [13950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [13952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7517), - [13954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [13956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), - [13958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [5075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [5077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [5081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6606), + [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), + [5086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), + [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [5094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [5098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6601), + [5101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [5105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [5109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5329), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [5119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6059), + [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), + [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5455), + [5129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6317), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [5133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7637), + [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [5159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3740), + [5162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3740), + [5165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, 0, 25), + [5167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, 0, 25), + [5169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [5173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, 0, 24), + [5175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, 0, 24), + [5177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [5181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [5195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6018), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), + [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6252), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), + [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7646), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [5223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3894), + [5226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3894), + [5229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2664), + [5232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4130), + [5235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4131), + [5238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6018), + [5241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2702), + [5244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5730), + [5247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2664), + [5250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2888), + [5253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6252), + [5256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4754), + [5259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(337), + [5262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(338), + [5265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(339), + [5268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(280), + [5271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2663), + [5274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7646), + [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5261), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [5283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5971), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), + [5291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5489), + [5293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6356), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), + [5297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7649), + [5309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), + [5315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1, 0, 1), + [5317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1, 0, 1), + [5319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1, 0, 0), + [5321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1, 0, 0), + [5323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1, 0, 1), + [5325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1, 0, 1), + [5327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1, 0, 0), + [5329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1, 0, 0), + [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [5339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5803), + [5341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [5345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5809), + [5349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [5353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [5355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1244), + [5358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7395), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [5365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3964), + [5368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3964), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [5375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3965), + [5378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3965), + [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5392), + [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), + [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), + [5391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1256), + [5394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7485), + [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [5401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, 0, 3), + [5403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, 0, 3), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [5407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [5411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [5415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1403), + [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5431), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5925), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), + [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5504), + [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6342), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), + [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7647), + [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5453), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [5470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extglob_blob, 1, 0, 0), + [5472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__extglob_blob, 1, 0, 0), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [5484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1428), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [5489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3978), + [5492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3978), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [5497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3977), + [5500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3977), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [5505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [5507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1, 0, 1), + [5509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1, 0, 1), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [5513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1, 0, 0), + [5515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1, 0, 0), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [5521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3967), + [5524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3967), + [5527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1456), + [5530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3973), + [5533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3973), + [5536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1552), + [5539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [5543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [5547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [5553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [5555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5712), + [5557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [5561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [5565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [5571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3868), + [5574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3868), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [5579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3879), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [5587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, 0, 9), + [5589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, 0, 9), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [5593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, 0, 22), + [5595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, 0, 22), + [5597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3979), + [5600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3979), + [5603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3879), + [5606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3879), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), + [5613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), + [5615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), + [5617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6015), + [5619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), + [5621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), + [5623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6311), + [5625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4712), + [5627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [5629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [5631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [5633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7643), + [5639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3017), + [5642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4124), + [5645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4125), + [5648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6015), + [5651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3023), + [5654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5712), + [5657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3263), + [5660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6311), + [5663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4712), + [5666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(317), + [5669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(318), + [5672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(319), + [5675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(268), + [5678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3016), + [5681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7643), + [5684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1650), + [5687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [5695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [5699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1526), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [5718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3782), + [5721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3782), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [5728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3703), + [5731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3703), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [5736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3985), + [5739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3985), + [5742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3971), + [5745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3971), + [5748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1705), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [5765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [5767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5609), + [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), + [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), + [5773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6009), + [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5523), + [5777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5717), + [5779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5643), + [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6283), + [5783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4719), + [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [5791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7644), + [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5570), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), + [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [5815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), + [5818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3981), + [5821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3981), + [5824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [5830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3889), + [5833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3889), + [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [5838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_expression, 2, 0, 66), + [5840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6611), + [5843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_pipeline, 2, 0, 0), + [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [5849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 3), + [5851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), + [5853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), REDUCE(aux_sym_command_repeat1, 1, 0, 3), + [5856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), + [5858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), REDUCE(aux_sym_command_repeat1, 1, 0, 3), + [5861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 3), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [5867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [5871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [5873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [5875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [5879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1778), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [5888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [5890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [5896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3928), + [5899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3928), + [5902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1788), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [5921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3943), + [5924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3943), + [5927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negated_command, 2, 0, 0), + [5929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negated_command, 2, 0, 0), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [5939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1793), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [5946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3730), + [5949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3730), + [5952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7512), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [5963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [5967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3921), + [5970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3921), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [5977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [5983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3940), + [5986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3940), + [5989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [5997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [5999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6834), + [6003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [6005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2238), + [6008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [6012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7273), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7273), + [6016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6604), + [6019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1957), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [6024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1977), + [6027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1984), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [6046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2147), + [6049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2160), + [6052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2164), + [6055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3476), + [6058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4066), + [6061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4067), + [6064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5886), + [6067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3472), + [6070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5788), + [6073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3476), + [6076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3518), + [6079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6333), + [6082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4839), + [6085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(190), + [6088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(191), + [6091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(192), + [6094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(173), + [6097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3475), + [6100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7619), + [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [6107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [6111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3918), + [6114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1723), + [6117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1096), + [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [6122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2318), + [6125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2336), + [6128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2308), + [6131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [6135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2271), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [6142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1700), + [6145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1108), + [6148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6231), + [6151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(516), + [6154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1638), + [6157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1829), + [6160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2904), + [6163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3231), + [6166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6154), + [6169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6543), + [6172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1195), + [6175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2659), + [6178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3043), + [6181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2678), + [6184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1510), + [6187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1908), + [6190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1200), + [6193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3507), + [6196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2431), + [6199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(488), + [6202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2521), + [6205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2686), + [6208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2274), + [6211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2209), + [6214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3311), + [6217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1953), + [6220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4507), + [6223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1758), + [6226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4264), + [6229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5197), + [6232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3177), + [6235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4743), + [6238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2058), + [6241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1771), + [6244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6491), + [6247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2574), + [6250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2727), + [6253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5471), + [6256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2451), + [6259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5371), + [6262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6210), + [6265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6519), + [6268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4298), + [6271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3367), + [6274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2494), + [6277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6629), + [6280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5414), + [6283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2863), + [6286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6436), + [6289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3422), + [6292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5691), + [6295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2642), + [6298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2800), + [6301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(870), + [6304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2833), + [6307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5512), + [6310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2694), + [6313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5404), + [6316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6238), + [6319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1234), + [6322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1169), + [6325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1332), + [6328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(934), + [6331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1565), + [6334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4544), + [6337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1368), + [6340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4410), + [6343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(944), + [6346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4291), + [6349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1394), + [6352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1400), + [6355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1519), + [6358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1022), + [6361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1843), + [6364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4824), + [6367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1540), + [6370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4420), + [6373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4424), + [6376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [6382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [6388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [6406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2270), + [6409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2278), + [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [6424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3915), + [6427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), + [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), + [6433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [6437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [6441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4104), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [6450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3900), + [6453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [6455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2402), + [6458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2351), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [6471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2353), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [6476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6312), + [6478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), + [6480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), + [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [6484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4890), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), + [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6032), + [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6337), + [6494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5858), + [6496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6546), + [6498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6344), + [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), + [6502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6288), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7634), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [6520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [6522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5690), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [6526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5694), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [6534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [6536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [6540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [6542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4933), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [6546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, 0, 0), + [6548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, 0, 0), + [6550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2529), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), + [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), + [6557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4934), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [6571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5656), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), + [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5696), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), + [6585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4984), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), + [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5088), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [6595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), + [6597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [6605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), + [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5089), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [6615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3907), + [6618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3952), + [6621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3947), + [6624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4882), + [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [6630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_literal, 1, 0, 0), + [6632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_literal, 1, 0, 0), + [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), + [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5116), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [6640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), + [6642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5034), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [6646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), + [6648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4883), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [6660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3962), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [6671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7466), + [6675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3817), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7477), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7250), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [6702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2717), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7417), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6381), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6889), + [6717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3849), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [6724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3948), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [6743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2681), + [6746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2687), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [6751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extglob_blob, 2, 0, 0), + [6753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__extglob_blob, 2, 0, 0), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [6761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3911), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6661), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7104), + [6770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2907), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [6775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), + [6777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), + [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [6793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 43), + [6795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 43), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [6801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3960), + [6804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2935), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [6811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2, 0, 27), + [6813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2, 0, 27), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [6817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 41), + [6819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 41), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [6823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2847), + [6826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 12), + [6828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 12), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [6832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2869), + [6835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 40), + [6837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 40), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [6843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2898), + [6846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extglob_blob, 3, 0, 0), + [6848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__extglob_blob, 3, 0, 0), + [6850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [6852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [6854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2928), + [6857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 40), + [6859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 40), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [6863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 41), + [6865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 41), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [6873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [6877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [6881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [6885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [6887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [6889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [6891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [6899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), + [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), + [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), + [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), + [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), + [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6525), + [6939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_binary_expression, 3, 0, 43), + [6941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_binary_expression, 3, 0, 43), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [6953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_unary_expression, 2, 0, 12), + [6955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_unary_expression, 2, 0, 12), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7465), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6672), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), + [6967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, 0, 7), + [6969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, 0, 7), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [6977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3012), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [7006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4360), + [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5795), + [7010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), + [7024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, 0, 76), + [7026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 76), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [7040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, 0, 5), + [7042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, 0, 5), + [7044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, 0, 6), + [7046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, 0, 6), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), + [7052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 40), + [7054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 40), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [7060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2959), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7451), + [7071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 41), + [7073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 41), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), + [7077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4439), + [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4438), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7237), + [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4564), + [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6219), + [7119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_ternary_expression, 5, 0, 76), + [7121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_ternary_expression, 5, 0, 76), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7386), + [7131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_parenthesized_expression, 3, 0, 0), + [7133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_parenthesized_expression, 3, 0, 0), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [7137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3150), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7096), + [7144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [7150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_postfix_expression, 2, 0, 27), + [7152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_postfix_expression, 2, 0, 27), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6888), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), + [7164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 0), + [7166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4959), + [7168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 0), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [7172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [7176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [7180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [7184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [7186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [7190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4379), + [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5650), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6337), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [7216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5654), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [7220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [7222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [7224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [7228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [7232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [7234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [7236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [7238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [7244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [7246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [7248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [7250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [7260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [7262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [7266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [7270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [7272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [7274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), + [7282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [7290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [7292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [7294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [7298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [7306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [7318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [7326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [7328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [7330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [7334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [7338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [7340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [7342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [7344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [7352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [7362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [7370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [7372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [7382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4947), + [7384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4948), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [7392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression, 1, 0, 0), + [7394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [7396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5235), + [7398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5125), + [7400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5154), + [7402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), + [7404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), + [7406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), + [7408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), + [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), + [7412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), + [7414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), + [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), + [7418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), + [7420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression, 1, 0, 0), + [7422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5099), + [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5104), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6750), + [7430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), + [7432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), + [7434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(3671), + [7437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(3671), + [7440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(2044), + [7443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(3841), + [7446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(6137), + [7449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(6591), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [7456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4766), + [7458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4763), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [7466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [7470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 7), + [7472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 7), + [7474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), + [7476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5827), + [7478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4565), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [7484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arithmetic_expansion_repeat1, 2, 0, 0), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [7490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4989), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), + [7504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_parenthesized_expression, 3, 0, 0), + [7506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_parenthesized_expression, 3, 0, 0), + [7508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_binary_expression, 3, 0, 43), + [7510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_binary_expression, 3, 0, 43), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [7516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [7522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_unary_expression, 2, 0, 12), + [7524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_unary_expression, 2, 0, 12), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [7528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4891), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [7532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4986), + [7534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 5), + [7536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 5), + [7538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4988), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [7542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_postfix_expression, 2, 0, 27), + [7544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_postfix_expression, 2, 0, 27), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [7548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_parenthesized_expression, 4, 0, 0), + [7550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_parenthesized_expression, 4, 0, 0), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [7554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3427), + [7557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3957), + [7560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3957), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [7567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [7577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), + [7579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), + [7581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [7585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [7589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), + [7591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), + [7593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [7595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [7603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5244), + [7605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), + [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4483), + [7609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4482), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [7613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), + [7615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), + [7617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), + [7621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), + [7625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), + [7627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), + [7629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4392), + [7631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5791), + [7633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4391), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), + [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), + [7647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), + [7649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5167), + [7651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), + [7655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5173), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [7659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5174), + [7661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5175), + [7663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), + [7665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [7669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), + [7671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), + [7673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), + [7675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), + [7677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [7685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), + [7687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), + [7689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [7693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), + [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), + [7713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [7715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [7717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [7719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [7725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [7727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [7729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [7733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [7741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [7751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), + [7753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6768), + [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6768), + [7757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), + [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [7761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3497), + [7764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), + [7766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [7774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [7778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6450), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [7782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), + [7786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6045), + [7788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6680), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6450), + [7794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6247), + [7796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6310), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [7800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 2, 0, 49), + [7802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6719), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6777), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6446), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7642), + [7818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3897), + [7821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6332), + [7824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4102), + [7827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3601), + [7830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4103), + [7833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6032), + [7836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6337), + [7839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5858), + [7842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6332), + [7845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6546), + [7848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6344), + [7851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4646), + [7854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(257), + [7857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(258), + [7860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(259), + [7863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(233), + [7866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6318), + [7869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6182), + [7872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7634), + [7875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6458), + [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), + [7879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 89), + [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6749), + [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6398), + [7885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6442), + [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), + [7889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, 0, 51), + [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6790), + [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), + [7895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6754), + [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6754), + [7899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6742), + [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6742), + [7903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4539), + [7906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4094), + [7909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4095), + [7912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6012), + [7915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4494), + [7918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5849), + [7921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4703), + [7924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6325), + [7927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4637), + [7930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(246), + [7933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(247), + [7936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(248), + [7939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(221), + [7942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4537), + [7945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7631), + [7948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6747), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6747), + [7952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [7956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [7960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6076), + [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), + [7968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), + [7970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6285), + [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [7974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [7982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), + [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), + [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), + [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), + [7990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [7994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), + [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [8012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [8018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), + [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [8022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), + [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [8026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5872), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), + [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [8034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), + [8036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6330), + [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), + [8040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [8048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), + [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), + [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7659), + [8056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), + [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [8060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), + [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), + [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [8078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [8084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [8088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [8092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6037), + [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), + [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [8100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [8102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6355), + [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), + [8106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [8114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7615), + [8122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), + [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [8126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), + [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [8130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6083), + [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), + [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5483), + [8140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6307), + [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), + [8144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [8152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), + [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), + [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), + [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7641), + [8160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4323), + [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [8164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [8168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5866), + [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), + [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), + [8176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), + [8178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6351), + [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [8182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [8190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4899), + [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), + [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7668), + [8198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5234), + [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), + [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), + [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), + [8206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [8210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), + [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), + [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), + [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [8228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [8234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [8238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), + [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), + [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [8256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [8262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [8270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), + [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), + [8278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [8286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), + [8290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), + [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [8294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6022), + [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), + [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [8302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [8304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6256), + [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), + [8308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [8316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7650), + [8324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [8332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), + [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [8336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [8340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5886), + [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), + [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [8348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), + [8350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6333), + [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), + [8354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [8362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7619), + [8370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [8374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), + [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [8378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6039), + [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), + [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [8386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [8388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6353), + [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [8392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [8400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7635), + [8408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [8412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [8416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5944), + [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), + [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [8424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [8426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6315), + [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [8430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [8438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7604), + [8446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [8448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [8452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), + [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [8458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4530), + [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [8466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), + [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [8474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [8482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [8486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [8490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), + [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), + [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [8498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [8500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6257), + [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), + [8504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [8512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7660), + [8520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6732), + [8522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6188), + [8524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6197), + [8526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5350), + [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), + [8530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, 0, 12), + [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), + [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6938), + [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), + [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), + [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6732), + [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), + [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [8546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3559), + [8549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1, 0, 0), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), + [8553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5366), + [8555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5834), + [8557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5365), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), + [8561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, 0, 33), + [8563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1, 0, 13), + [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6472), + [8567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [8575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6005), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), + [8583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), + [8585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6299), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), + [8589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7630), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), + [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6429), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6448), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [8613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5215), + [8615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5843), + [8617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), + [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6464), + [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6443), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), + [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [8639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6366), + [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6366), + [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6276), + [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6529), + [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [8649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6380), + [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), + [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), + [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [8659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5463), + [8661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5741), + [8663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5462), + [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), + [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [8669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(5109), + [8672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(4094), + [8675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), + [8677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(4095), + [8680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(6012), + [8683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(5085), + [8686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(5849), + [8689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(4703), + [8692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(6325), + [8695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(4637), + [8698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(246), + [8701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(247), + [8704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(248), + [8707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(221), + [8710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(5039), + [8713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(7631), + [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), + [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), + [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [8726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5413), + [8728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5739), + [8730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5412), + [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), + [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), + [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6493), + [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), + [8748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6326), + [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6326), + [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), + [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), + [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), + [8760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5119), + [8763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4092), + [8766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4093), + [8769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6005), + [8772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5115), + [8775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5843), + [8778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5119), + [8781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5172), + [8784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6299), + [8787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4628), + [8790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(238), + [8793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(239), + [8796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(240), + [8799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(217), + [8802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5108), + [8805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7630), + [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), + [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6447), + [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), + [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), + [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), + [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [8854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), + [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), + [8858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), + [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [8864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), + [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), + [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), + [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6424), + [8910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [8916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5539), + [8918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5734), + [8920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5538), + [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), + [8924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), + [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), + [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), + [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [8950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [8956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5893), + [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), + [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [8964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [8966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6268), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), + [8970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7620), + [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), + [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), + [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [9000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), + [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), + [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), + [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), + [9026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), + [9028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5703), + [9030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5491), + [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), + [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [9038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [9044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [9062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), + [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), + [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), + [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), + [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), + [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [9134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [9142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), + [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), + [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [9166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), + [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [9192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [9198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [9228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [9236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), + [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), + [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [9260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [9268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [9270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [9276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [9278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [9280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [9286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [9288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5487), + [9290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), + [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), + [9296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5486), + [9298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), + [9300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [9302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [9308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [9310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [9316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [9318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [9320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [9326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [9328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [9334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [9336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [9344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [9348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6103), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), + [9352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), + [9354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6304), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [9364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [9368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [9370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), + [9372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [9374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [9376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), + [9378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [9380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [9386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), + [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [9402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [9404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [9406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), + [9408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), + [9410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [9412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [9414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), + [9416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), + [9418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [9420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [9422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [9424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [9430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [9438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), + [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [9442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6115), + [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), + [9446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [9448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6259), + [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), + [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [9458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), + [9460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [9462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), + [9464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [9466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [9472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [9474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), + [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [9494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [9496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [9498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [9504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [9506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [9508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4478), + [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [9514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), + [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), + [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), + [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [9530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), + [9532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), + [9534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [9536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [9538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [9540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), + [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), + [9546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), + [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), + [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [9562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4273), + [9564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [9566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [9572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [9574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [9576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [9582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [9584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [9586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), + [9588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), + [9590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [9596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), + [9598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), + [9600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [9602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [9604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [9606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [9608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [9610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [9616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [9618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [9620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [9622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [9624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [9626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [9628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [9630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [9632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [9638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [9640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [9642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), + [9644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), + [9650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), + [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), + [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [9666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [9668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [9670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [9672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [9674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [9676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [9678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [9684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [9686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [9688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [9690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [9696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [9698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [9700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4704), + [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [9706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), + [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), + [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), + [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), + [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), + [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [9722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4702), + [9724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), + [9726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [9728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [9730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [9732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [9734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [9740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [9742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [9744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [9746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [9748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [9754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [9756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [9758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4467), + [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [9764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), + [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), + [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), + [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [9780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4464), + [9782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [9784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [9786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [9792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [9794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4487), + [9796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), + [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [9802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), + [9804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [9806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [9808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [9814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [9816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [9824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), + [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [9828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6116), + [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), + [9832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [9834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6350), + [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), + [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [9844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [9846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [9852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [9854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [9856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [9858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [9864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), + [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), + [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [9880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [9882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [9888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [9894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [9896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [9902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [9904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [9906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [9908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [9910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [9912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), + [9914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [9916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [9918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [9920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), + [9922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [9924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), + [9926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [9928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), + [9930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), + [9932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [9934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [9936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [9942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [9944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [9946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [9948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [9950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [9956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [9958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [9960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [9962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [9964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [9966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [9968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [9970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [9972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [9974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [9976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [9978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [9980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [9982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4446), + [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [9988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), + [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), + [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), + [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [10004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4445), + [10006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [10008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), + [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [10014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), + [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [10030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), + [10032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [10034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4640), + [10036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), + [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [10042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), + [10044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), + [10046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [10048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [10054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [10056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [10058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [10060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [10066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [10068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [10070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), + [10072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), + [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), + [10078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), + [10080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [10082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), + [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [10088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [10094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), + [10096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [10102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), + [10104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [10106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [10108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [10110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [10112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [10114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [10116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [10118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [10120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [10122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [10124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [10126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [10128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [10130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [10132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), + [10134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), + [10136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [10138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [10140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), + [10142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [10148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [10154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [10156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [10158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [10160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), + [10162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), + [10164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), + [10166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [10168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [10170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [10172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [10178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [10180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4674), + [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), + [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), + [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), + [10188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), + [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), + [10194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [10196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), + [10198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [10200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), + [10202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [10204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), + [10206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [10208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [10214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [10220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), + [10222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4562), + [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), + [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [10230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), + [10232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [10234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [10236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [10238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [10242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [10244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [10246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [10248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [10254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [10260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5335), + [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), + [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), + [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), + [10268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), + [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), + [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [10274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [10280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [10286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), + [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), + [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), + [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), + [10294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), + [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), + [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [10300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [10302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [10308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [10310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [10312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [10318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [10324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [10330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [10332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5552), + [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), + [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), + [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), + [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), + [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5551), + [10354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5591), + [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), + [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), + [10360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [10366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [10368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5423), + [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), + [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), + [10374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5425), + [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), + [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), + [10380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [10386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [10388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5358), + [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), + [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), + [10394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5376), + [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), + [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), + [10400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [10406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [10408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [10414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [10420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), + [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), + [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [10428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [10430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), + [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [10436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [10442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [10444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [10450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [10452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [10456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [10458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4244), + [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [10466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), + [10468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), + [10472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), + [10474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), + [10478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), + [10480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [10482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [10486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [10488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [10492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4427), + [10494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [10496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [10498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [10500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [10502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [10504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [10506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [10508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [10510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [10512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), + [10514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [10516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [10518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [10520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), + [10522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [10524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [10526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6506), + [10528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6505), + [10530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), + [10532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6505), + [10534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [10536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [10538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [10540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [10542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [10544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [10546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [10548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [10550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [10552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5433), + [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), + [10556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [10558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5432), + [10560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [10562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [10566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [10568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [10570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5347), + [10572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), + [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), + [10576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5346), + [10578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [10580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), + [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), + [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), + [10586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5449), + [10588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), + [10590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [10594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [10596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5658), + [10598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), + [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), + [10602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5657), + [10604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [10610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [10612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), + [10614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [10618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), + [10620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5526), + [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [10624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), + [10626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5525), + [10628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [10630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [10632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [10634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [10636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [10638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [10640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [10642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [10644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [10646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [10648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [10650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [10652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [10654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), + [10656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), + [10658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [10660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [10662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [10664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [10666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [10668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [10670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4800), + [10672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), + [10676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [10678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4804), + [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), + [10682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), + [10684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), + [10686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [10688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [10690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [10692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), + [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [10698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [10700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [10704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [10706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [10708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [10710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [10712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), + [10714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), + [10716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [10718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), + [10720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [10722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), + [10724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6232), + [10726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [10728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [10730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5987), + [10732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6221), + [10734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), + [10736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6232), + [10738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6207), + [10740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6249), + [10742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), + [10744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [10748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [10752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6221), + [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), + [10756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [10758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [10760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [10762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [10764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [10766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [10768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5007), + [10770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [10772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), + [10774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), + [10776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5011), + [10778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), + [10780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), + [10782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4836), + [10784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [10786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), + [10788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), + [10790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4838), + [10792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), + [10794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), + [10796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [10798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [10800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [10802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [10804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [10808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [10810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [10812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [10814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4850), + [10816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [10818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), + [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), + [10822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4854), + [10824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), + [10826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), + [10828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), + [10830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [10832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), + [10834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [10836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), + [10838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [10840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [10842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), + [10844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), + [10846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [10848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [10850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), + [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [10854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), + [10856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), + [10858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), + [10860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), + [10862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), + [10864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5240), + [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), + [10868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), + [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [10872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5242), + [10874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), + [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), + [10878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [10880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [10882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), + [10884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [10886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [10888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [10890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), + [10892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [10894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [10896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [10898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [10900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), + [10902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [10904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [10906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), + [10908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), + [10910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), + [10912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), + [10914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), + [10916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [10918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [10920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), + [10922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [10924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [10926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [10928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [10930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [10932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [10934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [10936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), + [10938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), + [10940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [10942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), + [10944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [10946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [10948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), + [10950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), + [10952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [10954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5698), + [10956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5516), + [10958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [10960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), + [10962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5700), + [10964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [10966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [10968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [10970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [10972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [10974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), + [10976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), + [10978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), + [10980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [10982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [10984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [10986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [10988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [10990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [10992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), + [10994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [10996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [10998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), + [11000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [11002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), + [11004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [11006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [11008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [11010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [11012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5517), + [11014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [11016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [11018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [11020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), + [11022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [11024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [11026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), + [11028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [11030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [11032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [11034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [11036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), + [11038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [11040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [11042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [11044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [11046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [11048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [11050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), + [11052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [11054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), + [11056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), + [11058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [11060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [11062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [11064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [11066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), + [11068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [11070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [11072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [11074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [11076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), + [11078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6202), + [11080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), + [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), + [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), + [11086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [11088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [11090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), + [11092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), + [11094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), + [11096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [11098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [11100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [11102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [11104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [11106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [11108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [11110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [11112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), + [11114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [11116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), + [11118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [11120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [11122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [11124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), + [11126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), + [11128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [11130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), + [11132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [11134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [11136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [11138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), + [11140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), + [11142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [11144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [11146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), + [11148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [11150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), + [11152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), + [11154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), + [11156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), + [11158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), + [11160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [11162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), + [11164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [11166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [11168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [11170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [11172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [11178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [11180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6204), + [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), + [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), + [11186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), + [11188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), + [11190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), + [11192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [11194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [11196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [11198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), + [11200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), + [11202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [11204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [11206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6198), + [11208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), + [11210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6193), + [11212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [11214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [11216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [11218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [11220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [11222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [11224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6190), + [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), + [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), + [11230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [11232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [11234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), + [11236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), + [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [11240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5619), + [11242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5629), + [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), + [11246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [11248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [11250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), + [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), + [11254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), + [11256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5129), + [11258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4992), + [11260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), + [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [11264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6102), + [11266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5763), + [11268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), + [11270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6282), + [11272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), + [11274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [11276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [11278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [11280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), + [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [11284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), + [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [11288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), + [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [11292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), + [11294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), + [11296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6616), + [11299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), + [11301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [11303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4215), + [11305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6093), + [11307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignments, 2, 0, 0), + [11309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignments, 2, 0, 0), + [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6616), + [11313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3976), + [11316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3976), + [11319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [11321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4617), + [11323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), + [11325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [11327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3932), + [11330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3932), + [11333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3954), + [11336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3954), + [11339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3974), + [11342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3974), + [11345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4658), + [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), + [11349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 1, -1, 3), + [11351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [11353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [11355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 1, -1, 3), + [11357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), + [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), + [11361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), + [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [11365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), + [11367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3659), + [11370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(622), + [11373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), + [11375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3933), + [11378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6135), + [11381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), + [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [11389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4785), + [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), + [11393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4477), + [11396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), + [11398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), + [11400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3654), + [11403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7486), + [11406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(665), + [11409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), + [11411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6114), + [11414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 54), + [11416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 54), + [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), + [11420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6623), + [11423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4513), + [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [11430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), + [11432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [11436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3924), + [11439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3924), + [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [11446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), + [11448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 61), + [11450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 61), + [11452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), + [11454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), + [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [11458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), + [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [11464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 29), + [11466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 29), + [11468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), + [11470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [11472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), + [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), + [11476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4567), + [11478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3986), + [11481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3986), + [11484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [11486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [11488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [11490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), + [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), + [11494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4477), + [11496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [11498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3972), + [11501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3972), + [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [11506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3987), + [11509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3987), + [11512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), + [11514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4567), + [11517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4559), + [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), + [11522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), + [11524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [11526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), + [11528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3692), + [11531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(675), + [11534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3944), + [11537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6128), + [11540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), + [11542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), + [11546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 2, -1, 14), + [11548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 2, -1, 14), + [11550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), + [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [11554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4616), + [11557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4673), + [11559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [11561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [11563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), + [11565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), + [11567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), + [11569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [11571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [11573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), + [11575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), + [11577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3619), + [11580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(718), + [11583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4002), + [11586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6133), + [11589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4673), + [11592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [11594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), + [11596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [11598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3983), + [11601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3983), + [11604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), + [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [11612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), + [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [11616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [11620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [11622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), + [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [11626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [11628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3938), + [11631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3938), + [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), + [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [11638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [11640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [11642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), + [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), + [11646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [11650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [11654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), + [11656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3639), + [11659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(796), + [11662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4029), + [11665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6131), + [11668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3685), + [11671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(769), + [11674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3890), + [11677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6125), + [11680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4695), + [11683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4722), + [11686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3681), + [11689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7513), + [11692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(748), + [11695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6101), + [11698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [11700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [11702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), + [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), + [11706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6589), + [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6597), + [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6589), + [11717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6597), + [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), + [11722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6606), + [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [11727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), + [11729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [11731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), + [11733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), + [11735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [11741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), + [11743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [11745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 131), + [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), + [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), + [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [11753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6100), + [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), + [11757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [11759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6289), + [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), + [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [11765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [11767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [11769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6138), + [11771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [11773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [11775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 71), + [11777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 3, 0, 30), + [11779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 3, 0, 30), + [11781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [11783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [11785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [11787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 3, 0, 0), + [11789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 3, 0, 0), + [11791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 73), + [11793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [11795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 44), + [11797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 44), + [11799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [11801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [11803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), + [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), + [11807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3657), + [11810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(790), + [11813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4019), + [11816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6134), + [11819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), + [11821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 2, 0, 0), + [11823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 2, 0, 0), + [11825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [11829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), + [11831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), + [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), + [11835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [11837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [11839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [11841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT(439), + [11844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [11846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4900), + [11849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6545), + [11851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [11853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [11855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [11857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [11859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [11861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [11863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), + [11865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [11867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6099), + [11869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, 0, 57), + [11871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [11873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 28), + [11875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 28), + [11877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4900), + [11879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [11883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), + [11885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 44), + [11887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 44), + [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6215), + [11891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), + [11893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), + [11895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 2, 0, 0), + [11897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [11899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), + [11901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3697), + [11904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7068), + [11907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(811), + [11910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6099), + [11913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), + [11917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, 0, 44), + [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [11921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 3, 0, 0), + [11923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 3, 0, 0), + [11925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [11927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [11929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 2, 0, 0), + [11931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 2, 0, 0), + [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), + [11935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), + [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [11943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 44), + [11945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 44), + [11947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [11949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), + [11951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), + [11953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), + [11955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), + [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), + [11959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3615), + [11962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(778), + [11965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6113), + [11968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(442), + [11971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 97), + [11973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 99), + [11975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [11977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3653), + [11980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(787), + [11983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6104), + [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [11992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 44), + [11994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 44), + [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [12002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subshell, 3, 0, 0), + [12004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subshell, 3, 0, 0), + [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), + [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), + [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), + [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), + [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [12036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 2, 0, 0), + [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [12052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 69), + [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6601), + [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [12060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6601), + [12063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [12065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [12067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), + [12069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), + [12071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [12073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [12075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [12077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [12079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [12081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [12083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [12085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [12087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [12089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [12091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), + [12093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [12095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), + [12097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [12099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [12101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 46), + [12103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 46), + [12105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, 0, 126), + [12107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, 0, 126), + [12109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, 0, 4), + [12111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, 0, 4), + [12113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 6, 0, 68), + [12115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 6, 0, 68), + [12117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, 0, 124), + [12119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, 0, 124), + [12121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_heredoc_body, 2, 0, 0), + [12123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_heredoc_body, 2, 0, 0), + [12125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__heredoc_body, 2, 0, 0), + [12127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_body, 2, 0, 0), + [12129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), + [12131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), + [12133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [12135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6108), + [12137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), + [12139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [12141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6314), + [12143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), + [12145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [12147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [12149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [12151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 45), + [12153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 45), + [12155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 46), + [12157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 46), + [12159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 47), + [12161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 47), + [12163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, 0, 0), + [12165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, 0, 0), + [12167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, 0, 93), + [12169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, 0, 93), + [12171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 45), + [12173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 45), + [12175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 2), + [12177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 2), + [12179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, 0, 94), + [12181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, 0, 94), + [12183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 5, 0, 56), + [12185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 5, 0, 56), + [12187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, 0, 95), + [12189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, 0, 95), + [12191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 4, 0, 0), + [12193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 4, 0, 0), + [12195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5076), + [12197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [12199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [12201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6110), + [12203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 75), + [12205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 75), + [12207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 19), + [12209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 19), + [12211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, 0, 4), + [12213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, 0, 4), + [12215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, 0, 45), + [12217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, 0, 45), + [12219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 65), + [12221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 65), + [12223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, 0, 46), + [12225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, 0, 46), + [12227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 7, 0, 149), + [12229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 7, 0, 149), + [12231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, 0, 45), + [12233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 45), + [12235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, 0, 46), + [12237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 46), + [12239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 84), + [12241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 84), + [12243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 2, -1, 15), + [12245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 2, -1, 15), + [12247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, 0, 45), + [12249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, 0, 45), + [12251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), + [12253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), + [12255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), + [12257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), + [12261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [12263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), + [12265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [12267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [12269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [12271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, 0, 125), + [12273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, 0, 125), + [12275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, 0, 127), + [12277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, 0, 127), + [12279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, 0, 42), + [12281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, 0, 42), + [12283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5076), + [12286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [12288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, 0, 46), + [12290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, 0, 46), + [12292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3636), + [12295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(827), + [12298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6110), + [12301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(449), + [12304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 1, 0, 16), + [12306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 1, 0, 16), + [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [12314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [12316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [12318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(441), + [12321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(446), + [12324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [12326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [12328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), + [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), + [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [12336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(434), + [12339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3935), + [12342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [12344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 1, 0, 17), + [12346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 1, 0, 17), + [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [12350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 144), + [12352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 144), + [12354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 83), + [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [12358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, 0, 81), + [12360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, 0, 81), + [12362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 60), + [12364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 105), + [12366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 105), + [12368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 79), + [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [12372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3953), + [12375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 134), + [12377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 134), + [12379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 79), + [12381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [12383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [12385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [12387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [12389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [12391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), + [12393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), + [12395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [12397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), + [12399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), + [12401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(444), + [12404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 138), + [12406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 138), + [12408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 109), + [12410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 103), + [12412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 103), + [12414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 59), + [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [12426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 110), + [12428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 110), + [12430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 46), + [12432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 107), + [12434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 107), + [12436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 45), + [12438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, 0, 155), + [12440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, 0, 155), + [12442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, 0, 112), + [12444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [12446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [12448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [12450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, 0, 153), + [12452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, 0, 153), + [12454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, 0, 109), + [12456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [12458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [12460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [12462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [12464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [12466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [12468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [12470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [12472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [12474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [12476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [12478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3690), + [12481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3690), + [12484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(960), + [12487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3904), + [12490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6144), + [12493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [12495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [12497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [12499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [12501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [12503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [12505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [12507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [12509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), + [12511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [12513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6111), + [12515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_expression, 1, 0, 12), + [12517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [12519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [12521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [12523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3640), + [12526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1007), + [12529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4037), + [12532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6129), + [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [12537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [12539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [12541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [12543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 142), + [12545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 142), + [12547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 112), + [12549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [12551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), + [12553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [12555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), + [12557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [12559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6107), + [12561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), + [12563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 3, 0, 64), + [12565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [12567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [12569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [12571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6261), + [12573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [12575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 115), + [12577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 115), + [12579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 83), + [12581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [12583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [12585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [12587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [12589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, 0, 77), + [12591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, 0, 77), + [12593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 59), + [12595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 140), + [12597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 140), + [12599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 46), + [12601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [12603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7211), + [12605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 3, 0, 51), + [12607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6300), + [12609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [12611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6857), + [12613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 2, 0, 49), + [12615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6309), + [12617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [12619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 113), + [12621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 113), + [12623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 60), + [12625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [12627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 136), + [12629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 136), + [12631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 45), + [12633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [12635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [12637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [12639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [12641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), + [12643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6611), + [12645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6611), + [12648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [12650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [12652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [12656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [12658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [12660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 137), + [12662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 137), + [12664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 145), + [12666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 145), + [12668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, 0, 82), + [12670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, 0, 82), + [12672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), + [12674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [12676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [12678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [12680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), + [12682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), + [12684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 135), + [12686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 135), + [12688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5448), + [12690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, 0, 154), + [12692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, 0, 154), + [12694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, 0, 156), + [12696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, 0, 156), + [12698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3686), + [12701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7273), + [12704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3686), + [12707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1043), + [12710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7273), + [12713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6106), + [12716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6604), + [12719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3673), + [12722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3673), + [12725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1074), + [12728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3919), + [12731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6151), + [12734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), + [12736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), + [12738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3631), + [12741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1159), + [12744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6105), + [12747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5495), + [12750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 104), + [12752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 104), + [12754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 106), + [12756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 106), + [12758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [12760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [12762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), + [12764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 108), + [12766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 108), + [12768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 111), + [12770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 111), + [12772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 114), + [12774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 114), + [12776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 116), + [12778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 116), + [12780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [12782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3950), + [12785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, 0, 78), + [12787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, 0, 78), + [12789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6755), + [12791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), + [12793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 1, 0, 12), + [12795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6218), + [12797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [12799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [12801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5448), + [12804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3956), + [12807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), + [12809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 139), + [12811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 139), + [12813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [12815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [12817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [12819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 141), + [12821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 141), + [12823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3963), + [12826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 143), + [12828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 143), + [12830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [12832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5510), + [12834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), + [12836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), + [12838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [12840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [12842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), + [12844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5515), + [12847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6799), + [12849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 4, 0, 51), + [12851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6303), + [12853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6851), + [12855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 4, 0, 64), + [12857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6352), + [12859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5510), + [12862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5521), + [12865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6954), + [12867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 3, 0, 49), + [12869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6360), + [12871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7396), + [12873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7396), + [12875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), + [12877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), + [12879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [12881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [12883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3961), + [12886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), + [12888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3651), + [12891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7396), + [12894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3651), + [12897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1207), + [12900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7396), + [12903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6112), + [12906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), + [12908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), + [12910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), + [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), + [12914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), + [12916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), + [12918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6212), + [12920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), + [12922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6237), + [12924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), + [12926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5614), + [12929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), + [12931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [12933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), + [12935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6466), + [12937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6456), + [12939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [12941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(447), + [12944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), + [12946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6473), + [12948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [12950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [12952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [12954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7513), + [12956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [12958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [12960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [12962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7068), + [12964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [12966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [12968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3630), + [12971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1503), + [12974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3912), + [12977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6136), + [12980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3958), + [12983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3958), + [12986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [12988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [12990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [12992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7486), + [12994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [12996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [12998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [13000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [13002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [13004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(439), + [13007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(439), + [13010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [13012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [13014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [13016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [13018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [13020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [13022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT(439), + [13025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [13027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [13029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [13031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5699), + [13033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5699), + [13036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [13038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [13040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), + [13042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [13044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6504), + [13046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6501), + [13048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6501), + [13050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), + [13052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6374), + [13054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6460), + [13056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6803), + [13058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), + [13060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), + [13062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), + [13064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5460), + [13066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6149), + [13068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4774), + [13070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [13072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [13074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [13076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5947), + [13078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5445), + [13080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6077), + [13082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5480), + [13084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5912), + [13086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6227), + [13088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5970), + [13090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [13092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6049), + [13094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6224), + [13096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5934), + [13098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6361), + [13100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6000), + [13102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [13104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5874), + [13106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [13108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5890), + [13110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), + [13112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5914), + [13114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [13116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5951), + [13118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [13120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5943), + [13122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5678), + [13124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), + [13126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [13128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5962), + [13130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5651), + [13132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5977), + [13134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6251), + [13136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), + [13138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), + [13140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5992), + [13142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [13144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6069), + [13146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [13148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6023), + [13150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), + [13152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6040), + [13154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [13156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5880), + [13158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6697), + [13160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6072), + [13162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [13164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6084), + [13166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [13168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5888), + [13170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [13172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5877), + [13174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [13176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5882), + [13178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [13180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5897), + [13182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6699), + [13184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5905), + [13186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [13188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5901), + [13190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5501), + [13192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5908), + [13194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5514), + [13196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5921), + [13198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [13200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5941), + [13202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [13204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5926), + [13206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [13208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5938), + [13210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5427), + [13212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5984), + [13214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6507), + [13216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), + [13218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), + [13220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), + [13222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [13224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5952), + [13226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5441), + [13228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5967), + [13230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6743), + [13232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5975), + [13234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [13236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5939), + [13238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [13240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5972), + [13242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6767), + [13244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5982), + [13246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), + [13248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5990), + [13250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [13252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5998), + [13254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), + [13256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5997), + [13258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [13260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6042), + [13262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6533), + [13264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), + [13266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), + [13268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4046), + [13271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4047), + [13274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(6098), + [13277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [13279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(6149), + [13282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4774), + [13285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(150), + [13288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(151), + [13291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(152), + [13294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6016), + [13296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [13298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6021), + [13300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [13302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6028), + [13304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [13306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6025), + [13308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [13310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6052), + [13312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [13314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6044), + [13316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [13318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6055), + [13320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [13322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6060), + [13324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [13326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6074), + [13328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [13330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5900), + [13332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [13334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6079), + [13336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [13338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6081), + [13340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), + [13342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), + [13344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [13346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), + [13348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [13350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5871), + [13352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [13354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5875), + [13356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [13358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5876), + [13360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [13362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5885), + [13364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4518), + [13366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5881), + [13368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [13370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6043), + [13372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [13374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5884), + [13376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [13378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5889), + [13380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [13382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5892), + [13384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), + [13386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5891), + [13388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [13390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5898), + [13392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [13394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5896), + [13396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [13398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5904), + [13400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [13402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5899), + [13404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [13406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), + [13408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [13410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), + [13412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [13414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5906), + [13416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), + [13418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5909), + [13420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [13422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5913), + [13424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), + [13426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5915), + [13428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), + [13430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5919), + [13432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [13434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5920), + [13436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [13438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5948), + [13440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), + [13442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), + [13444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), + [13446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5923), + [13448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [13450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5927), + [13452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [13454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5928), + [13456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), + [13458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5931), + [13460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), + [13462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), + [13464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [13466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), + [13468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [13470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5936), + [13472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [13474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5937), + [13476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [13478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5940), + [13480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [13482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5946), + [13484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [13486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5950), + [13488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [13490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), + [13492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [13494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), + [13496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [13498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), + [13500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [13502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), + [13504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4403), + [13506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), + [13508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [13510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5964), + [13512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [13514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5963), + [13516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [13518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5869), + [13520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [13522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5966), + [13524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [13526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5969), + [13528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [13530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), + [13532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [13534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), + [13536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [13538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), + [13540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), + [13542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5988), + [13544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [13546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5978), + [13548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), + [13550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5981), + [13552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [13554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5983), + [13556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [13558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6087), + [13560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [13562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5989), + [13564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [13566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5991), + [13568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), + [13570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5993), + [13572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [13574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5994), + [13576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), + [13578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6001), + [13580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [13582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5999), + [13584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), + [13586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6011), + [13588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), + [13590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6002), + [13592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), + [13594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6004), + [13596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), + [13598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6007), + [13600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [13602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6010), + [13604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [13606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6014), + [13608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), + [13610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6047), + [13612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5361), + [13614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6019), + [13616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), + [13618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6041), + [13620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [13622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6024), + [13624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [13626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6035), + [13628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [13630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6026), + [13632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [13634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6029), + [13636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), + [13638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6031), + [13640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), + [13642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6036), + [13644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), + [13646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6038), + [13648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), + [13650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6046), + [13652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [13654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6058), + [13656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [13658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), + [13660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), + [13662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6050), + [13664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), + [13666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6054), + [13668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4708), + [13670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6057), + [13672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), + [13674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), + [13676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6657), + [13678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5932), + [13680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [13682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6062), + [13684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [13686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6064), + [13688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [13690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6068), + [13692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [13694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5922), + [13696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5363), + [13698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), + [13700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [13702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6073), + [13704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6542), + [13706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6075), + [13708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6517), + [13710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6080), + [13712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [13714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6063), + [13716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6642), + [13718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6082), + [13720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), + [13722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6085), + [13724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [13726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5917), + [13728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [13730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6157), + [13732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6158), + [13734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6156), + [13736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6156), + [13738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), + [13740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [13742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [13744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [13746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), + [13748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [13750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), + [13752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6702), + [13754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [13756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [13758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [13760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5530), + [13762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [13764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4408), + [13766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [13768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [13770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [13772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), + [13774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [13776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [13778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [13780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4310), + [13782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [13784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [13786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [13788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [13790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [13792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [13794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5444), + [13796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [13798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [13800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [13802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4406), + [13804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5687), + [13806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [13808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [13810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6781), + [13812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [13814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6258), + [13816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4808), + [13818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [13820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [13822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [13824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [13826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4590), + [13828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [13830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), + [13832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), + [13834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), + [13836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), + [13838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [13840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [13842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4481), + [13844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [13846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [13848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [13850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4376), + [13852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), + [13854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), + [13856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [13858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6483), + [13860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6532), + [13862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5744), + [13864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6531), + [13866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6531), + [13868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [13870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6217), + [13872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), + [13874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [13876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4718), + [13878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [13880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [13882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6692), + [13884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [13886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [13888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [13890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6498), + [13892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5426), + [13894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), + [13896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [13898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [13900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [13902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [13904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [13906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7490), + [13908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [13910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [13912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7490), + [13914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [13916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [13918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6951), + [13920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [13922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [13924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6951), + [13926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [13928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [13930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [13932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [13934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [13936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), + [13938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [13940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [13942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [13944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [13946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7516), + [13948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [13950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [13952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7516), + [13954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [13956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [13958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), [13960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [13962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [13964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), - [13966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [13968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [13970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [13972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), - [13974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7491), - [13976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [13978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [13980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7491), - [13982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [13984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), - [13986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [13988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [13990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), - [13992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), - [13994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [13996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6095), - [13998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6096), - [14000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), - [14002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [14004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [14006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [14008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), - [14010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7401), - [14012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [14014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [14016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7401), - [14018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), - [14020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), - [14022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [14024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6235), - [14026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6211), - [14028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), - [14030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), - [14032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), - [14034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [14036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), - [14038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), - [14040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [14042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), - [14044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [14046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [14048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [14050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), - [14052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [14054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [14056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), - [14058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), - [14060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [14062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [14064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), - [14066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), - [14068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [14070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [14072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), - [14074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 51), - [14076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7014), - [14078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), - [14080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1), - [14082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6183), - [14084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6110), - [14086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), - [14088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [14090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [14092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [14094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), - [14096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 1), - [14098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6137), - [14100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2), - [14102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), - [14104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [14106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [14108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [14110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), - [14112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [14114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [14116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), - [14118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), - [14120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [14122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [14124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [14126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), - [14128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [14130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [14132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [14134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(6110), - [14137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(4715), - [14140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(367), - [14143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(364), - [14146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(362), - [14149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(6137), - [14152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), - [14154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), - [14156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [14158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [14160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [14162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), - [14164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [14166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [14168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [14170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), - [14172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [14174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [14176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [14178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), - [14180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [14182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [14184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [14186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [14188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [14190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [14192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [14194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), - [14196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [14198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [14200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [14202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [14204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), - [14206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [14208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [14210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [14212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), - [14214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [14216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [14218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [14220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), - [14222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [14224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [14226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [14228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), - [14230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [14232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [14234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [14236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), - [14238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [14240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [14242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [14244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [14246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [14248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [14250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [13962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [13964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [13966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7291), + [13968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [13970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [13972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7291), + [13974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [13976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), + [13978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [13980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [13982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [13984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [13986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [13988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [13990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), + [13992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), + [13994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [13996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [13998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), + [14000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [14002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6096), + [14004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6089), + [14006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), + [14008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), + [14010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), + [14012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [14014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6243), + [14016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6240), + [14018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6240), + [14020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), + [14022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7400), + [14024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [14026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [14028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7400), + [14030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), + [14032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), + [14034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [14036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [14038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [14040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [14042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6109), + [14045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4775), + [14048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(353), + [14051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(354), + [14054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(355), + [14057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6117), + [14060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), + [14062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [14064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [14066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [14068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [14070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [14072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [14074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [14076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [14078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), + [14080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [14082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [14084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [14086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6109), + [14088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), + [14090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [14092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [14094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [14096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), + [14098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2, 0, 0), + [14100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [14102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [14104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [14106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [14108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), + [14110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [14112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [14114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [14116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [14118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [14120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [14122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [14124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [14126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [14128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [14130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [14132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [14134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [14136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [14138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [14140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [14142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [14144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [14146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [14148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [14150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [14152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [14154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [14156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), + [14158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [14160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [14162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [14164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), + [14166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [14168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [14170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [14172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), + [14174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [14176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [14178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [14180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [14182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [14184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [14186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [14188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), + [14190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [14192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [14194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [14196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [14198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [14200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [14202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [14204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [14206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [14208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [14210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [14212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), + [14214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 1, 0, 0), + [14216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, 0, 51), + [14218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7483), + [14220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [14222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), + [14224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), + [14226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), + [14228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [14230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [14232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [14234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), + [14236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [14238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [14240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [14242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6162), + [14244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [14246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [14248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [14250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), [14252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [14254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [14256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [14258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [14260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [14262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [14264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [14266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [14268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [14270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [14272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [14274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [14276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [14278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [14280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), - [14282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), - [14284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [14286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [14288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [14290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [14292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [14294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [14296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [14298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [14300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [14302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [14304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [14306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [14308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [14310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [14312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [14314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 3), - [14316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [14318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [14320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [14322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), - [14324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 1, .production_id = 12), - [14326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [14328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [14330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [14332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6749), - [14334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), - [14336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [14338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [14340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7259), - [14342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7259), - [14344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6361), - [14346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5815), - [14348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6194), - [14350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_regex, 2, .production_id = 12), - [14352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), - [14354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6194), - [14356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), - [14358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6884), - [14360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6884), - [14362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [14364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6882), - [14366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), - [14368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [14370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 2), SHIFT_REPEAT(6361), - [14373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 2), SHIFT_REPEAT(5815), - [14376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 2), SHIFT_REPEAT(6194), - [14379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 2), - [14381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_regex_repeat1, 2), SHIFT_REPEAT(6361), - [14384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_regex_repeat1, 2), SHIFT_REPEAT(6194), - [14387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), - [14389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6215), - [14391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6212), - [14393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6190), - [14395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_regex, 1, .production_id = 12), - [14397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), - [14399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), - [14401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6948), - [14403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6948), - [14405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [14407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7055), - [14409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), - [14411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [14413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6950), - [14415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6950), - [14417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [14419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), - [14421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7258), - [14423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7258), - [14425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [14427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7057), - [14429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7057), - [14431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3776), - [14434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3776), - [14437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length_expression, 1), - [14439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), - [14441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 2, .production_id = 12), - [14443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length_binary_expression, 3, .production_id = 27), - [14445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6195), - [14447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6304), - [14449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length_expression, 1, .production_id = 7), - [14451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), - [14453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 2, .production_id = 50), - [14455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(6304), - [14458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [14460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [14462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [14464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [14466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [14468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [14470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, .production_id = 90), - [14472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [14474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, .production_id = 49), - [14476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, .production_id = 91), - [14478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 3, .production_id = 49), - [14480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 5, .production_id = 123), - [14482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, .production_id = 64), - [14484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [14486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), - [14488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [14490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [14492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 3, .production_id = 63), - [14494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, .production_id = 92), - [14496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [14498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4651), - [14500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), - [14502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), - [14504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [14506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [14508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [14510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [14512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 5, .production_id = 64), - [14514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [14516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [14518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 5, .production_id = 51), - [14520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), - [14522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), - [14524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [14526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [14528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [14530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [14532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [14534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4700), - [14536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), - [14538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [14540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), - [14542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [14544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [14546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [14548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [14550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [14552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [14554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [14556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [14558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4742), - [14560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), - [14562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 5, .production_id = 122), - [14564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [14566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [14568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), - [14570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [14572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [14574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [14576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [14578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [14580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [14582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [14584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [14586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [14588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), - [14590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), - [14592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, .production_id = 89), - [14594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6779), - [14596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [14598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [14600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [14602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), - [14604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [14606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [14608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [14610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [14612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [14614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [14616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), - [14618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [14620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [14622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4803), - [14624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), - [14626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), - [14628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [14630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [14632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), - [14634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), - [14636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [14638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [14640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), - [14642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [14644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [14646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), - [14648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [14650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [14652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [14654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, .production_id = 51), - [14656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [14658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6958), - [14660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, .production_id = 49), - [14662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6791), - [14664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [14666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [14668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [14670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [14672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [14674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7670), - [14676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, .production_id = 51), - [14678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6747), - [14680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [14682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [14684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [14686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [14688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [14690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 1, .production_id = 48), - [14692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_regex_repeat1, 1, .production_id = 48), - [14694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [14696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), - [14698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [14700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), - [14702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), - [14704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [14706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [14708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), - [14710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), - [14712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7465), - [14714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6528), - [14716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7530), - [14718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, .production_id = 85), - [14720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [14722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6826), - [14724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7523), - [14726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), - [14728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6730), - [14730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6730), - [14732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), - [14734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [14736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), - [14738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 52), - [14740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 45), - [14742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), - [14744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [14746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [14748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(418), - [14751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, .production_id = 53), - [14753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), - [14755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6581), - [14757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7009), - [14759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6529), - [14761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), - [14763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6783), - [14765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6783), - [14767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7272), - [14769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, .production_id = 121), - [14771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), - [14773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [14775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3860), - [14778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 46), - [14780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6957), - [14782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, .production_id = 62), - [14784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1, .production_id = 7), - [14786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [14788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), - [14790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [14792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), - [14794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6732), - [14796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6732), - [14798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__concatenation_in_expansion_repeat1, 2), - [14800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__concatenation_in_expansion_repeat1, 2), SHIFT_REPEAT(5425), - [14803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__for_body_repeat1, 2), - [14805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__for_body_repeat1, 2), SHIFT_REPEAT(4999), - [14808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2), - [14810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, .production_id = 32), - [14812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), - [14814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), - [14816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6745), - [14818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6745), - [14820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2, .production_id = 34), - [14822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2, .production_id = 34), SHIFT_REPEAT(6489), - [14825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__concatenation_in_expansion, 2), - [14827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, .production_id = 31), - [14829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 1, .production_id = 12), - [14831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, .production_id = 109), - [14833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5121), - [14835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), - [14837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), - [14839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 83), - [14841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), - [14843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), - [14845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), - [14847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression, 1, .production_id = 26), - [14849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression, 1, .production_id = 26), - [14851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), - [14853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), - [14855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), - [14857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_expression, 2, .production_id = 12), - [14859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(6651), - [14862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, .production_id = 112), - [14864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), - [14866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), - [14868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), - [14870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), - [14872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), - [14874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), - [14876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), - [14878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), - [14880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), - [14882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 79), - [14884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5125), - [14886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), - [14888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), - [14890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_variable_assignment, 3, .production_id = 55), - [14892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_variable_assignment, 3, .production_id = 55), - [14894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, .production_id = 59), - [14896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), - [14898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), - [14900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 45), - [14902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), - [14904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), - [14906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 46), - [14908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), - [14910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), - [14912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, .production_id = 60), - [14914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), - [14916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), - [14918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5215), - [14920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), - [14922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), - [14924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(6581), - [14927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [14929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [14931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), - [14933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [14935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2), SHIFT_REPEAT(4972), - [14938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), - [14940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [14942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [14944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arithmetic_expansion_repeat1, 2), SHIFT_REPEAT(4108), - [14947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [14949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [14951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [14953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [14955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6535), - [14957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [14959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [14961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [14963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [14965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [14967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [14969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [14971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [14973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [14975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [14977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [14979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [14981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 2, .production_id = 12), - [14983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6789), - [14985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), - [14987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [14989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6734), - [14991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [14993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 132), - [14995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), - [14997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [14999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [15001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [15003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [15005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [15007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), - [15009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [15011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [15013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [15015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [15017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 80), SHIFT_REPEAT(3574), - [15020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 80), - [15022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), - [15024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [15026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), - [15028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [15030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [15032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [15034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [15036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6615), - [15038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [15040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6776), - [15042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6778), - [15044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5336), - [15046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [15048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [15050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [15052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [15054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [15056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 102), - [15058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [15060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5342), - [15062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [15064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [15066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [15068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [15070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [15072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 101), - [15074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [15076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [15078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [15080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [15082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 100), - [15084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [15086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [15088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [15090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5343), - [15092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [15094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [15096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [15098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [15100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), - [15102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [15104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [15106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 74), - [15108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [15110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 72), - [15112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5319), - [15114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), - [15116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [15118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [15120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 98), - [15122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [15124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6138), - [15126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [15128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, .production_id = 70), - [15130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [15132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), - [15134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [15136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [15138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [15140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 130), - [15142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), - [15144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5339), - [15146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [15148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [15150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, .production_id = 150), - [15152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [15154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5302), - [15156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [15158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [15160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, .production_id = 58), - [15162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [15164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6766), - [15166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, .production_id = 96), - [15168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2), SHIFT_REPEAT(4918), - [15171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [15173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 133), - [15175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [15177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), - [15179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [15181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [15183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [15185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [15187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [15189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 8, .production_id = 158), - [15191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5333), - [15193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [15195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [15197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [15199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [15201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [15203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), - [15205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), - [15207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [15209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5344), - [15211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), - [15213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 129), - [15215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [15217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [15219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [15221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, .production_id = 151), - [15223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [15225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [15227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [15229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [15231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [15233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), - [15235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, .production_id = 152), - [15237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, .production_id = 128), - [15239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), - [15241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5345), - [15243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [15245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [15247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5346), - [15249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), - [15251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [15253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5324), - [15255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), - [15257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [15259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [15261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6381), - [15263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6946), - [15265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, .production_id = 119), - [15267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [15269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6408), - [15271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_removal, 1, .production_id = 12), - [15273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7029), - [15275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [15277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6443), - [15279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7065), - [15281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, .production_id = 89), - [15283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), - [15285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6471), - [15287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [15289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, .production_id = 12), - [15291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7303), - [15293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, .production_id = 88), - [15295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), - [15297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7490), - [15299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [15301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [15303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), - [15305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7532), - [15307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [15309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [15311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), - [15313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7453), - [15315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7404), - [15317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), - [15319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [15321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), - [15323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6516), - [15325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6483), - [15327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [15329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), - [15331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7244), - [15333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [15335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [15337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [15339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [15341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), - [15343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [15345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7343), - [15347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [15349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), - [15351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), - [15353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), - [15355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), - [15357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [15359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [15361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7297), - [15363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6210), - [15365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [15367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), - [15369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6398), - [15371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6431), - [15373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7191), - [15375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6434), - [15377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [15379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), - [15381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6497), - [15383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), - [15385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6473), - [15387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), - [15389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6830), - [15391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7149), - [15393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), - [15395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [15397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [15399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), - [15401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), - [15403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), - [15405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [15407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7054), - [15409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), - [15411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), - [15413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), - [15415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [15417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [15419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [15421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6949), - [15423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), - [15425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [15427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), - [15429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [15431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), - [15433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), - [15435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), - [15437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), - [15439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6885), - [15441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6418), - [15443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6232), - [15445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), - [15447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [15449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [15451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [15453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6828), - [15455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [15457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [15459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), - [15461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7074), - [15463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [15465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), - [15467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6221), - [15469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6869), - [15471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [15473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), - [15475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [15477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [15479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), - [15481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), - [15483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [15485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [15487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6912), - [15489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [15491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [15493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [15495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [15497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [15499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [15501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7015), - [15503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [15505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), - [15507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), - [15509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), - [15511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), - [15513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), - [15515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7071), - [15517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), - [15519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), - [15521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [15523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), - [15525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [15527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [15529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7276), - [15531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [15533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6446), - [15535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [15537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [15539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), - [15541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7435), - [15543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6462), - [15545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6450), - [15547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [15549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [15551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), - [15553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7076), - [15555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), - [15557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), - [15559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [15561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), - [15563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), - [15565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, .production_id = 146), - [15567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7443), - [15569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [15571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [15573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [15575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), - [15577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7376), - [15579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7322), - [15581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), - [15583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), - [15585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, .production_id = 86), - [15587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, .production_id = 87), - [15589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7281), - [15591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [15593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7145), - [15595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6160), - [15597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [15599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7116), - [15601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [15603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7090), - [15605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [15607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7019), - [15609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), - [15611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6852), - [15613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), - [15615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6468), - [15617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6814), - [15619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), - [15621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), - [15623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), - [15625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6817), - [15627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), - [15629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), - [15631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), - [15633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_operator, 2, .production_id = 49), - [15635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [15637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), - [15639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6858), - [15641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [15643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), - [15645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), - [15647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6916), - [15649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6464), - [15651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_removal, 2, .production_id = 12), - [15653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), - [15655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7106), - [15657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [15659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [15661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [15663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), - [15665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6459), - [15667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__test_command_binary_expression, 3, .production_id = 43), - [15669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7172), - [15671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), - [15673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [15675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), - [15677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6429), - [15679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), - [15681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), - [15683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7247), - [15685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [15687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [15689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), - [15691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [15693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [15695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7287), - [15697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [15699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [15701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [15703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), - [15705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [15707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7450), - [15709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [15711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), - [15713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6971), - [15715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [15717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), - [15719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 7, .production_id = 157), - [15721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7534), - [15723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [15725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), - [15727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [15729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [15731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [15733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7525), - [15735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [15737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [15739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), - [15741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [15743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [15745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7505), - [15747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [15749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), - [15751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [15753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [15755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7496), - [15757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), - [15759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [15761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [15763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6490), - [15765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), - [15767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7481), - [15769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), - [15771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), - [15773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [15775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [15777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), - [15779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7468), - [15781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), - [15783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), - [15785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6740), - [15787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [15789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7452), - [15791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [15793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [15795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [15797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [15799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7442), - [15801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6534), - [15803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), - [15805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [15807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [15809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6522), - [15811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), - [15813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), - [15815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [15817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [15819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), - [15821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [15823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7346), - [15825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [15827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), - [15829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [15831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), - [15833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [15835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7406), - [15837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [15839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [15841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [15843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [15845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), - [15847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7387), - [15849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [15851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [15853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [15855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [15857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7381), - [15859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [15861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [15863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [15865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [15867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [15869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [15871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7365), - [15873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), - [15875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [15877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [15879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7351), - [15881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [15883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), - [15885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [15887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), - [15889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [15891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7337), - [15893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [15895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [15897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [15899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [15901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7324), - [15903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [15905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), - [15907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), - [15909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [15911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [15913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7309), - [15915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), - [15917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), - [15919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [15921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [15923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [15925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7226), - [15927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [15929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [15931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [15933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7278), - [15935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), - [15937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [15939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), - [15941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [15943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [15945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7263), - [15947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [15949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [15951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), - [15953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [15955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [15957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7248), - [15959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [15961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [15963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [15965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), - [15967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [15969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), - [15971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [15973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [15975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [15977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), - [15979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [15981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), - [15983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), - [15985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [15987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [15989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [15991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [15993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [15995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [15997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [15999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [16001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [16003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [16005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [16007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [16009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), - [16011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [16013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [16015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [16017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), - [16019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7062), - [16021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [16023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, .production_id = 147), - [16025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), - [16027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [16029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), - [16031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), - [16033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [16035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [16037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [16039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [16041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [16043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [16045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [16047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, .production_id = 148), - [16049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [16051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [16053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), - [16055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6224), - [16057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), - [16059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), - [16061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [16063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), - [16065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [16067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [16069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [16071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), - [16073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [16075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [16077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [16079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, .production_id = 120), - [16081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [16083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [16085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [16087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [16089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [16091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [16093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), - [16095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [16097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), - [16099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), - [16101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [16103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), - [16105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [16107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), - [16109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), - [16111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [16113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [16115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), - [16117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [16119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [16121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7176), - [16123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [16125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), - [16127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), - [16129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [16131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [16133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [16135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [16137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [16139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), - [16141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), - [16143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [16145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [16147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [16149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), - [16151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [16153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [16155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [16157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), - [16159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [16161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), - [16163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [16165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [16167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [16169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [16171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [16173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [16175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [16177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [16179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [16181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [16183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [16185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [16187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [16189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), - [16191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6540), - [16193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [16195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), - [16197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [16199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [16201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [16203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [16205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), - [16207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), - [16209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [16211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [16213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [16215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [16217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [16219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [16221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [16223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6186), - [16225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6953), - [16227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [16229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), - [16231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [16233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6234), - [16235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [16237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [16239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), - [16241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), - [16243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [16245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [16247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), - [16249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [16251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), - [16253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), - [16255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), - [16257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [16259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), - [16261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), - [16263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [16265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [16267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [16269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [16271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [16273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [16275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [16277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [16279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), - [16281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), - [16283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), - [16285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6154), - [16287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), - [16289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), - [16291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), - [16293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [16295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), - [16297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), - [16299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7330), - [16301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), - [16303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), - [16305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [16307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), - [16309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), - [16311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [16313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [16315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [16317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [16319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [16321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), - [16323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [16325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [16327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [16329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), - [16331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [16333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [16335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [16337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), - [16339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [16341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), - [16343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [16345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), - [16347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), - [16349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [16351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [16353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [16355] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [16357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [16359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6556), - [16361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [16363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6554), - [16365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), - [16367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), - [16369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [16371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), - [16373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6887), - [16375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [16377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [16379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6181), - [16381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [16383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [16385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), - [16387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [16389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [16391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6563), - [16393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), - [16395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), - [16397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [16399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [16401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [16403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [16405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [16407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [16409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), - [16411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), - [16413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), - [16415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), - [16417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), - [16419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), - [16421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [16423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), - [16425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6846), - [16427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6177), - [16429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [16431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [16433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), - [16435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [16437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [16439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), - [16441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [16443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), - [16445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [16447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [16449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [16451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), - [16453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), - [16455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6525), - [16457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, .production_id = 117), - [16459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [16461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), - [16463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), - [16465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [16467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [16469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6812), - [16471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6803), - [16473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6797), - [16475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6793), - [16477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6802), - [16479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6811), - [16481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6820), - [16483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6829), - [16485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6838), - [16487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6847), - [16489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6856), - [16491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6865), - [16493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6874), - [16495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6883), - [16497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6892), - [16499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6901), - [16501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6910), - [16503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6919), - [16505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6926), - [16507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6933), - [16509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6940), - [16511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6947), - [16513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6954), - [16515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6961), - [16517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6968), - [16519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), - [16521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6982), - [16523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6989), - [16525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6996), - [16527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7003), - [16529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7010), - [16531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7017), - [16533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7024), - [16535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7031), - [16537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7038), - [16539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), - [16541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7052), - [16543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7059), - [16545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7066), - [16547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7073), - [16549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7080), - [16551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7087), - [16553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7094), - [16555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7101), - [16557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7108), - [16559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7115), - [16561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), - [16563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), - [16565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7136), - [16567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), - [16569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7150), - [16571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7157), - [16573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7164), - [16575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7171), - [16577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7178), - [16579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7185), - [16581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7192), - [16583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), - [16585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), - [16587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7213), - [16589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7269), - [16591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [16593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6245), - [16595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [16597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), - [16599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7393), - [16601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6247), - [16603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7439), - [16605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7483), - [16607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7512), + [14254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [14256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [14258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [14260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [14262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [14264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [14266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [14268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 3, 0, 0), + [14270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [14272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [14274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [14276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [14278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [14280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [14282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [14284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [14286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [14288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [14290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [14292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [14294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [14296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [14298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [14300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [14302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [14304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [14306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [14308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), + [14310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), + [14312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [14314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [14316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [14318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [14320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), + [14322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [14324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [14326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), + [14328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 1, 0, 12), + [14330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [14332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [14334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [14336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6782), + [14338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(6295), + [14341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(5710), + [14344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(6189), + [14347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), + [14349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(6295), + [14352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(6189), + [14355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [14357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6927), + [14359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6927), + [14361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4014), + [14364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4014), + [14367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [14369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6917), + [14371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6917), + [14373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [14375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6916), + [14377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6916), + [14379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [14381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6239), + [14383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [14385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6206), + [14387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6295), + [14389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5710), + [14391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6203), + [14393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_regex, 1, 0, 12), + [14395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6295), + [14397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), + [14399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [14401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7063), + [14403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), + [14405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [14407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7598), + [14409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7598), + [14411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [14413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7408), + [14415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7408), + [14417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [14419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [14421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6906), + [14423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6906), + [14425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6189), + [14427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_regex, 2, 0, 12), + [14429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6189), + [14431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [14433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7409), + [14435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), + [14437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length_binary_expression, 3, 0, 27), + [14439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6284), + [14441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length_expression, 1, 0, 7), + [14443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), + [14445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 2, 0, 50), + [14447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length_expression, 1, 0, 0), + [14449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), + [14451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 2, 0, 12), + [14453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), + [14455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(6284), + [14458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6902), + [14460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), + [14462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, 0, 49), + [14464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6753), + [14466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [14468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [14470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [14472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [14474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [14476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4737), + [14478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4965), + [14480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), + [14482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [14484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [14486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [14488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 64), + [14490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [14492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [14494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6966), + [14496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 89), + [14498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6727), + [14500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [14502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), + [14504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [14506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [14508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [14510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [14512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [14514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [14516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [14518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), + [14520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), + [14522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 3, 0, 63), + [14524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [14526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [14528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [14530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [14532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [14534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [14536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7057), + [14538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 51), + [14540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6775), + [14542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [14544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), + [14546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [14548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [14550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [14552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [14554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [14556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 92), + [14558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), + [14560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [14562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [14564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 5, 0, 64), + [14566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 1, 0, 48), + [14568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_regex_repeat1, 1, 0, 48), + [14570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [14572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [14574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), + [14576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [14578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 51), + [14580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [14582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [14584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 5, 0, 51), + [14586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [14588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [14590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [14592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [14594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 3, 0, 49), + [14596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [14598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [14600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [14602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [14604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [14606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [14608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [14610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), + [14612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), + [14614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [14616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [14618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [14620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [14622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [14624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [14626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), + [14628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [14630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [14632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [14634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [14636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [14638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [14640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4736), + [14642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), + [14644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [14646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [14648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 5, 0, 122), + [14650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [14652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [14654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [14656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [14658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [14660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [14662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), + [14664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), + [14666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 90), + [14668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4687), + [14670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [14672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4813), + [14674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), + [14676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [14678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [14680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 5, 0, 123), + [14682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [14684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [14686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), + [14688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), + [14690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), + [14692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [14694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 49), + [14696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [14698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [14700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [14702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 91), + [14704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [14706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [14708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7062), + [14710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), + [14712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6621), + [14714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6492), + [14716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7227), + [14718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3946), + [14721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7377), + [14723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6820), + [14725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, 0, 46), + [14727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6516), + [14729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), + [14731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6780), + [14733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), + [14735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, 0, 52), + [14737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [14739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__for_body_repeat1, 2, 0, 0), + [14741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__for_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4965), + [14744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2, 0, 0), + [14746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), + [14748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 85), + [14750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6961), + [14752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 121), + [14754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, 0, 53), + [14756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, 0, 31), + [14758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, 0, 32), + [14760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7359), + [14762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__concatenation_in_expansion_repeat1, 2, 0, 0), + [14764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__concatenation_in_expansion_repeat1, 2, 0, 0), SHIFT_REPEAT(5478), + [14767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__concatenation_in_expansion, 2, 0, 0), + [14769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 0), + [14771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(423), + [14774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), + [14776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1, 0, 7), + [14778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2, 0, 34), + [14780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2, 0, 34), SHIFT_REPEAT(6495), + [14783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6523), + [14785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [14787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6890), + [14789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, 0, 62), + [14791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), + [14793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [14795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6530), + [14797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [14799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6194), + [14801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), + [14803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [14805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, 0, 45), + [14807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [14809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), + [14811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6741), + [14813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6741), + [14815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [14817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6764), + [14819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6764), + [14821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [14823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6776), + [14825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6776), + [14827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6509), + [14829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, 0, 83), + [14831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5122), + [14833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), + [14835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), + [14837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_expression, 2, 0, 12), + [14839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(6680), + [14842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, 0, 79), + [14844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5131), + [14846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), + [14848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), + [14850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 1, 0, 12), + [14852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, 0, 112), + [14854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), + [14856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), + [14858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), + [14860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, 0, 46), + [14862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), + [14864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), + [14866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_variable_assignment, 3, 0, 55), + [14868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_variable_assignment, 3, 0, 55), + [14870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, 0, 109), + [14872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5155), + [14874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [14876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), + [14878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5243), + [14880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5399), + [14882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), + [14884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), + [14886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [14888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), + [14890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression, 1, 0, 26), + [14892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression, 1, 0, 26), + [14894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), + [14896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), + [14898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), + [14900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), + [14902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), + [14904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), + [14906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, 0, 59), + [14908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5137), + [14910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), + [14912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(6621), + [14915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, 0, 60), + [14917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), + [14919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), + [14921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, 0, 45), + [14923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), + [14925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), + [14927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [14929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6673), + [14931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5312), + [14933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4993), + [14936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5313), + [14938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [14940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), + [14942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 8, 0, 158), + [14944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), + [14946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [14948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [14950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), + [14952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 96), + [14954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), + [14956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 98), + [14958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [14960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5281), + [14962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [14964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [14966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [14968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), + [14970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [14972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [14974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5315), + [14976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [14978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [14980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), + [14982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5316), + [14984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [14986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5326), + [14988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [14990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5327), + [14992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [14994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [14996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [14998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [15000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [15002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [15004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), + [15006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 100), + [15008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [15010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [15012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [15014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [15016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [15018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [15020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), + [15022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 101), + [15024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 102), + [15026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [15028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5289), + [15030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [15032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [15034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 70), + [15036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [15038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [15040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [15042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [15044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [15046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [15048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [15050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [15052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [15054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [15056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [15058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [15060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [15062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [15064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [15066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [15068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [15070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4940), + [15073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [15075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [15077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [15079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 72), + [15081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [15083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [15085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6759), + [15087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 74), + [15089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [15091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [15093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [15095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [15097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [15099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6760), + [15101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [15103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [15105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), + [15107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [15109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [15111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [15113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, 0, 150), + [15115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, 0, 151), + [15117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, 0, 152), + [15119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [15121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [15123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [15125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 2, 0, 12), + [15127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6738), + [15129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [15131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [15133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [15135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [15137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [15139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [15141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [15143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6778), + [15145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [15147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [15149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), + [15151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arithmetic_expansion_repeat1, 2, 0, 0), SHIFT_REPEAT(3726), + [15154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6762), + [15156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [15158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [15160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [15162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), + [15164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [15166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [15168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [15170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [15172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [15174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 128), + [15176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 129), + [15178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), + [15180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [15182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [15184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [15186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 130), + [15188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), + [15190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), + [15192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 132), + [15194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 133), + [15196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), + [15198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [15200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), + [15202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [15204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [15206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [15208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, 0, 58), + [15210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [15212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [15214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5293), + [15216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [15218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), + [15220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [15222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [15224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [15226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [15228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [15230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [15232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [15234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [15236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5294), + [15238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [15240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, 0, 80), SHIFT_REPEAT(3573), + [15243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, 0, 80), + [15245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [15247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [15249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [15251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), + [15253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), + [15255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [15257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [15259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [15261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6475), + [15263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6950), + [15265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, 0, 89), + [15267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_removal, 1, 0, 12), + [15269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7487), + [15271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [15273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, 0, 12), + [15275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [15277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6465), + [15279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [15281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6468), + [15283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7092), + [15285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 88), + [15287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [15289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), + [15291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6959), + [15293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 119), + [15295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [15297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), + [15299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [15301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), + [15303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), + [15305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [15307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [15309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6378), + [15311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7351), + [15313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [15315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [15317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [15319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [15321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), + [15323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7423), + [15325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), + [15327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), + [15329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6586), + [15331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [15333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), + [15335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [15337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [15339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7469), + [15341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), + [15343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [15345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), + [15347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [15349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [15351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [15353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [15355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7597), + [15357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [15359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), + [15361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [15363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [15365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__test_command_binary_expression, 3, 0, 43), + [15367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [15369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7110), + [15371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [15373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [15375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), + [15377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), + [15379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), + [15381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [15383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), + [15385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), + [15387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [15389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [15391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), + [15393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [15395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), + [15397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), + [15399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [15401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7078), + [15403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [15405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [15407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [15409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [15411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), + [15413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7350), + [15415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [15417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [15419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [15421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [15423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [15425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [15427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6824), + [15429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6490), + [15431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), + [15433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [15435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [15437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [15439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [15441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6372), + [15443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), + [15445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [15447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), + [15449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 86), + [15451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6933), + [15453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), + [15455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), + [15457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [15459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), + [15461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [15463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6535), + [15465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), + [15467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), + [15469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 87), + [15471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [15473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), + [15475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [15477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), + [15479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6181), + [15481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), + [15483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [15485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7256), + [15487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), + [15489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [15491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [15493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [15495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [15497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7090), + [15499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [15501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [15503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [15505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [15507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), + [15509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [15511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [15513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [15515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [15517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), + [15519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), + [15521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7175), + [15523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [15525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [15527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), + [15529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6229), + [15531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), + [15533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [15535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), + [15537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [15539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), + [15541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7247), + [15543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [15545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6734), + [15547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 7, 0, 157), + [15549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [15551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [15553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7283), + [15555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6470), + [15557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), + [15559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6471), + [15561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, 0, 146), + [15563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7315), + [15565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, 0, 147), + [15567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [15569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [15571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [15573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [15575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, 0, 148), + [15577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), + [15579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [15581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [15583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), + [15585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [15587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [15589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7380), + [15591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [15593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), + [15595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [15597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6474), + [15599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7414), + [15601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), + [15603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), + [15605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [15607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), + [15609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [15611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [15613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7439), + [15615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [15617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), + [15619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [15621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6445), + [15623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7457), + [15625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [15627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), + [15629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6418), + [15631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [15633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), + [15635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [15637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7479), + [15639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [15641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6410), + [15643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [15645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [15647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), + [15649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7504), + [15651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [15653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 117), + [15655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [15657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [15659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), + [15661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7533), + [15663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [15665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7472), + [15667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [15669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), + [15671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7088), + [15673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [15675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [15677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [15679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [15681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [15683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6949), + [15685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [15687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [15689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [15691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [15693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), + [15695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7338), + [15697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [15699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), + [15701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [15703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), + [15705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6809), + [15707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [15709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), + [15711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [15713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), + [15715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6876), + [15717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), + [15719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6437), + [15721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), + [15723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [15725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 118), + [15727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6962), + [15729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6427), + [15731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [15733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), + [15735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [15737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), + [15739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7047), + [15741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), + [15743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [15745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [15747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [15749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [15751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), + [15753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7173), + [15755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [15757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [15759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), + [15761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [15763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7286), + [15765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [15767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), + [15769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [15771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [15773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7437), + [15775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [15777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), + [15779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), + [15781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [15783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 120), + [15785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6794), + [15787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), + [15789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), + [15791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [15793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), + [15795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6518), + [15797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6823), + [15799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), + [15801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [15803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), + [15805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), + [15807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6850), + [15809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [15811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [15813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [15815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), + [15817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [15819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6877), + [15821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [15823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [15825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [15827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [15829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6242), + [15831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6904), + [15833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [15835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), + [15837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), + [15839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6520), + [15841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6929), + [15843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [15845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), + [15847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6236), + [15849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [15851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [15853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6952), + [15855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [15857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [15859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [15861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [15863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [15865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6973), + [15867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [15869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [15871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [15873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [15875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6997), + [15877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [15879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [15881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [15883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [15885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7018), + [15887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [15889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [15891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [15893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [15895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [15897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [15899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7039), + [15901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [15903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [15905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7420), + [15907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [15909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7061), + [15911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [15913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [15915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [15917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [15919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [15921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7084), + [15923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [15925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [15927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [15929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [15931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), + [15933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7108), + [15935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [15937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [15939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [15941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), + [15943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), + [15945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), + [15947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), + [15949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [15951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7150), + [15953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [15955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [15957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), + [15959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [15961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), + [15963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), + [15965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7169), + [15967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [15969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), + [15971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [15973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7192), + [15975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [15977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), + [15979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), + [15981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [15983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [15985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [15987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), + [15989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [15991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [15993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), + [15995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), + [15997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [15999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [16001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [16003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [16005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [16007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [16009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [16011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [16013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [16015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [16017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), + [16019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [16021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [16023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [16025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), + [16027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [16029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [16031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [16033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [16035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [16037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), + [16039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [16041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [16043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [16045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [16047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), + [16049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [16051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [16053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), + [16055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7403), + [16057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [16059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), + [16061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [16063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [16065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), + [16067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [16069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [16071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [16073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), + [16075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [16077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), + [16079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), + [16081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), + [16083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [16085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [16087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), + [16089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [16091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [16093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [16095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [16097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), + [16099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), + [16101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), + [16103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [16105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [16107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [16109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [16111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [16113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [16115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [16117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), + [16119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [16121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [16123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [16125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [16127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), + [16129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7111), + [16131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [16133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [16135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [16137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), + [16139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [16141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [16143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [16145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [16147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [16149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [16151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [16153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [16155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [16157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [16159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6449), + [16161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [16163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [16165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [16167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), + [16169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [16171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), + [16173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), + [16175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), + [16177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [16179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [16181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [16183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [16185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), + [16187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [16189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [16191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [16193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [16195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [16197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), + [16199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [16201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), + [16203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [16205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [16207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [16209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6413), + [16211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), + [16213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [16215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6164), + [16217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), + [16219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [16221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), + [16223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), + [16225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [16227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6489), + [16229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6895), + [16231] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [16233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), + [16235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [16237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), + [16239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), + [16241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), + [16243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7605), + [16245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), + [16247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), + [16249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6177), + [16251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [16253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), + [16255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), + [16257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [16259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [16261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), + [16263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [16265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7475), + [16267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), + [16269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), + [16271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), + [16273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [16275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [16277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [16279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [16281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [16283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [16285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [16287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6402), + [16289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6408), + [16291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), + [16293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [16295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [16297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), + [16299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), + [16301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), + [16303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), + [16305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), + [16307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [16309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), + [16311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), + [16313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), + [16315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [16317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [16319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [16321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [16323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [16325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [16327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [16329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [16331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), + [16333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [16335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [16337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), + [16339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), + [16341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [16343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), + [16345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6539), + [16347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), + [16349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), + [16351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [16353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), + [16355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [16357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [16359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [16361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), + [16363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7317), + [16365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [16367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [16369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [16371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7046), + [16373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [16375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6163), + [16377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6912), + [16379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_operator, 2, 0, 49), + [16381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), + [16383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), + [16385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [16387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_removal, 2, 0, 12), + [16389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), + [16391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [16393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6389), + [16395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6404), + [16397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), + [16399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), + [16401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [16403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [16405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), + [16407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [16409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), + [16411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6653), + [16413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), + [16415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [16417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [16419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7174), + [16421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [16423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [16425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6183), + [16427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7167), + [16429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6186), + [16431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [16433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), + [16435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [16437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [16439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), + [16441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [16443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6487), + [16445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [16447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), + [16449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), + [16451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [16453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [16455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [16457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [16459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [16461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), + [16463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), + [16465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7381), + [16467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7476), + [16469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7507), + [16471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7600), + [16473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6801), + [16475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6810), + [16477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6819), + [16479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6828), + [16481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6837), + [16483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6846), + [16485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6855), + [16487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6864), + [16489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6873), + [16491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), + [16493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6891), + [16495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6900), + [16497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6909), + [16499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6918), + [16501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6925), + [16503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6932), + [16505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6939), + [16507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6946), + [16509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6953), + [16511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6960), + [16513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6967), + [16515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6974), + [16517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6981), + [16519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6988), + [16521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6995), + [16523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7002), + [16525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7009), + [16527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7016), + [16529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7023), + [16531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7030), + [16533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7037), + [16535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7044), + [16537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7051), + [16539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7058), + [16541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7065), + [16543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7072), + [16545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7079), + [16547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7086), + [16549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7093), + [16551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7100), + [16553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7107), + [16555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7114), + [16557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7121), + [16559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7128), + [16561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), + [16563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), + [16565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7149), + [16567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7156), + [16569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7163), + [16571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7170), + [16573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7177), + [16575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7184), + [16577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7191), + [16579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), + [16581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7205), + [16583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7212), + [16585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7268), + [16587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [16589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [16591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7260), + [16593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), + [16595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), + [16597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [16599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7392), + [16601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6802), + [16603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7482), + [16605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7511), + [16607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7536), [16609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7537), [16611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7538), [16613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7539), @@ -358562,8 +358863,8 @@ static const TSParseActionEntry ts_parse_actions[] = { [16721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7593), [16723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7594), [16725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7595), - [16727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7596), - [16729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, .production_id = 118), + [16727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6451), + [16729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6476), }; enum ts_external_scanner_symbol_identifiers { @@ -358710,6 +359011,7 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, + [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LPAREN] = true, }, @@ -358717,7 +359019,6 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, - [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LPAREN] = true, }, @@ -358798,22 +359099,22 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { }, [16] = { [ts_external_token_file_descriptor] = true, + [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, - [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_esac] = true, }, [17] = { [ts_external_token_file_descriptor] = true, - [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, + [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, - [ts_external_token_esac] = true, }, [18] = { [ts_external_token_file_descriptor] = true, @@ -358830,6 +359131,7 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_file_descriptor] = true, [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, + [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, @@ -358839,7 +359141,6 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_file_descriptor] = true, [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, - [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, @@ -358879,11 +359180,13 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { }, [25] = { [ts_external_token_file_descriptor] = true, + [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_LPAREN] = true, }, [26] = { [ts_external_token_file_descriptor] = true, @@ -358893,13 +359196,11 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { }, [27] = { [ts_external_token_file_descriptor] = true, - [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, - [ts_external_token_LPAREN] = true, }, [28] = { [ts_external_token_file_descriptor] = true, @@ -358919,6 +359220,15 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT_DASH] = true, }, [30] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_variable_name] = true, + [ts_external_token_test_operator] = true, + [ts_external_token__brace_start] = true, + [ts_external_token_RBRACK] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + }, + [31] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, @@ -358930,16 +359240,15 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LPAREN] = true, [ts_external_token_esac] = true, }, - [31] = { + [32] = { [ts_external_token_file_descriptor] = true, - [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [32] = { + [33] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, @@ -358950,28 +359259,23 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_heredoc_redirect_token1] = true, [ts_external_token_esac] = true, }, - [33] = { + [34] = { [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, + [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, - [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_heredoc_redirect_token1] = true, }, - [34] = { + [35] = { [ts_external_token_file_descriptor] = true, [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [35] = { - [ts_external_token__concat] = true, - [ts_external_token_variable_name] = true, - [ts_external_token_test_operator] = true, - [ts_external_token_RBRACK] = true, - [ts_external_token_LT_LT] = true, - }, [36] = { [ts_external_token_file_descriptor] = true, [ts_external_token_variable_name] = true, @@ -358979,16 +359283,18 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__brace_start] = true, }, [37] = { - [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, + [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, - [ts_external_token__bare_dollar] = true, - [ts_external_token__brace_start] = true, + [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - [ts_external_token_heredoc_redirect_token1] = true, }, [38] = { + [ts_external_token_variable_name] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_LT_LT] = true, + }, + [39] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, @@ -358999,11 +359305,6 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_heredoc_redirect_token1] = true, [ts_external_token_esac] = true, }, - [39] = { - [ts_external_token_variable_name] = true, - [ts_external_token_test_operator] = true, - [ts_external_token_LT_LT] = true, - }, [40] = { [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, @@ -359013,26 +359314,26 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [41] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, - [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_esac] = true, }, [42] = { - [ts_external_token_test_operator] = true, - [ts_external_token_LT_LT] = true, - }, - [43] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, + [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, - [ts_external_token_esac] = true, + }, + [43] = { + [ts_external_token_test_operator] = true, + [ts_external_token_LT_LT] = true, }, [44] = { [ts_external_token_file_descriptor] = true, @@ -359044,18 +359345,18 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_heredoc_redirect_token1] = true, }, [45] = { - [ts_external_token__concat] = true, - [ts_external_token_test_operator] = true, - [ts_external_token_RBRACK] = true, - [ts_external_token_LT_LT] = true, - }, - [46] = { [ts_external_token_file_descriptor] = true, [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, [ts_external_token_heredoc_redirect_token1] = true, }, + [46] = { + [ts_external_token__concat] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_RBRACK] = true, + [ts_external_token_LT_LT] = true, + }, [47] = { [ts_external_token_test_operator] = true, [ts_external_token_extglob_pattern] = true, @@ -359068,8 +359369,13 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT] = true, }, [49] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, + [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, [ts_external_token_LPAREN] = true, }, [50] = { @@ -359079,13 +359385,8 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LPAREN] = true, }, [51] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, - [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, [ts_external_token_LPAREN] = true, }, [52] = { @@ -359098,6 +359399,11 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT_DASH] = true, }, [53] = { + [ts_external_token__concat] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_LT_LT] = true, + }, + [54] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, @@ -359107,12 +359413,16 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [54] = { + [55] = { + [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, + [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, + [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, }, - [55] = { + [56] = { [ts_external_token_test_operator] = true, [ts_external_token_extglob_pattern] = true, [ts_external_token__brace_start] = true, @@ -359120,15 +359430,6 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LPAREN] = true, [ts_external_token_esac] = true, }, - [56] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, - [ts_external_token_variable_name] = true, - [ts_external_token_test_operator] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - }, [57] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, @@ -359139,11 +359440,6 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT_DASH] = true, }, [58] = { - [ts_external_token_test_operator] = true, - [ts_external_token_extglob_pattern] = true, - [ts_external_token_LT_LT] = true, - }, - [59] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, @@ -359151,21 +359447,19 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [60] = { + [59] = { + [ts_external_token_test_operator] = true, + [ts_external_token_extglob_pattern] = true, [ts_external_token_LT_LT] = true, }, - [61] = { + [60] = { [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, [ts_external_token_extglob_pattern] = true, [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, }, - [62] = { - [ts_external_token__concat] = true, - [ts_external_token_LT_LT] = true, - }, - [63] = { + [61] = { [ts_external_token_file_descriptor] = true, [ts_external_token_variable_name] = true, [ts_external_token_LT_LT] = true, @@ -359173,23 +359467,30 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_heredoc_redirect_token1] = true, [ts_external_token_esac] = true, }, - [64] = { + [62] = { [ts_external_token_LT_LT] = true, - [ts_external_token_heredoc_redirect_token1] = true, }, - [65] = { + [63] = { + [ts_external_token__concat] = true, + [ts_external_token_LT_LT] = true, + }, + [64] = { [ts_external_token_test_operator] = true, [ts_external_token_extglob_pattern] = true, [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, }, - [66] = { + [65] = { [ts_external_token_file_descriptor] = true, [ts_external_token_variable_name] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, }, + [66] = { + [ts_external_token_LT_LT] = true, + [ts_external_token_heredoc_redirect_token1] = true, + }, [67] = { [ts_external_token_test_operator] = true, [ts_external_token_extglob_pattern] = true, @@ -359198,27 +359499,25 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_esac] = true, }, [68] = { + [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, - [ts_external_token_RBRACK] = true, - [ts_external_token_LT_LT] = true, + [ts_external_token_test_operator] = true, + [ts_external_token__brace_start] = true, + [ts_external_token_heredoc_redirect_token1] = true, }, [69] = { + [ts_external_token__concat] = true, [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, }, [70] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, - [ts_external_token_test_operator] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_RBRACK] = true, + [ts_external_token_LT_LT] = true, }, [71] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, - [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, + [ts_external_token_heredoc_redirect_token1] = true, }, [72] = { [ts_external_token_variable_name] = true, @@ -359227,9 +359526,11 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_heredoc_redirect_token1] = true, }, [73] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, + [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, - [ts_external_token_heredoc_redirect_token1] = true, }, [74] = { [ts_external_token_variable_name] = true, @@ -359264,13 +359565,13 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__brace_start] = true, }, [79] = { + [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, - [ts_external_token_extglob_pattern] = true, [ts_external_token__brace_start] = true, }, [80] = { - [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, + [ts_external_token_extglob_pattern] = true, [ts_external_token__brace_start] = true, }, [81] = { @@ -359309,21 +359610,17 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_heredoc_redirect_token1] = true, }, [88] = { - [ts_external_token_heredoc_redirect_token1] = true, - [ts_external_token_LPAREN] = true, - }, - [89] = { [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, [ts_external_token_esac] = true, }, - [90] = { - [ts_external_token__immediate_double_hash] = true, + [89] = { + [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_LPAREN] = true, }, - [91] = { + [90] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, @@ -359332,22 +359629,26 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_heredoc_redirect_token1] = true, [ts_external_token_esac] = true, }, - [92] = { + [91] = { [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, [ts_external_token_esac] = true, }, + [92] = { + [ts_external_token__immediate_double_hash] = true, + }, [93] = { [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, }, [94] = { [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, @@ -359398,50 +359699,50 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { }, [102] = { [ts_external_token_file_descriptor] = true, - [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, [103] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - }, - [104] = { - [ts_external_token_RBRACE] = true, - [ts_external_token_heredoc_redirect_token1] = true, - [ts_external_token_LPAREN] = true, - }, - [105] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [106] = { + [104] = { [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, + [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [107] = { + [105] = { [ts_external_token_variable_name] = true, [ts_external_token__expansion_word] = true, [ts_external_token_RBRACE] = true, [ts_external_token_LPAREN] = true, }, + [106] = { + [ts_external_token_RBRACE] = true, + [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_LPAREN] = true, + }, + [107] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + }, [108] = { [ts_external_token_variable_name] = true, [ts_external_token__expansion_word] = true, [ts_external_token_LPAREN] = true, }, [109] = { - [ts_external_token_variable_name] = true, + [ts_external_token_file_descriptor] = true, [ts_external_token_heredoc_redirect_token1] = true, }, [110] = { - [ts_external_token_file_descriptor] = true, + [ts_external_token_variable_name] = true, [ts_external_token_heredoc_redirect_token1] = true, }, [111] = { @@ -359457,23 +359758,23 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT_DASH] = true, }, [114] = { - [ts_external_token_RBRACE] = true, + [ts_external_token_heredoc_content] = true, + [ts_external_token_heredoc_end] = true, }, [115] = { [ts_external_token__concat] = true, }, [116] = { - [ts_external_token_heredoc_content] = true, - [ts_external_token_heredoc_end] = true, - }, - [117] = { - [ts_external_token__regex_no_slash] = true, [ts_external_token_RBRACE] = true, }, - [118] = { + [117] = { [ts_external_token__concat] = true, [ts_external_token_heredoc_redirect_token1] = true, }, + [118] = { + [ts_external_token__regex_no_slash] = true, + [ts_external_token_RBRACE] = true, + }, [119] = { [ts_external_token_regex] = true, [ts_external_token_RBRACE] = true, @@ -359498,15 +359799,15 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_RBRACE] = true, }, [124] = { - [ts_external_token__concat] = true, - [ts_external_token_RBRACE] = true, - }, - [125] = { [ts_external_token__external_expansion_sym_hash] = true, [ts_external_token__external_expansion_sym_bang] = true, [ts_external_token__external_expansion_sym_equal] = true, [ts_external_token_RBRACE] = true, }, + [125] = { + [ts_external_token__concat] = true, + [ts_external_token_RBRACE] = true, + }, [126] = { [ts_external_token_esac] = true, }, @@ -359533,13 +359834,15 @@ bool tree_sitter_bash_external_scanner_scan(void *, TSLexer *, const bool *); unsigned tree_sitter_bash_external_scanner_serialize(void *, char *); void tree_sitter_bash_external_scanner_deserialize(void *, const char *, unsigned); -#ifdef _WIN32 +#ifdef TREE_SITTER_HIDE_SYMBOLS +#define TS_PUBLIC +#elif defined(_WIN32) #define TS_PUBLIC __declspec(dllexport) #else #define TS_PUBLIC __attribute__((visibility("default"))) #endif -TS_PUBLIC const TSLanguage *tree_sitter_bash() { +TS_PUBLIC const TSLanguage *tree_sitter_bash(void) { static const TSLanguage language = { .version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, diff --git a/src/tree_sitter/array.h b/src/tree_sitter/array.h index 186ba673..15a3b233 100644 --- a/src/tree_sitter/array.h +++ b/src/tree_sitter/array.h @@ -66,9 +66,12 @@ extern "C" { /// Increase the array's size by `count` elements. /// New elements are zero-initialized. #define array_grow_by(self, count) \ - (_array__grow((Array *)(self), count, array_elem_size(self)), \ - memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)), \ - (self)->size += (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) \ diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 17b4fde9..799f599b 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -47,6 +47,7 @@ struct TSLexer { uint32_t (*get_column)(TSLexer *); bool (*is_at_included_range_start)(const TSLexer *); bool (*eof)(const TSLexer *); + void (*log)(const TSLexer *, const char *, ...); }; typedef enum { @@ -86,6 +87,11 @@ typedef union { } entry; } TSParseActionEntry; +typedef struct { + int32_t start; + int32_t end; +} TSCharacterRange; + struct TSLanguage { uint32_t version; uint32_t symbol_count; @@ -125,6 +131,24 @@ struct TSLanguage { const TSStateId *primary_state_ids; }; +static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { + uint32_t index = 0; + uint32_t size = len - index; + while (size > 1) { + uint32_t half_size = size / 2; + uint32_t mid_index = index + half_size; + TSCharacterRange *range = &ranges[mid_index]; + if (lookahead >= range->start && lookahead <= range->end) { + return true; + } else if (lookahead > range->end) { + index = mid_index; + } + size -= half_size; + } + TSCharacterRange *range = &ranges[index]; + return (lookahead >= range->start && lookahead <= range->end); +} + /* * Lexer Macros */ @@ -154,6 +178,17 @@ struct TSLanguage { goto next_state; \ } +#define ADVANCE_MAP(...) \ + { \ + static const uint16_t map[] = { __VA_ARGS__ }; \ + for (uint32_t i = 0; i < sizeof(map) / sizeof(map[0]); i += 2) { \ + if (map[i] == lookahead) { \ + state = map[i + 1]; \ + goto next_state; \ + } \ + } \ + } + #define SKIP(state_value) \ { \ skip = true; \ @@ -203,14 +238,15 @@ struct TSLanguage { } \ }} -#define REDUCE(symbol_val, child_count_val, ...) \ - {{ \ - .reduce = { \ - .type = TSParseActionTypeReduce, \ - .symbol = symbol_val, \ - .child_count = child_count_val, \ - __VA_ARGS__ \ - }, \ +#define REDUCE(symbol_name, children, precedence, prod_id) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_name, \ + .child_count = children, \ + .dynamic_precedence = precedence, \ + .production_id = prod_id \ + }, \ }} #define RECOVER() \